@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

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

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}

h1,
h2,
h3,
h4,
h5,
h6,
div,
dl,
dt,
dd,
p {
  margin: 0;
  padding: 0;
}

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

li {
  list-style: none;
}

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

table {
  margin-inline: auto;
  border-collapse: collapse;
}

summary::-webkit-details-marker {
  display: none;
}

summary {
  display: block;
}

/*=========================
common
=========================*/
:root {
  --font-main: "source-han-sans-cjk-ja", "Noto Sans JP", sans-serif;
  --font-en: "din-condensed-variable", "Roboto Condensed", sans-serif;
  --font-ttl-jp: "fot-tsukuaoldmin-pr6n", serif;
  --font-weight-L: 200;
  --font-weight-M: 400;
  --font-weight-B: 800;
  --main-color: #E80000;
  --sub-color: #D8D8D6;
}

html {
  font-size: 16px;
  line-height: 1.7em;
  font-family: var(--font-main);
  font-weight: var(--font-weight-B);
  background-color: var(--sub-color);
  scroll-behavior: smooth;
}

body {
  transition: opacity 0.6s ease;
}

.sp-br {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-br {
    display: block;
  }
}
._sp {
  display: none;
}
@media screen and (max-width: 768px) {
  ._sp {
    display: inline;
  }
}

a {
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.6;
}

h1, h2, h3, h4, h5, h6, p, a, li, span, small, strong, em, dt, dd, figcaption, label, button, input, textarea {
  transition: opacity 0.8s ease;
}

html.wf-loading h1, html.wf-loading h2, html.wf-loading h3, html.wf-loading h4, html.wf-loading h5, html.wf-loading h6, html.wf-loading p, html.wf-loading a, html.wf-loading li, html.wf-loading span, html.wf-loading small, html.wf-loading strong, html.wf-loading em, html.wf-loading dt, html.wf-loading dd, html.wf-loading figcaption, html.wf-loading label, html.wf-loading button, html.wf-loading input, html.wf-loading textarea {
  opacity: 0;
}

html.wf-active h1, html.wf-active h2, html.wf-active h3, html.wf-active h4, html.wf-active h5, html.wf-active h6, html.wf-active p, html.wf-active a, html.wf-active li, html.wf-active span, html.wf-active small, html.wf-active strong, html.wf-active em, html.wf-active dt, html.wf-active dd, html.wf-active figcaption, html.wf-active label, html.wf-active button, html.wf-active input, html.wf-active textarea,
html.wf-inactive h1,
html.wf-inactive h2,
html.wf-inactive h3,
html.wf-inactive h4,
html.wf-inactive h5,
html.wf-inactive h6,
html.wf-inactive p,
html.wf-inactive a,
html.wf-inactive li,
html.wf-inactive span,
html.wf-inactive small,
html.wf-inactive strong,
html.wf-inactive em,
html.wf-inactive dt,
html.wf-inactive dd,
html.wf-inactive figcaption,
html.wf-inactive label,
html.wf-inactive button,
html.wf-inactive input,
html.wf-inactive textarea {
  opacity: 1;
}

/*=========================
共通背景
=========================*/
.grid-lines {
  --line: 4;
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(to right, #E4E4E4 0 1px, transparent 1px 100%);
  /* 本数 + 1 で等分 */
  background-size: calc(100% / (var(--line) + 1)) 100%;
  z-index: -1000;
}
@media screen and (max-width: 768px) {
  .grid-lines {
    --line: 2; /* SPでは2本 */
  }
}

/*======================
共通ナビゲーション
========================*/
.l-header__inner {
  margin-right: 10%;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .l-header__inner {
    margin-top: 20px;
    margin-right: 5%;
  }
}

.header__nav-main {
  color: var(--main-color);
  font-family: var(--font-en);
  font-weight: 800;
  text-align: right;
  font-size: 20px;
  position: relative;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .header__nav-main {
    font-size: 22px;
  }
}
.header__nav-main--list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .header__nav-main--list {
    gap: 10px;
  }
}

