/* #region ======= PCメニュー ======= */

/* サブメニュー */
header .pc_menu {
    position: fixed;
    z-index: 9999;
    padding: 20px 0;
    transition: background-color 1s ease; /* 背景色の変更を滑らかにする */
}
header .pc_menu ul {
    display: flex;
    justify-content: flex-end;/* 右寄せ */
}

header .pc_menu li {
    font-size: 17px;
    font-weight: bold;
}

header .pc_menu a {
    color: #ffffff;
    margin: 10px 22px;
}

.pc-dropdown {
    position: relative;
}

.pc-dropdown .pc-submenu {
    display: block;
    position: absolute;
    background-color: #fff;
    width: 100%;
    top: 100%;
    left: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease;
    z-index: 1000;
    line-height: 1.5;
}

.pc-dropdown:hover .pc-submenu {
     /* サブメニューの内容に応じて適切な値を設定します */
    max-height: 700px;
    width: 100%;
    background-color: rgb(204, 204, 204);
}


.pc-dropdown .pc-submenu li a {
    color: black;
    display: block;
    font-size: 12px;
    text-align: center;
}


/* #endregion */

/* #region ======= ハンバーガーメニュー ======= */
.header-area{
    position: fixed;
    top: 15px;    /* 画面上部からの距離 */
    right: 6px;  /* 画面右端からの距離 */
    z-index: 9999;    
 
  }
  .header_bakcol{
    padding: 12px 9px;
    border-radius: 5px;
  }
  .hamburger{
    width: 40px;
    height: 25px;
    position: relative;
    transition: .5s;
  }
  .hamburger span{
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: rgb(255, 255, 255);
    transition: .5s;
  }
  .hamburger span:first-of-type{/* ハンバーガーメニューの1番目の線 */
    top: 0;
  }
  .hamburger span:nth-of-type(2){/* ハンバーガーメニューの2番目の線 */
    top: 50%;
  }
  .hamburger span:last-of-type{/* ハンバーガーメニューの3番目の線 */
    top: 100%;
  }
  .slide-menu{
    background-color: rgba(0, 0, 0, .8);
    position: fixed;
    top: 65px;
    width: 95%;
    height: 100%;
    left: 0;
    transform: translateX(100%);
    transition: .5s;
    padding:  0 10px;
  }
  .slide-menu li{
    color: #fff;
    line-height: 400%;
    text-align: left;
    border-bottom: 1px solid #ffffff;
    font-weight: bold;
    letter-spacing: 3px;
    font-size: 18px;
  }
  .slide-menu li a{
    color: #ffffff;
  }
  .hamburger.active{/* 追記 */
    transform: rotateY(360deg);/* 追記 */
  }
  .hamburger.active span:first-of-type{/* ハンバーガーメニューの1番目の線 */
    top: 50%;
    transform: rotate(45deg);
  }
  .hamburger.active span:nth-of-type(2){/* ハンバーガーメニューの2番目の線 */
    opacity: 0;/* 透明にする */
  }
  .hamburger.active span:last-of-type{/* ハンバーガーメニューの3番目の線 */
    top: 50%;
    transform: rotate(-45deg);
  }
  .slide-menu.active{
    transform: translateX(0);
  }
/* #endregion */

/* #region ======= 横のふわふわ指定 ======= */
.fuwafuwa_stl {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
}

.fuwafuwa {
  animation: fuwafuwa 2s infinite ease-in-out;
}

@keyframes fuwafuwa {
  0%, 100% {
      transform: translateX(0);
  }
  50% {
      transform: translateX(15px);
  }
}
/* #endregion */


/* #region ======= 文字をウェーブ ======= */
.web_font {
  display: flex;
  overflow: hidden;
}
.web_font span {
  display: block;
  transform: translate(0, 105%);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}

.web_font.-visible span {
  transform: translate(0, 0);
}

.web_font span:nth-child(2) {
  transition-delay: 0.06s;
}
.web_font span:nth-child(3) {
  transition-delay: 0.12s;
}
.web_font span:nth-child(4) {
  transition-delay: 0.18s;
}
.web_font span:nth-child(5) {
  transition-delay: 0.24s;
}
.web_font span:nth-child(6) {
  transition-delay: 0.30s;
}
.web_font span:nth-child(7) {
  transition-delay: 0.36s;
}
.web_font span:nth-child(8) {
  transition-delay: 0.42s;
}
.web_font span:nth-child(9) {
  transition-delay: 0.48s;
}
.web_font span:nth-child(10) {
  transition-delay: 0.54s;
}
.web_font span:nth-child(11) {
  transition-delay: 0.6s;
}
.web_font span:nth-child(12) {
  transition-delay: 0.66s;
}
.web_font span:nth-child(13) {
  transition-delay: 0.72s;
}
.web_font span:nth-child(14) {
  transition-delay: 0.78s;
}
/* #endregion */

