/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,*::before,*::after{box-sizing:border-box}
*{margin:0}
html,body{height:100%}
body{line-height:1.5;-webkit-font-smoothing:antialiased}
img,picture,video,canvas,svg{display:block;max-width:100%}
input,button,textarea,select{font:inherit}
p,h1,h2,h3,h4,h5,h6{overflow-wrap:break-word}
#root,#__next{isolation:isolate}
/* reset margin & padding */
body, div, dl, dt, dd, ul, ol, li, hr, h1, h2, h3, h4, h5, h6, address,
pre, code, form, fieldset, legend, input, button, textarea, p, blockquote,
table, th, td, iframe, form, fieldset, input, button, select, optgroup, option,
textarea, label, legend, span, em, strong, dfn, code, samp, kbd, var, cite, abbr,
acronym, q, br, ins, del, a, img, object, figure, figcaption {
    margin: 0;
    padding: 0;
}
/* set base font size = 1.4rem = 14px */
html {
    /* on html element's font size = 62.5%, 1rem ≒ 10px */
    font-size: 62.5%;
}
/* remove table border's habit  */
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* remove list style */
ul, li {
    list-style: none;
}
img {
    vertical-align: bottom;
}
/*

@tailwind base;
@tailwind components;
@tailwind utilities;
*/
@layer utilities, base, special;
/*
  ! tailwindcss v3.3.3 | MIT License | https://tailwindcss.com
*/
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
*/
html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}
*, ::before, ::after{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / 0.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }
::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / 0.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }
.pointer-events-none{pointer-events:none}
.fixed{position:fixed}
.absolute{position:absolute}
.relative{position:relative}
.sticky{position:sticky}
.bottom-0{bottom:0}
.left-0{left:0}
.right-0{right:0}
.top-0{top:0}
.z-50{z-index:50}
.mx-auto{margin-left:auto;margin-right:auto}
.\!mt-0{margin-top:0 !important}
.mb-\[3rem\]{margin-bottom:3rem}
.mb-\[5rem\]{margin-bottom:5rem}
.mr-\[16px\]{margin-right:16px}
.mt-\[2rem\]{margin-top:2rem}
.mt-\[56px\]{margin-top:56px}
.block{display:block}
.inline-block{display:inline-block}
.flex{display:flex}
.table{display:table}
.hidden{display:none}
.h-full{height:100%}
.w-full{width:100%}
.translate-y-1\/2{--tw-translate-y:50%;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}
.transform{transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}
.cursor-pointer{cursor:pointer}
.flex-col{flex-direction:column}
.flex-wrap{flex-wrap:wrap}
.items-start{align-items:flex-start}
.items-center{align-items:center}
.justify-center{justify-content:center}
.justify-between{justify-content:space-between}
.gap-4{gap:1rem}
.gap-\[3rem\]{gap:3rem}
.overflow-hidden{overflow:hidden}
.whitespace-nowrap{white-space:nowrap}
.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}
.object-cover{-o-object-fit:cover;object-fit:cover}
.object-center{-o-object-position:center;object-position:center}
.text-left{text-align:left}
.text-center{text-align:center}
.font-bold{font-weight:700}
.italic{font-style:italic}
.text-white{--tw-text-opacity:1;color:rgb(255 255 255 / var(--tw-text-opacity))}
.outline{outline-style:solid}
.transition{transition-property:color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;transition-property:color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;transition-property:color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}
:root {
  --primary: #B274BA;
  --smooth: cubic-bezier(0.11, 0.85, 0.14, 1);
  --smooth1: cubic-bezier(.32,.24,.14,1);
  --smoothSoft: cubic-bezier(0.2, 0.65, 0.14, 1);
  --smooth-skew: cubic-bezier(0, 0.4, 0.1, 1);
  --easeOut: cubic-bezier(0, 0.77, 0.54, 1);
  --smooth-mini: cubic-bezier(0.11, 0.85, 0.14, 1);
  --bounce: cubic-bezier(0.17, 0.57, 0.77, 1.4);
  --bounce1: cubic-bezier(.03,1.09,.95,1.6);
}
/***********************************************************
  breakpoints 
***********************************************************/
/***********************************************************
  main 
***********************************************************/
html {
    font-size: 62.5%;
    height: auto;
}
@media (min-width: 1600px) {
html {
        font-size: 10px
}
    }
@media (min-width: 768px) and (max-width: 1024px) {
html {
        font-size: 1vw
}
    }
@media (max-width: 767px) {
html {
        font-size: 2.66vw
}
    }
body {
    position: relative;
    max-width: 100vw;
    height: auto;
    overflow-x: hidden;
    background-color: #fff;
    line-height: 1;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #000;
}
@media (min-width: 768px) {
.hidden-sp {
        display: block
}
    }
@media (max-width: 767px) {
.hidden-sp {
        display: none !important
}
    }
@media (min-width: 768px) {
.hidden-pc {
        display: none !important
}
    }
@media (max-width: 767px) {
.hidden-pc {
        display: block
}
    }
@media (max-width: 1024px) {
.br-tb {
        display: block
}
    }
@media (min-width: 1025px) {
.br-tb {
        display: none
}
    }
