@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Cardo:wght@400;700&display=swap");
:root {
  --color--black: #000000;
  --color--white: #ffffff;
  --color--navy: #191b25;
  --color--hover_navy: #31333c;
  --color--midgray: #6d7184;
  --color--lightgray: #b8bac2;
  --color--lightgray2: #f8f8f9;
  --color--whitegray: #dddee2;
  --color--gray: #a2a2ac;
  --color--skyblue: #cae2e5;
  --color--linegray: #d3d3d3;
}
html {
    scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  margin: 0px;
  padding: 0px;
  background-color: var(--color--white);
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  color: var(--color--navy);
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro",
    "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: 0.1em;
  overflow-x: hidden;
}
body.scroll-stop {
  overflow: hidden;
}
.ft_cardo {
  font-family: "Cardo", serif;
}
a.btn {
  opacity: 1;
  transition: 0.3s;
}
a.btn:hover {
  opacity: 0.7;
}

/* == ヘッダー ==========
   ==================== */
header {
  width: 100%;
  height: 100px;
  background-color: var(--color--white);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  transition: background-color 0.3s;
}
#top header {
  background-color: rgba(255, 255, 255, 0);
}
#top header.child_item_active {
  background-color: var(--color--white);
}
.header__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  height: 100%;
  padding: 0 40px;
  margin: 0 auto;
}
.hamburger {
  display: none;
}
.header__logo {
  width: 191px;
  height: auto;
  margin: 0 auto 0 0;
}
.header__logo a {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 48px;
  color: var(--color--gray);
}
#top .header__logo a {
  color: var(--color--white);
}
#top .child_item_active .header__logo a {
  color: var(--color--gray);
}
.header__logo a img {
  opacity: 0;
}
.header__logo a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color--navy);
  -webkit-mask: url(../image/cmn/logo.svg) no-repeat top center/contain;
  mask: url(../image/cmn/logo.svg) no-repeat top center/contain;
}
#top .header__logo a::before {
  background-color: var(--color--white);
}
#top .child_item_active .header__logo a::before {
  background-color: var(--color--navy);
}
@media (any-hover: hover) {
  .header__logo a {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .header__logo a::before {
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
  }
  .header__logo a:hover {
    color: var(--color--midgray);
  }
  #top .header__logo a:hover {
    color: var(--color--navy);
  }
  #top .child_item_active .header__logo a:hover {
    color: var(--color--midgray);
  }
  .header__logo a:hover::before {
    background: var(--color--midgray);
  }
  #top .header__logo a:hover::before {
    background-color: var(--color--navy);
  }
  #top .child_item_active .header__logo a:hover::before {
    background-color: var(--color--midgray);
  }
}
.global_nav {
  width: auto;
  height: auto;
}
.global_nav_video {
  display: none;
}
.global_nav__contents {
  width: auto;
  height: auto;
}
.global_nav__menu_list_wrap {
  width: auto;
  height: auto;
}
.global_nav__menu_list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 32px;
  width: auto;
  height: auto;
  padding-top: 3px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.global_nav__language_wrap{
  padding-top: 48px;
  border-bottom: 1px solid var(--color--white);
  padding-bottom: 48px;
  display: none;
}

.global_nav__language__ttl{
  display: block;
  border: 1px solid var(--color--white);
  padding: 2px 8px;
  text-align: center;
  color: var(--color--white);
}

.global_nav__language__list{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 4px 16px;
  margin-top: 16px;
}

.global_nav__language__list a{
  color: var(--color--white);
  padding: 2px 8px;
  font-size: 14px;
}

.global_nav__language__list a::before{
  content: '-';
  display: inline-block;
  margin-right: 4px;
}

.global_nav__ec_wrap {
  display: none;
}
@media all and (max-width: 1370px) {
  .global_nav__menu_list {
    column-gap: 16px;
    font-size: 13px;
  }
}
.global_nav__menu_list__item {
  width: auto;
  height: auto;
}
.global_nav__menu_list__item .global_nav__menu_list__item__txt {
  display: block;
  color: var(--color--navy);
  cursor: pointer;
}
.global_nav__menu_list__item .global_nav__menu_list__item__txt .is-pctxt{
  display: inline;
}.global_nav__menu_list__item .global_nav__menu_list__item__txt .is-sptxt{
  display: none;
}
.global_nav__menu_list__item .global_nav__menu_list__item__line {
  height: 24px;
  width: 1px;
  display: block;
  background-color: var(--color--navy);
}
#top .global_nav__menu_list__item .global_nav__menu_list__item__line {
  background-color: var(--color--white);
}
#top .global_nav__menu_list__item .global_nav__menu_list__item__txt {
  color: var(--color--white);
}
#top
  .child_item_active
  .global_nav__menu_list__item
  .global_nav__menu_list__item__txt {
  color: var(--color--navy);
}
.global_nav__menu_list__item.active .global_nav__menu_list__item__txt {
  color: var(--color--midgray);
}
#top .global_nav__menu_list__item.active .global_nav__menu_list__item__txt {
  color: var(--color--navy);
}
#top
  .child_item_active
  .global_nav__menu_list__item.active
  .global_nav__menu_list__item__txt {
  color: var(--color--midgray);
}
@media (any-hover: hover) {
  .global_nav__menu_list__item .global_nav__menu_list__item__txt {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .global_nav__menu_list__item .global_nav__menu_list__item__txt:hover {
    color: var(--color--midgray);
  }
  #top .global_nav__menu_list__item .global_nav__menu_list__item__txt:hover {
    color: var(--color--navy);
  }
  #top
    .child_item_active
    .global_nav__menu_list__item
    .global_nav__menu_list__item__txt:hover {
    color: var(--color--midgray);
  }
}
.global_nav__child_menu {
  width: 100%;
  height: auto;
  background-color: var(--color--navy);
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(0%, 100%);
  visibility: hidden;
  transition: 0.3s;
  opacity: 0;
}
.active .global_nav__child_menu {
  visibility: visible;
  opacity: 1;
}
.global_nav__child_menu_list_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 1120px;
  height: auto;
  padding: 45px 24px;
  margin: 0 auto;
}
.global_nav__child_menu_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 20px;
  width: 100%;
  height: auto;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}
.global_nav__child_menu_list.center {
  justify-content: center;
  column-gap: 80px;
}
.global_nav__child_menu_list__item {
  width: auto;
  height: auto;
}
.global_nav__child_menu_list__item > a {
  display: block;
  padding-left: 24px;
  padding-right: 0;
  color: var(--color--white);
  position: relative;
}
.global_nav__child_menu_list__item.inactive > a {
  color: var(--color--midgray);
  pointer-events: none;
}
.global_nav__child_menu_list__item > a::before {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background-color: var(--color--white);
  position: absolute;
  top: 43%;
  left: 0;
}
.global_nav__child_menu_list__item.inactive > a::before {
  background-color: var(--color--midgray);
}

.global_nav__child_menu_list__item__area{
  font-size: 12px;
  color: inherit
}

@media (any-hover: hover) {
  .global_nav__child_menu_list__item > a {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .global_nav__child_menu_list__item > a::before {
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
    opacity: 1;
  }
  .global_nav__child_menu_list__item > a:hover {
    color: var(--color--midgray);
  }
  .global_nav__child_menu_list__item > a:hover::before {
    background-color: var(--color--midgray);
  }
}
.global_nav__sns_list_wrap {
  display: none;
}
.header__icon_list_wrap {
  margin-left: 40px;
  display: flex;
}
@media all and (max-width: 1280px) {
  .header__icon_list_wrap {
    margin-left: 24px;
  }
}
.header__icon_list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 8px;
  width: auto;
  height: auto;
}
.header__icon_list__item {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color--lightgray2);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  position: relative;
}

.header__icon_list__item__submenu{
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  padding-top: 8px;
  display: none;
}

.header__icon_list__item__submenu__inner{
  background-color: var(--color--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: fit-content;
  padding: 12px 10px;
}

.header__icon_list__item__submenu a{
  font-size: 13px;
  color: var(--color--white);
  white-space: nowrap;
  text-align: center;
  display: block;
}

.header__icon_list__item__submenu button{
  font-size: 13px;
  color: var(--color--white);
  white-space: nowrap;
  text-align: center;
  display: none;
  cursor: pointer;
}

.header__icon_list__item__submenu hr{
  width: 100%;
  height: 1px;
  background-color: var(--color--white);
  border: none;
}

.header__icon_list__item__submenu a:hover{
  color: var(--color--lightgray);
}

#top .header__icon_list__item {
  background-color: rgba(25, 27, 37, 0.2);
}
.header__icon_list__item>a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  color: var(--color--midgray);
}
#top .header__icon_list__item>a {
  color: var(--color--white);
}
#top .child_item_active .header__icon_list__item>a {
  color: var(--color--midgray);
}
.header__icon_list__item>a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color--midgray);
}
#top .header__icon_list__item>a::before {
  background-color: var(--color--white);
}
#top .child_item_active .header__icon_list__item>a::before {
  background-color: var(--color--midgray);
}
.header__icon_list__item>a.cart::before {
  -webkit-mask: url(../image/cmn/icon-cart.svg) no-repeat top center/contain;
  mask: url(../image/cmn/icon-cart.svg) no-repeat top center/contain;
}
.header__icon_list__item>a.instagram::before {
  -webkit-mask: url(../image/cmn/icon-instagram.svg) no-repeat top
    center/contain;
  mask: url(../image/cmn/icon-instagram.svg) no-repeat top center/contain;
}
.header__icon_list__item>a.language::before {
  -webkit-mask: url(../image/cmn/icon-lang.svg) no-repeat top
    center/contain;
  mask: url(../image/cmn/icon-lang.svg) no-repeat top center/contain;
}
@media (any-hover: hover) {
  .header__icon_list__item a {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .header__icon_list__item>a::before {
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
  }
  .header__icon_list__item>a:hover,
  #top .header__icon_list__item>a:hover {
    color: var(--color--navy);
  }
  .header__icon_list__item>a:hover::before,
  #top .header__icon_list__item a:hover::before {
    background: var(--color--navy);
  }
}

