@charset "utf-8";

/* ======================================
   Root Variables
====================================== */
:root {
  --vw: 1vw;
  --font-main: "Noto Sans JP", sans-serif;
  --font-en: "Noto Serif JP", serif;
}

/* ======================================
   Base
====================================== */
html {
  font-size: clamp(6px, 0.5208vw, 10px); /* 1920pxで10px */
  margin: 0;
}

body {
  font-family: var(--font-main);
}

a {
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}

/* ======================================
   Layout Utility
====================================== */
.w1344,
.w1152,
.w1154,
.w1728 {
  width: 95%;
  margin: auto;
}
.w1344 { max-width: 1344px; }
.w1152 { max-width: 1152px; }
.w1154 { max-width: 1154px; }
.w1728 { max-width: 1728px; }

.pc-hidden { display: none; }
.sp-hidden { display: block; }

body.no-scroll {
  overflow: hidden;
  height: 100%;
}

.flex { display: flex; }
.flex-reverse { flex-direction: row-reverse; }

.w100vw {
  width: calc(var(--vw) * 100);
  margin-left: calc(calc(var(--vw) * -50) + 50%);
}

/* ======================================
   Animation Utility
====================================== */
.--delay01 { animation-delay: .1s; }
.--delay02 { animation-delay: .2s; }
.--delay03 { animation-delay: .3s; }
.--delay04 { animation-delay: .4s; }
.--delay05 { animation-delay: .5s; }
.--delay06 { animation-delay: .6s; }
.--delay07 { animation-delay: .7s; }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ======================================
   Button
====================================== */
.btn {
  max-width: 184px;
  width: 100%;
  height: 39px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  background-color: #FFF;
  position: relative;
  cursor: pointer;
  overflow: visible;
}
.btn.white {
  background-color: transparent;
  border: 1px solid #FFF;
}

