@charset "UTF-8";
/* --------------------------------
   CSS Reset
-------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-size: 62.5%;
  font-family: "a-otf-ryumin-pr6n", serif;
  font-weight: 300;
  height: 100%;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  color: #000;
  background-color: #fff;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

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

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@media only screen and (min-width: 768px) {
  .flex-tablet {
    display: flex;
  }
}
.flex-tablet.-jc-between {
  justify-content: space-between;
}

.u-sp-hidden {
  display: none;
}
@media only screen and (min-width: 768px) {
  .u-sp-hidden {
    display: block;
  }
}

@media only screen and (min-width: 768px) {
  .u-tablet-hidden {
    display: none;
  }
}

.l-container,
.container {
  position: relative;
  padding: 0 6.25vw;
}
@media only screen and (min-width: 768px) {
  .l-container,
  .container {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 60px;
    padding-right: 60px;
    width: 100%;
  }
}

@media only screen and (min-width: 768px) {
  .l-content {
    width: min(98.2142857143vw, 1100px);
  }
}

@media only screen and (min-width: 768px) {
  .l-section-header {
    width: min(17.8571428571vw, 200px);
  }
}

.search main,
.single main,
.archive main,
.page main {
  padding-top: 50px;
}
@media only screen and (min-width: 1050px) {
  .search main,
  .single main,
  .archive main,
  .page main {
    padding-top: 90px;
  }
}

.page-back {
  display: block;
  margin: 4.0625vw 0 6.875vw;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: normal;
}
@media only screen and (min-width: 768px) {
  .page-back {
    position: fixed;
    top: 60px;
    margin: 35px 0 34px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9000;
  transition: background-color 400ms ease;
}

.header.scrolled::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  z-index: -1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 18.75vw;
}
@media only screen and (min-width: 768px) {
  .nav {
    height: min(8.0357142857vw, 90px);
  }
}

.nav-logo {
  display: block;
  flex-shrink: 0;
}
.nav-logo__img {
  display: block;
  width: 15vw;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .nav-logo__img {
    width: min(5.7142857143vw, 64px);
  }
}

.nav-links {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 9.375vw;
  list-style: none;
  margin: 0;
  padding: 25vw 0 0 25px;
  position: fixed;
  top: 0;
  right: 0;
  width: 50vw;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  transform: translateX(100%);
  transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 8999;
}
@media only screen and (min-width: 768px) {
  .nav-links {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: min(4.4642857143vw, 50px);
    width: auto;
    height: auto;
    padding: 0;
    background-color: transparent;
    transform: none;
    transition: none;
  }
}
.nav-links a {
  display: block;
  font-family: "din-condensed", "DIN Condensed", sans-serif;
  font-size: 16px;
  font-size: 5vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 200ms ease;
}
@media only screen and (min-width: 768px) {
  .nav-links a {
    font-size: 15px;
    font-size: min(1.3392857143vw, 15px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.1em;
  }
}
.nav-links a:hover {
  opacity: 0.6;
}
.nav-links.open {
  transform: translateX(0);
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 6.25vw;
  height: 4.6875vw;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 9001;
}
@media only screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}
.hamburger span {
  display: block;
  width: 6.25vw;
  height: 2px;
  background-color: #ffffff;
  transition: transform 300ms ease, opacity 300ms ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(2.03125vw) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-2.03125vw) rotate(-45deg);
}

.footer {
  background-color: #7f7f7f;
  padding: 10vw 0;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .footer {
    padding: min(3.5714285714vw, 40px) 0;
  }
}
.footer p {
  font-family: "yu-gothic-pr6n", "Yu Gothic", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 768px) {
  .footer p {
    font-size: 15px;
    font-size: min(1.3392857143vw, 15px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.1em;
  }
}

.loaded {
  visibility: visible;
}

.js-animate {
  opacity: 0;
  transform: translateY(50px);
}

.top-animate {
  opacity: 0;
  transform: translateY(50px);
}

.init .top-animate {
  transition: transform 1500ms cubic-bezier(0.37, 0, 0.63, 1), opacity 2000ms cubic-bezier(0.37, 0, 0.63, 1);
}

.init .top-animate {
  transform: translateY(0);
  opacity: 1;
}

.init .fv__title {
  transition-delay: 100ms;
}

.init .fv__text {
  transition-delay: 500ms;
}

.init .fv__logo {
  transition-delay: 800ms;
}

.section__title {
  margin-bottom: 5.625vw;
}
@media only screen and (min-width: 768px) {
  .section__title {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 0;
  }
}

.section {
  padding: 14.0625vw 0;
}
@media only screen and (min-width: 768px) {
  .section {
    padding: min(8.9285714286vw, 100px) 0;
  }
}

.section-label {
  display: inline-block;
  font-family: "din-condensed", "DIN Condensed", sans-serif;
  font-size: 17px;
  font-size: 5.3125vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 7.1875vw;
  border-bottom: solid 1px #000000;
}
@media only screen and (min-width: 768px) {
  .section-label {
    font-size: 27px;
    font-size: min(2.4107142857vw, 27px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.2em;
    margin-bottom: min(1.7857142857vw, 20px);
  }
}
.section-label.-light {
  color: #ffffff;
  border-bottom: solid 1px #ffffff;
}

.section-heading {
  font-family: "a-otf-ryumin-pr6n", serif;
  font-size: 32px;
  font-size: 10vw;
  font-weight: 300;
  line-height: 1.4375;
  letter-spacing: 0.05em;
  color: #000000;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .section-heading {
    font-size: 60px;
    font-size: min(5.3571428571vw, 60px);
    font-weight: 300;
    line-height: 1.45;
    letter-spacing: 0;
  }
}

.body-text {
  font-family: "a-otf-ryumin-pr6n", serif;
  font-size: 14px;
  font-size: 4.375vw;
  font-weight: 300;
  line-height: 2;
  letter-spacing: normal;
  color: #ffffff;
}
@media only screen and (min-width: 768px) {
  .body-text {
    font-size: 17px;
    font-size: min(1.5178571429vw, 17px);
    font-weight: 300;
    line-height: 1.9411764706;
    letter-spacing: 0;
  }
}

@media only screen and (min-width: 768px) {
  .two-col {
    display: flex;
    align-items: flex-start;
    gap: min(7.1428571429vw, 80px);
  }
}
@media only screen and (min-width: 768px) and (min-width: 768px) {
  .two-col {
    gap: 0;
  }
}
@media only screen and (min-width: 768px) {
  .two-col .col-left {
    width: 50%;
    flex-shrink: 0;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  .two-col .col-right {
    padding-top: min(0.8928571429vw, 10px);
    width: 50%;
    flex: 1;
  }
}

.hero {
  position: relative;
  min-height: 100dvh;
  background-color: #000000;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .hero {
    align-items: center;
  }
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video__el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.hero-video__el--pc {
  display: none;
}
@media only screen and (min-width: 768px) {
  .hero-video__el--pc {
    display: block;
  }
}
.hero-video__el--sp {
  display: block;
}
@media only screen and (min-width: 768px) {
  .hero-video__el--sp {
    display: none;
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 34.375vw;
  padding-left: 15.625vw;
  padding-bottom: 18.75vw;
}
@media only screen and (min-width: 768px) {
  .hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 min(5.3571428571vw, 60px);
    gap: min(7.1428571429vw, 80px);
  }
}

.hero-logo {
  width: 71.875vw;
  margin-bottom: 6.25vw;
}
.hero-logo img {
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .hero-logo {
    width: min(45.5357142857vw, 510px);
    margin-bottom: min(4.4642857143vw, 50px);
  }
}

.hero-left {
  display: flex;
  flex-direction: column;
  margin-bottom: 10vw;
}
@media only screen and (min-width: 768px) {
  .hero-left {
    margin-bottom: 0;
    flex-shrink: 0;
  }
}

.hero-en-label {
  font-size: 9px;
  font-size: 2.8125vw;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.2em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 3.75vw;
}
@media only screen and (min-width: 768px) {
  .hero-en-label {
    font-size: 20px;
    font-size: min(1.7857142857vw, 20px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.2em;
    margin-bottom: min(2.6785714286vw, 30px);
  }
}

.hero-ja-label {
  font-family: "a-otf-ryumin-pr6n", serif;
  font-size: 11px;
  font-size: 3.4375vw;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.25em;
  color: #ffffff;
}
@media only screen and (min-width: 768px) {
  .hero-ja-label {
    font-size: 26px;
    font-size: min(2.3214285714vw, 26px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0;
  }
}

@media only screen and (min-width: 768px) {
  .hero-right {
    flex: 1;
    max-width: min(67.8571428571vw, 760px);
    padding-top: min(16.0714285714vw, 180px);
  }
}

.hero-heading {
  font-family: "a-otf-ryumin-pr6n", serif;
  font-size: 28px;
  font-size: 8.75vw;
  font-weight: 300;
  line-height: 1.4285714286;
  letter-spacing: 0.09em;
  color: #ffffff;
  margin-bottom: 6.25vw;
  text-spacing-trim: trim-start;
}
@media only screen and (min-width: 768px) {
  .hero-heading {
    font-size: 26px;
    font-size: min(2.3214285714vw, 26px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.09em;
    margin-bottom: min(2.6785714286vw, 30px);
    white-space: nowrap;
  }
}

.hero-body {
  font-family: "a-otf-ryumin-pr6n", serif;
  font-size: 14px;
  font-size: 4.375vw;
  font-weight: 300;
  line-height: 2.0714285714;
  letter-spacing: normal;
  color: #ffffff;
}
@media only screen and (min-width: 768px) {
  .hero-body {
    font-size: 15px;
    font-size: min(1.3392857143vw, 15px);
    font-weight: 300;
    line-height: 2.2;
    letter-spacing: 0;
  }
}

.who-we-are {
  background-color: #ffffff;
  background-image: url("../img/who-we-are_bg_sp.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 768px) {
  .who-we-are {
    background-image: url("../img/who-we-are_bg_pc.jpg");
  }
}
.who-we-are .section-heading {
  color: #000000;
  margin-bottom: 6.25vw;
}
@media only screen and (min-width: 768px) {
  .who-we-are .section-heading {
    margin-bottom: min(1.7857142857vw, 20px);
  }
}
.who-we-are .body-text {
  color: #000000;
}
@media only screen and (min-width: 768px) {
  .who-we-are .body-text {
    text-align: justify;
    text-justify: inter-ideograph; /* 日本語（アジア圏言語）の調整に必要 */
  }
}