/* == フッター ==========
   ==================== */
footer {
  width: 100%;
  height: auto;
  background-color: var(--color--white);
  position: relative;
  z-index: 2;
}
.footer__inner {
  width: 100%;
  height: auto;
}
.footer__swiper__container {
  width: 100%;
  height: auto;
  position: relative;
}
.footer__swiper__logo {
  width: 15.1388%;
  max-width: 218px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
}
.footer__swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.footer_slide {
  margin: 0 -1px;
}
.footer__swiper__image {
  width: 100%;
  height: auto;
}

.footer__supporters {
  width: 100%;
  height: auto;
  padding: 200px 0;
  margin: 0 auto;
}
.footer__supporters .section__heading {
  text-align: center;
}
.footer__supporters .section__heading::after {
  left: 50%;
  transform: translate(-50%, 0%);
}
.footer__supporters__txt {
  width: 100%;
  height: auto;
  margin: 0 auto 80px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}
.footer__supporters__banner_list_wrap {
  width: 90%;
  max-width: 920px;
  height: auto;
  margin: 0 auto;
}
.footer__supporters__banner_list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 40px;
  width: 100%;
  height: auto;
}
.footer__supporters__banner_list__item {
  width: 200px;
  height: auto;
}
.footer__supporters__banner_list__item a,
.footer__supporters__ec_list__item a {
  display: block;
  width: 100%;
  height: auto;
}
.footer__supporters__ec_list_wrap {
  width: 83%;
  max-width: 920px;
  height: auto;
  padding: 64px 0;
  margin: 80px auto 0;
  background-color: var(--color--navy);
}
.footer__supporters__ec_list__heading {
  width: fit-content;
  height: auto;
  margin: 0 auto 20px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
  color: var(--color--white);
  padding-bottom: 10px;
  border-bottom: solid 1px var(--color--white);
}
.footer__supporters__ec_list__heading br {
  display: none;
}
.footer__supporters__ec_list__heading_description {
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%; /* 30px */
  letter-spacing: 1.5px;
  width: 90%;
  max-width: 718px;
  margin: 0 auto 32px;
  color: var(--color--white);
}
.footer__supporters__ec_list__banner__wrapper {
  width: 90%;
  max-width: 718px;
  margin: auto;
  background-color: var(--color--white);
  border-radius: 8px;
  display: flex;
  gap: 36px;
  overflow: hidden;
  padding: 24px;
}
.footer__supporters__ec_list__banner__wrapper_left {
  width: 50%;
  min-width: 330px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.footer__supporters__ec_list__banner__wrapper_left .text {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 20px */
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.footer__supporters__ec_list__banner__wrapper_left .border_btn {
  margin-top: 12px;
  height: 48px;
  display: flex;
}
.footer__supporters__ec_list__banner__wrapper_right {
  width: 50%;
}
.footer__supporters__ec_list_wrap .footer__supporters__banner_list::before,
.footer__supporters__ec_list_wrap .footer__supporters__banner_list::after {
  display: none;
}

.footer__supporters__ec_list_text {
  color: var(--color--white);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%; /* 32.4px */
  letter-spacing: 1.8px;
  margin: 48px auto 24px;
}

.footer__supporters__ec_list {
  width: 90%;
  max-width: 718px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__supporters__ec_list__item {
  width: calc(50% - 32px);
  border-radius: 6px;
  overflow: hidden;
}
.footer__label_image {
  width: 100%;
  height: auto;
}
.footer__contents {
  width: 100%;
  height: auto;
}
.footer__contents__inner {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1440px;
  height: auto;
  padding: 64px 40px;
  margin: 0 auto;
}
@media all and (max-width: 1250px) {
  .footer__contents__inner {
    justify-content: space-between;
    align-items: flex-start;
  }
}
.footer__contents__nagasaki_logo {
  width: 165px;
  height: auto;
  margin: 0;
}
.footer__contents__nagasaki_logo a {
  display: block;
  width: 100%;
  height: auto;
}
.footer__contents__nagasaki_logo a img {
  width: auto;
  height: 40px;
}
.footer__contents__contact {
  width: auto;
  height: auto;
  margin: 0 auto 0 48px;
}
@media all and (max-width: 1250px) {
  .footer__contents__contact {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 13px 0;
    margin: 0;
  }
}
.footer__contents__contact__heading {
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media all and (max-width: 1250px) {
  .footer__contents__contact__heading {
    margin: 0 12px 0 0;
  }
}
.footer__contents__contact__details {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}
.footer__contents__contact__details__division.vertical {
  display: none;
}
.footer__contents__contact__details__division.horizontal {
  display: block;
}

.footer__contents__contact__details__email_address a {
  text-decoration: underline;
  color: var(--color--navy);
}
.at_mark::before {
  content: "@";
}
.footer__contents__menu_wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 40px;
  width: auto;
  height: 24px;
}
@media all and (max-width: 1280px) {
  .footer__contents__menu_wrap {
    column-gap: 34px;
  }
}
@media all and (max-width: 1250px) {
  .header__inner {
    padding: 0 16px;
  }
  .header__logo {
    width: 154px;
  }
  .footer__contents__menu_wrap {
    width: 100%;
    margin-top: 24px;
  }
}
.footer__contents__sns_list_wrap {
  width: auto;
  height: auto;
}
.footer__contents__sns_list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 24px;
  width: auto;
  height: auto;
}
.footer__contents__sns_list__item {
  width: auto;
  height: auto;
}
.footer__contents__sns_list__item a {
  display: block;
  width: 24px;
  height: 24px;
}
.footer__contents__sns_list__item a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color--midgray);
}
.footer__contents__sns_list__item a.instagram::before {
  -webkit-mask: url(../image/cmn/icon-instagram.svg) no-repeat top
    center/contain;
  mask: url(../image/cmn/icon-instagram.svg) no-repeat top center/contain;
}
.footer__contents__sns_list__item a.youtube::before {
  -webkit-mask: url(../image/cmn/icon-youtube.svg) no-repeat top center/contain;
  mask: url(../image/cmn/icon-youtube.svg) no-repeat top center/contain;
}
.footer__contents__sns_list__item a.x::before {
  -webkit-mask: url(../image/cmn/icon-x.svg) no-repeat top center/contain;
  mask: url(../image/cmn/icon-x.svg) no-repeat top center/contain;
}
.footer__contents__sns_list__item a.facebook::before {
  -webkit-mask: url(../image/cmn/icon-facebook.svg) no-repeat top center/contain;
  mask: url(../image/cmn/icon-facebook.svg) no-repeat top center/contain;
}
@media (any-hover: hover) {
  .footer__contents__sns_list__item a {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .footer__contents__sns_list__item a::before {
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
  }
  .footer__contents__sns_list__item a:hover {
    color: var(--color--navy);
  }
  .footer__contents__sns_list__item a:hover::before {
    background: var(--color--navy);
  }
}
.footer__contents__policy {
  width: auto;
  height: auto;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.1em;
  text-align: right;
}
.footer__contents__policy a {
  color: var(--color--navy);
}
.footer__contents__copyright {
  width: auto;
  height: auto;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
}

/* == 共通 ==========
   ================== */
/* 見出し */
.section__heading {
  width: 100%;
  height: auto;
  padding: 0 0 32px;
  margin: 0 auto 32px;
  position: relative;
}
.section__heading__sub {
  width: 100%;
  height: auto;
  margin: 0 auto 16px;
  font-family: Cardo;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
}
.section__heading__main {
  width: 100%;
  height: auto;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.6;
}
.section__heading::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: var(--color--navy);
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(0%, 0%);
}