.header__nav-main--list .is-current {
  position: relative;
}
.header__nav-main--list .is-current a {
  color: var(--main-color);
}
.header__nav-main--list .is-current::after {
  content: "";
  position: absolute;
  left: -18px;
  bottom: 6px;
  width: 6px;
  height: 6px;
  border: 3px solid var(--main-color);
  border-radius: 50%;
}

/*======================
共通ボタン　
========================*/
.sec__link {
  position: relative;
  display: inline-block;
  font-family: var(--font-en);
  font-size: 20px;
  color: var(--main-color);
  text-decoration: none;
  margin-top: 80px;
  padding-right: 124px; /* 矢印分の余白 */
  pointer-events: all;
}

.sec__link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
}

.sec__link::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: -6px;
  width: 0px;
  height: 16px;
  border-right: 1px solid currentColor;
  transform: rotate(-45deg);
}

.sec__link__srt-icon {
  position: relative;
  display: inline-block;
  font-family: var(--font-en);
  font-size: 20px;
  color: var(--main-color);
  text-decoration: none;
  margin-top: 80px;
  padding-right: 124px; /* 矢印分の余白 */
  margin-left: 100px;
}
@media screen and (max-width: 768px) {
  .sec__link__srt-icon {
    margin-bottom: 100px;
    margin-left: 6%;
    margin-top: 40px;
  }
}
.sec__link__srt-icon img {
  width: 14px;
  padding-bottom: 8px;
  margin-right: 8px;
}

.sec__link__srt-icon::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
}

.sec__link__srt-icon::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: -6px;
  width: 0px;
  height: 16px;
  border-right: 1px solid currentColor;
  transform: rotate(-45deg);
}

/* =========================
画像 grayscale
========================= */
img {
  filter: grayscale(100%);
  transition: filter 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .is-hover-color:hover img {
    filter: grayscale(0%);
  }
}
img.is-color {
  filter: none;
}

/*======================
contact
========================*/
.contact-container {
  margin-top: 140px;
  color: #fff;
  background-color: #000;
}

.l-contact {
  padding-top: 90px;
  padding-inline: 10%;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .l-contact {
    padding-inline: 6%;
    padding-bottom: 80px;
  }
}
.l-contact h3 {
  font-family: var(--font-en);
  font-size: 60px;
  font-weight: var(--font-weight-M);
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .l-contact h3 {
    font-size: 40px;
  }
}
.l-contact p {
  font-weight: var(--font-weight-M);
}

.l-contact__banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 52px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-family: var(--font-main);
  font-weight: var(--font-weight-L);
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-top: 40px;
  cursor: pointer;
}

/*======================
footer　
========================*/
.l-footer {
  background-color: #000;
  z-index: 9000;
  position: relative;
}

.l-footer__inner {
  padding-inline: 135px;
  color: #fff;
  font-family: var(--font-en);
  padding-block: 40px;
}
@media screen and (max-width: 768px) {
  .l-footer__inner {
    display: flex;
    justify-content: space-between;
    padding-inline: 10%;
    flex-direction: column;
    padding-block: 0;
    padding-top: 120px;
    padding-bottom: 40px;
  }
}

.footer__nav {
  position: absolute;
  right: 150px;
  top: 40px;
}
@media screen and (max-width: 768px) {
  .footer__nav {
    top: 40px;
    left: 6%;
  }
}

.footer__copy {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .footer__copy {
    font-size: 12px;
  }
}

.footer__copy::before {
  content: "";
  position: absolute;
  left: 120px;
  top: 50%;
  width: 1px;
  height: 2.5em;
  background: #fff;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .footer__copy::before {
    left: 6%;
    transform: none;
    top: 63%;
  }
}

.footer__nav--list {
  display: flex;
  font-size: 20px;
  gap: 40px;
}

/*=========================
kv
=========================*/
.kv {
  position: relative;
}
@media screen and (max-width: 768px) {
  .kv {
    overflow: hidden;
    margin-top: 0px;
  }
}

.kv__base {
  position: relative;
  height: 860px;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .kv__base {
    height: 610px;
    margin-top: 30px;
  }
}

.kv__bg-illu {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.kv__bg-top,
.kv__bg-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  height: 556px;
  overflow: hidden;
  pointer-events: none;
}

