@charset "UTF-8";
/* カラー */
/* media query */
/* SP縦から */
/* SP横から */
/* タブレット縦から */
/* フルワイド */
#ttr322240 [data-ttr=container] {
  display: none;
}

body.is-menu-open {
  overflow: hidden;
  height: 100vh;
}

.header {
  display: none;
}
@media screen and (max-width: 1180px) {
  .header {
    display: flex;
    align-items: center;
    height: 60px;
    position: fixed;
    top: 0;
    z-index: 100;
    background: white;
    width: 100%;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.08);
  }
}

.header__logo {
  padding-left: 20px;
}
.header__logo a {
  position: relative;
  z-index: 100;
  width: 120px;
  height: 27px;
  display: block;
}
.header__logo img {
  width: 100%;
  height: 100%;
}

.menu-btn {
  position: fixed;
  top: 5px;
  right: 20px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
}

.menu-btn span:before,
.menu-btn span:after {
  content: "";
  display: block;
  height: 1px;
  width: 34px;
  border-radius: 1px;
  background-color: #383838;
  position: absolute;
}

.menu-btn span:before {
  bottom: 30px;
}

.menu-btn span:after {
  top: 20px;
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);
  /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 35px;
  transform: rotate(45deg);
}

#menu-btn-check:checked ~ .menu-btn span::after {
  top: 22px;
  transform: rotate(-45deg);
}

#menu-btn-check {
  display: none;
}

.menu-content {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 80;
  background-color: #fff;
  transition: all 0.5s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

#menu-btn-check:checked ~ .menu-content {
  left: 0;
  /*メニューを画面内へ*/
}

.menu-content ul {
  padding: 70px 10px 0;
}

.menu-content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}

.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 14px;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 6px 6px 6px 0;
  position: relative;
}
@media screen and (max-width: 600px) {
  .menu-content ul li a {
    font-size: 12px;
  }
}

.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

/* メニュー全体のコンテナ */
.sp-nav {
  margin-top: 60px;
  margin-bottom: 50px;
  background-color: #fff;
  padding: 20px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 600px) {
  .sp-nav {
    padding: 20px 10px;
  }
}

/* 各メニューグループ（HOME, 観光課題解決など）の塊 */
.sp-nav__group {
  margin-bottom: 10px;
}

/* 大見出し（HOME, 観光課題解決など） */
.sp-nav__header,
.sp-nav__header a {
  display: flex;
  align-items: center;
  gap: 12px;
  /* アイコンと文字の間隔 */
  font-size: 18px;
  font-weight: 700;
  color: #003366;
  /* 濃い紺色 */
  text-decoration: none;
}

.sp-nav__header img {
  width: 24px;
  /* アイコンのサイズ調整 */
  height: auto;
}

/* サブリスト（中身のリスト） */
.sp-nav__sub-list {
  list-style: none;
  padding: 0 !important;
  margin: 0;
  margin-left: 35px;
}

.sp-nav__sub-item {
  border-bottom: 1px solid #f0f0f0;
  /* 項目間の区切り線（任意） */
}

.sp-nav__sub-item:last-child {
  border-bottom: none;
}

/* サブメニューのリンク */
.sp-nav__sub-link {
  display: flex;
  justify-content: space-between;
  /* テキストと矢印を両端に */
  align-items: center;
  padding: 12px 0 12px 36px;
  /* 左側にアイコン分の余白（インデント）を作る */
  text-decoration: none;
  color: #66788a;
  /* 少し薄い紺グレー */
  font-size: 15px;
  line-height: 1.5;
}

/* 右側の小さな矢印アイコン */
.g-nav__arrow {
  font-size: 12px;
  color: #00a0e9;
  /* 水色 */
  margin-left: 10px;
}

/* ホバー時の演出 */
.sp-nav__sub-link:hover {
  background-color: #f9f9f9;
}

.sp-nav__sub-text {
  color: #667FA3;
}

.sp-nav__bnr {
  width: 80%;
  margin: 20px auto;
}

/* ロゴとCTAエリアの調整 */
.sp-nav__logo {
  text-align: center;
  margin: 20px 0;
  border-top: 1px solid #B2D1FF;
  border-bottom: 1px solid #B2D1FF;
  padding: 20px 0;
}

.sp-nav__logo img {
  max-width: 150px;
  margin: 0 auto;
}

.sp-nav__cta {
  margin-top: 30px;
  background: #DBE9FF;
  padding: 16px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.sp-nav__cta p {
  font-size: 14px;
  text-align: center;
  margin-bottom: 15px;
  font-weight: bold;
}

.sp-nav__cta-blk {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* =========================================
Component: Sidebar Navigation (Updated)
========================================= */
.g-nav {
  width: 100%;
}

/* ナビゲーショングループ（各セクション） */
.g-nav__group {
  margin-bottom: 30px;
}

/* メインヘッダー（アイコン＋太字テキスト） */
.g-nav__header {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-nav-header);
  margin-bottom: 15px;
  margin-left: 20px;
}
@media screen and (max-width: 1400px) {
  .g-nav__header {
    margin-left: 0;
  }
}
.g-nav__header img {
  margin-right: 10px;
}

.g-nav__header a {
  display: flex;
  align-items: center;
  width: 100%;
  color: inherit;
}

.g-nav__sub-item {
  margin-bottom: 12px;
}

.g-nav__sub-list {
  width: 260px;
  margin: 0 auto;
}
@media screen and (max-width: 1400px) {
  .g-nav__sub-list {
    width: 200px;
    padding-left: 10px;
  }
}

.g-nav__sub-link {
  display: flex;
  justify-content: center;
  align-items: center;
  /* 垂直方向中央揃え */
  color: #667FA3;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  padding: 5px 0;
}
@media screen and (max-width: 1400px) {
  .g-nav__sub-link {
    font-size: 14px;
  }
}
.g-nav__sub-link i {
  transition: transform 0.3s ease;
}

.g-nav__sub-link:hover i {
  transform: translateX(7px);
}

.g-nav__sub-text {
  flex: 1;
  padding-right: 10px;
}

.g-nav__arrow {
  color: #3599BA;
  font-size: 10px;
  opacity: 0.8;
}

.g-nav__bnr {
  margin-bottom: 20px;
}

.g-nav__logo {
  border-top: 1px solid #B2D1FF;
  border-bottom: 1px solid #B2D1FF;
  padding: 40px 0;
}
.g-nav__logo img {
  margin: 0 auto;
}

/* Sidebar CTA Buttons */
.g-nav__cta {
  margin-top: 30px;
  background: #DBE9FF;
  padding: 30px;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
}
@media screen and (max-width: 1400px) {
  .g-nav__cta {
    padding: 20px 16px;
  }
}
.g-nav__cta p {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}
.g-nav__cta-blk {
  width: 90%;
  margin: 0 auto;
}

.btn-sidebar {
  display: block;
  width: 100%;
  padding: 16px 12px;
  margin-bottom: 10px;
  background-color: var(--color-primary);
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  border-radius: 4px;
  font-weight: 700;
  transition: opacity 0.3s;
}
@media screen and (max-width: 1400px) {
  .btn-sidebar {
    font-size: 1.6rem;
  }
}

.btn-sidebar--secondary {
  background-color: var(--color-secondary);
}

.btn-sidebar:hover {
  opacity: 0.8;
}

.fix-bnr {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 100;
  transition: opacity 0.3s;
}
@media screen and (max-width: 600px) {
  .fix-bnr {
    width: 100%;
  }
}
.fix-bnr.hide {
  opacity: 0;
  pointer-events: none;
}
.fix-bnr ul {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 600px) {
  .fix-bnr ul li {
    width: 50%;
  }
}
.fix-bnr ul li:first-child a {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.fix-bnr ul li:last-child a {
  border-radius: 0;
}
.fix-bnr ul li a {
  margin-bottom: 0;
  padding: 16px 30px;
  border-radius: 6px;
}
@media screen and (max-width: 600px) {
  .fix-bnr ul li a {
    padding: 16px 10px;
    font-size: 1.4rem;
  }
}