@charset "UTF-8";

html {
  font-family: "Noto Sans JP", sans-serif;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0; /* 要素の外側の余白を指定 */
  padding: 0; /* 要素の内側の余白を指定 */
}

a:visited {
  color: inherit; /* テキストの色を指定 */
}

.pop {
  font-family: "Mochiy Pop P One", sans-serif;
}

.container {
  width: 90%; /* 幅を指定 */
  max-width: 1120px; /* 最大幅を指定 */ /* 幅を指定 */
  margin: 0 auto; /* 要素の外側の余白を指定 */
  position: relative; /* 要素の配置方法を指定（absolute, relativeなど） */
}

*{
    margin: 0;
    padding: 0;
}

.header{
  width: 100%;
  height: 80px;
  padding: 0 5%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between; /* 主軸方向の揃え方（flexbox） */
  align-items: center; /* 交差軸方向の揃え方（flexbox） */
}

nav{
  width: 50%;
}

nav ul{
  display: flex;
  list-style: none; /* リストのマーカーのスタイルを指定 */
  justify-content: space-around;
}

nav ul li a{
    text-decoration: none;
    color: #000;
}

.flex {
  display: flex; /* 表示形式を指定（例: block, flex） */
  justify-content: space-between; /* 主軸方向の揃え方（flexbox） */
  flex-wrap: wrap; /* 折り返しの有無を指定（flexbox） */
  align-items: center; /* 交差軸方向の揃え方（flexbox） */
}

.header {
  padding: 27px 0; /* 要素の内側の余白を指定 */
}

.logo a {
  font-size: 24px; /* フォントサイズを指定 */
  font-weight: 700; /* フォントの太さを指定 */
  text-decoration: none; /* テキストの装飾を指定（例: 下線） */
  color: inherit; /* テキストの色を指定 */
  padding: 20px 0px; /* 要素の内側の余白を指定 */ /* ▼上下の余白をバランス良く確保するためのパディング */
  display: inline-block; /* 表示形式を指定（例: block, flex） *//* ▼パディングを有効にするための表示形式 */
}


.main-nav {
  list-style: none; /* リストのマーカーのスタイルを指定 */
  padding: 0; /* 要素の内側の余白を指定 */
  margin: 0; /* 要素の外側の余白を指定 */
  display: flex; /* 表示形式を指定（例: block, flex） */
  gap: 40px; /* 要素間の隙間を指定 */
  justify-content: center; /* 主軸方向の揃え方（flexbox） */
  align-items: center; /* 交差軸方向の揃え方（flexbox） */
}

.main-nav li {
  margin: 0; /* 左からの距離を指定 */
}

.main-nav li a {
  display: inline-block; /* ← これを追加（まだ入っていなければ） */
  transition: .3s; /* アニメーションの変化速度などを指定 */
  color: #000; /* テキストの色を指定 */
  text-decoration: none; /* テキストの装飾を指定（例: 下線） */
  font-weight: bold; /* フォントの太さを指定 */
  padding: 15px 0 !important; /* ← これを追加：上下の余白をロゴと揃える */
  line-height: 1.5; /* ← 必要に応じて追加：テキスト高さの調整 */
}

.main-nav li a:hover {
  color: #82CC00; /* テキストの色を指定 */
}

@media only screen and (max-width: 768px) {
  .container.flex {
    flex-direction: column; /* 最大幅を指定 */ /* 幅を指定 */
    align-items: center; /* 交差軸方向の揃え方（flexbox） */
  }

  .header-left,
  .header-right {
    width: 100%; /* 幅を指定 */
    text-align: center; /* テキストの揃え方を指定 */
  }

  .main-nav {
    flex-direction: column;
    align-items: center; /* 交差軸方向の揃え方（flexbox） */
    padding: 0; /* 要素の内側の余白を指定 */
  }

  .main-nav li {
    margin: 10px 0; /* 要素の外側の余白を指定 */
  }

  .header_menu li {
    margin: 20px 16px 0; /* 要素の外側の余白を指定 */
  }
}

.section-divider {
  border: none; /* 枠線を指定 */
  height: 3px; /* 高さを指定 */
  background-color: rgba(255, 0, 0, 0.2); /* 背景色を指定 */ /* テキストの色を指定 */
  margin: 10px 0 5px 0; /* 要素の外側の余白を指定 */
}

.join-line {
  text-align: center; /* テキストの揃え方を指定 */
  margin: 40px 0; /* 要素の外側の余白を指定 */
}

.join-base p {
  margin-bottom: 25px;
}

.line-button {
  display: inline-block;
  margin-top: 30px;       /* 上との余白を広げる */
  margin-bottom: 30px;    /* 下との余白も追加（窮屈さを解消） */
  padding: 10px 0;        /* 上下に余白を持たせる（ボタンが浮く） */
  text-align: center;     /* 念のため中央寄せ */
}

/* フッターメニュー部分*/

footer {
  background-color: #eeeeee;    /* 薄いグレー */
  color: #ccc;
  text-align: center;
  padding: 2em 1em;
  margin-top: 3em;
  font-size: 0.9em;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1120px;
  margin: 0 auto;
  gap: 2em;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 180px;
  margin-bottom: 1.5em;
}

.footer-column h4 {
  color: #82CC00; /* テキストの色を指定 */
  font-size: 1.1em;
  margin-bottom: 1em;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 0.6em;
}

.footer-column a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #fff;
  text-decoration: underline;
}

.copyright {
  font-size: 0.8em;
  color: #999;
  margin-top: 2em;
}

.footer-note {
  margin-top: 2em;
  font-size: 0.75em;
  color: #aaa;
  line-height: 1.7;
  padding: 0 1em;
}

.footer-note p {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .footer-menu {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 2em;
  }

  .footer-note p {
    text-align: center;
  }
}

/* フッターメニュー部分*/


.floating_banner {
  position: fixed; /* 要素の配置方法を指定（absolute, relativeなど） */
  bottom: 0; /* 下からの距離を指定 */
  width: 100%; /* 幅を指定 */
  background-color: #6B2981; /* 背景色を指定 */ /* テキストの色を指定 */
  color: white; /* テキストの色を指定 */
  padding: 10px 20px; /* 要素の内側の余白を指定 */
  z-index: 9999; /* 重なり順を指定 */
  box-shadow: 0 -2px 5px rgba(0,0,0,0.2); /* ボックスに影をつける */
  display: flex; /* 表示形式を指定（例: block, flex） */
  justify-content: center; /* 主軸方向の揃え方（flexbox） */
  align-items: center; /* 交差軸方向の揃え方（flexbox） */
  gap: 10px; /* 要素間の隙間を指定 */
  font-size: 1rem; /* フォントサイズを指定 */
  transition: opacity 0.4s ease; /* アニメーションの変化速度などを指定 */
  opacity: 1; /* 不透明度を指定 */
  flex-wrap: wrap; /* 折り返しの有無を指定（flexbox） */
  box-sizing: border-box;
}

.floating_banner a {
  color: #ffffff; /* テキストの色を指定 */
  text-decoration: none; /* テキストの装飾を指定（例: 下線） */
  font-weight: bold; /* フォントの太さを指定 */
}

.floating_banner a span,
.green_highlight {
  background-color: #82CC00; /* 背景色を指定 */ /* テキストの色を指定 */
  color: white; /* テキストの色を指定 */
  padding: 6px 12px; /* 要素の内側の余白を指定 */
  border-radius: 6px; /* 角丸の半径を指定 */
  margin-left: 8px; /* 左からの距離を指定 */
  font-size: 0.9rem; /* フォントサイズを指定 */
  display: inline-block; /* 表示形式を指定（例: block, flex） */
}

.floating_inner {
  display: flex; /* 表示形式を指定（例: block, flex） */
  align-items: center; /* 交差軸方向の揃え方（flexbox） */
  gap: 15px; /* 要素間の隙間を指定 */
  flex-wrap: wrap; /* 折り返しの有無を指定（flexbox） */
}

.floating_text {
  font-weight: bold; /* フォントの太さを指定 */
}

.close_banner {
  position: absolute; /* 要素の配置方法を指定（absolute, relativeなど） */
  left: 10px; /* 左からの距離を指定 */
  top: 10px; /* 上からの距離を指定 */
  font-size: 18px; /* フォントサイズを指定 */
  cursor: pointer; /* カーソルの形状を指定 */
}

@media only screen and (max-width: 480px) {
  .floating_banner {
    flex-direction: column; /* 最大幅を指定 */ /* 幅を指定 */
    font-size: 0.85rem; /* フォントサイズを指定 */
    padding: 1em 0.5em; /* 要素の内側の余白を指定 */
  }

  .floating_banner a span {
    margin-left: 0; /* 左からの距離を指定 */
    margin-top: 5px; /* 上からの距離を指定 */
  }

  .close_banner {
    top: 5px; /* 上からの距離を指定 */
    left: 5px; /* 左からの距離を指定 */
  }
}