.half-circle__white, .half-circle__red {
  position: absolute;
  width: 59.4vw;
  height: 30vw;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .half-circle__white, .half-circle__red {
    width: 180vw;
    height: 90vw;
  }
}

.half-circle__red {
  background: var(--main-color);
  display: inline-block;
  border-radius: 50%/100% 100% 0 0;
  left: -19.95%;
  bottom: 65%;
}
@media screen and (max-width: 768px) {
  .half-circle__red {
    left: -146%;
    bottom: 57%;
  }
}

.half-circle__white {
  background: #fff;
  display: inline-block;
  right: 0;
  top: 35%;
  border-radius: 50%/0 0 100% 100%;
}
@media screen and (max-width: 768px) {
  .half-circle__white {
    left: 34%;
    top: 43%;
  }
}

.kv__bg-ttl {
  position: absolute;
  top: -201px;
  right: 60%;
  width: 290px;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .kv__bg-ttl {
    top: 18px;
    right: auto;
    left: -3;
    width: 34%;
  }
}

.kv__h1 {
  position: absolute;
  left: 43%;
  margin-top: 136px;
}
@media screen and (max-width: 768px) {
  .kv__h1 {
    left: 40%;
    margin-top: 170px;
  }
}

.kv__h1 h1 {
  font-family: var(--font-en);
  font-size: 108px;
  font-weight: var(--font-weight-M);
  line-height: 0.8;
  color: var(--main-color);
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .kv__h1 h1 {
    font-size: 60px;
    letter-spacing: -0.025em;
  }
}

.h1-sub-ttl {
  font-size: 26px;
  padding-left: 8px;
}
@media screen and (max-width: 768px) {
  .h1-sub-ttl {
    padding-left: 4px;
  }
}

.h1-sub-lead {
  font-family: var(--font-en);
  color: var(--main-color);
  font-weight: var(--font-weight-M);
  font-size: 26px;
  line-height: 1.2;
  padding-left: 4px;
}
@media screen and (max-width: 768px) {
  .h1-sub-lead {
    font-size: 18px;
    letter-spacing: -0.05em;
    line-height: 1.4;
  }
}

/*======================
sec__main-cat　
========================*/
.sec__main-cat {
  margin-top: 140px;
}
.sec__main-cat__lead {
  max-width: 270px;
  color: var(--main-color);
}
.sec__main-cat__lead--en {
  font-family: var(--font-en);
  font-weight: var(--font-weight-B);
  font-size: 16px;
  line-height: 1.25;
}
.sec__main-cat__lead--jp {
  font-size: 12px;
}
.sec__main-cat__ttl {
  font-family: var(--font-en);
  color: var(--main-color);
  font-size: 200px;
  font-weight: var(--font-weight-M);
  z-index: 1000;
  letter-spacing: -0.03em;
  line-height: 0.9;
}
@media screen and (max-width: 768px) {
  .sec__main-cat__ttl {
    font-size: 70px;
    margin-left: 0;
  }
}
.sec__main-cat__sub-ttl {
  font-family: var(--font-en);
  font-size: 26px;
  color: var(--main-color);
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .sec__main-cat__sub-ttl {
    font-size: 18px;
    letter-spacing: -0.025em;
  }
}

.ttl-small {
  font-size: 150px;
  margin-left: -307px;
}
@media screen and (max-width: 768px) {
  .ttl-small {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: -0.025em;
  }
}

.ad-design__img {
  position: absolute;
  top: 30px;
  left: -60px;
  width: 500px;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .ad-design__img {
    left: -20px;
    width: 310px;
  }
}

.vis-design__img {
  max-width: 760px;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .vis-design__img {
    max-width: 330px;
  }
}

.dx-design__img {
  max-width: 720px;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .dx-design__img {
    width: 380px;
  }
}

.ad__base {
  position: relative;
  min-height: 1000px;
  overflow: hidden;
}

.ad-design__img__wrapper {
  position: absolute;
  top: 0;
  left: 10%;
}

.ad-design__txt__wrapper {
  position: relative;
  z-index: 9000;
  margin-top: 120px;
  height: 630px;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .ad-design__txt__wrapper {
    margin-top: 300px;
  }
}