.pointer-events-none {
    pointer-events: none !important; 
}
/***********************************************************
  fade 
***********************************************************/
.fadeIn-normal {
    opacity: 0;
    transform: translate3d(0, 5px, 0);
    animation: fadeIn-normal 1200ms forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.fadeIn-normal-observer {
    opacity: 0;
    transform: translate3d(0, 5px, 0);
}
.fadeIn-normal-observer.-disp {
    animation: fadeIn-normal 2000ms forwards cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes fadeIn-normal {
    0% {
        opacity: 0;
        transform: translate3d(0, 5px, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
.parallax-target {
    will-change: transform;
    transition: transform 0.1s linear;
}
@media (max-width: 767px) {
.parallax-target {
        transition: transform 0.2s linear
}
    }
/***********************************************************
  layout 
***********************************************************/
button {
    outline: none;
    border: none;
}
.btn-bg-normal {
    
}
img {
    width: 100%;
    max-width: 100%;
}
.parallax img {
    will-change: transform;
    transition: transform 0.1s linear;
}
/***********************************************************
  layout 
***********************************************************/
.inner {
    width: 90%;
    max-width: 1440px;
    margin-right: auto;
    margin-left: auto;
}
@media (max-width: 767px) {
.inner {
        width: 90%
}
    }
/***********************************************************
  font 
***********************************************************/
.font-fair {
    font-family: "Playfair Display", serif;
}
.font-mincho {
    font-family: "游明朝", "Yu Mincho", "游明朝体", YuMincho, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}
/***********************************************************
  heading 
***********************************************************/
h1 {
    font-family: "游明朝", "Yu Mincho", "游明朝体", YuMincho, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
    color: #FFF;
    font-size: 12rem;
    font-style: normal;
    font-weight: 600;
    line-height: 14rem;
    letter-spacing: -0.4rem;
}
h2 {
    font-family: "Playfair Display", serif;
    font-size: 8rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.2rem;
    text-indent: 0.2rem;
}
@media (max-width: 767px) {
h2 {
        font-size: 5rem;
        font-style: normal;
        font-weight: 700;
        line-height: 0.8;
        letter-spacing: -0.1rem
}
    }
.h2-sub {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    color: var(--primary);
    font-size: 2.2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.8;
    margin-top: 1.6rem;
    font-family: "YuGothic", sans-serif;
}
@media (max-width: 767px) {
.h2-sub {
        font-size: 1.8rem;
        line-height: 0;
        margin-top: 1.6rem;
        gap: 1rem
}
    }
.h2-sub span {
        font-weight: 600;
    }
.common-sparkle {
    width: 3.4rem;
    height: 3.4rem;
}
.common-sparkle svg {
        width: 100%;
        height: 100%;
    }
@media (max-width: 767px) {
.common-sparkle {
        width: 2rem;
        height: 2rem
}
    }
/***********************************************************
  button
***********************************************************/
.cb {
    height: 4.6rem;
    border-radius: 100px;
    padding: 0 2.4rem;
    color: #fff;
    color: #FFF;
    align-items: center;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.2rem;
    background-color: var(--primary);
    display: inline-flex;
    gap: 1.4rem;
    transition: 0.4s ease-in-out;
    border: 1px solid var(--primary);
}
.cb:hover {
        background-color: #fff;
        color: var(--primary);
    }
.cb:hover .cb-out rect {
                stroke: var(--primary);
            }
.cb:hover .cb-out path {
                stroke: var(--primary);
            }
.cb-round {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    border: 1px solid var(--primary);
    transition: 0.4s ease-in-out;
}
.cb-round.is-white {
        background-color: #fff;
    }
.cb-round.is-white .cb-arrow path {
                fill: var(--primary);
            }
.cb-round-parent:hover .cb-round {
            background-color: #fff;
        }
.cb-round-parent:hover .cb-arrow path {
                fill: var(--primary);
            }
.cb-round-parent-white:hover .cb-round {
            background-color: var(--primary);
        }
.cb-round-parent-white:hover .cb-arrow path {
                fill: #fff;
            }
.cb-arrow {
    width: 1rem;
}
.cb-arrow path {
        transition: fill 0.4s ease-in-out;
    }
.cb-out rect {
        transition: stroke 0.4s ease-in-out;
    }
.cb-out path {
        transition: stroke 0.4s ease-in-out;
    }
.cb-more {
    width: 27rem;
    height: 7rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.3rem 0 3.6rem;
    color: #fff;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background-color: var(--primary);
    border: 1px solid var(--primary);
    transition: 0.4s ease-in-out;
}
.cb-more.is-bordered {
        background-color: #fff;
        border: 1px solid var(--primary);
        color: var(--primary);
    }
@media (max-width: 767px) {
.cb-more {
        width: 24rem
}
    }
.cb-more:hover {
        color: var(--primary);
        background-color: #fff;
    }
.cb-more:hover .cb-round {
            background-color: var(--primary);
        }
.cb-more:hover .cb-arrow path {
                fill: #fff;
            }
.cb-more:hover .cb-out rect {
                stroke: #fff;
            }
.cb-more:hover .cb-out path {
                stroke: #fff;
            }
/* Anchor button (pill with colored circle + down arrow) */
.cb-anchor {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.8rem 1.5rem 3.8rem;
    min-width: 22.6rem;
    height: 7rem;
    background: #fff;
    border: 1px solid #333;
    border-radius: 100px;
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    transition: 0.3s ease;
}
@media (max-width: 767px) {
.cb-anchor {
        min-width: 28rem
}
    }
.cb-anchor:hover {
        opacity: 0.7;
    }
.cb-anchor-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
}
.cb-anchor-circle.is-pink {
        background: #F8AFA6;
    }
.cb-anchor-circle.is-yellow {
        background: #FCE77C;
    }
.cb-anchor-circle.is-blue {
        background: #A7D8F0;
    }
:root {
    --icon-hamburger-size: 3rem;
    --icon-hamburger-size-sp: 3.2rem;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 10;
    background-color: #fff;
    color: #000;
    transition: background-color 0.4s ease-in-out;
}
.header-bar {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
}
@media (max-width: 767px) {
.header-bar {
        align-items: center;
        padding: 1.1rem 0
}
    }
.header-bar .cb {
        white-space: nowrap;
    }
.header-right {
    display: flex;
    align-items: center;
    gap: 5rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
.header-right {
        gap: 2vw
}
    }
@media (max-width: 767px) {
.header-right {
        display: none
}
    }
.header-links {
    display: flex;
    align-items: center;
    gap: 4rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
.header-links {
        gap: 2vw
}
    }
.header-link {
    font-size: 1vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.2rem;
    transition: opacity 0.4s ease-in-out;
    white-space: nowrap;
}
@media (min-width: 1600px) {
.header-link {
        font-size: 16px
}
    }
@media (min-width: 768px) and (max-width: 1024px) {
.header-link {
        font-size: 1.2vw
}
    }
.header-link:hover {
        opacity: 0.5;
    }
.header-logo {
    width: 20%;
    display: block;
}
@media (min-width: 1600px) {
.header-logo {
        width: 29.6rem
}
    }
@media (max-width: 767px) {
.header-logo {
        width: 20rem
}
    }
.menu-btn {
    display: none;
}
@media (max-width: 767px) {
.menu-btn {
        display: block
}
    }
.header .is-white {
        display: none;
    }
.header.is-top {
    color: #fff;
    background-color: transparent;
}
.header.is-top .is-white {
        display: block;
    }
.header.is-top .is-default {
        display: none;
    }
.menu {
    position: fixed;
    z-index: 100;
    background-color: #404040;
    width: 100vw;
    height: 100vh;
    display: none;
}
.menu-bar {
    height: 6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3.5% 0 5%;
}
.menu-body {
    height: calc(100vh - 6rem);
    overflow-y: auto;
    padding: 2rem 5% 4rem;
    color: #fff;
}
.menu-links {
    display: flex;
    flex-direction: column;
}
.menu-link {
    display: block;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 2rem 0;
}
.menu-link span {
        font-family: "Playfair Display", serif;
        font-size: 2.4rem;
        font-weight: 700;
        line-height: 1.2;
        font-style: normal;
    }
.menu-link-jp {
    position: absolute;
    left: 70%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    white-space: nowrap;
}
.menu-side {
    width: 100%;
    margin-top: 5rem;
}
.menu-side-item {
    padding-bottom: 1rem;
    border-bottom: 1px solid #fff;
}
.menu-side-item + .menu-side-item {
        margin-top: 2.5rem;
    }
.menu-side-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 1rem;
}
.menu-side-link span {
        font-size: 2.4rem;
        font-style: normal;
        font-weight: 700;
        line-height: 1;
    }
.menu-side-link .recruit-jp {
        position: absolute;
        left: 100%;
        bottom: 0;
        font-size: 1.4rem;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-left: 2rem;
        white-space: nowrap;
    }
.menu-side-link .side-icon {
        margin-top: 0.5rem;
    }
.footer {
    background-color: #404040;
    color: #fff;
    padding: 9rem 0 7rem;
    overflow: hidden;
}
.footer .inner {
        position: relative;
    }
@media (max-width: 767px) {
.footer {
        padding: 2.5rem 0 3rem
}
    }
.footer-logo {
    width: 33rem;
    transition: opacity 0.4s ease-in-out;
}
.footer-logo:hover {
        opacity: 0.5;
    }
@media (max-width: 767px) {
.footer-logo {
        width: 23.7rem
}
    }
.footer-icon {
    pointer-events: none;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) scale(1.4);
    width: 86.7rem;
    opacity: 0.06;
    margin-right: -5%;
}
@media (max-width: 767px) {
.footer-icon {
        width: 32rem;
        top: -3rem;
        transform: scale(1.4);
        transform-origin: right;
        margin-right: -24vw
}
    }
.footer-icon svg {
        width: 100%;
    }
.footer-flex {
    margin-top: 7rem;
    display: flex;
    justify-content: space-between;
}
@media (max-width: 767px) {
.footer-flex {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 3.5rem;
        gap: 4rem
}
    }
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}
@media (max-width: 767px) {
.footer-links {
        gap: 1.5rem
}
    }
.footer-link {
    display: block;
    position: relative;
    transition: opacity 0.4s ease-in-out;
}
.footer-link:hover {
        opacity: 0.5;
    }
.footer-link span {
        font-family: "Playfair Display", serif;
        font-size: 4rem;
        font-style: normal;
        font-weight: 800;
        line-height: 1;
    }
@media (max-width: 767px) {
.footer-link span {
            font-size: 2.4rem;
            font-weight: 700;
            line-height: 1.2
    }
        }
.footer-link-jp {
    position: absolute;
    left: 100%;
    bottom: 0;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-left: 3.2rem;
    white-space: nowrap;
}
@media (max-width: 767px) {
.footer-link-jp {
        font-size: 1.4rem
}
    }
.footer-side {
    width: 37rem;
}
@media (max-width: 767px) {
.footer-side {
        width: 100%
}
    }
.footer-side-item {
    padding-bottom: 3.5rem;
    border-bottom: 1px solid #fff;
}
@media (max-width: 767px) {
.footer-side-item {
        padding-bottom: 1rem
}
    }
.footer-side-item + .footer-side-item {
        margin-top: 2.5rem;
    }
.footer-side-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 2.3rem;
    transition: opacity 0.4s ease-in-out;
}
.footer-side-link:hover {
        opacity: 0.5;
    }
