@charset "UTF-8";
html {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  tab-size: 4;
  word-break: normal;
}

*, :after, :before {
  background-repeat: no-repeat;
  box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  margin: 0;
  padding: 0;
}

hr {
  color: inherit;
  height: 0;
  overflow: visible;
}

details, main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b, strong {
  font-weight: bolder;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

iframe {
  border-style: none;
}

input {
  border-radius: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

[disabled] {
  cursor: default;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

/* GROUND animation
***********************************/
.upShow {
  animation: jsUpShow 1.2s 1s cubic-bezier(0.165, 0.84, 0.44, 1) backwards;
}

@keyframes jsUpShow {
  0% {
    opacity: 0;
    transform: translateY(60px) rotate(0.01deg);
    visibility: hidden;
  }
  60% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
    visibility: visible;
  }
}
@keyframes jsDownShow {
  0% {
    opacity: 0;
    transform: translateY(-30px);
    visibility: hidden;
  }
  60% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}
@keyframes jsFedeShow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes jsFedeHide {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes moveFromTop {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes moveFromLeft {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes moveFromRight {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes moveFromBottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes moveToTop {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes moveToLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes moveToRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes moveToBottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes maskFromTop {
  0% {
    clip-path: inset(0 0 100% 0);
    visibility: visible;
  }
  100% {
    clip-path: inset(0 0 0 0);
    visibility: visible;
  }
}
@keyframes maskFromLeft {
  0% {
    clip-path: inset(0 0 0 100%);
    visibility: visible;
  }
  100% {
    clip-path: inset(0 0 0 0);
    visibility: visible;
  }
}
@keyframes maskFromRight {
  0% {
    clip-path: inset(0 100% 0 0);
    visibility: visible;
  }
  100% {
    clip-path: inset(0 0 0 0);
    visibility: visible;
  }
}
@keyframes maskFromBottom {
  0% {
    clip-path: inset(100% 0 0 0);
    visibility: visible;
  }
  100% {
    clip-path: inset(0 0 0 0);
    visibility: visible;
  }
}
@keyframes maskToTop {
  0% {
    clip-path: inset(0 0 0 0);
    visibility: visible;
  }
  100% {
    clip-path: inset(0 0 100% 0);
    visibility: visible;
  }
}
@keyframes maskToLeft {
  0% {
    clip-path: inset(0 0 0 0);
    visibility: visible;
  }
  100% {
    clip-path: inset(0 100% 0 0);
    visibility: visible;
  }
}
@keyframes maskToRight {
  0% {
    clip-path: inset(0 0 0 0);
    visibility: visible;
  }
  100% {
    clip-path: inset(0 0 0 100%);
    visibility: visible;
  }
}
@keyframes maskToBottom {
  0% {
    clip-path: inset(0 0 0 0);
    visibility: visible;
  }
  100% {
    clip-path: inset(100% 0 0 0);
    visibility: visible;
  }
}
[data-mask=FromTop] {
  animation: maskFromTop 0.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

[data-mask=FromLeft] {
  animation: maskFromLeft 0.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

[data-mask=FromRight] {
  animation: maskFromRight 0.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

[data-mask=FromBottom] {
  animation: maskFromBottom 0.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

[data-mask=ToTop] {
  animation: maskToTop 0.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

[data-mask=ToLeft] {
  animation: maskToLeft 0.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

[data-mask=ToRight] {
  animation: maskToRight 0.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

[data-mask=ToBottom] {
  animation: maskToBottom 0.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes ScalefadeIn {
  0% {
    transform: scale(1.12);
    opacity: 0;
    visibility: hidden;
  }
  100% {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
}
@keyframes ScalefadeInIconSp {
  0% {
    transform: scale(1.5);
    opacity: 0;
    visibility: hidden;
  }
  100% {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes accordionHeight {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@keyframes maskShowFromLeft {
  0% {
    clip-path: inset(0% 100% 0% 0%);
  }
  100% {
    clip-path: inset(0% 0% 0% 0%);
  }
}
@keyframes maskShowFromRight {
  0% {
    clip-path: inset(0% 0% 0% 100%);
  }
  100% {
    clip-path: inset(0% 0% 0% 0%);
  }
}
@keyframes arrowMoveRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(70px * var(--scale)));
  }
}
@keyframes iconArrowMoveRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(20px * var(--scale)));
  }
}
.jsStanby {
  visibility: hidden;
}

.scrAnim {
  position: relative;
}

.bottomShow {
  overflow: hidden;
}
.bottomShow span {
  display: inline-block;
}

@keyframes jsBlurShow {
  0% {
    filter: blur(8px);
    opacity: 0;
  }
  50% {
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
.animShow {
  animation: jsUpShow 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.animShow.blur {
  animation: jsBlurShow 1.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.animShow.ScalefadeIn {
  animation: ScalefadeInIconSp 0.7s cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s forwards;
  opacity: 0;
}
.animShow.fadeIn {
  animation: jsFedeShow 1.2s 1s cubic-bezier(0.165, 0.84, 0.44, 1) backwards;
}
.animShow.maskShowFromLeft {
  animation: maskShowFromLeft 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.animShow.maskShowFromRight {
  animation: maskShowFromRight 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.animShow.bottomShow {
  animation: none;
}
.animShow.bottomShow span {
  animation: moveToBottom 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.animShow.side-menu {
  animation: jsUpShow 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s backwards;
}
.animShow.side-menu.franchise {
  animation: jsUpShow 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s backwards;
}

.scrAnimScale {
  transition: all 0.7s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  opacity: 0;
  transform: scale(0.5) translateY(0);
}
.scrAnimScale.animationShown {
  transition: none;
}

.scrAnimScale.animShowScale {
  opacity: 1;
  transform: scale(1);
}

.scrAnimMask {
  visibility: hidden;
}

.animMaskShow {
  visibility: visible;
  animation: maskFromTop 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes moveAround {
  0% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(-15px);
  }
}
.moveAround {
  animation: moveAround 10s ease-in-out infinite;
}

@keyframes chara1 {
  0% {
    transform: rotate(-5deg);
  }
  30% {
    transform: rotate(5deg);
  }
  60% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(-5deg);
  }
}
@keyframes chara2 {
  0% {
    transform: rotate(5deg);
  }
  20% {
    transform: rotate(-5deg);
  }
  60% {
    transform: rotate(-5deg);
  }
  80% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(5deg);
  }
}
@keyframes chara3 {
  0% {
    transform: translateY(0px);
  }
  60% {
    transform: translateY(0px);
  }
  80% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes chara4 {
  0% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(15deg);
  }
  60% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes chara5 {
  0% {
    transform: rotate(2deg);
  }
  20% {
    transform: rotate(-5deg);
  }
  60% {
    transform: rotate(-5deg);
  }
  80% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(2deg);
  }
}
body {
  --scale:1;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  overflow-wrap: anywhere;
  word-break: auto-phrase;
  line-height: 1.5;
  font-weight: 400;
  color: #FFF;
  background-color: #000;
  visibility: unset;
  opacity: unset;
  width: 100%;
}
body::before {
  content: "";
  background-color: #fff;
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  transition: 0.3s;
}
body.ready::before {
  opacity: 0;
}

.en {
  font-family: "Montserrat", sans-serif;
}

html[lang=en-US] body {
  font-family: "Montserrat", sans-serif;
}

.light {
  font-weight: 300;
}

.medi {
  font-weight: 500;
}

.semi-bold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.ex-bold {
  font-weight: 900;
}

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

a {
  text-decoration: none;
  outline: none;
}

a, a:visited {
  color: inherit;
}

a:focus {
  outline: none;
}

a:hover {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

i {
  display: inline-block;
}

ul, ol {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

figure {
  margin: 0;
}

img {
  width: 100%;
  backface-visibility: hidden;
  vertical-align: top;
  height: auto;
}

canvas, video {
  vertical-align: top;
}

button {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  text-transform: inherit;
  white-space: normal;
  cursor: pointer;
}

label {
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  backface-visibility: hidden;
}

input:focus, textarea:focus, input[type]:focus, .uneditable-input:focus {
  outline: 0;
  box-shadow: none;
  border: none;
  background-color: transparent;
}

select,
input[type=text],
input[type=search],
input[type=tel],
input[type=url],
input[type=email],
input[type=password],
input[type=number],
input[type=file],
input[type=date],
textarea,
select:focus,
input[type=text]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=file]:focus,
input[type=date]:focus,
textarea:focus {
  -webkit-appearance: none;
}
select.error,
input[type=text].error,
input[type=search].error,
input[type=tel].error,
input[type=url].error,
input[type=email].error,
input[type=password].error,
input[type=number].error,
input[type=file].error,
input[type=date].error,
textarea.error,
select:focus.error,
input[type=text]:focus.error,
input[type=search]:focus.error,
input[type=tel]:focus.error,
input[type=url]:focus.error,
input[type=email]:focus.error,
input[type=password]:focus.error,
input[type=number]:focus.error,
input[type=file]:focus.error,
input[type=date]:focus.error,
textarea:focus.error {
  border: 1px solid #FFE500;
}
.section-login select.error,
.section-login input[type=text].error,
.section-login input[type=search].error,
.section-login input[type=tel].error,
.section-login input[type=url].error,
.section-login input[type=email].error,
.section-login input[type=password].error,
.section-login input[type=number].error,
.section-login input[type=file].error,
.section-login input[type=date].error,
.section-login textarea.error,
.section-login select:focus.error,
.section-login input[type=text]:focus.error,
.section-login input[type=search]:focus.error,
.section-login input[type=tel]:focus.error,
.section-login input[type=url]:focus.error,
.section-login input[type=email]:focus.error,
.section-login input[type=password]:focus.error,
.section-login input[type=number]:focus.error,
.section-login input[type=file]:focus.error,
.section-login input[type=date]:focus.error,
.section-login textarea:focus.error {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #FFE500;
}
select:-ms-input-placeholder, input[type=text]:-ms-input-placeholder, input[type=search]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=url]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder, input[type=file]:-ms-input-placeholder, input[type=date]:-ms-input-placeholder, textarea:-ms-input-placeholder, select:focus:-ms-input-placeholder, input[type=text]:focus:-ms-input-placeholder, input[type=search]:focus:-ms-input-placeholder, input[type=tel]:focus:-ms-input-placeholder, input[type=url]:focus:-ms-input-placeholder, input[type=email]:focus:-ms-input-placeholder, input[type=password]:focus:-ms-input-placeholder, input[type=number]:focus:-ms-input-placeholder, input[type=file]:focus:-ms-input-placeholder, input[type=date]:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  color: #545866;
}
select::placeholder,
input[type=text]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=url]::placeholder,
input[type=email]::placeholder,
input[type=password]::placeholder,
input[type=number]::placeholder,
input[type=file]::placeholder,
input[type=date]::placeholder,
textarea::placeholder,
select:focus::placeholder,
input[type=text]:focus::placeholder,
input[type=search]:focus::placeholder,
input[type=tel]:focus::placeholder,
input[type=url]:focus::placeholder,
input[type=email]:focus::placeholder,
input[type=password]:focus::placeholder,
input[type=number]:focus::placeholder,
input[type=file]:focus::placeholder,
input[type=date]:focus::placeholder,
textarea:focus::placeholder {
  color: #545866;
}

input[type=date] {
  text-align: center;
}
input[type=date]::-webkit-date-and-time-value {
  text-align: center;
}

input[type=search]::-webkit-search-cancel-button {
  display: none;
}

input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
}

input[type=radio],
input[type=radio]:focus {
  position: relative;
  appearance: none;
  display: none;
}

input[type=checkbox],
input[type=checkbox]:focus {
  position: relative;
  appearance: none;
}

* {
  -webkit-tap-highlight-color: transparent;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

svg {
  overflow-x: initial;
  overflow-y: initial;
}

img, svg {
  width: 100%;
  height: auto;
}

img {
  backface-visibility: hidden;
}

picture {
  display: block;
}

.invisible {
  visibility: hidden;
}

@media (min-width: 1200px) {
  .mobileOnly {
    display: none;
  }
}

@media (min-width: 768.5px) {
  .spOnly {
    display: none !important;
  }
}
@media (max-width: 768.4px) {
  .pcOnly {
    display: none !important;
  }
}
.bg-muted {
  background-color: var(--base);
}

.hide {
  display: none;
}

/**
 * Swiper 11.1.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 9, 2024
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -ms-scroll-snap-type: none;
      scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg, .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-next svg, .swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}

/* light */
.article-body {
  color-scheme: light;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  margin: 0;
  color: #18361F;
  font-size: 16px;
  line-height: 1.5;
  word-break: break-word;
}
.article-body .octicon {
  display: inline-block;
  fill: currentColor;
  vertical-align: text-bottom;
}
.article-body h1:hover .anchor .octicon-link:before, .article-body h2:hover .anchor .octicon-link:before, .article-body h3:hover .anchor .octicon-link:before, .article-body h4:hover .anchor .octicon-link:before, .article-body h5:hover .anchor .octicon-link:before, .article-body h6:hover .anchor .octicon-link:before {
  width: 16px;
  height: 16px;
  content: " ";
  display: inline-block;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' version='1.1' aria-hidden='true'><path fill-rule='evenodd' d='M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z'></path></svg>");
}
.article-body details, .article-body figcaption, .article-body figure {
  display: block;
}
.article-body summary {
  display: list-item;
}
.article-body [hidden] {
  display: none !important;
}
.article-body abbr[title] {
  border-bottom: none;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}
.article-body b, .article-body strong {
  font-weight: 600;
}
.article-body dfn {
  font-style: italic;
}
.article-body h1 {
  margin: 0.67em 0;
  font-weight: 600;
  padding-bottom: 0.3em;
  font-size: 2em;
}
.article-body mark {
  background-color: #fff8c5;
  color: #1f2328;
}
.article-body small {
  font-size: 90%;
}
.article-body sub, .article-body sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
.article-body sub {
  bottom: -0.25em;
}
.article-body sup {
  top: -0.5em;
}
.article-body img {
  border-style: none;
  max-width: 100%;
  box-sizing: content-box;
}
.article-body code, .article-body kbd, .article-body pre, .article-body samp {
  font-family: monospace;
  font-size: 1em;
}
.article-body hr {
  box-sizing: content-box;
  overflow: hidden;
  background: transparent;
  border-bottom: 1px solid rgba(209, 217, 224, 0.7019607843);
  height: 0.25em;
  padding: 0;
  margin: 1.5rem 0;
  background-color: #d1d9e0;
  border: 0;
}
.article-body input {
  font: inherit;
  margin: 0;
  overflow: visible;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.article-body [type=button], .article-body [type=reset], .article-body [type=submit] {
  appearance: button;
}
.article-body [type=checkbox], .article-body [type=radio] {
  box-sizing: border-box;
  padding: 0;
}
.article-body [type=number]::-webkit-inner-spin-button, .article-body [type=number]::-webkit-outer-spin-button {
  height: auto;
}
.article-body [type=search]::-webkit-search-cancel-button, .article-body [type=search]::-webkit-search-decoration {
  appearance: none;
}
.article-body ::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}
.article-body ::-webkit-file-upload-button {
  appearance: button;
  font: inherit;
}
.article-body a:hover {
  text-decoration: underline;
}
.article-body :-ms-input-placeholder {
  color: #59636e;
  opacity: 1;
}
.article-body ::placeholder {
  color: #59636e;
  opacity: 1;
}
.article-body hr::before {
  display: table;
  content: "";
}
.article-body hr::after {
  display: table;
  clear: both;
  content: "";
}
.article-body table {
  border-spacing: 0;
  border-collapse: collapse;
  display: block;
  width: max-content;
  max-width: 100%;
  overflow: auto;
  font-variant: tabular-nums;
}
.article-body td, .article-body th {
  padding: 0;
}
.article-body details summary {
  cursor: pointer;
}
.article-body a:focus, .article-body [role=button]:focus {
  outline: 2px solid #0969da;
  outline-offset: -2px;
  box-shadow: none;
}
.article-body input[type=radio]:focus, .article-body input[type=checkbox]:focus {
  outline: 2px solid #0969da;
  outline-offset: -2px;
  box-shadow: none;
}
.article-body a:focus:not(:focus-visible), .article-body [role=button]:focus:not(:focus-visible) {
  outline: solid 1px transparent;
}
.article-body input[type=radio]:focus:not(:focus-visible), .article-body input[type=checkbox]:focus:not(:focus-visible) {
  outline: solid 1px transparent;
}
.article-body a:focus-visible, .article-body [role=button]:focus-visible {
  outline: 2px solid #0969da;
  outline-offset: -2px;
  box-shadow: none;
}
.article-body input[type=radio]:focus-visible, .article-body input[type=checkbox]:focus-visible {
  outline: 2px solid #0969da;
  outline-offset: -2px;
  box-shadow: none;
}
.article-body a:not([class]):focus, .article-body a:not([class]):focus-visible {
  outline-offset: 0;
}
.article-body input[type=radio]:focus, .article-body input[type=radio]:focus-visible {
  outline-offset: 0;
}
.article-body input[type=checkbox]:focus, .article-body input[type=checkbox]:focus-visible {
  outline-offset: 0;
}
.article-body kbd {
  display: inline-block;
  padding: 0.25rem;
  font: 11px ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
  line-height: 10px;
  color: #1f2328;
  vertical-align: middle;
  background-color: #f6f8fa;
  border: solid 1px rgba(209, 217, 224, 0.7019607843);
  border-bottom-color: rgba(209, 217, 224, 0.7019607843);
  border-radius: 6px;
  box-shadow: inset 0 -1px 0 rgba(209, 217, 224, 0.7019607843);
}
.article-body h1, .article-body h2, .article-body h3, .article-body h4, .article-body h5, .article-body h6 {
  font-weight: 600;
  line-height: 1.25;
}
.article-body h2 {
  font-weight: 600;
  padding-bottom: 0.3em;
  font-size: 1.5em;
}
.article-body h3 {
  font-weight: 600;
  font-size: 1.25em;
}
.article-body h4 {
  font-weight: 600;
  font-size: 1em;
}
.article-body h5 {
  font-weight: 600;
  font-size: 0.875em;
}
.article-body h6 {
  font-weight: 600;
  font-size: 0.85em;
  color: #59636e;
}
.article-body p {
  margin-top: 0;
}
.article-body blockquote {
  margin: 0;
  padding: 0 1em;
  color: #59636e;
  border-left: 0.25em solid #d1d9e0;
}
.article-body ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}
.article-body ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 2em;
}
.article-body ol ol {
  list-style-type: lower-roman;
}
.article-body ul ol {
  list-style-type: lower-roman;
}
.article-body ul ul ol, .article-body ul ol ol {
  list-style-type: lower-alpha;
}
.article-body ol ul ol, .article-body ol ol ol {
  list-style-type: lower-alpha;
}
.article-body dd {
  margin-left: 0;
}
.article-body tt, .article-body code, .article-body samp {
  font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
  font-size: 12px;
}
.article-body pre {
  margin-top: 0;
  margin-bottom: 0;
  font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
  font-size: 12px;
  word-wrap: normal;
}
.article-body .octicon {
  display: inline-block;
  overflow: visible !important;
  vertical-align: text-bottom;
  fill: currentColor;
}
.article-body input::-webkit-outer-spin-button, .article-body input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}
.article-body .mr-2 {
  margin-right: 0.5rem !important;
}
.article-body > *:first-child {
  margin-top: 0 !important;
}
.article-body > *:last-child {
  margin-bottom: 0 !important;
}
.article-body a:not([href]) {
  color: inherit;
  text-decoration: none;
}
.article-body .absent {
  color: #d1242f;
}
.article-body .anchor {
  float: left;
  padding-right: 0.25rem;
  margin-left: -20px;
  line-height: 1;
}
.article-body .anchor:focus {
  outline: none;
}
.article-body p, .article-body blockquote, .article-body ul, .article-body ol, .article-body dl, .article-body table, .article-body pre, .article-body details {
  margin-top: 0;
}
.article-body blockquote > :first-child {
  margin-top: 0;
}
.article-body blockquote > :last-child {
  margin-bottom: 0;
}
.article-body h1 .octicon-link, .article-body h2 .octicon-link, .article-body h3 .octicon-link, .article-body h4 .octicon-link, .article-body h5 .octicon-link, .article-body h6 .octicon-link {
  color: #1f2328;
  vertical-align: middle;
  visibility: hidden;
}
.article-body h1:hover .anchor, .article-body h2:hover .anchor, .article-body h3:hover .anchor, .article-body h4:hover .anchor, .article-body h5:hover .anchor, .article-body h6:hover .anchor {
  text-decoration: none;
}
.article-body h1:hover .anchor .octicon-link, .article-body h2:hover .anchor .octicon-link, .article-body h3:hover .anchor .octicon-link, .article-body h4:hover .anchor .octicon-link, .article-body h5:hover .anchor .octicon-link, .article-body h6:hover .anchor .octicon-link {
  visibility: visible;
}
.article-body h1 tt, .article-body h1 code {
  padding: 0 0.2em;
  font-size: inherit;
}
.article-body h2 tt, .article-body h2 code {
  padding: 0 0.2em;
  font-size: inherit;
}
.article-body h3 tt, .article-body h3 code {
  padding: 0 0.2em;
  font-size: inherit;
}
.article-body h4 tt, .article-body h4 code {
  padding: 0 0.2em;
  font-size: inherit;
}
.article-body h5 tt, .article-body h5 code {
  padding: 0 0.2em;
  font-size: inherit;
}
.article-body h6 tt, .article-body h6 code {
  padding: 0 0.2em;
  font-size: inherit;
}
.article-body summary h1, .article-body summary h2, .article-body summary h3, .article-body summary h4, .article-body summary h5, .article-body summary h6 {
  display: inline-block;
}
.article-body summary h1 .anchor, .article-body summary h2 .anchor, .article-body summary h3 .anchor, .article-body summary h4 .anchor, .article-body summary h5 .anchor, .article-body summary h6 .anchor {
  margin-left: -40px;
}
.article-body summary h1, .article-body summary h2 {
  padding-bottom: 0;
  border-bottom: 0;
}
.article-body ul.no-list {
  padding: 0;
  list-style-type: none;
}
.article-body ol.no-list {
  padding: 0;
  list-style-type: none;
}
.article-body ol[type="a s"] {
  list-style-type: lower-alpha;
}
.article-body ol[type="A s"] {
  list-style-type: upper-alpha;
}
.article-body ol[type="i s"] {
  list-style-type: lower-roman;
}
.article-body ol[type="I s"] {
  list-style-type: upper-roman;
}
.article-body ol[type="1"] {
  list-style-type: decimal;
}
.article-body div > ol:not([type]) {
  list-style-type: decimal;
}
.article-body ul ul, .article-body ul ol {
  margin-top: 0;
  margin-bottom: 0;
}
.article-body ol ol, .article-body ol ul {
  margin-top: 0;
  margin-bottom: 0;
}
.article-body li > p {
  margin-top: 1rem;
}
.article-body li + li {
  margin-top: 0.25em;
}
.article-body dl {
  padding: 0;
}
.article-body dl dt {
  padding: 0;
  margin-top: 1rem;
  font-size: 1em;
  font-style: italic;
  font-weight: 600;
}
.article-body dl dd {
  padding: 0 1rem;
  margin-bottom: 1rem;
}
.article-body table th {
  font-weight: 600;
  padding: 6px 13px;
  border: 1px solid #d1d9e0;
}
.article-body table td {
  padding: 6px 13px;
  border: 1px solid #d1d9e0;
}
.article-body table td > :last-child {
  margin-bottom: 0;
}
.article-body table tr {
  background-color: #ffffff;
  border-top: 1px solid rgba(209, 217, 224, 0.7019607843);
}
.article-body table tr:nth-child(2n) {
  background-color: #f6f8fa;
}
.article-body table img {
  background-color: transparent;
}
.article-body img[align=right] {
  padding-left: 20px;
}
.article-body img[align=left] {
  padding-right: 20px;
}
.article-body .emoji {
  max-width: none;
  vertical-align: text-top;
  background-color: transparent;
}
.article-body span.frame {
  display: block;
  overflow: hidden;
}
.article-body span.frame > span {
  display: block;
  float: left;
  width: auto;
  padding: 7px;
  margin: 13px 0 0;
  overflow: hidden;
  border: 1px solid #d1d9e0;
}
.article-body span.frame span img {
  display: block;
  float: left;
}
.article-body span.frame span span {
  display: block;
  padding: 5px 0 0;
  clear: both;
  color: #1f2328;
}
.article-body span.align-center {
  display: block;
  overflow: hidden;
  clear: both;
}
.article-body span.align-center > span {
  display: block;
  margin: 13px auto 0;
  overflow: hidden;
  text-align: center;
}
.article-body span.align-center span img {
  margin: 0 auto;
  text-align: center;
}
.article-body span.align-right {
  display: block;
  overflow: hidden;
  clear: both;
}
.article-body span.align-right > span {
  display: block;
  margin: 13px 0 0;
  overflow: hidden;
  text-align: right;
}
.article-body span.align-right span img {
  margin: 0;
  text-align: right;
}
.article-body span.float-left {
  display: block;
  float: left;
  margin-right: 13px;
  overflow: hidden;
}
.article-body span.float-left span {
  margin: 13px 0 0;
}
.article-body span.float-right {
  display: block;
  float: right;
  margin-left: 13px;
  overflow: hidden;
}
.article-body span.float-right > span {
  display: block;
  margin: 13px auto 0;
  overflow: hidden;
  text-align: right;
}
.article-body code, .article-body tt {
  padding: 0.2em 0.4em;
  margin: 0;
  font-size: 85%;
  white-space: break-spaces;
  background-color: rgba(129, 139, 152, 0.1215686275);
  border-radius: 6px;
}
.article-body code br, .article-body tt br {
  display: none;
}
.article-body del code {
  text-decoration: inherit;
}
.article-body samp {
  font-size: 85%;
}
.article-body pre code {
  font-size: 100%;
}
.article-body pre > code {
  padding: 0;
  margin: 0;
  word-break: normal;
  white-space: pre;
  background: transparent;
  border: 0;
}
.article-body .highlight {
  margin-bottom: 1rem;
}
.article-body .highlight pre {
  margin-bottom: 0;
  word-break: normal;
  padding: 1rem;
  overflow: auto;
  font-size: 85%;
  line-height: 1.45;
  color: #1f2328;
  background-color: #f6f8fa;
  border-radius: 6px;
}
.article-body pre {
  padding: 1rem;
  overflow: auto;
  font-size: 85%;
  line-height: 1.45;
  color: #1f2328;
  background-color: #f6f8fa;
  border-radius: 6px;
}
.article-body pre code, .article-body pre tt {
  display: inline;
  max-width: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  line-height: inherit;
  word-wrap: normal;
  background-color: transparent;
  border: 0;
}
.article-body .csv-data td, .article-body .csv-data th {
  padding: 5px;
  overflow: hidden;
  font-size: 12px;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
}
.article-body .csv-data .blob-num {
  padding: 10px 0.5rem 9px;
  text-align: right;
  background: #ffffff;
  border: 0;
}
.article-body .csv-data tr {
  border-top: 0;
}
.article-body .csv-data th {
  font-weight: 600;
  background: #f6f8fa;
  border-top: 0;
}
.article-body [data-footnote-ref]::before {
  content: "[";
}
.article-body [data-footnote-ref]::after {
  content: "]";
}
.article-body .footnotes {
  font-size: 12px;
  color: #59636e;
  border-top: 1px solid #d1d9e0;
}
.article-body .footnotes ol {
  padding-left: 1rem;
}
.article-body .footnotes ol ul {
  display: inline-block;
  padding-left: 1rem;
  margin-top: 1rem;
}
.article-body .footnotes li {
  position: relative;
}
.article-body .footnotes li:target {
  color: #1f2328;
}
.article-body .footnotes li:target::before {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  bottom: -0.5rem;
  left: -1.5rem;
  pointer-events: none;
  content: "";
  border: 2px solid #0969da;
  border-radius: 6px;
}
.article-body .footnotes .data-footnote-backref g-emoji {
  font-family: monospace;
}
.article-body body:has(:modal) {
  padding-right: var(--dialog-scrollgutter) !important;
}
.article-body .pl-c {
  color: #59636e;
}
.article-body .pl-c1, .article-body .pl-s .pl-v {
  color: #0550ae;
}
.article-body .pl-e, .article-body .pl-en {
  color: #6639ba;
}
.article-body .pl-smi, .article-body .pl-s .pl-s1 {
  color: #1f2328;
}
.article-body .pl-ent {
  color: #0550ae;
}
.article-body .pl-k {
  color: #cf222e;
}
.article-body .pl-s, .article-body .pl-pds, .article-body .pl-s .pl-pse .pl-s1 {
  color: #0a3069;
}
.article-body .pl-sr {
  color: #0a3069;
}
.article-body .pl-sr .pl-cce, .article-body .pl-sr .pl-sre, .article-body .pl-sr .pl-sra {
  color: #0a3069;
}
.article-body .pl-v, .article-body .pl-smw {
  color: #953800;
}
.article-body .pl-bu {
  color: #82071e;
}
.article-body .pl-ii {
  color: #f6f8fa;
  background-color: #82071e;
}
.article-body .pl-c2 {
  color: #f6f8fa;
  background-color: #cf222e;
}
.article-body .pl-sr .pl-cce {
  font-weight: bold;
  color: #116329;
}
.article-body .pl-ml {
  color: #3b2300;
}
.article-body .pl-mh {
  font-weight: bold;
  color: #0550ae;
}
.article-body .pl-mh .pl-en {
  font-weight: bold;
  color: #0550ae;
}
.article-body .pl-ms {
  font-weight: bold;
  color: #0550ae;
}
.article-body .pl-mi {
  font-style: italic;
  color: #1f2328;
}
.article-body .pl-mb {
  font-weight: bold;
  color: #1f2328;
}
.article-body .pl-md {
  color: #82071e;
  background-color: #ffebe9;
}
.article-body .pl-mi1 {
  color: #116329;
  background-color: #dafbe1;
}
.article-body .pl-mc {
  color: #953800;
  background-color: #ffd8b5;
}
.article-body .pl-mi2 {
  color: #d1d9e0;
  background-color: #0550ae;
}
.article-body .pl-mdr {
  font-weight: bold;
  color: #8250df;
}
.article-body .pl-ba {
  color: #59636e;
}
.article-body .pl-sg {
  color: #818b98;
}
.article-body .pl-corl {
  text-decoration: underline;
  color: #0a3069;
}
.article-body [role=button]:focus:not(:focus-visible), .article-body [role=tabpanel][tabindex="0"]:focus:not(:focus-visible), .article-body button:focus:not(:focus-visible), .article-body summary:focus:not(:focus-visible), .article-body a:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}
.article-body [tabindex="0"]:focus:not(:focus-visible), .article-body details-dialog:focus:not(:focus-visible) {
  outline: none;
}
.article-body g-emoji {
  display: inline-block;
  min-width: 1ch;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1em;
  font-style: normal !important;
  font-weight: 400;
  line-height: 1;
  vertical-align: -0.075em;
}
.article-body g-emoji img {
  width: 1em;
  height: 1em;
}
.article-body .task-list-item {
  list-style-type: none;
}
.article-body .task-list-item label {
  font-weight: 400;
}
.article-body .task-list-item.enabled label {
  cursor: pointer;
}
.article-body .task-list-item + .task-list-item {
  margin-top: 0.25rem;
}
.article-body .task-list-item .handle {
  display: none;
}
.article-body .task-list-item-checkbox {
  margin: 0 0.2em 0.25em -1.4em;
  vertical-align: middle;
}
.article-body ul:dir(rtl) .task-list-item-checkbox, .article-body ol:dir(rtl) .task-list-item-checkbox {
  margin: 0 -1.6em 0.25em 0.2em;
}
.article-body .contains-task-list:hover .task-list-item-convert-container, .article-body .contains-task-list:focus-within .task-list-item-convert-container {
  display: block;
  width: auto;
  height: 24px;
  overflow: visible;
  clip: auto;
}
.article-body ::-webkit-calendar-picker-indicator {
  filter: invert(50%);
}
.article-body .markdown-alert {
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  color: inherit;
  border-left: 0.25em solid #d1d9e0;
}
.article-body .markdown-alert > :first-child {
  margin-top: 0;
}
.article-body .markdown-alert > :last-child {
  margin-bottom: 0;
}
.article-body .markdown-alert .markdown-alert-title {
  display: flex;
  font-weight: 500;
  align-items: center;
  line-height: 1;
}
.article-body .markdown-alert.markdown-alert-note {
  border-left-color: #0969da;
}
.article-body .markdown-alert.markdown-alert-note .markdown-alert-title {
  color: #0969da;
}
.article-body .markdown-alert.markdown-alert-important {
  border-left-color: #8250df;
}
.article-body .markdown-alert.markdown-alert-important .markdown-alert-title {
  color: #8250df;
}
.article-body .markdown-alert.markdown-alert-warning {
  border-left-color: #9a6700;
}
.article-body .markdown-alert.markdown-alert-warning .markdown-alert-title {
  color: #9a6700;
}
.article-body .markdown-alert.markdown-alert-tip {
  border-left-color: #1a7f37;
}
.article-body .markdown-alert.markdown-alert-tip .markdown-alert-title {
  color: #1a7f37;
}
.article-body .markdown-alert.markdown-alert-caution {
  border-left-color: #cf222e;
}
.article-body .markdown-alert.markdown-alert-caution .markdown-alert-title {
  color: #d1242f;
}
.article-body > *:first-child > .heading-element:first-child {
  margin-top: 0 !important;
}
.article-body .highlight pre:has(+ .zeroclipboard-container) {
  min-height: 52px;
}

.wrap {
  clip-path: inset(0);
}

.top-loading {
  display: none;
  position: fixed;
  inset: 0;
  height: 100lvh;
  width: 100%;
  justify-content: center;
  align-items: center;
  background-color: #F1ECE7;
  z-index: 1000;
  transition: opacity 0.5s;
}
body:has([data-page-id=home]) .top-loading {
  display: flex;
}
body:has([data-status="-1"]) .top-loading .logo-loading::after {
  background-position: 40% 0;
}
body:has([data-status="0"]) .top-loading .logo-loading::after {
  transition: background-position 2s;
  background-position: 0% 0;
}
body:has([data-status="1"]) .top-loading {
  opacity: 0;
  pointer-events: none;
}
body:has([data-status="1"]) .top-loading .logo-loading::after {
  background-position: 0% 0;
}
.top-loading .logo-loading {
  position: relative;
}
@media all and (min-width: 768.5px) {
  .top-loading .logo-loading {
    width: calc(183px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .top-loading .logo-loading {
    width: calc(146px * var(--scale));
  }
}
.top-loading .logo-loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #2C673A, #2C673A 50%, transparent 50%, transparent);
  background-position: 100% 0;
  background-size: 200% 100%;
  transition: background-position 1.5s;
  mask: url("../images/common/logo-main.svg") no-repeat center/contain;
}

.bgHolder {
  position: fixed;
  inset: 0;
  height: 100lvh;
  width: 100%;
  overflow: hidden;
}
.bgHolder .fv, .bgHolder .sv {
  position: absolute;
  inset: 0;
}
.bgHolder .sv {
  opacity: 0;
}
.bgHolder iframe {
  box-sizing: border-box;
  min-height: 100%;
  min-width: 100%;
  height: 56.25vw;
  width: 100vw;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-aspect-ratio: 16/9) {
  .bgHolder iframe {
    height: 100lvh;
    width: 177.7777777778lvh;
  }
}
@media (max-width: 768.4px) {
  .bgHolder iframe {
    height: 177.7777777778vw;
    width: 100vw;
  }
}
@media (max-width: 768.4px) {
  .bgHolder.vertical iframe {
    height: 100lvh;
    width: 56.25lvh;
  }
}
.bgHolder .videoHolder {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s;
}
.bgHolder[data-status="1"] .videoHolder {
  opacity: 1;
}
.bgHolder .pic {
  position: absolute;
  inset: 0;
}
.bgHolder .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-line.hover .line,
.btn-line.hover ::after {
  animation: hoverLine 1.2s;
}

@keyframes hoverLine {
  0% {
    clip-path: inset(0 0 0 0);
  }
  45% {
    clip-path: inset(0 0 0 100%);
  }
  55% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
.btn {
  transition: color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-text-decoration 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), text-decoration 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), text-decoration 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-text-decoration 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-text-decoration: transparent underline;
          text-decoration: transparent underline;
  text-underline-offset: 0.25em;
}
@media (hover: hover) and (pointer: fine) {
  .btn:focus {
    color: #E50717 !important;
    -webkit-text-decoration: currentColor underline;
            text-decoration: currentColor underline;
  }
  .btn:hover {
    color: #E50717 !important;
    -webkit-text-decoration: currentColor underline;
            text-decoration: currentColor underline;
  }
}

.btn-opacity {
  transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (hover: hover) and (pointer: fine) {
  .btn-opacity:focus {
    opacity: 0.4;
  }
  .btn-opacity:hover {
    opacity: 0.4;
  }
}

/* container
*******************************/
.container-l {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media all and (min-width: 768.5px) {
  .container-l {
    padding: calc(0px * var(--scale)) calc(40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .container-l {
    padding: calc(0px * var(--scale)) calc(20px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  .container-l {
    max-width: 1700px;
  }
}
@media all and (min-width: 768.5px) {
  header.header .container-l {
    padding: calc(0px * var(--scale)) calc(24px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header .container-l {
    padding: calc(0px * var(--scale)) calc(16px * var(--scale));
  }
}

.container-m {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media (min-width: 768.5px) {
  .container-m {
    max-width: 1700px;
  }
}
@media all and (min-width: 768.5px) {
  .container-m:has(.article-message, .article-company, .article-history) {
    padding-right: calc(150px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .container-m:has(.article-message, .article-company, .article-history) {
    padding-right: calc(0px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  .container-m:has(.article-message, .article-company, .article-history) {
    width: calc(100% - 150px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .container-m:has(.article-privacy-policy, .article-exemption, .article-gift-vouchers, .article-contact) {
    padding-right: calc(250px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .container-m:has(.article-privacy-policy, .article-exemption, .article-gift-vouchers, .article-contact) {
    padding-right: calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .container-m:has(.article-privacy-policy, .article-exemption, .article-gift-vouchers, .article-contact) {
    padding-left: calc(128px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .container-m:has(.article-privacy-policy, .article-exemption, .article-gift-vouchers, .article-contact) {
    padding-left: calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .container-m:has(.article-news) {
    max-width: calc(790px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .container-m:has(.article-news) {
    max-width: none;
  }
}
@media all and (min-width: 768.5px) {
  .container-m:has(.article-news) {
    padding-right: calc(40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .container-m:has(.article-news) {
    padding-right: calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .container-m:has(.article-news) {
    padding-left: calc(40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .container-m:has(.article-news) {
    padding-left: calc(0px * var(--scale));
  }
}
.container-m:has(.article-franchise) {
  margin-right: 0;
}
@media all and (min-width: 768.5px) {
  .container-m:has(.article-franchise) {
    max-width: calc(1038px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .container-m:has(.article-franchise) {
    max-width: none;
  }
}
@media all and (min-width: 768.5px) {
  .container-m:has(.article-franchise) {
    padding-left: calc(40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .container-m:has(.article-franchise) {
    padding-left: calc(0px * var(--scale));
  }
}

.container-s {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media all and (min-width: 768.5px) {
  .container-s {
    padding: calc(0px * var(--scale)) calc(316px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .container-s {
    padding: calc(0px * var(--scale)) calc(20px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  .container-s {
    max-width: 1700px;
  }
}

/* 角丸の画像
*******************************/
.round {
  overflow: hidden;
}
@media all and (min-width: 768.5px) {
  .round {
    border-radius: calc(4px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .round {
    border-radius: calc(4px * var(--scale));
  }
}

.intro-bg {
  position: fixed;
  inset: 0;
  z-index: 10;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.intro-bg .intro-logo {
  opacity: 0;
}
@media all and (min-width: 768.5px) {
  .intro-bg .intro-logo {
    width: calc(200px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .intro-bg .intro-logo {
    width: calc(200px * var(--scale));
  }
}
.intro-bg .intro-loading {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #E60012;
}
@media all and (min-width: 768.5px) {
  .intro-bg .intro-loading {
    height: calc(4px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .intro-bg .intro-loading {
    height: calc(4px * var(--scale));
  }
}

body {
  --headerHeight: 61px;
}

/* header
*************************/
header.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
header.header .header-inner {
  width: 100%;
  height: calc(var(--headerHeight) * var(--scale));
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media all and (min-width: 768.5px) {
  header.header .header-inner {
    padding: calc(16px * var(--scale)) calc(18px * var(--scale)) calc(16px * var(--scale)) calc(20px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header .header-inner {
    padding: calc(16px * var(--scale)) calc(18px * var(--scale)) calc(16px * var(--scale)) calc(22px * var(--scale));
  }
}
header.header .brand-logo-holder {
  display: flex;
}
header.header .brand-logo-holder .brand-logo {
  display: flex;
}
@media all and (min-width: 768.5px) {
  header.header .brand-logo-holder .brand-logo {
    width: calc(100px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header .brand-logo-holder .brand-logo {
    width: calc(100px * var(--scale));
  }
}
header.header nav {
  width: 100%;
  display: flex;
  align-items: center;
}
header.header nav .menu {
  width: 100%;
  align-items: center;
}
@media all and (min-width: 768.5px) {
  header.header nav .menu {
    gap: calc(21px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header nav .menu {
    gap: calc(23px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  header.header nav .menu {
    margin-left: calc(138px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header nav .menu {
    margin-left: calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  header.header nav .menu {
    margin-right: calc(13px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header nav .menu {
    margin-right: calc(0px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  header.header nav .menu {
    display: flex;
  }
}
header.header nav .menu-block {
  display: flex;
  flex-shrink: 0;
  line-height: 1.5;
}
@media all and (min-width: 768.5px) {
  header.header nav .menu-block {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  header.header nav .menu-block {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  header.header nav .menu-block {
    gap: calc(21px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header nav .menu-block {
    gap: calc(21px * var(--scale));
  }
}
header.header nav .menu-block:first-child {
  margin-left: auto;
}
header.header nav .menu-block:last-child {
  margin-left: auto;
}
header.header nav .menu-link {
  letter-spacing: 0.2em;
}
html[lang=en-US] header.header nav .menu-link {
  letter-spacing: 0.02em;
}
header.header .lang {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media all and (min-width: 768.5px) {
  header.header .lang {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  header.header .lang {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  header.header .lang {
    gap: calc(15px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header .lang {
    gap: calc(19px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  header.header .lang {
    margin-bottom: calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header .lang {
    margin-bottom: calc(16px * var(--scale));
  }
}
header.header .lang .lang-item {
  display: flex;
  align-items: center;
}
@media all and (min-width: 768.5px) {
  header.header .lang .lang-item {
    margin-top: calc(2px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header .lang .lang-item {
    margin-top: calc(3px * var(--scale));
  }
}
header.header .lang .lang-item::marker {
  content: none;
}
header.header .lang .lang-item.lang-item-en::before {
  content: "/";
  display: block;
  font-weight: 300;
}
@media all and (min-width: 768.5px) {
  header.header .lang .lang-item.lang-item-en::before {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  header.header .lang .lang-item.lang-item-en::before {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  header.header .lang .lang-item.lang-item-en::before {
    margin: calc(0px * var(--scale)) calc(13px * var(--scale)) calc(0px * var(--scale)) calc(-2px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header .lang .lang-item.lang-item-en::before {
    margin: calc(0px * var(--scale)) calc(19px * var(--scale)) calc(0px * var(--scale)) calc(-2px * var(--scale));
  }
}
header.header .lang .lang-item a {
  display: flex;
  line-height: 1.5;
}
@media all and (min-width: 768.5px) {
  header.header .lang .lang-item a {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  header.header .lang .lang-item a {
    font-size: max(14px * var(--scale), 10px);
  }
}
header.header .button-menu {
  flex-shrink: 0;
}
@media all and (min-width: 768.5px) {
  header.header .button-menu {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  header.header .button-menu {
    font-size: max(16px * var(--scale), 10px);
  }
}

/* modal-menu
*************************/
.modal-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10;
  justify-content: end;
  overflow: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.modal-menu::-webkit-scrollbar {
  display: none;
}
@keyframes modalShowSp {
  from {
    opacity: 1;
    transform: translate(0, -60px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes modalHideSp {
  from {
    opacity: 1;
    transform: translate(0, 0);
  }
  to {
    opacity: 0;
    transform: translate(0, -60px);
  }
}
.modal-menu .header-inner {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
}
.modal-menu .modal-menu-inner {
  width: 100%;
  min-height: calc(100% + 1px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.modal-menu .modal-menu-inner .footer {
  position: fixed;
  inset: 0;
  color: #DFDBDA;
}
.modal-menu .modal-menu-inner .lang {
  position: relative;
  z-index: 1;
}
.modal-menu-open .modal-menu {
  display: flex;
  animation: fadeIn 0.75s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 768.4px) {
  .modal-menu-open .modal-menu .modal-menu-inner {
    animation: modalShowSp 0.75s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
  }
}
.modal-menu-close .modal-menu {
  display: flex;
  animation: fadeOut 0.75s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}
@media (max-width: 768.4px) {
  .modal-menu-close .modal-menu .modal-menu-inner {
    animation: modalHideSp 0.75s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
  }
}

/* footer
*******************************/
footer.footer {
  z-index: 1;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  position: relative;
  clip-path: inset(0);
}
footer.footer .footer-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer.footer .footer-bg {
  position: absolute;
  inset: 0;
}
footer.footer .footer-bg video, footer.footer .footer-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
footer.footer .footer-menu {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  z-index: 1;
}
footer.footer .footer-menu .menu-link {
  width: fit-content;
  line-height: 1.1;
  letter-spacing: -0.06em;
}
@media all and (min-width: 768.5px) {
  footer.footer .footer-menu .menu-link {
    font-size: max(50px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  footer.footer .footer-menu .menu-link {
    font-size: max(36px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  footer.footer .footer-menu .menu-link {
    gap: calc(5px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  footer.footer .footer-menu .menu-link {
    gap: calc(5px * var(--scale));
  }
}
footer.footer .footer-menu .menu-link span {
  margin: 0 -0.2em;
  padding: 0 0.2em;
}
footer.footer .left-block {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  letter-spacing: -0.05em;
  height: 100dvh;
  top: 0;
  left: 0;
  font-size: calc(12px * var(--scale));
  gap: calc(12px * var(--scale));
}
@media all and (min-width: 768.5px) {
  footer.footer .left-block {
    padding: calc(0px * var(--scale)) calc(0px * var(--scale)) calc(20px * var(--scale)) calc(20px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  footer.footer .left-block {
    padding: calc(0px * var(--scale)) calc(0px * var(--scale)) calc(20px * var(--scale)) calc(20px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  footer.footer .left-block {
    opacity: 0.5;
    font-size: 12px;
    gap: 12px;
  }
}
footer.footer .right-block {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  letter-spacing: -0.05em;
  height: 100dvh;
  top: 0;
  right: 0;
  font-size: calc(12px * var(--scale));
}
@media all and (min-width: 768.5px) {
  footer.footer .right-block {
    padding: calc(0px * var(--scale)) calc(20px * var(--scale)) calc(20px * var(--scale)) calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  footer.footer .right-block {
    padding: calc(0px * var(--scale)) calc(20px * var(--scale)) calc(20px * var(--scale)) calc(0px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  footer.footer .right-block {
    opacity: 0.5;
    font-size: 12px;
  }
}

/* modal
*************************/
body.lock {
  overflow-y: clip;
  padding-right: var(--scroll-bar-width);
}

@keyframes modalShow {
  from {
    opacity: 1;
    transform: translate(0, 60px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes modalHide {
  from {
    opacity: 1;
    transform: translate(0, 0);
  }
  to {
    opacity: 0;
    transform: translate(0, 60px);
  }
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  display: none;
  overflow-y: auto;
  overscroll-behavior-y: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.modal::-webkit-scrollbar {
  display: none;
}
.modal > .overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.modal .button-modal-close {
  position: absolute;
  margin: auto;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
@media all and (min-width: 768.5px) {
  .modal .button-modal-close {
    top: calc(-20px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .modal .button-modal-close {
    top: auto;
  }
}
@media all and (min-width: 768.5px) {
  .modal .button-modal-close {
    bottom: auto;
  }
}
@media all and (max-width: 768.4px) {
  .modal .button-modal-close {
    bottom: calc(20px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .modal .button-modal-close {
    left: auto;
  }
}
@media all and (max-width: 768.4px) {
  .modal .button-modal-close {
    left: calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .modal .button-modal-close {
    right: calc(-20px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .modal .button-modal-close {
    right: calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .modal .button-modal-close {
    width: calc(40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .modal .button-modal-close {
    width: calc(40px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .modal .button-modal-close {
    height: calc(40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .modal .button-modal-close {
    height: calc(40px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .modal .button-modal-close .icon-close {
    width: calc(12px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .modal .button-modal-close .icon-close {
    width: calc(12px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .modal .button-modal-close .icon-close {
    height: calc(12px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .modal .button-modal-close .icon-close {
    height: calc(12px * var(--scale));
  }
}
.modal .modal-inner {
  opacity: 0;
  width: 100%;
  min-height: calc(100% + 1px);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
}
@media all and (min-width: 768.5px) {
  .modal .modal-inner {
    padding: calc(100px * var(--scale)) calc(200px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .modal .modal-inner {
    padding: calc(20px * var(--scale)) calc(20px * var(--scale));
  }
}
.modal.modal-open {
  display: block;
  animation: fadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.modal.modal-open .modal-inner {
  animation: modalShow 0.5s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
}
.modal.modal-close {
  display: block;
  animation: fadeOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}
.modal.modal-close .modal-inner {
  animation: modalHide 0.5s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal-zoom-image .video-container {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
}
@media all and (min-width: 768.5px) {
  .modal-zoom-image .video-container {
    min-height: calc(450px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .modal-zoom-image .video-container {
    min-height: calc(197px * var(--scale));
  }
}
.modal-zoom-image .video {
  width: 100%;
  position: relative;
  display: flex;
  pointer-events: auto;
}
.modal-zoom-image .video #yt-video {
  display: flex;
  width: 100%;
  aspect-ratio: 16/9;
}
.modal-zoom-image .video #yt-video iframe {
  width: 100%;
  height: 100%;
}

/* title
*************************/
.text-link {
  transition: color 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .text-link:focus {
    color: #E50717;
  }
  .text-link:hover {
    color: #E50717;
  }
}

/* button
*************************/
.button-round,
a.button-round {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 200px;
  color: #2C673A;
  width: fit-content;
  transition: opacity 0.3s;
}
.button-round.slim,
a.button-round.slim {
  position: relative;
}
@media all and (min-width: 768.5px) {
  .button-round.slim,
  a.button-round.slim {
    height: calc(20px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .button-round.slim,
  a.button-round.slim {
    height: calc(20px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .button-round.slim,
  a.button-round.slim {
    min-width: calc(80px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .button-round.slim,
  a.button-round.slim {
    min-width: calc(80px * var(--scale));
  }
}
.button-round.slim::before,
a.button-round.slim::before {
  content: "";
  position: absolute;
  height: calc(100% + 30px);
  top: -15px;
  left: 0;
  width: 100%;
}
.button-round.text,
a.button-round.text {
  color: #2C673A;
}
@media all and (min-width: 768.5px) {
  .button-round.text,
  a.button-round.text {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .button-round.text,
  a.button-round.text {
    font-size: max(12px * var(--scale), 10px);
  }
}
.button-round.white,
a.button-round.white {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
}
@media all and (min-width: 768.5px) {
  .button-round.navigation,
  a.button-round.navigation {
    min-width: calc(124px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .button-round.navigation,
  a.button-round.navigation {
    min-width: calc(103px * var(--scale));
  }
}
.button-round .icon,
a.button-round .icon {
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.button-round .icon.icon-arrow::before,
a.button-round .icon.icon-arrow::before {
  content: "";
  background: url("../images/common/icon/arrow.svg") no-repeat center center/contain;
}
@media all and (min-width: 768.5px) {
  .button-round .icon.icon-arrow::before,
  a.button-round .icon.icon-arrow::before {
    height: calc(10px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .button-round .icon.icon-arrow::before,
  a.button-round .icon.icon-arrow::before {
    height: calc(10px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .button-round .icon.icon-arrow::before,
  a.button-round .icon.icon-arrow::before {
    width: calc(10px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .button-round .icon.icon-arrow::before,
  a.button-round .icon.icon-arrow::before {
    width: calc(10px * var(--scale));
  }
}
.button-round .icon.icon-arrow.arrow-white::before,
a.button-round .icon.icon-arrow.arrow-white::before {
  background: url("../images/common/icon/arrow-white.svg") no-repeat center center/contain;
}
.button-round .icon.icon-arrow.blank,
a.button-round .icon.icon-arrow.blank {
  transform: rotate(-45deg);
}
.button-round .icon.icon-arrow.blank::before,
a.button-round .icon.icon-arrow.blank::before {
  background: url("../images/common/icon/arrow-white.svg") no-repeat center center/contain;
}
.button-round.disable, .button-round:disabled,
a.button-round.disable,
a.button-round:disabled {
  pointer-events: none;
  opacity: 0.3;
}
@media (hover: hover) and (pointer: fine) {
  .button-round:focus,
  a.button-round:focus {
    opacity: 0.75;
  }
  .button-round:hover,
  a.button-round:hover {
    opacity: 0.75;
  }
}

/* main
*************************/
/* video
*************************/
.video-container {
  display: flex;
  flex-direction: column;
}
.video-container .button-play {
  position: sticky;
  color: #2C673A;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F1ECE7;
  border-radius: 500px;
  top: calc(50svh - 14px * var(--scale));
  z-index: 1;
}
@media all and (min-width: 768.5px) {
  .video-container .button-play {
    height: calc(28px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .video-container .button-play {
    height: calc(28px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .video-container .button-play {
    width: calc(200px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .video-container .button-play {
    width: calc(200px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .video-container .button-play {
    margin: calc(-14px * var(--scale)) auto;
  }
}
@media all and (max-width: 768.4px) {
  .video-container .button-play {
    margin: calc(-14px * var(--scale)) auto;
  }
}
@media all and (min-width: 768.5px) {
  .video-container .button-play .text {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .video-container .button-play .text {
    font-size: max(14px * var(--scale), 10px);
  }
}
.video-container .button-play .icon {
  display: flex;
  position: absolute;
  margin: auto 0 auto auto;
  top: 0;
  bottom: 0;
  left: 0;
}
@media all and (min-width: 768.5px) {
  .video-container .button-play .icon {
    width: calc(6.43px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .video-container .button-play .icon {
    width: calc(6.43px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .video-container .button-play .icon {
    right: calc(12.57px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .video-container .button-play .icon {
    right: calc(12.57px * var(--scale));
  }
}
.video-container .video video {
  width: 100%;
}

html {
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

.main {
  position: relative;
  z-index: 1;
}

@keyframes tickerBackgroundAnimation {
  0% {
    background-position-x: 0%;
  }
  100% {
    background-position-x: -100%;
  }
}
.loop-text-holder {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100lvh;
  display: flex;
  align-items: flex-end;
}
.loop-text-holder .texts {
  width: 100%;
  display: flex;
  white-space: nowrap;
  bottom: 0;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
  background: linear-gradient(90deg, rgba(217, 217, 217, 0.6) 0%, rgba(217, 217, 217, 0.1) 25%, rgba(217, 217, 217, 0.1) 75%, rgba(217, 217, 217, 0.6) 100%);
  background-clip: text;
  color: transparent;
  padding-bottom: calc(100lvh - 100svh);
}
@media all and (min-width: 768.5px) {
  .loop-text-holder .texts {
    font-size: max(160px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .loop-text-holder .texts {
    font-size: max(120px * var(--scale), 10px);
  }
}
[data-page-id=home] .loop-text-holder .texts {
  line-height: 1;
}
@media all and (min-width: 768.5px) {
  [data-page-id=home] .loop-text-holder .texts {
    font-size: max(240px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=home] .loop-text-holder .texts {
    font-size: max(200px * var(--scale), 10px);
  }
}
.loop-text-holder .texts .text {
  display: flex;
  align-items: flex-end;
  padding-right: 0.2em;
}
@media all and (min-width: 768.5px) {
  .loop-text-holder .texts .text {
    height: calc(160px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .loop-text-holder .texts .text {
    height: calc(120px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .loop-text-holder .texts .text {
    margin-bottom: calc(23px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .loop-text-holder .texts .text {
    margin-bottom: calc(40px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=home] .loop-text-holder .texts .text {
    height: calc(240px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=home] .loop-text-holder .texts .text {
    height: calc(200px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=home] .loop-text-holder .texts .text {
    margin-bottom: calc(-13px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=home] .loop-text-holder .texts .text {
    margin-bottom: calc(-8px * var(--scale));
  }
}
.loop-text-holder .texts .text span {
  flex-shrink: 0;
  display: block;
  margin-bottom: -100%;
}
[data-page-id=home] .loop-text-holder .texts {
  line-height: 1;
  opacity: 0.3;
  background: url("../images/home/text-gradation.png") repeat-x left bottom;
  background-clip: text;
}

.section-kv {
  position: relative;
  height: 100vh;
  height: 100svh;
}

.section-wrapper {
  flex-shrink: 0;
  margin: auto;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media all and (min-width: 768.5px) {
  .section-wrapper {
    width: calc(900px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-wrapper {
    width: calc(350px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .section-wrapper {
    padding-bottom: calc(60px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-wrapper {
    padding-bottom: calc(60px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .section-wrapper {
    margin-bottom: calc(200px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-wrapper {
    margin-bottom: calc(90px * var(--scale));
  }
}

/* home
*********************************/
[data-page-id=home] .loop-text-holder {
  z-index: 3;
}

.section-top-kv {
  width: 100%;
  height: 100vh;
  height: 100lvh;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: sticky;
  top: 0;
  padding-bottom: calc(100lvh - 100svh);
  z-index: 3;
  pointer-events: none;
}
.section-top-kv .lead {
  line-height: 1.3;
  text-align: center;
}
@media all and (min-width: 768.5px) {
  .section-top-kv .lead {
    font-size: max(24px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .section-top-kv .lead {
    font-size: max(18px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .section-top-kv .lead {
    margin-bottom: calc(60px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-kv .lead {
    margin-bottom: calc(53px * var(--scale));
  }
}
html[lang=en-US] .section-top-kv .lead {
  letter-spacing: 0.02em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .section-top-kv .lead {
    font-size: max(20px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .section-top-kv .lead {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .section-top-kv {
    margin-bottom: calc(-380px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-kv {
    margin-bottom: calc(-320px * var(--scale));
  }
}

.section-top-statement {
  position: relative;
  padding-top: 100lvh;
}
.section-top-statement .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
}
.section-top-statement .bg .bg-pic {
  height: calc(100lvh + 380px * var(--scale));
  position: sticky;
}
@media all and (min-width: 768.5px) {
  .section-top-statement .bg .bg-pic {
    top: calc(-380px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-statement .bg .bg-pic {
    top: calc(-320px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .section-top-statement .bg .bg-pic {
    height: calc(100lvh + 320px * var(--scale));
  }
}
.section-top-statement .bg .bg-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.section-top-statement .blur-margin {
  height: 400px;
}
.section-top-statement .container-l {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}
@media all and (min-width: 768.5px) {
  .section-top-statement .container-l {
    padding: calc(155px * var(--scale)) calc(0px * var(--scale)) calc(70px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-statement .container-l {
    padding: calc(77.5px * var(--scale)) calc(0px * var(--scale)) calc(142px * var(--scale));
  }
}
.section-top-statement .text {
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}
@media all and (min-width: 768.5px) {
  .section-top-statement .text {
    font-size: max(24px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .section-top-statement .text {
    font-size: max(18px * var(--scale), 10px);
  }
}
html[lang=en-US] .section-top-statement .text {
  line-height: 1.5;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .section-top-statement .text {
    width: auto;
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .section-top-statement .text {
    width: calc(310px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .section-top-statement .text {
    font-size: max(20px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .section-top-statement .text {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media (max-width: 768.4px) {
  html[lang=en-US] .section-top-statement .text {
    text-align: left;
  }
}
@media all and (min-width: 768.5px) {
  .section-top-statement .logo {
    margin-top: calc(147px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-statement .logo {
    margin-top: calc(39px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .section-top-statement .logo {
    width: calc(50px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-statement .logo {
    width: calc(50px * var(--scale));
  }
}

.section-top-news {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 1;
}
.section-top-news .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section-top-news .bg::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  background: url("../images/home/news-image.jpg") no-repeat center center/cover;
}
@media all and (min-width: 768.5px) {
  .section-top-news {
    padding: calc(155px * var(--scale)) calc(0px * var(--scale)) calc(200px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-news {
    padding: calc(200px * var(--scale)) calc(0px * var(--scale)) calc(200px * var(--scale));
  }
}
.section-top-news .news-list-holder {
  gap: 1px;
  position: relative;
  margin: auto;
  display: flex;
  flex-direction: column;
}
@media all and (min-width: 768.5px) {
  .section-top-news .news-list-holder {
    width: calc(960px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-news .news-list-holder {
    width: calc(310px * var(--scale));
  }
}
.section-top-news .news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}
@media (max-width: 768.4px) {
  .section-top-news .news-list {
    grid-template-columns: 1fr;
  }
}
.section-top-news .news-list .no-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}
.section-top-news .news-list-item {
  position: relative;
  display: flex;
}
@media (min-width: 768.5px) {
  .section-top-news .news-list-item:first-child a {
    background: #F1ECE7 url("../images/home/news-inner-image.jpg") no-repeat left bottom calc(-80px * var(--scale))/calc(960px * var(--scale));
  }
  .section-top-news .news-list-item:last-child a {
    background: #F1ECE7 url("../images/home/news-inner-image.jpg") no-repeat right bottom calc(-80px * var(--scale))/calc(960px * var(--scale));
  }
}
.section-top-news .news-list-item a {
  color: #18361F;
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
}
@media (min-width: 768.5px) {
  .section-top-news .news-list-item a {
    background: #F1ECE7 url("../images/home/news-inner-image.jpg") no-repeat center bottom calc(-80px * var(--scale))/calc(960px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .section-top-news .news-list-item a {
    background-color: #F1ECE7;
  }
}
@media (hover: hover) and (pointer: fine) {
  .section-top-news .news-list-item a:focus .button-round .icon {
    transform: translateX(calc(6px * var(--scale)));
  }
  .section-top-news .news-list-item a:hover .button-round .icon {
    transform: translateX(calc(6px * var(--scale)));
  }
}
.section-top-news .news-list-item figure {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  grid-column: 1/2;
  grid-row: 1/2;
}
.section-top-news .news-list-item figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(217, 217, 217) 0%, rgba(115, 115, 115, 0) 100%);
  z-index: 1;
}
.section-top-news .news-list-item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-top-news .news-list-item .over {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  grid-column: 1/2;
  grid-row: 1/2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
@media all and (min-width: 768.5px) {
  .section-top-news .news-list-item .over {
    padding: calc(20px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-news .news-list-item .over {
    padding: calc(20px * var(--scale));
  }
}
.section-top-news .news-list-item .over .date {
  color: #2C673A;
}
@media all and (min-width: 768.5px) {
  .section-top-news .news-list-item .over .date {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .section-top-news .news-list-item .over .date {
    font-size: max(12px * var(--scale), 10px);
  }
}
.section-top-news .news-list-item .title-holder {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media all and (min-width: 768.5px) {
  .section-top-news .news-list-item .title-holder {
    min-height: calc(130px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-news .news-list-item .title-holder {
    min-height: calc(112px * var(--scale));
  }
}
.section-top-news .news-list-item .title-holder .title {
  line-height: 1.66;
  text-align: center;
}
@media all and (min-width: 768.5px) {
  .section-top-news .news-list-item .title-holder .title {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .section-top-news .news-list-item .title-holder .title {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .section-top-news .news-list-item .title-holder .title {
    padding: calc(15px * var(--scale)) calc(30px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-news .news-list-item .title-holder .title {
    padding: calc(15px * var(--scale));
  }
}
.section-top-news .news-list-item .title-holder .title span {
  display: inline-block;
}
.section-top-news .btn-holder {
  background: #F1ECE7 url("../images/home/news-inner-image.jpg") no-repeat center bottom/cover;
}
.section-top-news .btn-more {
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: circle(calc(40px * var(--scale)) at 50% 50%);
}
@media all and (min-width: 768.5px) {
  .section-top-news .btn-more {
    width: calc(80px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-news .btn-more {
    width: calc(60px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .section-top-news .btn-more {
    height: calc(80px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-news .btn-more {
    height: calc(60px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .section-top-news .btn-more {
    margin: auto auto;
  }
}
@media all and (max-width: 768.4px) {
  .section-top-news .btn-more {
    margin: calc(30px * var(--scale)) auto;
  }
}
@media (max-width: 768.4px) {
  .section-top-news .btn-more {
    clip-path: circle(calc(30px * var(--scale)) at 50% 50%);
  }
}
@media (hover: hover) and (pointer: fine) {
  .section-top-news .btn-more:focus .icon {
    scale: 1.3;
  }
  .section-top-news .btn-more:hover .icon {
    scale: 1.3;
  }
}
.section-top-news .btn-more .icon {
  transition: scale 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media all and (min-width: 768.5px) {
  .section-top-news .btn-more .icon {
    width: calc(16px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-news .btn-more .icon {
    width: calc(16px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .section-top-news .btn-more .icon {
    height: calc(16px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-news .btn-more .icon {
    height: calc(16px * var(--scale));
  }
}
.section-top-news .btn-more::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  z-index: -2;
  background: url("../images/home/news-image.jpg") no-repeat center center/cover;
}

/* service
*********************************/
[data-page-id=service] .service-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100lvh;
}
[data-page-id=service] .service-bg .bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 1.5s opacity;
}
[data-page-id=service] .service-bg .bg.bg-01 {
  opacity: 1 !important;
}
[data-page-id=service] .service-bg .bg.show {
  opacity: 1;
}
[data-page-id=service] .service-bg .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
[data-page-id=service] .loop-text-holder {
  z-index: 3;
}
[data-page-id=service] .section-kv {
  margin-bottom: calc(-220px * var(--scale));
  z-index: 2;
}
[data-page-id=service] .section-kv .bg {
  pointer-events: none;
  width: 100%;
  height: 100svh;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
}
[data-page-id=service] .section-kv .bg img {
  position: absolute;
  left: -3%;
  width: 105%;
  height: auto;
}
@media all and (min-width: 768.5px) {
  [data-page-id=service] .section-kv .bg img {
    bottom: calc(-216px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=service] .section-kv .bg img {
    bottom: calc(-207px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  [data-page-id=service] .section-kv .bg img {
    left: -185%;
    width: 362%;
  }
}
[data-page-id=service] .sticky-container {
  display: flex;
}
[data-page-id=service] .sticky-item {
  position: sticky;
  height: 100dvh;
  width: 100%;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
[data-page-id=service] .sticky-item .pagenation-holder {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media all and (min-width: 768.5px) {
  [data-page-id=service] .sticky-item .pagenation-holder:has(.prev) {
    margin-right: calc(-40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=service] .sticky-item .pagenation-holder:has(.prev) {
    margin-right: calc(-20px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=service] .sticky-item .pagenation-holder:has(.prev) {
    padding-right: calc(40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=service] .sticky-item .pagenation-holder:has(.prev) {
    padding-right: calc(0px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  [data-page-id=service] .sticky-item .pagenation-holder:has(.prev) {
    width: calc(100% + 40px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  [data-page-id=service] .sticky-item .pagenation-holder:has(.prev) {
    width: calc(100% + 20px * var(--scale));
  }
}
[data-page-id=service] .sticky-item .pagenation-holder:has(.prev) .circle {
  right: 0;
}
@media all and (min-width: 768.5px) {
  [data-page-id=service] .sticky-item .pagenation-holder:has(.next) {
    margin-left: calc(-40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=service] .sticky-item .pagenation-holder:has(.next) {
    margin-left: calc(-20px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=service] .sticky-item .pagenation-holder:has(.next) {
    padding-left: calc(40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=service] .sticky-item .pagenation-holder:has(.next) {
    padding-left: calc(0px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  [data-page-id=service] .sticky-item .pagenation-holder:has(.next) {
    width: calc(100% + 40px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  [data-page-id=service] .sticky-item .pagenation-holder:has(.next) {
    width: calc(100% + 20px * var(--scale));
  }
}
[data-page-id=service] .sticky-item .pagenation-holder:has(.next) .circle {
  left: 0;
}
[data-page-id=service] .sticky-item .pagenation-holder .circle {
  position: absolute;
  right: 0;
  top: 0;
  clip-path: circle(50%);
}
@media all and (min-width: 768.5px) {
  [data-page-id=service] .sticky-item .pagenation-holder .circle {
    width: calc(80px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=service] .sticky-item .pagenation-holder .circle {
    width: calc(40px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=service] .sticky-item .pagenation-holder .circle {
    height: calc(80px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=service] .sticky-item .pagenation-holder .circle {
    height: calc(40px * var(--scale));
  }
}
[data-page-id=service] .sticky-item .pagenation {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
@media all and (min-width: 768.5px) {
  [data-page-id=service] .sticky-item .pagenation {
    width: calc(80px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=service] .sticky-item .pagenation {
    width: calc(40px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=service] .sticky-item .pagenation {
    height: calc(80px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=service] .sticky-item .pagenation {
    height: calc(40px * var(--scale));
  }
}
@media (hover: hover) and (pointer: fine) {
  [data-page-id=service] .sticky-item .pagenation:focus img {
    transform: translateX(calc(8px * var(--scale)));
  }
  [data-page-id=service] .sticky-item .pagenation:hover img {
    transform: translateX(calc(8px * var(--scale)));
  }
}
[data-page-id=service] .sticky-item .pagenation img {
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media all and (min-width: 768.5px) {
  [data-page-id=service] .sticky-item .pagenation img {
    width: calc(23px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=service] .sticky-item .pagenation img {
    width: calc(12px * var(--scale));
  }
}
[data-page-id=service] .sticky-item .pagenation.prev img {
  transform: rotate(180deg);
}
@media (hover: hover) and (pointer: fine) {
  [data-page-id=service] .sticky-item .pagenation.prev:focus img {
    transform: translateX(calc(-8px * var(--scale))) rotate(180deg);
  }
  [data-page-id=service] .sticky-item .pagenation.prev:hover img {
    transform: translateX(calc(-8px * var(--scale))) rotate(180deg);
  }
}
[data-page-id=service] .sticky-item .pagenation.disabled {
  pointer-events: none;
}
[data-page-id=service] .sticky-item .pagenation.disabled img {
  opacity: 0.4;
}
[data-page-id=service] .section-wrapper {
  padding-bottom: 0;
  overflow: clip;
}
[data-page-id=service] .section-wrapper .abs {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background: #D9D9D9;
}
[data-page-id=service] .section-wrapper .abs .base {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  clip-path: inset(0);
}
[data-page-id=service] .section-wrapper .abs .base::before {
  opacity: 0.1;
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/common/tree.jpg") no-repeat top center/cover;
}
[data-page-id=service] .section-wrapper .abs .base::after {
  opacity: 0.4;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/common/gradation.png") no-repeat top center/cover;
}
[data-page-id=service] .section-wrapper .section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media all and (min-width: 768.5px) {
  [data-page-id=service] .section-wrapper .section {
    gap: calc(38px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=service] .section-wrapper .section {
    gap: calc(37px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=service] .section-wrapper .section {
    padding: calc(21px * var(--scale)) calc(0px * var(--scale)) calc(103px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=service] .section-wrapper .section {
    padding: calc(48px * var(--scale)) calc(0px * var(--scale)) calc(82px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] [data-page-id=service] .section-wrapper .section {
    padding: calc(21px * var(--scale)) calc(0px * var(--scale)) calc(81px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] [data-page-id=service] .section-wrapper .section {
    padding: calc(55px * var(--scale)) calc(0px * var(--scale)) calc(79px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=service] .section-wrapper .section:last-child {
    padding-bottom: calc(154px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=service] .section-wrapper .section:last-child {
    padding-bottom: calc(115px * var(--scale));
  }
}
[data-page-id=service] .section-wrapper .section-title-holder {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
[data-page-id=service] .section-wrapper .section-title-holder .number {
  line-height: 1.1;
  text-align: center;
}
@media all and (min-width: 768.5px) {
  [data-page-id=service] .section-wrapper .section-title-holder .number {
    font-size: max(160px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=service] .section-wrapper .section-title-holder .number {
    font-size: max(120px * var(--scale), 10px);
  }
}
[data-page-id=service] .section-wrapper .section-title-holder .title-main {
  line-height: 180%;
}
@media all and (min-width: 768.5px) {
  [data-page-id=service] .section-wrapper .section-title-holder .title-main {
    font-size: max(24px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=service] .section-wrapper .section-title-holder .title-main {
    font-size: max(18px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=service] .section-wrapper .section-title-holder .title-main {
    margin-top: calc(-1px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=service] .section-wrapper .section-title-holder .title-main {
    margin-top: calc(-12px * var(--scale));
  }
}
html[lang=en-US] [data-page-id=service] .section-wrapper .section-title-holder .title-main {
  line-height: 1.2;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] [data-page-id=service] .section-wrapper .section-title-holder .title-main {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] [data-page-id=service] .section-wrapper .section-title-holder .title-main {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] [data-page-id=service] .section-wrapper .section-title-holder .title-main {
    margin-top: calc(5px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] [data-page-id=service] .section-wrapper .section-title-holder .title-main {
    margin-top: calc(-5px * var(--scale));
  }
}
[data-page-id=service] .section-wrapper .section-title-holder .title-sub {
  color: #FAD94A;
  font-weight: 600;
}
@media all and (min-width: 768.5px) {
  [data-page-id=service] .section-wrapper .section-title-holder .title-sub {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=service] .section-wrapper .section-title-holder .title-sub {
    font-size: max(10px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=service] .section-wrapper .section-title-holder .title-sub {
    margin-top: calc(-4px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=service] .section-wrapper .section-title-holder .title-sub {
    margin-top: calc(-1px * var(--scale));
  }
}
[data-page-id=service] .section-wrapper .section-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media all and (min-width: 768.5px) {
  [data-page-id=service] .section-wrapper .section-body {
    gap: calc(56px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=service] .section-wrapper .section-body {
    gap: calc(36px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=service] .section-wrapper .section-body {
    width: calc(600px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=service] .section-wrapper .section-body {
    width: calc(270px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] [data-page-id=service] .section-wrapper .section-body {
    gap: calc(80px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] [data-page-id=service] .section-wrapper .section-body {
    gap: calc(36px * var(--scale));
  }
}
[data-page-id=service] .section-wrapper .section-body .pic {
  width: 100%;
}
[data-page-id=service] .section-wrapper .section-body .text-read {
  line-height: 1.6;
}
@media all and (min-width: 768.5px) {
  [data-page-id=service] .section-wrapper .section-body .text-read {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=service] .section-wrapper .section-body .text-read {
    font-size: max(14px * var(--scale), 10px);
  }
}
html[lang=en-US] [data-page-id=service] .section-wrapper .section-body .text-read {
  line-height: 1.4;
}

/* company
*********************************/
body:has([data-page-id=company]) {
  background-color: #F1ECE7;
}

[data-page-id=company] .loop-text-holder {
  z-index: 3;
}
[data-page-id=company] .bg-white {
  position: relative;
}
[data-page-id=company] .bg-white::before {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
  background: #F1ECE7 url("../images/company/bg-02.jpg") no-repeat bottom center/contain;
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .bg-white::before {
    top: calc(253px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .bg-white::before {
    top: calc(100px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  [data-page-id=company] .bg-white::before {
    background: #F1ECE7 url("../images/company/bg-02-sp.jpg") no-repeat bottom center/contain;
  }
}
[data-page-id=company] .section-wrapper {
  margin-bottom: 0;
  padding-bottom: 0;
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section {
    margin-bottom: calc(200px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section {
    margin-bottom: calc(160px * var(--scale));
  }
}
[data-page-id=company] .section-kv {
  margin-bottom: calc(-220px * var(--scale));
}
[data-page-id=company] .section-statement {
  position: relative;
  background-color: #7CB2E2;
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-statement {
    height: calc(1904px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-statement {
    height: calc(2700px * var(--scale));
  }
}
[data-page-id=company] .section-statement .statement-bg {
  position: absolute;
  inset: 0;
}
[data-page-id=company] .section-statement .statement-bg .top {
  position: absolute;
  top: 0;
  width: 100%;
}
@media (min-width: 768.5px) {
  [data-page-id=company] .section-statement .statement-bg .top {
    height: 100%;
  }
  [data-page-id=company] .section-statement .statement-bg .top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
[data-page-id=company] .section-statement .statement-bg .bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
}
[data-page-id=company] .section-statement .section-title-holder {
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-statement .section-title-holder {
    margin-top: calc(77px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-statement .section-title-holder {
    margin-top: calc(78px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-statement .section-title-holder {
    width: auto;
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-statement .section-title-holder {
    width: calc(310px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  [data-page-id=company] .section-statement .section-title-holder {
    text-align: center;
  }
}
[data-page-id=company] .section-statement .section-title-holder .texts {
  background: url("../images/company/text-bg.png") no-repeat center center/calc(1000px * var(--scale)) auto;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.05em;
  line-height: 1;
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-statement .section-title-holder .texts {
    font-size: max(28px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-statement .section-title-holder .texts {
    font-size: max(24px * var(--scale), 10px);
  }
}
@media (max-width: 768.4px) {
  [data-page-id=company] .section-statement .section-title-holder .texts {
    line-height: 1.22;
  }
}
[data-page-id=company] .section-statement .section-title-holder .title-main {
  line-height: 1.4;
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-statement .section-title-holder .title-main {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-statement .section-title-holder .title-main {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-statement .section-title-holder .title-main {
    margin-top: calc(3px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-statement .section-title-holder .title-main {
    margin-top: calc(29px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-statement .section-title-holder .title-main {
    margin-left: calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-statement .section-title-holder .title-main {
    margin-left: calc(5px * var(--scale));
  }
}
html[lang=en-US] [data-page-id=company] .section-statement .section-title-holder .title-main {
  line-height: 1.2;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] [data-page-id=company] .section-statement .section-title-holder .title-main {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] [data-page-id=company] .section-statement .section-title-holder .title-main {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] [data-page-id=company] .section-statement .section-title-holder .title-main {
    margin-top: calc(15px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] [data-page-id=company] .section-statement .section-title-holder .title-main {
    margin-top: calc(29px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-statement .section-body {
    margin-top: calc(114px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-statement .section-body {
    margin-top: calc(0px * var(--scale));
  }
}
[data-page-id=company] .section-statement .section-body .text-read {
  line-height: 1.6;
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-statement .section-body .text-read {
    font-size: max(20px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-statement .section-body .text-read {
    font-size: max(16px * var(--scale), 10px);
  }
}
html[lang=en-US] [data-page-id=company] .section-statement .section-body .text-read {
  line-height: 1.2;
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-statement .section-body .section-body-title {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-statement .section-body .section-body-title {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media (min-width: 768.5px) {
  [data-page-id=company] .section-statement .section-body .section-body-title {
    text-align: center;
  }
}
[data-page-id=company] .section-statement .section-body .company-item-list {
  display: grid;
  grid-template-columns: 1fr;
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-statement .section-body .company-item-list {
    margin-top: calc(71px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-statement .section-body .company-item-list {
    margin-top: calc(91px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-statement .section-body .company-item-list {
    padding: calc(0px * var(--scale)) calc(40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-statement .section-body .company-item-list {
    padding: calc(0px * var(--scale)) calc(10px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-statement .section-body .company-item-list {
    gap: calc(90px * var(--scale)) calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-statement .section-body .company-item-list {
    gap: calc(97px * var(--scale)) calc(0px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  [data-page-id=company] .section-statement .section-body .company-item-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
[data-page-id=company] .section-statement .section-body .company-item {
  position: relative;
  text-align: center;
}
@media (min-width: 768.5px) {
  [data-page-id=company] .section-statement .section-body .company-item {
    min-height: calc(var(--scale) * 260px);
  }
}
[data-page-id=company] .section-statement .section-body .company-item .item-num {
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  color: rgba(0, 0, 0, 0);
  line-height: 0.72;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  background-clip: text;
  letter-spacing: -0.06em;
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-statement .section-body .company-item .item-num {
    font-size: max(200px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-statement .section-body .company-item .item-num {
    font-size: max(200px * var(--scale), 10px);
  }
}
[data-page-id=company] .section-statement .section-body .company-item .item-sharp {
  position: relative;
  line-height: 1;
  color: #2C673A;
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-statement .section-body .company-item .item-sharp {
    font-size: max(20px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-statement .section-body .company-item .item-sharp {
    font-size: max(20px * var(--scale), 10px);
  }
}
[data-page-id=company] .section-statement .section-body .company-item .item-title-sholder {
  position: relative;
  letter-spacing: -0.06em;
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-statement .section-body .company-item .item-title-sholder {
    font-size: max(60px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-statement .section-body .company-item .item-title-sholder {
    font-size: max(60px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-statement .section-body .company-item .item-title-sholder {
    margin-top: calc(-5px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-statement .section-body .company-item .item-title-sholder {
    margin-top: calc(-5px * var(--scale));
  }
}
[data-page-id=company] .section-statement .section-body .company-item .item-title {
  position: relative;
  line-height: 1.6;
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-statement .section-body .company-item .item-title {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-statement .section-body .company-item .item-title {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-statement .section-body .company-item .item-title {
    margin-top: calc(-10px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-statement .section-body .company-item .item-title {
    margin-top: calc(-10px * var(--scale));
  }
}
[data-page-id=company] .section-statement .section-body .company-item .item-lead {
  position: relative;
  line-height: 1.6;
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-statement .section-body .company-item .item-lead {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-statement .section-body .company-item .item-lead {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-statement .section-body .company-item .item-lead {
    margin-top: calc(51px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-statement .section-body .company-item .item-lead {
    margin-top: calc(45px * var(--scale));
  }
}
[data-page-id=company] .section-information .section-body {
  display: flex;
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-information .section-body {
    gap: calc(50px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-information .section-body {
    gap: calc(160px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  [data-page-id=company] .section-information .section-body {
    flex-direction: column;
  }
}
[data-page-id=company] .section-information .information-item .information-title {
  color: #2C673A;
  letter-spacing: 0.04em;
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-information .information-item .information-title {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-information .information-item .information-title {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-information .information-item .information-title {
    line-height: calc(12px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-information .information-item .information-title {
    line-height: calc(12px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-information .information-item .information-title {
    padding: calc(33px * var(--scale)) calc(0px * var(--scale)) calc(35px * var(--scale)) calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-information .information-item .information-title {
    padding: calc(33px * var(--scale)) calc(0px * var(--scale)) calc(35px * var(--scale)) calc(0px * var(--scale));
  }
}
html[lang=en-US] [data-page-id=company] .section-information .information-item .information-title {
  letter-spacing: 0;
}
[data-page-id=company] .section-information .information-item .detail-item {
  color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ffffff;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-information .information-item .detail-item {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-information .information-item .detail-item {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-information .information-item .detail-item {
    height: calc(40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-information .information-item .detail-item {
    height: calc(40px * var(--scale));
  }
}
[data-page-id=company] .section-information .information-item .detail-item:last-child {
  border-bottom: 1px solid #ffffff;
}
[data-page-id=company] .section-information .information-item .detail-item .item-title {
  flex-shrink: 0;
}
[data-page-id=company] .section-information .information-item .detail-item .item-text {
  text-align: right;
  white-space: pre-line;
}
[data-page-id=company] .section-company-detail .section-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-company-detail .section-body {
    gap: calc(50px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-company-detail .section-body {
    gap: calc(20px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  [data-page-id=company] .section-company-detail .section-body {
    grid-template-columns: 1fr;
  }
}
[data-page-id=company] .section-company-detail .company-detail-item {
  display: flex;
  flex-direction: column;
  background-color: #2C673A;
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-company-detail .company-detail-item {
    border-radius: calc(10px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-company-detail .company-detail-item {
    border-radius: calc(10px * var(--scale));
  }
}
@media (hover: hover) and (pointer: fine) {
  [data-page-id=company] .section-company-detail .company-detail-item:focus .icon-arrow {
    opacity: 0.75;
  }
  [data-page-id=company] .section-company-detail .company-detail-item:hover .icon-arrow {
    opacity: 0.75;
  }
}
@media (min-width: 768.5px) {
  [data-page-id=company] .section-company-detail .company-detail-item:nth-child(3) {
    grid-column: 1/3;
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-company-detail .company-detail-item:nth-child(3) {
    margin: calc(0px * var(--scale)) calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-company-detail .company-detail-item:nth-child(3) {
    margin: calc(60px * var(--scale)) calc(0px * var(--scale));
  }
}
[data-page-id=company] .section-company-detail .company-detail-item .company-detail-title {
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-company-detail .company-detail-item .company-detail-title {
    height: calc(80px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-company-detail .company-detail-item .company-detail-title {
    height: calc(80px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-company-detail .company-detail-item .company-detail-title {
    font-size: max(18px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-company-detail .company-detail-item .company-detail-title {
    font-size: max(18px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-company-detail .company-detail-item .company-detail-title {
    padding: calc(0px * var(--scale)) calc(40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-company-detail .company-detail-item .company-detail-title {
    padding: calc(0px * var(--scale)) calc(20px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] [data-page-id=company] .section-company-detail .company-detail-item .company-detail-title {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] [data-page-id=company] .section-company-detail .company-detail-item .company-detail-title {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-company-detail .company-detail-item .company-detail-title.small {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-company-detail .company-detail-item .company-detail-title.small {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-company-detail .company-detail-item .company-detail-title.small {
    padding: calc(0px * var(--scale)) calc(20px * var(--scale)) calc(0px * var(--scale)) calc(40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-company-detail .company-detail-item .company-detail-title.small {
    padding: calc(0px * var(--scale)) calc(20px * var(--scale)) calc(0px * var(--scale)) calc(40px * var(--scale));
  }
}
[data-page-id=company] .section-company-detail .company-detail-item:has(.company-detail-inner) .company-detail-title {
  border-bottom: 1px solid #ffffff;
}
[data-page-id=company] .section-company-detail .company-detail-item .company-detail-inner {
  margin: auto 0 0 0;
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-company-detail .company-detail-item ul {
    padding: calc(73px * var(--scale)) calc(40px * var(--scale)) calc(36px * var(--scale)) calc(40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-company-detail .company-detail-item ul {
    padding: calc(73px * var(--scale)) calc(20px * var(--scale)) calc(35px * var(--scale)) calc(20px * var(--scale));
  }
}
[data-page-id=company] .section-company-detail .company-detail-item ul li {
  display: flex;
  line-height: 1.4;
  white-space: pre-line;
  word-break: break-word;
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-company-detail .company-detail-item ul li {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-company-detail .company-detail-item ul li {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] [data-page-id=company] .section-company-detail .company-detail-item ul li {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] [data-page-id=company] .section-company-detail .company-detail-item ul li {
    font-size: max(12px * var(--scale), 10px);
  }
}
[data-page-id=company] .section-company-detail .company-detail-item ul li::before {
  content: "";
  display: block;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #fff;
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-company-detail .company-detail-item ul li::before {
    width: calc(6px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-company-detail .company-detail-item ul li::before {
    width: calc(6px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-company-detail .company-detail-item ul li::before {
    height: calc(6px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-company-detail .company-detail-item ul li::before {
    height: calc(6px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-company-detail .company-detail-item ul li::before {
    margin-top: calc(6px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-company-detail .company-detail-item ul li::before {
    margin-top: calc(6px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-company-detail .company-detail-item ul li::before {
    margin-right: calc(18px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-company-detail .company-detail-item ul li::before {
    margin-right: calc(18px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-company-detail .company-detail-item ul li + li {
    margin-top: calc(20px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-company-detail .company-detail-item ul li + li {
    margin-top: calc(20px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] [data-page-id=company] .section-company-detail .company-detail-item ul li + li {
    margin-top: calc(14px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] [data-page-id=company] .section-company-detail .company-detail-item ul li + li {
    margin-top: calc(14px * var(--scale));
  }
}
[data-page-id=company] .section-company-detail .company-detail-item .pdf-list {
  display: flex;
  flex-direction: column;
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-company-detail .company-detail-item .pdf-list {
    padding: calc(80px * var(--scale)) calc(40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-company-detail .company-detail-item .pdf-list {
    padding: calc(80px * var(--scale)) calc(20px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-company-detail .company-detail-item .pdf-list {
    gap: calc(10px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-company-detail .company-detail-item .pdf-list {
    gap: calc(10px * var(--scale));
  }
}
[data-page-id=company] .section-company-detail .company-detail-item .pdf-item {
  display: flex;
  align-items: center;
  background-color: #F1ECE7;
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-company-detail .company-detail-item .pdf-item {
    padding: calc(8px * var(--scale)) calc(20px * var(--scale)) calc(8px * var(--scale)) calc(20px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-company-detail .company-detail-item .pdf-item {
    padding: calc(14px * var(--scale)) calc(20px * var(--scale)) calc(20px * var(--scale)) calc(20px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-company-detail .company-detail-item .pdf-item {
    gap: calc(32px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-company-detail .company-detail-item .pdf-item {
    gap: calc(32px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  [data-page-id=company] .section-company-detail .company-detail-item .pdf-item {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] [data-page-id=company] .section-company-detail .company-detail-item .pdf-item {
    padding: calc(17px * var(--scale)) calc(20px * var(--scale)) calc(15px * var(--scale)) calc(20px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] [data-page-id=company] .section-company-detail .company-detail-item .pdf-item {
    padding: calc(14px * var(--scale)) calc(20px * var(--scale)) calc(20px * var(--scale)) calc(20px * var(--scale));
  }
}
[data-page-id=company] .section-company-detail .company-detail-item .pdf-item .item-title {
  color: #000000;
  display: flex;
  line-height: 2;
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-company-detail .company-detail-item .pdf-item .item-title {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-company-detail .company-detail-item .pdf-item .item-title {
    font-size: max(12px * var(--scale), 10px);
  }
}
html[lang=en-US] [data-page-id=company] .section-company-detail .company-detail-item .pdf-item .item-title {
  line-height: 1.2;
}
[data-page-id=company] .section-company-detail .company-detail-item .pdf-item .item-title::before {
  content: "";
  display: block;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #fff;
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-company-detail .company-detail-item .pdf-item .item-title::before {
    width: calc(6px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-company-detail .company-detail-item .pdf-item .item-title::before {
    width: calc(6px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-company-detail .company-detail-item .pdf-item .item-title::before {
    height: calc(6px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-company-detail .company-detail-item .pdf-item .item-title::before {
    height: calc(6px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-company-detail .company-detail-item .pdf-item .item-title::before {
    margin-top: calc(6px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-company-detail .company-detail-item .pdf-item .item-title::before {
    margin-top: calc(6px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-company-detail .company-detail-item .pdf-item .item-title::before {
    margin-right: calc(18px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-company-detail .company-detail-item .pdf-item .item-title::before {
    margin-right: calc(18px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] [data-page-id=company] .section-company-detail .company-detail-item .pdf-item .item-title::before {
    margin-top: calc(5px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] [data-page-id=company] .section-company-detail .company-detail-item .pdf-item .item-title::before {
    margin-top: calc(5px * var(--scale));
  }
}
[data-page-id=company] .section-company-detail .company-detail-item .pdf-item .button-round {
  margin-left: auto;
  margin-right: 0;
}
@media all and (min-width: 768.5px) {
  [data-page-id=company] .section-company-detail .company-detail-item .pdf-item .button-round {
    margin-left: auto;
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=company] .section-company-detail .company-detail-item .pdf-item .button-round {
    margin-left: calc(26px * var(--scale));
  }
}

/* social-activities
*********************************/
body:has([data-page-id=social-activities]) {
  background-color: #F1ECE7;
}

[data-page-id=social-activities] .loop-text-holder {
  z-index: 3;
}
[data-page-id=social-activities] .section-kv {
  margin-bottom: calc(-220px * var(--scale));
}
[data-page-id=social-activities] .section-statement {
  position: relative;
  background-color: #2C673A;
}
[data-page-id=social-activities] .section-statement .bg {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(30, 30, 30, 0.2) 0%, #848484 100%);
  opacity: 0.2;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
[data-page-id=social-activities] .section-statement .bg .pic {
  position: absolute;
  inset: 0;
}
[data-page-id=social-activities] .section-statement .bg .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
[data-page-id=social-activities] .section-statement .bg iframe {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: auto;
  aspect-ratio: 16/9;
}
[data-page-id=social-activities] .section-statement .section-title-holder {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media all and (min-width: 768.5px) {
  [data-page-id=social-activities] .section-statement .section-title-holder {
    margin-top: calc(16px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=social-activities] .section-statement .section-title-holder {
    margin-top: calc(16px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=social-activities] .section-statement .section-title-holder {
    gap: calc(55px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=social-activities] .section-statement .section-title-holder {
    gap: calc(60px * var(--scale));
  }
}
[data-page-id=social-activities] .section-statement .section-title-holder .texts {
  color: #FAD94A;
  letter-spacing: -0.05em;
  line-height: 1;
}
@media all and (min-width: 768.5px) {
  [data-page-id=social-activities] .section-statement .section-title-holder .texts {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=social-activities] .section-statement .section-title-holder .texts {
    font-size: max(12px * var(--scale), 10px);
  }
}
[data-page-id=social-activities] .section-statement .section-title-holder .title-main {
  line-height: 140%;
  text-align: center;
}
@media all and (min-width: 768.5px) {
  [data-page-id=social-activities] .section-statement .section-title-holder .title-main {
    font-size: max(20px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=social-activities] .section-statement .section-title-holder .title-main {
    font-size: max(20px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] [data-page-id=social-activities] .section-statement .section-title-holder .title-main {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] [data-page-id=social-activities] .section-statement .section-title-holder .title-main {
    font-size: max(14px * var(--scale), 10px);
  }
}
[data-page-id=social-activities] .section-statement .section-body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media all and (min-width: 768.5px) {
  [data-page-id=social-activities] .section-statement .section-body {
    margin-top: calc(90px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=social-activities] .section-statement .section-body {
    margin-top: calc(90px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=social-activities] .section-statement .section-body {
    margin-bottom: calc(106px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=social-activities] .section-statement .section-body {
    margin-bottom: calc(175px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] [data-page-id=social-activities] .section-statement .section-body {
    margin-bottom: calc(189px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] [data-page-id=social-activities] .section-statement .section-body {
    margin-bottom: calc(175px * var(--scale));
  }
}
[data-page-id=social-activities] .section-statement .section-body .text-read {
  line-height: 160%;
  letter-spacing: 0.04em;
  word-break: break-word;
}
@media all and (min-width: 768.5px) {
  [data-page-id=social-activities] .section-statement .section-body .text-read {
    width: calc(600px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=social-activities] .section-statement .section-body .text-read {
    width: calc(270px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=social-activities] .section-statement .section-body .text-read {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=social-activities] .section-statement .section-body .text-read {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] [data-page-id=social-activities] .section-statement .section-body .text-read {
    width: calc(600px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] [data-page-id=social-activities] .section-statement .section-body .text-read {
    width: calc(290px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] [data-page-id=social-activities] .section-statement .section-body .text-read {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] [data-page-id=social-activities] .section-statement .section-body .text-read {
    font-size: max(14px * var(--scale), 10px);
  }
}
[data-page-id=social-activities] .activities-wrapper {
  position: relative;
  clip-path: inset(0);
}
[data-page-id=social-activities] .activities-wrapper .fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  z-index: -1;
}
@media (min-width: 768.5px) {
  [data-page-id=social-activities] .activities-wrapper .fixed {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
[data-page-id=social-activities] .activities-wrapper .fixed .left {
  position: relative;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
[data-page-id=social-activities] .activities-wrapper .fixed .left::before {
  opacity: 0.4;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #D9D9D9 url("../images/common/gradation.png") no-repeat center center/cover;
}
[data-page-id=social-activities] .activities-wrapper .relative {
  position: relative;
}
@media (min-width: 768.5px) {
  [data-page-id=social-activities] .activities-wrapper .relative::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: #D9D9D9 url("../images/company/sky.jpg") no-repeat center center/cover;
  }
}
[data-page-id=social-activities] .activities-wrapper .area {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768.4px) {
  [data-page-id=social-activities] .activities-wrapper .area {
    grid-template-columns: 1fr;
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=social-activities] .activities-wrapper .area + .area {
    padding-bottom: calc(194px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=social-activities] .activities-wrapper .area + .area {
    padding-bottom: calc(200px * var(--scale));
  }
}
[data-page-id=social-activities] .activities-wrapper .area .title-holder {
  height: fit-content;
}
@media all and (min-width: 768.5px) {
  [data-page-id=social-activities] .activities-wrapper .area .title-holder {
    margin: calc(216px * var(--scale)) calc(100px * var(--scale)) calc(0px * var(--scale)) calc(100px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=social-activities] .activities-wrapper .area .title-holder {
    margin: calc(120px * var(--scale)) calc(20px * var(--scale)) calc(0px * var(--scale)) calc(20px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  [data-page-id=social-activities] .activities-wrapper .area .title-holder {
    position: sticky;
    top: calc(50vh - 135px * var(--scale));
  }
  html[lang=en-US] [data-page-id=social-activities] .activities-wrapper .area .title-holder {
    top: calc(50vh - 56px * var(--scale));
  }
}
[data-page-id=social-activities] .activities-wrapper .area .title-holder .shoulder {
  color: #FAD94A;
}
@media all and (min-width: 768.5px) {
  [data-page-id=social-activities] .activities-wrapper .area .title-holder .shoulder {
    font-size: max(24px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=social-activities] .activities-wrapper .area .title-holder .shoulder {
    font-size: max(24px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=social-activities] .activities-wrapper .area .title-holder .shoulder {
    line-height: calc(28px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=social-activities] .activities-wrapper .area .title-holder .shoulder {
    line-height: calc(28px * var(--scale));
  }
}
[data-page-id=social-activities] .activities-wrapper .area .title-holder .title {
  line-height: 160%;
  letter-spacing: 0.04em;
}
@media all and (min-width: 768.5px) {
  [data-page-id=social-activities] .activities-wrapper .area .title-holder .title {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=social-activities] .activities-wrapper .area .title-holder .title {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=social-activities] .activities-wrapper .area .title-holder .title {
    margin-top: calc(28px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=social-activities] .activities-wrapper .area .title-holder .title {
    margin-top: calc(28px * var(--scale));
  }
}
[data-page-id=social-activities] .activities-wrapper .area .block {
  padding: 100px;
  display: flex;
  flex-direction: column;
}
@media all and (min-width: 768.5px) {
  [data-page-id=social-activities] .activities-wrapper .area .block {
    padding: calc(200px * var(--scale)) calc(100px * var(--scale)) calc(0px * var(--scale)) calc(100px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=social-activities] .activities-wrapper .area .block {
    padding: calc(41px * var(--scale)) calc(20px * var(--scale)) calc(0px * var(--scale)) calc(20px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=social-activities] .activities-wrapper .area .block {
    gap: calc(35px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=social-activities] .activities-wrapper .area .block {
    gap: calc(0px * var(--scale));
  }
}
[data-page-id=social-activities] .activities-wrapper .area .block figure {
  clip-path: inset(0);
  aspect-ratio: 400/240;
}
[data-page-id=social-activities] .activities-wrapper .area .block figure::before {
  content: "";
  position: fixed;
  width: 50%;
  height: 100vh;
  height: 100lvh;
  top: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 768.4px) {
  [data-page-id=social-activities] .activities-wrapper .area .block figure::before {
    width: 100%;
  }
}
[data-page-id=social-activities] .activities-wrapper .area .block figure.mountain::before {
  background: #D9D9D9 url("../images/company/mountain.jpg") no-repeat center/cover;
}
@media (max-width: 768.4px) {
  [data-page-id=social-activities] .activities-wrapper .area .block figure.mountain::before {
    background: #D9D9D9 url("../images/company/mountain.jpg") no-repeat center/cover;
  }
}
[data-page-id=social-activities] .activities-wrapper .area .block figure.sea::before {
  background: #D9D9D9 url("../images/company/sea.jpg") no-repeat center/100% auto;
}
@media (max-width: 768.4px) {
  [data-page-id=social-activities] .activities-wrapper .area .block figure.sea::before {
    background: #D9D9D9 url("../images/company/sea.jpg") no-repeat center/cover;
  }
}
[data-page-id=social-activities] .activities-wrapper .area .block .text-read {
  line-height: 160%;
  letter-spacing: 0.04em;
  word-break: break-word;
}
@media all and (min-width: 768.5px) {
  [data-page-id=social-activities] .activities-wrapper .area .block .text-read {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=social-activities] .activities-wrapper .area .block .text-read {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=social-activities] .activities-wrapper .area .block .text-read {
    padding: calc(0px * var(--scale)) calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=social-activities] .activities-wrapper .area .block .text-read {
    padding: calc(70px * var(--scale)) calc(40px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  [data-page-id=social-activities] .activities-wrapper .area .block .text-read {
    background: #D9D9D9 url("../images/company/sky.jpg") no-repeat center center/cover fixed;
  }
}

/* news
*********************************/
body:has([data-page-id=news-index]) {
  background-color: #76A5CB;
}

[data-page-id=news-index] {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--headerHeight) * var(--scale));
  clip-path: inset(0);
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-index] {
    padding-left: calc(20px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-index] {
    padding-left: calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-index] {
    padding-right: calc(20px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-index] {
    padding-right: calc(0px * var(--scale));
  }
}
[data-page-id=news-index] .header-bg {
  position: fixed;
  width: 100%;
  height: calc(var(--headerHeight) * var(--scale));
  top: 0;
  left: 0;
  background-color: #76A5CB;
  z-index: 2;
}
[data-page-id=news-index] .abs {
  position: absolute;
  top: 0;
  z-index: 1;
  height: 100%;
  clip-path: inset(0);
  pointer-events: none;
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-index] .abs {
    left: calc(20px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-index] .abs {
    left: calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-index] .abs {
    right: calc(20px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-index] .abs {
    right: calc(0px * var(--scale));
  }
}
[data-page-id=news-index] .bg {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 100%);
}
[data-page-id=news-index] .shadow {
  position: absolute;
  top: calc(var(--headerHeight) * var(--scale));
  width: 100%;
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-index] .shadow {
    height: calc(60px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-index] .shadow {
    height: calc(60px * var(--scale));
  }
}
[data-page-id=news-index] .shadow::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: url("../images/common/tree.jpg") no-repeat center center/cover;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0));
}
[data-page-id=news-index] .shadow::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0.4;
  background: linear-gradient(180deg, hsla(143.85, 49.37%, 30.98%, 0.79) 0%, hsla(143.85, 49.37%, 30.98%, 0.78) 8.1%, hsla(143.85, 49.37%, 30.98%, 0.752) 15.5%, hsla(143.85, 49.37%, 30.98%, 0.708) 22.5%, hsla(143.85, 49.37%, 30.98%, 0.651) 29%, hsla(143.85, 49.37%, 30.98%, 0.585) 35.3%, hsla(143.85, 49.37%, 30.98%, 0.512) 41.2%, hsla(143.85, 49.37%, 30.98%, 0.434) 47.1%, hsla(143.85, 49.37%, 30.98%, 0.356) 52.9%, hsla(143.85, 49.37%, 30.98%, 0.278) 58.8%, hsla(143.85, 49.37%, 30.98%, 0.205) 64.7%, hsla(143.85, 49.37%, 30.98%, 0.139) 71%, hsla(143.85, 49.37%, 30.98%, 0.082) 77.5%, hsla(143.85, 49.37%, 30.98%, 0.038) 84.5%, hsla(143.85, 49.37%, 30.98%, 0.01) 91.9%, hsla(143.85, 49.37%, 30.98%, 0) 100%);
}
[data-page-id=news-index] .news-list {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(auto-fill, minmax(289px, 1fr));
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-index] .news-list {
    padding-bottom: calc(161px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-index] .news-list {
    padding-bottom: calc(186px * var(--scale));
  }
}
@media (min-width: 1200px) {
  [data-page-id=news-index] .news-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768.4px) {
  [data-page-id=news-index] .news-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
[data-page-id=news-index] .news-list-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #F1ECE7;
  color: #18361F;
  aspect-ratio: 1;
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-index] .news-list-item a {
    padding: calc(11px * var(--scale)) calc(20px * var(--scale)) calc(14px * var(--scale)) calc(20px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-index] .news-list-item a {
    padding: calc(11px * var(--scale)) calc(20px * var(--scale)) calc(14px * var(--scale)) calc(20px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  [data-page-id=news-index] .news-list-item a {
    aspect-ratio: 195/261;
  }
}
@media (hover: hover) and (pointer: fine) {
  [data-page-id=news-index] .news-list-item a:focus .button-round .icon {
    transform: translateX(calc(6px * var(--scale)));
  }
  [data-page-id=news-index] .news-list-item a:hover .button-round .icon {
    transform: translateX(calc(6px * var(--scale)));
  }
}
[data-page-id=news-index] .news-list-item .over {
  order: 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
}
[data-page-id=news-index] .news-list-item .over .date {
  color: #2C673A;
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-index] .news-list-item .over .date {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-index] .news-list-item .over .date {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-index] .news-list-item .over .button-round {
    min-width: calc(40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-index] .news-list-item .over .button-round {
    min-width: calc(40px * var(--scale));
  }
}
[data-page-id=news-index] .news-list-item figure {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 41.5224913495%;
  height: 41.5224913495%;
}
@media (max-width: 768.4px) {
  [data-page-id=news-index] .news-list-item figure {
    bottom: auto;
    top: calc(70px * var(--scale));
    width: calc(87px * var(--scale));
    height: calc(87px * var(--scale));
  }
}
[data-page-id=news-index] .news-list-item figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
[data-page-id=news-index] .news-list-item .title-holder {
  order: 1;
  width: 100%;
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-index] .news-list-item .title-holder {
    height: calc(45px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-index] .news-list-item .title-holder {
    height: calc(67px * var(--scale));
  }
}
[data-page-id=news-index] .news-list-item .title-holder .title {
  line-height: 160%;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-index] .news-list-item .title-holder .title {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-index] .news-list-item .title-holder .title {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media (max-width: 768.4px) {
  [data-page-id=news-index] .news-list-item .title-holder .title {
    -webkit-line-clamp: 3;
  }
}
[data-page-id=news-index] .pagination {
  margin-top: auto;
  margin-bottom: 0;
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-index] .pagination {
    padding: calc(0px * var(--scale)) calc(0px * var(--scale)) calc(149px * var(--scale)) calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-index] .pagination {
    padding: calc(0px * var(--scale)) calc(20px * var(--scale)) calc(20px * var(--scale)) calc(20px * var(--scale));
  }
}
[data-page-id=news-index] .pagination .pages {
  line-height: 1;
  display: flex;
  justify-content: center;
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-index] .pagination .pages {
    font-size: max(20px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-index] .pagination .pages {
    font-size: max(20px * var(--scale), 10px);
  }
}
[data-page-id=news-index] .pagination .pages .page-number,
[data-page-id=news-index] .pagination .pages .dots {
  opacity: 0.2;
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-index] .pagination .pages .page-number,
  [data-page-id=news-index] .pagination .pages .dots {
    padding: calc(10px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-index] .pagination .pages .page-number,
  [data-page-id=news-index] .pagination .pages .dots {
    padding: calc(10px * var(--scale));
  }
}
[data-page-id=news-index] .pagination .pages .page-number.current,
[data-page-id=news-index] .pagination .pages .dots.current {
  opacity: unset;
}
[data-page-id=news-index] .pagination .dots {
  pointer-events: none;
}
[data-page-id=news-index] .pagination .btn-list {
  display: flex;
  justify-content: space-between;
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-index] .pagination .btn-list {
    margin-top: calc(-20px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-index] .pagination .btn-list {
    margin-top: calc(146px * var(--scale));
  }
}

/* news詳細
*********************************/
body:has([data-page-id=news-detail]) {
  background-color: #76A5CB;
}

[data-page-id=news-detail] {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--headerHeight) * var(--scale));
  clip-path: inset(0);
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-detail] {
    padding-left: calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-detail] {
    padding-left: calc(20px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-detail] {
    padding-right: calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-detail] {
    padding-right: calc(20px * var(--scale));
  }
}
[data-page-id=news-detail] .header-bg {
  position: fixed;
  width: 100%;
  height: calc(var(--headerHeight) * var(--scale));
  top: 0;
  left: 0;
  background-color: #76A5CB;
  z-index: 2;
}
[data-page-id=news-detail] .abs {
  position: absolute;
  top: 0;
  z-index: 1;
  height: 100%;
  clip-path: inset(0);
  pointer-events: none;
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-detail] .abs {
    left: calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-detail] .abs {
    left: calc(20px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-detail] .abs {
    right: calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-detail] .abs {
    right: calc(20px * var(--scale));
  }
}
[data-page-id=news-detail] .shadow {
  position: absolute;
  top: calc(var(--headerHeight) * var(--scale));
  width: 100%;
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-detail] .shadow {
    height: calc(60px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-detail] .shadow {
    height: calc(60px * var(--scale));
  }
}
[data-page-id=news-detail] .shadow::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: url("../images/common/tree.jpg") no-repeat center center/cover;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0));
}
[data-page-id=news-detail] .shadow::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0.4;
  background: linear-gradient(180deg, hsla(143.85, 49.37%, 30.98%, 0.79) 0%, hsla(143.85, 49.37%, 30.98%, 0.78) 8.1%, hsla(143.85, 49.37%, 30.98%, 0.752) 15.5%, hsla(143.85, 49.37%, 30.98%, 0.708) 22.5%, hsla(143.85, 49.37%, 30.98%, 0.651) 29%, hsla(143.85, 49.37%, 30.98%, 0.585) 35.3%, hsla(143.85, 49.37%, 30.98%, 0.512) 41.2%, hsla(143.85, 49.37%, 30.98%, 0.434) 47.1%, hsla(143.85, 49.37%, 30.98%, 0.356) 52.9%, hsla(143.85, 49.37%, 30.98%, 0.278) 58.8%, hsla(143.85, 49.37%, 30.98%, 0.205) 64.7%, hsla(143.85, 49.37%, 30.98%, 0.139) 71%, hsla(143.85, 49.37%, 30.98%, 0.082) 77.5%, hsla(143.85, 49.37%, 30.98%, 0.038) 84.5%, hsla(143.85, 49.37%, 30.98%, 0.01) 91.9%, hsla(143.85, 49.37%, 30.98%, 0) 100%);
}
[data-page-id=news-detail] .article {
  display: flex;
  justify-content: space-between;
  color: #18361F;
  background-color: #F1ECE7;
}
[data-page-id=news-detail] .article > .button-holder {
  position: sticky;
  top: 0;
  height: calc(100svh - var(--headerHeight) * var(--scale));
  display: flex;
  align-items: center;
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-detail] .article > .button-holder {
    padding: calc(20px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-detail] .article > .button-holder {
    padding: calc(10px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-detail] .article > .button-holder .button-round {
    min-width: calc(120px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-detail] .article > .button-holder .button-round {
    min-width: calc(40px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-detail] .article > .button-holder .button-round {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-detail] .article > .button-holder .button-round {
    font-size: max(10px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-detail] .article-content {
    width: calc(500px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-detail] .article-content {
    width: calc(230px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-detail] .article-content .article-title-holder {
    margin-top: calc(160px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-detail] .article-content .article-title-holder {
    margin-top: calc(90px * var(--scale));
  }
}
[data-page-id=news-detail] .article-content .article-title-holder .article-date {
  color: #2C673A;
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-detail] .article-content .article-title-holder .article-date {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-detail] .article-content .article-title-holder .article-date {
    font-size: max(10px * var(--scale), 10px);
  }
}
[data-page-id=news-detail] .article-content .article-title-holder .article-title-h1 {
  line-height: 1.6;
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-detail] .article-content .article-title-holder .article-title-h1 {
    margin-top: calc(40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-detail] .article-content .article-title-holder .article-title-h1 {
    margin-top: calc(40px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-detail] .article-content .article-title-holder .article-title-h1 {
    font-size: max(20px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-detail] .article-content .article-title-holder .article-title-h1 {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-detail] .article-content .pic-main {
    margin-top: calc(48px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-detail] .article-content .pic-main {
    margin-top: calc(40px * var(--scale));
  }
}
[data-page-id=news-detail] .article-content .article-body {
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-detail] .article-content .article-body {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-detail] .article-content .article-body {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-detail] .article-content .article-body {
    margin-top: calc(80px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-detail] .article-content .article-body {
    margin-top: calc(40px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-detail] .article-content .article-body {
    gap: calc(38px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-detail] .article-content .article-body {
    gap: calc(30px * var(--scale));
  }
}
[data-page-id=news-detail] .article-content .article-body p, [data-page-id=news-detail] .article-content .article-body a {
  margin-top: -0.4em;
  margin-bottom: -0.5em;
}
[data-page-id=news-detail] .article-content .article-body a {
  color: #2C673A;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.04em;
  text-decoration: none;
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-detail] .article-content .article-body a {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-detail] .article-content .article-body a {
    font-size: max(12px * var(--scale), 10px);
  }
}
[data-page-id=news-detail] .article-content .article-body .wp-block-gallery {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-detail] .article-content .article-body .wp-block-gallery {
    gap: calc(19px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-detail] .article-content .article-body .wp-block-gallery {
    gap: calc(15px * var(--scale));
  }
}
[data-page-id=news-detail] .article-content .article-body .wp-block-image {
  width: 100% !important;
}
[data-page-id=news-detail] .article-content .article-body .wp-block-embed.wp-block-embed-youtube iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
[data-page-id=news-detail] .article-content .button-holder {
  display: flex;
  justify-content: center;
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-detail] .article-content .button-holder {
    margin-top: calc(119px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-detail] .article-content .button-holder {
    margin-top: calc(40px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=news-detail] .article-content .button-holder {
    margin-bottom: calc(260px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=news-detail] .article-content .button-holder {
    margin-bottom: calc(120px * var(--scale));
  }
}

/* recruit
*********************************/
body:has([data-page-id=recruit]) {
  background-color: #6FA2C9;
}

[data-page-id=recruit] .bg {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 100%);
}
[data-page-id=recruit] .loop-text-holder {
  z-index: 3;
}
[data-page-id=recruit] .section-wrapper {
  margin-bottom: 0;
}
[data-page-id=recruit] .section-kv {
  margin-bottom: -50svh;
}
[data-page-id=recruit] .section-video .video-container {
  aspect-ratio: 16/9;
}
@media (max-width: 768.4px) {
  [data-page-id=recruit] .section-video .video-container {
    aspect-ratio: 1;
  }
}
[data-page-id=recruit] .section-video .video-container .video {
  width: 100%;
  height: 100%;
}
[data-page-id=recruit] .section-video .video-container .video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
[data-page-id=recruit] .section-statement .section-title-holder {
  letter-spacing: -0.06em;
  line-height: 1.1;
}
@media all and (min-width: 768.5px) {
  [data-page-id=recruit] .section-statement .section-title-holder {
    margin-top: calc(113px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=recruit] .section-statement .section-title-holder {
    margin-top: calc(157px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=recruit] .section-statement .section-title-holder {
    font-size: max(32px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=recruit] .section-statement .section-title-holder {
    font-size: max(32px * var(--scale), 10px);
  }
}
@media (min-width: 768.5px) {
  [data-page-id=recruit] .section-statement .section-title-holder {
    text-align: center;
  }
}
[data-page-id=recruit] .section-statement .text-read {
  letter-spacing: 0.04em;
  line-height: 1.8;
}
@media all and (min-width: 768.5px) {
  [data-page-id=recruit] .section-statement .text-read {
    margin-top: calc(70px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=recruit] .section-statement .text-read {
    margin-top: calc(80px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=recruit] .section-statement .text-read {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=recruit] .section-statement .text-read {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media (min-width: 768.5px) {
  [data-page-id=recruit] .section-statement .text-read {
    text-align: center;
  }
}
html[lang=en-US] [data-page-id=recruit] .section-statement .text-read {
  line-height: 1.6;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] [data-page-id=recruit] .section-statement .text-read {
    margin-top: calc(59px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] [data-page-id=recruit] .section-statement .text-read {
    margin-top: calc(67px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] [data-page-id=recruit] .section-statement .text-read {
    width: calc(688px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] [data-page-id=recruit] .section-statement .text-read {
    width: auto;
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=recruit] .section-information {
    margin-top: calc(190px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=recruit] .section-information {
    margin-top: calc(160px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=recruit] .section-information {
    margin-bottom: calc(220px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=recruit] .section-information {
    margin-bottom: calc(120px * var(--scale));
  }
}
[data-page-id=recruit] .section-information .section-body {
  display: flex;
  justify-content: space-between;
}
[data-page-id=recruit] .section-information .information-item {
  position: relative;
  overflow: hidden;
}
@media all and (min-width: 768.5px) {
  [data-page-id=recruit] .section-information .information-item {
    width: calc(425px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=recruit] .section-information .information-item {
    width: calc(170px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=recruit] .section-information .information-item {
    height: calc(540px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=recruit] .section-information .information-item {
    height: calc(276px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=recruit] .section-information .information-item {
    border-radius: calc(10px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=recruit] .section-information .information-item {
    border-radius: calc(10px * var(--scale));
  }
}
[data-page-id=recruit] .section-information .information-item.disabled {
  pointer-events: none;
}
[data-page-id=recruit] .section-information .information-item.disabled .pic {
  filter: brightness(0.5) grayscale(100%);
}
[data-page-id=recruit] .section-information .information-item .pic {
  position: absolute;
  inset: 0;
}
[data-page-id=recruit] .section-information .information-item .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
[data-page-id=recruit] .section-information .information-item .information-title {
  position: relative;
  letter-spacing: 0.04em;
  line-height: 1.4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media all and (min-width: 768.5px) {
  [data-page-id=recruit] .section-information .information-item .information-title {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=recruit] .section-information .information-item .information-title {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=recruit] .section-information .information-item .information-title {
    height: calc(60px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=recruit] .section-information .information-item .information-title {
    height: calc(40px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=recruit] .section-information .information-item .information-title {
    padding: calc(0px * var(--scale)) calc(19px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=recruit] .section-information .information-item .information-title {
    padding: calc(0px * var(--scale)) calc(10px * var(--scale));
  }
}
html[lang=en-US] [data-page-id=recruit] .section-information .information-item .information-title {
  line-height: 1;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] [data-page-id=recruit] .section-information .information-item .information-title {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] [data-page-id=recruit] .section-information .information-item .information-title {
    font-size: max(10px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=recruit] .section-information .information-item .information-title .button-round {
    min-width: calc(80px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=recruit] .section-information .information-item .information-title .button-round {
    min-width: calc(40px * var(--scale));
  }
}
[data-page-id=recruit] .section-information .information-item .information-text {
  position: relative;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
@media all and (min-width: 768.5px) {
  [data-page-id=recruit] .section-information .information-item .information-text {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=recruit] .section-information .information-item .information-text {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=recruit] .section-information .information-item .information-text {
    padding: calc(19px * var(--scale)) calc(19px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=recruit] .section-information .information-item .information-text {
    padding: calc(10px * var(--scale)) calc(10px * var(--scale));
  }
}
html[lang=en-US] [data-page-id=recruit] .section-information .information-item .information-text {
  line-height: 1;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] [data-page-id=recruit] .section-information .information-item .information-text {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] [data-page-id=recruit] .section-information .information-item .information-text {
    font-size: max(10px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] [data-page-id=recruit] .section-information .information-item .information-text {
    padding: calc(19px * var(--scale)) calc(19px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] [data-page-id=recruit] .section-information .information-item .information-text {
    padding: calc(21px * var(--scale)) calc(10px * var(--scale));
  }
}

/* privacy-policy
*********************************/
body:has([data-page-id=privacy-policy]) {
  background-color: #2C673A;
}

[data-page-id=privacy-policy] .section-privacy-policy .section-title-holder {
  display: flex;
  flex-direction: column;
  text-align: center;
}
@media all and (min-width: 768.5px) {
  [data-page-id=privacy-policy] .section-privacy-policy .section-title-holder {
    margin-top: calc(149px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=privacy-policy] .section-privacy-policy .section-title-holder {
    margin-top: calc(152px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=privacy-policy] .section-privacy-policy .section-title-holder {
    margin-bottom: calc(107px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=privacy-policy] .section-privacy-policy .section-title-holder {
    margin-bottom: calc(124px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=privacy-policy] .section-privacy-policy .section-title-holder {
    gap: calc(10px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=privacy-policy] .section-privacy-policy .section-title-holder {
    gap: calc(10px * var(--scale));
  }
}
[data-page-id=privacy-policy] .section-privacy-policy .section-title-holder .texts {
  line-height: 1.2;
}
@media all and (min-width: 768.5px) {
  [data-page-id=privacy-policy] .section-privacy-policy .section-title-holder .texts {
    font-size: max(40px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=privacy-policy] .section-privacy-policy .section-title-holder .texts {
    font-size: max(28px * var(--scale), 10px);
  }
}
[data-page-id=privacy-policy] .section-privacy-policy .section-title-holder .title-main {
  line-height: 1.4;
}
@media all and (min-width: 768.5px) {
  [data-page-id=privacy-policy] .section-privacy-policy .section-title-holder .title-main {
    font-size: max(10px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=privacy-policy] .section-privacy-policy .section-title-holder .title-main {
    font-size: max(10px * var(--scale), 10px);
  }
}
[data-page-id=privacy-policy] .section-privacy-policy .section-body {
  background-color: #F1ECE7;
  color: #000;
}
@media all and (min-width: 768.5px) {
  [data-page-id=privacy-policy] .section-privacy-policy .section-body {
    padding: calc(100px * var(--scale)) calc(100px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=privacy-policy] .section-privacy-policy .section-body {
    padding: calc(100px * var(--scale)) calc(20px * var(--scale));
  }
}
[data-page-id=privacy-policy] .section-privacy-policy .privacy-policy-list {
  display: flex;
  flex-direction: column;
}
@media all and (min-width: 768.5px) {
  [data-page-id=privacy-policy] .section-privacy-policy .privacy-policy-list {
    gap: calc(90px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=privacy-policy] .section-privacy-policy .privacy-policy-list {
    gap: calc(70px * var(--scale));
  }
}
[data-page-id=privacy-policy] .section-privacy-policy .privacy-policy-item .item-title {
  color: #2C673A;
  line-height: 1;
  display: flex;
  align-items: center;
}
@media all and (min-width: 768.5px) {
  [data-page-id=privacy-policy] .section-privacy-policy .privacy-policy-item .item-title {
    gap: calc(25px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=privacy-policy] .section-privacy-policy .privacy-policy-item .item-title {
    gap: calc(21px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=privacy-policy] .section-privacy-policy .privacy-policy-item .item-title {
    padding-bottom: calc(14px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=privacy-policy] .section-privacy-policy .privacy-policy-item .item-title {
    padding-bottom: calc(14px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=privacy-policy] .section-privacy-policy .privacy-policy-item .item-title .num {
    font-size: max(32px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=privacy-policy] .section-privacy-policy .privacy-policy-item .item-title .num {
    font-size: max(32px * var(--scale), 10px);
  }
}
[data-page-id=privacy-policy] .section-privacy-policy .privacy-policy-item .item-title .title {
  letter-spacing: 0.04em;
}
@media all and (min-width: 768.5px) {
  [data-page-id=privacy-policy] .section-privacy-policy .privacy-policy-item .item-title .title {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=privacy-policy] .section-privacy-policy .privacy-policy-item .item-title .title {
    font-size: max(14px * var(--scale), 10px);
  }
}
[data-page-id=privacy-policy] .section-privacy-policy .privacy-policy-item .item-text {
  border-top: 1px solid #FFFFFF;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
@media all and (min-width: 768.5px) {
  [data-page-id=privacy-policy] .section-privacy-policy .privacy-policy-item .item-text {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=privacy-policy] .section-privacy-policy .privacy-policy-item .item-text {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=privacy-policy] .section-privacy-policy .privacy-policy-item .item-text {
    padding-top: calc(14px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=privacy-policy] .section-privacy-policy .privacy-policy-item .item-text {
    padding-top: calc(14px * var(--scale));
  }
}
[data-page-id=privacy-policy] .section-privacy-policy .privacy-policy-item .item-text ul li {
  display: flex;
}
[data-page-id=privacy-policy] .section-privacy-policy .privacy-policy-item .item-text ul li::before {
  content: "";
  display: block;
  border-radius: 50%;
  background-color: currentColor;
}
@media all and (min-width: 768.5px) {
  [data-page-id=privacy-policy] .section-privacy-policy .privacy-policy-item .item-text ul li::before {
    width: calc(4px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=privacy-policy] .section-privacy-policy .privacy-policy-item .item-text ul li::before {
    width: calc(4px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=privacy-policy] .section-privacy-policy .privacy-policy-item .item-text ul li::before {
    height: calc(4px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=privacy-policy] .section-privacy-policy .privacy-policy-item .item-text ul li::before {
    height: calc(4px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=privacy-policy] .section-privacy-policy .privacy-policy-item .item-text ul li::before {
    margin: calc(9px * var(--scale)) calc(7px * var(--scale)) calc(0px * var(--scale)) calc(7px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=privacy-policy] .section-privacy-policy .privacy-policy-item .item-text ul li::before {
    margin: calc(9px * var(--scale)) calc(7px * var(--scale)) calc(0px * var(--scale)) calc(7px * var(--scale));
  }
}
[data-page-id=privacy-policy] .section-privacy-policy .privacy-policy-info {
  line-height: 1.6;
}
@media all and (min-width: 768.5px) {
  [data-page-id=privacy-policy] .section-privacy-policy .privacy-policy-info {
    margin-top: calc(100px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=privacy-policy] .section-privacy-policy .privacy-policy-info {
    margin-top: calc(14px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  [data-page-id=privacy-policy] .section-privacy-policy .privacy-policy-info {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  [data-page-id=privacy-policy] .section-privacy-policy .privacy-policy-info {
    font-size: max(12px * var(--scale), 10px);
  }
}

/* contact
*********************************/
.page-contact .block .block-lead {
  line-height: 1.75;
  letter-spacing: 0.04em;
  margin: 0;
  word-break: break-word;
}
html[lang=en-US] .page-contact .block .block-lead {
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .page-contact .block .block-lead {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .page-contact .block .block-lead {
    font-size: max(15px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .page-contact .block .block-lead {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-contact .block .block-lead {
    font-size: max(13px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .page-contact .contact-list {
    margin-top: calc(114px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-contact .contact-list {
    margin-top: calc(42px * var(--scale));
  }
}
.page-contact .contact-list-item {
  margin: 0;
  background-color: #F5F5F5;
  display: flex;
}
@media all and (min-width: 768.5px) {
  .page-contact .contact-list-item {
    border-radius: calc(4px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-contact .contact-list-item {
    border-radius: calc(4px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-contact .contact-list-item {
    padding: calc(33px * var(--scale)) calc(40px * var(--scale)) calc(35px * var(--scale)) calc(39px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-contact .contact-list-item {
    padding: calc(25px * var(--scale)) calc(24px * var(--scale)) calc(24px * var(--scale)) calc(24px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  .page-contact .contact-list-item {
    align-items: center;
  }
}
@media (max-width: 768.4px) {
  .page-contact .contact-list-item {
    flex-direction: column;
  }
}
@media all and (min-width: 768.5px) {
  .page-contact .contact-list-item + .contact-list-item {
    margin-top: calc(16px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-contact .contact-list-item + .contact-list-item {
    margin-top: calc(8px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-contact .contact-list-item .item-title-holder {
    margin-right: calc(40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-contact .contact-list-item .item-title-holder {
    margin-right: calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-contact .contact-list-item .item-title-holder {
    padding-right: calc(40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-contact .contact-list-item .item-title-holder {
    padding-right: calc(0px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  .page-contact .contact-list-item .item-title-holder {
    border-right: 1px dashed #cccccc;
  }
}
.page-contact .contact-list-item .item-title {
  line-height: 1.5;
}
@media all and (min-width: 768.5px) {
  .page-contact .contact-list-item .item-title {
    font-size: max(26px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-contact .contact-list-item .item-title {
    font-size: max(22px * var(--scale), 10px);
  }
}
html[lang=en-US] .page-contact .contact-list-item .item-title {
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.page-contact .contact-list-item .item-text {
  line-height: 1.75;
  letter-spacing: 0.04em;
  white-space: pre-line;
  word-break: break-word;
}
html[lang=en-US] .page-contact .contact-list-item .item-text {
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .page-contact .contact-list-item .item-text {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .page-contact .contact-list-item .item-text {
    font-size: max(15px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .page-contact .contact-list-item .item-text {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-contact .contact-list-item .item-text {
    font-size: max(13px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .page-contact .contact-list-item .item-text {
    margin-top: calc(10px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-contact .contact-list-item .item-text {
    margin-top: calc(11px * var(--scale));
  }
}
.page-contact .contact-list-item .button-holder {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
}
@media all and (min-width: 768.5px) {
  .page-contact .contact-list-item .button-holder {
    margin-top: calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-contact .contact-list-item .button-holder {
    margin-top: calc(30px * var(--scale));
  }
}
.page-contact .contact-list-item .button-holder .button-round {
  padding: 0;
}
@media all and (min-width: 768.5px) {
  .page-contact .contact-list-item .button-holder .button-round {
    width: calc(152px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-contact .contact-list-item .button-holder .button-round {
    width: calc(130px * var(--scale));
  }
}

/* recruit
*********************************/
/* 404ページ
*********************************/
.page-error {
  text-align: center;
}
@media all and (min-width: 768.5px) {
  .page-error {
    margin-top: calc(205px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-error {
    margin-top: calc(140px * var(--scale));
  }
}
.page-error .error-title {
  line-height: 1.5;
}
@media all and (min-width: 768.5px) {
  .page-error .error-title {
    font-size: max(70px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-error .error-title {
    font-size: max(70px * var(--scale), 10px);
  }
}
.page-error .error-title .small {
  display: block;
}
@media all and (min-width: 768.5px) {
  .page-error .error-title .small {
    margin-top: calc(-14px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-error .error-title .small {
    margin-top: calc(-14px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-error .error-title .small {
    font-size: max(18px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-error .error-title .small {
    font-size: max(18px * var(--scale), 10px);
  }
}
.page-error .error-message {
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media all and (min-width: 768.5px) {
  .page-error .error-message {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-error .error-message {
    font-size: max(13px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .page-error .error-message {
    margin-top: calc(28px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-error .error-message {
    margin-top: calc(26px * var(--scale));
  }
}