.ad-design .sec__main-cat__sub-ttl {
  position: absolute;
  top: 0;
  left: 45%;
}
@media screen and (max-width: 768px) {
  .ad-design .sec__main-cat__sub-ttl {
    left: 65%;
    top: 50px;
  }
}
.ad-design .sec__main-cat__ttl__wrapper {
  display: flex;
  justify-content: center;
}
.ad-design .sec__main-cat__ttl {
  position: absolute;
  top: 180px;
}
.ad-design h2 {
  position: absolute;
  top: 380px;
  left: 60%;
  font-family: var(--font-ttl-jp);
  font-size: 100px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .ad-design h2 {
    top: 257px;
    left: 58%;
    font-size: 40px;
  }
}
.ad-design .sec__main-cat__lead {
  position: absolute;
  top: 400px;
  left: 40%;
}
@media screen and (max-width: 768px) {
  .ad-design .sec__main-cat__lead {
    left: 6%;
  }
}
.ad-design .img__bg-round {
  position: relative;
  width: 390px;
  height: 740px;
  background: #fff;
  border-radius: 195.5px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .ad-design .img__bg-round {
    width: 240px;
    height: 460px;
  }
}

.vis__base {
  position: relative;
  min-height: 1000px;
  overflow: hidden;
}

.vis-design__img__wrapper {
  position: absolute;
  top: 0;
  right: -100px;
}

.vis-design__txt__wrapper {
  position: relative;
  z-index: 9000;
  margin-top: 120px;
  height: 630px;
  pointer-events: none;
}

.vis-design h2 {
  position: absolute;
  top: 0;
  left: 20%;
  font-family: var(--font-ttl-jp);
  font-size: 100px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .vis-design h2 {
    top: 80px;
    left: 6%;
    font-size: 40px;
  }
}
.vis-design .sec__main-cat__ttl {
  position: absolute;
  top: 200px;
  left: 10%;
}
@media screen and (max-width: 768px) {
  .vis-design .sec__main-cat__ttl {
    left: 6%;
    top: 160px;
  }
}
.vis-design .sec__main-cat__lead {
  position: absolute;
  top: 400px;
  left: 20%;
}
@media screen and (max-width: 768px) {
  .vis-design .sec__main-cat__lead {
    left: 6%;
    top: 400px;
  }
}
.vis-design .sec__main-cat__sub-ttl {
  position: absolute;
  top: 396px;
  left: 42%;
}
@media screen and (max-width: 768px) {
  .vis-design .sec__main-cat__sub-ttl {
    left: 7%;
    top: 240px;
  }
}

.dx__base {
  position: relative;
  min-height: 1000px;
  overflow: hidden;
}

.dx-design__img__wrapper {
  position: absolute;
  top: 0;
  right: 144px;
}
@media screen and (max-width: 768px) {
  .dx-design__img__wrapper {
    right: 0;
  }
}

.dx-design__txt__wrapper {
  position: relative;
  z-index: 9000;
  margin-top: 160px;
  height: 630px;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .dx-design__txt__wrapper {
    margin-top: 220px;
  }
}