/* アイコン 矢印 */
.arrow {
  display: block;
  width: 24px;
  height: 5.77px;
}
.arrow::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  -webkit-mask: url(../image/cmn/icon-arrow.png) no-repeat top center/100% auto;
  mask: url(../image/cmn/icon-arrow.png) no-repeat top center/100% auto;
}
.arrow.white::before {
  background-color: var(--color--white);
}
.arrow.lightgray::before {
  background-color: var(--color--lightgray);
}
.arrow.midgray::before {
  background-color: var(--color--midgray);
}
.arrow.navy::before {
  background-color: var(--color--navy);
}

/* アイコン 外部リンク */
.external_link {
  display: block;
  width: 24px;
  height: 24px;
}
.external_link::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  -webkit-mask: url(../image/cmn/icon-external_link.svg) no-repeat top
    center/100% auto;
  mask: url(../image/cmn/icon-external_link.svg) no-repeat top center/100% auto;
}
.external_link.white::before {
  background-color: var(--color--white);
}
.external_link.midgray::before {
  background-color: var(--color--midgray);
}
.external_link.navy::before {
  background-color: var(--color--navy);
}

/* ボタン */
.border_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 64px;
  padding: 1px 0 0 16px;
  border: solid 1px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}
.border_btn.white {
  border-color: var(--color--white);
  color: var(--color--white);
}
.border_btn.navy {
  border-color: var(--color--navy);
  color: var(--color--navy);
}
.border_btn.midgray {
  border-color: var(--color--midgray);
  color: var(--color--midgray);
}
.border_btn.white_beta {
  background-color: var(--color--white);
  border-color: var(--color--white);
  color: var(--color--white);
}
.border_btn .arrow {
  margin-left: 16px;
  position: relative;
  left: 0;
}
.border_btn .external_link {
  margin-left: 16px;
  margin-right: -5px;
  position: relative;
  left: 0;
}
@media (any-hover: hover) {
  .border_btn {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .border_btn.white:hover {
    background-color: var(--color--white);
    color: var(--color--navy);
  }
  .border_btn.navy:hover {
    background-color: var(--color--navy);
    color: var(--color--white);
  }
  .border_btn.midgray:hover {
    background-color: var(--color--midgray);
    color: var(--color--navy);
  }
  .border_btn .arrow,
  .border_btn .external_link {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .border_btn:hover .arrow {
    left: 8px;
  }
  .border_btn .arrow::before,
  .border_btn .external_link::before {
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .border_btn.white:hover .arrow::before,
  .border_btn.white:hover .external_link::before {
    background-color: var(--color--navy);
  }
  .border_btn.navy:hover .arrow::before,
  .border_btn.navy:hover .external_link::before {
    background-color: var(--color--white);
  }
  .border_btn.midgray:hover .arrow::before,
  .border_btn.midgray:hover .external_link::before {
    background-color: var(--color--navy);
  }
}

.line_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 8px 16px 16px 0;
  border-bottom: solid 1px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}
.line_btn.midgray {
  border-color: var(--color--midgray);
  color: var(--color--navy);
}
.line_btn .arrow {
  position: relative;
  left: 0;
}
@media (any-hover: hover) {
  .line_btn.midgray {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .line_btn .arrow {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .line_btn.midgray .arrow::before {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

.solid_color_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 48px;
  padding: 0 0 0 16px;
  border: solid 1px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}
.solid_color_btn.white {
  background-color: var(--color--white);
  border-color: var(--color--white);
  color: var(--color--navy);
}
.solid_color_btn.navy {
  background-color: var(--color--navy);
  border-color: var(--color--navy);
  color: var(--color--white);
}
.solid_color_btn.midgray {
  background-color: var(--color--midgray);
  border-color: var(--color--midgray);
  color: var(--color--navy);
}
.solid_color_btn .arrow {
  margin-left: 16px;
  position: relative;
  left: 0;
}
.solid_color_btn .external_link {
  margin-left: 16px;
  margin-right: -5px;
  position: relative;
  left: 0;
}
@media (any-hover: hover) {
  .solid_color_btn {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .solid_color_btn.white:hover {
    background-color: var(--color--navy);
    color: var(--color--white);
  }
  .solid_color_btn.navy:hover {
    background-color: var(--color--white);
    color: var(--color--navy);
  }
  .solid_color_btn.midgray:hover {
    background-color: var(--color--white);
    color: var(--color--navy);
  }
  .solid_color_btn .arrow,
  .solid_color_btn .external_link {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .solid_color_btn:hover .arrow {
    left: 8px;
  }
  .solid_color_btn .arrow::before,
  .solid_color_btn .external_link::before {
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .solid_color_btn.white:hover .arrow::before,
  .solid_color_btn.white:hover .external_link::before {
    background-color: var(--color--white);
  }
  .solid_color_btn.navy:hover .arrow::before,
  .solid_color_btn.navy:hover .external_link::before {
    background-color: var(--color--navy);
  }
  .solid_color_btn.midgray:hover .arrow::before,
  .solid_color_btn.midgray:hover .external_link::before {
    background-color: var(--color--navy);
  }
}

.simple_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 64px;
  padding: 0;
  border: solid 1px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}
.simple_btn.white {
  border-color: var(--color--white);
  color: var(--color--white);
}
.simple_btn.navy {
  border-color: var(--color--navy);
  color: var(--color--navy);
}
.simple_btn.midgray {
  border-color: var(--color--midgray);
  color: var(--color--midgray);
}
@media (any-hover: hover) {
  .simple_btn {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .simple_btn.white:hover {
    background-color: var(--color--white);
    color: var(--color--navy);
  }
  .simple_btn.navy:hover {
    background-color: var(--color--navy);
    color: var(--color--white);
  }
  .simple_btn.midgray:hover {
    background-color: var(--color--midgray);
    color: var(--color--navy);
  }
}

/* PC ================================================== */
@media all and (max-width: 1100px) {
  /* == ヘッダー ==========
   ==================== */
  header {
    height: 80px;
  }
  #top header.hamburger_open {
    background-color: var(--color--white);
  }
  .header__inner {
    justify-content: space-between;
    padding: 0 16px;
  }
  .hamburger {
    display: block;
    width: 48px;
    height: 48px;
  }
  button.hbg_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    cursor: pointer;
  }
  .hbg_btn_line {
    width: 40px;
    height: 8px;
    position: relative;
  }
  .hbg_btn_line::before,
  .hbg_btn_line::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color--navy);
    position: absolute;
    left: 0;
  }
  #top .hbg_btn_line::before,
  #top .hbg_btn_line::after {
    background-color: var(--color--white);
  }
  #top .hamburger_open .hbg_btn_line::before,
  #top .hamburger_open .hbg_btn_line::after {
    background-color: var(--color--navy);
  }
  .hbg_btn_line::before {
    top: 0;
  }
  .hbg_btn_line::after {
    bottom: 0;
  }
  /* 開く時の処理 */
  .open .hbg_btn_line {
    animation: hbg_btn-line-open 0.35s cubic-bezier(0.65, 0, 0.35, 1) 1 forwards;
  }
  @keyframes hbg_btn-line-open {
    0% {
      height: 8px;
    }
    100% {
      height: 1px;
    }
  }
  /* 閉じる時の処理 */
  .close .hbg_btn_line {
    animation: hbg_btn-line-close 0.35s cubic-bezier(0.65, 0, 0.35, 1) 1
      forwards;
  }
  @keyframes hbg_btn-line-close {
    0% {
      height: 1px;
    }
    100% {
      height: 8px;
    }
  }
  .header__logo {
    width: 154px;
    height: auto;
    margin: 0 auto;
  }
  #top .hamburger_open .header__logo a {
    color: var(--color--gray);
  }
  #top .hamburger_open .header__logo a::before {
    background-color: var(--color--navy);
    transition: 0.3s;
  }
  .global_nav {
    display: none;
    width: 100%;
    height: calc(100dvh - 80px);
    background-color: var(--color--navy);
    overflow: scroll;
    position: fixed;
    top: 80px;
    left: 0;
    z-index: 199;
  }

  .global_nav_video {
    display: block;
  }
  .global_nav__contents {
    width: 100%;
    height: auto;
    padding: 46px 8.5% 220px;
  }
  .global_nav__menu_list_wrap {
    width: 100%;
    margin: 0 auto;
  }
  .global_nav__menu_list {
    display: block;
    width: 100%;
    padding-top: 0px;
    font-size: 15px;
    line-height: 1;
  }
  .global_nav__menu_list__item {
    width: 100%;
  }
  .global_nav__menu_list__item:not(:last-of-type) {
    margin-bottom: 34px;
  }
  .global_nav__menu_list__item .global_nav__menu_list__item__txt {
    display: inline-block;
    padding: 3px 0;
    color: var(--color--white);
  }
  .global_nav__child_menu {
    height: auto;
    margin-top: 34px;
    position: initial;
    transform: translate(0%, 0%);
    visibility: visible;
    opacity: 1;
  }
  .global_nav__child_menu.is-modalnone{
    display: none;
  }
  .global_nav__child_menu_list_wrap {
    display: block;
    width: 100%;
    max-width: 320px;
    height: auto;
    padding: 0;
    margin: 0 auto 0 0;
  }
  .global_nav__child_menu_list {
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    column-gap: 48px;
    row-gap: 26px;
    font-size: 15px;
    line-height: 1;
  }
  .global_nav__child_menu_list.center {
    justify-content: flex-start;
    column-gap: 48px;
  }
  .global_nav__child_menu_list__item .global_nav__menu_list__item__txt {
    display: inline-block;
    padding: 3px 0 3px 40px;
  }
  .global_nav__menu_list__item .global_nav__menu_list__item__txt .is-pctxt{
    display: none;
  }.global_nav__menu_list__item .global_nav__menu_list__item__txt .is-sptxt{
    display: inline;
  }
  .global_nav__child_menu_list__item .global_nav__menu_list__item__txt::before {
    width: 24px;
    top: 48%;
  }
  .global_nav__ec_wrap {
    display: block;
    border-bottom: solid 1px var(--color--white);
    border-top: solid 1px var(--color--white);
  }
  .global_nav__ec_wrap .footer__supporters__ec_list_wrap {
    margin: 0;
    padding: 40px 0;
  }
  .global_nav__ec_wrap .footer__supporters__ec_list_text {
    margin: 24px 0 16px;
  }

  .global_nav__language_wrap{
    display: block;
  }
  
  .global_nav__sns_list_wrap {
    display: block;
    width: 100%;
    height: auto;
    padding-left: 12px;
    margin: 40px auto 0;
  }
  .global_nav__sns_list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 40px;
    width: 100%;
    height: auto;
  }
  .global_nav__sns_list__item {
    width: auto;
    height: auto;
    position: relative;
  }
  .global_nav__sns_list__item a {
    display: block;
    width: 24px;
    height: 24px;
  }
  .global_nav__sns_list__item a::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--color--white);
  }
  .global_nav__sns_list__item a.instagram::before {
    -webkit-mask: url(../image/cmn/icon-instagram.svg) no-repeat top
      center/contain;
    mask: url(../image/cmn/icon-instagram.svg) no-repeat top center/contain;
  }
  .global_nav__sns_list__item a.x::before {
    -webkit-mask: url(../image/cmn/icon-x.svg) no-repeat top center/contain;
    mask: url(../image/cmn/icon-x.svg) no-repeat top center/contain;
  }
  .global_nav__sns_list__item a.youtube::before {
    -webkit-mask: url(../image/cmn/icon-youtube.svg) no-repeat top
      center/contain;
    mask: url(../image/cmn/icon-youtube.svg) no-repeat top center/contain;
  }
  .global_nav__sns_list__item a.facebook::before {
    -webkit-mask: url(../image/cmn/icon-facebook.svg) no-repeat top
      center/contain;
    mask: url(../image/cmn/icon-facebook.svg) no-repeat top center/contain;
  }
  @media (any-hover: hover) {
    .global_nav__sns_list__item a {
      -webkit-transition: color 0.3s;
      transition: color 0.3s;
    }
    .global_nav__sns_list__item a::before {
      -webkit-transition: background 0.3s;
      transition: background 0.3s;
    }
    .global_nav__sns_list__item a:hover {
      color: var(--color--midgray);
    }
    .global_nav__sns_list__item a:hover::before {
      background: var(--color--midgray);
    }
  }
  .header__icon_list_wrap {
    margin: 0;
  }
  .header__icon_list {
    column-gap: 8px;
    width: auto;
    height: auto;
  }
  .header__icon_list__item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
  }
  .header__icon_list__item__submenu button{
    display: block;
  }
  .header__icon_list__item:nth-of-type(2) {
    display: none;
  }
  .header__icon_list__item>a {
    width: 24px;
    height: 24px;
  }
  #top .hamburger_open .header__icon_list__item>a::before {
    background-color: var(--color--midgray);
  }
  /* == フッター ==========
   ==================== */
  .footer__supporters {
    padding: 80px 0;
  }
  .footer__supporters .section__heading {
    width: 83%;
    padding: 0;
    margin: 0 auto 24px;
    text-align: left;
  }
  .footer__supporters .section__heading::after {
    display: none;
  }
  .footer__supporters__txt {
    width: 83%;
    margin: 0 auto 40px;
    text-align: left;
  }
  .footer__supporters__banner_list_wrap {
    width: 83%;
  }
  .footer__supporters__banner_list {
    justify-content: space-between;
    column-gap: 20px;
    row-gap: 0;
  }
  .footer__supporters__banner_list::before,
  .footer__supporters__banner_list::after {
    content: "";
    display: block;
    width: 21%;
    min-width: 138px;
    height: 0;
  }
  .footer__supporters__banner_list::before {
    order: 1;
  }
  .footer__supporters__banner_list__item {
    width: 21%;
    min-width: 138px;
  }
  .footer__supporters__banner_list__item:not(:nth-last-of-type(-n + 4)),
  .footer__supporters__ec_list__item:not(:nth-last-of-type(-n + 4)) {
    margin-bottom: 20px;
  }
  .footer__supporters__ec_list {
    column-gap: 20px;
    row-gap: 0;
  }
  .footer__contents__inner {
    display: block;
    padding: 66px 8.5%;
  }
  .footer__contents__nagasaki_logo {
    width: 160px;
    margin: 0 auto 32px 0;
  }
  .footer__contents__contact {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0 auto 32px;
  }
  .footer__contents__contact__heading {
    margin-bottom: 8px;
  }
  .footer__contents__contact__details {
    display: block;
    line-height: 2;
  }
  .footer__contents__contact__details p:not(:last-of-type) {
    margin-bottom: 8px;
  }
  .footer__contents__contact__details__division {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.1em;
  }
  .footer__contents__contact__details__division.vertical {
    display: block;
  }
  .footer__contents__contact__details__division.horizontal {
    display: none;
  }
  .footer__contents__menu_wrap {
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 0;
    width: 100%;
    height: auto;
  }
  .footer__contents__sns_list_wrap {
    width: 100%;
    margin-bottom: 40px;
  }
  .footer__contents__sns_list {
    width: 100%;
    justify-content: flex-start;
    column-gap: 16px;
  }
  .footer__contents__copyright {
    padding-top: 3px;
    line-height: 1;
  }

  /* == 共通 ==========
   ================== */
}