@media (max-width: 767px) {
.footer-side-link {
        padding-right: 1rem
}
    }
.footer-side-link span {
        font-size: 4rem;
        font-style: normal;
        font-weight: 700;
        line-height: 1;
    }
@media (max-width: 767px) {
.footer-side-link span {
            font-size: 2.4rem
    }
        }
.footer-side-link .recruit-jp {
        position: absolute;
        left: 100%;
        bottom: 0;
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-left: 2rem;
        white-space: nowrap;
    }
@media (max-width: 767px) {
.footer-side-link .recruit-jp {
            font-size: 1.4rem
    }
        }
.footer-side-link .side-icon {
        margin-top: 0.5rem;
    }
.footer-bottom {
    margin-top: 11rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 767px) {
.footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 4rem
}
    }
.footer-privacy {
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: opacity 0.4s ease-in-out;
}
.footer-privacy:hover {
        opacity: 0.5;
    }
@media (max-width: 767px) {
.footer-privacy {
        font-size: 1.4rem
}
    }
.footer-copy {
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
@media (max-width: 767px) {
.footer-copy {
        font-size: 1.2rem;
        margin-top: 1.5rem
}
    }
.mask-frame {
    display: inline-block;
    overflow: hidden;
}
.mask-content {
    display: inline-block;
    transform: translateY(101%);
    transition: 1s var(--smooth);
}
.mask-parent.show .mask-content {
        transform: translateY(0);
    }
.delay1 {
    transition-delay: 0.1s !important;
}
.delay2 {
    transition-delay: 0.2s !important;
}
.delay3 {
    transition-delay: 0.3s !important;
}
.delay4 {
    transition-delay: 0.4s !important;
}
.delay5 {
    transition-delay: 0.5s !important;
}
.delay6 {
    transition-delay: 0.6s !important;
}
.delay7 {
    transition-delay: 0.7s !important;
}
.delay8 {
    transition-delay: 0.8s !important;
}
.delay9 {
    transition-delay: 0.9s !important;
}
.delay10 {
    transition-delay: 1s !important;
}
.delay12 {
    transition-delay: 1.2s !important;
}
.delay14 {
    transition-delay: 1.4s !important;
}
.delay16 {
    transition-delay: 1.6s !important;
}
.delay18 {
    transition-delay: 1.8s !important;
}
.delay20 {
    transition-delay: 2s !important;
}
.hide-fade-right {
    opacity: 0;
    transform: translateX(3rem);
    transition: transform 1s var(--smooth), opacity 0.6s ease-in-out;
}
.hide-fade-down {
    opacity: 0;
    transform: translateY(5rem);
    transition: transform 1s var(--smooth), opacity 0.6s ease-in-out;
}
.hide-fade-down1 {
    opacity: 0;
    transform: translateY(2rem);
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}
span.hide-fade-down {
    display: inline-block;
}
.hide-sparkle {
    opacity: 0;
    transform: translateX(5rem) rotate(360deg);
    transition: transform 1s var(--smooth), opacity 0.6s ease-in-out;
}
.anime-parent.show .hide-fade-right {
        opacity: 1;
        transform: none;
    }
.anime-parent.show .hide-fade-down {
        opacity: 1;
        transform: none;
    }
.anime-parent.show .hide-fade-down1 {
        opacity: 1;
        transform: none;
    }
.anime-parent.show .hide-sparkle {
        opacity: 1;
        transform: none;
    }
/* banner */
.banner {
    padding: 8rem;
    background: url('../img/common/banner-bg.png') center/cover no-repeat;
}
@media (max-width: 767px) {
.banner {
        padding: 6.1rem 5%;
        background: url('../img/common/sp/banner-bg.png') center/cover no-repeat
}
    }
.banner span {
    display: inline-block;
    position: relative;
    background-image: url('../img/common/ico_sparkle_white.svg');
    background-size: 100%;
    background-repeat: no-repeat;
}
.banner span img {
        transition: 0.4s ease-in-out;
    }
.banner .banner-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 2rem;
    overflow: hidden;
    transition: 0.4s ease-in-out;
}
@media (max-width: 767px) {
.banner .banner-box {
        flex-direction: column-reverse
}
    }
.banner .banner-text {
    position: relative;
    align-content: center;
    width: 45.5%;
    margin-left: 5%;
    padding: 0 5% 0 6%;
}
@media (max-width: 767px) {
.banner .banner-text {
        width: 100%;
        margin-left: 6%;
        margin-bottom: 24%;
        padding: 7.5% 14.5%
}
    }
.banner .banner-text span {
    position: absolute;
    top: 51%;
    left: 0;
    transform: translateY(-50%);
    width: 4.8rem;
}
@media (max-width: 767px) {
.banner .banner-text span {
        top: 52%;
        width: 3.2rem
}
    }
.banner .banner-text h5 {
    margin-bottom: 1.6rem;
    font-family: "Playfair Display", serif;
    font-size: 5rem;
    font-weight: bold;
    letter-spacing: inherit;
}
@media (max-width: 767px) {
.banner .banner-text h5 {
        margin-bottom: 0.6rem;
        font-size: 2.8rem
}
    }