.dx-design .sec__main-cat__lead {
  position: absolute;
  top: 60px;
  left: 20%;
}
@media screen and (max-width: 768px) {
  .dx-design .sec__main-cat__lead {
    left: 6%;
    top: 360px;
  }
}
.dx-design h2 {
  position: absolute;
  top: 270px;
  left: 11%;
  font-family: var(--font-ttl-jp);
  font-size: 100px;
  line-height: 1;
  z-index: 2000;
}
@media screen and (max-width: 768px) {
  .dx-design h2 {
    top: 240px;
    left: 20%;
    font-size: 40px;
    z-index: 2000;
  }
}
.dx-design .sec__main-cat__ttl {
  position: absolute;
  top: 175px;
  right: 12%;
}
@media screen and (max-width: 768px) {
  .dx-design .sec__main-cat__ttl {
    top: 150px;
    right: 30px;
  }
}
.dx-design .ttl-small {
  font-size: 150px;
  margin-left: -307px;
}
@media screen and (max-width: 768px) {
  .dx-design .ttl-small {
    font-size: 70px;
    margin-left: -140px;
    letter-spacing: -0.05em;
    line-height: 1em;
  }
}
.dx-design .sec__main-cat__sub-ttl {
  position: absolute;
  top: 500px;
  left: 32%;
}
@media screen and (max-width: 768px) {
  .dx-design .sec__main-cat__sub-ttl {
    left: 20%;
    top: 60px;
  }
}
.dx-design .dx-design__img {
  top: 0;
  left: 100px;
}
@media screen and (max-width: 768px) {
  .dx-design .dx-design__img {
    margin-top: 50px;
  }
}
.dx-design .img__bg-round {
  position: absolute;
  top: 0;
  right: 67%;
  z-index: -1;
  width: 390px;
  height: 640px;
  background: #fff;
  border-radius: 195.5px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .dx-design .img__bg-round {
    left: 6%;
    width: 200px;
    height: 420px;
  }
}
.dx-design .sec__main-cat__more-dx {
  position: absolute;
  top: 590px;
  left: 20%;
}
@media screen and (max-width: 768px) {
  .dx-design .sec__main-cat__more-dx {
    top: 450px;
    left: 6%;
  }
}

/*=========================
works 
=========================*/
.l-main {
  position: relative;
}

.works__bg-ttl {
  position: absolute;
  width: 290px;
  top: -50px;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .works__bg-ttl {
    top: -30px;
    right: auto;
    left: 0;
    width: 34%;
  }
}

.sec-w__ad__ttl h2 {
  position: relative;
  font-family: var(--font-ttl-jp);
  font-size: 100px;
  line-height: 1em;
  z-index: 9000;
}
@media screen and (max-width: 768px) {
  .sec-w__ad__ttl h2 {
    font-size: 40px;
    line-height: 1em;
    margin-top: 106px;
    z-index: 9900;
  }
}
.sec-w__ad__ttl--en {
  position: absolute;
  top: 20px;
  left: 25%;
  font-family: var(--font-en);
  font-size: 86px;
  color: var(--main-color);
  font-weight: var(--font-weight-M);
  letter-spacing: -0.02em;
  line-height: 1em;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .sec-w__ad__ttl--en {
    left: 0;
    font-size: 50px;
    top: 0;
  }
}

.sec-w__vis__ttl h2 {
  position: relative;
  font-family: var(--font-ttl-jp);
  font-size: 100px;
  line-height: 1em;
  z-index: 9000;
}
@media screen and (max-width: 768px) {
  .sec-w__vis__ttl h2 {
    font-size: 40px;
    line-height: 1em;
    margin-top: 50px;
    z-index: 9900;
  }
}
.sec-w__vis__ttl--en {
  position: absolute;
  top: 20px;
  left: 25%;
  font-family: var(--font-en);
  font-size: 86px;
  color: var(--main-color);
  font-weight: var(--font-weight-M);
  letter-spacing: -0.02em;
  line-height: 1em;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .sec-w__vis__ttl--en {
    left: 0;
    font-size: 50px;
    top: 0;
  }
}

.sec-w__web__ttl h2 {
  position: relative;
  font-family: var(--font-ttl-jp);
  font-size: 110px;
  line-height: 1em;
  z-index: 9000;
}
@media screen and (max-width: 768px) {
  .sec-w__web__ttl h2 {
    font-size: 40px;
    line-height: 1em;
    margin-top: 110px;
  }
}
.sec-w__web__ttl--en {
  position: absolute;
  top: 20px;
  left: 32%;
  font-family: var(--font-en);
  font-size: 86px;
  color: var(--main-color);
  font-weight: var(--font-weight-M);
  letter-spacing: -0.02em;
  line-height: 1em;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .sec-w__web__ttl--en {
    font-size: 50px;
    left: 0;
    top: 0px;
  }
}

.sec-w {
  height: 1100px;
  position: relative;
  margin-left: 120px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .sec-w {
    height: auto;
    margin-left: 6%;
    margin-top: 160px;
  }
}

.sec-w__img {
  position: absolute;
  width: 916px;
  top: 70px;
  left: 34%;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .sec-w__img {
    left: 6%;
    top: 30px;
    border-radius: 2px;
    width: 400px;
    z-index: -1;
  }
}

