@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Noto+Serif+JP&family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul,
li {
  text-decoration: none;
}

a {
  text-decoration: none;
}

a,
img,
span {
  display: inline-block;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

em {
  font-style: normal;
}

.c-card__text, .c-card__date, .regular-font, .footer .footer__list,
.footer .footer__link, .footer .footer__copy, .header .logo__text {
  font-size: 1.6rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .c-card__text, .c-card__date, .regular-font, .footer .footer__list,
  .footer .footer__link, .footer .footer__copy, .header .logo__text {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}

p {
  font-size: 1.6rem;
  line-height: 1.5;
}

h2, h3 {
  font-size: 1.8rem;
  line-height: normal;
}

:root {
  --white: #FFFFFF;
  --black: #000;
  --gray:#333;
  --litegray:#999;
  --liteblack:#141414;
  --leading-trim:calc((1em - 1lh)/2);
}

html {
  /*  scroll-behavior: smooth; */
  font-size: 62.5%;
  /*  @include g.mq(mdpc) {
      font-size: calc(10 / (1440 / 100) * 1vw);
  } */
}
@media (max-width: 1680px) {
  html {
    font-size: min(0.5952380952vw, 10px);
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media (max-width: 768px) {
  html {
    font-size: min(2.6666666667vw, 10px);
  }
}
@media (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  color: var(--white);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: normal;
  background: var(--black);
}

a {
  color: var(--white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.7;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

.u-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

li {
  list-style: none;
}

p, h2, h3, h4 {
  margin-block: var(--leading-trim);
}

.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.tab-only {
  display: none;
}
@media (max-width: 1024px) and (min-width: 769px) {
  .tab-only {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.spbtm-only {
  display: none;
}
@media (max-width: 350px) {
  .spbtm-only {
    display: block;
  }
}

/* @keyframes fadein {
    0% {
        opacity: 0;
        transform: translateY(rem(30));
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
} */
/* %fadein {
    opacity: 0;
    transform: translateY(rem(30));
    animation-name: fadein;
    animation-duration: .4s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}
 */
/* .fadein {
    opacity: 0;
    transition: all 1s;
    transform: translateY(rem(150));

    @include g.mq(tb) {
        transform: translateY(rem(80));
    }
}

.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.svg {
    position: absolute;
    width: 0;
    height: 0;
} */
/* 共通 */
.swiper {
  width: 100%;
  height: auto;
}

.swiper-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.swiper-slide {
  border-radius: 16px;
  cursor: pointer;
}
.swiper-slide a {
  overflow: hidden;
  display: block;
  border-radius: 16px;
}
@media (hover: hover) and (pointer: fine) {
  .swiper-slide a:hover {
    opacity: 1;
  }
}
.swiper-slide img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -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;
}
@media (hover: hover) and (pointer: fine) {
  .swiper-slide img:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

.swiper-container {
  position: relative;
}
.swiper-container .swiper-pagination {
  bottom: min(-3.2rem, -32px);
}
.swiper-container .swiper-pagination-bullet {
  background: var(--white);
  opacity: 1;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.swiper-container .swiper-pagination-bullet-active {
  width: 40px;
  border-radius: 40px;
  background: var(--white);
}

.coming-soon {
  pointer-events: none;
}

.swiper-type1 {
  width: 100%;
}
.swiper-type1 .btn {
  width: 5.6rem !important;
  height: 5.6rem;
  aspect-ratio: 1/1 !important;
  border-radius: 50% !important;
  background: var(--gray) !important;
}
.swiper-type1 .btn::before {
  content: "" !important;
  display: grid !important;
  place-items: center !important;
  width: 2rem !important;
  height: 1.5rem !important;
  background: url(../images/common/right-arrow.png) !important;
  background-size: cover !important;
}
.swiper-type1 .swiper-button-prev {
  left: 3.2rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.swiper-type1 .swiper-button-prev::before {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media (hover: hover) and (pointer: fine) {
  .swiper-type1 .swiper-button-prev:hover::before {
    margin-right: 5px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
.swiper-type1 .swiper-button-next {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  right: 3.2rem;
}
@media (hover: hover) and (pointer: fine) {
  .swiper-type1 .swiper-button-next:hover::before {
    margin-left: 5px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: none;
}
.swiper-button-next::before,
.swiper-button-prev::before {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*News,Media用  */
.swiper-type2 .swiper-slide a {
  border-radius: 0;
}
.swiper-type2 .swiper__img-wrapper {
  border-radius: 16px;
  display: block;
  overflow: hidden;
}

/* ワークス用 */
.swiper-type3 {
  /* min-height: 99.3rem; */
}
.swiper-type3 .swiper-wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  row-gap: 3.2rem;
}
.swiper-type3 .swiper-slide {
  height: 50% !important;
  margin-top: 0 !important;
}
.swiper-type3 a {
  height: 100%;
}

@media (768px < width < 1024px) {
  .swiper-type3 {
    min-height: auto;
  }
}
@media (max-width: 768px) {
  .swiper-type1 .btn {
    display: none;
  }
  .swiper-type3 {
    min-height: auto;
  }
  .swiper-type3 .swiper-wrapper {
    row-gap: 1.6rem;
  }
}
.sub-about .swiper-slide {
  pointer-events: none;
}

.wrapper-1200 {
  max-width: min(1200px, 80%);
  margin-inline: auto;
  min-height: 650px;
}

.wrapper-800 {
  max-width: min(800px, 80%);
  margin-inline: auto;
}

.c-section-mgn {
  margin-top: 5.7rem;
  margin-left: 6.4rem;
}

.c-section-mgnt {
  margin-top: 5.7rem;
}

.c-subSection-mgnlet {
  margin-left: 4rem;
}

.c-subSection-mgn {
  margin-left: 4rem;
  margin-top: max(3.2rem, 32px);
}

.c-subSection-mgnt {
  margin-top: max(3.2rem, 32px);
}

.mgt-27 {
  margin-top: 2.7rem;
}

.mgnt-48 {
  margin-top: 4.8rem;
}

.mgt-64 {
  margin-top: 6.4rem;
}

.mgt-32 {
  margin-top: 3.2rem;
}

.mgt-16 {
  margin-top: 1.6rem;
}

.mgt-10 {
  margin-top: 1rem;
}

.mgb-16 {
  margin-bottom: 1.6rem;
}

.wrapper-640 {
  max-width: min(640px, 70%);
  margin-inline: auto;
}

@media (768px < width < 1024px) {
  .wrapper-1200 {
    max-width: 100%;
    margin-right: 4rem;
  }
}
@media (max-width: 768px) {
  .wrapper-1200 {
    max-width: 100%;
  }
  .wrapper-800 {
    max-width: 100%;
    margin-inline: 1.6rem;
  }
  .wrapper-640 {
    max-width: 100%;
    margin-inline: 1.6rem;
  }
  .c-section-mgn {
    margin-top: 4rem;
    margin-left: 1.6rem;
  }
  .c-section-mgnt {
    margin-top: 4rem;
  }
  .mgt-64 {
    margin-top: 3.2rem;
  }
  .mgnt-48 {
    margin-top: 2.4rem;
  }
  .c-subSection-mgnlet {
    margin-left: 1.6rem;
  }
  .c-subSection-mgn {
    margin-left: 1.6rem;
    margin-top: 1.6rem;
  }
  .c-subSection-mgnt {
    margin-top: 1.6rem;
  }
}
.header .header__inner {
  padding: 2.4rem 3.2rem;

  position: fixed;
  z-index: 999;
  width: 100%;
  top: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;

  backdrop-filter: blur(12px) brightness(60%);
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(12px) brightness(60%);
  background-color: rgba(255, 255, 255, 0.1);
  /* mix-blend-mode: difference; */
}
.header .logo__text {
  font-weight: 400;
}
.header .header__navbar {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.2rem;
}
.header .header__menu {
  gap: 3.2rem;
}
.header .header__list {
  padding-block: 1.6rem;
}
.header .header__list.active {
  border-bottom: 1px solid var(--white);
}
.header .header__link {
  font-size: 1.6rem;
}
.header .header__link img {
  margin-top: 0.2rem;
}
.header .dropdown {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .dropdown:hover .header__sub-menu {
  visibility: visible;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 1;
}
.header .header__sub-menu {
  padding-block: 1.5rem;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 100%;
  visibility: hidden;
  width: 100%;
  min-width: -webkit-min-content;
  min-width: -moz-min-content;
  min-width: min-content;
  z-index: 50;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-radius: 16px;
  -webkit-box-shadow: 0px 3px 16px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 16px rgba(0, 0, 0, 0.16);
  background: var(--liteblack);
}
.header .header__sub-list {
  padding: 1rem 2.4rem;
  min-width: 13rem;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.header .header__sub-list a {
  word-break: keep-all;
}
.header .header__sub-list:hover {
  opacity: 0.6s;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.header .header__sub-list a {
  color: var(--white);
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.4285714286;
}

.logo {
  gap: 3.2rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.logo img {
  /* aspect-ratio: 116/32;
  height: 3.2rem; */
  width: 11.6rem;
}
@media (max-width: 768px) {
  .logo {
    gap: 1.6rem;
    position: relative;
    z-index: 999;
  }
  .logo img {
    /* aspect-ratio: 87/24; */
    width: 8.7rem;
    /* height: 2.4rem; */
  }
}

.triangle-down {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
}
.triangle-down::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-left: 0.6rem solid transparent;
  border-right: 0.6rem solid transparent;
  border-top: 0.6rem solid #fff;
}

@media (max-width: 768px) {
  .header .header__inner {
    padding: 1.6rem;
  }
  .header .logo__text {
    font-size: 1.3rem;
    line-height: 1.3076923077;
  }
  .header .header__navbar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    background: var(--black);
    /* opacity: 0; */
    display: none;
    pointer-events: none;
    width: 100%;
    position: fixed;
    top: -100%;
    left: 0;
    /* left: -100%; */
    right: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    z-index: 90;
    overflow: hidden;
    padding: 10.4rem 1.6rem 4rem 1.6rem;
    gap: 2.4rem;
  }
  .header .header__navbar .contact-btn {
    width: 100%;
    margin-inline: 0.8rem;
    aspect-ratio: unset;
    border-radius: 40px;
  }
  .header .header__navbar .contact-btn a {
    color: var(--black);
    width: 100%;
    padding-block: 1.4rem;
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
  .header .sp-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 2.2rem;
    padding-right: 0.6rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    z-index: 999;
  }
  .header .header__menu {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .header .header__list {
    padding: 1.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .header .header__list:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .header .header__list.active {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .header .header__link {
    font-size: 1.4rem;
    line-height: 1.4285714286;
    width: 100%;
  }
  .header .dropdown:hover .header__sub-menu {
    visibility: unset;
    -webkit-transition: unset;
    transition: unset;
  }
  .header .triangle-down {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .header .header__sub-menu {
    position: static;
    opacity: 1;
    visibility: unset;
    display: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-shadow: unset;
            box-shadow: unset;
    background: unset;
  }
  .header .header__sub-list {
    border-bottom: none;
    padding-bottom: 1.6rem;
    padding-left: 0;
    background: none;
    padding-bottom: 0;
  }
  .header .header__sub-list:first-child {
    border-top: none;
  }
  .header .header__sub-list a {
    color: var(--white);
  }
  .header .header__sub-list:hover {
    opacity: unset;
    -webkit-transition: none;
    transition: none;
  }
  .header .contact-btn {
    width: 4rem;
  }
  .header .contact-btn img {
    width: 2rem;
    height: 1.56rem;
    aspect-ratio: 20/15.6;
  }
}
@media (max-width: 768px) {
  .hamburger {
    cursor: pointer;
    width: 2rem;
    height: 1.4rem;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    position: relative;
  }
  .hamburger .hamburger__line {
    display: grid;
    place-items: center;
    position: absolute;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .hamburger .hamburger__line span {
    width: 2rem;
    height: 1px;
    border-radius: 5px;
    display: block;
    position: absolute;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    background-color: var(--white);
    left: 0;
    z-index: 30;
  }
  .hamburger .hamburger__line span:nth-child(1) {
    top: 0rem;
  }
  .hamburger .hamburger__line span:nth-child(2) {
    top: 0.65rem;
  }
  .hamburger .hamburger__line span:nth-child(3) {
    top: 1.3rem;
  }
}

@media (max-width: 768px) {
  .header.open .header__navbar {
    /* left: 0; */
    top: 0;
    /* opacity: 1; */
    z-index: 998;
    display: block;
    height: 100vh;
    background-color: #000;
    pointer-events: auto;
  }
  .header.open .hamburger {
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .header.open .hamburger__line span {
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    width: 2rem;
  }
  .header.open .hamburger__line span:nth-child(1) {
    -webkit-transform: translateY(0.65rem) rotate(-311deg);
            transform: translateY(0.65rem) rotate(-311deg);
  }
  .header.open .hamburger__line span:nth-child(2) {
    display: none;
  }
  .header.open .hamburger__line span:nth-child(3) {
    -webkit-transform: translateY(-0.65rem) rotate(311deg);
            transform: translateY(-0.65rem) rotate(311deg);
  }
  .triangle-down.open::after {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
}
@-webkit-keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}
@keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}
@-webkit-keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.footer {
  position: relative;
  padding-bottom: 9.6rem;
  padding-top: 16rem;
}
.footer::before {
  content: "";
  width: 100%;
  height: 72rem;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000;
  background-image: url(../images/footer-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.footer .footer__inner {
  max-width: min(89%, 1488px);
  margin-inline: auto;
}
.footer .footer__logo {
  -webkit-align-self: baseline;
      -ms-flex-item-align: baseline;
          align-self: baseline;
}
.footer .menu__wrapper {
  max-width: 840px;
  width: 58%;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footer .footer__menu,
.footer .footer__sub-menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
}
.footer .footer__sub-menu {
  margin-top: 1.6rem;
}
.footer .footer__link-btn {
  display: block;
  background: var(--white);
  border-radius: 4rem;
  padding: 1.2rem 2.4rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--black);
}
@media (hover: hover) and (pointer: fine) {
  .footer .footer__link-btn:hover {
    opacity: 0.8;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
.footer .footer-btm {
  margin-top: 14.5rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer .sns-menu {
  gap: 2.4rem;
}
.footer .pageTop__btn {
  position: absolute;
  bottom: 25px;
  right: 25px;
}
.footer .pageTop__link {
  width: 5.6rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gray);
}
.footer .pageTop__link img {
  width: 1.6rem;
  aspect-ratio: 16/20;
}

@media (max-width: 768px) {
  .footer {
    margin-top: 2.1rem;
    padding-block: 6rem 8rem;
  }
  .footer::before {
    height: 64rem;
  }
  .footer .footer__inner {
    max-width: 100%;
    padding-inline: 1.6rem;
  }
  .footer .logo__text {
    font-size: 1.3rem;
    line-height: 1.3076923077;
  }
  .footer .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer .menu__wrapper {
    max-width: 100%;
    width: 100%;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-top: 4rem;
  }
  .footer .footer__menu {
    width: 50%;
  }
  .footer .footer__menu:nth-child(2) {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
    margin-top: -2rem;
  }
  .footer .footer__menu:last-child {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .footer .btn {
    margin-top: 2.4rem;
    width: 100%;
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
  .footer .footer__link-btn {
    width: 13.2rem;
    margin-inline: auto;
    padding-block: 1.4rem;
  }
  .footer .footer-btm {
    margin-top: 5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.4rem;
  }
  .footer .sns-menu {
    gap: 1.9rem;
  }
  .footer .sns__link img {
    width: 3.2rem;
    aspect-ratio: 1/1;
  }
  .footer .footer__copy {
    font-size: 1.2rem;
    line-height: 1.4166666667;
  }
  .footer .pageTop__btn {
    bottom: 16px;
    right: 16px;
  }
  .footer .pageTop__link {
    width: 4.8rem;
  }
  .footer .pageTop__link img {
    width: 1.3rem;
    aspect-ratio: 13/17;
  }
}
.contact-btn {
  background: var(--white);
  border-radius: 50%;
  width: 48px;
  aspect-ratio: 1/1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .contact-btn:hover {
    opacity: 0.7;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

.bg {
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: -1;
}

.top {
  background: url(../images/top/top-bg.webp) no-repeat top center/87%;
}

@media (max-width: 768px) {
  .top {
    background-size: 300%;
  }
}
.loding {
  display: grid;
  place-items: center;
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100dvw;
  height: 100dvh;
  background-color: #000;
  /*   &::before {
      content: "";
      width: 100%;
      height: 100%;
      position: absolute;
      z-index: -1;
      bottom: 0;
      left: 0;
      right: 0;
      background-color: #000;
      background-image: url(../images/top/top-bg.webp);
      background-repeat: no-repeat;
      background-position: center center;
      background-size: 60%;
    } */
}

#loader-1 {
  opacity: 0;
  visibility: hidden;
}

.ldText {
  font-size: 4.8rem;
  color: var(--white);
  font-family: "EB Garamond", serif;
  letter-spacing: 0.1em;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

/* .loader{
  margin: 0 0 2em;
  height: 100px;
  width: 20%;
  text-align: center;
  padding: 1em;
  margin: 0 auto 1em;
  display: inline-block;
  vertical-align: top;
} */
svg path,
svg rect {
  fill: var(--white);
}

.scale {
  -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;
  border-radius: 16px;
  display: block;
  overflow: hidden;
}
.scale img {
  -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;
}
@media (hover: hover) and (pointer: fine) {
  .scale img:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

.archive__pagenation {
  margin-top: 3.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.archive__pagenation .pagination-icon {
  display: grid;
  place-items: center;
  width: max(4rem, 40px);
  aspect-ratio: 1/1;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--white);
  background: var(--gray);
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
.archive__pagenation .pagination-icon:hover, .archive__pagenation .pagination-icon:focus {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.archive__pagenation .pager {
  display: grid;
  place-items: center;
  border-radius: 50%;
  padding: 0.8rem 1.2rem;
  width: max(4rem, 40px);
  aspect-ratio: 1/1;
  font-size: max(1.6rem, 16px);
  line-height: 1.5;
  background: var(--gray);
  color: var(--white);
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
.archive__pagenation .prev-icon img {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  width: 2rem;
  height: 1.5rem;
}
.archive__pagenation .pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  gap: 0.8rem;
}
.archive__pagenation .current {
  color: var(--gray);
  background: var(--white);
}

.page_num {
  display: none;
}

@media (max-width: 768px) {
  .archive__pagenation {
    margin-top: 2.4rem;
  }
  .archive__pagenation .pagination-icon {
    width: 3.2rem;
    font-size: 1.2rem;
    line-height: 1.4166666667;
  }
  .archive__pagenation .pagination-icon img {
    width: 1.6rem;
    height: 1.2rem;
  }
  .archive__pagenation .pager {
    padding: 0.7rem 1.3rem;
    width: 3.2rem;
    font-size: 1.2rem;
    line-height: 1.4166666667;
  }
  .archive__pagenation .prev-icon img {
    width: 1.6rem;
    height: 1.2rem;
  }
}
.sec-title__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.sec-title__wrapper .sec-title {
  text-transform: uppercase;
  font-size: 3.2rem;
  font-family: "EB Garamond", serif;
  line-height: 2.625;
  font-weight: 400;
}
.sec-title__wrapper .sec-title--ja {
  font-size: 1.8rem;
  line-height: 4.6666666667;
}

.contact-form .required-tag, .c-card__cat {
  font-size: 1.2rem;
  line-height: 1.4166666667;
}

.sub .sec-title__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.4rem;
}
.sub .sec-title__wrapper .sec-title {
  font-size: 6.4rem;
  line-height: 1.3125;
}
.sub .sec-title__wrapper .sec-title--ja {
  font-size: 1.6rem;
  line-height: 5.25;
}

@media (max-width: 768px) {
  .sec-title__wrapper {
    gap: 0.2rem;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .sec-title__wrapper .sec-title {
    font-size: 2.4rem;
    line-height: 3.5;
  }
  .sec-title__wrapper .sec-title--ja {
    font-size: 1.4rem;
    line-height: 6;
  }
  .sub .sec-title__wrapper {
    margin-top: 1.7rem;
    gap: 1rem;
  }
  .sub .sec-title__wrapper .sec-title {
    font-size: 3.2rem;
    line-height: 2.625;
  }
  .sub .sec-title__wrapper .sec-title--ja {
    font-size: 1.2rem;
    line-height: 7;
  }
  .contact-form .required-tag, .c-card__cat {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.c-btn {
  border: 1px solid var(--white);
  border-radius: 40px;
  text-align: center;
  display: block;
  margin-inline: auto;
}
.c-btn .c-btn__link {
  padding: 1.6rem 3.2rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
}
.c-btn .c-btn__text {
  color: var(--white);
}
.c-btn .arrow {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .c-btn:hover .arrow {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

.archive-btn {
  margin-top: 5.2rem;
}
.archive-btn .c-btn__link {
  padding-inline: 1.6rem;
  gap: 0.8rem;
}
.archive-btn .arrow {
  -webkit-transform: scaleX(-1) translateX(0);
          transform: scaleX(-1) translateX(0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .archive-btn:hover .arrow {
    -webkit-transform: scaleX(-1) translateX(3px);
            transform: scaleX(-1) translateX(3px);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

@media (max-width: 768px) {
  .c-btn .c-btn__link {
    padding: 1.4rem 2.4rem;
    gap: 1.2rem;
  }
  .arrow img {
    width: 1.6rem;
    height: 1.2rem;
    vertical-align: bottom;
  }
}
.breadnav {
  margin-top: 1.6rem;
  margin-left: 1.6rem;
}
.breadnav .breadcrumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
}
.breadnav .breadcrumb span {
  font-size: 1.4rem;
  color: var(--white);
}
.breadnav .partition {
  display: block;
}
@media (max-width: 768px) {
  .breadnav {
    margin-top: 0.8rem;
    margin-right: 1.6rem;
  }
  .breadnav .breadcrumb {
    gap: 0.4rem;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .breadnav .breadcrumb span {
    font-size: 1.2rem;
  }
}

.cat-wrapper {
  margin-top: 5.5rem;
}

.cat__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
}

.c-card__date {
  color: var(--litegray);
}

.c-card__cat {
  background: var(--gray);
  border-radius: 40px;
  display: block;
  color: var(--white);
  text-align: center;
}

.card__menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}

.card__list {
  border-radius: 16px;
  background: var(--liteblack);
  padding: 3.2rem 2.4rem;
}

.card__title {
  line-height: 1.3333333333;
  font-size: 2.4rem;
}

.card__text {
  margin-top: max(2.4rem, 24px);
}

@media (max-width: 768px) {
  .c-card__text {
    margin-top: 1.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .cat-wrapper {
    margin-top: 4.2rem;
  }
  .card__menu {
    grid-template-columns: repeat(auto-fit, minmax(282px, 1fr));
    gap: 1.6rem;
  }
  .card__list {
    padding: 2.4rem 1.6rem;
  }
  .card__title {
    line-height: 1.4444444444;
    font-size: 1.8rem;
  }
  .card__text {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}
.mv {
  margin: 16.2rem 3.2rem 3.2rem;
}

.c-card__text-wrapper {
  margin-top: 1.5rem;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.8rem;
}

.c-card__cat {
  padding: 0.5rem 0.8rem;
}

.c-card__text {
  margin-top: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .mv {
    margin: 9.6rem auto 3.2rem;
  }
  .top-news {
    margin-top: 7.1rem;
  }
  .c-card__text-wrapper {
    margin-top: 1.2rem;
  }
  .c-card__text {
    margin-top: 1.2rem;
  }
  /*  .top-media{
     padding-bottom: rem(21);
   } */
}
.sub-news .body__menu {
  display: grid;
  /*  grid-template-columns: repeat(auto-fit, minmax(150px, 378px)); */
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 3.2rem;
     -moz-column-gap: 3.2rem;
          column-gap: 3.2rem;
  row-gap: 4.8rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sub-news .body__item a {
  width: 100%;
}
@media (hover: hover) and (pointer: fine) {
  .sub-news .body__item a:hover {
    opacity: 1;
  }
}
.sub-news .content__img-wrapper img {
  width: 100%;
}
@media (768px < width < 1024px) {
  .sub-news .wrapper-1200 {
    margin-left: 4rem;
  }
  .sub-news .body__menu {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .sub-news .wrapper-1200 {
    margin-left: 1.6rem;
  }
  .sub-news .body__wrapper {
    margin-right: 1.6rem;
  }
  .sub-news .body__menu {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    -webkit-column-gap: 1.6rem;
       -moz-column-gap: 1.6rem;
            column-gap: 1.6rem;
    row-gap: 1.6rem;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.news-post .content__img-wrapper img {
  aspect-ratio: 640/427;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  border-radius: 16px;
}
.news-post .c-card__text-wrapper {
  margin-top: 2.4rem;
}
.news-post .post__title {
  margin-top: 1.6rem;
  font-size: 3.2rem;
  line-height: 1.4375;
}
.news-post .archive-btn {
  margin-top: 6.4rem;
}
.news-post .post-body p:first-child {
  margin-top: 3.2rem;
}
.news-post .post-body p:not(:first-child) {
  margin-top: 1.6rem;
}
.news-post .post-body h2,
.news-post .post-body h3,
.news-post .post-body h4,
.news-post .post-body h5,
.news-post .post-body h6 {
  margin-top: 3.2rem;
}
.news-post .post-body h2 {
  font-size: 2.4rem;
  line-height: 1.4583333333;
}
.news-post .post-body h3 {
  font-size: 2rem;
  line-height: 1.45;
}
.news-post .post-body h4 {
  font-size: 1.8rem;
  line-height: 1.4444444444;
}
.news-post .post-body h5 {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
}
.news-post .post-body h6 {
  font-size: 1.4rem;
  line-height: 1.5714285714;
  font-weight: bold;
}
@media (max-width: 768px) {
  .news-post .c-card__text-wrapper {
    margin-top: 1.6rem;
  }
  .news-post .post__title {
    font-size: 2.4rem;
    line-height: 1.4583333333;
  }
  .news-post .archive-btn {
    margin-top: 3.2rem;
  }
  .news-post .post-body p:first-child {
    margin-top: 2.4rem;
  }
  .news-post .post-body h2,
  .news-post .post-body h3,
  .news-post .post-body h4,
  .news-post .post-body h5,
  .news-post .post-body h6 {
    margin-top: 1.6rem;
  }
  .news-post .post-body h2 {
    font-size: 2rem;
    line-height: 1.45;
  }
  .news-post .post-body h3 {
    font-size: 1.8rem;
    line-height: 1.4444444444;
  }
  .news-post .post-body h4 {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .news-post .post-body h5 {
    font-size: 1.4rem;
    line-height: 1.5714285714;
  }
  .news-post .post-body h6 {
    font-size: 1.2rem;
    line-height: 1.6666666667;
  }
}

.sub {
  margin: 16.2rem auto;
  min-height: 95vh;
}
.sub .cat-wrapper .c-card__cat {
  padding: 1rem 1.6rem;
  font-size: 1.4rem;
  line-height: 1.5;
}
.sub .c-card__cat.active {
  color: var(--gray);
  background: var(--white);
}

.post-common .content__wrapper {
  gap: 3.2rem;
  margin-bottom: 2rem;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.post-common .content__left {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.2rem;
  flex: 1;
}
.post-common .content__left img {
  /* aspect-ratio: 200/300;
  width: 20rem; */
}
.post-common .sns-menu {
  gap: 1.6rem;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.post-common .sns-menu img {
  aspect-ratio: 1/1;
  width: 3.2rem;
}
.post-common .content__right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.post-common .cat__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.post-common .c-card__cat {
  display: inline-block;
  padding: 0.8rem 1.6rem;
}
.post-common .content__title {
  margin-top: 2.4rem;
  font-size: 2rem;
  line-height: 1.45;
  font-weight: bold;
}
.post-common dl.u-flex {
  margin-top: 2.4rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
}
.post-common .disc__warapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
}
.post-common .disc-text {
  font-size: 1.6rem;
  line-height: 1.5;
}
.post-common .disc__title {
  color: var(--litegray);
}
.post-common .disc__anser {
  color: var(--white);
}
.post-common .works-btn {
  background: var(--white);
  margin-inline: auto 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .post-common .works-btn:hover, .post-common .works-btn:focus {
    opacity: 0.7;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
.post-common .c-btn__link {
  padding: 1.6rem 2.4rem;
  gap: 0.8rem;
}
.post-common .works-btn__text {
  color: var(--black);
}

.sub-contact .sec-title__wrapper .sec-title {
  text-transform: capitalize;
}
.sub-contact .notice.u-flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.2rem;
}
.sub-contact address {
  font-style: normal;
}
.sub-contact .notice a {
  border-bottom: 1px solid var(--white);
  color: var(--white);
}
.sub-contact .notice__text {
  margin-block: 0;
}

.contact-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.6rem;
}
.contact-form textarea {
  overflow: auto;
  resize: none;
  height: 32rem;
  line-height: normal;
}
.contact-form input {
  height: 5.6rem;
}
.contact-form textarea,
.contact-form input {
  position: relative;
  padding: 1.6rem;
  width: 100%;
  border: 2px solid transparent;
  border-radius: 16px;
  color: var(--white);
  font-size: 1.6rem;
}
.contact-form textarea:focus,
.contact-form input:focus {
  outline: 2px solid var(--white);
}
.contact-form .wpcf7-form-control-wrap {
  width: 100%;
}
.contact-form .contact-form__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 1.4rem;
}
.contact-form .contact-form__title-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--white);
  width: 100%;
}
.contact-form .contact-form__title-wrapper label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
}
.contact-form .contact-form__title {
  display: block;
  font-size: 1.6rem;
}
.contact-form .required-tag {
  text-align: center;
  color: var(--litegray);
}
.contact-form .wpcf7-not-valid-tip {
  bottom: -2.5rem;
  position: absolute;
  padding-top: 0.3rem;
  padding-left: 1.6rem;
  font-size: 1.5rem;
}
.contact-form .form-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  text-decoration: none;
  border: none;
  background: var(--gray);
  border-radius: 16px;
}
.contact-form .form-group:has(.wpcf7-not-valid-tip) {
  padding-bottom: 0.5rem;
}

.submit {
  width: 100%;
  margin-inline: auto;
}
.submit .contact__btn {
  border-radius: 16px;
  display: block;
  padding-block: 1.6rem;
  width: 100%;
  color: var(--black);
  background: var(--white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 1.6rem;
}
@media (hover: hover) and (pointer: fine) {
  .submit .contact__btn:hover, .submit .contact__btn:focus {
    opacity: 0.8;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

.container_404 {
  display: grid;
  place-items: center;
  height: 50vh;
}
.container_404 p {
  font-size: min(3.2rem, 20px);
  text-align: center;
}
.container_404 .c-btn {
  width: min(50rem, 300px);
  font-size: 2.4rem;
  background: var(--white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .container_404 .c-btn:hover, .container_404 .c-btn:focus {
    opacity: 0.8;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
.container_404 .c-btn__link {
  color: var(--black);
}

.sub-privacy .sec-title__wrapper .sec-title {
  text-transform: capitalize;
}
.sub-privacy .privacy__title {
  font-weight: 400;
}
.sub-privacy .privacy__title--h3 {
  font-size: max(2.4rem, 24px);
  line-height: 1.4583333333;
}
.sub-privacy .privacy__title--h4 {
  font-size: max(2rem, 20px);
  line-height: 1.45;
}
.sub-privacy .privacy__text {
  margin-top: 1.7rem;
  font-size: max(1.6rem, 16px);
}

.sub-service .content__title {
  font-size: 2.4rem;
  line-height: 1.4583333333;
}
.sub-service .content .content__text {
  margin-top: 1.7rem;
}

.sub-about .about__card {
  grid-template-columns: repeat(3, 1fr);
}
.sub-about .about__title-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1.6rem;
}
.sub-about .about__title {
  font-size: 4rem;
  line-height: normal;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
}
.sub-about .about__text {
  font-size: 2rem;
  line-height: normal;
}
.sub-about .idea {
  margin-top: 12.7rem;
  max-width: 1680px;
  margin-inline: auto;
}
.sub-about .idea__wrapper {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: min(1360px, 81%);
  margin-inline: auto 8rem;
  gap: 8rem;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.sub-about .idea__text-wrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 560px;
  margin-left: auto;
}
.sub-about .idea__text {
  margin-top: 2.5rem;
}
.sub-about .idea__img {
  width: 72rem;
  max-width: min(720px, 54%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.sub-about .service {
  margin-top: 12rem;
}
.sub-about .slide-content {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 800px;
  width: 55%;
}
.sub-about .service__wrapper {
  max-width: min(1440px, 97%);
  gap: 8rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.sub-about .swiper-wrapper {
  position: relative;
  left: calc(min(-8.4rem, -84px) - 7.4919vw);
}
.sub-about .service__text-wrapper {
  max-width: 560px;
}
.sub-about .service__text--em {
  margin-top: 2.4rem;
  font-size: 2.4rem;
  line-height: 1.4583333333;
}
.sub-about .service__text {
  margin-top: 1.6rem;
}
.sub-about .about-btn {
  margin-top: 4rem;
  margin-inline: 0 auto;
  background: var(--white);
  border: none;
}
.sub-about .c-btn__link {
  padding-inline: 2.4rem;
}
.sub-about .c-btn__text {
  color: var(--black);
  font-size: 1.6rem;
  line-height: 1.3;
}
.sub-about .characteristic {
  margin-top: 12rem;
}
.sub-about .company {
  margin-top: 12rem;
  margin-inline: auto;
  max-width: min(640px, 60%);
}
.sub-about .company .about__title-wrapper {
  gap: 2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.sub-about .company__content {
  padding-block: 2.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.sub-about .company__content:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.sub-about .company__title {
  width: 12rem;
  color: var(--litegray);
  font-size: 1.6rem;
  line-height: 1.5;
}
.sub-about .company__text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.6rem;
  line-height: 1.5;
}
.sub-about .company__text a {
  border-bottom: 1px solid var(--white);
}

.sub-faq {
  /*  .one_i {
      width: rem(16);
      height: rem(20);
      position: relative;
    } */
  /*  .active.accordion_inner {
      display: block;
    }
   */
}
.sub-faq .faq__accordion {
  margin-top: 6rem;
}
.sub-faq .accordion_wrapper {
  width: 100%;
  background-color: var(--liteblack);
  border-radius: 16px;
  cursor: pointer;
  position: relative;
  padding: 2.4rem;
}
.sub-faq .accordion_one:not(:first-of-type) {
  margin-top: 2.4rem;
}
.sub-faq .accordion_header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 2.4rem;
}
.sub-faq .accordion_header_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.sub-faq .accordion__font-qa {
  font-size: 1.6rem;
  color: var(--white);
  line-height: 1.5;
}
.sub-faq .accordion__title {
  font-size: 1.6rem;
  line-height: 1.5;
  padding-left: 1.4rem;
}
.sub-faq .accordion__text {
  font-size: 1.6rem;
  padding-left: 1.4rem;
  line-height: 1.5;
}
.sub-faq .accordion_inner {
  padding-top: 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.sub-faq .box_one {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (768px < width < 1024px) {
  .sub {
    min-height: 56svh;
  }
  .sub-service .wrapper-1200,
  .sub-about .wrapper-1200 {
    margin-inline: 4rem;
  }
}
@media (max-width: 768px) {
  .sub {
    min-height: auto;
  }
  .sub .cat-wrapper .c-card__cat {
    padding: 0.7rem 1.2rem;
    font-size: 1.2rem;
    line-height: 1.6666666667;
  }
  .post-common .content__wrapper {
    gap: 1.6rem;
  }
  .post-common .content__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.6rem;
    max-width: 50%;
  }
  .post-common .content__left img {
    aspect-ratio: 144/216;
    width: 14.4rem;
  }
  .post-common .sns-menu {
    gap: 1.2rem;
  }
  .post-common .sns-menu img {
    width: 2.4rem;
    height: 2.4rem;
  }
  .post-common .c-card__cat {
    padding: 0.7rem 1.2rem;
  }
  .post-common .content__title {
    margin-top: 1.6rem;
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .post-common dl.u-flex {
    margin-top: 1.6rem;
    gap: 1.6rem;
  }
  .post-common .disc-text {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
  .post-common .c-btn__link {
    padding: 1rem 1.6rem;
  }
  .post-common .link-icon img {
    width: 1.2rem;
    aspect-ratio: 1/1;
    vertical-align: text-top;
  }
  .sub-privacy .sec-title__wrapper .sec-title {
    text-transform: capitalize;
  }
  .sub-privacy .privacy__title {
    font-weight: 400;
  }
  .sub-privacy .privacy__title--h3 {
    font-size: 2rem;
    line-height: 1.45;
  }
  .sub-privacy .privacy__title--h4 {
    font-size: 1.8rem;
    line-height: 1.4444444444;
  }
  .sub-privacy .privacy__text {
    margin-top: 1.7rem;
    font-size: 1.4rem;
  }
  .sub-service .wrapper-1200 {
    margin-inline: 1.6rem;
  }
  .sub-service .content__title {
    font-size: 2rem;
    line-height: 1.45;
  }
  .sub-service .content .content__text {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
  .sub-about .about__title {
    font-size: 2.4rem;
  }
  .sub-about .about__text {
    font-size: 1.6rem;
  }
  .sub-about .idea {
    margin-top: 6rem;
  }
  .sub-about .idea .about__title-wrapper {
    gap: 1.6rem;
  }
  .sub-about .idea__wrapper {
    max-width: 100%;
    margin-inline: 1.6rem;
    gap: 3.2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .sub-about .idea__text-wrapper {
    max-width: 100%;
  }
  .sub-about .idea__img {
    width: 100%;
    max-width: 100%;
  }
  .sub-about .service {
    margin-top: 6rem;
    margin-inline: 1.6rem;
  }
  .sub-about .service .about__title-wrapper {
    gap: 1.6rem;
  }
  .sub-about .slide-content {
    width: calc(100% + 3.2rem);
  }
  .sub-about .service__wrapper {
    max-width: 100%;
    gap: 3.2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sub-about .swiper-wrapper {
    position: initial;
  }
  .sub-about .service__text--em {
    font-size: 2rem;
    line-height: 1.4;
  }
  .sub-about .about-btn {
    margin-inline: auto;
  }
  .sub-about .about__card {
    grid-template-columns: repeat(auto-fit, minmax(282px, 1fr));
  }
  .sub-about .characteristic {
    margin-top: 6rem;
    margin-inline: 1.6rem;
  }
  .sub-about .characteristic .about__title-wrapper {
    gap: 1.6rem;
  }
  .sub-about .company {
    margin-top: 6rem;
    max-width: min(640px, 100%);
    padding-inline: 1.6rem;
  }
  .sub-about .company .about__title-wrapper {
    gap: 1.6rem;
  }
  .sub-about .company__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.6rem;
  }
  .sub-about .company__title {
    width: 100%;
  }
}
.sub-works .body__wrapper {
  margin-right: 3.2rem;
}
.sub-works .body__menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.2rem;
}
.sub-works .body__list {
  border-radius: 16px;
  background: var(--liteblack);
  padding: 3.2rem;
}

@media (768px < width < 1024px) {
  .sub-works .body__menu {
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  }
}
@media (max-width: 768px) {
  .sub-works .body__wrapper {
    margin-right: 1.6rem;
  }
  .sub-works .body__menu {
    /* grid-template-columns: repeat(1, 1fr); */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.6rem;
  }
  .sub-works .body__list {
    padding: 1.6rem;
  }
}
.sub-creator .sec-title {
  text-transform: capitalize;
}
.sub-creator .body__menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.2rem;
}
.sub-creator .body__list a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.disc-link a {
  text-decoration: underline;
  display: inline-block !important;
}
@media (hover: hover) and (pointer: fine) {
  .sub-creator .body__list a:hover, .sub-creator .body__list a:focus {
    opacity: 1;
  }
}
.sub-creator .content__title {
  font-size: 2rem;
  line-height: 1.45;
  font-weight: bold;
  color: var(--white);
}
.sub-creator .content_text {
  margin-top: 0.4rem;
  color: var(--litegray);
  font-size: 1.4rem;
  line-height: 1.4285714286;
}

.creator-post .body__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: min(960px, 80%);
  margin-inline: auto;
  width: 100%;
}
.creator-post .body__list {
  border-radius: 16px;
  background: var(--liteblack);
  padding: 3.2rem 3.2rem 4.8rem 3.2rem;
  width: 100%;
}
.creator-post .content__wrapper {
  gap: 3.2rem;
}
.creator-post .content__left {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 32rem;
}
.creator-post .sns-menu {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1.6rem;
}
.creator-post .content__right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.creator-post .c-card__cat {
  display: inline-block;
  padding: 1rem 1.6rem;
  font-size: 1.4rem;
  line-height: 1.4857142857;
}
.creator-post .disc__warapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
}
.creator-post .content__title {
  font-size: 3.2rem;
  line-height: 1.4375;
  font-weight: bold;
}
.creator-post .post-name {
  margin-top: 2.4rem;
}
.creator-post .post-name .disc-text {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  color: var(--litegray);
}
.creator-post .post-disc.u-flex {
  margin-top: 2.4rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
}
.creator-post .disc__warapper {
  gap: 1.6rem;
}
.creator-post .disc__title {
  color: var(--litegray);
}
.creator-post .content__wrapper .c-btn {
  margin-left: 0;
  margin-top: 1.2rem;
  border: none;
  background: var(--white);
}
.creator-post .content__wrapper .c-btn a {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 1.6rem 2.4rem;
}
.creator-post .content__wrapper .c-btn__text {
  color: var(--black);
}

.disc__audio-area {
  display: flex;
  flex-direction: row;
}
.creator-post .disc__audio-wrapper {
    display: flex;
    align-items: start;
    gap: 2rem;
    flex-direction: column;
    margin-bottom: 2rem;
}
.creator-post .disc__audio-text {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  min-width: 100px;
  color: var(--white);
}
.creator-post .disc__audio {
  width: 70%;
  /* -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1; */
  border-radius: none;
}

.disc__audio.playing {
  border: rgb(104, 48, 226) 2px solid;
  border-radius: 100px;
}

.disc__anser-head.disc-text {
      font-size: 2.4rem;
    line-height: 1.4375;
    font-weight: bold;
}

.disc__audio-area {
  width: 100%;
  display: flex;
}

.thumb-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.thumb-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.description-text {
font-size: 1.4rem;
}
.no-data {
  display: flex;
  justify-content: center;
  margin: 80px 0px;
}

.no-data p {
font-size: 1.8rem;
}

.image-gallery {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.main-image-wrapper {
  position: relative;
}
.main-image {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}
.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-button.left {
  left: 0;
}
.nav-button.right {
  right: 0;
}
.image-gallery .thumbnail-wrapper {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
.image-gallery .thumb-image {
  width: 50px;
  height: auto;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.thumb-image.active,
.thumb-image:hover {
  opacity: 1;
  border: 2px solid #666;
}


@media (768px < width < 1024px) {
  .sub-creator .wrapper-1200 {
    margin-left: 4rem;
  }
}
@media (max-width: 768px) {
  .sub-creator .wrapper-1200 {
    margin-inline: 1.6rem;
  }
  .sub-creator .body__menu {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
  .sub-creator .content__title {
    font-size: 1.8rem;
    line-height: 1.45;
  }
  .sub-creator .content_text {
    margin-top: 0.4rem;
    font-size: 1.2rem;
    line-height: 1.4285714286;
  }
  .creator-post .c-section-mgnt {
    margin-inline: 1.6rem;
  }
  .creator-post .body__menu {
    max-width: 100%;
  }
  .creator-post .body__list {
    padding: 1.6rem 1.6rem 2.4rem 1.6rem;
  }
  .creator-post .content__wrapper {
    gap: 1.6rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .creator-post .content__left {
    max-width: 100%;
  }
  .creator-post .content__img-wrapper img {
    width: 100%;
  }
  .thumbnail-wrapper img {
    width: 50px !important;
  }
  .creator-post .disc__audio-wrapper {
    gap: 1.6rem;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .creator-post .disc__audio-text {
    /* width: 100%; */
    padding-top: 0.5rem;
  }
  .creator-post .disc__audio {
    width: 100%;
  }

  .cat__menu {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* iOS滑らかスクロール */
    gap: 8px; /* 任意の余白 */
    padding-bottom: 0.5rem; /* 下に少しスペース */
    scrollbar-width: none; /* Firefoxでスクロールバー非表示 */
  }
  .cat__menu::-webkit-scrollbar {
    display: none; /* Chrome/Safariでスクロールバー非表示 */
  }

  .cat__list {
    flex: 0 0 auto; /* 幅固定・縮まない */
  }

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