.banner .banner-text p {
    font-size: 2rem;
    font-weight: normal;
}
@media (max-width: 767px) {
.banner .banner-text p {
        font-size: 1.6rem
}
    }
.banner .img {
    width: 54.5%;
    overflow: hidden;
}
@media (max-width: 767px) {
.banner .img {
        width: 100%
}
    }
.banner .img img {
        transition: 1.2s var(--smooth);
    }
.banner .cb-round {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    width: 5vw;
    height: 5vw;
    max-width: 6rem;
    max-height: 6rem;
    border: none;
}
@media (max-width: 767px) {
.banner .cb-round {
        bottom: 2rem;
        right: 2rem;
        width: 15vw;
        height: 15vw
}
    }
.banner .cb-round .cb-arrow {
    scale: 1.5;
}
.banner a:hover .banner-box {
        background-color: var(--primary);
        color: #fff;
    }
.banner a:hover .cb-round {
        background-color: var(--primary);
    }
.banner a:hover .cb-arrow path {
            fill: #fff;
        }
.banner a:hover .img img {
        transform: scale(1.1);
    }
.banner a:hover span img {
        opacity: 0;
    }
/* DEBUG BORDERS - remove when done
.ourwork .section { border: 2px solid red; }
.ourwork .inner { border: 2px dashed blue; }
.ourwork .map-header { border: 2px solid green; }
.ourwork .map-intro { border: 2px solid orange; }
.ourwork .anchor-btns { border: 2px solid purple; }
.ourwork .cb-anchor { border: 1px solid magenta; }
.ourwork .work-layout { border: 2px solid cyan; }
.ourwork .work-left { border: 2px solid lime; }
.ourwork .work-right { border: 2px solid gold; }
.ourwork .work-item { border: 2px dashed coral; }
.ourwork .work-item-text { border: 1px solid teal; }
.ourwork .work-item-img { border: 1px solid pink; }
END DEBUG BORDERS */
.ourwork .img img {
    width: 100%;
}
.ourwork .h2-sub {
    margin-top: 0.6rem;
}
@media (max-width: 767px) {
.ourwork .h2-sub {
        margin-top: 1.6rem
}
    }
.ourwork h2 {
    line-height: 0.98;
}
.ourwork .page-mv {
    margin-top: 6rem;
}
@media (max-width: 767px) {
.ourwork .page-mv {
        margin-top: 3.6rem
}
    }
.ourwork .flex {
    display: flex;
    justify-content: space-between;
    gap: 10%;
}
@media (max-width: 767px) {
.ourwork .flex {
        flex-direction: column;
        gap: 0
}
    }
.ourwork .flex-reverse {
    flex-direction: row-reverse;
}
@media (max-width: 767px) {
.ourwork .flex-reverse {
        flex-direction: column-reverse
};
    }
.ourwork .sec01 {
    padding: 13rem 0 12.7rem;
}
@media (max-width: 767px) {
.ourwork .sec01 {
        padding: 4rem 0 6.8rem
}
    }
.ourwork .sec02 {
    padding: 13.5rem 0 13rem;
}
@media (max-width: 767px) {
.ourwork .sec02 {
        padding: 5.8rem 0 6.6rem
}
    }
.ourwork .section .h3-caption {
    margin-bottom: 2.8rem;
    font-size: 1.6rem;
    color: #B274BA;
}
@media (max-width: 767px) {
.ourwork .section .h3-caption {
        margin-bottom: 1.8rem;
        font-size: 1.4rem
}
    }
.ourwork .section h3 {
    margin-bottom: 8.8rem;
    font-size: 4.8rem;
    font-weight: bold;
    letter-spacing: inherit;
    line-height: 1.1;
}
@media (max-width: 767px) {
.ourwork .section h3 {
        margin-bottom: 4.1rem;
        font-size: 2.8rem
}
    }
@media (max-width: 767px) {
.ourwork .sec02 h3 {
        margin-bottom: 4.9rem
}
    }
.ourwork .section h4 {
    /* margin-bottom: 2rem; */
    font-size: 2.8rem;
    letter-spacing: inherit;
    line-height: 1.8;
}
@media (max-width: 767px) {
.ourwork .section h4 {
        margin-bottom: 1.6rem;
        font-size: 2rem
}
    }
@media (max-width: 767px) {
.ourwork .sec02 h4 {
        margin-bottom: 2rem
}
    }
.ourwork .section .text {
    max-width: 64rem;
    font-size: 1.8rem;
    font-weight: normal;
    line-height: 1.75;
}
@media (max-width: 767px) {
.ourwork .section .text {
        font-size: 1.6rem
}
    }
.ourwork .section .img {
    width: 70%;
    align-content: center;
}
@media (max-width: 767px) {
.ourwork .section .img {
        width: 100%
}
    }
.ourwork .sec01 .img {
    max-width: 56.3rem;
}
.ourwork .sec02 .img {
    max-width: 36rem;
    margin: 0 3.5%;
}
@media (max-width: 767px) {
.ourwork .sec02 .img {
        max-width: 100%;
        margin: 0 auto 5.3rem;
        padding: 0 4.5rem
}
    }
/* Map Overview Section */
.ourwork .map-overview {
    padding: 8rem 0 0;
}
@media (max-width: 767px) {
.ourwork .map-overview {
        padding: 4rem 0 0
}
    }
.ourwork .map-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 6rem;
}
@media (max-width: 1200px) {
.ourwork .map-header {
        flex-direction: column;
        align-items: center
}
    }
@media (max-width: 767px) {
.ourwork .map-header {
        gap: 3rem;
        margin-bottom: 4rem
}
    }
.ourwork .map-intro {
    max-width: 70rem;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.78;
    white-space: nowrap;
}
@media (max-width: 767px) {
.ourwork .map-intro {
        white-space: normal
}
    }
.ourwork .anchor-btns {
    display: flex;
    gap: clamp(1rem, 1.2vw, 2rem);
    flex-shrink: 0;
}
@media (max-width: 767px) {
.ourwork .anchor-btns {
        flex-direction: row;
        justify-content: center;
        gap: 0;
        width: 100%
}
    }
.ourwork .anchor-btns .cb-anchor {
    min-width: clamp(16rem, 14vw, 22.6rem);
    height: clamp(5rem, 4.5vw, 7rem);
    padding: clamp(1rem, 1vw, 1.5rem) clamp(1.2rem, 1.2vw, 1.8rem) clamp(1rem, 1vw, 1.5rem) clamp(2.5rem, 2.5vw, 3.8rem);
    font-size: clamp(1.2rem, 1vw, 1.6rem);
}
.ourwork .anchor-btns .cb-anchor-circle {
    width: clamp(3rem, 2.5vw, 4rem);
    height: clamp(3rem, 2.5vw, 4rem);
}
/* Mobile anchor button redesign */
@media (max-width: 767px) {
    .ourwork .anchor-btns .cb-anchor {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.2rem;
        min-width: unset;
        width: 100%;
        height: auto;
        padding: 1.5rem 1rem;
        background: transparent;
        border: none;
        border-radius: 0;
        border-right: 1px solid #ccc;
        font-size: 1.4rem;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0;
    }
    .ourwork .anchor-btns .cb-anchor:last-child {
        border-right: none;
    }
    .ourwork .anchor-btns .cb-anchor-circle {
        width: 4rem;
        height: 4rem;
    }
    .ourwork .anchor-btns .cb-anchor-circle svg {
        width: 16px;
        height: 10px;
    }
}
.ourwork .map-visual {
    position: relative;
    padding-top: 170px; /* Space for cards that extend above map */
    padding-bottom: 100px; /* Space for cards that extend below map */
    margin-left: 130px;
    margin-right: 130px;
    width: 1333px;
}
/* Fixed width from Figma */
@media (max-width: 767px) {
.ourwork .map-visual {
        transform: scale(0.8);
        transform-origin: top left;
        margin-bottom: -270px
}
    }