.sec-w__txt-wrapper {
  position: relative;
  margin-left: 100px;
  width: 294px;
}
@media screen and (max-width: 768px) {
  .sec-w__txt-wrapper.ad_txt {
    margin-left: 0;
    margin-top: 280px;
  }
  .sec-w__txt-wrapper.vis_txt {
    margin-left: 0;
    margin-top: 320px;
  }
  .sec-w__txt-wrapper.web_txt {
    margin-left: 0;
    margin-top: 260px;
  }
}

.sec-w__txt {
  color: var(--main-color);
}
.sec-w__txt-ttl {
  font-family: var(--font-en);
  font-size: 26px;
  line-height: 1.4;
  position: relative;
  padding-left: 0.8em;
}
.sec-w__txt-ttl::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
}
.sec-w__txt-lead--en {
  font-family: var(--font-en);
  font-weight: var(--font-weight-B);
  font-size: 16px;
  line-height: 1.25;
  padding-left: 1.2em;
}
.sec-w__txt-lead--jp {
  font-size: 12px;
  margin-bottom: 24px;
  padding-left: 1.5em;
}

.sec-w__others {
  position: relative;
  margin-bottom: 400px;
}
@media screen and (max-width: 768px) {
  .sec-w__others {
    margin-bottom: 200px;
  }
}

.sec-w__others__bg__left {
  position: absolute;
  top: -40px;
  left: -40px;
}
@media screen and (max-width: 768px) {
  .sec-w__others__bg__left {
    left: 0;
  }
}

.sec-w__others__bg__right {
  position: absolute;
  bottom: -40px;
  right: -20px;
}
@media screen and (max-width: 768px) {
  .sec-w__others__bg__right {
    right: 0;
  }
}

