@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Maru+Gothic&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+Antique:wght@300;400;500;700;900&display=swap");
:root {
  --grad-progress: 0;
  --intro-progress: 0;
  --g-padding-s: 40px;
  --g-padding-m: 120px;
  --g-padding-l: 152px;
  --g-color-base: #ECECEC;
  --g-color-bg: #F4F5F7;
  --g-color-red: #EF626B;
  --g-color-orange: #E27A1E;
  --g-color-black: #131514;
  --g-color-blue: #00A0E9;
  --g-color-white: #fff;
  --g-color-border: #707070;
}
@media screen and (max-width: 1500px) {
  :root {
    --g-padding-s: 40rem;
    --g-padding-m: 120rem;
    --g-padding-l: 152rem;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --g-padding-s: 0;
    --g-padding-m: 0;
    --g-padding-l: 0;
  }
}

:root {
  --bg: #121212;
  --bg-2: #262626;
  --card: #16161f;
  --card-2: #1c1c28;
  --line: rgba(255, 255, 255, .08);
  --txt: #f4f4f7;
  --muted: #9a9ab0;
  --gold: #856D51;
  --gold-2: #504231;
  --gold-3: #f1cb77;
  --gold-text: #e8c870;
  --purple: #7c5cff;
  --purple-2: #b28bff;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(0, 0, 0, .45);
}

._b {
  font-weight: bold;
}

._m {
  font-weight: 500;
}

._n {
  font-weight: normal;
}

.c-font-xs {
  font-size: 12rem;
  letter-spacing: 0.05em;
}

.c-font-s {
  font-size: 16rem;
  font-weight: 500;
  line-height: 1.4;
}

.c-font-m {
  font-size: 25rem;
  line-height: 2;
  letter-spacing: 0.05em;
}

.c-font-l {
  font-size: 45rem;
  font-weight: 500;
  line-height: 90rem;
  letter-spacing: 0.05em;
}

.c-font-xl {
  font-size: 120rem;
  font-weight: normal;
  line-height: 1.2;
}

@media (max-width: 768px) {
  ._pc {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  ._tablet {
    display: none !important;
  }
}
@media (min-width: 768px) {
  ._sp {
    display: none !important;
  }
}
.smooth-scroll {
  height: 100vh;
  width: 100%;
}

.scrollbar-track {
  display: none !important;
}

html.has-scroll-smooth {
  overflow: hidden;
}

html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

[data-scroll-container] {
  overflow: hidden !important;
}

.has-scroll-smooth body {
  overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
}

.c-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 11rem;
  height: 100vh;
  transform-origin: center right;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
}

.c-scrollbar:hover {
  transform: scaleX(1.45);
}

.c-scrollbar:hover,
.has-scroll-scrolling .c-scrollbar,
.has-scroll-dragging .c-scrollbar {
  opacity: 1;
}

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: black;
  opacity: 0.5;
  width: 7rem;
  border-radius: 10rem;
  margin: 2rem;
  cursor: grab;
}

.has-scroll-dragging .c-scrollbar_thumb {
  cursor: grabbing;
}

.cover-footer {
  z-index: 1;
}

