*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

input, textarea, select {
  font: inherit;
}

table {
  border-collapse: collapse;
}

.page-main {
  padding: 65px 0 160px;
}
@media screen and (max-width: 767px) {
  .page-main {
    padding: 60px 0;
  }
}

.breadcrumb {
  margin: 0 0 32px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: #000;
}
.breadcrumb a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.breadcrumb a:hover {
  opacity: 0.6;
}
.breadcrumb .breadcrumb_last {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    margin-bottom: 20px;
    font-size: 12px;
  }
}

body:not(.home) {
  padding-top: 96px;
}
@media (max-width: 767px) {
  body:not(.home) {
    padding-top: 64px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 58px;
  padding: 0 30px 0 40px;
  display: flex;
  align-items: center;
  justify-content: right;
  background: #000;
}
.header__logo {
  display: block;
  width: 78px;
  flex-shrink: 0;
}
.header__logo img {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .header__logo {
    visibility: hidden;
  }
}
.header__toggle, .header__close, .header__drawer-logo {
  display: none;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__menu {
  display: flex;
  align-items: stretch;
}
.header__item {
  border-left: 1px solid rgba(255, 255, 255, 0.6);
}
.header__item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.6);
}
.header__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  height: 48px;
  padding: 0 32px;
  color: #fff;
  text-align: center;
  transition: opacity 0.2s ease;
}
.header__item a:hover {
  opacity: 0.6;
}
.header__en {
  display: block;
}
.header__en img {
  display: block;
  width: auto;
  height: 16px;
}
.header__ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 5px;
}
.header__x {
  display: block;
  width: 52px;
  height: 58px;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}
.header__x:hover {
  opacity: 0.7;
}
.header__x img {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 1000px) {
  .header__item a {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  .header {
    height: 56px;
    padding: 0 15px;
  }
  .header__logo {
    width: 44px;
  }
  .header__toggle {
    display: block;
    position: relative;
    width: 24px;
    height: 14px;
    flex-shrink: 0;
    z-index: 2;
  }
  .header__toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
  }
  .header__toggle span:nth-child(1) {
    top: 0;
  }
  .header__toggle span:nth-child(2) {
    top: 6px;
  }
  .header__toggle span:nth-child(3) {
    top: 12px;
  }
  .header__right {
    position: fixed;
    inset: 0;
    z-index: 110;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    padding: 44px 0 0;
    background: #000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .header__right.is-open {
    opacity: 1;
    visibility: visible;
  }
  .header__close {
    display: block;
    position: absolute;
    top: 24px;
    right: 24px;
    width: 24px;
    height: 24px;
  }
  .header__close::before, .header__close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 2px;
    background: #fff;
  }
  .header__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .header__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .header__drawer-logo {
    display: block;
    width: 133px;
  }
  .header__drawer-logo img {
    display: block;
    width: 100%;
    height: auto;
  }
  .header__nav {
    margin-top: 56px;
  }
  .header__menu {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .header__item {
    border: none;
  }
  .header__item:last-child {
    border: none;
  }
  .header__item a {
    height: auto;
    padding: 0;
    gap: 2px;
  }
  .header__x {
    width: 56px;
    height: auto;
    margin-top: 64px;
  }
}

.footer {
  background: #000;
  height: 202px;
  display: flex;
  align-items: center;
}
.footer__inner {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer__x {
  display: block;
  width: 40px;
  height: 40px;
}
.footer__x img {
  display: block;
}
.footer__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.footer__privacy {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
}
.footer__privacy:hover {
  text-decoration: underline;
}
.footer__sep {
  display: block;
  width: 1px;
  height: 14px;
  background: #fff;
  flex-shrink: 0;
}
.footer__copy {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .footer {
    height: 158px;
  }
  .footer__x {
    width: 32px;
    height: 32px;
  }
  .footer__meta {
    flex-direction: column;
    gap: 8px;
    white-space: normal;
    text-align: center;
  }
  .footer__sep {
    display: none;
  }
}

.loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  transition: opacity 0.6s ease;
}
.loading.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.loading.is-skip {
  display: none;
}
.loading__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading__logo {
  width: 320px;
  height: auto;
  animation: loadingPulse 1.2s ease-in-out infinite;
}

