@charset "UTF-8";

:root {
  /* 管理画面側で設定 */
  color: var(--color_main);
  color: var(--color_bg);
  color: var(--color_text);
  /* css側で設定 */
  --bg_color: #F4FDFF;
  --bg_color2: #FFFBF5;
  --bg_color3: #F0F9FF;
  --accent_color: #FFA30F;
  --light_color1: #3482D0;
  --light_color2: #2D78C3;
  --dark_color1: #186CA8;
  --dark_color2: #00487C;
  --bg_ling_color1: #FFF500;
  --bg_ling_color2: #FBFF9D;
}

/*　ハンバーガーボタン　*/
.hamburger {
  position: relative;
  z-index: 99999;
  width: 50px;
  height: 50px;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  background-color: var(--color_main);
}

.hamburger span {
  display: block;
  position: absolute;
  width: 22px;
  height: 2px;
  left: 13px;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border-radius: 100vmax;
}

.hamburger span:nth-child(1) {
  top: 16px;
}

.hamburger span:nth-child(2) {
  top: 23px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 23px;
  left: 13px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 23px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hamburger p.ttl {
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}

.globalMenuSp_main_menu_box {
  position: fixed;
  top: 119px;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f4fdff;
  z-index: 500;
  overflow: scroll;
  display: none;
}

.globalMenuSp_main_menu_box .inner.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 0;
}

.globalMenuSp_main_menu_box ul {
  width: 100%;
  padding: 6vw;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.globalMenuSp_main_menu_box ul li a {
  font-size: 3.6vw;
  display: flex;
  align-items: center;
  gap: 0.7em;
  color: var(--color_text);
  font-weight: bold;
  text-align: left;
}

.globalMenuSp_main_menu_box ul li .js-sp_sub_menu_btn::after {
  content: "";
  flex-shrink: 0;
  width: 2vw;
  height: 2vw;
  border-color: var(--color_text);
  border-width: 0 2px 2px 0;
  transform: rotate(-45deg);
  transition: .3s;
}

.globalMenuSp_main_menu_box ul li a::before {
  content: "";
  flex-shrink: 0;
  width: 3vw;
  height: 3vw;
  border-radius: 50%;
  background-color: var(--color_main);
}

.globalMenuSp_main_menu_box ul li+li {
  margin-top: 30px;
}

/* サブメニュー */

.sp_sub_menu .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 74%;
}

.js-sp_sub_menu {
  position: fixed;
  z-index: 600;
  height: 100%;
  width: 100%;
  background-color: var(--bg_color);
  display: none;
}

.sp_sub_menu .inner p.ttl {
  font-weight: bold;
  font-size: 20px;
  border-bottom: 2px solid currentColor;
}

.sp_sub_menu .inner ul {
  margin-top: 20px;
}

.sp_sub_menu .inner ul li a {
  color: var(--color_text);
  font-weight: bold;
}

.sp_sub_menu .inner ul li+li {
  margin-top: 30px;
}

/* 戻るボタン */

.sp_sub_menu .inner p.back_btn {
  color: var(--color_text);
  width: 150px;
  text-align: center;
  font-weight: bold;
  margin: 50px auto 0;
  border: 2px solid var(--color_text);
  border-radius: 100px;
  padding: 3px 0;
}