@media all and (min-width: 992px) {
  .tablet,
  .sp {
    display: none;
  }
  .pc {
    display: inline-block;
  }
  .view_sp {
    display: none;
  }
  .view_tablet {
    display: none;
  }
  .view_pc {
    display: block;
  }
  body {
  }
  h1 {
  }
  h2 {
  }
  h3 {
  }
  h4 {
  }
  h5 {
  }
}

/* Tablet ================================================== */
@media all and (max-width: 991px) {
  .pc,
  .sp {
    display: none;
  }
  .tablet {
    display: inline-block;
  }
  .view_pc {
    display: none;
  }
  .view_sp {
    display: none;
  }
  .view_tablet {
    display: block;
  }
  body {
  }
  h1 {
  }
  h2 {
  }
  h3 {
  }
  h4 {
  }
  h5 {
  }

  /* == フッター ==========
   ==================== */
  .footer__label_image {
    height: 375px;
  }
  .footer__label_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }
}

/* SP ================================================== */
@media all and (max-width: 768px) {
  .pc,
  .tablet {
    display: none;
  }
  .sp {
    display: inline-block;
  }
  .view_pc {
    display: none;
  }
  .view_tablet {
    display: none;
  }
  .view_sp {
    display: block;
  }
  body {
  }
  h1 {
  }
  h2 {
  }
  h3 {
  }
  h4 {
  }
  h5 {
  }

  /* == 共通 ==========
   ================== */
  /* 見出し */
  .section__heading {
    padding: 0 0 24px;
    margin: 0 auto 48px;
  }
  .section__heading__main {
    font-size: 28px;
  }

  /* ボタン */
  .border_btn {
    height: 48px;
    padding: 0 0 0 16px;
  }
  .line_btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 8px 16px 16px 0;
    border-bottom: solid 1px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
  }
  .line_btn.midgray {
    border-color: var(--color--navy);
  }
  .line_btn .arrow {
    position: relative;
    left: 0;
  }
  .line_btn.midgray .arrow::before {
    background-color: var(--color--navy);
  }

  .footer__supporters__ec_list__banner__wrapper {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 48px 24px;
  }

  .footer__supporters__ec_list__banner__wrapper_left {
    width: 100%;
    min-width: none;
  }

  .footer__supporters__ec_list__banner__wrapper_left img {
    width: 90%;
    height: auto;
    object-fit: cover;
    margin: auto;
  }

  .footer__supporters__ec_list__banner__wrapper_left .text {
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 180%; /* 32.4px */
    margin-bottom: 0;
    letter-spacing: 0.5px;
  }

  .footer__supporters__ec_list__banner__wrapper_right {
    width: 100%;
    margin-bottom: 16px;
  }

  .footer__supporters__ec_list__heading {
    width: 100%;
  }

  .footer__supporters__ec_list__banner__wrapper .border_btn {
    display: flex;
  }

  .footer__supporters__ec_list__banner__wrapper_left .border_btn {
    display: none;
  }
}