/* 背景 */
.btn__bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}
.btn__bg {
  position: absolute;
  inset: 0;
  background: #000;
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn.white .btn__bg { background: #FFF; }
.btn:hover .btn__bg { transform: translateX(0); }

/* テキスト */
.btn p {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 16px;
  color: #000;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}
.btn.white p { color: #FFF; }
.btn:hover p { color: #FFF; }
.btn.white:hover p { color: #000; }

/* 菱形 */
.btn__diamond {
  position: absolute;
  left: 93%;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 26px;
  height: 26px;
  background-color: #000;
  border: 2px solid #FFF;
  transform: rotate(45deg);
  z-index: 3;
  transition: background-color 0.3s ease, border 0.3s ease;
}
.btn:hover .btn__diamond {
  background-color: #FFF;
  border-color: #FFF;
}
.btn.white .btn__diamond {
  background-color: #FFF;
  border-color: #000;
}
.btn.white:hover .btn__diamond {
  background-color: #000;
  border-color: #000;
}

/* Works ボタン */
.btn.works {
  height: 74px;
  max-width: 237px;
  margin: 43px auto 0;
  padding-left: 39px;
  justify-content: flex-start;
}
.btn.works p { font-size: 19px; }
.btn.works .btn__diamond {
  width: 52px;
  height: 52px;
  left: 89%;
}

/* Contact ボタン */
.btn.contact {
  max-width: 482px;
  height: 91px;
  padding: 0 0 0 40px;
  gap: 25px;
  justify-content: flex-start;
  margin: auto;
}
.btn.contact .btn__icon {
  width: 13px;
  height: 20px;
}
.btn.contact p { font-size: 24px; }
.btn.contact img {
  width: 37px;
  z-index: 10;
}
.btn.contact .btn__diamond {
  width: 64px;
  height: 64px;
  left: 93%;
}
.btn.contact:hover { border: 1px solid #FFF; }
.btn.contact:hover img { filter: invert(1); }

/* 矢印 */
.btn__icon {
  position: absolute;
  right: -7px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 13px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='13' viewBox='0 0 8.287 13.653'><path d='M0,5.171l5.873,5.791L0,16' transform='translate(1.414 -3.757)' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/></svg>") no-repeat center;
  background-size: contain;
  z-index: 4;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.btn.white .btn__icon {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='13' viewBox='0 0 8.287 13.653'><path d='M0,5.171l5.873,5.791L0,16' transform='translate(1.414 -3.757)' fill='none' stroke='%23FFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/></svg>") no-repeat center;
}

/* ======================================
   Section Title
====================================== */
.sec__title { margin-bottom: 66px; }
.sec__title.has-subtext {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sec__title.has-subtext img { width: 34px; }
.sec__title.has-subtext .sec__text-main { gap: 16px; }
.sec__title.has-subtext .sec__text-main .main {
  font-size: 52px;
  line-height: 75px;
}
.sec__title.has-subtext .sec__text-sub {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 16px;
  line-height: 23px;
  color: #000;
  margin-left: 50px;
}
.sec__title.has-subtext.white img { filter: invert(1); }
.sec__title.has-subtext.white .sec__text-main .main,
.sec__title.has-subtext.white .sec__text-sub { color: #FFF; }

.sec__text-main {
  display: flex;
  align-items: center;
  gap: 16px;
}
.sec__text-main.tate {
  flex-direction: column;
  justify-content: center;
  gap: 13px;
}
.sec__text-main.tate .main {
  writing-mode: vertical-lr;
  letter-spacing: 0.3em;
}
.sec__text-main img { width: 33px; }
.sec__text-main .main {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 20px;
  color: #000;
}
.sec__text-sub {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 20px;
  line-height: 43px;
  color: #000;
}
.sec__lead {
  margin-bottom: 64px;
  font-family: var(--font-en);
  font-weight: bold;
  font-size: 16px;
  line-height: 32px;
  color: #000;
}
.sec__lead.w543 {
  max-width: 543px;
  width: 100%;
}

/* ======================================
   下層ヘッダー
====================================== */
.page-fv {
  background: url(/system_panel/uploads/images/20250915104548800735.jpg) no-repeat center/cover;
}
.page-fv .inner,
.breadlist .inner {
  max-width: 1152px;
  width: 90%;
  margin: auto;
  padding: 86px 0;
}
.page-fv .page-title {
  color: #FFF;
  display: flex;
  gap: 30px;
}
.page-fv .page-title .sec__text-main img { filter: invert(1); }
.page-fv .page-title .sec__text-main .main {
  font-size: 52px;
  color: #FFF;
}
.page-fv .page-title .sec__text-sub {
  font-size: 16px;
  color: #FFF;
  margin-top: 37px;
}

/* パンくず */
.breadlist .inner {
  padding-top: 9px;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  gap: 1em;
}
.breadlist .inner a,
.breadlist .inner p {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 18px;
  color: #000;
}

/* ======================================
   Section Heading
====================================== */
.sec-heading {
  display: flex;
  align-items: center;
  gap: 15px;
}
.sec-heading .main {
  font-family: var(--font-en);
  font-weight: 800;
  line-height: 29px;
  font-size: 24px;
  color: #000;
}
.sec-heading.tate {
  flex-direction: column;
  gap: 13px;
}
.sec-heading.tate .main {
  letter-spacing: 0.4em;
  writing-mode: vertical-rl;
}

/* ======================================
   Media Queries
====================================== */
@media screen and (max-width: 1024px) {
  .page-fv {
    background: url(/system_panel/uploads/images/20250918001524570961.jpg) no-repeat center/cover;
  }
}

@media screen and (max-width: 767px) {
  .sp-hidden { display: none; }
  .pc-hidden { display: block; }

  html { font-size: calc(100vw / 390); }

  .page-fv .inner {
    max-width: 350rem;
    padding: 32rem 0 40rem;
  }
  .page-fv .page-title {
    flex-direction: column;
    gap: 0;
  }
  .page-fv .page-title .sec__text-main .main { font-size: 39px; }
  .page-fv .page-title .sec__text-sub {
    font-size: 12px;
    margin-top: 0;
    margin-left: 38px;
  }

  .sec__text-main img {
    width: 25px;
    height: auto;
  }

  .breadlist .inner { padding-top: 11px; }
  .breadlist .inner a,
  .breadlist .inner p { font-size: 12px; }

  .btn.contact {
    max-width: 285rem;
    height: 53rem;
    padding: 0 0 0 13rem;
    gap: 16rem;
    justify-content: flex-start;
    margin-left: 0;
    margin-right: auto;
  }
  .btn.contact img { width: 24rem; }
  .btn.contact .btn__diamond {
    width: 38rem;
    height: 38rem;
    left: 93%;
    border: 3rem solid #FFF;
  }
  .btn.contact p { font-size: 16rem; }

  .w1152,
  .w1154 {
    max-width: 312rem;
    width: 100%;
  }
}


.gjs-dashed {
  .p_header {
    transform: translateY(0)!important;
    opacity: 1!important;
}
}