.sec-w__others__txt-wrapper {
  position: relative;
  top: 100px;
  max-width: 920px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (max-width: 768px) {
  .sec-w__others__txt-wrapper {
    margin-top: 100px;
    width: auto;
    margin-inline: 6%;
    padding-inline: 6%;
  }
}

.sec-w__others__txt-ttl {
  font-size: 16px;
  font-weight: 200;
  font-family: var(--font-main);
  color: #7d7d7d;
  position: relative;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .sec-w__others__txt-ttl {
    font-size: 14px;
  }
}

.sec-w__others__txt-lead {
  font-size: 12px;
  font-weight: 200;
  font-family: var(--font-main);
  color: #7d7d7d;
  line-height: 1.5em;
  position: relative;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .sec-w__others__txt-lead {
    font-size: 12px;
  }
}

/*=========================
About profile
=========================*/
.about__bg-ttl {
  position: absolute;
  width: 290px;
  top: -50px;
  left: 50%;
  z-index: -10;
}
@media screen and (max-width: 768px) {
  .about__bg-ttl {
    top: -18px;
    right: auto;
    left: 0;
    width: 33.5%;
  }
}

.sec-about {
  position: relative;
  margin-left: 120px;
  overflow: hidden;
  margin-top: -80px;
}
@media screen and (max-width: 768px) {
  .sec-about {
    margin-left: 6%;
    margin-top: 130px;
  }
}

.sec-about__sns-cat {
  margin-left: 120px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .sec-about__sns-cat {
    margin-left: 6%;
  }
}

.sec-about__ttl h2 {
  font-family: var(--font-en);
  font-size: 86px;
  color: var(--main-color);
  font-weight: var(--font-weight-M);
  letter-spacing: -0.02em;
  line-height: 1em;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .sec-about__ttl h2 {
    font-size: 62px;
  }
}

.sec-about__img img {
  position: absolute;
  width: 386px;
  top: 100px;
  left: 0;
  border-radius: 300px;
  z-index: -10;
}
@media screen and (max-width: 768px) {
  .sec-about__img img {
    width: 180px;
    top: 80px;
  }
}

.sec-about__txt-wrapper {
  margin-left: 26%;
  margin-top: -40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "bio    person" "field  .";
}
@media screen and (max-width: 768px) {
  .sec-about__txt-wrapper {
    margin-top: 60px;
    margin-left: 26%;
    grid-template-columns: 1fr;
    gap: 80px;
    grid-template-areas: "bio" "person" "field";
  }
}

.sec-about__txt,
.sec-about__txt__person,
.sec-about__txt__field {
  display: grid;
  grid-template-columns: 100px minmax(300px, 400px);
  grid-template-rows: auto 1fr;
}
@media screen and (max-width: 768px) {
  .sec-about__txt,
  .sec-about__txt__person,
  .sec-about__txt__field {
    grid-template-columns: 50px minmax(280px, 400px);
  }
}

.sec-about__txt {
  grid-area: bio;
}

.sec-about__txt__person {
  grid-area: person;
  margin-top: 160px;
}
@media screen and (max-width: 768px) {
  .sec-about__txt__person {
    margin-top: 0;
    margin-left: -100px;
  }
}

.sec-about__txt__field {
  grid-area: field;
  margin-top: -380px;
}
@media screen and (max-width: 768px) {
  .sec-about__txt__field {
    margin-top: 0;
  }
}

.sec-about__txt-border,
.sec-about__txt__person-border,
.sec-about__txt__field-border {
  grid-column: 1/-1;
  max-width: 366px;
  height: 1px;
  background: #000;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .sec-about__txt-border,
  .sec-about__txt__person-border,
  .sec-about__txt__field-border {
    width: 260px;
  }
}

.sec-about__txt-ttl,
.sec-about__txt__person-ttl,
.sec-about__txt__field-ttl {
  grid-column: 1;
  grid-row: 2;
  font-family: var(--font-ttl-jp);
  font-size: 80px;
  margin-left: -20px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 100;
}
@media screen and (max-width: 768px) {
  .sec-about__txt-ttl,
  .sec-about__txt__person-ttl,
  .sec-about__txt__field-ttl {
    font-size: 40px;
    margin-left: -8px;
  }
}

.sec-about__txt-lead-wrapper,
.sec-about__txt__person-lead-wrapper,
.sec-about__txt__field-lead-wrapper {
  grid-column: 2;
  grid-row: 2;
  max-width: 266px;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .sec-about__txt-lead-wrapper,
  .sec-about__txt__person-lead-wrapper,
  .sec-about__txt__field-lead-wrapper {
    margin-top: 40px;
    max-width: 220px;
  }
}

.sec-about__txt-lead--en,
.sec-about__txt__person-lead--en,
.sec-about__txt__field-lead--en {
  color: var(--main-color);
  font-family: var(--font-en);
  font-weight: var(--font-weight-B);
  font-size: 16px;
  line-height: 1.25;
}

.sec-about__txt-lead--jp,
.sec-about__txt__person-lead--jp,
.sec-about__txt__field-lead--jp {
  color: var(--main-color);
  font-size: 12px;
  margin-top: 4px;
}

.sec-about__deco-wrapper {
  display: flex;
  gap: 20px;
  margin-left: -45px;
  margin-top: 160px;
}
@media screen and (max-width: 768px) {
  .sec-about__deco-wrapper {
    gap: 10px;
    margin-left: -25px;
  }
}

.sec-about__deco {
  margin-top: -400px;
  border-radius: 50%;
  background-color: #fff;
  width: 90px;
  height: 90px;
}
@media screen and (max-width: 768px) {
  .sec-about__deco {
    margin-top: -100px;
    width: 50px;
    height: 50px;
  }
}

/*=========================
About SNS
=========================*/
.sec-about__sns {
  margin-inline: auto;
  margin-top: 20px;
  margin-bottom: 200px;
  display: grid;
  grid-template-columns: 490px 1fr; /* 左：大、右：小2枚エリア */
  -moz-column-gap: 40px;
       column-gap: 40px;
  align-items: start;
}
@media screen and (max-width: 768px) {
  .sec-about__sns {
    grid-template-columns: 1fr;
    row-gap: 20px;
    margin-right: 6%;
  }
}
.sec-about__sns p {
  font-family: var(--font-en);
  font-size: 16px;
  margin-top: 4px;
}

.sec-about__sns-lage img {
  width: 100%; /* 親カラム幅に合わせる */
  border-radius: 10px;
}

.sec-about__sns-small {
  display: grid;
  grid-template-columns: repeat(2, 280px);
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .sec-about__sns-small {
    grid-template-columns: repeat(2, 47%);
    gap: 20px;
  }
}
.sec-about__sns-small-box img {
  width: 100%;
  border-radius: 10px;
}

/*=========================
works_パスワード保護ページ 
=========================*/
.l-main {
  position: relative;
}

.works__bg-ttl {
  position: absolute;
  width: 290px;
  top: -50px;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .works__bg-ttl {
    top: -18px;
    right: auto;
    left: 0;
    width: 33.5%;
  }
}

.sec-cnf {
  position: relative;
  margin-inline: 80px;
  margin-top: 220px;
}
@media screen and (max-width: 768px) {
  .sec-cnf {
    height: auto;
    margin: 6%;
    margin-top: 80px;
  }
}

.cnf-ttl {
  font-size: 30px;
  color: var(--main-color);
  font-family: var(--font-en);
  margin-left: 80px;
  margin-top: -200px;
}
@media screen and (max-width: 768px) {
  .cnf-ttl {
    font-size: 24px;
    margin-left: 6%;
    margin-top: -290px;
  }
}
.cnf-ttl img {
  width: 20px;
  padding-bottom: 14px;
  margin-right: 8px;
}
@media screen and (max-width: 768px) {
  .cnf-ttl img {
    width: 18px;
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 768px) {
  .sec-cnf__card {
    margin-top: 200px;
  }
}

.sec-cnf__card--list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px 60px;
}
@media screen and (max-width: 768px) {
  .sec-cnf__card--list {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
  }
}

.cnf-card img {
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .cnf-card img {
    border-radius: 6px;
  }
}

.cnf-card__txt {
  margin-top: 8px;
  font-size: 12px;
  font-weight: var(--font-weight-M);
  line-height: 1.5em;
}

.cnf-card--large {
  grid-row: 2/4;
  grid-column: 1/3;
}

.sec-cnf__ttl {
  z-index: 9900;
  grid-row: 1/3;
  grid-column: 1/3;
}
.sec-cnf__ttl h2 {
  font-family: var(--font-ttl-jp);
  font-size: 40px;
  line-height: 1em;
  z-index: 9000;
}
@media screen and (max-width: 768px) {
  .sec-cnf__ttl h2 {
    font-size: 30px;
    line-height: 1em;
    z-index: 9900;
  }
}
.sec-cnf__ttl--en {
  font-family: var(--font-en);
  font-size: 82px;
  color: #fff;
  font-weight: var(--font-weight-M);
  letter-spacing: -0.02em;
  line-height: 1em;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .sec-cnf__ttl--en {
    left: 0;
    font-size: 50px;
    top: 0;
  }
}

.cnf-card--large--vis-right {
  grid-row: 1/3;
  grid-column: 2/4;
}
@media screen and (max-width: 768px) {
  .cnf-card--large--vis-right {
    padding-top: 200px;
    grid-column: 1/2;
  }
}

.cnf-card--large--vis-left {
  grid-row: 3/5;
  grid-column: 1/3;
}

.cnf-card--web img {
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .cnf-card--web img {
    border-radius: 2px;
  }
}

.sec-cnf__ttl--web {
  z-index: 9900;
  grid-column: 1/3;
}
.sec-cnf__ttl--web h2 {
  font-family: var(--font-ttl-jp);
  font-size: 40px;
  line-height: 1em;
  z-index: 9000;
}
@media screen and (max-width: 768px) {
  .sec-cnf__ttl--web h2 {
    font-size: 30px;
    line-height: 1em;
    z-index: 9900;
  }
}
.sec-cnf__ttl--web--en {
  font-family: var(--font-en);
  font-size: 82px;
  color: #fff;
  font-weight: var(--font-weight-M);
  letter-spacing: -0.02em;
  line-height: 1em;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .sec-cnf__ttl--web--en {
    left: 0;
    font-size: 50px;
    top: 0;
  }
}

.works-footer {
  margin-top: 260px;
}/*# sourceMappingURL=style.css.map */