@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Joan&family=Jost:ital,wght@0,100..900;1,100..900&family=Pacifico&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
:root {
  --white: #FFFFFF;
  --text: #5C5C5C;
  --color-primary: #ff5c3f;
  --color-accent: #ebded1;
  --colour-light-gray: #A1A1A1;
  --font-gothic: "Zen Kaku Gothic New", sans-serif;
  --font-joan: "Joan", serif;
  --font-jost: "Jost", sans-serif;
  --font-figtreet: "Figtree", sans-serif;
  --font-pacifico: "Pacifico", cursive;
}

/* =======================================================
* breakpoint
* ======================================================= */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.6;
  font-family: sans-serif;
  color: var(--text);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

p {
  margin: 0;
}

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border-style: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

::-webkit-input-placeholder {
  color: #9c9c9c;
  opacity: 1;
}

::-moz-placeholder {
  color: #9c9c9c;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #9c9c9c;
  opacity: 1;
}

::-ms-input-placeholder {
  color: #9c9c9c;
  opacity: 1;
}

::placeholder {
  color: #9c9c9c;
  opacity: 1;
}

fieldset {
  margin: 0;
  padding: 0;
  border: none;
}

legend {
  padding: 0;
  margin: 0;
}

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

address {
  font-style: normal;
  line-height: 1.8;
}

figure {
  margin: 0;
}

body {
  font-family: var(--font-gothic);
  background: #fcf2ea;
}

.section {
  padding: 50px 0;
}
@media screen and (min-width: 1025px) {
  .section {
    padding: 80px 0;
  }
}
.section .inner {
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .section .inner {
    padding: 0 40px;
  }
}
@media screen and (min-width: 1025px) {
  .section .inner {
    padding: 0 60px;
  }
}

p {
  line-height: 2;
}

.textBox p {
  line-height: 1.8;
}
.textBox p:not(:last-child) {
  margin-bottom: 12px;
}

/* =======================================================
* pc/sp切り替え
* ======================================================= */
.pc {
  display: none;
}
@media screen and (min-width: 600px) {
  .pc {
    display: block;
  }
}

.sp {
  display: block;
}
@media screen and (min-width: 600px) {
  .sp {
    display: none;
  }
}

/* =======================================================
* btn
* ======================================================= */
.link_btn {
  text-align: right;
}
.link_btn .btn_rect {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #222;
  font-size: 1rem;
  font-weight: 500;
}
.link_btn .btn_rect .btn_text {
  position: relative;
  padding-bottom: 4px;
}
.link_btn .btn_rect .btn_text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: currentColor;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.link_btn .btn_rect:hover .btn_text::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.link_btn .btn_rect:hover .btn_icon {
  background-color: #eee;
  color: #333;
}
.link_btn .btn_rect:not(:hover) .btn_text::after {
  -webkit-transform-origin: right;
          transform-origin: right;
}
.link_btn .btn_rect .btn_icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #333;
  color: #fff;
  font-size: 1.2rem;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.projectBtn a {
  border: 1px solid var(--color-primary);
  margin: 0 auto;
  position: relative;
  width: 90%;
  max-width: 360px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.05em;
  background: var(--white);
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  -webkit-transition: initial;
  transition: initial;
  overflow: hidden;
  text-decoration: none;
  border-radius: 50px;
  z-index: 2;
}
@media screen and (min-width: 1025px) {
  .projectBtn a {
    height: 80px;
  }
}
.projectBtn a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
  margin: auto;
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}
.projectBtn a .btnTxt {
  color: var(--color-primary);
  font-weight: 500;
  z-index: 2;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.projectBtn a:hover .btnTxt {
  color: var(--white);
}
.projectBtn a:hover::before {
  -webkit-transform: scale(6.2);
          transform: scale(6.2);
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

/* =======================================================
* heading
* ======================================================= */
.sectionHeading {
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-gothic);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 40px;
  color: #747373;
}
.sectionHeading .headingEn {
  font-family: var(--font-jost);
  font-size: clamp(2.375rem, 1.966rem + 2.05vw, 3.5rem);
  display: block;
  color: var(--color-primary);
}
.sectionHeading.sm_head .headingEn {
  font-size: clamp(2rem, 1.818rem + 0.91vw, 2.5rem);
}

/* =======================================================
* thanks
* ======================================================= */
.thanksSection {
  margin: 100px 0 80px;
}
.thanksSection .thanksTitle {
  font-size: clamp(1.5rem, 1.227rem + 1.36vw, 2.25rem);
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.8;
  color: var(--color-primary);
  text-align: center;
}
.thanksSection .thanksText {
  margin-bottom: 3rem;
  text-align: center;
}

/* =======================================================
* header
* ======================================================= */
:root {
  --headerHeight: 68px;
}
@media screen and (min-width: 1025px) {
  :root {
    --headerHeight: 88px;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--headerHeight);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  height: var(--headerHeight);
  z-index: 100;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 20px;
  -webkit-transition: background-color 0.25s ease, backdrop-filter 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: background-color 0.25s ease, backdrop-filter 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease, -webkit-box-shadow 0.25s ease;
  background-color: transparent;
}
@media screen and (min-width: 1025px) {
  .header {
    padding: 24px 32px;
  }
}
.header.isScrolled {
  background-color: rgba(255, 255, 255, 0.65);
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.header .headerLogo {
  position: relative;
  z-index: 300;
}
.header .headerLogo a {
  font-family: var(--font-figtreet);
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: var(--color-primary);
}
.header .pcNav {
  display: none;
}
@media screen and (min-width: 1025px) {
  .header .pcNav {
    display: block;
    margin-left: auto;
  }
}
.header .pcNav .pcNavList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
  margin-top: 5px;
}
.header .pcNav .pcNavLink {
  display: inline-block;
  font-family: var(--font-jost);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-primary);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.header .pcNav .pcNavLink::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.header .pcNav .pcNavLink:hover::after, .header .pcNav .pcNavLink:focus-visible::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.header .pcNav .pcNavLink:focus-visible {
  outline: none;
  -webkit-box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2);
  border-radius: 2px;
}