.ourwork .map-scroll {
    position: relative; /* For swipe hint overlay positioning */
    overflow: hidden;
    max-width: 1600px;
    width: 100%;
    cursor: grab;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    height: 87vh; /* Constrain height to enable drag scrolling */
    scroll-margin-top: 10rem;
}
/* Offset for fixed header */
@media (max-width: 767px) {
.ourwork .map-scroll {
        height: auto; /* Full height, no vertical constraint */
        overflow-x: auto; /* Horizontal scroll only */
        overflow-y: hidden;
        scroll-margin-top: 7rem
}
    }
.ourwork .map-scroll::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}
.ourwork .map-scroll.is-dragging {
    cursor: grabbing;
}
.ourwork .map-visual .map-img {
    width: 100%;
    display: block;
    pointer-events: none; /* Prevent image drag, let clicks pass to container */
    -webkit-user-drag: none; /* Safari */
}
/* Desktop: show full map, no dragging */
@media (min-width: 768px) {
    .ourwork .map-scroll {
        height: auto;
        overflow: visible;
        cursor: default;
    }
    .ourwork .map-visual {
        position: relative;
        left: 50%;
        transform-origin: top center;
        margin-left: 0;
        margin-right: 0;
    }
}
/* Map entrance animation (desktop only) */
@media (min-width: 768px) {
    .ourwork .map-visual .map-img {
        opacity: 0;
        transition: opacity 0.6s ease;
    }
    .ourwork .map-card-wrapper {
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    /* Staggered delays for each card (0.15s apart, starting at 0.8s after map) */
    .ourwork .map-card-wrapper:nth-child(2) { transition-delay: 0.8s; }
    .ourwork .map-card-wrapper:nth-child(3) { transition-delay: 0.95s; }
    .ourwork .map-card-wrapper:nth-child(4) { transition-delay: 1.1s; }
    .ourwork .map-card-wrapper:nth-child(5) { transition-delay: 1.25s; }
    .ourwork .map-card-wrapper:nth-child(6) { transition-delay: 1.4s; }
    .ourwork .map-card-wrapper:nth-child(7) { transition-delay: 1.55s; }
    .ourwork .map-card-wrapper:nth-child(8) { transition-delay: 1.7s; }
    .ourwork .map-card-wrapper:nth-child(9) { transition-delay: 1.85s; }
    .ourwork .map-card-wrapper:nth-child(10) { transition-delay: 2.0s; }
    .ourwork .map-card-wrapper:nth-child(11) { transition-delay: 2.15s; }
    .ourwork .map-card-wrapper:nth-child(12) { transition-delay: 2.3s; }
    .ourwork .map-card-wrapper:nth-child(13) { transition-delay: 2.45s; }
    .ourwork .map-card-wrapper:nth-child(14) { transition-delay: 2.6s; }
    .ourwork .map-card-wrapper:nth-child(15) { transition-delay: 2.75s; }
    .ourwork .map-card-wrapper:nth-child(16) { transition-delay: 2.9s; }
    .ourwork .map-card-wrapper:nth-child(17) { transition-delay: 3.05s; }
    /* When map section is visible */
    .ourwork .map-overview.is-map-visible .map-img {
        opacity: 1;
    }
    .ourwork .map-overview.is-map-visible .map-card-wrapper {
        opacity: 1;
    }
}
/* Map Cards */
.ourwork .map-card-wrapper {
    position: absolute;
    overflow: visible;
}
.ourwork .map-card-wrapper .map-line {
    position: absolute;
    pointer-events: none;
    max-width: none;
    /* Each card defines its own top/right/left/transform for line positioning */
}
.ourwork .map-card {
    display: block;
    position: relative;
    text-decoration: none;
}
.ourwork .map-card-img {
    width: 218px;
    height: 150px;
    position: relative;
    border-radius: 18.6px;
    overflow: hidden;
    border: 1.86px solid transparent;
}
.ourwork .map-card-img::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    box-shadow: inset 0px 0px 0px 3.5px #FFFFFF;
    pointer-events: none;
}
.ourwork .map-card-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
}
.ourwork .map-card-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: #fff;
    border: 1.86px solid transparent;
    border-radius: 74px; /* Pill shape */
    margin-top: -18px; /* Overlap with image */
    margin-left: auto;
    margin-right: auto;
    width: 157px;
    position: relative;
    z-index: 1;
}
.ourwork .map-card-label .dot {
    position: absolute;
    left: 10px;
    width: 7.7px;
    height: 7.8px;
    border-radius: 50%;
    z-index: 0;
    transition: transform 0.4s ease;
}
.ourwork .map-card-label .text {
    font-family: "YuGothic", "Yu Gothic", sans-serif;
    font-size: 14.8px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.1em;
    color: #404040;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}
/* Dot expansion hover effect (desktop only) */
@media (min-width: 768px) {
    .ourwork .map-card-label {
        overflow: hidden;
    }
    .ourwork .map-card-label .text {
        transition: color 0.2s ease;
    }
    .ourwork .map-card:hover .map-card-label .text {
        color: #000;
    }
    /* Regular pills */
    .ourwork .map-card:hover .map-card-label .dot {
        transform: scale(50);
    }
    /* Wide pills: faster to match visual speed */
    .ourwork .map-card-label.is-wide .dot {
        transition-duration: 0.45s;
    }
    .ourwork .map-card:hover .map-card-label.is-wide .dot {
        transform: scale(75);
    }
}
/* Pink card (Racing) */
.ourwork .map-card.is-pink .map-card-img {
    border-color: #F8AFA6;
}
.ourwork .map-card.is-pink .map-card-label {
    border-color: #F8AFA6;
}
.ourwork .map-card.is-pink .map-card-label .dot {
    background: #F8AFA6;
}
/* Pink mobile hover/tap state - left to right fill */
@media (max-width: 767px) {
    .ourwork .map-card.is-pink .map-card-label {
        background: linear-gradient(to right, #F8AFA6, #F8AFA6) no-repeat left;
        background-color: #fff;
        background-size: 0% 100%;
        transition: background-size 0.3s ease;
    }
    .ourwork .map-card.is-pink:hover .map-card-label,
    .ourwork .map-card.is-pink:active .map-card-label {
        background-size: 100% 100%;
    }
    .ourwork .map-card.is-pink .map-card-label .text {
        transition: color 0.2s ease;
    }
    .ourwork .map-card.is-pink:hover .map-card-label .text,
    .ourwork .map-card.is-pink:active .map-card-label .text {
        color: #fff;
    }
}
/* Yellow card (Security) */
.ourwork .map-card.is-yellow .map-card-img {
    border-color: #FCE77C;
}
.ourwork .map-card.is-yellow .map-card-label {
    border-color: #FCE77C;
}
.ourwork .map-card.is-yellow .map-card-label .dot {
    background: #FCE77C;
}
/* Yellow mobile hover/tap state - left to right fill */
@media (max-width: 767px) {
    .ourwork .map-card.is-yellow .map-card-label {
        background: linear-gradient(to right, #FCE77C, #FCE77C) no-repeat left;
        background-color: #fff;
        background-size: 0% 100%;
        transition: background-size 0.3s ease;
    }
    .ourwork .map-card.is-yellow:hover .map-card-label,
    .ourwork .map-card.is-yellow:active .map-card-label {
        background-size: 100% 100%;
    }
    .ourwork .map-card.is-yellow .map-card-label .text {
        transition: color 0.2s ease;
    }
    .ourwork .map-card.is-yellow:hover .map-card-label .text,
    .ourwork .map-card.is-yellow:active .map-card-label .text {
        color: #fff;
    }
}
/* Blue card (Admin) */
.ourwork .map-card.is-blue .map-card-img {
    border-color: #A7D8F0;
}
.ourwork .map-card.is-blue .map-card-label {
    border-color: #A7D8F0;
}
.ourwork .map-card.is-blue .map-card-label .dot {
    background: #A7D8F0;
}
/* Blue mobile hover/tap state - left to right fill */
@media (max-width: 767px) {
    .ourwork .map-card.is-blue .map-card-label {
        background: linear-gradient(to right, #A7D8F0, #A7D8F0) no-repeat left;
        background-color: #fff;
        background-size: 0% 100%;
        transition: background-size 0.3s ease;
    }
    .ourwork .map-card.is-blue:hover .map-card-label,
    .ourwork .map-card.is-blue:active .map-card-label {
        background-size: 100% 100%;
    }
    .ourwork .map-card.is-blue .map-card-label .text {
        transition: color 0.2s ease;
    }
    .ourwork .map-card.is-blue:hover .map-card-label .text,
    .ourwork .map-card.is-blue:active .map-card-label .text {
        color: #fff;
    }
}
/* Blue wide label (slightly narrower than yellow) */
.ourwork .map-card.is-blue .map-card-label.is-wide {
    width: 243px;
    margin-left: -12.5px;
    margin-right: -12.5px;
}
/* Use asymmetric padding to shift text area right, making room for dot */
.ourwork .map-card.is-blue .map-card-label.is-wide {
    padding-left: 26px;
    padding-right: 10px;
}
/* Card positioning - 整馬 */
.ourwork .map-card-wrapper[data-card="seiba"] {
    left: 73%;
    top: 71%;
}
@media (max-width: 767px) {
.ourwork .map-card-wrapper[data-card="seiba"] {
        left: 74%;
        top: 67%
}
    }
.ourwork .map-card-wrapper[data-card="seiba"] .map-line-pc {
    top: -151%;
    left: -67%;
    /* transform: scale(1.5); */
    transform-origin: bottom right;
}
.ourwork .map-card-wrapper[data-card="seiba"] .map-line-sp {
    top: -302%;
    left: -40%;
}
/* Card positioning - 走路監視 */
.ourwork .map-card-wrapper[data-card="soro"] {
    left: 84%;
    top: 53%;
}
@media (max-width: 767px) {
.ourwork .map-card-wrapper[data-card="soro"] {
        left: 82%;
        top: 52%
}
    }
.ourwork .map-card-wrapper[data-card="soro"] .map-line {
    top: -60%;
    left: -51%;
}
/* Card positioning - 装鞍所 */
.ourwork .map-card-wrapper[data-card="soan"] {
    left: 89%;
    top: 36%;
}
@media (max-width: 767px) {
.ourwork .map-card-wrapper[data-card="soan"] {
        left: 85%;
        top: 35%
}
    }
.ourwork .map-card-wrapper[data-card="soan"] .map-line {
    top: -20%;
    right: 76%;
}
/* Card positioning - 検量 */
.ourwork .map-card-wrapper[data-card="kenryo"] {
    left: 83%;
    top: 20%;
}
@media (max-width: 767px) {
.ourwork .map-card-wrapper[data-card="kenryo"] {
        left: 80%;
        top: 26%
}
    }
.ourwork .map-card-wrapper[data-card="kenryo"] .map-line {
    top: -7%;
    right: 45%;
}
/* Card positioning - 検体採取 */
.ourwork .map-card-wrapper[data-card="kentai"] {
    left: 75%;
    top: 5%;
}
@media (max-width: 767px) {
.ourwork .map-card-wrapper[data-card="kentai"] {
        left: 65%;
        top: 21.5%
}
    }
.ourwork .map-card-wrapper[data-card="kentai"] .map-line {
    top: 38%;
    right: 37%;
    /* transform: scale(1.25); */
    transform-origin: bottom left;
}
/* Card positioning - 黄旗 */
.ourwork .map-card-wrapper[data-card="kibata"] {
    left: 55%;
    top: 86%;
}
@media (max-width: 767px) {
.ourwork .map-card-wrapper[data-card="kibata"] {
        left: 57%;
        top: 81%
}
    }
.ourwork .map-card-wrapper[data-card="kibata"] .map-line-pc {
    top: -224%;
    left: -30%;
    /* transform: scale(1.7); */
    transform-origin: bottom left;
}
.ourwork .map-card-wrapper[data-card="kibata"] .map-line-sp {
    top: -494%;
    left: 20%;
}
/* Card positioning - 白旗 */
.ourwork .map-card-wrapper[data-card="shirobata"] {
    left: 34.5%;
    top: 78%;
}
@media (max-width: 767px) {
.ourwork .map-card-wrapper[data-card="shirobata"] {
        left: 38%;
        top: 80%
}
    }
.ourwork .map-card-wrapper[data-card="shirobata"] .map-line-pc {
    top: -100%;
    right: -44%;
    /* transform: scale(1.3); */
}
.ourwork .map-card-wrapper[data-card="shirobata"] .map-line-sp {
    top: -307%;
    left: 48%;
}
/* Card positioning - 決勝審判 */
.ourwork .map-card-wrapper[data-card="kessho"] {
    left: 14%;
    top: 73%;
}
@media (max-width: 767px) {
.ourwork .map-card-wrapper[data-card="kessho"] {
        left: 26%;
        top: 70%
}
    }
.ourwork .map-card-wrapper[data-card="kessho"] .map-line-pc {
    top: -126%;
    right: -69%;
    /* transform: scale(1.25); */
}
.ourwork .map-card-wrapper[data-card="kessho"] .map-line-sp {
    top: -300%;
    left: 50%;
    transform: none;
}
/* Card positioning - 下見所 (swapped with お客様エリア) */
.ourwork .map-card-wrapper[data-card="shitami"] {
    left: -4%;
    top: 65%;
}
@media (max-width: 767px) {
.ourwork .map-card-wrapper[data-card="shitami"] {
        left: 10%;
        top: 67%
}
    }
.ourwork .map-card-wrapper[data-card="shitami"] .map-line-pc {
    top: -180%;
    left: 71%;
    /* transform: scale(2.5); */
}
.ourwork .map-card-wrapper[data-card="shitami"] .map-line-sp {
    top: -505%;
    left: 85%;
}
/* Card positioning - 業務エリア (Yellow) */
.ourwork .map-card-wrapper[data-card="gyomu-area"] {
    left: 55.5%;
    top: 12%;
}
.ourwork .map-card-wrapper[data-card="gyomu-area"] .map-line-pc {
    top: 40%;
    left: 10%;
}
.ourwork .map-card-wrapper[data-card="gyomu-area"] .map-line-sp {
    top: 20%;
    left: 15%;
}
/* Card positioning - 民間ガードマンへの指示・指導 (Yellow) */
.ourwork .map-card-wrapper[data-card="guardman"] {
    left: 16%;
    top: 25%;
}
@media (max-width: 767px) {
.ourwork .map-card-wrapper[data-card="guardman"] {
        left: 21%;
        top: 27%
}
    }
.ourwork .map-card-wrapper[data-card="guardman"] .map-line-pc {
    top: 0%;
    right: -61%;
}
.ourwork .map-card-wrapper[data-card="guardman"] .map-line-sp {
    top: -50%;
    left: 86%;
}
/* Card positioning - お客様エリア (Yellow, swapped with 下見所) */
.ourwork .map-card-wrapper[data-card="kyaku-area"] {
    left: -1%;
    top: 46%;
}
@media (max-width: 767px) {
.ourwork .map-card-wrapper[data-card="kyaku-area"] {
        left: 10%;
        top: 35%
}
    }
.ourwork .map-card-wrapper[data-card="kyaku-area"] .map-line-pc {
    top: -124%;
    left: 66%;
}
.ourwork .map-card-wrapper[data-card="kyaku-area"] .map-line-sp {
    top: 12%;
    left: 60%;
}
/* Card positioning - 場外発売所 (Yellow) */
.ourwork .map-card-wrapper[data-card="jogai"] {
    left: -5%;
    top: 28%;
}
.ourwork .map-card-wrapper[data-card="jogai"] .map-line-pc {
    top: -80%;
    left: 32%;
}
.ourwork .map-card-wrapper[data-card="jogai"] .map-line-sp {
    top: -157%;
    left: 61%;
}
/* Card positioning - 業務課 (Blue) - no map line */
.ourwork .map-card-wrapper[data-card="gyomuka"] {
    left: -4%;
    top: 1%;
}
@media (max-width: 767px) {
.ourwork .map-card-wrapper[data-card="gyomuka"] {
        left: 23%;
        top: 2.5%
}
    }
/* Card positioning - 総務企画課（総務グループ） (Blue) */
.ourwork .map-card-wrapper[data-card="somu-somu"] {
    left: 14%;
    top: 1%;
}
@media (max-width: 767px) {
.ourwork .map-card-wrapper[data-card="somu-somu"] {
        left: 30%;
        top: 8.5%
}
    }
.ourwork .map-card-wrapper[data-card="somu-somu"] .map-line-pc {
    top: 41%;
    left: 43%;
}
.ourwork .map-card-wrapper[data-card="somu-somu"] .map-line-sp {
    /* Adjust these to position the mobile line correctly */
    top: 56%;
    left: 28%;
}
.ourwork .map-card-wrapper[data-card="kentai"] .map-line-sp {
    top: 81%;
    left: 6%;
    transform: none;
}
.ourwork .map-card-wrapper[data-card="kenryo"] .map-line-sp {
    top: 1%;
    left: -28%;
    transform: none;
}
.ourwork .map-card-wrapper[data-card="soan"] .map-line-sp {
    top: -8%;
    left: -55%;
    transform: none;
}
.ourwork .map-card-wrapper[data-card="soro"] .map-line-sp {
    top: -106%;
    left: -26%;
    transform: none;
}
.ourwork .map-line-sp {
    /* background: rgba(255,0,0,0.3) */
}
/* Card positioning - 総務企画課（企画グループ） (Blue) - no map line */
.ourwork .map-card-wrapper[data-card="somu-kikaku"] {
    left: 33%;
    top: 1%;
}
@media (max-width: 767px) {
.ourwork .map-card-wrapper[data-card="somu-kikaku"] {
        left: 36.9%;
        top: 2.5%
}
    }
/* Medium label for mid-length titles */
.ourwork .map-card-label.is-medium {
    width: 200px;
    margin-left: auto;
    margin-right: auto;
}
/* Wide label for long titles */
.ourwork .map-card-label.is-wide {
    width: 276px;
    margin-left: -29px;
    margin-right: -29px;
}
/* Map swipe instruction overlay */
.ourwork .map-swipe-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.4s ease-out;
}
.ourwork .map-swipe-hint.is-hidden {
    opacity: 0;
    pointer-events: none;
}
/* Dim map when hint is visible */
.ourwork .map-visual {
    transition: opacity 0.4s ease-out;
}
.ourwork .map-scroll.is-hint-visible .map-visual {
    opacity: 0.4;
    pointer-events: none;
}
.ourwork .map-swipe-hint svg {
    display: block;
    max-width: none;
}
/* Mobile: smaller overlay */
@media (max-width: 767px) {
    .ourwork .map-swipe-hint svg {
        width: 120px;
        height: 120px;
    }
}
/* Hand swaying animation (left-right only) */
@keyframes swipe-hand-sway {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(6px);
    }
    50% {
        transform: translateX(0);
    }
    75% {
        transform: translateX(-6px);
    }
}
.ourwork .map-swipe-hint .swipe-hand {
    animation: swipe-hand-sway 1.5s ease-in-out infinite;
}
/* ========================================
   Mobile Map Cards - Horizontal compact card style
   ======================================== */
/* Map line visibility toggle for desktop/mobile */
.ourwork .map-line-sp {
    display: none;
}
@media (max-width: 767px) {
    .ourwork .map-line-pc {
        display: none;
    }
    .ourwork .map-line-sp {
        display: block;
    }

    /* Horizontal card layout - border on parent */
    .ourwork .map-card {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        width: 162px;
        height: 62px;
        border-radius: 8px;
        border: 1px solid transparent;
        overflow: hidden;
    }
    .ourwork .map-card.is-pink {
        border-color: #F8AFA6;
    }
    .ourwork .map-card.is-yellow {
        border-color: #FCE77C;
    }
    .ourwork .map-card.is-blue {
        border-color: #A7D8F0;
    }

    /* Image: left side */
    .ourwork .map-card-img {
        min-width: 60px;
        width: 60px;
        height: 100%;
        flex-shrink: 0;
        border-radius: 0;
        border: none;
        padding: 2px;
    }
    /* Keep white inset shadow, adjust radius for left side only */
    .ourwork .map-card-img::after {
        display: block;
        border-radius: 7px 0 0 7px;
        box-shadow: inset 0px 0px 0px 2px #FFFFFF;
    }

    /* Label: right side, no separate border */
    .ourwork .map-card-label {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 8px 10px;
        margin: 0;
        border-radius: 0;
        border: none;
        width: auto;
    }

    /* Hide the dot indicator on mobile */
    .ourwork .map-card-label .dot {
        display: none;
    }

    /* Adjust text size for mobile */
    .ourwork .map-card-label .text {
        font-size: 12px;
        line-height: 1.3;
        letter-spacing: 0.05em;
        white-space: normal;
    }

    /* Wider cards for long titles */
    .ourwork .map-card-wrapper[data-card="somu-kikaku"] .map-card,
    .ourwork .map-card-wrapper[data-card="gyomuka"] .map-card {
        width: 177px;
    }
    .ourwork .map-card-wrapper[data-card="guardman"] .map-card {
        width: 172px;
    }

    /* Reset wide label overrides on mobile */
    .ourwork .map-card-label.is-wide,
    .ourwork .map-card.is-blue .map-card-label.is-wide {
        width: auto;
        margin-left: 0;
        margin-right: 0;
        padding-left: 10px;
        padding-right: 10px;
    }
}
/* Work Section (shared styles for all 3 sections) */
.ourwork .work-section {
    position: relative;
    padding: 10rem 0;
    /* Creates isolated stacking context and clips fixed work-bg to section bounds */
    isolation: isolate;
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
}
@media (max-width: 767px) {
.ourwork .work-section {
        padding: 6rem 0
}
    }
/* Buffer between map and first work section (desktop only) */
@media (min-width: 768px) {
.ourwork .work-section:first-of-type {
        margin-top: 5rem
}
    }
.ourwork .work-layout {
    display: grid;
    grid-template-columns: minmax(auto, 43.7rem) minmax(auto, 68rem);
    justify-content: space-between;
}
@media (max-width: 767px) {
.ourwork .work-layout {
        grid-template-columns: 1fr;
        gap: 10rem
}
    }
.ourwork .work-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 43.7rem;
    /* Sticky: stays in grid, sticks while scrolling through section */
    position: sticky;
    top: 20vh;
    align-self: start;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 10;
}
@media (max-width: 767px) {
.ourwork .work-left {
        position: static;
        max-width: none
}
    }
/* Visible while any part of section is in viewport */
.ourwork .work-section.is-left-visible .work-left {
    opacity: 1;
    visibility: visible;
}
.ourwork .work-right {
    display: flex;
    flex-direction: column;
    gap: 10rem;
}
/* No container-level fade; individual items animate instead */
@media (max-width: 767px) {
.ourwork .work-right {
        gap: 5rem
}
    }
.ourwork .work-number {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2.8rem;
}
@media (max-width: 767px) {
.ourwork .work-number {
        font-size: 1.4rem;
        margin-bottom: 1.8rem
}
    }
.ourwork .work-number.is-pink {
    color: #EA877A;
}
.ourwork .work-number.is-yellow {
    color: #FFA366;
}
.ourwork .work-number.is-blue {
    color: #83B7D2;
}
.ourwork .work-section h3 {
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.04em;
    color: #404040;
    margin-bottom: 10.2rem;
}
@media (max-width: 767px) {
.ourwork .work-section h3 {
        font-size: 2.8rem;
        letter-spacing: 0.1em;
        margin-bottom: 4.1rem
}
    }
.ourwork .work-intro {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.1em;
    color: #404040;
}
.ourwork .back-to-map {
    width: 15.7rem;
    height: 5rem;
    display: flex;
    align-items: center;
    align-self: flex-end;
    justify-content: center;
    border-radius: 2.5rem;
    border: 1px solid #000;
    gap: 0.8rem;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.2;
    color: #333;
    white-space: nowrap;
    /* Animate in like work-items */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
@media (max-width: 767px) {
.ourwork .back-to-map {
        font-size: 1.4rem
}
    }
.ourwork .back-to-map.is-visible {
    opacity: 1;
    transform: translateY(0);
}
/* Work Items - fade in individually as they enter viewport */
.ourwork .work-item {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    scroll-margin-top: 10rem;
}
/* Offset for fixed header */
@media (max-width: 767px) {
.ourwork .work-item {
        scroll-margin-top: 7rem
}
    }
.ourwork .work-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.ourwork .work-item h4 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.43;
    letter-spacing: 0.1em;
    color: #404040;
    margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
.ourwork .work-item h4 {
        font-size: 2rem;
        line-height: 1;
        margin-bottom: 1.3rem
}
    }
.ourwork .work-item-text {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: -0.02em;
    color: #404040;
    margin-bottom: 1.6rem;
}
@media (max-width: 767px) {
.ourwork .work-item-text {
        line-height: 1.375;
        letter-spacing: 0
}
    }
.ourwork .work-item-img img {
    width: 100%;
    border-radius: 2rem;
}
/* Clip work-overview to contain fixed background */
.ourwork .work-overview {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
}
/* Unified fixed background with color transition */
.work-bg-fixed {
    position: fixed;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}
@media (max-width: 767px) {
.work-bg-fixed {
        top: 25%;
        transform: translateX(-47%)
}
    }
.work-bg-fixed.is-visible {
    opacity: 1;
}
.work-bg-fixed svg {
    width: 80vh;
}
@media (max-width: 767px) {
.work-bg-fixed svg {
        width: 80vw;
        max-width: none;
        height: auto
}
    }
.work-bg-fixed svg path {
    transition: fill 0.5s ease;
}
/* Section colors */
.work-bg-fixed[data-section="kyoso"] svg path {
    fill: #FCDFDB;
}
.work-bg-fixed[data-section="keibi"] svg path {
    fill: #FFF2B4;
}
.work-bg-fixed[data-section="jimu"] svg path {
    fill: #C1EAFF;
}
.ourwork .work-bg-mobile-top svg {
    max-width: none;
}
/* Mobile background decoration - absolute at top of section */
.ourwork .work-bg-mobile-top {
    display: none;
}
@media (max-width: 767px) {
.ourwork .work-bg-mobile-top {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
        pointer-events: none
}
    }
/* Staggered star animation for mobile top decoration */
.work-bg-mobile-top svg g > path {
    opacity: 0;
    transform: scale(0) rotate(-30deg);
    transform-origin: center;
    transform-box: fill-box;
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.work-bg-mobile-top.is-stars-visible svg g > path {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}
/* Staggered delays - stars pop in one by one */
.work-bg-mobile-top.is-stars-visible svg g > path:nth-child(1) { transition-delay: 0s; }
.work-bg-mobile-top.is-stars-visible svg g > path:nth-child(2) { transition-delay: 0.08s; }
.work-bg-mobile-top.is-stars-visible svg g > path:nth-child(3) { transition-delay: 0.16s; }
.work-bg-mobile-top.is-stars-visible svg g > path:nth-child(4) { transition-delay: 0.24s; }
.work-bg-mobile-top.is-stars-visible svg g > path:nth-child(5) { transition-delay: 0.32s; }
.ourwork .work-section .inner {
    position: relative;
    z-index: 1;
}
@media not all and (min-width: 768px){
.max-sm\:mb-\[4rem\]{margin-bottom:4rem}
.max-sm\:flex-col{flex-direction:column}
.max-sm\:items-start{align-items:flex-start}}
@media (min-width: 1024px){
.md\:flex{display:flex}
.md\:hidden{display:none}
.md\:flex-col{flex-direction:column}
.md\:justify-center{justify-content:center}}