body.is-loading .js-cursor {
  display: none;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*:focus {
  outline: none;
}

html {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  font-size: 1px;
}
@media screen and (max-width: 1500px) {
  html {
    font-size: 0.0666666667vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 0.2666666667vw;
  }
}
html::-webkit-scrollbar {
  display: none;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

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

::-moz-selection {
  background-color: #ccc;
}

::selection {
  background-color: #ccc;
}

body {
  overflow-wrap: break-word;
  width: 100%;
  min-height: 100%;
  line-height: 1.8;
  overflow-x: clip;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
  background: var(--bg);
  color: var(--txt);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-menu-active {
  overflow: hidden;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

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

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

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border: 0;
}

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

dl {
  padding: 0;
}

iframe {
  border-style: none;
}

.black a,
.black p {
  color: #000;
}

section {
  position: relative;
  overflow: hidden;
}

span {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: inherit;
}

body.mac-os .home-intro__ttl-icons-graphic {
  bottom: 1.9270833333vw !important;
}
body.mac-os .home-footer__intro .home-intro__ttl-icons-graphic {
  bottom: 0.2083333333vw !important;
}

.sec-ttl__wrap._show .sec-ttl span {
  transform: translateY(0);
}

.js-menu .c-menu {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.js-menu .c-menu span {
  position: relative;
  display: inline-block;
  line-height: 1;
  color: inherit;
}
@media screen and (max-width: 768px) {
  .js-menu .c-menu span {
    transform: unset !important;
  }
}
.js-menu .c-menu span::after {
  position: absolute;
  top: 0;
  left: 0;
  color: inherit;
  content: attr(data-text);
  transform: translateY(100%);
}
@media screen and (max-width: 768px) {
  .js-menu .c-menu span::after {
    content: unset;
  }
}

section {
  position: relative;
}

.forpc {
  display: block;
}
@media screen and (max-width: 768px) {
  .forpc {
    display: none;
  }
}

.forsp {
  display: none;
}
@media screen and (max-width: 768px) {
  .forsp {
    display: block;
  }
}

.container {
  max-width: 1100px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 1500px) {
  .container {
    max-width: 1100rem;
  }
}
@media screen and (max-width: 768px) {
  .container {
    max-width: 295rem;
  }
}

.h-container {
  max-width: 1200px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 1500px) {
  .h-container {
    max-width: 1200rem;
  }
}
@media screen and (max-width: 768px) {
  .h-container {
    max-width: 295rem;
  }
}

.s-container {
  max-width: 800px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 1500px) {
  .s-container {
    max-width: 800rem;
  }
}
@media screen and (max-width: 768px) {
  .s-container {
    max-width: 390rem;
  }
}

.sec-ttl {
  text-align: center;
}
.sec-ttl h2 {
  color: var(--g-color-white);
  font-size: 110px;
  letter-spacing: 0.05em;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  line-height: 1;
  overflow: hidden;
}
@media screen and (max-width: 1500px) {
  .sec-ttl h2 {
    font-size: 110rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-ttl h2 {
    line-height: 1.5;
    font-size: 58rem;
  }
}
.sec-ttl h2 span {
  display: block;
}
.sec-ttl h2 span._fadeup {
  transform: translateY(100%);
  opacity: 1;
}
.sec-ttl p {
  font-size: 18px;
  letter-spacing: 0.05em;
  color: var(--g-color-white);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .sec-ttl p {
    font-size: 14rem;
  }
}
.sec-ttl._blue h2, .sec-ttl._blue p {
  color: #00A0E9;
}

.parallax-img__wrap {
  position: relative;
}
.parallax-img__wrap .parallax-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130%;
}

.slide-auto-loop-wrap {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.slide-auto-loop-area {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  animation: loop-area 100s infinite linear;
}

@keyframes loop-area {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.slide-auto-loop-img {
  width: 520px;
  height: 400px;
}
@media screen and (max-width: 1500px) {
  .slide-auto-loop-img {
    width: 520rem;
    height: 400rem;
  }
}
@media screen and (max-width: 768px) {
  .slide-auto-loop-img {
    width: 417rem;
    height: 320rem;
  }
}
.slide-auto-loop-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slide-auto-loop-txt {
  font-size: 176px;
  letter-spacing: 0.05em;
  color: var(--g-color-white);
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  line-height: 1;
  text-wrap: nowrap;
  margin-right: 140px;
}
@media screen and (max-width: 1500px) {
  .slide-auto-loop-txt {
    margin-right: 140rem;
    font-size: 176rem;
  }
}
@media screen and (max-width: 768px) {
  .slide-auto-loop-txt {
    font-size: 74rem;
  }
}

.lower-ttl {
  height: 520px;
  position: relative;
  padding-top: 180px;
  text-align: center;
  background: url(../img/lower-ttl.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  margin-bottom: 120px;
}
@media screen and (max-width: 1500px) {
  .lower-ttl {
    margin-bottom: 120rem;
    height: 520rem;
    padding-top: 180rem;
  }
}
@media screen and (max-width: 768px) {
  .lower-ttl {
    margin-bottom: 60rem;
    height: 300rem;
    padding-top: 120rem;
  }
}
.lower-ttl h2 {
  font-size: 110px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-family: "Barlow", sans-serif;
  color: var(--g-color-white);
  font-weight: 500;
}
@media screen and (max-width: 1500px) {
  .lower-ttl h2 {
    font-size: 110rem;
  }
}
@media screen and (max-width: 768px) {
  .lower-ttl h2 {
    font-size: 58rem;
  }
}
.lower-ttl p {
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--g-color-white);
}
@media screen and (max-width: 768px) {
  .lower-ttl p {
    font-size: 16rem;
  }
}
.lower-ttl-deco img {
  position: absolute;
}
.lower-ttl-deco img:nth-child(1) {
  top: 96px;
  left: 46px;
  width: 330px;
}
@media screen and (max-width: 1500px) {
  .lower-ttl-deco img:nth-child(1) {
    top: 96rem;
    left: 46rem;
    width: 330rem;
  }
}
@media screen and (max-width: 768px) {
  .lower-ttl-deco img:nth-child(1) {
    top: 85rem;
    left: 20rem;
    width: 110rem;
  }
}
.lower-ttl-deco img:nth-child(2) {
  top: 298px;
  right: 70%;
  width: 162px;
}
@media screen and (max-width: 1500px) {
  .lower-ttl-deco img:nth-child(2) {
    top: 298rem;
    width: 162rem;
  }
}
@media screen and (max-width: 768px) {
  .lower-ttl-deco img:nth-child(2) {
    left: 0;
    right: auto;
    top: 228rem;
    width: 90rem;
  }
}
.lower-ttl-deco img:nth-child(3) {
  width: 400px;
  bottom: 56px;
  right: 0;
}
@media screen and (max-width: 1500px) {
  .lower-ttl-deco img:nth-child(3) {
    width: 400rem;
    bottom: 56rem;
  }
}
@media screen and (max-width: 768px) {
  .lower-ttl-deco img:nth-child(3) {
    width: 120rem;
    bottom: 36rem;
  }
}

.work-ctg-list {
  margin-bottom: 42px;
}
@media screen and (max-width: 1500px) {
  .work-ctg-list {
    margin-bottom: 42rem;
  }
}
@media screen and (max-width: 768px) {
  .work-ctg-list {
    margin-bottom: 20rem;
  }
}
.work-ctg-list-main {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 20px;
}
@media screen and (max-width: 1500px) {
  .work-ctg-list-main {
    padding-bottom: 20rem;
  }
}
.work-ctg-list ul {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 8px;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 1500px) {
  .work-ctg-list ul {
    gap: 8rem;
  }
}
.work-ctg-list li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 163px;
  height: 46px;
  border-radius: 100px;
  transition: all 0.4s ease-in-out;
  background: #F0F0F0;
  color: rgba(0, 0, 0, 0.2);
  letter-spacing: 0.05em;
  font-size: 16px;
  cursor: pointer;
}
@media screen and (max-width: 1500px) {
  .work-ctg-list li {
    width: 163rem;
    height: 46rem;
    font-size: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .work-ctg-list li {
    width: 120rem;
    height: 30rem;
    font-size: 12rem;
  }
}
.work-ctg-list li:hover {
  background: #00A0E9;
  color: var(--g-color-white);
}
.work-ctg-list li.active {
  background: #00A0E9;
  color: var(--g-color-white);
}
.work-ctg-list li.active:hover {
  opacity: 0.6;
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media screen and (max-width: 1500px) {
  .wrap {
    max-width: 1280rem;
    padding: 0 24rem;
  }
}
@media screen and (max-width: 768px) {
  .wrap {
    padding: 0 16rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 22px 42px;
  font-size: 14px;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  cursor: pointer;
  border: none;
}
@media screen and (max-width: 1500px) {
  .btn {
    gap: 8rem;
    padding: 22rem 42rem;
    font-size: 14rem;
  }
}
.btn-primary {
  color: #12100a;
  background: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-2);
}
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--txt);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

@font-face {
  font-family: "LINE Seed JP_TTF";
  src: url("../fonts/LINESeedJP_OTF_Bd.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "LINE Seed JP_TTF";
  src: url("../fonts/LINESeedJP_OTF_Eb.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "LINE Seed JP_TTF";
  src: url("../fonts/LINESeedJP_OTF_Rg.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "LINE Seed JP_TTF";
  src: url("../fonts/LINESeedJP_OTF_Th.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
html {
  font-family: "LINE Seed JP_TTF";
}

._bold {
  font-weight: 700;
}

.js-ttl,
.js-ttl-io {
  overflow: hidden;
  display: block;
  opacity: 0;
}
.js-ttl.show,
.js-ttl-io.show {
  opacity: 1;
}
.js-ttl > span,
.js-ttl-io > span {
  display: inline-flex;
  align-items: center;
}
.js-ttl > span span,
.js-ttl-io > span span {
  display: inline-block;
  transform: translate(0, 101%);
  transition: transform 1.2s cubic-bezier(0.32, 0.1, 0, 1);
}
.js-ttl > span span._delay._show,
.js-ttl-io > span span._delay._show {
  transform: translate(0);
}
.js-ttl > span span._delay._show:nth-of-type(1),
.js-ttl-io > span span._delay._show:nth-of-type(1) {
  transition-delay: 0s;
}
.js-ttl > span span._delay._show:nth-of-type(2),
.js-ttl-io > span span._delay._show:nth-of-type(2) {
  transition-delay: 0.1s;
}
.js-ttl > span span._delay._show:nth-of-type(3),
.js-ttl-io > span span._delay._show:nth-of-type(3) {
  transition-delay: 0.18s;
}
.js-ttl > span span._delay._show:nth-of-type(4),
.js-ttl-io > span span._delay._show:nth-of-type(4) {
  transition-delay: 0.26s;
}
.js-ttl > span span._delay._show:nth-of-type(5),
.js-ttl-io > span span._delay._show:nth-of-type(5) {
  transition-delay: 0.34s;
}
.js-ttl > span span._delay._show:nth-of-type(6),
.js-ttl-io > span span._delay._show:nth-of-type(6) {
  transition-delay: 0.42s;
}
.js-ttl > span span._delay._show:nth-of-type(7),
.js-ttl-io > span span._delay._show:nth-of-type(7) {
  transition-delay: 0.5s;
}
.js-ttl > span span._delay._show:nth-of-type(8),
.js-ttl-io > span span._delay._show:nth-of-type(8) {
  transition-delay: 0.58s;
}
.js-ttl > span span._delay._show:nth-of-type(9),
.js-ttl-io > span span._delay._show:nth-of-type(9) {
  transition-delay: 0.66s;
}
.js-ttl > span span._delay._show:nth-of-type(10),
.js-ttl-io > span span._delay._show:nth-of-type(10) {
  transition-delay: 0.74s;
}
.js-ttl > span span._delay._show:nth-of-type(11),
.js-ttl-io > span span._delay._show:nth-of-type(11) {
  transition-delay: 0.82s;
}
.js-ttl > span span._delay._show:nth-of-type(12),
.js-ttl-io > span span._delay._show:nth-of-type(12) {
  transition-delay: 0.9s;
}
.js-ttl > span span._delay._show:nth-of-type(13),
.js-ttl-io > span span._delay._show:nth-of-type(13) {
  transition-delay: 0.98s;
}
.js-ttl > span span._delay._show:nth-of-type(14),
.js-ttl-io > span span._delay._show:nth-of-type(14) {
  transition-delay: 1.06s;
}
.js-ttl > span span._delay._show:nth-of-type(15),
.js-ttl-io > span span._delay._show:nth-of-type(15) {
  transition-delay: 1.12s;
}
.js-ttl > span span._delay._show:nth-of-type(16),
.js-ttl-io > span span._delay._show:nth-of-type(16) {
  transition-delay: 1.2s;
}
.js-ttl > span span._delay._show:nth-of-type(17),
.js-ttl-io > span span._delay._show:nth-of-type(17) {
  transition-delay: 1.28s;
}
.js-ttl > span span._delay._show:nth-of-type(18),
.js-ttl-io > span span._delay._show:nth-of-type(18) {
  transition-delay: 1.36s;
}
.js-ttl > span span._delay._show:nth-of-type(19),
.js-ttl-io > span span._delay._show:nth-of-type(19) {
  transition-delay: 1.44s;
}
.js-ttl > span span._delay._show:nth-of-type(20),
.js-ttl-io > span span._delay._show:nth-of-type(20) {
  transition-delay: 1.52s;
}
.js-ttl > span span._delay._show:nth-of-type(21),
.js-ttl-io > span span._delay._show:nth-of-type(21) {
  transition-delay: 1.6s;
}
.js-ttl > span span._delay._show:nth-of-type(22),
.js-ttl-io > span span._delay._show:nth-of-type(22) {
  transition-delay: 1.68s;
}
.js-ttl > span span._delay._show:nth-of-type(23),
.js-ttl-io > span span._delay._show:nth-of-type(23) {
  transition-delay: 1.74s;
}
.js-ttl > span span._delay._show:nth-of-type(24),
.js-ttl-io > span span._delay._show:nth-of-type(24) {
  transition-delay: 1.82s;
}
.js-ttl > span span._delay._show:nth-of-type(25),
.js-ttl-io > span span._delay._show:nth-of-type(25) {
  transition-delay: 1.9s;
}
.js-ttl > span span._delay._show:nth-of-type(26),
.js-ttl-io > span span._delay._show:nth-of-type(26) {
  transition-delay: 1.98s;
}
.js-ttl > span span._delay._show:nth-of-type(27),
.js-ttl-io > span span._delay._show:nth-of-type(27) {
  transition-delay: 2.04s;
}
.js-ttl > span span._delay._show:nth-of-type(28),
.js-ttl-io > span span._delay._show:nth-of-type(28) {
  transition-delay: 2.12s;
}
.js-ttl > span span._delay._show:nth-of-type(29),
.js-ttl-io > span span._delay._show:nth-of-type(29) {
  transition-delay: 2.2s;
}
.js-ttl > span span._delay._show:nth-of-type(30),
.js-ttl-io > span span._delay._show:nth-of-type(30) {
  transition-delay: 2.28s;
}
.js-ttl > span span._show,
.js-ttl-io > span span._show {
  transform: translate(0, 0);
}

.js-io._fadeup {
  transform: translate(0, 36px);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.32, 0.1, 0, 1), opacity 1.2s cubic-bezier(0.32, 0.1, 0, 1), background 1.2s cubic-bezier(0.32, 0.1, 0, 1);
}
.js-io._fadetoup {
  transform: translate(0, 130%);
  transition: transform 1.2s cubic-bezier(0.32, 0.1, 0, 1), opacity 1.2s cubic-bezier(0.32, 0.1, 0, 1), background 1.2s cubic-bezier(0.32, 0.1, 0, 1);
}
.js-io._fadeleft {
  transform: translateX(100px) scale(1.1);
  transition: all 0.5s ease-in-out;
  visibility: hidden;
  filter: blur(10px);
  opacity: 0;
}
@media screen and (max-width: 1500px) {
  .js-io._fadeleft {
    transform: translateX(100rem) scale(1.1);
  }
}
@media screen and (max-width: 768px) {
  .js-io._fadeleft {
    transform: translateX(50rem) scale(1.1);
  }
}
.js-io._blur {
  transform: scale(1.1);
  transition: all 1s ease-in-out;
  visibility: hidden;
  filter: blur(10px);
  opacity: 0;
}
.js-io._fadein {
  transform: translateY(0);
  transition: all 1s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.js-io._zoomup {
  transform: scale(0.5);
  transition: all 1s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transition-timing-function: cubic-bezier(1, -0.195, 0, 1.33);
}
.js-io._show {
  transform: translate(0) scale(1);
  visibility: visible;
  filter: blur(0);
  opacity: 1;
}
.js-io._delay.--fadein {
  transform: translateY(0);
}
.js-io._delay._show {
  transform: translate(0) scale(1);
  visibility: visible;
  filter: blur(0);
  opacity: 1;
}
.js-io._delay._show:nth-of-type(1) {
  transition-delay: 0s;
}
.js-io._delay._show:nth-of-type(2) {
  transition-delay: 0.05s;
}
.js-io._delay._show:nth-of-type(3) {
  transition-delay: 0.09s;
}
.js-io._delay._show:nth-of-type(4) {
  transition-delay: 0.13s;
}
.js-io._delay._show:nth-of-type(5) {
  transition-delay: 0.17s;
}
.js-io._delay._show:nth-of-type(6) {
  transition-delay: 0.21s;
}
.js-io._delay._show:nth-of-type(7) {
  transition-delay: 0.25s;
}
.js-io._delay._show:nth-of-type(8) {
  transition-delay: 0.29s;
}
.js-io._delay._show:nth-of-type(9) {
  transition-delay: 0.33s;
}
.js-io._delay._show:nth-of-type(10) {
  transition-delay: 0.37s;
}
.js-io._delay._show:nth-of-type(11) {
  transition-delay: 0.41s;
}
.js-io._delay._show:nth-of-type(12) {
  transition-delay: 0.45s;
}
.js-io._delay._show:nth-of-type(13) {
  transition-delay: 0.49s;
}
.js-io._delay._show:nth-of-type(14) {
  transition-delay: 0.53s;
}
.js-io._delay._show:nth-of-type(15) {
  transition-delay: 0.57s;
}
.js-io._delay._show:nth-of-type(16) {
  transition-delay: 0.61s;
}
.js-io._delay._show:nth-of-type(17) {
  transition-delay: 0.65s;
}
.js-io._delay._show:nth-of-type(18) {
  transition-delay: 0.69s;
}
.js-io._delay._show:nth-of-type(19) {
  transition-delay: 0.73s;
}
.js-io._delay._show:nth-of-type(20) {
  transition-delay: 0.77s;
}
.js-io._delay._show:nth-of-type(21) {
  transition-delay: 0.81s;
}
.js-io._delay._show:nth-of-type(22) {
  transition-delay: 0.85s;
}
.js-io._delay._show:nth-of-type(23) {
  transition-delay: 0.89s;
}
.js-io._delay._show:nth-of-type(24) {
  transition-delay: 0.93s;
}
.js-io._delay._show:nth-of-type(25) {
  transition-delay: 0.97s;
}
.js-io._delay._show:nth-of-type(26) {
  transition-delay: 1.01s;
}
.js-io._delay._show:nth-of-type(27) {
  transition-delay: 1.05s;
}
.js-io._delay._show:nth-of-type(28) {
  transition-delay: 1.09s;
}
.js-io._delay._show:nth-of-type(29) {
  transition-delay: 1.13s;
}
.js-io._delay._show:nth-of-type(30) {
  transition-delay: 1.17s;
}

.js-menu .c-menu {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.js-menu .c-menu span {
  position: relative;
  display: inline-block;
  line-height: 1;
  color: inherit;
}
.js-menu .c-menu span::after {
  position: absolute;
  top: 0;
  left: 0;
  color: inherit;
  content: attr(data-text);
  transform: translateY(100%);
}

._cus-blur {
  transform: scale(1.1);
  transition: all 1s ease-in-out;
  filter: blur(10px);
  opacity: 0;
}
._cus-blur._show {
  transform: scale(1);
  filter: blur(0);
  opacity: 1;
}

._cus-fadeup {
  transform: translate(0, 36px);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.32, 0.1, 0, 1), opacity 1.2s cubic-bezier(0.32, 0.1, 0, 1), background 1.2s cubic-bezier(0.32, 0.1, 0, 1);
}
._cus-fadeup._show {
  transform: translate(0);
  opacity: 1;
}
._cus-fadeup._delay._show {
  transform: translate(0) scale(1);
  visibility: visible;
  filter: blur(0);
  opacity: 1;
}
._cus-fadeup._delay._show:nth-of-type(1) {
  transition-delay: 0s;
}
._cus-fadeup._delay._show:nth-of-type(2) {
  transition-delay: 0.05s;
}
._cus-fadeup._delay._show:nth-of-type(3) {
  transition-delay: 0.09s;
}
._cus-fadeup._delay._show:nth-of-type(4) {
  transition-delay: 0.13s;
}
._cus-fadeup._delay._show:nth-of-type(5) {
  transition-delay: 0.17s;
}

.handle-anime-txt {
  animation-name: handle_anime_txt;
  animation-duration: 0.87s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-iteration-count: 1;
  animation-fill-mode: both;
}

@keyframes handle_anime_txt {
  0% {
    clip-path: polygon(0% 100%, 0% 100%, 100% 100%, 100% 100%);
    transform: translate(0, 100%) scale(1, 3.6);
  }
  100% {
    clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% 0%);
    transform: translate(0, 0) scale(1);
  }
}
.js-io-anime {
  clip-path: polygon(0% 100%, 0% 100%, 100% 100%, 100% 100%);
}

.handle-anime {
  animation-name: handle_anime;
  animation-duration: 0.653s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-iteration-count: 1;
  animation-fill-mode: both;
  animation-delay: 0.776s;
}

@keyframes handle_anime {
  0% {
    clip-path: polygon(0% 100%, 0% 100%, 100% 100%, 100% 100%);
  }
  100% {
    clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% 0%);
    transform: translate(0, 0);
  }
}
body.is-loading .js-cursor {
  display: none;
}

.full-border {
  border: 25px solid var(--g-color-white);
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  pointer-events: none;
}
@media screen and (max-width: 1500px) {
  .full-border {
    border: 25rem solid var(--g-color-white);
  }
}
@media screen and (max-width: 768px) {
  .full-border {
    border: 15rem solid var(--g-color-white);
  }
}

.full-border-outside {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  pointer-events: none;
  border: 25px solid var(--g-color-white);
  border-radius: 66px;
  display: block;
  width: 100vw;
  height: 100vh;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1500px) {
  .full-border-outside {
    border: 25rem solid var(--g-color-white);
    border-radius: 66rem;
  }
}
@media screen and (max-width: 768px) {
  .full-border-outside {
    border: 15rem solid var(--g-color-white);
    border-radius: 43rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 12rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 20rem;
  padding-left: 10rem;
}
@media screen and (max-width: 768px) {
  .logo {
    padding-left: 0;
  }
}
.logo .mark {
  width: 34rem;
  height: 34rem;
  border-radius: 9rem;
  background: linear-gradient(135deg, var(--gold), var(--purple));
  display: grid;
  place-items: center;
  font-size: 15rem;
  color: #0a0a0f;
  font-weight: 900;
}

header.header {
  background-color: var(--g-color-black);
  border-bottom: 1px solid #3b3b3b;
  position: fixed;
  top: 0;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.8274509804);
  z-index: 999;
}
@media screen and (max-width: 768px) {
  header.header {
    padding: 10rem;
  }
}
header.header .nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.header .nav .btn {
  padding: 10rem 20rem;
}
header.header .nav-links {
  display: flex;
  align-items: center;
  font-size: 14rem;
  color: var(--muted);
}
@media screen and (max-width: 768px) {
  header.header .nav-links {
    display: none;
  }
}
header.header .nav-links a {
  height: 60rem;
  padding-inline: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16rem;
  color: #fff;
  position: relative;
}
header.header .nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 3px;
  background-color: var(--gold);
  transition: all ease-in-out 0.3s;
}
header.header .nav-links a:hover::after {
  width: 100%;
  left: 0;
}
header.header .nav-links .btn-primary {
  background-color: var(--gold);
  transition: all ease 0.3s;
}
header.header .nav-links .btn-primary::after {
  opacity: 0;
}
header.header .nav-links .btn-primary:hover {
  background-color: var(--gold-2);
}
header.header .nav-menu {
  justify-self: end;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 56px;
  height: 56px;
  padding: 0;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: #454545;
  border: 1px solid #cdcdcd;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.25s ease;
  transition: all ease-in-out 0.2s;
  position: relative;
  z-index: 999;
}
@media screen and (max-width: 1500px) {
  header.header .nav-menu {
    gap: 5rem;
    width: 56rem;
    height: 56rem;
  }
}
@media screen and (max-width: 768px) {
  header.header .nav-menu {
    display: flex;
    width: 39rem;
    height: 39rem;
    gap: 3rem;
  }
}
header.header .nav-menu:hover {
  border: 1px solid var(--gold);
  background-color: #fff;
  transition: all ease-in-out 0.2s;
}
header.header .nav-menu:hover .nav-menu__bar {
  background-color: var(--gold);
}
header.header .nav-menu__bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--g-color-white);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media screen and (max-width: 1500px) {
  header.header .nav-menu__bar {
    width: 22rem;
    height: 2rem;
  }
}
@media screen and (max-width: 768px) {
  header.header .nav-menu__bar {
    width: 15rem;
    height: 1.5rem;
  }
}
header.header .nav-menu.is-open .nav-menu__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
@media screen and (max-width: 1500px) {
  header.header .nav-menu.is-open .nav-menu__bar:nth-child(1) {
    transform: translateY(7rem) rotate(45deg);
  }
}
@media screen and (max-width: 768px) {
  header.header .nav-menu.is-open .nav-menu__bar:nth-child(1) {
    transform: translateY(4rem) rotate(45deg);
  }
}
header.header .nav-menu.is-open .nav-menu__bar:nth-child(2) {
  opacity: 0;
}
header.header .nav-menu.is-open .nav-menu__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media screen and (max-width: 1500px) {
  header.header .nav-menu.is-open .nav-menu__bar:nth-child(3) {
    transform: translateY(-7rem) rotate(-45deg);
  }
}
@media screen and (max-width: 768px) {
  header.header .nav-menu.is-open .nav-menu__bar:nth-child(3) {
    transform: translateY(-5rem) rotate(-45deg);
  }
}
header.header {
  /* スマホメニュー */
}
header.header .sp-menu {
  position: fixed;
  top: 32rem;
  right: 48rem;
  transform: translate(50%, -50%);
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: #fff;
  transition: right 0.4s ease;
  z-index: 990;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  /* メニュー表示 */
}
header.header .sp-menu.is-open {
  transition: all ease-in-out 0.3s;
  max-width: 1900rem;
  width: 1400rem;
  height: 1400rem;
  transform: translate(40%, -40%);
  opacity: 1;
  display: block;
}
@media screen and (max-width: 768px) {
  header.header .sp-menu.is-open {
    width: 700rem;
    height: 700rem;
  }
}
header.header .sp-menu.is-open .sp-menu__list {
  display: block;
}
header.header .sp-menu-logo {
  width: 300rem;
  position: absolute;
  top: 41%;
  left: 20%;
}
@media screen and (max-width: 768px) {
  header.header .sp-menu-logo {
    width: 170rem;
    top: 40%;
    left: 26%;
  }
}
header.header .sp-menu {
  /* メニュー一覧 */
}
header.header .sp-menu__list {
  display: none;
  list-style: none;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 15%;
}
@media screen and (max-width: 768px) {
  header.header .sp-menu__list {
    top: 45%;
    left: 30%;
  }
}
header.header .sp-menu__list li {
  margin-bottom: 20rem;
}
@media screen and (max-width: 768px) {
  header.header .sp-menu__list li {
    margin-bottom: 10rem;
  }
}
header.header .sp-menu__list li a {
  font-size: 30rem;
  color: #000;
  text-decoration: none;
  transition: all ease-in-out 0.2s;
}
@media screen and (max-width: 768px) {
  header.header .sp-menu__list li a {
    font-size: 16rem;
  }
}
header.header .sp-menu__list li a:hover {
  color: var(--gold);
  transition: all ease-in-out 0.2s;
}
header.header .sp-menu-img {
  position: absolute;
  width: 400rem;
  bottom: 5%;
  left: 30%;
}
@media screen and (max-width: 768px) {
  header.header .sp-menu-img {
    width: 200rem;
  }
}

.full-bg {
  position: fixed;
  background: rgba(133, 109, 81, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 720;
  transition: opacity 0.5s cubic-bezier(0.075, 0.82, 0.165, 1), visibility 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  visibility: hidden;
  opacity: 0;
}
.full-bg.open-menu {
  visibility: visible;
  opacity: 1;
}

/* ---------- Footer ---------- */
footer .footer-links {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: #121212;
  background: var(--bg-2);
}
@media screen and (max-width: 768px) {
  footer .footer-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
footer .footer-links li {
  position: relative;
  padding-inline: 15px;
  margin-block: 12px;
  list-style: none;
}
@media screen and (max-width: 1500px) {
  footer .footer-links li {
    padding-inline: 15rem;
    margin-block: 12rem;
  }
}
@media screen and (max-width: 768px) {
  footer .footer-links li {
    width: 50%;
    border-right: 1px solid #454545;
    border-bottom: 1px solid #454545;
    margin-block: 0;
    padding-block: 6rem;
  }
}
footer .footer-links li::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  footer .footer-links li::after {
    display: none;
  }
}
footer .footer-links li:nth-last-child(1)::after {
  height: 0;
}
footer .footer-links li a {
  display: block;
  color: #fff;
  font-size: 14px;
  transition: color 0.2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}
@media screen and (max-width: 1500px) {
  footer .footer-links li a {
    font-size: 14rem;
  }
}
@media screen and (max-width: 768px) {
  footer .footer-links li a {
    font-size: 12rem;
    text-align: center;
  }
}
footer .footer-links a:hover {
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  footer .footer-links a:hover {
    border-bottom: 1px solid rgba(255, 255, 255, 0);
  }
}
footer .footer-bottom {
  padding-block: 12px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  color: #fff;
  font-size: 11px;
  background-color: #121212;
}
@media screen and (max-width: 1500px) {
  footer .footer-bottom {
    padding-block: 12px;
    font-size: 13rem;
    gap: 30rem;
  }
}
@media screen and (max-width: 768px) {
  footer .footer-bottom {
    padding-block: 12rem;
    font-size: 12rem;
    gap: 10rem;
  }
}
footer .footer-bottom a {
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  position: relative;
}
footer .footer-bottom a:hover {
  border-bottom: 1px solid #fff;
}
footer .footer-bottom a::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #969696;
  position: absolute;
  top: 0;
  right: -15px;
}
@media screen and (max-width: 1500px) {
  footer .footer-bottom a::after {
    right: -15rem;
  }
}
@media screen and (max-width: 768px) {
  footer .footer-bottom a::after {
    display: none;
  }
}
footer .footer-bottom a:nth-last-child(1)::after {
  display: none;
}
footer .foot-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #000;
  padding-bottom: 20px;
}
@media screen and (max-width: 1500px) {
  footer .foot-bottom {
    padding-bottom: 20rem;
  }
}
footer .foot-bottom ul {
  display: flex;
  gap: 10px;
  margin-block: 20px;
}
@media screen and (max-width: 1500px) {
  footer .foot-bottom ul {
    gap: 10rem;
    margin-block: 20rem;
  }
}
@media screen and (max-width: 768px) {
  footer .foot-bottom ul {
    flex-wrap: wrap;
    margin-block: 10rem;
  }
}
footer .foot-bottom ul li {
  width: 50px;
}
@media screen and (max-width: 1500px) {
  footer .foot-bottom ul li {
    width: 50rem;
  }
}
@media screen and (max-width: 768px) {
  footer .foot-bottom ul li {
    width: 40rem;
  }
}
footer .foot-bottom span {
  font-size: 12px;
}
@media screen and (max-width: 1500px) {
  footer .foot-bottom span {
    font-size: 12rem;
  }
}
@media screen and (max-width: 768px) {
  footer .foot-bottom span {
    font-size: 10rem;
  }
}

.work-single {
  padding: 120px 0 170px;
}
@media screen and (max-width: 1500px) {
  .work-single {
    padding: 120rem 0 170rem;
  }
}
@media screen and (max-width: 768px) {
  .work-single {
    padding: 20rem 0 60rem;
  }
}
.work-single-ttl {
  margin-bottom: 25px;
}
@media screen and (max-width: 1500px) {
  .work-single-ttl {
    margin-bottom: 25rem;
  }
}
.work-single-ttl h2 {
  color: #404040;
  font-size: 32px;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: 600;
}
@media screen and (max-width: 1500px) {
  .work-single-ttl h2 {
    font-size: 32rem;
  }
}
@media screen and (max-width: 768px) {
  .work-single-ttl h2 {
    font-size: 20rem;
  }
}
.work-single-link {
  margin-bottom: 38px;
}
@media screen and (max-width: 1500px) {
  .work-single-link {
    margin-bottom: 38rem;
  }
}
@media screen and (max-width: 768px) {
  .work-single-link {
    margin-bottom: 30rem;
  }
}
.work-single-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #00A0E9;
  font-size: 18px;
  font-family: "Barlow", sans-serif;
}
@media screen and (max-width: 1500px) {
  .work-single-link a {
    font-size: 18rem;
  }
}
@media screen and (max-width: 768px) {
  .work-single-link a {
    font-size: 14rem;
  }
}
.work-single-link a svg {
  width: 15px;
  height: auto;
  margin-right: 11px;
}
@media screen and (max-width: 1500px) {
  .work-single-link a svg {
    width: 15rem;
    margin-right: 11rem;
  }
}
@media screen and (max-width: 768px) {
  .work-single-link a svg {
    width: 12rem;
    margin-right: 11rem;
  }
}
.work-single-link a span {
  text-decoration: underline;
}
.work-single-img {
  width: 100%;
  height: 745px;
  margin-bottom: 57px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #707070;
}
@media screen and (max-width: 1500px) {
  .work-single-img {
    border-radius: 24rem;
    height: 745rem;
    margin-bottom: 57rem;
  }
}
@media screen and (max-width: 768px) {
  .work-single-img {
    height: 300rem;
    margin-bottom: 30rem;
  }
}
.work-single-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.work-single-content * {
  font-size: 18px;
  color: #404040;
  line-height: 2;
  margin-bottom: 80px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1500px) {
  .work-single-content * {
    margin-bottom: 80rem;
  }
}
@media screen and (max-width: 768px) {
  .work-single-content * {
    margin-bottom: 30rem;
  }
}
.work-single-content h1,
.work-single-content h2,
.work-single-content h3,
.work-single-content h4,
.work-single-content h5,
.work-single-content h6 {
  line-height: 1.8;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 34px;
}
@media screen and (max-width: 1500px) {
  .work-single-content h1,
  .work-single-content h2,
  .work-single-content h3,
  .work-single-content h4,
  .work-single-content h5,
  .work-single-content h6 {
    font-size: 24rem;
    margin-bottom: 34rem;
  }
}
@media screen and (max-width: 768px) {
  .work-single-content h1,
  .work-single-content h2,
  .work-single-content h3,
  .work-single-content h4,
  .work-single-content h5,
  .work-single-content h6 {
    font-size: 18rem;
    margin-bottom: 20rem;
  }
}
.work-single-content img {
  border-radius: 24px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1500px) {
  .work-single-content img {
    border-radius: 24rem;
    margin-bottom: 40rem;
  }
}
.work-single-btn {
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 1500px) {
  .work-single-btn {
    margin-bottom: 80rem;
  }
}
@media screen and (max-width: 768px) {
  .work-single-btn {
    margin-bottom: 60rem;
  }
}
.work-single-btn a {
  margin: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 472px;
  height: 114px;
  background: #00A0E9;
  border-radius: 100px;
  font-size: 24px;
  line-height: 1;
  color: var(--g-color-white);
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid #00A0E9;
  transition: all 0.4s ease-in-out;
}
@media screen and (max-width: 1500px) {
  .work-single-btn a {
    width: 472rem;
    height: 114rem;
    font-size: 24rem;
  }
}
@media screen and (max-width: 768px) {
  .work-single-btn a {
    width: 100%;
    height: 60rem;
    font-size: 16rem;
  }
}
.work-single-btn a:hover {
  color: #00A0E9;
  background: var(--g-color-white);
}

.sec-work.work-other {
  padding-top: 160px;
}
@media screen and (max-width: 1500px) {
  .sec-work.work-other {
    padding-top: 160rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-work.work-other {
    padding-top: 80rem;
  }
}
.sec-work.work-other::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 150%;
  top: 0;
  left: 0;
  background: #dad8d8;
  z-index: 1;
  opacity: 0.3;
}
.sec-work.work-other .h-container {
  position: relative;
  z-index: 2;
}
.sec-work.work-other .sec-work-deco img {
  z-index: 3;
}
.sec-work.work-other .sec-ttl h2 {
  line-height: 1.2;
}

/* ---------- Hero ---------- */
.sec-hero {
  position: relative;
  padding: 110px 0 90px;
  overflow: hidden;
  background-color: var(--bg-2);
}
@media screen and (max-width: 1500px) {
  .sec-hero {
    padding: 110rem 0 90rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-hero {
    padding: 70rem 0 50rem;
  }
}
.sec-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(600px 300px at 15% 10%, rgba(124, 92, 255, 0.22), transparent 60%), radial-gradient(700px 340px at 85% 25%, rgba(212, 175, 106, 0.18), transparent 60%), radial-gradient(500px 500px at 50% 120%, rgba(124, 92, 255, 0.14), transparent 60%);
}
.sec-hero .wrap {
  position: relative;
  z-index: 1;
}
.sec-hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--gold-text);
  border: 1px solid rgba(212, 175, 106, 0.35);
  background: rgba(212, 175, 106, 0.06);
  margin-bottom: 26px;
}
@media screen and (max-width: 1500px) {
  .sec-hero .badge {
    gap: 8rem;
    padding: 7rem 16rem;
    border-radius: 999rem;
    font-size: 13rem;
    margin-bottom: 26rem;
  }
}
.sec-hero .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 12px #2ecc71;
}
@media screen and (max-width: 1500px) {
  .sec-hero .dot {
    width: 8rem;
    height: 8rem;
    box-shadow: 0 0 12rem #2ecc71;
  }
}
.sec-hero h1 {
  font-size: 54px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
}
@media screen and (max-width: 1500px) {
  .sec-hero h1 {
    font-size: 54rem;
    margin-bottom: 22rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-hero h1 {
    font-size: 30rem;
    margin-bottom: 16px;
  }
}
.sec-hero p.lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 660px;
  margin-bottom: 38px;
}
@media screen and (max-width: 1500px) {
  .sec-hero p.lead {
    font-size: 19rem;
    max-width: 660rem;
    margin-bottom: 38rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-hero p.lead {
    font-size: 14rem;
  }
}
.sec-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  margin-bottom: 64px;
}
@media screen and (max-width: 1500px) {
  .sec-hero-cta {
    gap: 44rem;
    margin-bottom: 64rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 24rem;
    margin-bottom: 40rem;
  }
}
.sec-hero-cta .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  text-align: center;
  color: #fff;
  padding: 30px 42px;
  font-size: 22px;
  transition: all ease 0.2s;
  font-weight: 500;
}
@media screen and (max-width: 1500px) {
  .sec-hero-cta .btn {
    width: 280rem;
    padding: 30rem 42rem;
    font-size: 22rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-hero-cta .btn {
    width: 100%;
    padding: 20rem 42rem;
    font-size: 18rem;
  }
}
.sec-hero-cta .btn span {
  transition: all ease-in-out 0.3s;
}
.sec-hero-cta .btn:hover span {
  transform: translateX(8px);
  transition: all ease-in-out 0.3s;
}
@media screen and (max-width: 1500px) {
  .sec-hero-cta .btn:hover span {
    transform: translateX(8rem);
  }
}
.sec-hero .stats {
  margin: 50px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1000px;
}
@media screen and (max-width: 1500px) {
  .sec-hero .stats {
    margin: 50rem auto;
    gap: 48rem;
    max-width: 1000rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-hero .stats {
    grid-template-columns: 1fr;
    gap: 24rem;
  }
}
.sec-hero .stat {
  background: linear-gradient(180deg, var(--card), var(--bg-2));
  border: 1px solid var(--line);
  padding: 26px 24px;
  border: 1px solid #d4b56a;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), inset 0 0 0 4px #0e1530, inset 0 0 0 5px #d4b56a;
  transition: all ease 0.2s;
}
@media screen and (max-width: 1500px) {
  .sec-hero .stat {
    padding: 26rem 24rem;
  }
}
.sec-hero .stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 181, 106, 0.25), inset 0 0 0 4px #0e1530, inset 0 0 0 5px #d4b56a;
}
.sec-hero .stat .num {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.1;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  text-align: center;
  color: var(--gold-text);
  padding: 20px 0;
}
@media screen and (max-width: 1500px) {
  .sec-hero .stat .num {
    font-size: 26rem;
    padding: 20rem 0;
  }
}
.sec-hero .stat .lbl {
  font-size: 13px;
  color: #fff;
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 1500px) {
  .sec-hero .stat .lbl {
    font-size: 13rem;
    margin-top: 10rem;
  }
}

/* ---------- Section base ---------- */
section:nth-last-of-type(odd) {
  background-color: var(--bg);
}
section:nth-last-of-type(even) {
  background-color: var(--bg-2);
}

section.block {
  padding: 150px 0;
  position: relative;
}
@media screen and (max-width: 1500px) {
  section.block {
    padding: 150rem 0;
  }
}
@media screen and (max-width: 768px) {
  section.block {
    padding: 70rem 0;
  }
}

.eyebrow {
  display: inline-block;
  font-size: 24px;
  letter-spacing: 0.24em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
@media screen and (max-width: 1500px) {
  .eyebrow {
    font-size: 24rem;
    margin-bottom: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .eyebrow {
    font-size: 16rem;
    margin-bottom: 10rem;
  }
}

.sec-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.25em;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 1500px) {
  .sec-title {
    font-size: 16rem;
    margin-bottom: 30rem;
  }
}

.sec-sub {
  color: var(--muted);
  max-width: 640px;
  font-size: 16px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1500px) {
  .sec-sub {
    max-width: 640rem;
    font-size: 16rem;
    margin-bottom: 100rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-sub {
    max-width: 390rem;
    font-size: 12rem;
    margin-bottom: 60rem;
  }
}

.center {
  text-align: center;
}
.center .sec-sub {
  margin-inline: auto;
}

.more_btn {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 100px;
}
@media screen and (max-width: 1500px) {
  .more_btn {
    margin-top: 100rem;
  }
}
@media screen and (max-width: 768px) {
  .more_btn {
    margin-top: 60rem;
  }
}
.more_btn a {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none !important;
  box-sizing: border-box;
  position: relative;
  transition: 0.3s;
  font-size: 16px;
  font-weight: bold;
  padding: 5px 20px;
  margin: auto;
  border-radius: 100px;
  color: #856D51;
  border: 3px solid #856D51;
  background: transparent;
}
@media screen and (max-width: 1500px) {
  .more_btn a {
    font-size: 16rem;
    padding: 5rem 20rem;
  }
}
.more_btn a:hover {
  color: #FFF;
  border: 3px solid #856D51;
  background: #856D51;
}

/* ---------- Industries ---------- */
.inds {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (max-width: 1500px) {
  .inds {
    gap: 25rem;
    margin-top: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .inds {
    grid-template-columns: repeat(2, 1fr);
    gap: 20rem;
    margin-top: 30rem;
  }
}
.inds .ind {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 22px;
  border-radius: 4px;
  font-size: 24px;
  font-weight: 700;
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: var(--txt);
  transition: border-color 0.2s, transform 0.2s;
}
@media screen and (max-width: 1500px) {
  .inds .ind {
    padding: 30rem 22rem;
    font-size: 24rem;
  }
}
@media screen and (max-width: 768px) {
  .inds .ind {
    padding: 20rem 22rem;
    font-size: 16rem;
  }
}
.inds .ind:hover {
  border-color: var(--gold);
}
.inds .ind img {
  width: 50%;
  margin-bottom: 20px;
}
@media screen and (max-width: 1500px) {
  .inds .ind img {
    margin-bottom: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .inds .ind img {
    margin-bottom: 16rem;
  }
}

/* ---------- Highlights ---------- */
.highlights {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
@media screen and (max-width: 1500px) {
  .hl-grid {
    gap: 20rem;
    margin-top: 52rem;
  }
}
@media screen and (max-width: 768px) {
  .hl-grid {
    grid-template-columns: 1fr;
    gap: 20rem;
    margin-top: 40rem;
  }
}
.hl-grid .hl {
  text-align: center;
  background: var(--card);
  border: 1px solid var(--line);
  transition: transform 0.25s, border-color 0.25s;
  padding-bottom: 20px;
}
@media screen and (max-width: 1500px) {
  .hl-grid .hl {
    padding-bottom: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .hl-grid .hl {
    padding-bottom: 16rem;
  }
}
.hl-grid .hl:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 106, 0.4);
}
.hl-grid .hl .ic {
  width: 100%;
  height: auto;
  display: grid;
  place-items: center;
  font-size: 24px;
  background: linear-gradient(135deg, rgba(212, 175, 106, 0.18), rgba(124, 92, 255, 0.18));
  border: 1px solid var(--line);
  margin-bottom: 20px;
}
@media screen and (max-width: 1500px) {
  .hl-grid .hl .ic {
    font-size: 24rem;
    margin-bottom: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .hl-grid .hl .ic {
    font-size: 20rem;
    margin-bottom: 16rem;
  }
}
.hl-grid .hl h3 {
  width: -moz-max-content;
  width: max-content;
  padding-inline: 6px;
  margin-inline: auto;
  font-size: 24px;
  font-family: "Special Elite", cursive;
  margin-bottom: 8px;
  border-bottom: 4px solid var(--gold);
}
@media screen and (max-width: 1500px) {
  .hl-grid .hl h3 {
    font-size: 24rem;
    margin-bottom: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .hl-grid .hl h3 {
    font-size: 20rem;
    margin-bottom: 6rem;
  }
}
.hl-grid .hl p {
  padding-inline: 10px;
  padding-block: 20px;
  font-size: 14px;
  color: var(--muted);
}
@media screen and (max-width: 1500px) {
  .hl-grid .hl p {
    font-size: 14rem;
    padding-inline: 10rem;
    padding-block: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .hl-grid .hl p {
    font-size: 12rem;
    padding-inline: 10rem;
    padding-block: 16rem;
  }
}

/* ---------- Roles ---------- */
.roles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}
@media screen and (max-width: 1500px) {
  .roles {
    gap: 22rem;
    margin-top: 52rem;
  }
}
@media screen and (max-width: 768px) {
  .roles {
    grid-template-columns: 1fr;
    gap: 20rem;
    margin-top: 40rem;
  }
}
.roles .role {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.roles .role .tag {
  font-size: 30px;
  letter-spacing: 0.16em;
  color: #fff;
  font-weight: 700;
  width: 100%;
  text-align: center;
  padding: 10px 0;
}
@media screen and (max-width: 1500px) {
  .roles .role .tag {
    font-size: 30rem;
    padding: 10rem 0;
  }
}
.roles .role .tag h3 {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 1500px) {
  .roles .role .tag h3 {
    font-size: 16rem;
  }
}
.roles .role:nth-of-type(1) {
  border: 1px solid #113051;
}
.roles .role:nth-of-type(1) .tag {
  background-color: #022655;
}
.roles .role:nth-of-type(1) ul {
  background-color: #041325;
}
.roles .role:nth-of-type(1) li {
  color: #2873e9;
  border-bottom: 1px solid #022655;
}
.roles .role:nth-of-type(2) {
  border: 1px solid #2c2741;
}
.roles .role:nth-of-type(2) .tag {
  background-color: #2a1950;
}
.roles .role:nth-of-type(2) ul {
  background-color: #151027;
}
.roles .role:nth-of-type(2) li {
  color: #9b61de;
  border-bottom: 1px solid #2c2741;
}
.roles .role:nth-of-type(3) {
  border: 1px solid #183b29;
}
.roles .role:nth-of-type(3) .tag {
  background-color: #103f25;
}
.roles .role:nth-of-type(3) ul {
  background-color: #071f15;
}
.roles .role:nth-of-type(3) li {
  color: #4ecdc4;
  border-bottom: 1px solid #183b29;
}
.roles .role ul {
  width: 100%;
  list-style: none;
  display: flex;
  flex-direction: column;
  padding-inline: 20px;
}
.roles .role ul li {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  position: relative;
}
@media screen and (max-width: 1500px) {
  .roles .role ul li {
    font-size: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .roles .role ul li {
    font-size: 12rem;
  }
}
.roles .role ul li:nth-last-child(1) {
  border-bottom: none;
}
.roles .role ul li span {
  width: -moz-max-content;
  width: max-content;
  padding: 15px 20px;
  font-size: 32px;
  font-weight: 900;
}
.roles .role ul li p {
  font-size: 16px;
}

/* ---------- Features ---------- */
.sec-features {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sec-features .feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
@media screen and (max-width: 1500px) {
  .sec-features .feat-grid {
    gap: 20rem;
    margin-top: 52rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-features .feat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20rem;
    margin-top: 40rem;
  }
}
.sec-features .feat-grid .ic {
  display: inline-block;
  background: #000;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  line-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1500px) {
  .sec-features .feat-grid .ic {
    width: 150rem;
    height: 150rem;
    line-height: 120rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-features .feat-grid .ic {
    width: 120rem;
    height: 120rem;
    line-height: 100rem;
  }
}
.sec-features .feat-grid .ic img {
  width: 60%;
  height: auto;
}
.sec-features .feat-grid .feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 28px 26px;
  transition: border-color 0.25s, transform 0.25s;
}
@media screen and (max-width: 1500px) {
  .sec-features .feat-grid .feat {
    gap: 20rem;
    padding: 28rem 26rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-features .feat-grid .feat {
    gap: 16rem;
    padding: 10rem 16rem;
  }
}
.sec-features .feat-grid .feat h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 6px;
  text-align: center;
}
@media screen and (max-width: 1500px) {
  .sec-features .feat-grid .feat h3 {
    font-size: 24rem;
    margin-bottom: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-features .feat-grid .feat h3 {
    font-size: 14rem;
    margin-bottom: 4rem;
  }
}
.sec-features .feat-grid .feat p {
  text-align: center;
  font-size: 12px;
  color: #fff;
  padding-block: 20px;
}
@media screen and (max-width: 1500px) {
  .sec-features .feat-grid .feat p {
    font-size: 12rem;
    padding-block: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-features .feat-grid .feat p {
    font-size: 8rem;
    padding-block: 16rem;
  }
}

/* ---------- Testimonial ---------- */
.quote-wrap {
  margin-top: 12px;
}
@media screen and (max-width: 1500px) {
  .quote-wrap {
    margin-top: 12rem;
  }
}
@media screen and (max-width: 768px) {
  .quote-wrap {
    margin-top: 8rem;
  }
}
.quote-wrap .quote {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-2);
  border: 2px solid var(--line);
  padding: 56px 40px;
  position: relative;
}
@media screen and (max-width: 1500px) {
  .quote-wrap .quote {
    max-width: 860rem;
    padding: 56rem 40rem;
  }
}
@media screen and (max-width: 768px) {
  .quote-wrap .quote {
    padding: 40rem 20rem;
  }
}
.quote-wrap .quote .mark {
  font-size: 64px;
  color: var(--gold);
  line-height: 0.6;
  opacity: 0.5;
}
@media screen and (max-width: 1500px) {
  .quote-wrap .quote .mark {
    font-size: 64rem;
  }
}
@media screen and (max-width: 768px) {
  .quote-wrap .quote .mark {
    font-size: 48rem;
  }
}
.quote-wrap .quote p {
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 600;
  margin: 18px 0 26px;
  line-height: 1.7;
}
@media screen and (max-width: 1500px) {
  .quote-wrap .quote p {
    margin: 18rem 0 26rem;
  }
}
@media screen and (max-width: 768px) {
  .quote-wrap .quote p {
    font-size: 14rem;
    margin: 12rem 0 20rem;
  }
}
.quote-wrap .quote .who {
  color: var(--muted);
  font-size: 14px;
}
@media screen and (max-width: 1500px) {
  .quote-wrap .quote .who {
    font-size: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .quote-wrap .quote .who {
    font-size: 12rem;
  }
}
.quote-wrap .quote .who b {
  color: var(--txt);
  font-weight: 700;
}

/* ---------- Pricing ---------- */
.sec-pricing {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sec-pricing .plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}
@media screen and (max-width: 1500px) {
  .sec-pricing .plans {
    gap: 22rem;
    margin-top: 52rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-pricing .plans {
    grid-template-columns: 1fr;
    gap: 20rem;
    margin-top: 40rem;
  }
}
.sec-pricing .plans .plan {
  background: var(--card);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s;
}
.sec-pricing .plans .plan h3 {
  font-size: 24px;
  letter-spacing: 0.16em;
  color: #fff;
  font-weight: 700;
  width: 100%;
  text-align: center;
  padding: 50px 0;
  position: relative;
}
@media screen and (max-width: 1500px) {
  .sec-pricing .plans .plan h3 {
    font-size: 24rem;
    padding: 50rem 0;
  }
}
@media screen and (max-width: 768px) {
  .sec-pricing .plans .plan h3 {
    font-size: 20rem;
    padding: 40rem 0;
  }
}
.sec-pricing .plans .plan:nth-of-type(1) h3 {
  background-color: #8B8B8B;
}
.sec-pricing .plans .plan:nth-of-type(2) h3 {
  background-color: var(--gold);
}
.sec-pricing .plans .plan:nth-of-type(2) h3::before {
  content: "";
  top: 0;
  right: 0;
  border-bottom: 3em solid transparent;
  border-right: 3em solid #FFC400;
  position: absolute;
  z-index: 100;
}
.sec-pricing .plans .plan:nth-of-type(2) h3::after {
  content: "人気No.1";
  display: block;
  top: 18px;
  transform: rotate(45deg);
  font-size: 10px;
  color: #000;
  right: 0;
  position: absolute;
  z-index: 101;
}
@media screen and (max-width: 1500px) {
  .sec-pricing .plans .plan:nth-of-type(2) h3::after {
    top: 18rem;
    font-size: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-pricing .plans .plan:nth-of-type(2) h3::after {
    top: 15rem;
    font-size: 8rem;
  }
}
.sec-pricing .plans .plan:nth-of-type(3) h3 {
  background-color: #9F4F48;
}
.sec-pricing .plans .plan .desc {
  font-size: 18px;
  color: #fff;
  padding-inline: 20px;
  padding-block: 60px;
}
@media screen and (max-width: 1500px) {
  .sec-pricing .plans .plan .desc {
    font-size: 18rem;
    padding-inline: 20rem;
    padding-block: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-pricing .plans .plan .desc {
    font-size: 14rem;
    padding-inline: 20rem;
    padding-block: 40rem;
  }
}
.sec-pricing .plans .plan ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.sec-pricing .plans .plan ul li {
  width: 100%;
  font-size: 14px;
  color: #fff;
  text-align: center;
  padding-block: 10px;
}
@media screen and (max-width: 1500px) {
  .sec-pricing .plans .plan ul li {
    font-size: 14rem;
    padding-block: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-pricing .plans .plan ul li {
    font-size: 12rem;
    padding-block: 8rem;
  }
}
.sec-pricing .plans .plan ul li:nth-of-type(odd) {
  background-color: #333;
}
.sec-pricing .plans .plan ul li:nth-of-type(even) {
  background-color: #454545;
}
.sec-pricing .plans .plan .btn {
  margin-top: auto;
  justify-content: center;
}
.sec-pricing .note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 26px;
  text-align: center;
}
@media screen and (max-width: 1500px) {
  .sec-pricing .note {
    font-size: 13rem;
    margin-top: 26rem;
  }
}

/* ---------- FAQ ---------- */
.faq-list {
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media screen and (max-width: 1500px) {
  .faq-list {
    margin: 52rem auto 0;
    gap: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .faq-list {
    margin: 40rem auto 0;
    gap: 12rem;
  }
}
.faq-list .faq {
  background: var(--card);
  border: 1px solid var(--line);
  overflow: hidden;
}
.faq-list .faq summary {
  cursor: pointer;
  list-style: none;
  padding: 10px 26px;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background-color: #333;
  color: var(--muted);
}
@media screen and (max-width: 1500px) {
  .faq-list .faq summary {
    padding: 10rem 26rem;
    font-size: 18rem;
    gap: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .faq-list .faq summary {
    padding: 8rem 20rem;
    font-size: 16rem;
    gap: 12rem;
  }
}
.faq-list .faq summary::-webkit-details-marker {
  display: none;
}
.faq-list .faq summary .q {
  display: flex;
  gap: 12px;
  align-items: center;
}
@media screen and (max-width: 1500px) {
  .faq-list .faq summary .q {
    gap: 12rem;
  }
}
@media screen and (max-width: 768px) {
  .faq-list .faq summary .q {
    gap: 8rem;
    width: 90%;
  }
}
.faq-list .faq summary .q i {
  color: var(--muted) !important;
  font-style: normal;
  font-weight: 900;
}
.faq-list .faq summary .plus {
  position: relative;
  width: 20px;
  height: 20px;
  transition: all ease-in-out 0.3s;
}
@media screen and (max-width: 1500px) {
  .faq-list .faq summary .plus {
    width: 20rem;
    height: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .faq-list .faq summary .plus {
    width: 16rem;
    height: 16rem;
  }
}
.faq-list .faq summary .plus::before {
  content: "";
  width: 20px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: all ease 0.3s;
}
@media screen and (max-width: 1500px) {
  .faq-list .faq summary .plus::before {
    width: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .faq-list .faq summary .plus::before {
    width: 16rem;
  }
}
.faq-list .faq summary .plus::after {
  content: "";
  height: 20px;
  width: 2px;
  background-color: #fff;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1500px) {
  .faq-list .faq summary .plus::after {
    height: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .faq-list .faq summary .plus::after {
    height: 16rem;
  }
}
.faq-list .faq .a {
  display: flex;
  gap: 16px;
  padding: 0 24px;
  height: 0;
  color: var(--muted);
  font-size: 18px;
  background-color: #333;
  border-top: 1px solid #454545;
  overflow: hidden;
  transition: all ease-in-out 0.3s;
}
@media screen and (max-width: 1500px) {
  .faq-list .faq .a {
    gap: 16rem;
    padding: 0 24rem;
    font-size: 18rem;
  }
}
@media screen and (max-width: 768px) {
  .faq-list .faq .a {
    gap: 12rem;
    padding: 0 20rem;
    font-size: 12rem;
  }
}
.faq-list .faq .a i {
  color: var(--muted) !important;
  font-style: normal;
  font-weight: 900;
}
.faq-list .faq[open] summary {
  color: var(--gold);
}
.faq-list .faq[open] summary .plus {
  transform: rotate(90deg);
}
.faq-list .faq[open] summary .plus::before {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-list .faq[open] .a {
  padding: 16px 24px;
  height: 105px;
  transition: all ease-in-out 0.3s;
}
@media screen and (max-width: 1500px) {
  .faq-list .faq[open] .a {
    padding: 16rem 24rem;
    height: 105rem;
  }
}
@media screen and (max-width: 768px) {
  .faq-list .faq[open] .a {
    padding: 12rem 20rem;
    height: 80rem;
  }
}

/* ---------- News ---------- */
.news-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
@media screen and (max-width: 1500px) {
  .news-list {
    margin-top: 48rem;
  }
}
.news-list .news-item {
  display: flex;
  gap: 24px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
@media screen and (max-width: 1500px) {
  .news-list .news-item {
    gap: 24rem;
    padding: 22rem 4rem;
  }
}
@media screen and (max-width: 768px) {
  .news-list .news-item {
    flex-direction: column;
    gap: 16rem;
    padding: 16rem 4rem;
  }
}
.news-list .news-item div {
  display: flex;
  gap: 24px;
}
.news-list .news-item div time {
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  flex: none;
  width: 110px;
  padding-top: 2px;
}
@media screen and (max-width: 1500px) {
  .news-list .news-item div time {
    font-size: 16rem;
    width: 110rem;
  }
}
@media screen and (max-width: 768px) {
  .news-list .news-item div time {
    font-size: 12rem;
    width: 100%;
  }
}
.news-list .news-item div .tag2 {
  flex: none;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
}
@media screen and (max-width: 1500px) {
  .news-list .news-item div .tag2 {
    font-size: 11rem;
    padding: 3rem 10rem;
  }
}
@media screen and (max-width: 768px) {
  .news-list .news-item div .tag2 {
    font-size: 10rem;
    padding: 2rem 8rem;
  }
}
.news-list .news-item p {
  font-size: 18px;
  color: var(--txt);
}
@media screen and (max-width: 1500px) {
  .news-list .news-item p {
    font-size: 18rem;
  }
}
@media screen and (max-width: 768px) {
  .news-list .news-item p {
    font-size: 14rem;
  }
}

/* ---------- CTA ---------- */
.cta {
  margin: 0 auto;
  max-width: 1180px;
  display: flex;
}
@media screen and (max-width: 1500px) {
  .cta {
    max-width: 1180rem;
  }
}
@media screen and (max-width: 768px) {
  .cta {
    flex-direction: column;
  }
}
.cta .cta-inner {
  position: relative;
  overflow: hidden;
  padding: 70px 40px;
  text-align: center;
  background-color: #fff;
}
@media screen and (max-width: 1500px) {
  .cta .cta-inner {
    padding: 70rem 40rem;
  }
}
@media screen and (max-width: 768px) {
  .cta .cta-inner {
    padding: 40rem 20rem;
  }
}
.cta .cta-inner > * {
  position: relative;
}
.cta .cta-inner h2 {
  font-size: 28px;
  font-weight: 600;
  color: #000;
  margin-bottom: 16px;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 1500px) {
  .cta .cta-inner h2 {
    font-size: 28rem;
    margin-bottom: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .cta .cta-inner h2 {
    font-size: 18rem;
    margin-bottom: 12rem;
  }
}
.cta .cta-inner p {
  font-size: 14px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 52px;
}
@media screen and (max-width: 1500px) {
  .cta .cta-inner p {
    font-size: 14rem;
    max-width: 540rem;
    margin: 0 auto 52rem;
  }
}
@media screen and (max-width: 768px) {
  .cta .cta-inner p {
    font-size: 10rem;
    max-width: 100%;
    margin: 0 auto 40rem;
  }
}
.cta .cta-inner a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 1500px) {
  .cta .cta-inner a {
    font-size: 18rem;
  }
}

#topBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 500;
  width: 100px;
  height: 100px;
  background-color: var(--bg-2);
  border-radius: 50%;
  border: 1px solid #cdcdcd;
  color: #fff;
  font-size: 18px;
  padding-top: 40px;
  cursor: pointer;
}
@media screen and (max-width: 1500px) {
  #topBtn {
    width: 100rem;
    height: 100rem;
    font-size: 18rem;
    padding-top: 40rem;
  }
}
@media screen and (max-width: 768px) {
  #topBtn {
    width: 60rem;
    height: 60rem;
    font-size: 12rem;
    padding-top: 24rem;
  }
}
#topBtn .arrow {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 2px;
  height: 35px;
  background-color: #fff;
  transform: translateX(-50%);
}
@media screen and (max-width: 1500px) {
  #topBtn .arrow {
    top: 10rem;
    width: 2rem;
    height: 35rem;
  }
}
@media screen and (max-width: 768px) {
  #topBtn .arrow {
    top: 6rem;
    width: 2rem;
    height: 22rem;
  }
}
#topBtn .arrow::before {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  width: 15px;
  height: 2px;
  background-color: #fff;
  transform: rotate(-45deg) translateX(2px);
}
@media screen and (max-width: 1500px) {
  #topBtn .arrow::before {
    top: 5rem;
    width: 15rem;
    height: 2rem;
  }
}
@media screen and (max-width: 768px) {
  #topBtn .arrow::before {
    top: 3rem;
    width: 12rem;
    height: 2rem;
  }
}
#topBtn .arrow::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 15px;
  height: 2px;
  background-color: #fff;
  transform: rotate(45deg) translateX(-2px);
}
@media screen and (max-width: 1500px) {
  #topBtn .arrow::after {
    top: 5rem;
    width: 15rem;
    height: 2rem;
  }
}
@media screen and (max-width: 768px) {
  #topBtn .arrow::after {
    top: 3rem;
    width: 12rem;
    height: 2rem;
  }
}

section.banner {
  position: relative;
  width: 100%;
  height: 400px;
  background: url("../img/town.png") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.banner .banner-inner {
  text-align: center;
}
section.banner .banner-inner .banner-title {
  font-size: 46rem;
  font-weight: bold;
  margin-bottom: 20rem;
}
section.banner .banner-inner .banner-sub {
  font-size: 18rem;
  color: #666;
}

section {
  padding-top: 30px;
}
section .sitemap {
  margin: 30rem 50rem;
}
section .sitemap ul {
  display: inline-flex;
  gap: 10rem;
  font-size: 14rem;
}
section .sitemap ul li a {
  text-decoration: none;
}
section .sitemap ul li a:hover {
  text-decoration: underline;
}
section .sitemap ul li a::after {
  content: "/";
  margin-left: 5rem;
}
section .sitemap ul li:last-child a::after {
  content: "";
}

.sec-contact-low.block {
  padding-block: 80px;
}
.sec-contact-low.block .low-cta-inner {
  text-align: center;
}
.sec-contact-low.block .low-cta-inner h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .sec-contact-low.block .low-cta-inner h2 {
    font-size: 18rem;
  }
}
.sec-contact-low.block .low-cta-inner p {
  font-size: 16px;
  margin-bottom: 30px;
}
.sec-contact-low.block .low-cta-inner a {
  color: #fff;
  padding: 20px 134px;
  font-size: 22px;
  font-weight: 500;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media screen and (max-width: 768px) {
  .sec-contact-low.block .low-cta-inner a {
    padding: 16px 64px;
    font-size: 18px;
  }
}

.sec-contact {
  padding-top: 250rem;
  padding-bottom: 100rem;
}
@media screen and (max-width: 768px) {
  .sec-contact {
    padding-top: 110rem;
    padding-bottom: 30rem;
  }
}
.sec-contact__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 1500px) {
  .sec-contact__inner {
    width: 1300rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-contact__inner {
    width: 335rem;
  }
}
.sec-contact__heading {
  flex: 0 0 45%;
}
.sec-contact__title {
  font-size: 110rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
  -webkit-text-stroke: 2rem #333;
}
@media screen and (max-width: 768px) {
  .sec-contact__title {
    font-size: 50rem;
    -webkit-text-stroke: 1rem #333;
  }
}
.sec-contact__sub {
  margin-top: 18rem;
  font-size: 36rem;
  font-weight: 700;
  color: var(--gold);
}
@media screen and (max-width: 768px) {
  .sec-contact__sub {
    font-size: 16rem;
    margin-top: 8rem;
  }
}
.sec-contact__image {
  position: absolute;
  top: 100rem;
  right: 200rem;
}
@media screen and (max-width: 768px) {
  .sec-contact__image {
    position: unset;
    transform: translateX(20rem);
    margin-block: 20rem;
  }
}
.sec-contact__image img {
  display: block;
  width: 100%;
  max-width: 500rem;
  height: auto;
  margin-left: auto;
}
.sec-contact .tel-btn {
  border: 3px solid var(--gold);
  background-color: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50rem;
  padding-block: 30rem;
  transition: all ease-in-out 0.2s;
}
.sec-contact .tel-btn:hover {
  background-color: rgba(0, 0, 0, 0);
}
.sec-contact .tel-btn:hover h4 {
  color: var(--gold-3);
}
.sec-contact .tel-btn:hover .white {
  display: none;
}
.sec-contact .tel-btn:hover .yellow {
  display: block;
}
.sec-contact .tel-btn:hover strong {
  color: var(--gold-3);
}
.sec-contact .tel-btn:hover small {
  color: var(--gold-3);
}
.sec-contact .tel-btn h4 {
  font-family: sans-serif;
  font-weight: bold;
  font-size: 32rem;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec-contact .tel-btn h4 {
    font-size: 14rem;
    width: 100%;
  }
}
.sec-contact .tel-btn div {
  display: flex;
  align-items: center;
  gap: 20rem;
}
.sec-contact .tel-btn div span img {
  width: 55rem;
}
@media screen and (max-width: 768px) {
  .sec-contact .tel-btn div span img {
    width: 25rem;
  }
}
.sec-contact .tel-btn div span img.yellow {
  display: none;
}
.sec-contact .tel-btn div span img.white {
  display: block;
}
.sec-contact .tel-btn div strong {
  font-size: 76rem;
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  .sec-contact .tel-btn div strong {
    font-size: 26rem;
  }
}
.sec-contact .tel-btn small {
  font-size: 14rem;
}
@media screen and (max-width: 768px) {
  .sec-contact .tel-btn small {
    width: 100%;
    text-align: center;
  }
}
.sec-contact__main {
  max-width: 1300px;
  margin: auto;
  border: 2rem solid var(--gold);
  border-radius: 70rem;
  padding: 80rem 90rem;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .sec-contact__main {
    padding: 40rem 15rem;
    margin-inline: 20rem;
    border-radius: 30rem;
  }
}
.sec-contact__main span, .sec-contact__main label {
  color: #000;
}
.sec-contact__main__title {
  font-size: 30rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec-contact__main__title {
    font-size: 16rem;
    -webkit-text-stroke: 0rem #333;
  }
}
.sec-contact__main .contact-step {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 100rem 0 90rem;
}
@media screen and (max-width: 768px) {
  .sec-contact__main .contact-step {
    margin: 50rem 0 40rem;
  }
}
.sec-contact__main .contact-step__item {
  text-align: center;
  position: relative;
}
.sec-contact__main .contact-step__number {
  display: block;
  font-size: 42rem;
  font-weight: bold;
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .sec-contact__main .contact-step__number {
    top: -80%;
    font-size: 18rem;
  }
}
.sec-contact__main .contact-step__label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140rem;
  height: 77rem;
  border-radius: 999rem;
  border: 1rem solid #333;
  font-size: 20rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .sec-contact__main .contact-step__label {
    width: 80rem;
    height: 44rem;
    font-size: 12rem;
    font-weight: bold;
  }
}
.sec-contact__main .contact-step__line {
  width: 80rem;
  border-top: 2rem dashed #999;
}
.sec-contact__main .contact-step .is-active .contact-step__number {
  color: var(--gold);
}
.sec-contact__main .contact-step .is-active .contact-step__label {
  background: var(--gold);
  color: #fff;
}
.sec-contact__main .contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30rem;
  margin-bottom: 30rem;
}
@media screen and (max-width: 768px) {
  .sec-contact__main .contact-form__row {
    display: flex;
    flex-direction: column;
    gap: 0rem;
    margin-bottom: 0rem;
  }
}
.sec-contact__main .contact-form__item {
  margin-bottom: 30rem;
  font-size: 18rem;
}
@media screen and (max-width: 768px) {
  .sec-contact__main .contact-form__item {
    font-size: 12rem;
    margin-bottom: 20rem;
  }
}
.sec-contact__main .contact-form label {
  display: block;
  font-weight: bold;
}
.sec-contact__main .contact-form label span {
  margin-left: 10rem;
  color: red;
}
.sec-contact__main .contact-form input {
  width: 100%;
  height: 64rem;
  padding: 0 20rem;
  border: 1rem solid #444;
  border-radius: 10rem;
  font-size: 18rem;
  background-color: #fbf9f4;
}
@media screen and (max-width: 768px) {
  .sec-contact__main .contact-form input {
    height: 38rem;
    margin-top: 10rem;
    font-size: 12.5rem;
  }
}
.sec-contact__main .contact-form textarea {
  width: 100%;
  height: 240rem;
  padding: 20rem;
  border: 1rem solid #444;
  border-radius: 10rem;
  resize: vertical;
  background-color: #fbf9f4;
}
@media screen and (max-width: 768px) {
  .sec-contact__main .contact-form textarea {
    margin-top: 10rem;
    height: 150rem;
  }
}
.sec-contact__main .contact-form .contact-privacy {
  border: 1rem solid #444;
  border-radius: 10rem;
  padding: 50rem;
  margin-bottom: 30rem;
  font-size: 18rem;
  color: #000;
  background-color: #fbf9f4;
}
@media screen and (max-width: 768px) {
  .sec-contact__main .contact-form .contact-privacy {
    padding: 20rem;
    font-size: 12rem;
  }
}
.sec-contact__main .contact-form .contact-privacy__body {
  height: 180rem;
  overflow-y: scroll;
  overscroll-behavior: contain;
  line-height: 2;
  padding-right: 20rem;
}
@media screen and (max-width: 768px) {
  .sec-contact__main .contact-form .contact-privacy__body {
    height: 130rem;
  }
}
.sec-contact__main .contact-form .contact-check {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.sec-contact__main .contact-form .contact-check input {
  display: none;
}
.sec-contact__main .contact-form .contact-check .checkmark {
  width: 24px;
  height: 24px;
  border: 2px solid #bdbdbd;
  border-radius: 50%;
  background: #fff;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.sec-contact__main .contact-form .contact-check .checkmark::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid #6cc04a;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.sec-contact__main .contact-form .contact-check input:checked + .checkmark {
  border-color: #6cc04a;
}
.sec-contact__main .contact-form .contact-check input:checked + .checkmark::after {
  opacity: 1;
}
.sec-contact__main .contact-form .contact-check .text {
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}
.sec-contact__main .contact-form .contact-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220rem;
  height: 70rem;
  margin: auto;
  margin-top: 50rem;
  border: none;
  border: 1px solid #444;
  border-radius: 999rem;
  background: var(--gold);
  color: #fff;
  font-size: 18rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .sec-contact__main .contact-form .contact-submit {
    font-size: 16rem;
    width: 220rem;
    height: 45rem;
    margin-top: 30rem;
  }
}
.sec-contact__main .contact-form .contact-submit:hover {
  background: #fff;
  color: var(--gold);
}/*# sourceMappingURL=style.css.map */