@charset "UTF-8";
/*--------------------------------
header
--------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 0 54px;
  z-index: 200;
}
.logo {
  width: min(50%, 125px);
  position: relative;
  z-index: 10;
}
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 63px;
  color: #84959e;
  font-weight: bold;

  @media (width >= 1000px) {
    gap: 20px;
  }

  @media (width >= 1200px) {
    gap: 63px;
  }
}
.contact-btn {
  display: grid;
  place-items: center;
  width: min(100%, 194px);
  height: 50px;
  border-radius: 25px;
  background: #5c7887;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  position: relative;
  z-index: 2;

  @media (width >= 768px) {
    margin-left: 5px;
    font-size: 1.5rem;
    width: min(100%, 160px);
  }

  @media (width >= 1000px) {
    margin-left: 15px;
    font-size: 1.8rem;
    width: min(100%, 174px);
  }

  @media (width >= 1200px) {
    margin-left: 30px;
    width: min(100%, 194px);
  }
}
.nav-item {
  position: relative;
  min-height: 20px;
  font-size: 1.8rem;

  @media (width >= 768px) {
    font-size: 1.4rem;
  }

  @media (width >= 1000px) {
    font-size: 1.8rem;
  }
}
.nav-item span {
  display: inline-block;
  width: 7px;
  margin-left: 5px;
}
.nav-list-min {
  padding-top: 30px;
  position: absolute;
  visibility: hidden;
  left: 50%;
  transform: translate(-50%, 0);
  opacity: 0;
}
.nav-item-min {
  /* bottom: -100px; */
  display: grid;
  transition: 0.2s ease;
  background: #fff;
  font-weight: normal;
  box-shadow: 0 4px 10px #0000001b;
}
.nav-item-min a {
  white-space: nowrap;
  padding: 0 16px;
}
.nav-item-min li:first-child {
  padding-top: 10px;
}
.nav-item-min li:not(:last-child) {
  border-bottom: 1px solid #5c7887;
  margin-bottom: 10px;
}
.nav-item-min li {
  padding-bottom: 10px;
}
.sp-menu {
  display: none;
}

@media (width >= 768px) {
  @media (hover: hover) {
    .nav-item:hover .nav-list-min {
      visibility: visible;
      opacity: 1;
    }
  }
}
@media screen and (max-width: 1000px) {
  header {
    padding: 0 16px;
  }
  .nav {
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  header {
    padding: 0 16px;
    height: 66px;
  }
  .nav {
    padding-top: 120px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 63px;
    opacity: 0;
    z-index: -100;
    pointer-events: none;
  }
  .is-active .nav {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
  }
  .sp-menu {
    position: relative;
    display: grid;
    place-items: center;
    min-width: 29px;
    height: 20px;
    margin-left: 14px;
    cursor: pointer;
    user-select: none;
    touch-action: manipulation;
    background: inherit;
    z-index: 2;
  }
  .sp-menu span {
    display: block;
    width: 100%;
    height: 1px;
    background: #84959e;
    transition: 0.2s ease;
  }
  .sp-menu::before,
  .sp-menu::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #84959e;
    transition: 0.2s ease;
  }
  .sp-menu::after {
    top: unset;
    bottom: 0;
  }
  .is-active .sp-menu span {
    opacity: 0;
  }
  .is-active .sp-menu::before {
    top: 50%;
    transform: translate(0, -50%) rotate(45deg);
  }
  .is-active .sp-menu::after {
    bottom: 50%;
    transform: translate(0, 50%) rotate(-45deg);
  }
  .is-open .nav-list-min {
    opacity: 1;
    visibility: visible;
    position: static;
  }
  .nav-list-min {
    padding-top: 15px;
    transform: translate(0, 0);
  }
  .nav-item-min {
    box-shadow: none;
  }
  .nav-item-min li:not(:last-child) {
    border-bottom: none;
  }
  .contact-btn {
    margin-left: auto;
  }
  .logo {
    margin-right: 16px;
  }
}

/* 言語切り替えボタン */
.language-switcher {
  inline-size: fit-content;
  display: flex;
  gap: 9px;

  @media (width >= 768px) {
    gap: 3px;
  }

  @media (width >= 1000px) {
    margin-left: 15px;
  }

  @media (width >= 1200px) {
    margin-left: 30px;
    gap: 9px;
  }
}

.lang-btn {
  --gray: #84959e;
  --white: #fff;
  --border: 2px;

  display: inline-block;
  inline-size: fit-content;
  padding: calc(9px - var(--border)) calc(22px - var(--border));
  color: var(--gray);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.54px;
  border-radius: 7px;
  border: var(--border) solid var(--gray);
  background: var(--white);
  transition: all 0.3s ease;
  touch-action: manipulation;
  user-select: none;

  @media (width >= 768px) {
    font-size: 1.5rem;
    padding: calc(9px - var(--border)) calc(18px - var(--border));
  }

  @media (width >= 1000px) {
    font-size: 1.8rem;
    padding: calc(9px - var(--border)) calc(22px - var(--border));
  }
}

@media (any-hover: hover) {
  .lang-btn:hover {
    color: var(--white);
    background: var(--gray);
  }
}

/* 現在の言語を強調表示 */
html[lang="en"] .lang-btn[hreflang="en"],
html[lang="ja"] .lang-btn[hreflang="ja"] {
  color: var(--white);
  background: var(--gray);
}

/*--------------------------------
footer
--------------------------------*/
footer.bg-bule03 {
  margin: 0;
  padding: 40px 16px;
  font-size: 1.4rem;
  line-height: 1.5;
}
/*--------------------------------
home
--------------------------------*/
.mv {
  aspect-ratio: 1440/776;
  width: 100%;
  position: relative;
  min-height: 70vw;
}
.mv-item {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: #84959e;
}
.mv02-item {
  background: #fff;
  position: absolute;
  inset: 0;
  opacity: 0;
  /* animation: mvAni 8s ease  infinite; */
}
.wow-finished.mv02-item {
  opacity: 1;
}
@keyframes mvAni {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  51% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.mv .img {
  width: 50%;
  position: relative;
}
.bg-bule {
  background: #5c7887;
}
.about {
  margin-top: -120px;
  padding: 20px 0;
}
.circle {
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.circle::before {
  content: "";
  position: absolute;
  width: 120%;
  min-width: 1000px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 50% 50% 0 0;
  background: #5c7887;
  z-index: -1;
}
.contact.circle::before {
  width: 110%;
  height: 160%;
  border-radius: 50%;
  background: #fff;
  z-index: -1;
}
.bg-bule02 {
  background: #84959e;
}
.bg-bule03 {
  margin-top: 40px;
  background: #36434a;
}
.clo-2 {
  margin-top: 57px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}
.col-3 {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 76px;
}
.is-r {
  border-radius: 10px;
  padding: 35px 75px;
}
.is-r .bg-bule03 .sub-head {
  margin-bottom: 15px;
}
.note + .sub-head {
  margin-top: 53px;
}
.is-dark {
  color: #36434a;
}
.flex-3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.flex-3 .list {
  margin-top: 30px;
  width: calc(100% / 3 - 32px / 3);
}
.flex-3 .list .img {
  width: 120px;
  margin: 0 auto 10px;
}
.contents .img {
  margin: 47px 0;
}
.studio-item {
  margin-top: 38px;
  padding: 60px 33px;
}
.studio-item--fc {
  margin-top: 22px;

  @media (width >= 768px) {
    margin-top: 51px;
  }
}
.studio-item .img {
  overflow: hidden;
  aspect-ratio: 330/196;
  width: 100%;
}
.studio-item img {
  transform: scale(1.13);
}
.studio-item .list {
  width: calc(100% - 40px);
  margin-inline: auto;
}

/* その他専用 */
.studio-item .list--other {
  /* width: 100%; */
  width: min(100%, 974px);
}

.studio-item .list__other--ja {
  width: 100%;

  @media (width >= 1080px) {
    width: calc(100% - 40px);
  }
}
.bg-bule03 + .studio-item {
  margin-top: 100px;
}
.studio-item .col-3 {
  gap: 10px;
  margin-bottom: 10px;
}
.grid-2 {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 18px;
}
.studio-item .grid-1 {
  width: min(100%, 694px);
  margin: 30px auto 0;
}
.wide {
  grid-column: 2/3;
  grid-row: 1/3;
}
.studio .list {
  padding: 10px;
}
.studio .item {
  background: #fff;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
}
.studio .bg-bule03 {
  margin-top: 0;
  padding: 5px 10px;
  line-height: 1.5;
}
.grid-3 {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 48% 1fr;
  grid-template-rows: 1fr auto 1fr;
  gap: 18px;
}
.grid-3 .wide {
  grid-column: 2/3;
  grid-row: 1/4;
}
.contact {
  color: #5c7887;
  padding-block-start: 36px;
  padding-block-end: 78px;

  @media (width >= 768px) {
    padding-block-start: 0px;
    padding-block-end: 0px;
  }

  span {
    display: block;
    inline-size: fit-content;
    margin-inline: auto;
  }
}

.contact__list {
  margin-top: 22px;

  @media (width >= 768px) {
    margin-top: 49px;
  }

  a {
    font-size: 1.5rem;
    font-weight: 600;

    @media (width >= 768px) {
      font-size: 1.8rem;
    }
  }
}

.mt-sm {
  margin-top: 1.6rem;

  @media (width >= 768px) {
    margin-top: 1.2rem;
  }
}

.mt-item-head {
  margin-top: 42px;

  @media (width >= 768px) {
    margin-top: 45px;
  }
}

.mb-head {
  margin-bottom: 23px;

  @media (width >= 768px) {
    margin-bottom: 30px;
  }
}

.mt-sub-head {
  margin-top: 52px;

  @media (width >= 768px) {
    margin-top: 30px;
  }
}

.contact__list li span {
  display: block;
  inline-size: 100%;
  margin-inline: auto;
  text-align: center;
}

.contact__list--en {
  margin-top: 54px;
}

.contact__heading--en {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 30px; /* 115.385% */
  letter-spacing: 0.78px;

  @media (width >= 768px) {
    font-size: 3.6rem;
  }
}

.contact__name {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 30px; /* 130.435% */
  letter-spacing: 0.69px;
}

.contact__name--en {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 30px; /* 157.895% */
  letter-spacing: 0.57px;

  @media (width >= 768px) {
    font-size: 2.3rem;
  }
}

.mt-item {
  @media (width >= 768px) {
    margin-top: 18px;
  }
}

.img span {
  display: block;
  font-style: italic;
  font-size: 4.6rem;
  text-shadow: 0 4px 10px #5c7887;
  margin: 0 0 -23px -23px;
  position: relative;
}
.is-arrow .item {
  position: relative;
}
.is-arrow .item:not(:last-child)::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 30px solid #5c7880;
  border-right: 0;
  right: -55px;
  top: 28%;
}
.item .note {
  font-size: 1.5rem;
}
.service .img {
  margin-top: 57px;
}
@media screen and (max-width: 767px) {
  .mv {
    aspect-ratio: 393/520;
    min-height: auto;
  }
  .mv .img {
    width: 80%;
  }
  .circle::before {
    min-width: 1000px;
  }
  .clo-2 {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .is-r {
    border-radius: 5px;
    padding: 32px 16px;
  }
  .sub-head {
    line-height: 1.5;
    margin-bottom: 12px;
  }
  .col-3 {
    grid-template-columns: 1fr;
    width: 80%;
    margin: 25px auto 0;
  }
  .is-arrow .item:not(:last-child)::before {
    top: unset;
    bottom: -60px;
    left: 50%;
    transform: translate(-50%, 0) rotate(90deg);
  }
  .flex-3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .flex-3 .list {
    margin-top: 0;
    width: 100%;
  }
  .flex-3 .list .note {
    display: grid;
    place-items: center;
    height: 50px;
  }
  .studio-item .col-3 {
    width: 100%;
  }
  .studio-item .list {
    width: 100%;
  }
  .grid-2,
  .grid-3 {
    display: flex;
    flex-direction: column;
  }
  .about {
    margin-top: -20px;
  }
}

/* 日本語サイト専用 */
.studio__heading {
  color: #fff;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 38px; /* 146.154% */
  letter-spacing: 0.78px;

  @media (width >= 768px) {
    font-size: 4.5rem;
    letter-spacing: 1.35px;
  }
}

.footer {
  container-type: inline-size;
}

.footer__heading {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 30px; /* 115.385% */
  letter-spacing: 0.78px;

  @media (width >= 768px) {
    font-size: 3.6rem;
  }
}

.footer__table {
  margin-top: 29px;
  width: min(100%, 545px);
  margin-inline: auto;
  color: #fff;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
  letter-spacing: 0.42px;

  @media (width >= 768px) {
    margin-top: 39px;
    text-wrap: nowrap;
  }
}

.footer__table tr {
  width: 100%;
  display: grid;
  grid-template-columns: 20% 1fr;

  @media (width >= 768px) {
    gap: 10px;
  }
}

.footer__table tr + tr {
  margin-top: 0.7em;
}

.footer__table th {
  width: 100%;
  text-align: left;
  font-weight: inherit;
}

.footer__table td {
  width: 100%;
}

.footer__copy {
  margin-top: 36px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
  letter-spacing: 0.42px;
}

@container (inline-size < 390px) {
  .footer__table tr {
    grid-template-columns: 30% 1fr;
  }
}

.remarks__ja {
  margin-top: 14px;
  width: min(100%, 160px);
  margin-inline: auto;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 28px; /* 200% */
  letter-spacing: 0.42px;
  text-wrap: nowrap;

  @media (width >= 768px) {
    width: min(100%, 190px);
    /* margin-inline: 38% auto; */
    font-size: 1.6rem;
    letter-spacing: 0.48px;
  }

  @media (width >= 930px) {
    /* margin-inline: 43% auto; */
  }
}

.remarks__ja li {
  padding-inline-start: 1em;
  text-wrap: nowrap;
}

.list__genre--ja {
  margin-top: 12px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 30px; /* 214.286% */
  letter-spacing: 0.42px;
  text-wrap: balance;

  @media (width >= 768px) {
    margin-top: 17px;
    font-size: 1.6rem;
  }
}

.list__other--ja {
  color: #36434a;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 26px; /* 185.714% */
  letter-spacing: 0.42px;

  @media (width >= 768px) {
    line-height: 27px; /* 192.857% */
  }
}

.text-indent--lg {
  @media (width >= 768px) {
    padding-left: 5.5em;
  }
}