.value-and-worth {
  padding-top: 12.5vw;
}
@media only screen and (min-width: 768px) {
  .value-and-worth {
    padding-top: min(6.25vw, 70px);
  }
}

.value-box {
  background-color: rgba(255, 255, 255, 0.5);
  margin-bottom: 9.375vw;
  padding: 6.25vw 3.125vw 12.5vw;
}
@media only screen and (min-width: 768px) {
  .value-box {
    margin-bottom: min(2.6785714286vw, 30px);
    padding: min(3.5714285714vw, 40px) 0 min(7.1428571429vw, 80px);
  }
}

.vaw-intro {
  font-family: "a-otf-ryumin-pr6n", serif;
  font-size: 14px;
  font-size: 4.375vw;
  font-weight: 300;
  line-height: 2;
  letter-spacing: normal;
  margin-bottom: 3.125vw;
}
@media only screen and (min-width: 768px) {
  .vaw-intro {
    font-size: 20px;
    font-size: min(1.7857142857vw, 20px);
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0;
    margin-bottom: min(2.3214285714vw, 26px);
    text-align: center;
  }
}

.vaw-title-block {
  text-align: center;
  margin-bottom: 9.375vw;
}
@media only screen and (min-width: 768px) {
  .vaw-title-block {
    margin-bottom: min(2.6785714286vw, 30px);
  }
}