.join-base{
    background-color: #e0f7fa; /* 背景色を指定 */ /* テキストの色を指定 */
    text-align: center; /* テキストの揃え方を指定 */
    padding: 16px; /* 要素の内側の余白を指定 */  /* 四方すべてに16pxの内側余白 */
}

.section-divider{
    background-color: #e0f7fa; /* 背景色を指定 */ /* テキストの色を指定 */
}


/* PCではハンバーガー非表示 */
@media screen and (min-width: 768px) {
  .toggle_btn,
  #navArea,
  #mask {
    display: none !important; /* 幅を指定 */ /* 表示形式を指定（例: block, flex） */
  }
}

/* スマホでは従来メニュー非表示 */
@media screen and (max-width: 767px) {
  .main-nav {
    display: none !important; /* 最大幅を指定 */ /* 幅を指定 */ /* 表示形式を指定（例: block, flex） */
  }
}


/* ハンバーガーメニュー専用 CSS */
.hamburger-nav {
  display: block; /* 表示形式を指定（例: block, flex） */
  position: fixed; /* 要素の配置方法を指定（absolute, relativeなど） */
  top: 0; /* 上からの距離を指定 */
  left: -300px; /* 左からの距離を指定 */
  bottom: 0; /* 下からの距離を指定 */
  width: 300px; /* 幅を指定 */
  background: #ffffff; /* 背景の一括指定 */
  overflow-x: hidden; /* 横方向のはみ出し処理 */
  overflow-y: auto; /* 縦方向のはみ出し処理 */
  -webkit-overflow-scrolling: touch;
  transition: .5s; /* アニメーションの変化速度などを指定 */
  z-index: 3; /* 重なり順を指定 */
}
#navArea.open .hamburger-nav {
  left: 0; /* 左からの距離を指定 */
}
.hamburger-nav .inner {
  padding: 25px; /* 要素の内側の余白を指定 */
}
.hamburger-nav .inner ul {
  list-style: none; /* リストのマーカーのスタイルを指定 */
  margin: 0; /* 要素の外側の余白を指定 */
  padding: 0; /* 要素の内側の余白を指定 */
  display: block !important; /* ハンバーガーメニュー用の ul を縦並びに戻す */
}
.hamburger-nav .inner ul li {
  position: relative; /* 要素の配置方法を指定（absolute, relativeなど） */
  margin: 0; /* 要素の外側の余白を指定 */
  border-bottom: 1px solid #333; /* 下からの距離を指定 */
}
.hamburger-nav .inner ul li a {
  display: block; /* 表示形式を指定（例: block, flex） */
  color: #333; /* テキストの色を指定 */
  font-size: 10px; /* フォントサイズを指定 */
  padding: 2em; /* 要素の内側の余白を指定 */
  text-decoration: none; /* テキストの装飾を指定（例: 下線） */
  transition-duration: 0.2s;
  border-bottom: 1px solid #ddd; /* 薄い線に変更 */
}
.hamburger-nav .inner ul li a:hover {
  background: #e4e4e4; /* 背景の一括指定 */
}
@media screen and (max-width: 767px) {
 .hamburger-nav {
    left: -240px; /* 左からの距離を指定 */ /* 最大幅を指定 */ /* 幅を指定 */
    width: 240px; /* 幅を指定 */
  }
}
/*============
@keyframes
=============*/
@keyframes equalizer01 {
  0% {
    width: 70%; /* 幅を指定 */
  }
  10% {
    width: 50%; /* 幅を指定 */
  }
  20% {
    width: 100%; /* 幅を指定 */
  }
  30% {
    width: 10%; /* 幅を指定 */
  }
  40% {
    width: 50%; /* 幅を指定 */
  }
  50% {
    width: 70%; /* 幅を指定 */
  }
  60% {
    width: 50%; /* 幅を指定 */
  }
  70% {
    width: 10%; /* 幅を指定 */
  }
  80% {
    width: 100%; /* 幅を指定 */
  }
  90% {
    width: 10%; /* 幅を指定 */
  }
  100% {
    width: 70%; /* 幅を指定 */
  }
}
@keyframes equalizer02 {
  0% {
    width: 30%; /* 幅を指定 */
  }
  10% {
    width: 20%; /* 幅を指定 */
  }
  20% {
    width: 40%; /* 幅を指定 */
  }
  30% {
    width: 10%; /* 幅を指定 */
  }
  40% {
    width: 20%; /* 幅を指定 */
  }
  50% {
    width: 30%; /* 幅を指定 */
  }
  60% {
    width: 20%; /* 幅を指定 */
  }
  70% {
    width: 10%; /* 幅を指定 */
  }
  80% {
    width: 40%; /* 幅を指定 */
  }
  90% {
    width: 10%; /* 幅を指定 */
  }
  100% {
    width: 30%; /* 幅を指定 */
  }
}


