@charset "UTF-8";
/* ================================================
   # 変数・Mixin
   ================================================ */
.header {
  background-color: black;
  position: sticky;
  top: 0;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(255, 0, 0, 0.2);
          box-shadow: 0px 0px 10px 0px rgba(255, 0, 0, 0.2);
  margin-bottom: 175px;
  z-index: 1000;
}
@media screen and (max-width: 767.98px) {
  .header {
    margin-bottom: 80px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.98px) {
  .header__inner {
    padding: 10px 15px;
  }
}

.header__logo {
  z-index: 1001;
}
.header__logo a {
  display: block;
}
.header__logo a img {
  width: 80px;
  height: auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .header__logo a img {
    width: 100px;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-left: 20px;
  }
}

.header__globalNav,
.header__actionNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__globalNav li a,
.header__actionNav li a {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header__globalNav li a:hover,
.header__actionNav li a:hover {
  color: #c93b3b;
  text-shadow: 0 0 5px #c93b3b;
}

.header__globalNav {
  gap: 20px;
}

.header__actionNav {
  gap: 15px;
}

.mobile-user-menu {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  margin-right: 15px;
}
@media screen and (min-width: 768px) {
  .mobile-user-menu {
    display: none;
  }
}

.mobile-user-icon {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px;
  border-radius: 50%;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.mobile-user-icon:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.mobile-user-icon.active {
  background-color: rgba(255, 255, 255, 0.2);
}
.mobile-user-icon .user-avatar,
.mobile-user-icon img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  display: block;
}

.mobile-user-dropdown {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mobile-user-dropdown.show {
  opacity: 1;
  visibility: visible;
}
.mobile-user-dropdown .dropdown-content {
  background: white;
  width: 100%;
  max-width: 400px;
  border-radius: 0 0 20px 20px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding: 0 0 max(30px, env(safe-area-inset-bottom));
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  margin: 0 20px;
  margin-top: 0;
  position: relative;
  z-index: 1;
}
.mobile-user-dropdown.show .dropdown-content {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.mobile-user-dropdown .dropdown-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: #f8f9fa;
  border-radius: 0;
}
.mobile-user-dropdown .dropdown-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}
.mobile-user-dropdown .close-btn {
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 8px;
  border-radius: 50%;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.mobile-user-dropdown .close-btn:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.mobile-user-dropdown .close-btn:active {
  background-color: rgba(0, 0, 0, 0.2);
}
.mobile-user-dropdown .close-btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: #666;
  border-radius: 1px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mobile-user-dropdown .close-btn span:first-child {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.mobile-user-dropdown .close-btn span:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.mobile-user-dropdown .dropdown-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 30px;
  color: #333;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
.mobile-user-dropdown .dropdown-item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 30px;
  right: 30px;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
.mobile-user-dropdown .dropdown-item:hover {
  background-color: #f8f9fa;
  text-decoration: none;
  color: #333;
}
.mobile-user-dropdown .dropdown-item:active {
  background-color: #e9ecef;
}
.mobile-user-dropdown .dropdown-item i {
  margin-right: 15px;
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  color: #6c757d;
}
.mobile-user-dropdown .dropdown-item.logout-link i {
  color: #dc3545;
}
.mobile-user-dropdown .dropdown-item.logout-link:hover {
  background-color: #fff5f5;
  color: #dc3545;
}
.mobile-user-dropdown .dropdown-item.logout-link:active {
  background-color: #fee;
}
.mobile-user-dropdown.show::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  cursor: pointer;
}

.user-menu-item {
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 767.98px) {
  .user-menu-item {
    display: none !important;
  }
}

.user-menu-toggle {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 12px;
  text-decoration: none;
  color: white;
  border-radius: 20px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  cursor: pointer;
  z-index: 10;
  position: relative;
}
.user-menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: white;
}
.user-menu-toggle:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.2);
}
.user-menu-toggle.active .user-menu-arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.user-menu-toggle .user-avatar,
.user-menu-toggle img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 8px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.user-name {
  margin-right: 5px;
  font-weight: 500;
  color: white;
  pointer-events: none;
}
@media screen and (max-width: 767.98px) {
  .user-name {
    display: none;
  }
}

.user-menu-arrow {
  font-size: 12px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  color: white;
  pointer-events: none;
}