@keyframes loadingPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.97);
  }
}
.loading-video {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.loading-video.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.loading-video__wrap {
  position: relative;
  width: min(52vw, 850px);
  aspect-ratio: 16/9;
}
@media (max-width: 767px) {
  .loading-video__wrap {
    width: min(90vw, 850px);
  }
}
.loading-video__wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.loading-video__close {
  position: absolute;
  top: -26px;
  right: -20px;
  transform: translate(40%, -50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease;
}
.loading-video__close img {
  display: block;
  width: 100%;
  height: 100%;
}
.loading-video__close:hover {
  transform: translate(40%, -50%) scale(1.08);
}
@media (max-width: 767px) {
  .loading-video__close {
    transform: translate(30%, -60%);
    width: 40px;
    height: 40px;
    right: 0;
  }
  .loading-video__close:hover {
    transform: translate(30%, -50%) scale(1.08);
  }
}

.fv {
  width: 100%;
}
.fv img {
  width: 100%;
  height: auto;
  display: block;
}

.main {
  position: relative;
}

.front_main .news {
  padding: 100px 0 200px;
  position: relative;
}
.front_main .news:after, .front_main .news:before {
  content: "";
  position: absolute;
  width: 36%;
  height: 0;
  padding-top: 36%;
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
}
.front_main .news:after {
  bottom: 0;
  left: 0;
  background-image: url(../img/news_bg-02.webp);
}
.front_main .news:before {
  top: 0;
  right: 0;
  background-image: url(../img/news_bg-01.webp);
}
@media (max-width: 767px) {
  .front_main .news {
    padding: 40px 0;
    min-height: 100vh;
  }
}

.intro {
  position: relative;
  z-index: 2;
  padding: 100px 0 200px;
  background: url("../img/intro-bg.webp") center center no-repeat;
  background-size: cover;
}
.intro__inner {
  width: 90%;
  max-width: 1166px;
  margin: 0 auto;
  text-align: center;
}
.intro__heading img {
  display: block;
  width: 375px;
  max-width: 80%;
  height: auto;
  margin: 0 auto;
}
.intro__cont {
  margin-top: 64px;
}
.intro__cont p {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 2;
}
@media (max-width: 767px) {
  .intro {
    min-height: 100vh;
    padding: 40px 0;
  }
  .intro__heading img {
    width: 182px;
  }
  .intro__cont {
    margin-top: 24px;
  }
  .intro__cont p {
    font-size: 1.4rem;
    line-height: 1.9;
  }
}

.char {
  position: relative;
  z-index: 2;
  padding: 100px 0 160px;
  background: #fff url("../img/char-bg.webp") center/cover no-repeat;
}
.char__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.char__heading {
  text-align: center;
}
.char__heading img {
  display: block;
  width: 450px;
  max-width: 80%;
  height: auto;
  margin: 0 auto;
}
.char__navi {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 64px 0 60px;
}
.char__navi button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: solid 3px transparent;
}
.char__navi button img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.char__navi button.is-active {
  border: solid 3px #751485;
}
@media (max-width: 767px) {
  .char {
    min-height: 100vh;
    padding: 10px 0;
  }
  .char__heading img {
    width: 182px;
  }
  .char__navi {
    gap: 16px;
    margin: 16px 0;
  }
  .char__navi button {
    width: 56px;
    height: 56px;
  }
}

.char_detail_inner {
  display: none;
  justify-content: center;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}
.char_detail_inner.is-active {
  display: flex;
}
.char_detail_img {
  flex-shrink: 0;
}
.char_detail_img img {
  display: block;
  width: auto;
  height: 380px;
}
.char_detail_cont {
  width: 640px;
  padding-top: 64px;
}
.char_detail_name {
  color: #000;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 2;
}
.char_detail_cv {
  color: #000;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
}
.char_detail_desc {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #000;
  color: #000;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
}
@media (max-width: 767px) {
  .char_detail_inner {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .char_detail_img img {
    height: 280px;
  }
  .char_detail_cont {
    width: 100%;
    padding-top: 0;
  }
  .char_detail_name {
    font-size: 18px;
  }
  .char_detail_cv {
    font-size: 13px;
  }
  .char_detail_desc {
    font-size: 13px;
    text-align: left;
    margin-top: 16px;
    padding-top: 16px;
    min-height: calc(12em + 16px);
  }
}

.news {
  position: relative;
  z-index: 2;
}
.news__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.news__heading {
  margin-bottom: 40px;
  text-align: center;
}
.news__heading img {
  display: block;
  margin: 0 auto;
}
.news__list {
  display: flex;
  flex-direction: column;
}
.news__item {
  border-bottom: 1px solid #9A9A9A;
}
.news__link {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  text-decoration: none;
  color: inherit;
}
.news__thumb {
  flex: 0 0 330px;
  width: 330px;
  height: 186px;
  overflow: hidden;
}
.news__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.news__date {
  color: #751485;
  font-size: 20px;
  font-weight: 700;
}
.news__title {
  margin: 0;
  color: #000;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.5;
}
.news__excerpt {
  margin: 0;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  height: 4.8em;
  overflow: hidden;
}
.news__more {
  margin-top: 32px;
  text-align: center;
}
.news__more a,
.news__more .btn-viewmore {
  display: inline-block;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.news__more img {
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .news__heading {
    margin-bottom: 24px;
  }
  .news__heading img {
    width: 182px;
    height: auto;
  }
  .news__link {
    gap: 8px;
    padding: 12px 0;
    align-items: center;
  }
  .news__thumb {
    flex: 0 0 126px;
    width: 126px;
    height: 71px;
    padding-top: 4px;
  }
  .news__body {
    gap: 4px;
  }
  .news__meta {
    line-height: 1.1;
  }
  .news__cat {
    width: 52px;
    height: 18px;
    line-height: 18px;
    font-size: 1rem;
    padding: 0 4px;
  }
  .news__date {
    font-size: 1.2rem;
  }
  .news__title {
    font-size: 1.4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .news__excerpt {
    font-size: 1.2rem;
    height: 3.2em;
  }
  .news__more img {
    width: 133px;
    height: auto;
  }
}

.single {
  position: relative;
  z-index: 2;
}
.single__heading {
  text-align: center;
}
.single__heading img {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .single__heading img {
    width: 182px;
  }
}
.single__inner {
  width: 90%;
  max-width: 842px;
  margin: 0 auto;
}
.single__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 4px;
}
.single__date {
  color: #751585;
  font-size: 18px;
  font-weight: 700;
}
.single__title {
  margin: 0 0 32px;
  color: #000;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.5;
}
.single__thumb {
  width: 68%;
  margin: 0 auto;
}
.single__thumb img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .single__thumb {
    width: 100%;
  }
  .single__date {
    font-size: 14px;
  }
  .single__title {
    margin: 0 0 20px;
    font-size: 24px;
  }
}
.single__content {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
}
.single__content p {
  margin: 24px 0 12px;
}
.single__content p:last-child {
  margin-bottom: 0;
}
.single__content h2 {
  display: flex;
  align-items: center;
  background: #751585;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.3;
  padding: 4px 16px;
  margin: 48px 0 32px;
}
.single__content h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 24px;
}
.single__content h3::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 51px;
  height: 4px;
  background: #000;
}
.single__content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.8em 0;
}
.single__content ul, .single__content ol {
  padding: 0;
  margin: 12px 0;
}
.single__content li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}
.single__content li::before {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 16px;
  height: 2px;
  background: #000;
  margin-top: 0.9em;
}
.single__content li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 2rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.single__content li a::before {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 16px;
  height: 2px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .single__content {
    font-size: 16px;
  }
  .single__content p {
    margin: 18px 0 12px;
  }
  .single__content h2 {
    font-size: 20px;
    padding: 8px 10px;
    margin: 28px 0 20px;
  }
  .single__content h3 {
    gap: 8px;
    font-size: 18px;
    margin: 0 0 18px;
  }
  .single__content h3::before {
    width: 25px;
    height: 2px;
  }
  .single__content img {
    margin: 16px 0;
  }
  .single__content ul, .single__content ol {
    margin: 12px 0;
  }
  .single__content li {
    gap: 4px;
    margin-bottom: 5px;
  }
  .single__content li::before {
    width: 12px;
    height: 2px;
  }
}
.single__content a {
  color: #c326c9;
}
.single__content p {
  font-size: 20px;
}
.single__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  width: 100%;
}
.single__nav a, .single__nav-disabled {
  display: block;
  transition: opacity 0.2s ease;
}
.single__nav a img, .single__nav-disabled img {
  display: block;
  width: auto;
  height: 42px;
}
.single__nav a:hover {
  opacity: 0.6;
}
.single__nav-disabled {
  opacity: 0.3;
}
@media screen and (max-width: 767px) {
  .single__nav {
    margin-top: 32px;
  }
  .single__nav a img, .single__nav-disabled img {
    height: 32px;
  }
  .single__nav__content p {
    font-size: 16px;
  }
}

/*# sourceMappingURL=style.css.map */
