@charset "UTF-8";
/*ALL Settings*/
:root {
  --black: #111;
  --white: #f8f8f8;
  --mid: #aaaaaa;
  --light: #c0c0c0;
  --border: #e4e4e4;
  --border-d: #d0d0d0;
}

/* ==========================
   Reset / Base
========================== */
html {
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
  height: 100%;
}

*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  height: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  cursor: auto;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
  border-style: none;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
  line-height: 1.2;
  margin: 0;
}

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

[hidden] {
  display: none !important;
}

/****************************************

          General Setting

*****************************************/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

html, body {
  height: 100%;
}

body {
  height: 100%;
  background: #fff;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  transition: all 0.5s;
}

.wrap {
  position: relative;
  min-height: 100%;
  line-height: 1.8;
  overflow: hidden;
  z-index: 1;
}

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

img {
  max-width: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  line-height: 0;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

img.responsiveimg {
  width: 100%;
  height: auto;
}

img.round {
  border-radius: 3rem !important;
}

.flex-nowrap {
  display: flex;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.justify-content-start {
  justify-content: flex-start;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.align-items-center {
  align-items: center;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

.align-items-center {
  align-items: center;
}

.content--body {
  position: relative;
  padding-left: 3rem;
  padding-right: 3rem;
  max-width: 1280px;
  min-height: 100dvh;
  margin: 0 auto;
}

.content--box {
  padding-left: 3rem;
  padding-right: 3rem;
  width: 100%;
  margin: 0 auto;
  max-width: 1280px;
}

.content--small {
  padding-left: 3rem;
  padding-right: 3rem;
  width: 100%;
  margin: 0 auto;
  max-width: 992px;
}

.content--nomg {
  width: 100%;
  margin: 0 auto;
}

.right, .left {
  width: calc(50% - 30px);
}

.listbox {
  margin-right: -30px;
}

.w-3 {
  width: calc(33.3333333333% - 30px);
  margin-right: 30px;
  margin-bottom: 30px;
}

.w-4 {
  width: calc(25% - 30px);
  margin-right: 30px;
  margin-bottom: 30px;
}

.mgt-1 {
  margin-top: 1.5rem !important;
}

.mgt-3 {
  margin-top: 3rem !important;
}

.mgt-6 {
  margin-top: 10rem !important;
}

.mgb-1 {
  margin-bottom: 1.5rem !important;
}

.mgb-3 {
  margin-bottom: 3rem !important;
}

.mgb-6 {
  margin-bottom: 10rem !important;
}

p {
  font-size: 1.6rem;
  line-height: 1.6;
}
p.large {
  font-size: 2rem;
}
p a {
  text-decoration: underline;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.loading {
  width: 100vw;
  height: 100dvh;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.loading img {
  width: 20%;
}

.marker {
  background-image: linear-gradient(90deg, #fff000, #fff000);
  background-position: left bottom; /* 線の起点を左・下に設定 */
  background-repeat: no-repeat;
  background-size: 0 5px; /* 線の横幅を0、縦幅を0.5emに */
  padding-bottom: 1.2rem; /* 下線を下にズラす */
  transition: background-size 1.5s; /* 線を伸ばすアニメーション実行時間を指定 */
}
.marker.active {
  background-size: 100% 5px; /* 線の横幅を100%にする */
}

.v_marker {
  background-image: linear-gradient(90deg, #000, #000);
  background-position: top center; /* 線の起点を左・下に設定 */
  background-repeat: no-repeat;
  background-size: 3px 0; /* 線の横幅を0、縦幅を0.5emに */
  padding-bottom: 1.6rem; /* 下線を下にズラす */
  transition: background-size 1s; /* 線を伸ばすアニメーション実行時間を指定 */
}
.v_marker.active {
  background-size: 3px 100%; /* 線の横幅を100%にする */
}

.centerline {
  display: block;
  width: 3px;
  height: 100%;
  margin: 0 auto;
}

.w-80 {
  width: 80%;
  margin: 0 auto;
}

.w-70 {
  width: 70%;
  margin: 0 auto;
}

.w-60 {
  width: 60%;
  margin: 0 auto;
}

.w-50 {
  width: 50%;
  margin: 0 auto;
}

.w-100 {
  width: 100%;
  margin: 0 auto;
}

hr {
  background-color: rgb(0, 0, 0);
  border: none;
  box-shadow: 0 5px 0 rgb(0, 0, 0);
  height: 1px;
  margin: 0 0 5px;
}

@media screen and (max-width: 850px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .content--body {
    padding: 0 1rem;
  }
  .content--box {
    padding: 0 1.5rem;
  }
  .right, .left {
    width: 100%;
  }
  .right {
    margin-top: 3rem;
  }
  .listbox {
    margin-right: -15px;
  }
  .w-3, .w-4 {
    width: calc(50% - 15px);
    margin-right: 15px;
    margin-bottom: 15px;
  }
  .mgt-1 {
    margin-top: 1.5rem !important;
  }
  .mgt-3 {
    margin-top: 3rem !important;
  }
  .mgt-6 {
    margin-top: 5rem !important;
  }
  .mgb-1 {
    margin-bottom: 1.5rem !important;
  }
  .mgb-3 {
    margin-bottom: 3rem !important;
  }
  .mgb-6 {
    margin-bottom: 5rem !important;
  }
  .loading img {
    width: 30%;
  }
  .w-80 {
    width: 100%;
    margin: 0 auto;
  }
  .w-70 {
    width: 100%;
    margin: 0 auto;
  }
  .w-60 {
    width: 100%;
    margin: 0 auto;
  }
  .w-50 {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1919px) {
  .content--box {
    padding-left: 3rem;
    padding-right: 3rem;
    width: 100%;
    margin: 0 auto;
    max-width: 1366px;
  }
  .content--small {
    padding-left: 3rem;
    padding-right: 3rem;
    width: 100%;
    margin: 0 auto;
    max-width: 1243px;
  }
}
/****************************************

          CONTENTS

*****************************************/
.text-body {
  font-size: clamp(1.3rem, 1.2vw, 1.6rem); /* 14–16px */
  line-height: 1.7;
}

.text-small {
  font-size: clamp(1.3rem, 1vw, 1.4rem); /* 12–14px */
  line-height: 1.6;
}

.text-sub {
  font-size: clamp(1.6rem, 1.6vw, 2.1rem); /* 17–21px */
  line-height: 1.4;
}

.text-title {
  font-size: clamp(1.8rem, 2vw, 2.6rem); /* 21–26px */
  line-height: 1.4;
}

.text-kv {
  font-size: clamp(1.8rem, 3vw, 3rem); /* 26–38px */
  line-height: 1.4;
}

.text-hero {
  font-size: clamp(2.4rem, 2.4vw, 5rem);
  line-height: 1.4;
}

.text-bold {
  font-weight: 700;
}

header {
  position: fixed !important;
}

header.scroll {
  filter: invert(1) !important;
  background: transparent !important;
  mix-blend-mode: difference;
}

.head {
  padding-top: clamp(100px, 30vh, 100px);
  padding-bottom: clamp(50px, 20vh, 100px);
}
.head h1 {
  font-weight: 500;
  font-family: "Akshar", sans-serif;
}

.l-project-wrap {
  background: #f6f6f6 !important;
}

.kv-section {
  width: 100%;
  overflow: hidden;
}

.kv-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.kv-wrap img {
  width: 100%;
  display: block;
  object-position: center center;
}

.content-base {
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 64px);
}

.content--text {
  max-width: 840px;
}

.content--img {
  max-width: 1200px;
}

.caption h2 {
  margin: 6rem 0;
}
.caption h2 img.icon {
  width: 15%;
  margin: 0 auto 1.5rem;
}
.caption p.captionhead {
  text-align: center;
}

.interviewarea {
  margin: 6rem 0;
}

.interview {
  text-align: justify;
}

.interview-q {
  display: flex;
  gap: 0.6em;
  margin: 3rem 0;
  color: #222;
}

.interview-q::before {
  content: "──";
  flex-shrink: 0;
  color: #222;
}

.interview-a {
  color: #000;
  font-weight: 500;
}

.photoarea {
  padding: 6rem 0 0;
}
.photoarea.profilearea {
  margin: 6rem 0;
  padding-bottom: 6rem;
}

.image-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 24px);
}

.image-item {
  overflow: hidden;
}

.image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.image-pair .is-left {
  grid-column: 1;
  grid-row: 1;
}
.image-pair .is-right {
  grid-column: 2;
  grid-row: 1;
  margin-top: clamp(100px, 25vw, 300px);
}
.image-pair .is-center {
  grid-column: 1/3;
  grid-row: 2;
  justify-self: center;
  width: 50%;
}
.image-pair .is-list {
  grid-column: 1/3;
  grid-row: 3;
  justify-self: center;
  width: 50%;
}
.image-pair--lr {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.image-pair--lr .is-left {
  width: 60%;
  align-self: flex-start;
}
.image-pair--lr .is-right {
  width: 60%;
  align-self: flex-end;
  margin-top: 0;
}
.image-pair--lr .is-list {
  align-self: center;
  width: 50%;
}
.image-pair--stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.image-pair--stack .is-center {
  all: unset;
  width: 50%;
}
.image-pair--stack .is-wide {
  width: 80%;
}
.image-pair--stack .is-wide .item-list {
  width: 62.5%;
  margin-inline: auto;
}
.image-pair--mixed {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.image-pair--mixed .is-center {
  all: unset;
  width: 50%;
}
.image-pair--mixed .is-row {
  display: flex;
  gap: 20px;
  width: 100%;
}
.image-pair--mixed .is-row > div {
  flex: 1;
}
.image-pair--mixed .is-list {
  width: 50%;
}

.item-list {
  margin-top: 0;
  width: 100%;
}
.item-list li {
  padding: 1.5rem 0;
}
.item-list li a {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.item-list .item-thumb {
  flex-shrink: 0;
  width: 10rem;
  height: auto;
  overflow: hidden;
}
.item-list .item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item-list .item-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.item-list .item-name {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
.item-list .item-price {
  font-size: 1.3rem;
  color: var(--mid);
}

.photoarea.lastarea {
  margin: 0 0 6rem;
}

img.w70 {
  width: 70%;
}

img.w60 {
  width: 60%;
}

img.w40 {
  width: 40%;
}

img.w40-one {
  width: 40%;
}

.last-section {
  padding: 6rem 5vw 0;
  overflow: hidden;
}

.last-wrap {
  width: 100%;
  height: 100dvh;
  position: relative;
  overflow: hidden;
}

.last-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: 50% 10%;
}
.last-wrap img.five {
  object-position: 50% 50%;
}

.profile {
  margin-top: 3rem;
  width: 100%;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.profile-name {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.profile-name-ja {
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
}

.profile-insta {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: inherit;
  transition: opacity 0.2s;
}
.profile-insta svg {
  width: 3rem;
  height: 3rem;
}
.profile-insta:hover {
  opacity: 0.6;
}

.profile-text {
  line-height: 1.8;
}

.page-top-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 56px;
  height: 56px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
}

/* 円の線 */
.page-top-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1.5px solid #fff;
  border-radius: 50%;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

/* 矢印 */
.page-top-btn .arrow {
  width: 14px;
  height: 14px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: translateY(1px) rotate(45deg);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

/* hover */
.page-top-btn:hover::before {
  background-color: #fff;
}

.page-top-btn:hover .arrow {
  border-color: #000;
}

a.viewmore {
  display: block;
  width: 50%;
  padding: 1.5rem 0;
  background-color: #111;
  color: #fff;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 9999px;
  box-sizing: border-box;
  margin: 6rem auto 0;
  transition: opacity 0.2s;
}
a.viewmore:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .line {
    display: block;
  }
  .last-section {
    padding-top: 9rem;
  }
  .photoarea.lastarea {
    margin: 3rem 0;
  }
  .content--img {
    padding-inline: 4rem;
  }
  .image-pair {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }
  .image-pair .is-left,
  .image-pair .is-right,
  .image-pair .is-center {
    width: 100%;
    margin-top: 0;
    grid-column: unset;
    grid-row: unset;
    justify-self: unset;
  }
  .image-pair--lr .is-left {
    width: calc(80% + 4rem);
    margin-left: -4rem;
    align-self: flex-start;
  }
  .image-pair--lr .is-right {
    width: calc(80% + 4rem);
    margin-right: -4rem;
    align-self: flex-end;
  }
  .image-pair--lr .is-list {
    align-self: center;
    width: 100%;
  }
  .image-pair--2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .image-pair--stack .is-wide {
    width: 100%;
  }
  .image-pair--mixed .is-list {
    width: 100%;
  }
  .image-pair--stack .is-wide .item-list {
    width: 100%;
  }
  img.w70 {
    width: 80%;
  }
  img.w60 {
    width: 80%;
  }
  img.w40 {
    width: 50%;
  }
  img.w40-one {
    width: 60%;
  }
  a.viewmore {
    display: block;
    width: 100%;
  }
}
/* ==============================
   Footer
============================== */
footer {
  position: unset;
}

.footer-upper {
  padding: 6rem 0 0;
  background: #fff;
  text-align: center;
}

.footer-logo {
  margin-bottom: 3rem;
}
.footer-logo img {
  width: 20rem;
  height: auto;
  margin: 0 auto;
}

.footer_sns {
  gap: 2.4rem;
  margin-bottom: 4rem;
}
.footer_sns li a {
  font-size: 2.2rem;
  color: #111;
  transition: opacity 0.2s;
}
.footer_sns li a:hover {
  opacity: 0.6;
}

.footer-banners {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.footer-banners li {
  width: 25%;
}
.footer-banners a {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}
.footer-banners a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.3s;
}
.footer-banners a:hover::after {
  background: rgba(0, 0, 0, 0.1);
}
.footer-banners > li > a > span {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  font-size: clamp(1.3rem, 1.2vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}
.footer-banners > li > a > span img {
  height: auto;
  filter: brightness(0) invert(1);
}
.footer-banners > li > a > span span {
  font-size: clamp(1rem, 0.8vw, 1.2rem);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.footer-lower {
  padding: 5rem 0 3rem;
  background: #082f26;
  text-align: center;
}
.footer-lower .footer-logo--white img {
  filter: brightness(0) invert(1);
}

.footer-nav {
  margin-bottom: 2.4rem;
}
.footer-nav ul {
  gap: 0.4rem 2.4rem;
}
.footer-nav li a {
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 0.08em;
  transition: opacity 0.2s;
}
.footer-nav li a:hover {
  opacity: 0.6;
}

.footer-copy {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

@media screen and (max-width: 850px) {
  .footer-banners li {
    width: 50%;
  }
  .footer_sns {
    gap: 2rem;
  }
  .footer-nav ul {
    gap: 0.8rem 1.6rem;
  }
}/*# sourceMappingURL=style.css.map */