.hamburgerMorph {
  position: fixed;
  top: 10px;
  right: 20px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .hamburgerMorph {
    display: none;
  }
}
.hamburgerMorph .hamburgerMorphIcon {
  width: 100%;
  height: 100%;
}
.hamburgerMorph .hamburgerMorphIcon .hamburgerMorphLine {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 3;
  -webkit-transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburgerMorph .hamburgerMorphIcon .hamburgerMorphLine:nth-child(1) {
  stroke-dasharray: 60 207;
}
.hamburgerMorph .hamburgerMorphIcon .hamburgerMorphLine:nth-child(2) {
  stroke-dasharray: 60 60;
}
.hamburgerMorph .hamburgerMorphIcon .hamburgerMorphLine:nth-child(3) {
  stroke-dasharray: 60 207;
}
.hamburgerMorph.active .hamburgerMorphLine:nth-child(1) {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}
.hamburgerMorph.active .hamburgerMorphLine:nth-child(2) {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
}
.hamburgerMorph.active .hamburgerMorphLine:nth-child(3) {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}

.navMorph {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  background: #e7e7e7;
  clip-path: circle(0% at calc(100% - 44px) 44px);
  -webkit-transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}
@media screen and (min-width: 1025px) {
  .navMorph {
    display: none;
  }
}
.navMorph .navMorphWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  min-height: 100dvh;
  padding: calc(var(--headerHeight) + 16px) 20px max(24px, env(safe-area-inset-bottom));
}
.navMorph .navMorphList {
  width: min(680px, 100%);
  margin: 0 auto;
  padding: 16px 0 64px;
  text-align: center;
}
.navMorph .navMorphItem {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}
.navMorph .navMorphItem .navMorphLink {
  position: relative;
  display: inline-block;
  padding: 16px 0;
  font-size: 24px;
  color: var(--color-primary);
  overflow: hidden;
}
.navMorph .navMorphItem .navMorphLink .navMorphText,
.navMorph .navMorphItem .navMorphLink .navMorphHover {
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.navMorph .navMorphItem .navMorphLink .navMorphText {
  font-family: var(--font-jost);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.navMorph .navMorphItem .navMorphLink .navMorphHover {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}
.navMorph.active {
  clip-path: circle(150% at calc(100% - 44px) 44px);
  pointer-events: auto;
}
.navMorph.active .navMorphItem {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.navMorph.active .navMorphItem:nth-child(1) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.navMorph.active .navMorphItem:nth-child(2) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.navMorph.active .navMorphItem:nth-child(3) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.navMorph.active .navMorphItem:nth-child(4) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.navMorph.active .navMorphItem:nth-child(5) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.navMorph.active .navMorphItem:nth-child(6) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.navMorph:not(.active) {
  pointer-events: none;
}

body.menuOpen {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

/* =======================================================
* footer
* ======================================================= */
.siteFooter {
  background-color: var(--color-primary);
  position: relative;
  padding: 50px 0 80px;
}
@media screen and (min-width: 600px) {
  .siteFooter {
    padding: 80px 0 100px;
  }
}
.siteFooter .footerInner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
@media screen and (min-width: 600px) {
  .siteFooter .footerInner {
    padding: 0 60px;
  }
}
.siteFooter .footerInner .footerBrand {
  margin-bottom: 3rem;
}
.siteFooter .footerInner .footerBrand .footerLogo {
  font-family: var(--font-figtreet);
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: var(--white);
}
.siteFooter .footerInner .footerNav .navList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1025px) {
  .siteFooter .footerInner .footerNav .navList {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.siteFooter .footerInner .footerNav .navList .navItem a {
  display: inline-block;
  font-family: var(--font-jost);
  text-transform: uppercase;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  padding: 0;
}
@media screen and (min-width: 1025px) {
  .siteFooter .footerInner .footerNav .navList .navItem a {
    padding: 0 20px;
  }
}
.siteFooter .footerInner .footerNav .navList .navItem:first-child a {
  padding-left: 0;
}
.siteFooter .footerInner .socialList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-bottom: 2rem;
}
.siteFooter .footerInner .socialList .socialItem {
  line-height: 1;
}
.siteFooter .footerInner .socialList .socialItem a {
  color: var(--white);
}
.siteFooter .footerInner .socialList .socialItem a .fa-instagram {
  font-size: 2rem;
}
.siteFooter .footerInner .copyright {
  position: absolute;
  bottom: 20px;
  color: var(--white);
  font-family: var(--font-figtreet);
  letter-spacing: 0.1em;
}
.siteFooter .footerInner .pageTopWrap {
  position: absolute;
  bottom: 8%;
  right: 7%;
}
@media screen and (min-width: 1025px) {
  .siteFooter .footerInner .pageTopWrap {
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.siteFooter .footerInner .pageTopButton {
  position: relative;
  display: block;
  width: 120px;
  height: 120px;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
@media screen and (min-width: 600px) {
  .siteFooter .footerInner .pageTopButton {
    width: 140px;
    height: 140px;
  }
}
.siteFooter .footerInner .pageTopButton .arrow {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  line-height: 1;
  pointer-events: none;
}
.siteFooter .footerInner .pageTopButton .arrow i {
  color: var(--white);
  font-size: 14px;
  line-height: 1;
  display: block;
  -webkit-transform: translateY(-2%);
          transform: translateY(-2%);
}
@media screen and (min-width: 600px) {
  .siteFooter .footerInner .pageTopButton .arrow i {
    -webkit-transform: translateY(-3%);
            transform: translateY(-3%);
  }
}
.siteFooter .footerInner .pageTopButton .circleText {
  width: 100%;
  height: 100%;
  -webkit-animation: spin 8s linear infinite;
          animation: spin 8s linear infinite;
}
.siteFooter .footerInner .pageTopButton text {
  font-size: 10px;
  font-family: var(--font-jost);
  letter-spacing: 2px;
  fill: var(--white);
}
@media screen and (min-width: 600px) {
  .siteFooter .footerInner .pageTopButton text {
    font-size: 12px;
    letter-spacing: 3px;
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* =======================================================
* top_mv
* ======================================================= */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 700px;
}
.hero .heroCopy {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.hero .heroCopy .heroCopyImg {
  position: absolute;
  left: 50%;
  top: calc(50% - 160px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  max-width: 300px;
}
@media screen and (min-width: 600px) {
  .hero .heroCopy .heroCopyImg {
    top: calc(50% - 200px);
  }
}
.hero .heroCopy .heroCopyLogo {
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  font-size: clamp(2rem, 1.182rem + 4.09vw, 4.25rem);
  text-align: center;
  z-index: 1;
  margin-bottom: 3rem;
  position: relative;
  font-family: var(--font-figtreet);
}
.hero .heroCopy .heroCopyLogo::before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: var(--color-primary);
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.hero .heroCopy .heroCopyTxt p {
  font-size: 0.9rem;
  text-align: center;
  color: var(--color-primary);
}

.campaign {
  position: absolute;
  right: 5%;
  bottom: 2%;
  text-align: center;
  z-index: 2;
}
.campaign p {
  line-height: 1.8;
}
.campaign span {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

/* スクロールバー */
.scrollDown {
  position: absolute;
  bottom: 15%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  font-family: var(--font-jost);
  color: var(--color-primary);
}
@media screen and (min-width: 1025px) {
  .scrollDown {
    bottom: 40px;
  }
}
.scrollDown .scrollDownLink {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}
.scrollDown .scrollDownLink .scrollDownTxt {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2em;
}
.scrollDown .scrollDownLink .mouseIcon {
  width: 30px;
  height: 70px;
  border: 1px solid var(--color-primary);
  border-radius: 20px;
  position: relative;
  margin-inline: auto;
  margin-bottom: 6px;
}
.scrollDown .scrollDownLink .mouseIcon::before {
  content: "";
  width: 1px;
  height: 10px;
  position: absolute;
  top: 8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: var(--color-primary);
  border-radius: 2px;
  -webkit-animation: scroll 2s infinite;
          animation: scroll 2s infinite;
}

@-webkit-keyframes scroll {
  0% {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, 40px);
            transform: translate(-50%, 40px);
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, 40px);
            transform: translate(-50%, 40px);
  }
}
/* サークルイメージ */
.hero,
.serviceSection {
  overflow-x: clip;
  overflow-y: visible;
}

.circleDeco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  bottom: -24vh;
  left: 0;
  width: clamp(560px, 90vw, 1200px);
  aspect-ratio: 1/1;
  --deco-shift: -68%;
  -webkit-transform: translateX(var(--deco-shift));
          transform: translateX(var(--deco-shift));
  will-change: transform;
}
.circleDeco::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../public/img/circle-text.png) no-repeat center/contain;
  -webkit-animation: spin 50s linear infinite;
          animation: spin 50s linear infinite;
}
@media screen and (min-width: 600px) {
  .circleDeco {
    bottom: -34vh;
    width: clamp(620px, 82vw, 1400px);
    --deco-shift: -42%;
  }
}
@media screen and (min-width: 1025px) {
  .circleDeco {
    bottom: -44vh;
    width: clamp(780px, 60vw, 1600px);
    --deco-shift: -32%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .circleDeco::before {
    -webkit-animation: none;
            animation: none;
  }
}
@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* =======================================================
* message
* ======================================================= */
.messageSection {
  color: var(--color-primary);
  padding-bottom: 140px;
  position: relative;
}
@media screen and (min-width: 600px) {
  .messageSection {
    padding-bottom: 120px;
  }
}
.messageSection .messageTtl {
  font-size: clamp(1.5rem, 1.227rem + 1.36vw, 2.25rem);
  font-weight: 600;
  margin-bottom: 40px;
  line-height: 1.8;
}
@media screen and (min-width: 600px) {
  .messageSection .messageTtl {
    text-align: center;
  }
}
.messageSection .textBox p {
  line-height: 2;
}
@media screen and (min-width: 600px) {
  .messageSection .textBox p {
    text-align: center;
    font-size: 1.1rem;
    line-height: 2.8;
  }
}
.messageSection .messageBrand {
  font-family: var(--font-figtreet);
  letter-spacing: 0.1em;
  text-align: center;
  font-size: clamp(2.625rem, 1.398rem + 6.14vw, 6rem);
  font-weight: 700;
}
.messageSection .decoImg {
  position: absolute;
  right: 2%;
  bottom: 0%;
  max-width: 180px;
  height: auto;
  z-index: -1;
}
@media screen and (min-width: 600px) {
  .messageSection .decoImg {
    max-width: 200px;
  }
}
@media screen and (min-width: 1025px) {
  .messageSection .decoImg {
    right: 5%;
    max-width: 240px;
  }
}

/* =======================================================
* service
* ======================================================= */
.serviceSection {
  background-color: var(--color-primary);
  padding: 50px 0;
}
@media screen and (min-width: 600px) {
  .serviceSection {
    padding: 80px 0 140px;
  }
}
.serviceSection .columnWrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 600px) {
  .serviceSection .columnWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 40px;
  }
}
@media screen and (min-width: 1025px) {
  .serviceSection .columnWrap {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.serviceSection .rightColumn {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
@media screen and (min-width: 600px) {
  .serviceSection .rightColumn {
    min-width: 0;
    -webkit-box-flex: 1.7;
        -ms-flex: 1.7;
            flex: 1.7;
    position: relative;
  }
}
@media screen and (min-width: 1025px) {
  .serviceSection .rightColumn {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
  }
}
.serviceSection .leftColumn {
  color: var(--white);
}
@media screen and (min-width: 600px) {
  .serviceSection .leftColumn {
    min-width: 0;
    -webkit-box-flex: 1.3;
        -ms-flex: 1.3;
            flex: 1.3;
  }
}
@media screen and (min-width: 1025px) {
  .serviceSection .leftColumn {
    -webkit-box-flex: 0.8;
        -ms-flex: 0.8;
            flex: 0.8;
  }
}
.serviceSection .leftColumn .headingWrap {
  margin-bottom: 1rem;
}
@media screen and (min-width: 600px) {
  .serviceSection .leftColumn .headingWrap {
    margin-bottom: 2rem;
  }
}
.serviceSection .leftColumn .sectionHeading,
.serviceSection .leftColumn .headingEn {
  color: var(--white);
}
.serviceSection .serviceNav {
  display: none;
}
@media screen and (min-width: 600px) {
  .serviceSection .serviceNav {
    display: block;
    display: grid;
    gap: 8px;
  }
  .serviceSection .serviceNav .index {
    margin-right: 0.5rem;
    font-family: var(--font-jost);
  }
  .serviceSection .serviceNav button {
    border: none;
    background: none;
    font: inherit;
    color: var(--white);
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0.7;
    white-space: normal;
    word-break: break-word;
  }
  .serviceSection .serviceNav button.is-active {
    font-weight: 700;
    opacity: 1;
  }
}

/* スライドカード */
.serviceBox {
  background-color: var(--white);
  border-radius: 20px;
  overflow: hidden;
  min-height: 380px;
}
.serviceBox .boxInner {
  display: block;
}
@media screen and (min-width: 1025px) {
  .serviceBox .boxInner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.serviceBox .boxImg {
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 200px;
  background: url(../public/img/service02.jpg) no-repeat center/cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
@media screen and (min-width: 1025px) {
  .serviceBox .boxImg {
    width: 45%;
    max-width: 360px;
    min-height: 380px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.serviceBox:nth-child(1) .boxImg {
  background-image: url(../public/img/service-img-01.jpg);
}
.serviceBox:nth-child(2) .boxImg {
  background-image: url(../public/img/service-img-02.png);
}
.serviceBox:nth-child(3) .boxImg {
  background-image: url(../public/img/service-img-03.jpg);
}
.serviceBox:nth-child(4) .boxImg {
  background-image: url(../public/img/service-img-04.jpg);
}
.serviceBox .boxTxt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 0.5rem;
  padding: 25px;
}
@media screen and (min-width: 1025px) {
  .serviceBox .boxTxt {
    gap: 1rem;
    padding: 50px 30px;
  }
}
.serviceBox .boxTxt .serviceTtl {
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (min-width: 1025px) {
  .serviceBox .boxTxt .serviceTtl {
    font-size: 1.6rem;
  }
}
.serviceBox .boxTxt .serviceTtl span {
  font-size: 1rem;
  display: block;
}
.serviceBox .boxTxt .num {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1.4rem;
  font-family: var(--font-jost);
  line-height: 1;
}
@media screen and (min-width: 1025px) {
  .serviceBox .boxTxt .num {
    font-size: 2rem;
  }
}

/* コントローラー */
.swiper-controller {
  position: static;
  right: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 16px;
  margin-top: 30px;
}
@media screen and (min-width: 600px) {
  .swiper-controller {
    position: absolute;
    bottom: -80px;
  }
}
.swiper-controller .swiper-pagination {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0.8rem;
  font-family: var(--font-jost);
  color: var(--white);
  width: 50%;
  font-size: 1.2rem;
  margin-right: 0;
}
@media screen and (min-width: 600px) {
  .swiper-controller .swiper-pagination {
    margin-right: 40px;
    font-size: 1.6rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.swiper-controller .swiper-pagination .swiper-pagination-current,
.swiper-controller .swiper-pagination .swiper-pagination-total {
  width: 25px;
  text-align: center;
}
.swiper-controller .swiper-pagination::before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: var(--white);
}
@media screen and (min-width: 600px) {
  .swiper-controller .swiper-pagination::before {
    width: 40px;
    margin-right: 20px;
  }
}
.swiper-controller .swiper-button-prev,
.swiper-controller .swiper-button-next {
  position: static;
  width: 48px;
  height: 48px;
  border-radius: 50px;
  background: var(--white);
  color: var(--color-primary);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  --swiper-navigation-size: 16px;
}
.swiper-controller .swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
  background: var(--nav-bg-disabled, #fff);
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* =======================================================
* works
* ======================================================= */
.worksSection .worksList {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 0;
  margin: 2rem 0 0;
}
@media screen and (min-width: 600px) {
  .worksSection .worksList {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1025px) {
  .worksSection .worksList {
    gap: 3rem;
  }
}
.worksSection .worksList .worksItem {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.worksSection .worksList .worksItem:hover {
  opacity: 0.6;
}
.worksSection .worksList .worksItem .worksImg {
  margin-bottom: 0.5rem;
}
.worksSection .worksList .worksItem .worksImg img {
  border-radius: 10px;
}
.worksSection .worksList .worksItem .worksTtl {
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.8;
}
.worksSection .worksList .worksItem .worksTag {
  color: var(--color-primary);
  font-size: 0.9rem;
}

/* =======================================================
* profile
* ======================================================= */
.profileSection {
  background: var(--white);
  position: relative;
  z-index: 1;
}
.profileSection .profileMessage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media screen and (min-width: 600px) {
  .profileSection .profileMessage {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 2rem;
  }
}
.profileSection .profileMessage .profileImg {
  width: 90%;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 600px) {
  .profileSection .profileMessage .profileImg {
    margin-top: 3rem;
    width: 35%;
  }
}
@media screen and (min-width: 600px) {
  .profileSection .profileMessage .profileText {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.profileSection .profileMessage .profileText .profileTitle {
  font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 1.4rem;
  letter-spacing: 0.1em;
}
.profileSection .profileMessage .profileText .textBox {
  margin-bottom: 2rem;
}
.profileSection .profileMessage .profileText .profileName {
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: right;
}

/* 背景テキスト */
.bgFlow {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 100px;
  pointer-events: none;
  z-index: 0;
  -webkit-transform: translateY(-20%);
          transform: translateY(-20%);
}
@media screen and (min-width: 600px) {
  .bgFlow {
    -webkit-transform: translateY(-8%);
            transform: translateY(-8%);
  }
}
.bgFlow .flowSwiper {
  width: 100%;
  margin-inline: auto;
}
.bgFlow .flowSwiper .swiper-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.bgFlow .flowSwiper .swiper-slide {
  width: auto;
  font-weight: 600;
  font-size: 8rem;
  line-height: 1;
  color: rgba(0, 0, 0, 0.04);
  margin-right: 2rem;
  font-family: var(--font-jost);
  letter-spacing: 0.2em;
  white-space: nowrap;
}

/* タブメニュー */
.tabMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.tabMenu .tabBtn {
  padding: 5px 20px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 50px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  border: 1px solid var(--color-primary);
  text-transform: uppercase;
}
.tabMenu .tabBtn.is-active {
  color: var(--white);
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

/* タブの中身 */
.tabContent {
  padding: 20px 10px 0 10px;
  border-top: 1px solid var(--color-primary);
}
@media screen and (min-width: 600px) {
  .tabContent {
    padding: 34px 30px 0 30px;
  }
}
.tabContent .tabPanel {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.tabContent .tabPanel.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
}
.tabContent .tabPanel .tabItem {
  margin-bottom: 1em;
}
.tabContent .tabPanel .tabItem:not(:last-child) {
  margin-bottom: 1rem;
}
@media screen and (min-width: 600px) {
  .tabContent .tabPanel .tabItem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.tabContent .tabPanel .tabItem .tabTtl {
  color: var(--colour-light-gray);
}
@media screen and (min-width: 600px) {
  .tabContent .tabPanel .tabItem .tabTtl {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 180px;
            flex: 0 0 180px;
  }
}
.tabContent .tabPanel .tabItem .tabTxt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  line-height: 1.8;
}
.tabContent .tabPanel .tabItem .tabTxt span::after {
  content: " /";
  margin: 0 0.2em;
}
@media screen and (min-width: 600px) {
  .tabContent .tabPanel .tabItem .tabTxt span::after {
    margin: 0 0.4em;
  }
}
.tabContent .tabPanel .tabItem .tabTxt span:last-child::after {
  content: "";
  margin: 0;
}
.tabContent .tabPanel .careerList li {
  margin-bottom: 1em;
}
@media screen and (min-width: 600px) {
  .tabContent .tabPanel .careerList li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.tabContent .tabPanel .careerList li .careerYear {
  display: block;
  font-family: var(--font-jost);
  letter-spacing: 0.1em;
  color: var(--colour-light-gray);
}
@media screen and (min-width: 600px) {
  .tabContent .tabPanel .careerList li .careerYear {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 110px;
            flex: 0 0 110px;
  }
}
.tabContent .tabPanel .careerList li .careerDetail {
  line-height: 1.6;
}
@media screen and (min-width: 600px) {
  .tabContent .tabPanel .careerList li .careerDetail {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.tabContent .tabVision .tabTtl {
  margin-bottom: 0.5em;
}
.tabContent .tabVision .visionList li {
  position: relative;
  padding-left: 2em;
  margin-bottom: 1em;
  line-height: 1.6;
}
@media screen and (min-width: 600px) {
  .tabContent .tabVision .visionList li {
    padding-left: 3em;
  }
}
.tabContent .tabVision .visionList .num {
  position: absolute;
  left: 0;
  top: 2px;
  font-weight: 600;
  font-family: var(--font-jost);
  color: var(--color-primary);
  font-size: 0.9em;
  opacity: 0.7;
}

.imgDog {
  max-width: 160px;
  margin-left: auto;
  margin-top: -30px;
}

/* =======================================================
* top_contact
* ======================================================= */
.contactSection .headingWrap {
  margin-bottom: 3rem;
}
@media screen and (min-width: 1025px) {
  .contactSection .headingWrap {
    margin-bottom: 5rem;
  }
}
.contactSection .headingWrap .sectionHeading {
  text-align: left;
}
@media screen and (min-width: 1025px) {
  .contactSection .headingWrap .sectionHeading {
    text-align: center;
  }
}
.contactSection .headingWrap .textBox p {
  text-align: justify;
}
@media screen and (min-width: 1025px) {
  .contactSection .headingWrap .textBox p {
    text-align: center;
  }
}

/* ===== フォーム ===== */
.contactForm .contactFormList {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2rem;
}
@media screen and (min-width: 600px) {
  .contactForm .contactFormList {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
}
.contactForm .formItem {
  /* --- ラジオ（input と label が兄弟） --- */
}
.contactForm .formItem label,
.contactForm .formItem legend {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 700;
}
.contactForm .formItem label span,
.contactForm .formItem legend span {
  font-size: 0.8rem;
  margin-left: 1rem;
}
.contactForm .formItem label .req,
.contactForm .formItem legend .req {
  display: inline-block;
  margin-left: 12px;
  padding: 0.1rem 0.8rem;
  font-size: 0.7rem;
  color: var(--white);
  background-color: var(--color-primary);
  border-radius: 3px;
}
.contactForm .formItem input,
.contactForm .formItem textarea {
  width: 100%;
  padding: 1rem;
  line-height: 1.7;
  border-radius: 5px;
  background-color: var(--white);
}
@media screen and (min-width: 600px) {
  .contactForm .formItem input,
  .contactForm .formItem textarea {
    padding: 20px;
  }
}
.contactForm .formItem input::-webkit-input-placeholder, .contactForm .formItem textarea::-webkit-input-placeholder {
  color: #cfcfcf;
}
.contactForm .formItem input::-moz-placeholder, .contactForm .formItem textarea::-moz-placeholder {
  color: #cfcfcf;
}
.contactForm .formItem input:-ms-input-placeholder, .contactForm .formItem textarea:-ms-input-placeholder {
  color: #cfcfcf;
}
.contactForm .formItem input::-ms-input-placeholder, .contactForm .formItem textarea::-ms-input-placeholder {
  color: #cfcfcf;
}
.contactForm .formItem input::placeholder,
.contactForm .formItem textarea::placeholder {
  color: #cfcfcf;
}
.contactForm .formItem input:focus-visible,
.contactForm .formItem textarea:focus-visible {
  outline: 1px solid color-mix(in srgb, var(--color-primary) 70%, white);
  outline-offset: 1px;
}
.contactForm .formItem textarea {
  height: 360px;
  resize: vertical;
}
.contactForm .formItem .radioList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 26px;
  width: 100%;
}
.contactForm .formItem .radioItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.2;
}
.contactForm .formItem .radioItem .radioButton {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 1px solid var(--color-primary);
  border-radius: 9999px;
  cursor: pointer;
  background: var(--white);
}
.contactForm .formItem .radioItem .radioButton:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--color-primary) 70%, white);
  outline-offset: 2px;
}
.contactForm .formItem .radioItem .radioButton:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  border-radius: 9999px;
  background-color: var(--color-primary);
}
.contactForm .formItem .radioItem > label {
  cursor: pointer;
  font-size: 1rem;
  margin: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: inherit;
  font-weight: 500;
}
.contactForm .formActions {
  width: 90%;
  max-width: 500px;
  margin: 3rem auto 0;
}
.contactForm .formActions button {
  font-size: 1.1rem;
  background-color: var(--white);
  border: 1px solid var(--color-primary);
  width: 100%;
  height: 60px;
  border-radius: 50px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  color: var(--color-primary);
  letter-spacing: 0.1em;
}
@media screen and (min-width: 600px) {
  .contactForm .formActions button {
    height: 80px;
  }
}

/* =======================================================
* worksDetail
* ======================================================= */
.projectDetail {
  margin-top: 60px;
}
.projectDetail .projectHero .projectMock {
  margin-bottom: 2rem;
}
@media screen and (min-width: 600px) {
  .projectDetail .projectHero .projectMock {
    margin-bottom: 4rem;
  }
}
.projectDetail .projectHero .projectMock img {
  border-radius: 10px;
  -webkit-box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.18);
          box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}
.projectDetail .projectHero .projectHeader .projectTitle {
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: clamp(1.6rem, 1.25rem + 2vw, 2.4rem);
  line-height: 1.4;
  margin-bottom: 1rem;
}
.projectDetail .projectHero .projectHeader .projectTags {
  font-family: var(--font-jost);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-align: right;
}
.projectDetail .projectHero .projectInfo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.03);
  padding: 30px 20px;
  border-radius: 10px;
  margin-bottom: 2rem;
}
@media screen and (min-width: 600px) {
  .projectDetail .projectHero .projectInfo {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem 2rem;
    padding: 40px 50px;
    margin-bottom: 3rem;
  }
}
.projectDetail .projectHero .projectInfo .infoItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 1rem;
  margin: 0;
}
@media screen and (min-width: 600px) {
  .projectDetail .projectHero .projectInfo .infoItem {
    gap: 2rem;
  }
}
.projectDetail .projectHero .projectInfo .infoItem .infoLabel {
  font-family: var(--font-jost);
  font-size: 0.9rem;
  color: var(--colour-light-gray);
  letter-spacing: 0.1em;
  white-space: nowrap;
  width: 50px;
}
@media screen and (min-width: 600px) {
  .projectDetail .projectHero .projectInfo .infoItem .infoLabel {
    width: 70px;
  }
}
.projectDetail .projectHero .projectInfo .infoItem .infoContent a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-all;
}
.projectDetail .projectHero .projectDetails .detailList {
  display: grid;
  gap: 2rem;
  margin-bottom: 5rem;
}
@media screen and (min-width: 600px) {
  .projectDetail .projectHero .projectDetails .detailList {
    gap: 3rem;
  }
}
.projectDetail .projectHero .projectDetails .detailItem {
  display: grid;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 12px 16px;
}
@media screen and (min-width: 600px) {
  .projectDetail .projectHero .projectDetails .detailItem {
    grid-template-columns: 220px 1fr;
    gap: 12px 28px;
  }
}
.projectDetail .projectHero .projectDetails .detailTitle {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: var(--color-primary);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 10px;
}
.projectDetail .projectHero .projectDetails .detailTitle .detailSub {
  font-family: var(--font-jost);
  font-weight: 500;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: var(--colour-light-gray);
  white-space: nowrap;
}
.projectDetail .projectHero .projectDetails .detailText {
  line-height: 1.8;
}
.projectDetail .projectHero .projectDetails .detailText a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}/*# sourceMappingURL=main.css.map */