@charset "UTF-8";
:root {
  --color-text-black: #333;
  --color-white: #fff;
  --color-surface-black: #2f2f2f;
  --color-primary: #821C7A;
  --color-primary-sub: #4C244A;
  --color-secondary: #3E1C82;
  --color-gradation:　linear-gradient(180deg, #3E1C82 0%, #821C7A 100%);
  --color-border: #BFBFBF;
  --color-border-sub: #4F4F4F;
  --color-gray: #7A7A7A;
  --color-gray-text: #999;
  --color-gray-sub: #666;
  --color-gray-bg: #EDEDED;
  --color-accent-gold: #B99E59;
  --color-accent-gold-sub: #996633;
  --color-accent-blue: #1e3a8a;
  --space-xxs: 8px;
  --space-xs: 16px;
  --space-sm: 24px;
  --space-md: 32px;
  --space-lg: 40px;
  --space-xl: 48px;
  --space-2xl: 100px;
  --font-size-body: 14px;
  --font-size-heading: 18px;
  --font-size-caption: 12px;
  --font-size-caption-m: 13px;
  --font-size-en: 12px;
  --font-size-page-title: 24px;
  --line-height-body-s: 14px;
  --line-height-body-m: 22.4px;
  --line-height-heading: 27px;
  --line-height-caption: 19px;
  --line-height-en: 12px;
  --line-height-page-title: 36px;
  --content-max-width: 800px;
  --content-min-width: 375px;
  --header-logo-width: 250px;
  --header-nav-width: 800px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: var(--font-size-body);
  line-height: var(--line-height-body-m);
  color: var(--color-text-black);
  min-width: 320px;
}
a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.7;
}
a.text {
  pointer-events: none;
  cursor: text;
  transition: auto;
}
a.text:hover {
  opacity: 1;
}
a[href="javascript:void(0);"] {
  pointer-events: none;
  cursor: text;
  transition: auto;
}
a[href="javascript:void(0);"]:hover {
  opacity: 1;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
button:hover {
  opacity: 0.7;
}
ul, ol {
  list-style: none;
}
.page-wrapper {
  position: relative;
  min-height: 100vh;
}
.page-wrapper--subpage {
  background-color: var(--color-surface-black);
  background-image: url("../media/images/top/visual-bg.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.page-wrapper--subpage.page-about {
  background-image: url("../media/images/about/bg.webp");
}
.page-wrapper--subpage.page-awards {
  background-image: url("../media/images/awards/bg.webp");
}
.page-wrapper--subpage .hero {
  display: none;
}
.page-wrapper--subpage .container {
  margin-left: auto;
  margin-right: 40px;
  margin-bottom: 40px;
  min-height: auto;
  max-width: 1000px;
  width: calc(100% - 370px);
}
@media (max-width: 1110px) {
  .page-wrapper--subpage .container {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    max-width: none;
    width: 100%;
  }
}
.page-wrapper--subpage .hero__logo {
  position: fixed;
  top: 0;
  left: 40px;
  width: 250px;
  z-index: 102;
  background: transparent;
}
.page-wrapper--subpage .hero__logo img {
  width: 100%;
  height: auto;
}
@media (max-width: 1110px) {
  .page-wrapper--subpage .hero__logo {
    left: 0;
    width: 125px;
    height: 125px;
  }
  .page-wrapper--subpage .hero__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
.hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
}
.hero__visual {
  width: 100%;
  height: 100%;
  background-image: url("../media/images/top/visual-bg.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  position: relative;
}
.hero__logo {
  position: absolute;
  top: 0;
  left: 40px;
  width: 250px;
  z-index: 101;
}
.hero__logo {
  max-width: 250px;
}
.hero__logo img {
  width: 100%;
  height: auto;
}
.hero__logo a {
  opacity: 1;
}
@media (max-width: 1110px) {
  .hero__logo {
    position: fixed;
    top: 0;
    left: 20px;
    width: 125px;
    height: 125px;
    padding: 0;
    z-index: 102;
    background: transparent;
  }
  .hero__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
@media (max-width: 768px) {
  .hero__visual {
    background-image: url("../media/images/top/visual-bg-sp.webp");
    background-position: center;
  }
}
.hero__catch {
  position: absolute;
  bottom: 67px;
  bottom: 117px;
  left: 52px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10;
}
.hero__catch-en {
  max-width: 439px;
}
.hero__catch-jp {
  max-width: 331px;
}
@media (max-width: 1110px) {
  .hero {
    position: relative;
    height: 320px;
    margin-top: 0;
  }
  .hero__visual {
    padding: 0;
    height: 100%;
    min-height: 320px;
  }
  .hero__catch {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 0;
    gap: 11px;
  }
  .hero__catch-en {
    max-width: 213px;
    margin-left: 2px;
  }
  .hero__catch-jp {
    max-width: 162px;
  }
}
@media (max-width: 1110px) {
  .hero {
    height: 320px;
    margin-top: 0;
  }
  .hero__visual {
    height: 100%;
    min-height: 320px;
  }
  .hero__catch {
    bottom: 17px;
    left: 17px;
  }
}
.container {
  position: relative;
  margin-left: auto;
  margin-right: 20px;
  background-color: var(--color-white);
  min-height: auto;
  z-index: 1;
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  min-height: 100vh;
  min-height: 100dvh;
}
@media (max-width: 1300px) {
  .container {
    max-width: 600px;
  }
}
@media (max-width: 1110px) {
  .container {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    width: 100%;
    min-height: calc(100vh - 250px);
    min-height: calc(100dvh - 250px);
  }
}
.header {
  background-color: var(--color-surface-black);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header__nav {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 70px;
  padding: 0 22px 0 32px;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  height: auto;
  padding-bottom: 20px;
}
.header__icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
}
.header__icon-link img {
  width: auto;
  height: auto;
  display: block;
}
.header__menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 22px;
  padding: 0;
}
.header__menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  transition: all 0.3s ease;
}
@media (max-width: 1110px) {
  .header {
    position: fixed;
    top: 0;
    right: 0;
    width: 150px;
    height: 50px;
    background-color: var(--color-surface-black);
    padding: 0;
  }
  .header__nav {
    width: 100%;
    height: 100%;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
  }
  .header__actions {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding: 0;
  }
  .header__icon-link {
    display: inline-flex;
    padding: 0;
  }
  .header__icon-link.access {
    width: 18px;
    height: 25px;
  }
  .header__icon-link.contact {
    width: 25px;
    height: 25px;
  }
  .header__menu-btn {
    display: flex;
    width: 27px;
    height: 20px;
    gap: 5px;
    margin-top: 1px;
  }
  .header__menu-btn span {
    height: 3px;
  }
}
@media (max-width: 1110px) {
  .header {
    width: 150px;
    height: 50px;
  }
}
.nav {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav .depth2 {
  display: none;
}
.nav__item {
  position: relative;
  display: flex;
  flex-direction: column;
  height: auto;
}
.nav__item.lm28, .nav__item.lm29 {
  display: none;
}
.nav__item > a {
  color: var(--color-white);
  font-weight: 700;
  font-size: var(--font-size-body);
  line-height: var(--line-height-body-s);
  white-space: nowrap;
  text-decoration: none;
  margin-bottom: 18px;
}
.nav__item.active > a {
  margin-bottom: 13px;
}
.nav__item.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  display: block;
  width: 100%;
  height: 5px;
  background-color: var(--color-primary);
}
@media (max-width: 1110px) {
  .nav {
    display: none;
  }
}
.header__menu-btn.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__menu-btn.is-active span:nth-child(2) {
  opacity: 0;
}
.header__menu-btn.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
body.menu-open .hero__visual {
  background-color: #d1d1d1;
  background-blend-mode: multiply;
}
body.menu-open .container {
  background-color: #d1d1d1;
  background-blend-mode: multiply;
}
body.menu-open .pankuzu {
  background-color: #d1d1d1;
  background-blend-mode: multiply;
}
/* ベースのモバイルメニュー設定 */
.mobile-menu {
  position: fixed;
  top: 50px;
  right: -100%;
  width: 100%;
  max-width: 345px;
  height: 100vh;
  z-index: 1000;
  transition: right 0.3s ease;
  overflow-y: auto;
  display: none;
}
@media (max-width: 1110px) {
  .mobile-menu {
    display: block;
  }
}
.mobile-menu.is-open {
  right: 0;
}
/* ナビゲーションコンテナ */
.mobile-menu {
  /* 第1階層のリスト */
  /* 第1階層のアイテム */
  /* 矢印アイコンの制御（サブメニューを持たない場合） */
  /* アクティブ状態 */
  /* リンクの基本スタイル（第1階層） */
  /* サブメニューを持つ場合のリンク設定 */
  /* サブメニューが開いている時のアイコン切り替え */
  /* 第2階層（サブメニュー）のリスト */
  /* 第2階層のアイテム */
  /* 第2階層のリンク */
}
.mobile-menu .mobile-menu__nav {
  width: 100%;
  height: 100%;
  background: var(--color-surface-black);
}
.mobile-menu .mobile-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu .mobile-menu__item {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface-black);
}
.mobile-menu .mobile-menu__item:not(.has_children) > a {
  position: relative;
}
.mobile-menu .mobile-menu__item:not(.has_children) > a::before {
  content: "";
  display: block;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 12px;
  background: url("../media/images/common/menu-arrow.svg") center / contain no-repeat;
  transition: transform 0.3s ease;
}
.mobile-menu .mobile-menu__item--active {
  background-color: #821c7a;
}
.mobile-menu .mobile-menu__item--active .depth2.active {
  background-color: #821c7a;
}
@media (hover) {
  .mobile-menu .mobile-menu__item:hover {
    background-color: #821c7a;
  }
}
@media (hover) {
  .mobile-menu .mobile-menu__item .depth2:hover {
    background-color: #821c7a;
  }
}
.mobile-menu .mobile-menu__item > a {
  display: flex;
  align-items: center;
  min-height: 55px;
  padding: 17px 20px 16px;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
}
.mobile-menu .has_children > a {
  position: relative;
  padding-right: 45px;
}
.mobile-menu .has_children > a::after {
  content: "";
  display: block;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: url("../media/images/common/list-open.svg") center / contain no-repeat;
  transition: transform 0.3s ease;
}
.mobile-menu .has_children.is-open {
  background-color: #821c7a;
}
.mobile-menu .has_children.is-open > a::after {
  background: url("../media/images/common/list-close.svg") center / contain no-repeat;
}
.mobile-menu .mobile-menu__sub-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-menu .has_children.is-open > .mobile-menu__sub-list {
  max-height: 1000px;
}
.mobile-menu .mobile-menu__sub-list > li.depth2 {
  background-color: #4c244a;
  border-bottom: 1px solid rgba(191, 191, 191, 0.2);
}
.mobile-menu .mobile-menu__sub-list > li.depth2 > a {
  display: flex;
  align-items: center;
  min-height: 55px;
  padding: 15px 20px 15px 35px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  position: relative;
}
.mobile-menu .mobile-menu__sub-list > li.depth2 > a::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 12px;
  background-image: url("../media/images/common/menu-arrow-sub.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) invert(1);
}
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.sidebar {
  position: fixed;
  top: 310px;
  left: 40px;
  width: 250px;
  z-index: 50;
}
.sidebar__category {
  background-color: rgba(47, 47, 47, 0.85);
  color: var(--color-white);
  font-size: var(--font-size-body);
  font-weight: 700;
  padding: 12px 16px;
}
.sidebar__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.sidebar__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: var(--color-white);
  font-size: 13px;
  font-weight: 400;
  line-height: var(--line-height-body-m);
  text-decoration: none;
  background-color: rgba(47, 47, 47, 0.75);
  transition: background-color 0.3s ease;
  border-left: 5px solid #821c7a;
}
.sidebar__link:hover {
  background-color: rgba(47, 47, 47, 0.9);
  opacity: 1;
}
.sidebar__link--active {
  background-color: #821c7a;
  border-left-color: #4c244a;
}
.sidebar__link--active:hover {
  background-color: #821c7a;
}
@media (max-width: 1110px) {
  .sidebar {
    display: none;
  }
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 12px var(--space-lg);
  font-size: var(--font-size-caption);
  line-height: var(--line-height-caption);
  color: var(--color-text-black);
  background-color: var(--color-gray);
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.breadcrumb__item::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #999;
  border-top: 1px solid #999;
  transform: rotate(45deg);
  margin: 0 12px;
}
.breadcrumb__item:last-child::after {
  display: none;
}
.breadcrumb__link {
  color: var(--color-text-black);
  text-decoration: none;
}
.breadcrumb__link:hover {
  text-decoration: underline;
}
.breadcrumb__current {
  color: var(--color-text-black);
  font-weight: 400;
}
@media (max-width: 1110px) {
  .breadcrumb {
    padding: 12px 20px;
    font-size: 11px;
  }
}
@media (max-width: 1110px) {
  .breadcrumb {
    padding: 10px 15px;
    font-size: 10px;
    flex-wrap: wrap;
  }
}
.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: none;
  margin: 0 30px;
  padding-top: 100px;
  padding-bottom: 40px;
}
.footer__page-top {
  position: fixed;
  right: 50px;
  bottom: 30px;
  width: 40px;
  height: 40px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .footer__page-top img {
    display: block;
    transition: 0.3s;
  }
  .footer__page-top:hover img {
    opacity: 0.6;
  }
}
.footer__page-top.is-show {
  opacity: 1;
  visibility: visible;
}
.footer__page-top.is-footer-active {
  bottom: 84px;
}
.footer__page-top img {
  width: 100%;
  height: auto;
}
.footer__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 11px;
  border-top: 1px solid var(--color-border);
}
.footer__links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: var(--font-size-caption);
  line-height: var(--line-height-caption);
  color: var(--color-text-black);
}
.footer__link {
  font-weight: 400;
}
.footer__link + .footer__link {
  position: relative;
}
.footer__link + .footer__link::before {
  content: "";
  position: absolute;
  top: 4px;
  left: -11px;
  width: 1px;
  height: 12px;
  background: var(--color-text-black);
}
.footer__link--en {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  text-transform: capitalize;
  transform: translateY(1px);
}
.footer__separator {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.footer__copyright {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-size: var(--font-size-en);
  line-height: var(--line-height-en);
  text-transform: capitalize;
  color: var(--color-text-black);
}
@media (max-width: 1300px) {
  .footer {
    margin: 0 40px;
  }
  .footer__page-top {
    right: 60px;
  }
}
@media (max-width: 1110px) {
  .footer__page-top {
    right: 15px;
    bottom: 84px;
  }
  .footer {
    gap: 12px;
    max-width: none;
    margin: 0;
    padding: 85px 16px 18px;
  }
  .footer__page-top {
    width: 33px;
    height: 33px;
  }
  .footer__nav {
    flex-direction: column;
    gap: 9px;
  }
  .footer__copyright {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .footer__page-top {
    bottom: 15px;
  }
  .footer__page-top.is-footer-active {
    bottom: 84px;
  }
}
.page-title {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}
.page-title__box {
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: var(--space-md) var(--space-lg);
  border-left: 3px solid var(--color-border);
}
.page-title__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: var(--font-size-page-title);
  line-height: var(--line-height-page-title);
  letter-spacing: 0.3em;
  color: var(--color-text-black);
}
.page-title__en {
  padding-right: 10px;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: var(--font-size-en);
  line-height: var(--line-height-en);
  letter-spacing: 0.3em;
  color: var(--color-text-black);
}
.page-title__images {
  width: 100%;
  max-width: 720px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 62px;
  z-index: 0;
}
.page-title__images::before {
  content: "";
  position: absolute;
  width: 19px;
  height: 224px;
  left: 0;
  bottom: 0;
  border: 1px solid var(--color-gray-sub);
  border-right: none;
}
.page-title__images::after {
  content: "";
  position: absolute;
  width: 19px;
  height: 224px;
  right: 0;
  bottom: 0;
  border: 1px solid var(--color-gray-sub);
  border-left: none;
}
@media (max-width: 768px) {
  .page-title__images::after {
    width: 9px;
    height: 107px;
  }
}
.page-title__en-img {
  width: 100%;
  max-width: 100%;
  color: #C4102E;
}
.page-title__sub {
  max-width: 223px;
  margin-top: 75px;
  transform: translateX(-6px);
}
.page-title__main {
  max-width: 444px;
  margin-top: 25px;
  transform: translateX(-6px);
}
.page-title__description {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body-m);
  text-align: justify;
  width: 100%;
  text-indent: 1em;
}
@media (max-width: 1110px) {
  .page-title__box {
    max-width: 100%;
    padding: var(--space-sm);
  }
  .page-title__heading {
    font-size: 20px;
    letter-spacing: 0.2em;
  }
  .page-title__images {
    max-width: 100%;
    padding: 0 0 30px;
  }
  .page-title__images::before {
    width: 9px;
    height: 107px;
  }
  .page-title__images::after {
    width: 9px;
    height: 107px;
  }
  .page-title__en {
    padding-right: 5px;
  }
  .page-title__en-img, .page-title__sub, .page-title__main {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 768px) {
  .page-title {
    gap: 27px;
  }
  .page-title__box {
    padding: 20px;
  }
  .page-title__heading {
    font-size: 18px;
    letter-spacing: 0.15em;
  }
  .page-title__images {
    max-width: 100%;
  }
  .page-title__en-img {
    max-width: 90%;
  }
  .page-title__sub {
    max-width: 106px;
    margin-top: 36px;
    transform: translateX(-3px);
  }
  .page-title__main {
    max-width: 214px;
    margin-top: 12px;
    transform: translateX(-3px);
  }
}
/*# sourceMappingURL=./common.css.map */