@media all and (max-width: 740px) {
  /* == フッター ==========
   ==================== */
  .footer__supporters .section__heading {
    margin: 0 auto 16px;
  }
  .footer__supporters__txt {
    margin: 0 auto 24px;
  }
  .footer__supporters__banner_list::before,
  .footer__supporters__banner_list::after {
    width: 30%;
    min-width: initial;
  }
  .footer__supporters__banner_list__item {
    width: 30%;
    min-width: initial;
  }
  .footer__supporters__banner_list__item:not(:nth-last-of-type(-n + 4)) {
    margin-bottom: 0;
  }
  .footer__supporters__banner_list__item:not(:nth-last-of-type(-n + 3)) {
    margin-bottom: 20px;
  }
  .footer__supporters__ec_list_wrap {
    padding: 48px 24px;
    margin: 48px auto 0;
  }
  .footer__supporters__ec_list__heading_description {
    text-align: left;
    width: 100%;
  }
  .footer__supporters__ec_list {
    width: 100%;
  }
  .footer__supporters__ec_list__heading_description br {
    display: none;
  }
  .footer__supporters__ec_list__heading {
    margin: 0 auto 24px;
    font-size: 20px;
  }
  .footer__supporters__ec_list__heading br {
    display: inline-block;
  }
  .footer__supporters__ec_list {
    column-gap: 16px;
    row-gap: 16px;
  }
  .footer__supporters__ec_list__item {
    width: 24.9vw;
    min-width: initial;
  }
}

@media all and (max-width: 575px) {
  /* == フッター ==========
   ==================== */
  .footer__swiper__logo {
    width: 22.6666%;
  }
  .footer__supporters__banner_list {
    column-gap: initial;
  }
  .footer__supporters__banner_list::before,
  .footer__supporters__banner_list::after {
    width: 46.2%;
    min-width: initial;
  }
  .footer__supporters__banner_list__item {
    width: 46.945338%;
    min-width: initial;
  }
  .footer__supporters__banner_list__item:not(:nth-last-of-type(-n + 3)) {
    margin-bottom: 0;
  }
  .footer__supporters__banner_list__item:not(:nth-last-of-type(-n + 2)) {
    margin-bottom: 16px;
  }
  .footer__supporters__ec_list_wrap {
    margin: 80px 0 0;
    width: 100%;
  }
  .footer__supporters__ec_list__item {
    width: calc(50% - 8px);
  }
  .footer__label_image {
    height: auto;
  }
  .footer__label_image img {
    width: 100%;
    height: auto;
    object-fit: initial;
    object-position: initial;
  }
}