.user-dropdown-modal {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 180px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.user-dropdown-modal.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.user-dropdown-modal .dropdown-content {
  padding: 8px 0;
}
.user-dropdown-modal .dropdown-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 16px;
  color: #333;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.user-dropdown-modal .dropdown-item:hover {
  background-color: #f5f5f5;
  text-decoration: none;
  color: #333;
}
.user-dropdown-modal .dropdown-item i {
  margin-right: 8px;
  width: 16px;
  text-align: center;
}
.user-dropdown-modal .dropdown-item.logout-link:hover {
  background-color: #fee;
  color: #c33;
}

.drawer-icon {
  width: 30px;
  height: 20px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-open .drawer-icon__bar:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
          transform: translateY(8px) rotate(45deg);
}
.drawer-icon.is-open .drawer-icon__bar:nth-child(2) {
  opacity: 0;
}
.drawer-icon.is-open .drawer-icon__bar:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
          transform: translateY(-8px) rotate(-45deg);
}

.drawer-icon__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: white;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.drawer-icon__bar:nth-child(1) {
  top: 0;
}
.drawer-icon__bar:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.drawer-icon__bar:nth-child(3) {
  bottom: 0;
}

.drawer-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.drawer-menu.is-open {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 768px) {
  .drawer-menu {
    display: none;
  }
}

.drawer-menu__inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background-color: black;
  padding: 80px 20px 20px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  overflow-y: auto;
}
.drawer-menu.is-open .drawer-menu__inner {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-menu__nav,
.drawer-menu__action {
  list-style: none;
  margin: 0;
  padding: 0;
}
.drawer-menu__nav:not(:last-child),
.drawer-menu__action:not(:last-child) {
  margin-bottom: 40px;
}
.drawer-menu__nav li,
.drawer-menu__action li {
  margin-bottom: 15px;
}
.drawer-menu__nav li a,
.drawer-menu__action li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  padding: 15px 0;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.drawer-menu__nav li a:hover,
.drawer-menu__action li a:hover {
  color: red;
}

body.drawer-open,
body.mobile-menu-open {
  overflow: hidden;
}

footer {
  background-color: black;
  color: white;
  padding: 40px 0 20px;
}
@media screen and (max-width: 767.98px) {
  footer {
    padding: 30px 0 15px;
  }
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

@media screen and (min-width: 768px) {
  .footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
  }
}

.footer__search {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .footer__search {
    margin-bottom: 0;
  }
}

.footer__search-title {
  color: #c93b3b;
  text-shadow: 0 0 5px #c93b3b;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #c93b3b;
}
@media screen and (min-width: 768px) {
  .footer__search-title {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

.footer__search-area {
  margin-bottom: 20px;
}
@media screen and (max-width: 767.98px) {
  .footer__search-area {
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 768px) {
  .footer__search-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 25px;
  }
}

.footer__search-area-name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .footer__search-area-name {
    width: 80px;
    margin-bottom: 0;
    margin-right: 20px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 18px;
  }
}
.footer__search-area-name a {
  color: white;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.footer__search-area-name a:hover {
  color: red;
}

.footer__search-area-pref {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 15px;
}
@media screen and (min-width: 768px) {
  .footer__search-area-pref {
    gap: 0 20px;
  }
}
.footer__search-area-pref li {
  font-size: 16px;
}
.footer__search-area-pref li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.footer__search-area-pref li a:hover {
  color: white;
}

.footer__search-conditions {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .footer__search-conditions {
    margin-bottom: 0;
  }
}

.footer__search-condition {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 20px;
}
@media screen and (min-width: 768px) {
  .footer__search-condition {
    gap: 20px 30px;
  }
}

.footer__search-condition-name a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 16px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.footer__search-condition-name a:hover {
  color: white;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.98px) {
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

@media screen and (max-width: 767.98px) {
  .footer__bottom-left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.footer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 20px;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    gap: 0 30px;
  }
}
@media screen and (max-width: 767.98px) {
  .footer__nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer__nav li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.footer__nav li a:hover {
  color: white;
}

@media screen and (max-width: 767.98px) {
  .footer__social {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.footer__twitter-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background-color: #444;
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer__twitter-btn:hover {
  background-color: #333;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.footer__twitter-btn svg {
  width: 16px;
  height: 16px;
}

.footer__copyright {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__copyright small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin: 0;
}

.privacy__inner h2 {
  font-size: 24px;
}

.privacy-item {
  margin-bottom: 40px;
}
.privacy-item h3 {
  font-size: 20px;
}
.privacy-item h4 {
  font-size: 18px;
}
.privacy-item2 {
  margin-bottom: 20px;
}