@charset "UTF-8";

/* ハンバーガーボタン */

.hamburger {
  position: fixed;
  top: 7px;
  right: 10px;
  z-index: 10000;
  line-height: 30px;
  width: 30px;
  height: 35px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  background: #555;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

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

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

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

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 18px;
  left: 0;
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  transform: rotate(315deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(-315deg);
  -moz-transform: rotate(-315deg);
  transform: rotate(-315deg);
}

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

.globalMenuSp_main_menu_box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #eee;
  z-index: 500;
  display: none;
}

.globalMenuSp_main_menu_box .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 100%;
}

.globalMenuSp_main_menu_box ul {
  width: 100%;
}

.globalMenuSp_main_menu_box ul li a {
  display: block;
  color: #000;
  font-weight: bold;
  text-align: center;
}

.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: 100%;
}

.js-sp_sub_menu {
  position: fixed;
  z-index: 600;
  height: 100%;
  width: 100%;
  background-color: #ddd;
  display: none;
}

.sp_sub_menu .inner p.ttl {
  font-weight: bold;
  font-size: 20px;
}

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

.sp_sub_menu .inner ul li a {
  color: #000;
  font-weight: bold;
}

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

/* 戻るボタン */

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

/* ===================================================
追加
=================================================== */
/* メインメニュー */
.globalMenuSp_main_menu_box {
  top: 55px;
  background: #263b6e;
}

.globalMenuSp_main_menu_box ul {
  height: calc(100vh - 55px);
  padding: 13vw 10.4vw 18vw;
  overflow-y: scroll;
}

.globalMenuSp_main_menu_box ul li+li {
  margin-top: 10.4vw;
}

.globalMenuSp_main_menu_box ul li a {
  color: #fff;
  padding-bottom: 2.6vw;
  border-bottom: 0.26vw solid #e0e0e0;
  padding-right: 6vw;
  text-align: left;
  cursor: pointer;
}

.globalMenuSp_main_menu_box ul li .js-sp_sub_menu_btn {
  position: relative;
}

.globalMenuSp_main_menu_box ul li .js-sp_sub_menu_btn::before,
.globalMenuSp_main_menu_box ul li .js-sp_sub_menu_btn::after {
  content: "";
  display: inline-block;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.globalMenuSp_main_menu_box ul li .js-sp_sub_menu_btn::before {
  width: 3vw;
  height: 3vw;
  top: calc(50% - 0.4vw);
  right: 1vw;
  background: #263b6e;
  clip-path: polygon(0 0, 50% 70%, 100% 0);
  z-index: 1;
}

.globalMenuSp_main_menu_box ul li .js-sp_sub_menu_btn::after {
  width: 5vw;
  height: 5vw;
  top: calc(50% - 1vw);
  right: 0;
  background: #fff;
  border-radius: 50%;
}

.globalMenuSp_sub_menu_box .js-sp_sub_menu ul li a.toggle {
  position: relative;
  flex-wrap: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2vw;
  padding-right: 0;
}

.globalMenuSp_sub_menu_box .js-sp_sub_menu .circle {
  position: relative;
  flex-shrink: 0;
  display: inline-block;
  width: 5vw;
  height: 5vw;
  top: calc(50% - 1vw);
  right: 0;
  background: #fff;
  border-radius: 50%;
}

.globalMenuSp_sub_menu_box .js-sp_sub_menu .circle::before,
.globalMenuSp_sub_menu_box .js-sp_sub_menu .circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #263b6e;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.globalMenuSp_sub_menu_box .js-sp_sub_menu .circle::before {
  width: 0.51vw;
  height: 3.08vw;
}

.globalMenuSp_sub_menu_box .js-sp_sub_menu .circle::after {
  width: 3.08vw;
  height: 0.51vw;
}

.globalMenuSp_sub_menu_box .js-sp_sub_menu .toggle.active .circle::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

/* サブメニュー */
.sp_sub_menu .inner {
  height: calc(100vh - 55px);
  justify-content: flex-start;
  background: #263b6e;
  padding: 13vw 10.4vw;
  overflow-y: scroll;
}

.sp_sub_menu .inner p.ttl {
  font-size: 5.2vw;
  font-weight: bold;
  color: #fff;
}

.sp_sub_menu .inner ul {
  width: 100%;
  margin-top: 13vw;
}

.sp_sub_menu .inner ul li a {
  display: block;
  color: #fff;
  border-bottom: 0.26vw solid #e0e0e0;
  padding-bottom: 2.6vw;
  padding-right: 6vw;
  cursor: pointer;
}

.sp_sub_menu .inner ul li+li {
  margin-top: 10.4vw;
}

.sp_sub_menu .inner p.back_btn {
  width: 39vw;
  color: #263b6e;
  background: #fff;
  margin: 15.6vw auto 0;
  border: 0.51vw solid #263b6e;
  border-radius: 26vw;
  padding: 0.51vw 0;
  padding: 1.3vw;
  cursor: pointer;
}

/* アコーディオン */
.sp_accordion {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease;
  transition: max-height 0.5s ease;
}

.sp_sub_menu .sp_accordion ul {
  margin-top: 7vw;
}

.sp_sub_menu .sp_accordion ul li+li {
  margin-top: 1vw;
}

.sp_sub_menu .sp_accordion ul li a {
  position: relative;
  display: block;
  color: #fff;
  border-bottom: none;
  padding-bottom: 2.6vw;
  padding-left: 6vw;
  padding-right: 6vw;
  cursor: pointer;
}

.sp_sub_menu .sp_accordion ul li a::before {
  content: "";
  width: 2.05vw;
  height: 2.05vw;
  position: absolute;
  top: calc(50% - 1.2vw);
  left: 0;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  border-right: 0.51vw solid #fff;
  border-bottom: 0.51vw solid #fff;
}

/* ボタン */
.globalMenuSp_main_menu_box .btn {
  margin-top: 2.6vw;
}

.globalMenuSp_main_menu_box .btn--first {
  margin-top: 10.4vw;
}

.globalMenuSp_main_menu_box .btn a {
  color: #2f97c1;
  background: #fff;
  border-bottom: none;
  border-radius: 1.04vw;
  padding: 2vw 2.6vw;
  text-align: center;
}

.globalMenuSp_main_menu_box .btn a .en {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 4.62vw;
  line-height: 1;
  padding-left: 0.5vw;
  margin-top: 0.78vw;
}