/*
  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;
    }
.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;
    }
: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
}
    }
.opening {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
}
.opening-inside {
    position: relative;
    width: 100vw;
    height: 100vw;
    min-height: 100vh;
    min-width: 100vh;
}
@media (max-width: 767px) {
.opening-inside {
        min-width: 100vh;
        height: 100vh
}
    }
.opening-g {
    will-change: transform;
    transition: transform 0.8s ease-in-out;
}
.main {
    position: relative;
}
.main-body {
    background-color: #fff;
    position: relative;
    z-index: 2;
}
.mv {
    height: 56.25vw;
    max-height: 1000px;
    min-height: 700px;
    position: sticky;
    top: 0;
    background-image: url('../img/top/kv.jpg');
    background-size: cover;
    background-position: center center;
    z-index: 0;
}
@media (max-width: 767px) {
.mv {
        height: 165vw;
        background-image: url('../img/top/sp/kv.jpg')
}
    }
.mv-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}
.mv-video iframe {
        width: 100%;
        height: 100%;
        transform: scale(1.2);
    }
@media (max-width: 767px) {
.mv-video iframe {
            transform: scale(1.1)
    }
        }
.mv-body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.mv-body .inner {
        height: 100vh;
        max-height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
@media (max-width: 767px) {
.mv-body .inner {
            height: 100%
    }
        }
.mv-text {
    padding-bottom: 8rem;
}
.mv-text h1 {
        font-size: 16rem;
    }
@media (min-width: 768px) and (max-width: 1024px) {
.mv-text h1 {
            font-size: 12vw;
            line-height: 1.2
    }
        }
@media (max-width: 767px) {
.mv-text h1 {
            font-size: 9rem;
            font-style: normal;
            font-weight: 400;
            line-height: 1.1;
            letter-spacing: -0.1rem
    }
        }
@media (max-width: 767px) {
.mv-text {
        padding-bottom: 5rem
}
    }
@media (max-width: 767px) {
            .mv-text span:nth-child(1) {
                display: inline-block;
                transform: translateY(80%);
            }
            .mv-text span:nth-child(3) {
                display: inline-block;
                transform: translateY(40%);
            }
        }
.mv-text1 {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    color: #fff;
}
@media (max-width: 767px) {
.mv-text1 {
        margin-top: 0
}
    }
.mv-text1 .text1 {
        font-size: 4rem;
        font-weight: 800;
        line-height: 1;
        margin-left: 0.5rem;
    }
@media (max-width: 767px) {
.mv-text1 .text1 {
            font-size: 1.9rem
    }
        }
.mv-text1 .text2 {
        font-size: 4rem;
        font-style: normal;
        font-weight: 700;
        line-height: 1;
        letter-spacing: -0.3rem;
        margin-right: 0.9rem;
    }
.intro {
    position: relative;
}
.intro-bg {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #DECCF3 0%, #BBA5D8 100%);
    opacity: 0.3;
    z-index: 0;
}
.intro-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}
@media (max-width: 767px) {
.intro-inner {
        padding: 3rem 0 7rem
}
    }
.intro-svg1 {
    position: absolute;
    top: 0;
    right: 2.8%;
    width: 11.25%;
    line-height: 0;
}
.intro-svg1 svg {
        height: 100%;
    }
@media (max-width: 767px) {
.intro-svg1 {
        width: 12rem;
        right: auto;
        left: 0;
        margin-top: 8rem
}
    }
.intro-svg2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 11.25%;
    margin-bottom: 3%;
}
.intro-svg2 svg {
        height: 100%;
    }
@media (max-width: 767px) {
.intro-svg2 {
        width: 12rem;
        margin-bottom: 30rem
}
    }
.intro-image {
    border-radius: 2vw;
    line-height: 0;
    overflow: hidden;
}
@media (min-width: 1600px) {
.intro-image {
        border-radius: 32px
}
    }
@media (max-width: 767px) {
.intro-image {
        border-radius: 2rem
}
    }
.intro-image1 {
    position: absolute;
    top: 0;
    left: 5%;
    width: 25.6%;
    margin-top: 3.75%;
}
@media (max-width: 767px) {
.intro-image1 {
        position: relative;
        left: 0;
        width: 15.5rem;
        margin-top: 0;
        margin-left: auto;
        margin-right: 5%
}
    }
.intro-image2 {
    position: absolute;
    top: 0;
    right: 8.4%;
    width: 20%;
    margin-top: 25%;
}
@media (max-width: 767px) {
.intro-image2 {
        position: relative;
        right: 0;
        margin-top: 4.2rem;
        margin-left: auto;
        margin-right: 5%;
        width: 16rem
}
    }
.intro-image3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 25.4%;
    margin-top: 45.3%;
}
@media (max-width: 767px) {
.intro-image3 {
        position: relative;
        width: 24rem;
        margin-top: 7.2rem;
        border-radius: 0 2rem 2rem 0
}
    }
.intro-image3 .intro-image {
        border-radius: 0 2vw 2vw 0;
    }
@media (min-width: 1600px) {
.intro-image3 .intro-image {
            border-radius: 32px
    }
        }
@media (max-width: 767px) {
.intro-image3 .intro-image {
            border-radius: 0 2rem 2rem 0
    }
        }
.intro-image4 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 34%;
    margin-bottom: 5.25%;
}
@media (max-width: 767px) {
.intro-image4 {
        position: relative;
        width: 31.8rem;
        margin-bottom: 0;
        margin-top: 3.7rem;
        margin-left: auto;
        border-radius: 2rem 0 0 2rem
}
    }
.intro-image4 .intro-image {
        border-radius: 2vw 0 0 2vw;
    }
@media (min-width: 1600px) {
.intro-image4 .intro-image {
            border-radius: 32px
    }
        }
@media (max-width: 767px) {
.intro-image4 .intro-image {
            border-radius: 2rem 0 0 2rem
    }
        }
.intro-text {
    position: relative;
    z-index: 2;
    padding: 12.5% 0 18%;
    margin-left: 37%;
}
@media (min-width: 768px) and (max-width: 1024px) {
.intro-text {
        margin-left: 35%
}
    }
@media (max-width: 767px) {
.intro-text {
        padding: 0 5%;
        margin-left: 0
}
    }
.intro-h1-begin {
    color: #000;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 3.8rem;
    line-height: 100%;
    letter-spacing: -3%;
}
@media (max-width: 767px) {
.intro-h1-begin {
        font-size: 3rem;
        margin-top: 4rem
}
    }
.intro-h1-begin span {
        font-style: Italic;
        font-weight: 400;
    }
.intro-h1 {
    margin-top: 1.7rem;
    color: #000;
    font-size: 5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.3rem;
}
@media (max-width: 767px) {
.intro-h1 {
        font-size: 4.2rem;
        font-style: normal;
        font-weight: 600;
        line-height: 1.3;
        letter-spacing: 0.1rem;
        margin-top: 2rem
}
    }
.intro-p {
    color: #000;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.5;
    letter-spacing: 0.2rem;
    margin-top: 2.6rem;
}
@media (max-width: 767px) {
.intro-p {
        white-space: nowrap;
        letter-spacing: 0.1rem
}
    }
.intro-text1 {
    font-size: 3.2rem;
    font-style: italic;
    font-weight: 700;
    line-height: 2.2;
    margin-top: 4rem;
}
@media (max-width: 767px) {
.intro-text1 {
        font-size: 3rem;
        margin-top: 2.5rem
}
    }
.intro-text2 {
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.2;
    letter-spacing: 0.2rem;
}
.about-inner {
    padding: 9% 0 8%;
}
@media (max-width: 767px) {
.about-inner {
        padding: 6rem 0 5.3rem
}
    }
.about-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 767px) {
.about-flex {
        flex-direction: column
}
    }
.about-logo {
    width: 61%;
    display: flex;
    justify-content: center;
}
@media (min-width: 768px) and (max-width: 1024px) {
.about-logo {
        width: 50%
}
    }
@media (max-width: 767px) {
.about-logo {
        width: 100%
}
    }
.about-logo-image {
    width: 95%;
    margin-right: 5%;
}
@media (max-width: 767px) {
.about-logo-image {
        width: 100%;
        margin-right: 0
}
    }
.about-body {
    width: 38%;
}
@media (min-width: 768px) and (max-width: 1024px) {
.about-body {
        width: 50%
}
    }
@media (max-width: 767px) {
.about-body {
        width: 100%
}
    }
.about-text1 {
    color: #404040;
    font-size: 2.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: 0.1rem;
}
@media (max-width: 767px) {
.about-text1 {
        font-size: 2.2rem
}
    }
.about-text2 {
    color: #404040;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.5;
    letter-spacing: 0.2rem;
    margin-top: 3.5rem;
}
@media (max-width: 767px) {
.about-text2 {
        margin-top: 2.5rem
}
    }
.about-links {
    margin-top: 7.7rem;
}
@media (max-width: 767px) {
.about-links {
        margin-top: 5rem
}
    }
.about-link {
    border-bottom: 1px solid #cdcdcd;
    padding-bottom: 3.8rem;
}
@media (max-width: 767px) {
.about-link {
        padding-bottom: 2.5rem
}
    }
.about-link + .about-link {
        margin-top: 4.4rem;
    }
@media (max-width: 767px) {
.about-link + .about-link {
            margin-top: 2.4rem
    }
        }
.about-link-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary);
    font-family: "YuGothic", sans-serif;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    padding-left: 0.5rem;
}
@media (max-width: 767px) {
.about-link-item {
        padding-left: 0
}
    }
.work {
    position: relative;
    height: 300vh;
    min-height: 1800px;
}
@media (max-width: 767px) {
.work-container {
        position: relative
}
        .work-container::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, #DECCF3 0%, #BBA5D8 87.23%);
            opacity: 0.3;
        }
    }
.work-head {
    display: none;
}
@media (max-width: 767px) {
.work-head {
        display: block;
        padding: 7rem 5% 5rem
}
    }
.work-sticky {
    position: sticky;
    height: 100vh;
    top: 0;
    z-index: 2;
    margin-left: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (min-width: 1600px) {
.work-sticky {
        margin-left: calc((100vw - 1440px) / 2)
}
    }
@media (max-width: 767px) {
.work-sticky {
        display: none
}
    }
.work-sticky h2 {
        color: #fff;
    }
.work-sticky .h2-sub {
        color: #fff;
    }
.work-sticky-text {
    color: #FFF;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 2.5;
    margin: 7.5vh 0 7vh;
}
.work-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.work-layer {
    position: sticky;
    top: 0;
    height: 100vh;
    min-height: 600px;
    width: 100%;
}
@media (max-height: 600px) and (min-width: 768px) {
.work-layer {
        position: relative
}
    }
@media (max-width: 767px) {
.work-layer {
        top: 6rem
}
    }
.work-layer .inner {
        position: relative;
        z-index: 2;
        height: 100vh;
        min-height: 600px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
    }
@media (max-width: 767px) {
.work-layer .inner {
            padding-bottom: 4rem
    }
        }
.work-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
}
.work-image.work-image1 {
        background-image: url('../img/top/work_img1.jpg');
    }
.work-image.work-image2 {
        background-image: url('../img/top/work_img2.jpg');
    }
.work-image.work-image3 {
        background-image: url('../img/top/work_img3.jpg');
    }
@media (max-width: 767px) {
.work-image {
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: top;
        height: 56vw
}
    }
.work-box {
    width: 52rem;
    border-radius: 2rem;
    background-color: #fff;
    padding: 6rem;
}
@media (max-width: 767px) {
.work-box {
        width: 100%;
        padding: 3rem 3rem 4rem;
        margin-top: 10rem
}
    }
.work-title {
    display: flex;
    align-items: center;
    color: var(--primary);
}
.work-title .text1 {
        font-size: 1.8rem;
        font-style: normal;
        font-weight: 700;
        line-height: 0.8;
        width: 4rem;
    }
.work-title .text2 {
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 700;
        line-height: 1;
        letter-spacing: -0.1rem;
    }
.work-title-sub {
    color: #404040;
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.3rem;
    margin-top: 1.5rem;
}
.work-p {
    color: #404040;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.5;
    margin-top: 5rem;
}
@media (max-width: 767px) {
.work-p {
        margin-top: 3rem;
        line-height: 2;
        font-size: 1.4rem
}
    }
.work-bottom {
    display: none;
}
@media (max-width: 767px) {
.work-bottom {
        display: block;
        padding: 0 5% 8rem;
        position: relative;
        z-index: 2;
        margin-top: -2rem
}
    }
.work-bottom-text {
    color: #000;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2;
    margin-bottom: 3.3rem;
}
.work-layer-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-color: #000;
    opacity: 0;
    z-index: 2;
}
.council {
    position: relative;
    overflow: hidden;
    height: 60vw;
    max-height: 950px;
    background: linear-gradient(239deg, #DECCF3 0%, #BBA5D8 85.26%);
}
@media (max-width: 767px) {
.council {
        height: auto;
        max-height: inherit;
        padding: 6.8rem 0 14.8rem;
        overflow: hidden
}
    }
.council .inner {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        position: relative;
    }
@media (max-width: 767px) {
.council .inner {
            align-items: flex-start
    }
        }
.council-box {
    padding-right: 7.5vw;
    position: relative;
    z-index: 4;
}
@media (min-width: 768px) and (max-width: 1024px) {
.council-box {
        padding-right: 5vw
}
    }
@media (min-width: 1600px) {
.council-box {
        padding-right: 120px
}
    }
.council-box h2 {
        color: #fff;
        line-height: 0.8;
    }
.council-box .h2-sub {
        color: #fff;
    }
.council-box .cb-more {
        margin-top: 7rem;
    }
.council-image {
    border-radius: 2rem;
    overflow: hidden;
}
.council-image1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 44.4%;
    margin-top: 9.5%;
    z-index: 2;
}
@media (max-width: 767px) {
.council-image1 {
        position: relative;
        width: 29rem;
        margin-top: 4.5rem
}
    }
.council-image2 {
    position: absolute;
    top: 0;
    left: 26%;
    width: 30.5%;
    margin-top: 36.8%;
    z-index: 2;
}
@media (max-width: 767px) {
.council-image2 {
        position: relative;
        left: 0;
        width: 20rem;
        margin-top: -4.3rem;
        margin-left: auto;
        margin-bottom: 4.3rem
}
    }
.council-bg1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 61.5vw;
    max-width: 984px;
    opacity: 0.2;
}
@media (max-width: 767px) {
.council-bg1 {
        top: 0;
        transform: none;
        width: 112vw;
        right: auto;
        left: 5vw
}
    }
.council-bg2 {
    position: absolute;
    bottom: 0;
    left: 0;
    margin-bottom: 8%;
    width: 15%;
    max-width: 240px;
}
@media (max-width: 767px) {
.council-bg2 {
        width: 12rem;
        margin-bottom: 6rem
}
    }
.council-bg2 svg {
        height: 100%;
    }
.news-inner {
    padding: 14% 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 767px) {
.news-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 7.3rem 0 16rem
}
    }
.news-inner .h2-sub {
        margin-bottom: 4.3rem;
    }
@media (max-width: 767px) {
.news-inner .h2-sub {
            margin-bottom: 2rem
    }
        }
.news-items {
    width: 45%;
}
@media (max-width: 767px) {
.news-items {
        width: 100%;
        margin-bottom: 4.4rem
}
    }
.news-item {
    padding: 3rem 0;
    border-bottom: 1px solid #cdcdcd;
}
@media (max-width: 767px) {
.news-item {
        padding: 2.5rem 0
}
    }
.news-item-link {
    width: 100%;
    display: flex;
    align-items: center;
    padding-right: 2rem;
    transtion: opacity 0.4s ease-in-out;
}
.news-item-link:hover {
        opacity: 0.5;
    }
@media (max-width: 767px) {
.news-item-link {
        padding-right: 0;
        flex-direction: column;
        align-items: flex-start;
        position: relative
}
    }
.news-item-link .date {
        width: 12rem;
        color: var(--primary);
        font-size: 1.4rem;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
.news-item-link .title {
        color: #404040;
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        flex-grow: 1;
    }
@media (max-width: 767px) {
.news-item-link .title {
            margin-top: 1rem
    }
        }
@media (max-width: 767px) {
.news-item-link .arrow {
            position: absolute;
            top: 50%;
            right: 0;
            transform: translateY(-50%)
    }
        }
.news-item-link .arrow path {
            fill: var(--primary);
        }
.recruit {
    position: relative;
    z-index: 2;
    background: linear-gradient(239deg, #FFF 0%, #E3D9F0 85.26%);
    margin-bottom: 20rem;
}
.recruit-wrapper {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}
.recruit-body {
    position: relative;
    z-index: 3;
    padding: 18% 0 18% 40%;
}
.recruit-body .cb-more {
        width: 28.8rem;
    }
@media (max-width: 767px) {
.recruit-body .cb-more {
            width: 24rem
    }
        }
@media (max-width: 767px) {
.recruit-body {
        padding: 39rem 5% 44.3rem
}
    }
.recruit-text {
    color: #000;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.5;
    margin: 3rem 0;
}
.recruit-image {
    border-radius: 1.25vw;
    line-height: 0;
    overflow: hidden;
}
@media (min-width: 1600px) {
.recruit-image {
        border-radius: 20px
}
    }
@media (max-width: 767px) {
.recruit-image {
        border-radius: 2rem
}
    }
.recruit-image1 {
    position: absolute;
    top: 0;
    left: 20.4%;
    margin-top: -5%;
    width: 18%;
}
@media (max-width: 767px) {
.recruit-image1 {
        width: 16.6rem;
        left: 2rem;
        margin-top: -4.4rem
}
    }
.recruit-image2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 28.5%;
    margin-top: 17.25%;
}
@media (max-width: 767px) {
.recruit-image2 {
        top: auto;
        bottom: 10.8rem;
        width: 23.5rem;
        margin-top: 0;
        border-radius: 0 2rem 2rem 0
}
    }
.recruit-image3 {
    position: absolute;
    bottom: 0;
    left: 16%;
    width: 21%;
    margin-bottom: -6%;
}
@media (max-width: 767px) {
.recruit-image3 {
        bottom: -8.2rem;
        left: auto;
        right: 5vw;
        width: 19.3rem;
        margin-bottom: 0
}
    }
.recruit-image4 {
    position: absolute;
    top: 0;
    right: 0;
    width: 23.2%;
    margin-top: 10%;
    z-index: 2;
}
@media (max-width: 767px) {
.recruit-image4 {
        width: 21rem;
        right: 2rem;
        margin-top: 5.6rem
}
    }
.recruit-image5 {
    position: absolute;
    bottom: 0;
    right: 15.8%;
    width: 15.25%;
    margin-bottom: 6.5%;
    z-index: 2;
}
@media (max-width: 767px) {
.recruit-image5 {
        right: 5vw;
        bottom: 23rem;
        margin-bottom: 0;
        width: 14rem
}
    }
.recruit-bg1 {
    position: absolute;
    bottom: 0;
    left: 0.75%;
    width: 11.2%;
    margin-bottom: 6%;
}
.recruit-bg2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 11.2%;
    margin-bottom: 4%;
}
.contact {
    margin-top: 26.2rem;
    background-image: url('../img/top/contact_bg.jpg');
    background-size: cover;
    background-position: center center;
    height: 55.3rem;
}
@media (max-width: 767px) {
.contact {
        margin-top: 14rem;
        height: 30rem
}
    }
.contact-body {
    height: 100%;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.contact-body h2 {
        color: #fff;
    }
.contact-body .cb-round {
        margin-top: 1.5rem;
    }
@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}}