/*============
.toggle_btn
=============*/
.toggle_btn {
  display: block; /* 表示形式を指定（例: block, flex） */
  position: fixed; /* 要素の配置方法を指定（absolute, relativeなど） */
  top: 30px; /* 上からの距離を指定 */
  left: 30px; /* 左からの距離を指定 */
  width: 60px; /* 幅を指定 */
  height: 30px; /* 高さを指定 */
  transform: translate(0, 0); /* 要素の変形（回転・移動など）を指定 */
  transition: all .5s; /* アニメーションの変化速度などを指定 */
  cursor: pointer; /* カーソルの形状を指定 */
  z-index: 3; /* 重なり順を指定 */
}
.open .toggle_btn {
  left: 330px; /* 左からの距離を指定 */
}
.toggle_btn span {
  display: block; /* 表示形式を指定（例: block, flex） */
  position: absolute; /* 要素の配置方法を指定（absolute, relativeなど） */
  left: 0; /* 左からの距離を指定 */
  width: 30px; /* 幅を指定 */
  height: 2px; /* 高さを指定 */
  background-color: #666; /* 背景色を指定 */ /* テキストの色を指定 */
  transition: all .5s; /* アニメーションの変化速度などを指定 */
}
.toggle_btn span:nth-child(1) {
  top: 5px; /* 上からの距離を指定 */
  width: 60px; /* 幅を指定 */
  animation: equalizer01 7000ms infinite; /* アニメーション指定 */
}
.toggle_btn span:nth-child(2) {
  top: 15px; /* 上からの距離を指定 */
  width: 30px; /* 幅を指定 */
  animation: equalizer02 5000ms infinite; /* アニメーション指定 */
  animation-delay: 0.33s;
}
.toggle_btn span:nth-child(3) {
  top: 25px; /* 上からの距離を指定 */
  width: 20px; /* 幅を指定 */
  animation: equalizer02 5000ms infinite; /* アニメーション指定 */
}
.open .toggle_btn span {
  background-color: #fff; /* 背景色を指定 */ /* テキストの色を指定 */
  width: 30px; /* 幅を指定 */
}
.open .toggle_btn span:nth-child(1) {
  transform: translate(0, 10px) rotate(-45deg); /* 要素の変形（回転・移動など）を指定 */
  animation: unset; /* アニメーション指定 */
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0; /* 不透明度を指定 */
  animation: unset; /* アニメーション指定 */
}
.open .toggle_btn span:nth-child(3) {
  transform: translate(0, -10px) rotate(45deg); /* 要素の変形（回転・移動など）を指定 */
  animation: unset; /* アニメーション指定 */
}
@media screen and (max-width: 767px) {
  .open .toggle_btn {
    left: 260px; /* 左からの距離を指定 */ /* 最大幅を指定 */ /* 幅を指定 */
  }
}


/*============
#mask
=============*/
#mask {
  display: none; /* 表示形式を指定（例: block, flex） */
}
.open #mask {
  display: block; /* 表示形式を指定（例: block, flex） */
  position: fixed; /* 要素の配置方法を指定（absolute, relativeなど） */
  top: 0; /* 上からの距離を指定 */
  left: 0; /* 左からの距離を指定 */
  width: 100%; /* 幅を指定 */
  height: 100%; /* 高さを指定 */
  background: #000; /* 背景の一括指定 */
  opacity: .8; /* 不透明度を指定 */
  z-index: 2; /* 重なり順を指定 */
  cursor: pointer; /* カーソルの形状を指定 */
  transition: all .5s; /* アニメーションの変化速度などを指定 */
}

@media screen and (min-width: 768px) {
  .main-nav {
    display: flex !important; /* 幅を指定 */ /* 表示形式を指定（例: block, flex） */
  }
}

/* PCナビゲーション（.pc-nav）をPC画面で表示、スマホでは非表示にする */
@media screen and (min-width: 768px) {
  .pc-nav {
    display: block !important; /* 幅を指定 */ /* 表示形式を指定（例: block, flex） */
  }
}

@media screen and (max-width: 767px) {
  .pc-nav {
    display: none !important; /* 最大幅を指定 */ /* 幅を指定 */ /* 表示形式を指定（例: block, flex） */
  }
}