.vaw-main-title {
  font-family: "din-condensed", "DIN Condensed", sans-serif;
  font-size: 22px;
  font-size: 6.875vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 2.5vw;
}
@media only screen and (min-width: 768px) {
  .vaw-main-title {
    font-size: 39px;
    font-size: min(3.4821428571vw, 39px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
    margin-bottom: min(1.6071428571vw, 18px);
  }
}

.vaw-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.75vw;
  font-family: "yu-gothic-pr6n", "Yu Gothic", sans-serif;
  font-size: 15px;
  font-size: 4.6875vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: normal;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .vaw-subtitle {
    gap: min(1.4285714286vw, 16px);
    font-size: 15px;
    font-size: min(1.3392857143vw, 15px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
  }
}

.rule {
  display: inline-block;
  width: 25vw;
  height: 1px;
  background-color: #000000;
}
@media only screen and (min-width: 768px) {
  .rule {
    width: min(10.7142857143vw, 120px);
  }
}

.vaw-letters {
  display: flex;
  flex-direction: column;
  gap: 8.125vw;
}
@media only screen and (min-width: 768px) {
  .vaw-letters {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: min(2.6785714286vw, 30px);
    margin-bottom: 0;
  }
}

.vaw-item {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .vaw-item {
    padding: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
  .vaw-item:last-child {
    border-right: none;
  }
}

.vaw-letter {
  margin-bottom: 5vw;
}
@media only screen and (min-width: 768px) {
  .vaw-letter {
    margin-bottom: min(2.6785714286vw, 30px);
  }
}
.vaw-letter img {
  width: auto;
  height: 26.25vw;
  margin: auto;
}
@media only screen and (min-width: 768px) {
  .vaw-letter img {
    height: min(12.5vw, 140px);
  }
}

.vaw-tags {
  font-family: "din-condensed", "DIN Condensed", sans-serif;
  font-size: 21px;
  font-size: 6.5625vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 1.875vw;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .vaw-tags {
    font-size: 17px;
    font-size: min(1.5178571429vw, 17px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
    margin-bottom: min(0.8928571429vw, 10px);
  }
}

.vaw-desc {
  font-family: "yu-gothic-pr6n", "Yu Gothic", sans-serif;
  font-size: 12px;
  font-size: 3.75vw;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: normal;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .vaw-desc {
    font-size: 13px;
    font-size: min(1.1607142857vw, 13px);
    font-weight: 700;
    line-height: 1.6153846154;
    letter-spacing: 0;
  }
}

.vaw-bottom-text {
  font-family: "a-otf-ryumin-pr6n", serif;
  font-size: 14px;
  font-size: 4.375vw;
  font-weight: 300;
  line-height: 2;
  letter-spacing: normal;
}
@media only screen and (min-width: 768px) {
  .vaw-bottom-text {
    font-size: 20px;
    font-size: min(1.7857142857vw, 20px);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0;
    text-align: center;
  }
}

.our-business {
  background-color: #0d0d0d;
  background-image: url("../img/business_bg_sp.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}
@media only screen and (min-width: 768px) {
  .our-business {
    background-image: url("../img/business_bg_pc.jpg");
  }
}
.our-business .section-heading {
  color: #ffffff;
}
@media only screen and (min-width: 768px) {
  .our-business .body-text {
    text-align: justify;
    text-justify: inter-ideograph; /* 日本語（アジア圏言語）の調整に必要 */
  }
}

.business-heading {
  font-size: 28px;
  font-size: 8.75vw;
  font-weight: 300;
  line-height: 1.4642857143;
  letter-spacing: 0.05em;
  white-space: nowrap;
  margin-bottom: 9.375vw;
}
@media only screen and (min-width: 768px) {
  .business-heading {
    font-size: 48px;
    font-size: min(4.2857142857vw, 48px);
    font-weight: 300;
    line-height: 1.4583333333;
    letter-spacing: 0;
  }
}

.business-tagline {
  font-family: "a-otf-ryumin-pr6n", serif;
  font-size: 14px;
  font-size: 4.375vw;
  font-weight: 300;
  line-height: 1.8571428571;
  letter-spacing: normal;
  color: #ffffff;
  margin-top: 7.5vw;
  padding-top: 7.5vw;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
@media only screen and (min-width: 768px) {
  .business-tagline {
    font-size: 15px;
    font-size: min(1.3392857143vw, 15px);
    font-weight: 400;
    line-height: 1.8666666667;
    letter-spacing: 0;
    margin-top: min(2.8571428571vw, 32px);
    padding-top: min(2.8571428571vw, 32px);
  }
}

.business-lower {
  margin-top: 9.375vw;
}
@media only screen and (min-width: 768px) {
  .business-lower {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    margin-top: min(5.8035714286vw, 65px);
  }
}

.circles-diagram {
  position: relative;
  width: 81.25vw;
  height: 81.25vw;
  margin: 0 auto 15vw;
  flex-shrink: 0;
}
@media only screen and (min-width: 768px) {
  .circles-diagram {
    width: 50%;
    height: auto;
    margin: 0;
  }
  .circles-diagram img {
    width: min(37.5vw, 420px);
    height: min(37.5vw, 420px);
  }
}

.circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "din-condensed", "DIN Condensed", sans-serif;
  font-size: 7px;
  font-size: 2.1875vw;
  font-weight: 300;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
  width: 34.375vw;
  height: 34.375vw;
  background-color: rgba(0, 0, 0, 0.4);
}
@media only screen and (min-width: 768px) {
  .circle {
    width: min(16.7857142857vw, 188px);
    height: min(16.7857142857vw, 188px);
    font-size: 11px;
    font-size: min(0.9821428571vw, 11px);
    font-weight: 400;
    line-height: 1.6363636364;
    letter-spacing: 0.05em;
  }
}
.circle.c-bs {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.circle.c-dt {
  top: 16.25vw;
  right: 1.25vw;
}
@media only screen and (min-width: 768px) {
  .circle.c-dt {
    top: min(7.8571428571vw, 88px);
    right: min(0.5357142857vw, 6px);
  }
}
.circle.c-sg {
  bottom: 4.375vw;
  right: 9.6875vw;
}
@media only screen and (min-width: 768px) {
  .circle.c-sg {
    bottom: min(2.1428571429vw, 24px);
    right: min(4.6428571429vw, 52px);
  }
}
.circle.c-mb {
  bottom: 4.375vw;
  left: 9.6875vw;
}
@media only screen and (min-width: 768px) {
  .circle.c-mb {
    bottom: min(2.1428571429vw, 24px);
    left: min(4.6428571429vw, 52px);
  }
}
.circle.c-fi {
  top: 16.25vw;
  left: 1.25vw;
}
@media only screen and (min-width: 768px) {
  .circle.c-fi {
    top: min(7.8571428571vw, 88px);
    left: min(0.5357142857vw, 6px);
  }
}

.circles-vaw {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "din-condensed", "DIN Condensed", sans-serif;
  font-size: 20px;
  font-size: 6.25vw;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #ffffff;
}
@media only screen and (min-width: 768px) {
  .circles-vaw {
    font-size: 32px;
    font-size: min(2.8571428571vw, 32px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.1em;
  }
}

.domain-grid {
  display: flex;
  flex-direction: column;
  gap: 9.375vw;
}
@media only screen and (min-width: 768px) {
  .domain-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: min(2.8571428571vw, 32px) min(4.2857142857vw, 48px);
    align-content: start;
  }
}

.domain-item h3 {
  font-family: "din-condensed", "DIN Condensed", sans-serif;
  font-size: 25px;
  font-size: 7.8125vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.07em;
  color: #ffffff;
  margin-bottom: 1.875vw;
}
@media only screen and (min-width: 768px) {
  .domain-item h3 {
    font-size: 23px;
    font-size: min(2.0535714286vw, 23px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.07em;
    margin-bottom: min(0.8928571429vw, 10px);
  }
}
.domain-item ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}
@media only screen and (min-width: 768px) {
  .domain-item ul {
    gap: min(0.1785714286vw, 2px);
  }
}
.domain-item li {
  font-family: "yu-gothic-pr6n", "Yu Gothic", sans-serif;
  font-size: 15px;
  font-size: 4.6875vw;
  font-weight: 700;
  line-height: 1.5333333333;
  letter-spacing: normal;
  color: #ffffff;
}
@media only screen and (min-width: 768px) {
  .domain-item li {
    font-size: 15px;
    font-size: min(1.3392857143vw, 15px);
    font-weight: 700;
    line-height: 1.5333333333;
    letter-spacing: 0;
  }
}

.project-case {
  background-color: #0d0d0d;
  background-image: url("../img/case_bg_sp.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}
@media only screen and (min-width: 768px) {
  .project-case {
    background-image: url("../img/case_bg_pc.jpg");
  }
}

.case-heading {
  font-family: "a-otf-ryumin-pr6n", serif;
  font-size: 28px;
  font-size: 8.75vw;
  font-weight: 300;
  line-height: 1.4642857143;
  letter-spacing: normal;
  color: #ffffff;
  margin-bottom: 3.75vw;
}
@media only screen and (min-width: 768px) {
  .case-heading {
    font-size: 50px;
    font-size: min(4.4642857143vw, 50px);
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0;
    margin-bottom: min(5vw, 56px);
  }
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.75vw;
}
@media only screen and (min-width: 768px) {
  .case-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: min(1.7857142857vw, 20px);
  }
}

.case-card {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 9.375vw 6.25vw;
  position: relative;
  min-height: 78.75vw;
}
@media only screen and (min-width: 768px) {
  .case-card {
    padding: min(2.6785714286vw, 30px) min(2.6785714286vw, 30px);
    min-height: min(25vw, 280px);
    margin-bottom: min(3.0357142857vw, 34px);
  }
}
.case-card--joint {
  border-color: rgba(255, 255, 255, 0.2);
}
.case-card--funds {
  background-color: rgba(224, 255, 0, 0.05);
  border-color: rgba(224, 255, 0, 0.2);
}

.joint-tag {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "yu-gothic-pr6n", "Yu Gothic", sans-serif;
  font-size: 10px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  width: 25vw;
  height: 7.1875vw;
  background-color: #000000;
  border: solid 1px #ffffff;
}
@media only screen and (min-width: 768px) {
  .joint-tag {
    font-size: 12px;
    font-size: min(1.0714285714vw, 12px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
    width: min(7.8571428571vw, 88px);
    height: min(2.3214285714vw, 26px);
    margin-bottom: min(1.0714285714vw, 12px);
  }
}

.case-name {
  font-family: "a-otf-ryumin-pr6n", serif;
  font-size: 20px;
  font-size: 6.25vw;
  font-weight: 300;
  line-height: 1;
  letter-spacing: normal;
  color: #ffffff;
  text-align: center;
  margin-bottom: 5.625vw;
}
@media only screen and (min-width: 768px) {
  .case-name {
    font-size: 22px;
    font-size: min(1.9642857143vw, 22px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    margin-bottom: min(1.4285714286vw, 16px);
  }
}

.case-category {
  font-family: "yu-gothic-pr6n", "Yu Gothic", sans-serif;
  font-size: 13px;
  font-size: 4.0625vw;
  font-weight: 700;
  line-height: 1.3076923077;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 5vw;
  padding-bottom: 3.75vw;
  border-bottom: solid 1px #ffffff;
}
@media only screen and (min-width: 768px) {
  .case-category {
    font-size: 15px;
    font-size: min(1.3392857143vw, 15px);
    font-weight: 700;
    line-height: 1.2666666667;
    letter-spacing: 0;
    margin-bottom: min(1.7857142857vw, 20px);
    padding-bottom: min(0.8928571429vw, 10px);
  }
}

.case-desc {
  font-family: "yu-gothic-pr6n", "Yu Gothic", sans-serif;
  font-size: 12px;
  font-size: 3.75vw;
  font-weight: 500;
  line-height: 1.8333333333;
  letter-spacing: normal;
  color: #ffffff;
}
@media only screen and (min-width: 768px) {
  .case-desc {
    font-size: 13px;
    font-size: min(1.1607142857vw, 13px);
    font-weight: 500;
    line-height: 1.7692307692;
    letter-spacing: 0;
  }
}

.case-card--funds {
  background-color: rgba(255, 255, 255, 0.5);
  padding-top: 12.5vw;
}
@media only screen and (min-width: 768px) {
  .case-card--funds {
    padding-top: min(3.75vw, 42px);
  }
}
.case-card--funds .case-name {
  font-family: "din-condensed", "DIN Condensed", sans-serif;
  font-size: 24px;
  font-size: 7.5vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  border-bottom: solid 1px #ffffff;
  padding-bottom: 9.375vw;
}
@media only screen and (min-width: 768px) {
  .case-card--funds .case-name {
    font-size: 27px;
    font-size: min(2.4107142857vw, 27px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    padding-bottom: min(3.2142857143vw, 36px);
  }
}

.company-info {
  background-color: #000000;
  color: #ffffff;
}
@media only screen and (min-width: 768px) {
  .company-info .section-label {
    position: absolute;
    top: min(1.7857142857vw, 20px);
    left: min(5.3571428571vw, 60px);
  }
}

@media only screen and (min-width: 768px) {
  .company-table {
    margin-left: min(32.5vw, 364px);
  }
}

.company-row {
  display: flex;
}
@media only screen and (min-width: 768px) {
  .company-row {
    flex-direction: row;
    gap: 0;
  }
}
.company-row dt {
  font-family: "a-otf-ryumin-pr6n", serif;
  font-size: 13px;
  font-size: 4.0625vw;
  font-weight: 300;
  line-height: 2.2307692308;
  letter-spacing: normal;
  color: #ffffff;
  flex-shrink: 0;
  width: 17.1875vw;
}
@media only screen and (min-width: 768px) {
  .company-row dt {
    font-size: 15px;
    font-size: min(1.3392857143vw, 15px);
    font-weight: 300;
    line-height: 2;
    letter-spacing: 0;
    width: min(9.8214285714vw, 110px);
  }
}
.company-row dd {
  font-family: "a-otf-ryumin-pr6n", serif;
  font-size: 13px;
  font-size: 4.0625vw;
  font-weight: 300;
  line-height: 2.2307692308;
  letter-spacing: normal;
  color: #ffffff;
}
@media only screen and (min-width: 768px) {
  .company-row dd {
    font-size: 15px;
    font-size: min(1.3392857143vw, 15px);
    font-weight: 300;
    line-height: 2;
    letter-spacing: 0;
    flex: 1;
  }
}

.company-relation-title {
  display: block;
  line-height: 1.4;
  padding-top: 1.875vw;
}
@media only screen and (min-width: 768px) {
  .company-relation-title {
    font-size: 15px;
    font-size: min(1.3392857143vw, 15px);
    font-weight: 300;
    line-height: 2;
    letter-spacing: 0;
    padding-top: 0;
  }
}

.company-tiny-text {
  white-space: nowrap;
  letter-spacing: -0.03em;
}
@media only screen and (min-width: 768px) {
  .company-tiny-text {
    letter-spacing: normal;
  }
}

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