@charset "UTF-8";
/* ========================================
   font
======================================== */
/* ---- font ---- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
/* ========================================
   reset.css
======================================== */
/* box-sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* margin / padding リセット */
body,
h1, h2, h3, h4, h5, h6,
p,
ul, ol,
figure,
blockquote,
dl, dd {
  margin: 0;
  padding: 0;
}

/* リスト */
ul, ol {
  list-style: none;
}

/* 画像 */
img {
  max-width: 100%;
  display: block;
}

/* フォーム */
input,
button,
textarea,
select {
  font: inherit;
}

/* ボタン */
button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

/* リンク */
a {
  text-decoration: none;
  color: inherit;
}

/* テーブル */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* html 基本 */
html {
  -webkit-text-size-adjust: 100%;
}

/* body */
body {
  line-height: 1.5;
}

@font-face {
  font-family: "Overused Grotesk";
  src: url("../woff2/OverusedGrotesk-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Overused Grotesk";
  src: url("../woff2/OverusedGrotesk-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Overused Grotesk";
  src: url("../woff2/OverusedGrotesk-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Overused Grotesk";
  src: url("../woff2/OverusedGrotesk-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Overused Grotesk";
  src: url("../woff2/OverusedGrotesk-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
/* ==================================================
  Variables
================================================== */
/* ---- layout ---- */
/* ---- font-size ---- */
/* ---- color ---- */
/* ==================================================
  Mixins / Functions
================================================== */
/* ---- Media Query ---- */
/* ---- VW (SP基準) ---- */
/* ==================================================
  common
================================================== */
html, body {
  height: 100%;
}

::-moz-selection {
  background-color: #0B1D53;
  color: #fff;
}

::selection {
  background-color: #0B1D53;
  color: #fff;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #0B1D53;
  background: #fff;
}

.wrapper {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

/* header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 0 20px 40px;
  border-bottom: 1px solid #0B1D53;
  background-color: #FFF;
  z-index: 99;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 14px 0 14px 20px;
    border-bottom: none;
  }
}
.header a {
  transition: all 0.3s ease;
}
.header a:hover {
  opacity: 0.5;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 150px;
}
@media screen and (max-width: 768px) {
  .header__inner {
    display: block;
  }
}
.header__logo {
  position: relative;
  width: 168px;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 130px;
  }
}
.header__hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__hamburger {
    display: block;
    position: fixed;
    top: 22px;
    right: 20px;
    width: 20px;
    height: 14px;
    z-index: 99;
    border: none;
    background-color: transparent;
  }
  .header__hamburger.-active .hamburger__line {
    background-color: transparent;
  }
  .header__hamburger.-active .hamburger__line::before {
    top: 0;
    transform: rotate(45deg);
  }
  .header__hamburger.-active .hamburger__line::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .header__hamburger .hamburger__line {
    display: block;
    width: 20px;
    height: 1px;
    position: absolute;
    top: 7px;
    background-color: #333;
    transition: background-color 0.3s ease;
  }
  .header__hamburger .hamburger__line::before, .header__hamburger .hamburger__line::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #333;
    transition: transform 0.3s ease, top 0.3s ease;
  }
  .header__hamburger .hamburger__line::before {
    top: -7px;
  }
  .header__hamburger .hamburger__line::after {
    top: 7px;
  }
}

.nav__list {
  display: inline-flex;
  align-items: flex-start;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .nav__list {
    flex-direction: column;
    gap: 38px;
    align-items: center;
  }
}
.nav__list li {
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 600;
  font-size: calc(20 / 16 * 1rem);
  color: #0B1D53;
  line-height: 1;
}
.nav__list li.off {
  opacity: 0.5;
}
.nav__list li.on {
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .nav {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .nav.-active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

/* content */
.content {
  margin: 200px 0 60px 40px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .content {
    width: calc(100% - 40px);
    margin: 120px auto 30px;
  }
}
.content__title {
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 700;
  font-size: calc(45 / 16 * 1rem);
  line-height: 1;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .content__title {
    font-size: calc(32 / 16 * 1rem);
    margin-bottom: 60px;
  }
}
.content.works {
  margin-top: 130px;
}
.content.works .content__title {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .content.works {
    margin-top: 80px;
  }
}

/* footer */
.footer-copyright {
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 500;
  font-size: calc(10 / 16 * 1rem);
  line-height: 1;
  color: #0B1D53;
  position: absolute;
  left: 40px;
  bottom: 20px;
}
@media screen and (max-width: 768px) {
  .footer-copyright {
    left: 20px;
  }
}

/* ==================================================
  TOP
================================================== */
.top {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100svh;
  background: #fff;
  transition: background-color 1s ease;
}
@media screen and (max-width: 768px) {
  .top {
    justify-content: flex-start;
    padding-left: 20px;
  }
}
.top__container {
  display: flex;
  align-items: center;
  gap: 200px;
}
@media screen and (max-width: 768px) {
  .top__container {
    align-items: flex-start;
    flex-direction: column;
    gap: 60px;
  }
}
.top__logo {
  position: relative;
  width: 240px;
}
@media screen and (max-width: 768px) {
  .top__logo {
    width: calc(207 / 390 * 100vw);
  }
}
.top__logo img {
  display: block;
  width: 100%;
}
.top__logo img.logo-white {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.top__link {
  display: inline-flex;
  align-items: flex-start;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .top__link {
    flex-direction: column;
    gap: 38px;
  }
}
.top__link li, .top__link a {
  color: #0B1D53;
  transition: color 1s ease;
}
.top__link li {
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 500;
  font-size: calc(23 / 16 * 1rem);
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  .top__link li {
    font-size: calc(20 / 16 * 1rem);
  }
}
.top__link li.off {
  opacity: 0.6;
}
.top__link li.off span {
  display: block;
  font-size: calc(11 / 16 * 1rem);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top__link li.off span {
    text-align: left;
  }
}
.top__link li a {
  transition: all 0.3s ease;
}
.top__link li a:hover {
  opacity: 0.5;
}
.top__copyright {
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 500;
  font-size: calc(10 / 16 * 1rem);
  line-height: 1;
  position: absolute;
  right: 20px;
  bottom: 20px;
  transition: color 1s ease;
}
@media screen and (max-width: 768px) {
  .top__copyright {
    right: auto;
    left: 20px;
  }
}
.top.is-dark {
  background: #0B1D53;
}
.top.is-dark .logo-white {
  opacity: 1;
}
.top.is-dark .top__link li, .top.is-dark .top__link a {
  color: #fff;
}
.top.is-dark .top__copyright {
  color: #fff;
}

/* ==================================================
  works
================================================== */
/* 一覧 */
.works-category__item {
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 600;
  font-size: calc(30 / 16 * 1rem);
  margin-bottom: 36px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .works-category__item {
    font-size: calc(20 / 16 * 1rem);
    margin-bottom: 30px;
  }
}
.works-category__item span {
  display: block;
  font-weight: 400;
  font-size: calc(20 / 16 * 1rem);
}
@media screen and (max-width: 768px) {
  .works-category__item span {
    font-size: calc(13 / 16 * 1rem);
  }
}
.works-category__item a {
  transition: all 0.3s ease;
}
.works-category__item a:hover {
  opacity: 0.5;
}
.works-category__item.project {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .works-category__item.project {
    margin-top: 50px;
  }
}
.works-category__item.off {
  opacity: 0.5;
}

/* カテゴリ一覧 */
.works-list__text {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .works-list__text {
    margin-bottom: 50px;
  }
}
.works-list__title {
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 600;
  font-size: calc(24 / 16 * 1rem);
}
.works-list__title span {
  display: block;
  font-weight: 500;
  font-size: calc(16 / 16 * 1rem);
}
@media screen and (max-width: 768px) {
  .works-list__title {
    font-size: calc(18 / 16 * 1rem);
  }
  .works-list__title span {
    font-size: calc(12 / 16 * 1rem);
  }
}
.works-list__content {
  width: 1280px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
@media screen and (max-width: 768px) {
  .works-list__content {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 8px;
    margin-bottom: 40px;
  }
}
.works-list .item a:hover img, .works-list .item a:hover h2, .works-list .item a:hover p {
  opacity: 0.5;
}
.works-list .item__img {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .works-list .item__img {
    margin-bottom: 8px;
  }
}
.works-list .item__title {
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 600;
  font-size: calc(14 / 16 * 1rem);
  line-height: 1.5;
  margin-bottom: 8px;
}
.works-list .item__title span {
  display: block;
  font-size: calc(12 / 16 * 1rem);
}
@media screen and (max-width: 768px) {
  .works-list .item__title {
    font-size: calc(13 / 16 * 1rem);
  }
  .works-list .item__title span {
    font-size: calc(11 / 16 * 1rem);
  }
}
.works-list .item__category {
  font-size: calc(10 / 16 * 1rem);
  color: #B6B2B2;
}

/* 詳細 */
.works-detail {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .works-detail {
    flex-direction: column;
    gap: 60px;
    margin-bottom: 40px;
  }
}
.works-detail__content {
  width: 580px;
  position: sticky;
  top: 130px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .works-detail__content {
    width: 100%;
    position: relative;
    top: auto;
  }
}
.works-detail__title {
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 600;
  font-size: calc(28 / 16 * 1rem);
  line-height: 1.2;
  margin-bottom: 20px;
}
.works-detail__title span {
  display: block;
  font-size: calc(21 / 16 * 1rem);
}
@media screen and (max-width: 768px) {
  .works-detail__title {
    font-size: calc(23 / 16 * 1rem);
  }
  .works-detail__title span {
    font-size: calc(19 / 16 * 1rem);
  }
}
.works-detail__text1 {
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 500;
  font-size: calc(17 / 16 * 1rem);
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .works-detail__text1 {
    font-size: calc(13 / 16 * 1rem);
    margin-bottom: 30px;
  }
}
.works-detail__text2 {
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 400;
  font-size: calc(12 / 16 * 1rem);
}
.works-detail__text3 {
  font-size: calc(12 / 16 * 1rem);
}
.works-detail__img {
  width: 600px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .works-detail__img {
    width: 100%;
    gap: 20px;
  }
}

/*  WordPress */
body .is-layout-flex {
  flex-direction: column;
  gap: 30px !important;
}
@media screen and (max-width: 768px) {
  body .is-layout-flex {
    gap: 20px !important;
  }
}

.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image {
  width: 100% !important;
}

/* ==================================================
  ABOUT
================================================== */
.about__head {
  display: flex;
  align-items: baseline;
}
.about__head .lang-switch {
  margin-left: 100px;
}
.about__head .lang-switch span {
  cursor: pointer;
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 500;
  color: #0B1D53;
  font-size: calc(14 / 16 * 1rem);
  opacity: 0.5;
}
.about__head .lang-switch span.is-active {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .about__head .lang-switch {
    margin-left: 80px;
  }
}
.about__inner {
  font-size: calc(12 / 16 * 1rem);
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .about__inner {
    flex-direction: column;
    gap: 30px;
  }
}
.about__text {
  width: 630px;
}
@media screen and (max-width: 768px) {
  .about__text {
    width: 100%;
  }
}
.about__text .lang-content {
  display: none;
}
.about__text .lang-content.is-active {
  display: block;
}
.about__text .description {
  margin-bottom: 60px;
}
.about__text dt {
  font-size: calc(13 / 16 * 1rem);
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .about__text dt {
    font-size: calc(12 / 16 * 1rem);
  }
}
.about__text dd {
  margin-bottom: 30px;
}
.about__text dd.last-child {
  margin-bottom: 0;
}
.about__text dd .mb {
  margin-bottom: 10px;
}
.about__text dd .project {
  font-size: calc(11 / 16 * 1rem);
}
.about__text dd span {
  margin-left: 10px;
}
.about__text dd span a {
  text-decoration: underline;
}
.about__text dd span a:hover {
  text-decoration: none;
}
.about__img {
  width: 400px;
}
@media screen and (max-width: 768px) {
  .about__img {
    width: 100%;
    margin-bottom: 40px;
  }
}

/* ==================================================
  CONTACT
================================================== */
.contact {
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 600;
}
.contact__mail {
  font-size: calc(25 / 16 * 1rem);
  margin-bottom: 2px;
}
@media screen and (max-width: 768px) {
  .contact__mail {
    font-size: calc(22 / 16 * 1rem);
  }
}
.contact__copy {
  display: inline;
  font-size: calc(16 / 16 * 1rem);
  font-weight: 500;
  text-decoration: underline;
  color: #0B1D53;
}
@media screen and (max-width: 768px) {
  .contact__copy {
    font-size: calc(14 / 16 * 1rem);
  }
}
.contact__copy:hover {
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */