@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 1s 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 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.animShow.side-menu.franchise {
  animation: jsUpShow 1s 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;
  --footerOffset: 26;
  font-family: "dnp-shuei-mincho-pr6", serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  overflow-wrap: anywhere;
  word-break: auto-phrase;
  line-height: 1.5;
  color: #222222;
  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;
}

.ja-serif {
  font-family: "dnp-shuei-mincho-pr6", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.ja {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-style: normal;
}

.en-serif {
  font-family: "adobe-garamond-pro", serif;
  font-weight: 600;
  font-style: normal;
}

.en {
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
}

html[lang=en-US] body {
  font-family: "adobe-garamond-pro", "dnp-shuei-mincho-pr6", sans-serif;
}
html[lang=en-US] .ja {
  font-family: "proxima-nova", "dnp-shuei-gothic-gin-std", sans-serif;
}
html[lang=en-US] .ja-serif {
  font-family: "adobe-garamond-pro", "dnp-shuei-mincho-pr6", sans-serif;
  letter-spacing: 0.1em;
}

.medi {
  font-weight: 500;
}

.bold {
  font-weight: bold;
}

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: #222222;
  background-color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
  word-wrap: 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::before {
  display: table;
  content: "";
}
.article-body::after {
  display: table;
  clear: both;
  content: "";
}
.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;
}

.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 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 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) {
    padding-right: calc(140px * 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(140px * 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) {
    padding-left: calc(145px * 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));
  }
}

/* header
*************************/
header.header {
  width: 100%;
  z-index: 10;
  /* modal-menu
  *************************/
}
.home header.header {
  top: 0;
  left: 0;
  position: absolute;
}
header.header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media all and (min-width: 768.5px) {
  header.header .header-inner {
    padding-top: calc(22px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header .header-inner {
    padding-top: calc(16px * var(--scale));
  }
}
header.header .brand-logo-holder {
  z-index: 1;
  position: fixed;
  display: flex;
  left: max(50vw - 850px + 24px * var(--scale), 24px * var(--scale));
}
@media all and (min-width: 768.5px) {
  header.header .brand-logo-holder {
    top: calc(21px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header .brand-logo-holder {
    top: calc(17px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  header.header .brand-logo-holder {
    left: calc(24px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header .brand-logo-holder {
    left: calc(16px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  header.header .brand-logo-holder {
    z-index: 11;
    left: calc(16px * var(--scale));
  }
}
header.header .brand-logo-holder.dummy {
  position: static;
  opacity: 0;
  pointer-events: none;
}
@media all and (min-width: 768.5px) {
  header.header .brand-logo-holder.dummy {
    width: calc(160px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header .brand-logo-holder.dummy {
    width: calc(115px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  header.header .brand-logo-holder.dummy {
    height: calc(45px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header .brand-logo-holder.dummy {
    height: calc(32px * var(--scale));
  }
}
header.header .brand-logo-holder .brand-logo {
  display: block;
}
@media all and (min-width: 768.5px) {
  header.header .brand-logo-holder .brand-logo {
    width: calc(160px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header .brand-logo-holder .brand-logo {
    width: calc(115px * var(--scale));
  }
}
header.header .brand-logo-holder .brand-logo svg, header.header .brand-logo-holder .brand-logo path {
  @apply fill-current;
}
header.header nav {
  display: flex;
  align-items: center;
}
.home header.header nav {
  color: #fff;
}
header.header nav .menu {
  align-items: center;
}
@media all and (min-width: 768.5px) {
  header.header nav .menu {
    gap: calc(9px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header nav .menu {
    gap: calc(9px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  header.header nav .menu {
    margin-right: calc(22px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header nav .menu {
    margin-right: calc(22px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  header.header nav .menu {
    display: flex;
  }
}
header.header nav .menu-link-block {
  flex-shrink: 0;
  display: flex;
  position: relative;
}
header.header nav .menu-link-block > .menu-link {
  transition: color 0.2s;
}
header.header nav .menu-link-block > .menu-link.current {
  color: #E50717;
}
@media (hover: hover) and (pointer: fine) {
  header.header nav .menu-link-block:focus > .menu-link {
    color: #E50717;
    text-decoration: underline;
  }
  header.header nav .menu-link-block:focus .sub-menu {
    pointer-events: auto;
    opacity: 1;
    animation: maskFromTop 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  }
  header.header nav .menu-link-block:hover > .menu-link {
    color: #E50717;
    text-decoration: underline;
  }
  header.header nav .menu-link-block:hover .sub-menu {
    pointer-events: auto;
    opacity: 1;
    animation: maskFromTop 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  }
}
header.header nav .menu-link {
  display: flex;
  transition: color 0.2s;
  flex-shrink: 0;
  line-height: 1.5;
}
@media all and (min-width: 768.5px) {
  header.header nav .menu-link {
    padding: calc(10px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header nav .menu-link {
    padding: calc(10px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  header.header nav .menu-link {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  header.header nav .menu-link {
    font-size: max(14px * var(--scale), 10px);
  }
}
html[lang=en-US] header.header nav .menu-link {
  letter-spacing: 0.02em;
}
header.header nav .sub-menu {
  position: absolute;
  width: max-content;
  min-width: 100%;
  display: flex;
  pointer-events: none;
  flex-direction: column;
  transition: opacity 0.3s;
  opacity: 0;
}
@media all and (min-width: 768.5px) {
  header.header nav .sub-menu {
    top: calc(40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header nav .sub-menu {
    top: calc(40px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  header.header nav .sub-menu {
    left: calc(10px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header nav .sub-menu {
    left: calc(10px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  header.header nav .sub-menu {
    padding-top: calc(12px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header nav .sub-menu {
    padding-top: calc(12px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  header.header nav .sub-menu {
    padding-left: calc(12px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header nav .sub-menu {
    padding-left: calc(12px * var(--scale));
  }
}
header.header nav .sub-menu a {
  transition: color 0.2s;
}
header.header nav .sub-menu a.current {
  color: #E50717;
}
@media (hover: hover) and (pointer: fine) {
  header.header nav .sub-menu a:focus {
    text-decoration: underline;
  }
  header.header nav .sub-menu a:hover {
    text-decoration: underline;
  }
}
header.header nav .sub-menu::before {
  content: "";
  position: absolute;
  display: block;
  width: 1px;
  background-color: currentColor;
  inset: 0;
}
@media all and (min-width: 768.5px) {
  header.header nav .sub-menu::before {
    margin: calc(20px * var(--scale)) calc(0px * var(--scale)) calc(8px * var(--scale)) calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header nav .sub-menu::before {
    margin: calc(20px * var(--scale)) calc(0px * var(--scale)) calc(8px * var(--scale)) calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  header.header nav .sub-menu .menu-link {
    padding: calc(3.5px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header nav .sub-menu .menu-link {
    padding: calc(3.5px * var(--scale));
  }
}
header.header nav .span {
  background-color: currentColor;
}
@media all and (min-width: 768.5px) {
  header.header nav .span {
    width: calc(1px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header nav .span {
    width: calc(1px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  header.header nav .span {
    height: calc(12px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header nav .span {
    height: calc(12px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  header.header nav .span {
    margin-right: calc(22px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header nav .span {
    margin-right: calc(22px * var(--scale));
  }
}
header.header nav .lang {
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
}
@media all and (min-width: 768.5px) {
  header.header nav .lang {
    margin-right: calc(39px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header nav .lang {
    margin-right: calc(39px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  header.header nav .lang {
    display: flex;
  }
}
header.header nav .lang .lang-item {
  display: flex;
  align-items: center;
}
header.header nav .lang .lang-item::marker {
  content: none;
}
header.header nav .lang .lang-item a {
  display: flex;
  line-height: 1.5;
  -webkit-text-decoration: transparent underline;
          text-decoration: transparent underline;
  transition: color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-text-decoration 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), text-decoration 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), text-decoration 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-text-decoration 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-underline-offset: 0.25em;
}
@media all and (min-width: 768.5px) {
  header.header nav .lang .lang-item a {
    padding: calc(10px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header nav .lang .lang-item a {
    padding: calc(10px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  header.header nav .lang .lang-item a {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  header.header nav .lang .lang-item a {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media (hover: hover) and (pointer: fine) {
  header.header nav .lang .lang-item a:focus {
    color: #E50717;
    text-decoration: underline;
  }
  header.header nav .lang .lang-item a:hover {
    color: #E50717;
    text-decoration: underline;
  }
}
html[lang=ja] header.header nav .lang .lang-item a[lang=ja] {
  color: #E50717;
  pointer-events: none;
}
html[lang=ja] header.header nav .lang .lang-item a[lang=en-US] {
  pointer-events: auto;
}
html[lang=en-US] header.header nav .lang .lang-item a[lang=ja] {
  pointer-events: auto;
}
html[lang=en-US] header.header nav .lang .lang-item a[lang=en-US] {
  color: #E50717;
  pointer-events: none;
}
header.header .button-menu {
  z-index: 11;
}
@media all and (min-width: 768.5px) {
  header.header .button-menu {
    margin-bottom: calc(6px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header .button-menu {
    margin-bottom: calc(2px * var(--scale));
  }
}
.modal-menu-open header.header .button-menu .text.open {
  display: none;
}
.modal-menu-open header.header .button-menu .text.close {
  display: block;
}
.modal-menu-open header.header .button-menu .button-line .line.n1 {
  width: 120%;
  transform: translateX(-10%) translateY(0) rotate(25deg);
}
.modal-menu-open header.header .button-menu .button-line .line.n2 {
  opacity: 0;
}
.modal-menu-open header.header .button-menu .button-line .line.n3 {
  width: 120%;
  transform: translateX(-10%) translateY(0) rotate(-25deg);
}
@media all and (min-width: 768.5px) {
  header.header .button-menu .text {
    padding-top: calc(1px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header .button-menu .text {
    padding-top: calc(3px * var(--scale));
  }
}
header.header .button-menu .text.close {
  display: none;
}
header.header .button-menu .button-line {
  position: relative;
}
@media all and (min-width: 768.5px) {
  header.header .button-menu .button-line {
    width: calc(14px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header .button-menu .button-line {
    width: calc(12px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  header.header .button-menu .button-line {
    height: calc(10px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header .button-menu .button-line {
    height: calc(10px * var(--scale));
  }
}
header.header .button-menu .button-line .line {
  position: absolute;
  width: 100%;
  background-color: currentColor;
  height: 1px;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
header.header .button-menu .button-line .line.n1 {
  transform: translateY(calc(-4px * var(--scale)));
}
header.header .button-menu .button-line .line.n3 {
  transform: translateY(calc(4px * var(--scale)));
}
header.header .modal-menu {
  color: #222222;
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10;
  overflow-y: auto;
  justify-content: end;
}
@keyframes modalShowPc {
  from {
    opacity: 1;
    transform: translate(60px, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes modalHidePc {
  from {
    opacity: 1;
    transform: translate(0, 0);
  }
  to {
    opacity: 0;
    transform: translate(60px, 0);
  }
}
@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);
  }
}
header.header .modal-menu .overlay {
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
header.header .modal-menu .modal-menu-inner {
  position: relative;
  background-color: #fff;
  height: fit-content;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
@media all and (min-width: 768.5px) {
  header.header .modal-menu .modal-menu-inner {
    padding: calc(97px * var(--scale)) calc(48px * var(--scale)) calc(48px * var(--scale)) calc(48px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header .modal-menu .modal-menu-inner {
    padding: calc(108px * var(--scale)) calc(20px * var(--scale)) calc(20px * var(--scale)) calc(20px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  header.header .modal-menu .modal-menu-inner {
    padding-right: max(50vw - 850px + 48px * var(--scale), 48px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  header.header .modal-menu .modal-menu-inner {
    width: 100%;
  }
}
.modal-menu-open header.header .modal-menu {
  display: flex;
  animation: fadeIn 0.75s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.modal-menu-open header.header .modal-menu .modal-menu-inner {
  animation: modalShowPc 0.75s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 768.4px) {
  .modal-menu-open header.header .modal-menu .modal-menu-inner {
    animation: modalShowSp 0.75s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
  }
}
.modal-menu-close header.header .modal-menu {
  display: flex;
  animation: fadeOut 0.75s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}
.modal-menu-close header.header .modal-menu .modal-menu-inner {
  animation: modalHidePc 0.75s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 768.4px) {
  .modal-menu-close header.header .modal-menu .modal-menu-inner {
    animation: modalHideSp 0.75s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
  }
}
header.header .modal-menu .menu-list {
  display: flex;
  flex-direction: column;
}
@media all and (min-width: 768.5px) {
  header.header .modal-menu .menu-list {
    gap: calc(15px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header .modal-menu .menu-list {
    gap: calc(12px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  header.header .modal-menu .menu-list {
    margin-bottom: calc(38px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header .modal-menu .menu-list {
    margin-bottom: calc(38px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  header.header .modal-menu .menu-list {
    width: calc(246px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header .modal-menu .menu-list {
    width: auto;
  }
}
header.header .modal-menu .menu-list .menu-link {
  padding: 0;
  line-height: 1.5;
  transition: color 0.2s;
}
@media all and (min-width: 768.5px) {
  header.header .modal-menu .menu-list .menu-link {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  header.header .modal-menu .menu-list .menu-link {
    font-size: max(16px * var(--scale), 10px);
  }
}
header.header .modal-menu .menu-list .menu-link.current {
  color: #E50717;
}
@media all and (min-width: 768.5px) {
  header.header .modal-menu .menu-list .accordion-item {
    margin-top: calc(15px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header .modal-menu .menu-list .accordion-item {
    margin-top: calc(15px * var(--scale));
  }
}
header.header .modal-menu .menu-list .accordion-item .menu-link {
  color: #979797;
  transition: color 0.2s;
}
header.header .modal-menu .menu-list .accordion-item .menu-link.current {
  color: #E50717;
}
@media all and (min-width: 768.5px) {
  header.header .modal-menu .menu-list .accordion-item .menu-link {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  header.header .modal-menu .menu-list .accordion-item .menu-link {
    font-size: max(13px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  header.header .modal-menu .menu-list .accordion-item .menu-link + .menu-link {
    margin-top: calc(8px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header .modal-menu .menu-list .accordion-item .menu-link + .menu-link {
    margin-top: calc(15px * var(--scale));
  }
}
header.header .modal-menu .lang {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
}
@media all and (min-width: 768.5px) {
  header.header .modal-menu .lang {
    margin: calc(-6px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header .modal-menu .lang {
    margin: calc(-7px * var(--scale));
  }
}
header.header .modal-menu .lang .lang-item {
  display: flex;
  align-items: center;
}
header.header .modal-menu .lang .lang-item::marker {
  content: none;
}
header.header .modal-menu .lang .lang-item a {
  display: flex;
  line-height: 1.5;
}
@media all and (min-width: 768.5px) {
  header.header .modal-menu .lang .lang-item a {
    padding: calc(6px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header .modal-menu .lang .lang-item a {
    padding: calc(7px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  header.header .modal-menu .lang .lang-item a {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  header.header .modal-menu .lang .lang-item a {
    font-size: max(16px * var(--scale), 10px);
  }
}
header.header .modal-menu .menu-site-nav {
  display: flex;
  flex-wrap: wrap;
}
@media all and (min-width: 768.5px) {
  header.header .modal-menu .menu-site-nav {
    gap: calc(1px * var(--scale)) calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header .modal-menu .menu-site-nav {
    gap: calc(17px * var(--scale)) calc(23px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  header.header .modal-menu .menu-site-nav {
    margin-top: calc(50px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header .modal-menu .menu-site-nav {
    margin-top: calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  header.header .modal-menu .menu-site-nav {
    padding-top: calc(25px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header .modal-menu .menu-site-nav {
    padding-top: calc(35px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  header.header .modal-menu .menu-site-nav {
    padding-bottom: calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header .modal-menu .menu-site-nav {
    padding-bottom: calc(102px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  header.header .modal-menu .menu-site-nav {
    flex-direction: column;
    border-top: 1px solid #E8E8E8;
  }
}
@media (max-width: 768.4px) {
  header.header .modal-menu .menu-site-nav {
    width: 70%;
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] header.header .modal-menu .menu-site-nav {
    gap: calc(8px * var(--scale)) calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] header.header .modal-menu .menu-site-nav {
    gap: calc(17px * var(--scale)) calc(23px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  html[lang=en-US] header.header .modal-menu .menu-site-nav {
    width: 100%;
  }
}
header.header .modal-menu .menu-site-nav .link-outer {
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media all and (min-width: 768.5px) {
  header.header .modal-menu .menu-site-nav .link-outer {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  header.header .modal-menu .menu-site-nav .link-outer {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  header.header .modal-menu .menu-site-nav .link-outer {
    padding: calc(4px * var(--scale)) calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  header.header .modal-menu .menu-site-nav .link-outer {
    padding: calc(0px * var(--scale)) calc(0px * var(--scale));
  }
}
html[lang=en-US] header.header .modal-menu .menu-site-nav .link-outer {
  letter-spacing: 0em;
  line-height: 1.2;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] header.header .modal-menu .menu-site-nav .link-outer {
    max-width: calc(200px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] header.header .modal-menu .menu-site-nav .link-outer {
    max-width: none;
  }
}
header.header .modal-menu .copyright {
  letter-spacing: 0.04em;
  margin-top: auto;
  margin-bottom: 0;
}
@media all and (min-width: 768.5px) {
  header.header .modal-menu .copyright {
    font-size: max(10px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  header.header .modal-menu .copyright {
    font-size: max(10px * var(--scale), 10px);
  }
}

/* footer
*******************************/
footer.footer {
  position: relative;
}
@media all and (min-width: 768.5px) {
  footer.footer {
    padding-top: calc(58px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  footer.footer {
    padding-top: calc(144px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  footer.footer {
    padding-bottom: calc(57px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  footer.footer {
    padding-bottom: calc(20px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  footer.footer .footer-inner {
    padding-right: calc(40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  footer.footer .footer-inner {
    padding-right: calc(35px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  footer.footer .footer-inner-item {
    padding-right: calc(60px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  footer.footer .footer-inner-item {
    padding-right: calc(0px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  footer.footer .footer-inner-item {
    display: flex;
  }
}
@media all and (min-width: 768.5px) {
  footer.footer .footer-inner-item + .footer-inner-item {
    margin-top: calc(27px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  footer.footer .footer-inner-item + .footer-inner-item {
    margin-top: calc(35px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  footer.footer .footer-inner-item + .footer-inner-item {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
}
footer.footer .footer-inner-item .left-item {
  flex-shrink: 0;
}
@media all and (min-width: 768.5px) {
  footer.footer .footer-inner-item .left-item {
    width: calc(279px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  footer.footer .footer-inner-item .left-item {
    width: calc(279px * var(--scale));
  }
}
footer.footer .brand-logo {
  display: flex;
}
@media all and (min-width: 768.5px) {
  footer.footer .brand-logo {
    width: calc(192px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  footer.footer .brand-logo {
    width: calc(160px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  footer.footer .brand-logo {
    margin-bottom: calc(53px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  footer.footer .brand-logo {
    margin-bottom: calc(44px * var(--scale));
  }
}
footer.footer .page-top {
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  transform-origin: top right;
  transform: rotate(90deg) translateX(100%);
}
@media all and (min-width: 768.5px) {
  footer.footer .page-top {
    right: calc(36px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  footer.footer .page-top {
    right: calc(17px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  footer.footer .page-top {
    top: calc(61px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  footer.footer .page-top {
    top: calc(304px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  footer.footer .page-top {
    gap: calc(8px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  footer.footer .page-top {
    gap: calc(8px * var(--scale));
  }
}
footer.footer .page-top .text {
  line-height: 1.5;
}
@media all and (min-width: 768.5px) {
  footer.footer .page-top .text {
    font-size: max(15px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  footer.footer .page-top .text {
    font-size: max(15px * var(--scale), 10px);
  }
}
footer.footer .page-top .icon {
  display: flex;
  transform: rotate(180deg);
}
@media all and (min-width: 768.5px) {
  footer.footer .page-top .icon {
    width: calc(13px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  footer.footer .page-top .icon {
    width: calc(13px * var(--scale));
  }
}
footer.footer .footer-menu {
  display: flex;
  flex-wrap: wrap;
}
@media all and (min-width: 768.5px) {
  footer.footer .footer-menu {
    gap: calc(31px * var(--scale)) calc(62px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  footer.footer .footer-menu {
    gap: calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  footer.footer .footer-menu {
    margin-top: calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  footer.footer .footer-menu {
    margin-top: calc(43px * var(--scale));
  }
}
footer.footer .footer-menu .menu-block-holder {
  display: contents;
}
@media (max-width: 768.4px) {
  footer.footer .footer-menu .menu-block-holder {
    gap: calc(23px * var(--scale)) calc(0px * var(--scale));
    width: 50%;
    display: flex;
    flex-direction: column;
  }
  html[lang=en-US] footer.footer .footer-menu .menu-block-holder {
    gap: calc(31px * var(--scale)) calc(0px * var(--scale));
  }
}
footer.footer .footer-menu .menu-block {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
@media all and (min-width: 768.5px) {
  footer.footer .footer-menu .menu-block {
    gap: calc(19px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  footer.footer .footer-menu .menu-block {
    gap: calc(8px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] footer.footer .footer-menu .menu-block {
    gap: calc(19px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] footer.footer .footer-menu .menu-block {
    gap: calc(16px * var(--scale));
  }
}
footer.footer .footer-menu .menu-group {
  color: #979797;
  display: flex;
  flex-direction: column;
}
@media all and (min-width: 768.5px) {
  footer.footer .footer-menu .menu-group {
    gap: calc(3px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  footer.footer .footer-menu .menu-group {
    gap: calc(3px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] footer.footer .footer-menu .menu-group {
    gap: calc(9px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] footer.footer .footer-menu .menu-group {
    gap: calc(8px * var(--scale));
  }
}
footer.footer .footer-menu .menu-group .menu-link {
  line-height: 2;
  letter-spacing: 0.04em;
}
@media all and (min-width: 768.5px) {
  footer.footer .footer-menu .menu-group .menu-link {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  footer.footer .footer-menu .menu-group .menu-link {
    font-size: max(12px * var(--scale), 10px);
  }
}
html[lang=en-US] footer.footer .footer-menu .menu-group .menu-link {
  line-height: 1.2;
  letter-spacing: 0em;
  padding-right: 0;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] footer.footer .footer-menu .menu-group .menu-link {
    max-width: none;
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] footer.footer .footer-menu .menu-group .menu-link {
    max-width: calc(133px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] footer.footer .footer-menu .menu-group .menu-link {
    font-size: max(13px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] footer.footer .footer-menu .menu-group .menu-link {
    font-size: max(13px * var(--scale), 10px);
  }
}
footer.footer .footer-menu .menu-link {
  width: fit-content;
  letter-spacing: 0.06em;
}
@media all and (min-width: 768.5px) {
  footer.footer .footer-menu .menu-link {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  footer.footer .footer-menu .menu-link {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  footer.footer .footer-menu .menu-link {
    line-height: calc(28px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  footer.footer .footer-menu .menu-link {
    line-height: calc(28px * var(--scale));
  }
}
@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));
  }
}
html[lang=en-US] footer.footer .footer-menu .menu-link {
  letter-spacing: 0em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] footer.footer .footer-menu .menu-link {
    font-size: max(13px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] footer.footer .footer-menu .menu-link {
    font-size: max(13px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] footer.footer .footer-menu .menu-link {
    line-height: calc(28px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] footer.footer .footer-menu .menu-link {
    line-height: calc(16px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] footer.footer .footer-menu .menu-link {
    padding-right: calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] footer.footer .footer-menu .menu-link {
    padding-right: calc(10px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] footer.footer .footer-menu .menu-link .icon {
    margin: calc(6px * var(--scale)) calc(0px * var(--scale)) calc(0px * var(--scale)) calc(6px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] footer.footer .footer-menu .menu-link .icon {
    margin: calc(5px * var(--scale)) calc(0px * var(--scale)) calc(0px * var(--scale)) calc(4px * var(--scale));
  }
}
footer.footer .footer-menu .menu-link .icon {
  display: inline-block;
  vertical-align: text-top;
  width: 0.7142857143em;
  height: 0.7142857143em;
}
@media all and (min-width: 768.5px) {
  footer.footer .footer-menu .menu-link .icon {
    margin: calc(2px * var(--scale)) calc(0px * var(--scale)) calc(0px * var(--scale)) calc(6px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  footer.footer .footer-menu .menu-link .icon {
    margin: calc(3px * var(--scale)) calc(0px * var(--scale)) calc(0px * var(--scale)) calc(4px * var(--scale));
  }
}
footer.footer .lang {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
}
@media all and (min-width: 768.5px) {
  footer.footer .lang {
    gap: calc(10px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  footer.footer .lang {
    gap: calc(10px * var(--scale));
  }
}
footer.footer .lang .lang-item {
  display: flex;
  align-items: center;
  line-height: 1.5;
}
@media all and (min-width: 768.5px) {
  footer.footer .lang .lang-item {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  footer.footer .lang .lang-item {
    font-size: max(14px * var(--scale), 10px);
  }
}
footer.footer .lang .lang-item::marker {
  content: none;
}
footer.footer .lang .lang-item::before {
  content: "/";
  display: block;
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 500;
}
@media all and (min-width: 768.5px) {
  footer.footer .lang .lang-item::before {
    margin-right: calc(10px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  footer.footer .lang .lang-item::before {
    margin-right: calc(10px * var(--scale));
  }
}
footer.footer .lang .lang-item:last-child::before {
  content: none;
}
footer.footer .lang .lang-item a {
  -webkit-text-decoration: transparent underline;
          text-decoration: transparent underline;
  transition: color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-text-decoration 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), text-decoration 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), text-decoration 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-text-decoration 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-underline-offset: 0.25em;
}
@media all and (min-width: 768.5px) {
  footer.footer .lang .lang-item a {
    padding: calc(10px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  footer.footer .lang .lang-item a {
    padding: calc(10px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  footer.footer .lang .lang-item a {
    margin: calc(-10px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  footer.footer .lang .lang-item a {
    margin: calc(-10px * var(--scale));
  }
}
@media (hover: hover) and (pointer: fine) {
  footer.footer .lang .lang-item a:focus {
    color: #E50717;
    text-decoration: underline;
  }
  footer.footer .lang .lang-item a:hover {
    color: #E50717;
    text-decoration: underline;
  }
}
html[lang=ja] footer.footer .lang .lang-item a[lang=ja] {
  pointer-events: none;
  color: #E50717;
}
html[lang=ja] footer.footer .lang .lang-item a[lang=en-US] {
  pointer-events: auto;
}
html[lang=en-US] footer.footer .lang .lang-item a[lang=ja] {
  pointer-events: auto;
}
html[lang=en-US] footer.footer .lang .lang-item a[lang=en-US] {
  pointer-events: none;
  color: #E50717;
}
footer.footer .copyright {
  letter-spacing: 0.04em;
}
@media all and (min-width: 768.5px) {
  footer.footer .copyright {
    margin-top: calc(10px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  footer.footer .copyright {
    margin-top: calc(67px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  footer.footer .copyright {
    font-size: max(10px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  footer.footer .copyright {
    font-size: max(10px * var(--scale), 10px);
  }
}
footer.footer .site-nav {
  display: flex;
  flex-wrap: wrap;
  letter-spacing: 0.06em;
}
@media all and (min-width: 768.5px) {
  footer.footer .site-nav {
    gap: calc(45px * var(--scale)) calc(45px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  footer.footer .site-nav {
    gap: calc(9px * var(--scale)) calc(22px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  footer.footer .site-nav {
    padding-right: calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  footer.footer .site-nav {
    padding-right: calc(50px * var(--scale));
  }
}
html[lang=en-US] footer.footer .site-nav {
  letter-spacing: 0em;
}
footer.footer .site-nav * {
  flex-shrink: 0;
}
@media all and (min-width: 768.5px) {
  footer.footer .site-nav .link-outer {
    font-size: max(13px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  footer.footer .site-nav .link-outer {
    font-size: max(13px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  footer.footer .site-nav .link-outer {
    line-height: calc(26px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  footer.footer .site-nav .link-outer {
    line-height: calc(26px * var(--scale));
  }
}

/* modal
*************************/
body.lock {
  position: fixed;
  overflow-y: scroll;
}

@keyframes modalShow {
  from {
    opacity: 1;
    transform: translate(60px, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes modalHide {
  from {
    opacity: 1;
    transform: translate(0, 0);
  }
  to {
    opacity: 0;
    transform: translate(60px, 0);
  }
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal > .overlay {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal > .button-close {
  position: absolute;
  background-color: unset;
}
@media all and (min-width: 768.5px) {
  .modal > .button-close {
    top: calc(40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .modal > .button-close {
    top: calc(20px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .modal > .button-close {
    right: calc(40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .modal > .button-close {
    right: calc(15px * var(--scale));
  }
}
.modal > .button-close .button-inner {
  display: block;
}
.modal .modal-inner {
  opacity: 0;
  margin: auto;
  position: relative;
}
.modal.modal-open {
  display: flex;
  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: flex;
  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);
}

/* title
*************************/
@media all and (min-width: 768.5px) {
  .section-title-holder {
    padding-top: calc(126px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-title-holder {
    padding-top: calc(107px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .section-title-holder {
    padding-bottom: calc(153px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-title-holder {
    padding-bottom: calc(51px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  body:has(.article-privacy-policy, .article-exemption, .article-contact) .section-title-holder {
    padding-bottom: calc(35px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  body:has(.article-privacy-policy, .article-exemption, .article-contact) .section-title-holder {
    padding-bottom: calc(51px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  body:has(.article-gift-vouchers) .section-title-holder {
    padding-bottom: calc(140px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  body:has(.article-gift-vouchers) .section-title-holder {
    padding-bottom: calc(68px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  body:has(.article-recruitment) .section-title-holder {
    padding-bottom: calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  body:has(.article-recruitment) .section-title-holder {
    padding-bottom: calc(0px * var(--scale));
  }
}
body:has(.article-property) .section-title-holder {
  padding-bottom: 0;
}
@media all and (min-width: 768.5px) {
  body:has(.article-history) .section-title-holder {
    padding-bottom: calc(32px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  body:has(.article-history) .section-title-holder {
    padding-bottom: calc(47px * var(--scale));
  }
}
.section-title-holder:has(.category-list) {
  display: flex;
  align-items: center;
}
@media (max-width: 768.4px) {
  .section-title-holder:has(.category-list) {
    display: block;
  }
}
.section-title-holder .category-list {
  display: flex;
  flex-wrap: wrap;
  letter-spacing: 0.04em;
}
@media all and (min-width: 768.5px) {
  .section-title-holder .category-list {
    gap: calc(16px * var(--scale)) calc(16px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-title-holder .category-list {
    gap: calc(16px * var(--scale)) calc(8px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .section-title-holder .category-list {
    margin-left: calc(117px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-title-holder .category-list {
    margin-left: calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .section-title-holder .category-list {
    margin-top: calc(-22px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-title-holder .category-list {
    margin-top: calc(59px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .section-title-holder .category-list {
    margin-bottom: calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-title-holder .category-list {
    margin-bottom: calc(-10px * var(--scale));
  }
}
.section-title-holder .category-list .div {
  width: 1px;
  background-color: #222;
  align-self: center;
}
@media all and (min-width: 768.5px) {
  .section-title-holder .category-list .div {
    margin: calc(0px * var(--scale)) calc(25px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-title-holder .category-list .div {
    margin: calc(0px * var(--scale)) calc(25px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .section-title-holder .category-list .div {
    height: calc(30px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-title-holder .category-list .div {
    height: calc(30px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .section-title-holder .category-list .div {
    width: 100%;
    height: 0;
    margin: 0 -40px;
    visibility: hidden;
  }
}
@media (max-width: 768.4px) {
  .section-title-holder .category-list .category-list-item-holder {
    width: 100%;
  }
}
.section-title-holder .category-list .category-list-item {
  cursor: pointer;
  width: fit-content;
  position: relative;
  border: #E8E8E8 solid 1px;
  background-color: #F6F6F6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media all and (min-width: 768.5px) {
  .section-title-holder .category-list .category-list-item {
    font-size: max(13px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .section-title-holder .category-list .category-list-item {
    font-size: max(13px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .section-title-holder .category-list .category-list-item {
    padding: calc(6px * var(--scale)) calc(12px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-title-holder .category-list .category-list-item {
    padding: calc(5px * var(--scale)) calc(11px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .section-title-holder .category-list .category-list-item {
    border-radius: calc(4px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-title-holder .category-list .category-list-item {
    border-radius: calc(4px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .section-title-holder .category-list .category-list-item {
    min-height: calc(36px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-title-holder .category-list .category-list-item {
    min-height: calc(31px * var(--scale));
  }
}
@media (hover: hover) and (pointer: fine) {
  .section-title-holder .category-list .category-list-item:focus {
    background-color: #EBEBEB;
  }
  .section-title-holder .category-list .category-list-item:hover {
    background-color: #EBEBEB;
  }
}
html[lang=en-US] .section-title-holder .category-list .category-list-item {
  letter-spacing: 0.02em;
}
.section-title-holder .category-list .category-list-item.current {
  color: #E50717;
  pointer-events: none;
}
.section-title-holder .category-list .category-list-item:has(.category-list-select-holder) {
  position: relative;
}
@media all and (min-width: 768.5px) {
  .section-title-holder .category-list .category-list-item:has(.category-list-select-holder) {
    padding-right: calc(43px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-title-holder .category-list .category-list-item:has(.category-list-select-holder) {
    padding-right: calc(42px * var(--scale));
  }
}
.section-title-holder .category-list .category-list-item:has(.category-list-select-holder) .category-list-select-holder {
  width: 100%;
  position: absolute;
  left: 0;
  height: 100%;
  opacity: 0;
  padding: 5px 15px;
  cursor: pointer;
}
.section-title-holder .category-list .category-list-item:has(.category-list-select-holder)::after {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  background-color: #222;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
@media all and (min-width: 768.5px) {
  .section-title-holder .category-list .category-list-item:has(.category-list-select-holder)::after {
    right: calc(11px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-title-holder .category-list .category-list-item:has(.category-list-select-holder)::after {
    right: calc(8px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .section-title-holder .category-list .category-list-item:has(.category-list-select-holder)::after {
    width: calc(11px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-title-holder .category-list .category-list-item:has(.category-list-select-holder)::after {
    width: calc(11px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .section-title-holder .category-list .category-list-item:has(.category-list-select-holder)::after {
    height: calc(8px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-title-holder .category-list .category-list-item:has(.category-list-select-holder)::after {
    height: calc(8px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .section-title-holder .page-lead-copy {
    margin: calc(-5px * var(--scale)) calc(0px * var(--scale)) calc(0px * var(--scale)) auto;
  }
}
@media all and (max-width: 768.4px) {
  .section-title-holder .page-lead-copy {
    margin: calc(47px * var(--scale)) calc(0px * var(--scale)) calc(0px * var(--scale)) calc(0px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  .section-title-holder .page-lead-copy {
    width: 47.7941176471%;
  }
}
.section-title-holder .page-lead-copy .text-lead {
  word-break: break-word;
  white-space: pre-line;
}
@media all and (min-width: 768.5px) {
  .section-title-holder .page-lead-copy .text-lead {
    font-size: max(26px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .section-title-holder .page-lead-copy .text-lead {
    font-size: max(22px * var(--scale), 10px);
  }
}
html[lang=en-US] .section-title-holder .page-lead-copy .text-lead {
  line-height: 1.3;
  letter-spacing: -0.02em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .section-title-holder .page-lead-copy .text-lead {
    font-size: max(32px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .section-title-holder .page-lead-copy .text-lead {
    font-size: max(22px * var(--scale), 10px);
  }
}
.section-title-holder .page-lead-copy .text-copy {
  line-height: 1.85;
  letter-spacing: 0.04em;
  word-break: break-word;
  white-space: pre-line;
}
@media all and (min-width: 768.5px) {
  .section-title-holder .page-lead-copy .text-copy {
    margin-top: calc(30px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-title-holder .page-lead-copy .text-copy {
    margin-top: calc(20px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .section-title-holder .page-lead-copy .text-copy {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .section-title-holder .page-lead-copy .text-copy {
    font-size: max(13px * var(--scale), 10px);
  }
}
@media (max-width: 768.4px) {
  .section-title-holder .page-lead-copy .text-copy {
    line-height: 1.75;
  }
}
html[lang=en-US] .section-title-holder .page-lead-copy .text-copy {
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .section-title-holder .page-lead-copy .text-copy {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .section-title-holder .page-lead-copy .text-copy {
    font-size: max(15px * var(--scale), 10px);
  }
}

.section-title-h1 {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  letter-spacing: -0.02em;
}
@media all and (min-width: 768.5px) {
  .section-title-h1 {
    font-size: max(60px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .section-title-h1 {
    font-size: max(34px * var(--scale), 10px);
  }
}
html[lang=ja] [data-os=Windows] .section-title-h1 h1 {
  position: relative;
}
@media all and (min-width: 768.5px) {
  html[lang=ja] [data-os=Windows] .section-title-h1 h1 {
    top: calc(-10px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  html[lang=ja] [data-os=Windows] .section-title-h1 h1 {
    top: calc(-6px * var(--scale));
  }
}
html[lang=en-US] .section-title-h1 {
  line-height: 1.1;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .section-title-h1 {
    font-size: max(70px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .section-title-h1 {
    font-size: max(44px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] body:has(.article-property) .section-title-h1 {
    width: calc(395px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] body:has(.article-property) .section-title-h1 {
    width: calc(250px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  body:has(.article-gift-vouchers) .section-title-h1 .text {
    width: auto;
  }
}
@media all and (max-width: 768.4px) {
  body:has(.article-gift-vouchers) .section-title-h1 .text {
    width: calc(204px * var(--scale));
  }
}
html[lang=en-US] body:has(.article-gift-vouchers) .section-title-h1 .text {
  width: auto;
}
.section-title-h1 .sub-text {
  color: #E50717;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media all and (min-width: 768.5px) {
  .section-title-h1 .sub-text {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .section-title-h1 .sub-text {
    font-size: max(13px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .section-title-h1 .sub-text {
    margin-top: calc(0.61px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-title-h1 .sub-text {
    margin-top: calc(0.32px * var(--scale));
  }
}

.section-title-h2 {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
  letter-spacing: -0.05em;
}
@media (min-width: 768.5px) {
  .section-title-h2.pcCenter {
    align-items: center;
  }
}
@media (max-width: 768.4px) {
  .section-title-h2.spCenter {
    align-items: center;
  }
}
@media all and (min-width: 768.5px) {
  .section-title-h2 {
    font-size: max(38px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .section-title-h2 {
    font-size: max(34px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .section-title-h2 {
    margin-bottom: calc(38px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-title-h2 {
    margin-bottom: calc(37px * var(--scale));
  }
}
html[lang=en-US] .section-title-h2 {
  line-height: 1.1;
  letter-spacing: -0.02em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .section-title-h2 {
    font-size: max(48px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .section-title-h2 {
    font-size: max(40px * var(--scale), 10px);
  }
}
.section-title-h2 .sub-text {
  color: #E50717;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media all and (min-width: 768.5px) {
  .section-title-h2 .sub-text {
    font-size: max(15px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .section-title-h2 .sub-text {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .section-title-h2 .sub-text {
    margin-top: calc(1.7px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-title-h2 .sub-text {
    margin-top: calc(0.32px * var(--scale));
  }
}

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

/* button
*************************/
.btn-more {
  width: fit-content;
  display: flex;
  align-items: center;
  transition: color 0.3s;
}
@media all and (min-width: 768.5px) {
  .btn-more {
    gap: calc(7px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .btn-more {
    gap: calc(7px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .btn-more {
    padding: calc(5px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .btn-more {
    padding: calc(5px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .btn-more {
    margin: calc(-5px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .btn-more {
    margin: calc(-5px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .btn-more {
    font-size: max(18px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .btn-more {
    font-size: max(15px * var(--scale), 10px);
  }
}
@media (hover: hover) and (pointer: fine) {
  .btn-more:focus {
    color: #E50717;
  }
  .btn-more:hover {
    color: #E50717;
  }
}
.btn-more .text {
  position: relative;
  line-height: 1;
}
@media all and (min-width: 768.5px) {
  .btn-more .text {
    padding: calc(2px * var(--scale)) calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .btn-more .text {
    padding: calc(3px * var(--scale)) calc(0px * var(--scale));
  }
}
.btn-more .text .line {
  position: absolute;
  background-color: currentColor;
  height: 1px;
  width: 100%;
  bottom: 0;
  left: 0;
}
.btn-more .icon {
  width: 0.9444444444em;
  height: 0.9444444444em;
}
.btn-more .icon.outer-link {
  width: 0.6666666667em;
  height: 0.6666666667em;
  margin-top: 0.1666666667em;
}

.button-round {
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none !important;
  background-color: #E50717 !important;
  border: 1px solid #E50717;
  color: #fff !important;
  flex-shrink: 0;
  transition: background-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media all and (min-width: 768.5px) {
  .button-round {
    border-radius: calc(4px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .button-round {
    border-radius: calc(4px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .button-round {
    height: calc(44px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .button-round {
    height: calc(40px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .button-round {
    padding: calc(0px * var(--scale)) calc(17px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .button-round {
    padding: calc(0px * var(--scale)) calc(28.5px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .button-round {
    gap: calc(10px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .button-round {
    gap: calc(7px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .button-round {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .button-round {
    font-size: max(13px * var(--scale), 10px);
  }
}
html[lang=en-US] .button-round {
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: bold;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .button-round {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .button-round {
    font-size: max(15px * var(--scale), 10px);
  }
}
@media (hover: hover) and (pointer: fine) {
  .button-round:focus {
    background-color: #fff !important;
    color: #E50717 !important;
  }
  .button-round:focus.black {
    background-color: #fff !important;
    color: #222222 !important;
  }
  .button-round:focus.black .icon path {
    stroke: #222222 !important;
  }
  .button-round:focus .icon path {
    stroke: #E50717 !important;
  }
  .button-round:hover {
    background-color: #fff !important;
    color: #E50717 !important;
  }
  .button-round:hover.black {
    background-color: #fff !important;
    color: #222222 !important;
  }
  .button-round:hover.black .icon path {
    stroke: #222222 !important;
  }
  .button-round:hover .icon path {
    stroke: #E50717 !important;
  }
}
.button-round.black {
  background-color: #222222 !important;
  border: 1px solid #222222;
}
.button-round.button-menu {
  justify-content: space-between;
  position: fixed;
  right: max(50vw - 850px + 24px * var(--scale), 24px * var(--scale));
}
@media all and (min-width: 768.5px) {
  .button-round.button-menu {
    top: calc(24px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .button-round.button-menu {
    top: calc(16px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .button-round.button-menu {
    right: calc(24px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .button-round.button-menu {
    right: calc(16px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .button-round.button-menu {
    width: calc(96px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .button-round.button-menu {
    width: calc(72px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .button-round.button-menu {
    height: calc(32px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .button-round.button-menu {
    height: calc(32px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .button-round.button-menu {
    padding: calc(0px * var(--scale)) calc(12px * var(--scale)) calc(0px * var(--scale)) calc(12px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .button-round.button-menu {
    padding: calc(0px * var(--scale)) calc(10px * var(--scale)) calc(0px * var(--scale)) calc(9px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .button-round.button-menu {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .button-round.button-menu {
    font-size: max(11px * var(--scale), 10px);
  }
}
@media (max-width: 768.4px) {
  .button-round.button-menu {
    right: calc(16px * var(--scale));
  }
}
.button-round.button-menu.dummy {
  position: static;
  opacity: 0;
  pointer-events: none;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .button-round.button-menu {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .button-round.button-menu {
    font-size: max(11px * var(--scale), 10px);
  }
}
.button-round .text {
  white-space: nowrap;
  transition: color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.button-round .icon {
  display: flex;
  width: 0.7857142857em;
}
@media (max-width: 768.4px) {
  .button-round .icon {
    width: 0.7692307692em;
  }
}
.button-round .icon path {
  transition: stroke 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  stroke: #fff !important;
}

/* main
*************************/
/* page-bottom-links
*************************/
@media all and (min-width: 768.5px) {
  .page-bottom-links {
    margin-top: calc(240px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-bottom-links {
    margin-top: calc(144px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  .page-bottom-links {
    border-top: 1px solid #EBEBEB;
    border-bottom: 1px solid #EBEBEB;
  }
}
@media (min-width: 768.5px) {
  .page-bottom-links .page-bottom-links-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media all and (min-width: 768.5px) {
  .page-bottom-links .page-bottom-links-inner {
    padding: calc(61px * var(--scale)) calc(0px * var(--scale)) calc(60px * var(--scale)) calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-bottom-links .page-bottom-links-inner {
    padding: calc(0px * var(--scale)) calc(0px * var(--scale));
  }
}
.page-bottom-links .page-bottom-links-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media all and (min-width: 768.5px) {
  .page-bottom-links .page-bottom-links-item {
    padding: calc(57px * var(--scale)) calc(30px * var(--scale)) calc(50px * var(--scale)) calc(30px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-bottom-links .page-bottom-links-item {
    padding: calc(36px * var(--scale)) calc(20px * var(--scale)) calc(35px * var(--scale)) calc(20px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-bottom-links .page-bottom-links-item {
    gap: calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-bottom-links .page-bottom-links-item {
    gap: calc(20px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  .page-bottom-links .page-bottom-links-item {
    flex-direction: column;
    border-left: 1px solid #EBEBEB;
  }
  .page-bottom-links .page-bottom-links-item:first-child {
    border: none;
  }
}
@media (max-width: 768.4px) {
  .page-bottom-links .page-bottom-links-item {
    justify-content: space-between;
    border-bottom: 1px solid #EBEBEB;
  }
  .page-bottom-links .page-bottom-links-item:first-child {
    border-top: 1px solid #EBEBEB;
  }
}
.page-bottom-links .page-bottom-links-item .item-title {
  line-height: 1.5;
}
@media all and (min-width: 768.5px) {
  .page-bottom-links .page-bottom-links-item .item-title {
    font-size: max(26px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-bottom-links .page-bottom-links-item .item-title {
    font-size: max(18px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .page-bottom-links .page-bottom-links-item .item-title {
    margin-bottom: calc(12px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-bottom-links .page-bottom-links-item .item-title {
    margin-bottom: calc(6px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  .page-bottom-links .page-bottom-links-item .item-title {
    text-align: center;
  }
}
html[lang=en-US] .page-bottom-links .page-bottom-links-item .item-title {
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.page-bottom-links .page-bottom-links-item .item-text {
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media all and (min-width: 768.5px) {
  .page-bottom-links .page-bottom-links-item .item-text {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-bottom-links .page-bottom-links-item .item-text {
    font-size: max(13px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .page-bottom-links .page-bottom-links-item .item-text {
    margin-bottom: calc(38px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-bottom-links .page-bottom-links-item .item-text {
    margin-bottom: calc(0px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  .page-bottom-links .page-bottom-links-item .item-text {
    text-align: center;
  }
}
html[lang=en-US] .page-bottom-links .page-bottom-links-item .item-text {
  letter-spacing: 0.02em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .page-bottom-links .page-bottom-links-item .item-text {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .page-bottom-links .page-bottom-links-item .item-text {
    font-size: max(15px * var(--scale), 10px);
  }
}
@media (max-width: 768.4px) {
  html[lang=en-US] .page-bottom-links .page-bottom-links-item .item-text {
    line-height: 1.2;
  }
}
.page-bottom-links .page-bottom-links-item .btn-more {
  flex-shrink: 0;
}

/* pagination
*************************/
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media all and (min-width: 768.5px) {
  .pagination {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .pagination {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .pagination {
    margin-top: calc(48px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .pagination {
    margin-top: calc(15px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .pagination {
    justify-content: space-between;
  }
}
.pagination .btn-list {
  display: flex;
}
@media all and (min-width: 768.5px) {
  .pagination .btn-list {
    gap: calc(21px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .pagination .btn-list {
    gap: calc(11px * var(--scale));
  }
}
.pagination .btn-list a {
  text-decoration: underline;
  text-decoration-color: currentColor;
}
@media all and (min-width: 768.5px) {
  .pagination .btn-list a {
    padding: calc(10px * var(--scale)) calc(5px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .pagination .btn-list a {
    padding: calc(10px * var(--scale)) calc(5px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .pagination .btn-list a {
    margin: calc(-10px * var(--scale)) calc(-5px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .pagination .btn-list a {
    margin: calc(-10px * var(--scale)) calc(-5px * var(--scale));
  }
}
.pagination .btn-list a.disable {
  color: #CCCCCC;
  pointer-events: none;
}
.pagination .pages {
  position: relative;
  display: flex;
}
@media all and (min-width: 768.5px) {
  .pagination .pages {
    gap: calc(16px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .pagination .pages {
    gap: calc(8px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .pagination .pages {
    padding: calc(0px * var(--scale)) calc(62px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .pagination .pages {
    padding: calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .pagination .pages li {
    width: calc(44px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .pagination .pages li {
    width: calc(34px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .pagination .pages li {
    height: calc(44px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .pagination .pages li {
    height: calc(34px * var(--scale));
  }
}
.pagination .pages li:has(.dots) {
  position: absolute;
  width: auto;
  top: 0;
}
@media all and (min-width: 768.5px) {
  .pagination .pages li:has(.dots):first-child {
    left: calc(40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .pagination .pages li:has(.dots):first-child {
    left: calc(-18px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .pagination .pages li:has(.dots):last-child {
    right: calc(40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .pagination .pages li:has(.dots):last-child {
    right: calc(-18px * var(--scale));
  }
}
.pagination .pages .page-number {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  background-color: #F6F6F6;
  border: 1px solid #EBEBEB;
  transition: background-color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media all and (min-width: 768.5px) {
  .pagination .pages .page-number {
    border-radius: calc(4px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .pagination .pages .page-number {
    border-radius: calc(4px * var(--scale));
  }
}
.pagination .pages .page-number.current {
  border: 1px solid #222222;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .pagination .pages .page-number:focus {
    background-color: #EBEBEB;
  }
  .pagination .pages .page-number:hover {
    background-color: #EBEBEB;
  }
}
.pagination .pages .dots {
  height: 100%;
  display: flex;
  align-items: center;
  height: 100%;
}
@media all and (min-width: 768.5px) {
  .pagination .pages .dots {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .pagination .pages .dots {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .pagination .pages .dots {
    padding-bottom: calc(6px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .pagination .pages .dots {
    padding-bottom: calc(6px * var(--scale));
  }
}

@media all and (min-width: 768.5px) {
  .home-main section + section {
    padding-top: calc(232px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .home-main section + section {
    padding-top: calc(130px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .home-main .section-top-statement {
    padding-top: calc(169px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .home-main .section-top-statement {
    padding-top: calc(70px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .home-main .section-slider-images {
    padding-top: calc(194px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .home-main .section-slider-images {
    padding-top: calc(106px * var(--scale));
  }
}

.section-top-kv {
  width: 100%;
  height: 100vh;
  height: 100svh;
  display: grid;
}
@media all and (min-width: 768.5px) {
  .section-top-kv {
    padding-top: calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-kv {
    padding-top: calc(64px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  .section-top-kv {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768.4px) {
  .section-top-kv {
    grid-template-rows: 50% 50%;
  }
}
.section-top-kv .kv-item {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768.5px) {
  .section-top-kv .kv-item {
    height: 100vh;
    height: 100svh;
  }
}
@media (max-width: 768.4px) {
  .section-top-kv .kv-item {
    height: 100%;
  }
}
.section-top-kv .kv-item .kv-pic {
  position: relative;
}
@media (min-width: 768.5px) {
  .section-top-kv .kv-item .kv-pic {
    height: calc(100% - 64px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .section-top-kv .kv-item .kv-pic {
    height: 100%;
  }
}
.section-top-kv .kv-item .kv-pic picture {
  display: contents;
}
.section-top-kv .kv-item .kv-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-top-kv .kv-item .kv-pic-logo {
  position: absolute;
}
@media all and (min-width: 768.5px) {
  .section-top-kv .kv-item .kv-pic-logo {
    top: auto;
  }
}
@media all and (max-width: 768.4px) {
  .section-top-kv .kv-item .kv-pic-logo {
    top: calc(16px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .section-top-kv .kv-item .kv-pic-logo {
    bottom: calc(40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-kv .kv-item .kv-pic-logo {
    bottom: auto;
  }
}
@media all and (min-width: 768.5px) {
  .section-top-kv .kv-item .kv-pic-logo.kora {
    width: calc(92px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-kv .kv-item .kv-pic-logo.kora {
    width: calc(64px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .section-top-kv .kv-item .kv-pic-logo.kora {
    left: calc(40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-kv .kv-item .kv-pic-logo.kora {
    left: calc(16px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .section-top-kv .kv-item .kv-pic-logo.akakara {
    width: calc(92px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-kv .kv-item .kv-pic-logo.akakara {
    width: calc(76px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .section-top-kv .kv-item .kv-pic-logo.akakara {
    left: calc(42px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-kv .kv-item .kv-pic-logo.akakara {
    left: calc(16px * var(--scale));
  }
}
.section-top-kv .kv-item-detail {
  flex-shrink: 0;
}
@media (max-width: 768.4px) {
  .section-top-kv .kv-item-detail {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.73) 100%);
  }
}
.section-top-kv .kv-item-detail-inner {
  flex-shrink: 0;
}
@media all and (min-width: 768.5px) {
  .section-top-kv .kv-item-detail-inner {
    height: calc(62px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-kv .kv-item-detail-inner {
    height: auto;
  }
}
@media all and (min-width: 768.5px) {
  .section-top-kv .kv-item-detail-inner {
    padding: calc(20px * var(--scale)) calc(40px * var(--scale)) calc(20px * var(--scale)) calc(40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-kv .kv-item-detail-inner {
    padding: calc(53px * var(--scale)) calc(16px * var(--scale)) calc(20px * var(--scale)) calc(16px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  .section-top-kv .kv-item-detail-inner {
    display: flex;
    align-items: center;
    min-height: 62px;
  }
}
.section-top-kv .kv-item-detail-inner .kv-item-title {
  flex-shrink: 0;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
html[lang=en-US] .section-top-kv .kv-item-detail-inner .kv-item-title {
  letter-spacing: 0em;
  line-height: 1.4;
  font-weight: 600;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .section-top-kv .kv-item-detail-inner .kv-item-title {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .section-top-kv .kv-item-detail-inner .kv-item-title {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .section-top-kv .kv-item-detail-inner .kv-item-title {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .section-top-kv .kv-item-detail-inner .kv-item-title {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .section-top-kv .kv-item-detail-inner .kv-item-title {
    margin-right: calc(26px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-kv .kv-item-detail-inner .kv-item-title {
    margin-right: calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .section-top-kv .kv-item-detail-inner .kv-item-title {
    margin-bottom: calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-kv .kv-item-detail-inner .kv-item-title {
    margin-bottom: calc(6px * var(--scale));
  }
}
.section-top-kv .kv-item-detail-inner .kv-item-text {
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media all and (min-width: 768.5px) {
  .section-top-kv .kv-item-detail-inner .kv-item-text {
    margin-right: calc(20px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-kv .kv-item-detail-inner .kv-item-text {
    margin-right: calc(0px * var(--scale));
  }
}
html[lang=en-US] .section-top-kv .kv-item-detail-inner .kv-item-text {
  letter-spacing: 0.02em;
  line-height: 1.2;
  font-weight: 600;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .section-top-kv .kv-item-detail-inner .kv-item-text {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .section-top-kv .kv-item-detail-inner .kv-item-text {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .section-top-kv .kv-item-detail-inner .kv-item-text {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .section-top-kv .kv-item-detail-inner .kv-item-text {
    font-size: max(13px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .section-top-kv .kv-item-detail-inner .kv-item-text {
    margin-bottom: calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-kv .kv-item-detail-inner .kv-item-text {
    margin-bottom: calc(7px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .section-top-kv .kv-item-detail-inner .kv-item-text {
    line-height: 1.05;
  }
}
.section-top-kv .kv-item-detail-inner .btn-more {
  flex-shrink: 0;
}
@media all and (min-width: 768.5px) {
  .section-top-kv .kv-item-detail-inner .btn-more {
    margin: calc(-14px * var(--scale)) calc(-5px * var(--scale)) calc(-5px * var(--scale)) auto;
  }
}
@media all and (max-width: 768.4px) {
  .section-top-kv .kv-item-detail-inner .btn-more {
    margin: calc(-5px * var(--scale)) auto calc(-5px * var(--scale)) calc(-5px * var(--scale));
  }
}

.section-top-statement {
  position: relative;
}
.section-top-statement .scroll-text {
  position: absolute;
  display: flex;
  align-items: center;
  top: calc(20px * var(--scale));
  right: calc(20px * var(--scale));
  gap: calc(7px * var(--scale));
}
.section-top-statement .scroll-text .text {
  font-size: calc(14px * var(--scale));
}
.section-top-statement .scroll-text .icon {
  display: flex;
  width: calc(9px * var(--scale));
}
.section-top-statement .text-catch {
  line-height: 1.5;
  letter-spacing: -0.02em;
  word-break: break-word;
  white-space: pre-line;
}
@media all and (min-width: 768.5px) {
  .section-top-statement .text-catch {
    font-size: max(30px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .section-top-statement .text-catch {
    font-size: max(22px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .section-top-statement .text-catch {
    margin-left: calc(2px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-statement .text-catch {
    margin-left: calc(2px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .section-top-statement .text-catch {
    line-height: 1.6;
  }
}
html[lang=en-US] .section-top-statement .text-catch {
  line-height: 1.3;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .section-top-statement .text-catch {
    font-size: max(26px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .section-top-statement .text-catch {
    font-size: max(22px * var(--scale), 10px);
  }
}
@media (max-width: 768.4px) {
  html[lang=en-US] .section-top-statement .text-catch {
    white-space: normal;
  }
}
@media (min-width: 768.5px) {
  .section-top-statement .statement-holder {
    display: flex;
    flex-direction: row-reverse;
  }
}
@media (min-width: 768.5px) and (min-width: 768.5px) {
  .section-top-statement .statement-holder {
    gap: calc(62px * var(--scale));
  }
}
@media (min-width: 768.5px) and (max-width: 768.4px) {
  .section-top-statement .statement-holder {
    gap: calc(63px * var(--scale));
  }
}
.section-top-statement .text-box {
  flex-shrink: 0;
}
@media all and (min-width: 768.5px) {
  .section-top-statement .text-box {
    width: calc(514px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-statement .text-box {
    width: auto;
  }
}
@media all and (min-width: 768.5px) {
  .section-top-statement .text-box {
    margin-top: calc(19px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-statement .text-box {
    margin-top: calc(39px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .section-top-statement .text-box {
    line-height: 2;
  }
}
.section-top-statement .text-box p.text {
  word-break: break-word;
  letter-spacing: 0.04em;
  line-height: 2.1;
}
html[lang=en-US] .section-top-statement .text-box p.text {
  letter-spacing: 0.02em;
  line-height: 1.5;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .section-top-statement .text-box p.text {
    font-size: max(22px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .section-top-statement .text-box p.text {
    font-size: max(18px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .section-top-statement .text-box p.text {
    font-size: max(20px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .section-top-statement .text-box p.text {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .section-top-statement .text-box p.text {
    margin-bottom: calc(32px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-statement .text-box p.text {
    margin-bottom: calc(26px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  .section-top-statement .text-box p.text {
    white-space: pre-line;
  }
}
.section-top-statement .pic-box {
  width: 100%;
  display: flex;
  align-items: flex-end;
  gap: 9.1836734694%;
}
@media all and (min-width: 768.5px) {
  .section-top-statement .pic-box {
    margin-top: calc(132px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-statement .pic-box {
    margin-top: calc(61px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .section-top-statement .pic-box {
    gap: calc(34px * var(--scale));
  }
}
.section-top-statement .pic-box .pic:nth-child(1) {
  flex-shrink: 0;
  width: 63.0102040816%;
}
@media (max-width: 768.4px) {
  .section-top-statement .pic-box .pic:nth-child(1) {
    width: calc(205px * var(--scale));
  }
}

.section-top-brands .brands-list {
  display: flex;
  flex-direction: column;
}
@media all and (min-width: 768.5px) {
  .section-top-brands .brands-list {
    gap: calc(56px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-brands .brands-list {
    gap: calc(49px * var(--scale));
  }
}
.section-top-brands .brands-list-item {
  display: flex;
}
@media all and (min-width: 768.5px) {
  .section-top-brands .brands-list-item {
    gap: calc(85px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-brands .brands-list-item {
    gap: calc(13px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .section-top-brands .brands-list-item {
    flex-direction: column;
  }
}
.section-top-brands .brands-list-item .pic-box {
  position: relative;
  flex-shrink: 0;
  width: 100%;
}
@media (min-width: 768.5px) {
  .section-top-brands .brands-list-item .pic-box {
    width: 45.9558823529%;
  }
}
.section-top-brands .brands-list-item .pic-box .pic-logo {
  position: absolute;
}
@media all and (min-width: 768.5px) {
  .section-top-brands .brands-list-item .pic-box .pic-logo {
    top: calc(24px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-brands .brands-list-item .pic-box .pic-logo {
    top: calc(16px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .section-top-brands .brands-list-item .pic-box .pic-logo {
    left: calc(24px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-brands .brands-list-item .pic-box .pic-logo {
    left: calc(16px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .section-top-brands .brands-list-item .pic-box .pic-logo.kora {
    width: calc(76px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-brands .brands-list-item .pic-box .pic-logo.kora {
    width: calc(60px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .section-top-brands .brands-list-item .pic-box .pic-logo.akakara {
    width: calc(88px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-brands .brands-list-item .pic-box .pic-logo.akakara {
    width: calc(64px * var(--scale));
  }
}
.section-top-brands .brands-list-item .pic-box .pic {
  width: 100%;
}
@media (max-width: 768.4px) {
  .section-top-brands .brands-list-item .pic-box .pic {
    height: calc(188px * var(--scale));
  }
  .section-top-brands .brands-list-item .pic-box .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media all and (min-width: 768.5px) {
  .section-top-brands .brands-list-item .text-box {
    padding: calc(16px * var(--scale)) calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-brands .brands-list-item .text-box {
    padding: calc(0px * var(--scale)) calc(0px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  .section-top-brands .brands-list-item .text-box {
    border-top: 1px solid #EBEBEB;
  }
}
.section-top-brands .brands-list-item .text-box .title {
  line-height: 2.2;
  letter-spacing: 0;
}
@media all and (min-width: 768.5px) {
  .section-top-brands .brands-list-item .text-box .title {
    font-size: max(26px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .section-top-brands .brands-list-item .text-box .title {
    font-size: max(18px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .section-top-brands .brands-list-item .text-box .title {
    margin-bottom: calc(8px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-brands .brands-list-item .text-box .title {
    margin-bottom: calc(3px * var(--scale));
  }
}
html[lang=en-US] .section-top-brands .brands-list-item .text-box .title {
  letter-spacing: -0.02em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .section-top-brands .brands-list-item .text-box .title {
    font-size: max(26px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .section-top-brands .brands-list-item .text-box .title {
    font-size: max(22px * var(--scale), 10px);
  }
}
.section-top-brands .brands-list-item .text-box p.text {
  line-height: 1.85;
  letter-spacing: 0.04em;
  word-break: break-word;
}
html[lang=en-US] .section-top-brands .brands-list-item .text-box p.text {
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .section-top-brands .brands-list-item .text-box p.text {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .section-top-brands .brands-list-item .text-box p.text {
    font-size: max(15px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .section-top-brands .brands-list-item .text-box p.text {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .section-top-brands .brands-list-item .text-box p.text {
    font-size: max(13px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .section-top-brands .brands-list-item .text-box p.text {
    margin-bottom: calc(26px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-top-brands .brands-list-item .text-box p.text {
    margin-bottom: calc(20px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .section-top-brands .brands-list-item .text-box p.text {
    line-height: 1.77;
  }
}
@media (min-width: 768.5px) {
  .section-top-brands .brands-list-item .text-box p.text {
    white-space: pre-line;
  }
}

@media all and (min-width: 768.5px) {
  .section-top-news .btn-more {
    margin: calc(55px * var(--scale)) calc(-5px * var(--scale)) calc(55px * var(--scale)) auto;
  }
}
@media all and (max-width: 768.4px) {
  .section-top-news .btn-more {
    margin: calc(30px * var(--scale)) calc(-5px * var(--scale)) calc(30px * var(--scale)) calc(-5px * var(--scale));
  }
}

@keyframes sliderAnimation {
  100% {
    transform: translateX(-100%);
  }
}
.section-slider-images {
  display: flex;
  overflow: hidden;
}
.section-slider-images .slider-inner {
  display: flex;
  animation: 20s linear infinite sliderAnimation;
}
@media all and (min-width: 768.5px) {
  .section-slider-images .slider-inner {
    gap: calc(48px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-slider-images .slider-inner {
    gap: calc(24px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .section-slider-images .slider-inner {
    padding-right: calc(48px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-slider-images .slider-inner {
    padding-right: calc(24px * var(--scale));
  }
}
.section-slider-images .slider-item {
  flex-shrink: 0;
  height: fit-content;
}
@media all and (min-width: 768.5px) {
  .section-slider-images .slider-item {
    width: calc(280px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-slider-images .slider-item {
    width: calc(127px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .section-slider-images .slider-item.bottom {
    margin-top: calc(61px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-slider-images .slider-item.bottom {
    margin-top: calc(28px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .section-slider-images .slider-item.small {
    width: calc(192px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-slider-images .slider-item.small {
    width: calc(87px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .section-slider-images .slider-item.small {
    margin-top: calc(61px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-slider-images .slider-item.small {
    margin-top: calc(28px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .section-slider-images .slider-item.small.bottom {
    margin-top: calc(121px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .section-slider-images .slider-item.small.bottom {
    margin-top: calc(55px * var(--scale));
  }
}

/* home, page-news-index 共通
*********************************/
.news-list {
  display: flex;
  flex-direction: column;
}
.news-list .news-list-item {
  position: relative;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #EBEBEB;
  transition: border-bottom 0.3s;
}
@media all and (min-width: 768.5px) {
  .news-list .news-list-item {
    padding: calc(17px * var(--scale)) calc(24px * var(--scale)) calc(39px * var(--scale)) calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .news-list .news-list-item {
    padding: calc(13px * var(--scale)) calc(24px * var(--scale)) calc(26px * var(--scale)) calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .news-list .news-list-item {
    gap: calc(14px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .news-list .news-list-item {
    gap: calc(23px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .news-list-block .news-list .news-list-item {
    padding: calc(8px * var(--scale)) calc(0px * var(--scale)) calc(29px * var(--scale)) calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .news-list-block .news-list .news-list-item {
    padding: calc(8px * var(--scale)) calc(0px * var(--scale)) calc(29px * var(--scale)) calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .news-list-block .news-list .news-list-item {
    gap: calc(11px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .news-list-block .news-list .news-list-item {
    gap: calc(11px * var(--scale));
  }
}
.news-list-block .news-list .news-list-item .title {
  line-height: 1.5;
}
@media all and (min-width: 768.5px) {
  .news-list-block .news-list .news-list-item .title {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .news-list-block .news-list .news-list-item .title {
    font-size: max(14px * var(--scale), 10px);
  }
}
html[lang=en-US] .news-list-block .news-list .news-list-item .title {
  line-height: 1.3;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .news-list-block .news-list .news-list-item .title {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .news-list-block .news-list .news-list-item .title {
    font-size: max(15px * var(--scale), 10px);
  }
}
.news-list-block .news-list .news-list-item .icon {
  display: none;
}
.news-list .news-list-item:first-child {
  border-top: 1px solid #EBEBEB;
}
@media (hover: hover) and (pointer: fine) {
  .news-list .news-list-item:focus {
    border-bottom: 1px solid #E50717;
  }
  .news-list .news-list-item:focus .title {
    color: #E50717;
  }
  .news-list .news-list-item:hover {
    border-bottom: 1px solid #E50717;
  }
  .news-list .news-list-item:hover .title {
    color: #E50717;
  }
}
.news-list .news-list-item .item-header {
  display: flex;
  align-items: center;
  color: #979797;
  line-height: 2;
}
@media all and (min-width: 768.5px) {
  .news-list .news-list-item .item-header {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .news-list .news-list-item .item-header {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .news-list .news-list-item .item-header {
    gap: calc(15px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .news-list .news-list-item .item-header {
    gap: calc(15px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .news-list .news-list-item .item-header {
    line-height: 1.4;
  }
}
.news-list .news-list-item .item-header .div {
  width: 1px;
  background-color: currentColor;
}
@media all and (min-width: 768.5px) {
  .news-list .news-list-item .item-header .div {
    height: calc(8px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .news-list .news-list-item .item-header .div {
    height: calc(8px * var(--scale));
  }
}
.news-list .news-list-item .item-header .category {
  letter-spacing: 2%;
}
.news-list .news-list-item .title {
  line-height: 2;
  transition: color 0.3s;
  overflow-wrap: normal;
  word-break: normal;
}
@media all and (min-width: 768.5px) {
  .news-list .news-list-item .title {
    font-size: max(18px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .news-list .news-list-item .title {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media (max-width: 768.4px) {
  .news-list .news-list-item .title {
    line-height: 1.5;
  }
}
html[lang=en-US] .news-list .news-list-item .title {
  line-height: 1.3;
  letter-spacing: 0.02em;
  font-weight: 600;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .news-list .news-list-item .title {
    font-size: max(20px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .news-list .news-list-item .title {
    font-size: max(18px * var(--scale), 10px);
  }
}
@media (max-width: 768.4px) {
  html[lang=en-US] .news-list .news-list-item .title {
    line-height: 1.4;
  }
}
.news-list .news-list-item .icon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: url("../images/common/icon/icon-link.svg") no-repeat center center;
  background-size: contain;
}
@media all and (min-width: 768.5px) {
  .news-list .news-list-item .icon {
    width: calc(24px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .news-list .news-list-item .icon {
    width: calc(17px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .news-list .news-list-item .icon {
    height: calc(24px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .news-list .news-list-item .icon {
    height: calc(17px * var(--scale));
  }
}
.news-list .news-list-item[target=_blank] .icon {
  background-image: url("../images/common/icon/icon-outerlink.svg");
  background-size: 60%;
}

/* news詳細
*********************************/
.page-news-detail .page-news-holder {
  display: flex;
  align-items: flex-start;
}
@media all and (min-width: 768.5px) {
  .page-news-detail .page-news-holder {
    gap: calc(23px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-news-detail .page-news-holder {
    gap: calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-news-detail .article-title-holder {
    padding-top: calc(132px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-news-detail .article-title-holder {
    padding-top: calc(111px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-news-detail .article-title-holder {
    padding-bottom: calc(72px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-news-detail .article-title-holder {
    padding-bottom: calc(60px * var(--scale));
  }
}
.page-news-detail .article-title-holder .article-title-h1 {
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.page-news-detail .article-title-holder .article-title-h1 [data-os=Windows] {
  position: relative;
}
@media all and (min-width: 768.5px) {
  .page-news-detail .article-title-holder .article-title-h1 [data-os=Windows] {
    top: calc(-10px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-news-detail .article-title-holder .article-title-h1 [data-os=Windows] {
    top: calc(-6px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-news-detail .article-title-holder .article-title-h1 {
    font-size: max(38px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-news-detail .article-title-holder .article-title-h1 {
    font-size: max(24px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .page-news-detail .article-title-holder .article-title-h1 {
    margin-bottom: calc(13px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-news-detail .article-title-holder .article-title-h1 {
    margin-bottom: calc(13px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .page-news-detail .article-title-holder .article-title-h1 {
    line-height: 1.4;
  }
}
html[lang=en-US] .page-news-detail .article-title-holder .article-title-h1 {
  line-height: 1;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .page-news-detail .article-title-holder .article-title-h1 {
    font-size: max(48px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .page-news-detail .article-title-holder .article-title-h1 {
    font-size: max(32px * var(--scale), 10px);
  }
}
.page-news-detail .article-title-holder .date-block {
  display: flex;
  align-items: center;
  color: #979797;
  line-height: 2;
  letter-spacing: 0.04em;
}
html[lang=en-US] .page-news-detail .article-title-holder .date-block {
  letter-spacing: 0.02em;
}
@media all and (min-width: 768.5px) {
  .page-news-detail .article-title-holder .date-block {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-news-detail .article-title-holder .date-block {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .page-news-detail .article-title-holder .date-block {
    gap: calc(15px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-news-detail .article-title-holder .date-block {
    gap: calc(15px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .page-news-detail .article-title-holder .date-block {
    line-height: 1.4;
  }
}
.page-news-detail .article-title-holder .date-block .div {
  width: 1px;
  height: 0.6666666667rem;
  background-color: #979797;
}
.page-news-detail .border-outline {
  border: #222222 solid 1px;
  display: flex;
  flex-direction: column;
}
@media all and (min-width: 768.5px) {
  .page-news-detail .border-outline {
    padding: calc(40px * var(--scale)) calc(40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-news-detail .border-outline {
    padding: calc(26px * var(--scale)) calc(32px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-news-detail .border-outline {
    gap: calc(34px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-news-detail .border-outline {
    gap: calc(33px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-news-detail .border-outline {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-news-detail .border-outline {
    font-size: max(15px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .page-news-detail .border-outline a {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-news-detail .border-outline a {
    font-size: max(15px * var(--scale), 10px);
  }
}

.news-list-block {
  position: sticky;
  flex-shrink: 0;
}
@media all and (min-width: 768.5px) {
  .news-list-block {
    width: calc(279px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .news-list-block {
    width: calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .news-list-block {
    top: calc(67px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .news-list-block {
    top: calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .news-list-block {
    padding-top: calc(134px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .news-list-block {
    padding-top: calc(0px * var(--scale));
  }
}
.news-list-block .news-list-block-title {
  letter-spacing: 0.04em;
}
html[lang=en-US] .news-list-block .news-list-block-title {
  letter-spacing: 0.02em;
}
@media all and (min-width: 768.5px) {
  .news-list-block .news-list-block-title {
    font-size: max(18px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .news-list-block .news-list-block-title {
    font-size: max(0px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .news-list-block .news-list-block-title {
    margin-bottom: calc(19px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .news-list-block .news-list-block-title {
    margin-bottom: calc(0px * var(--scale));
  }
}

.article-news .scrollspyContainer {
  display: flex;
  flex-direction: column;
  line-height: 1.79;
  letter-spacing: 0.04em;
  word-break: break-word;
}
html[lang=en-US] .article-news .scrollspyContainer {
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media all and (min-width: 768.5px) {
  .article-news .scrollspyContainer {
    gap: calc(80px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-news .scrollspyContainer {
    gap: calc(48px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .article-news .scrollspyContainer {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .article-news .scrollspyContainer {
    font-size: max(15px * var(--scale), 10px);
  }
}
@media (max-width: 768.4px) {
  .article-news .scrollspyContainer {
    line-height: 1.78;
  }
  html[lang=en-US] .article-news .scrollspyContainer {
    line-height: 1.5;
  }
}
.article-news .scrollspyContainer p:not(.has-background), .article-news .scrollspyContainer figcaption:not(.has-background) {
  padding: 0;
}
.article-news .scrollspyContainer p:not(.has-background)::before, .article-news .scrollspyContainer figcaption:not(.has-background)::before {
  content: "";
  display: block;
  margin-top: -0.3928571429rem;
}
.article-news .scrollspyContainer p:not(.has-background)::after, .article-news .scrollspyContainer figcaption:not(.has-background)::after {
  content: "";
  display: block;
  margin-bottom: -0.3928571429rem;
}
.article-news .scrollspyContainer h2, .article-news .scrollspyContainer h3, .article-news .scrollspyContainer h4 {
  line-height: 1.4;
  padding: 0;
  font-weight: 600;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
}
html[lang=en-US] .article-news .scrollspyContainer h2, html[lang=en-US] .article-news .scrollspyContainer h3, html[lang=en-US] .article-news .scrollspyContainer h4 {
  font-family: "proxima-nova", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.article-news .scrollspyContainer h2::before, .article-news .scrollspyContainer h3::before, .article-news .scrollspyContainer h4::before {
  content: "";
  display: block;
  margin-top: -0.3928571429rem;
}
.article-news .scrollspyContainer h2::after, .article-news .scrollspyContainer h3::after, .article-news .scrollspyContainer h4::after {
  content: "";
  display: block;
  margin-bottom: -0.3928571429rem;
}
@media all and (min-width: 768.5px) {
  .article-news .scrollspyContainer h2 {
    font-size: max(22px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .article-news .scrollspyContainer h2 {
    font-size: max(18px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .article-news .scrollspyContainer h2 {
    font-size: max(22px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .article-news .scrollspyContainer h2 {
    font-size: max(20px * var(--scale), 10px);
  }
}
.article-news .scrollspyContainer a {
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.article-news .scrollspyContainer a:not(.wp-block-button__link) {
  color: #E50717;
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .article-news .scrollspyContainer a:focus {
    opacity: 0.4;
  }
  .article-news .scrollspyContainer a:hover {
    opacity: 0.4;
  }
}
.article-news .scrollspyContainer .wp-block-buttons {
  display: flex;
  flex-direction: column;
}
@media all and (min-width: 768.5px) {
  .article-news .scrollspyContainer .wp-block-buttons {
    gap: calc(10px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-news .scrollspyContainer .wp-block-buttons {
    gap: calc(10px * var(--scale));
  }
}
.article-news .scrollspyContainer .wp-block-buttons.is-layout-flex {
  flex-direction: row;
  flex-wrap: wrap;
}
.article-news .scrollspyContainer .wp-block-buttons .wp-block-button {
  width: fit-content;
  flex-shrink: 0;
}
.article-news .scrollspyContainer .wp-block-buttons .wp-block-button__link {
  color: #fff;
  text-decoration: none;
}
.article-news .scrollspyContainer figcaption {
  margin-bottom: 0;
}
@media all and (min-width: 768.5px) {
  .article-news .scrollspyContainer figcaption {
    margin-top: calc(18px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-news .scrollspyContainer figcaption {
    margin-top: calc(17px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .article-news .scrollspyContainer figcaption {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .article-news .scrollspyContainer figcaption {
    font-size: max(11px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .article-news .scrollspyContainer figcaption {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .article-news .scrollspyContainer figcaption {
    font-size: max(13px * var(--scale), 10px);
  }
}
.article-news .scrollspyContainer .wp-block-image.portrait {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768.5px) {
  .article-news .scrollspyContainer .wp-block-image.portrait {
    width: 58.1690140845%;
  }
}
@media all and (min-width: 768.5px) {
  .article-news .scrollspyContainer .wp-block-image img {
    border-radius: calc(4px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-news .scrollspyContainer .wp-block-image img {
    border-radius: calc(4px * var(--scale));
  }
}
.article-news .scrollspyContainer .wp-block-separator {
  margin-top: 0;
  margin-bottom: 0;
}

/* franchise　一覧
*********************************/
.franchise-list .franchise-list-item {
  border-top: #222 solid 1px;
}
@media all and (min-width: 768.5px) {
  .franchise-list .franchise-list-item {
    padding: calc(17px * var(--scale)) calc(0px * var(--scale)) calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .franchise-list .franchise-list-item {
    padding: calc(11px * var(--scale)) calc(0px * var(--scale)) calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .franchise-list .franchise-list-item + .franchise-list-item {
    margin-top: calc(144px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .franchise-list .franchise-list-item + .franchise-list-item {
    margin-top: calc(80px * var(--scale));
  }
}
.franchise-list .franchise-list-item h3.title {
  line-height: 1.5;
}
@media all and (min-width: 768.5px) {
  .franchise-list .franchise-list-item h3.title {
    font-size: max(26px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .franchise-list .franchise-list-item h3.title {
    font-size: max(18px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .franchise-list .franchise-list-item h3.title {
    margin-bottom: calc(43px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .franchise-list .franchise-list-item h3.title {
    margin-bottom: calc(29px * var(--scale));
  }
}
html[lang=en-US] .franchise-list .franchise-list-item h3.title {
  line-height: 1.3;
  letter-spacing: -0.02em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .franchise-list .franchise-list-item h3.title {
    font-size: max(32px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .franchise-list .franchise-list-item h3.title {
    font-size: max(22px * var(--scale), 10px);
  }
}
.franchise-list .franchise-list-item .item-inner {
  display: flex;
  justify-content: space-between;
}
@media all and (min-width: 768.5px) {
  .franchise-list .franchise-list-item .item-inner {
    gap: calc(40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .franchise-list .franchise-list-item .item-inner {
    gap: calc(40px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .franchise-list .franchise-list-item .item-inner {
    flex-direction: column;
  }
}
@media all and (min-width: 768.5px) {
  .franchise-list .franchise-list-item .block-info {
    width: calc(755px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .franchise-list .franchise-list-item .block-info {
    width: auto;
  }
}
.franchise-list .franchise-list-item .block-info .header {
  display: flex;
  justify-content: space-between;
}
@media all and (min-width: 768.5px) {
  .franchise-list .franchise-list-item .block-info .header {
    gap: calc(80px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .franchise-list .franchise-list-item .block-info .header {
    gap: calc(40px * var(--scale));
  }
}
.franchise-list .franchise-list-item .block-info .header .logo {
  flex-shrink: 0;
}
@media all and (min-width: 768.5px) {
  .franchise-list .franchise-list-item .block-info .header .logo {
    width: calc(80px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .franchise-list .franchise-list-item .block-info .header .logo {
    width: calc(48px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .franchise-list .franchise-list-item .block-info .header .logo {
    margin-bottom: calc(40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .franchise-list .franchise-list-item .block-info .header .logo {
    margin-bottom: calc(27px * var(--scale));
  }
}
.franchise-list .franchise-list-item .block-info .header .lead-copy {
  line-height: 1.75;
  letter-spacing: 0.04em;
  white-space: pre-line;
  word-break: break-word;
}
html[lang=en-US] .franchise-list .franchise-list-item .block-info .header .lead-copy {
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .franchise-list .franchise-list-item .block-info .header .lead-copy {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .franchise-list .franchise-list-item .block-info .header .lead-copy {
    font-size: max(15px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .franchise-list .franchise-list-item .block-info .header .lead-copy {
    width: calc(363px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .franchise-list .franchise-list-item .block-info .header .lead-copy {
    width: auto;
  }
}
@media all and (min-width: 768.5px) {
  .franchise-list .franchise-list-item .block-info .header .lead-copy {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .franchise-list .franchise-list-item .block-info .header .lead-copy {
    font-size: max(13px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .franchise-list .franchise-list-item .block-info .header .lead-copy {
    margin-bottom: calc(33px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .franchise-list .franchise-list-item .block-info .header .lead-copy {
    margin-bottom: calc(26px * var(--scale));
  }
}
.franchise-list .franchise-list-item .block-info .info-list .info-list-item {
  display: flex;
  border-top: 1px solid #E8E8E8;
}
@media all and (min-width: 768.5px) {
  .franchise-list .franchise-list-item .block-info .info-list .info-list-item {
    padding: calc(16px * var(--scale)) calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .franchise-list .franchise-list-item .block-info .info-list .info-list-item {
    padding: calc(16px * var(--scale)) calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .franchise-list .franchise-list-item .block-info .info-list .info-list-item {
    gap: calc(20px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .franchise-list .franchise-list-item .block-info .info-list .info-list-item {
    gap: calc(10px * var(--scale));
  }
}
.franchise-list .franchise-list-item .block-info .info-list .info-list-item:last-child {
  border-bottom: 1px solid #E8E8E8;
}
.franchise-list .franchise-list-item .block-info .info-list .info-list-item .title {
  line-height: 1.5;
  flex-shrink: 0;
}
@media all and (min-width: 768.5px) {
  .franchise-list .franchise-list-item .block-info .info-list .info-list-item .title {
    width: calc(151px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .franchise-list .franchise-list-item .block-info .info-list .info-list-item .title {
    width: calc(79px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .franchise-list .franchise-list-item .block-info .info-list .info-list-item .title {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .franchise-list .franchise-list-item .block-info .info-list .info-list-item .title {
    font-size: max(13px * var(--scale), 10px);
  }
}
html[lang=en-US] .franchise-list .franchise-list-item .block-info .info-list .info-list-item .title {
  line-height: 1.3;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .franchise-list .franchise-list-item .block-info .info-list .info-list-item .title {
    padding-right: calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .franchise-list .franchise-list-item .block-info .info-list .info-list-item .title {
    padding-right: calc(10px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .franchise-list .franchise-list-item .block-info .info-list .info-list-item .title {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .franchise-list .franchise-list-item .block-info .info-list .info-list-item .title {
    font-size: max(14px * var(--scale), 10px);
  }
}
.franchise-list .franchise-list-item .block-info .info-list .info-list-item .text {
  line-height: 1.5;
  letter-spacing: 0.04em;
  white-space: pre-line;
  word-break: break-word;
}
html[lang=en-US] .franchise-list .franchise-list-item .block-info .info-list .info-list-item .text {
  line-height: 1.3;
  letter-spacing: 0.02em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .franchise-list .franchise-list-item .block-info .info-list .info-list-item .text {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .franchise-list .franchise-list-item .block-info .info-list .info-list-item .text {
    font-size: max(15px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .franchise-list .franchise-list-item .block-info .info-list .info-list-item .text {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .franchise-list .franchise-list-item .block-info .info-list .info-list-item .text {
    font-size: max(13px * var(--scale), 10px);
  }
}
.franchise-list .franchise-list-item .block-pic {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media all and (min-width: 768.5px) {
  .franchise-list .franchise-list-item .block-pic {
    gap: calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .franchise-list .franchise-list-item .block-pic {
    gap: calc(40px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .franchise-list .franchise-list-item .block-pic .pic {
    width: calc(346px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .franchise-list .franchise-list-item .block-pic .pic {
    width: auto;
  }
}
.franchise-list .franchise-list-item .block-pic .button-holder {
  display: flex;
  margin-top: auto;
  margin-bottom: 0;
}
@media all and (min-width: 768.5px) {
  .franchise-list .franchise-list-item .block-pic .button-holder {
    gap: calc(16px * var(--scale)) calc(16px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .franchise-list .franchise-list-item .block-pic .button-holder {
    gap: calc(8px * var(--scale)) calc(7px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .franchise-list .franchise-list-item .block-pic .button-holder {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.franchise-list .franchise-list-item .block-pic .button-holder .button-round {
  flex-shrink: 0;
}
@media (min-width: 768.5px) {
  .franchise-list .franchise-list-item .block-pic .button-holder .button-round {
    width: calc(175px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .franchise-list .franchise-list-item .block-pic .button-holder .button-round {
    width: auto;
    padding: 0;
  }
}

/* franchise　詳細
*********************************/
@media (min-width: 768.5px) {
  .page-franchise-detail .page-franchise-detail-holder {
    display: flex;
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .contact-button-holder {
    margin-top: calc(57px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .contact-button-holder {
    margin-top: calc(0px * var(--scale));
  }
}
.page-franchise-detail .contact-button-holder.sticky {
  transform: translateY(40px);
  opacity: 0;
  position: sticky;
  z-index: 1;
  top: calc(100dvh - 60px * var(--scale));
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin: calc(78px * var(--scale)) calc(0px * var(--scale)) calc(-80px * var(--scale)) calc(0px * var(--scale));
}
.page-franchise-detail .contact-button-holder.sticky .button-round {
  margin: 0 0 0 auto;
}
.button-show .page-franchise-detail .contact-button-holder.sticky {
  opacity: 1;
  transform: translateY(0);
}
.page-franchise-detail .contact-button-holder .text-lead {
  line-height: 1.75;
  letter-spacing: 0.04em;
  white-space: pre-line;
  word-break: break-word;
}
html[lang=en-US] .page-franchise-detail .contact-button-holder .text-lead {
  letter-spacing: 0.02em;
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .contact-button-holder .text-lead {
    margin-bottom: calc(19px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .contact-button-holder .text-lead {
    margin-bottom: calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .contact-button-holder .text-lead {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .contact-button-holder .text-lead {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .contact-button-holder .button-round {
    padding: calc(0px * var(--scale)) calc(10px * var(--scale)) calc(0px * var(--scale)) calc(10px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .contact-button-holder .button-round {
    padding: calc(0px * var(--scale)) calc(16px * var(--scale)) calc(0px * var(--scale)) calc(12px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .article-title-holder {
    padding-top: calc(125px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .article-title-holder {
    padding-top: calc(67px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .article-title-holder {
    padding-bottom: calc(65px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .article-title-holder {
    padding-bottom: calc(16px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .article-title-holder {
    padding-left: calc(3px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .article-title-holder {
    padding-left: calc(0px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .page-franchise-detail .article-title-holder {
    border-bottom: 1px solid #222222;
  }
}
.page-franchise-detail .article-title-holder .article-title-h1 {
  letter-spacing: -0.02em;
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .article-title-holder .article-title-h1 {
    font-size: max(48px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .article-title-holder .article-title-h1 {
    font-size: max(28px * var(--scale), 10px);
  }
}
.page-franchise-detail .pic-main {
  overflow: hidden;
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .pic-main {
    border-radius: calc(4px * var(--scale)) calc(0px * var(--scale)) calc(0px * var(--scale)) calc(4px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .pic-main {
    border-radius: calc(0px * var(--scale)) calc(0px * var(--scale)) calc(0px * var(--scale)) calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .pic-main {
    margin-right: calc(-40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .pic-main {
    margin-right: calc(-20px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .pic-main {
    margin-left: calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .pic-main {
    margin-left: calc(-20px * var(--scale));
  }
}
@media (min-width: 1700px) {
  .page-franchise-detail .pic-main {
    margin-right: calc(-40px * var(--scale) - (100vw - var(--scroll-bar-width) - 1700px) * 0.5);
  }
}
.page-franchise-detail .main-copy {
  text-align: center;
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .main-copy {
    padding: calc(70px * var(--scale)) calc(0px * var(--scale)) calc(74px * var(--scale)) calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .main-copy {
    padding: calc(43px * var(--scale)) calc(0px * var(--scale)) calc(44px * var(--scale)) calc(0px * var(--scale));
  }
}
.page-franchise-detail .main-copy h2 {
  line-height: 1.4;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-style: normal;
  font-weight: 600;
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .main-copy h2 {
    font-size: max(32px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .main-copy h2 {
    font-size: max(22px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .main-copy h2 {
    padding-bottom: calc(18px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .main-copy h2 {
    padding-bottom: calc(13px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .page-franchise-detail .main-copy h2 {
    line-height: 1.5;
  }
}
html[lang=en-US] .page-franchise-detail .main-copy h2 {
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-family: "proxima-nova", "dnp-shuei-gothic-gin-std", sans-serif;
}
.page-franchise-detail .main-copy p {
  line-height: 1.75;
  letter-spacing: 0.04em;
}
html[lang=en-US] .page-franchise-detail .main-copy p {
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .page-franchise-detail .main-copy p {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .page-franchise-detail .main-copy p {
    font-size: max(15px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .main-copy p {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .main-copy p {
    font-size: max(13px * var(--scale), 10px);
  }
}
.page-franchise-detail .section-wrapper {
  display: flex;
  flex-direction: column;
}
.page-franchise-detail .section-wrapper .section {
  border-top: #E8E8E8 solid 1px;
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-default {
    padding: calc(65px * var(--scale)) calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-default {
    padding: calc(46px * var(--scale)) calc(0px * var(--scale));
  }
}
.page-franchise-detail .section-wrapper .section-default .section-inner {
  display: flex;
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-default .section-inner {
    gap: calc(87px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-default .section-inner {
    gap: calc(17px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-default .section-inner {
    flex-direction: column;
  }
}
.page-franchise-detail .section-wrapper .section-default .text-box h2.title {
  line-height: 1.4;
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-default .text-box h2.title {
    font-size: max(26px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-default .text-box h2.title {
    font-size: max(22px * var(--scale), 10px);
  }
}
@media (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-default .text-box h2.title {
    line-height: 1.5;
  }
}
html[lang=en-US] .page-franchise-detail .section-wrapper .section-default .text-box h2.title {
  line-height: 1.3;
  letter-spacing: -0.02em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .page-franchise-detail .section-wrapper .section-default .text-box h2.title {
    font-size: max(32px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .page-franchise-detail .section-wrapper .section-default .text-box h2.title {
    font-size: max(22px * var(--scale), 10px);
  }
}
.page-franchise-detail .section-wrapper .section-default .text-box .description {
  line-height: 1.75;
  letter-spacing: 0.04em;
  white-space: pre-line;
  word-break: break-word;
}
html[lang=en-US] .page-franchise-detail .section-wrapper .section-default .text-box .description {
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .page-franchise-detail .section-wrapper .section-default .text-box .description {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .page-franchise-detail .section-wrapper .section-default .text-box .description {
    font-size: max(15px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-default .text-box .description {
    margin-top: calc(20px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-default .text-box .description {
    margin-top: calc(13px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-default .text-box .description {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-default .text-box .description {
    font-size: max(13px * var(--scale), 10px);
  }
}
.page-franchise-detail .section-wrapper .section-default .pic-box {
  flex-shrink: 0;
}
@media (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-default .pic-box {
    width: 56.5130260521%;
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation {
    padding-top: calc(59px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation {
    padding-top: calc(42px * var(--scale));
  }
}
.page-franchise-detail .section-wrapper .section-simulation .section-inner {
  display: flex;
  flex-direction: column;
}
.page-franchise-detail .section-wrapper .section-simulation h2.title {
  line-height: 1.4;
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation h2.title {
    font-size: max(26px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation h2.title {
    font-size: max(22px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation h2.title {
    padding-bottom: calc(34px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation h2.title {
    padding-bottom: calc(29px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation h2.title {
    line-height: 1.5;
  }
}
html[lang=en-US] .page-franchise-detail .section-wrapper .section-simulation h2.title {
  line-height: 1.3;
  letter-spacing: -0.02em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .page-franchise-detail .section-wrapper .section-simulation h2.title {
    font-size: max(32px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .page-franchise-detail .section-wrapper .section-simulation h2.title {
    font-size: max(22px * var(--scale), 10px);
  }
}
.page-franchise-detail .section-wrapper .section-simulation .simulation-header, .page-franchise-detail .section-wrapper .section-simulation .simulation-body {
  background-color: #F6F6F6;
  border-radius: calc(4px * var(--scale));
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-header, .page-franchise-detail .section-wrapper .section-simulation .simulation-body {
    padding: calc(38px * var(--scale)) calc(48px * var(--scale)) calc(36px * var(--scale)) calc(48px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-header, .page-franchise-detail .section-wrapper .section-simulation .simulation-body {
    padding: calc(19px * var(--scale)) calc(16px * var(--scale)) calc(24px * var(--scale)) calc(16px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-header {
    margin-bottom: calc(8px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-header {
    margin-bottom: calc(8px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-header {
    display: flex;
  }
}
.page-franchise-detail .section-wrapper .section-simulation .simulation-header .title {
  line-height: 1.4;
  flex-shrink: 0;
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-header .title {
    width: calc(282px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-header .title {
    width: auto;
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-header .title {
    font-size: max(18px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-header .title {
    font-size: max(18px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-header .title {
    margin-bottom: calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-header .title {
    margin-bottom: calc(14px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-header .title {
    line-height: 1.5;
  }
}
html[lang=en-US] .page-franchise-detail .section-wrapper .section-simulation .simulation-header .title {
  line-height: 1.3;
  letter-spacing: -0.02em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .page-franchise-detail .section-wrapper .section-simulation .simulation-header .title {
    font-size: max(20px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .page-franchise-detail .section-wrapper .section-simulation .simulation-header .title {
    font-size: max(18px * var(--scale), 10px);
  }
}
.page-franchise-detail .section-wrapper .section-simulation .simulation-header .description {
  width: 100%;
  line-height: 1.75;
  letter-spacing: 0.04em;
  white-space: pre-line;
  word-break: break-word;
}
html[lang=en-US] .page-franchise-detail .section-wrapper .section-simulation .simulation-header .description {
  letter-spacing: 0.02em;
  line-height: 1.5;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .page-franchise-detail .section-wrapper .section-simulation .simulation-header .description {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .page-franchise-detail .section-wrapper .section-simulation .simulation-header .description {
    font-size: max(15px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-header .description {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-header .description {
    font-size: max(13px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-header .description {
    margin-right: calc(46px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-header .description {
    margin-right: calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-header .description {
    margin-bottom: calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-header .description {
    margin-bottom: calc(20px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-header .description {
    line-height: 1.5;
  }
}
.page-franchise-detail .section-wrapper .section-simulation .simulation-body h3.title {
  line-height: 1.4;
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body h3.title {
    font-size: max(18px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body h3.title {
    font-size: max(18px * var(--scale), 10px);
  }
}
@media (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body h3.title {
    line-height: 1.5;
  }
}
html[lang=en-US] .page-franchise-detail .section-wrapper .section-simulation .simulation-body h3.title {
  line-height: 1.3;
  letter-spacing: -0.02em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .page-franchise-detail .section-wrapper .section-simulation .simulation-body h3.title {
    font-size: max(20px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .page-franchise-detail .section-wrapper .section-simulation .simulation-body h3.title {
    font-size: max(18px * var(--scale), 10px);
  }
}
.page-franchise-detail .section-wrapper .section-simulation .simulation-body .description {
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .description {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .description {
    font-size: max(13px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .description {
    margin-top: calc(12px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .description {
    margin-top: calc(13px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .description {
    line-height: 1.5;
  }
}
html[lang=en-US] .page-franchise-detail .section-wrapper .section-simulation .simulation-body .description {
  letter-spacing: 0.02em;
  line-height: 1.5;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .page-franchise-detail .section-wrapper .section-simulation .simulation-body .description {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .page-franchise-detail .section-wrapper .section-simulation .simulation-body .description {
    font-size: max(15px * var(--scale), 10px);
  }
}
.page-franchise-detail .section-wrapper .section-simulation .simulation-body .simulation-step-list {
  position: relative;
  display: flex;
  flex-direction: column;
  border-top: 1px dashed #CCC;
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .simulation-step-list {
    gap: calc(32px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .simulation-step-list {
    gap: calc(24px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .simulation-step-list {
    margin-top: calc(34px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .simulation-step-list {
    margin-top: calc(28px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .simulation-step-list {
    padding-top: calc(43px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .simulation-step-list {
    padding-top: calc(32px * var(--scale));
  }
}
.page-franchise-detail .section-wrapper .section-simulation .simulation-body .simulation-step-list::before {
  content: "";
  display: block;
  position: absolute;
  border-left: 1px dashed #222;
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .simulation-step-list::before {
    top: calc(50px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .simulation-step-list::before {
    top: calc(40px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .simulation-step-list::before {
    bottom: calc(50px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .simulation-step-list::before {
    bottom: calc(40px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .simulation-step-list::before {
    left: calc(70px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .simulation-step-list::before {
    left: calc(41px * var(--scale));
  }
}
.page-franchise-detail .section-wrapper .section-simulation .simulation-body .simulation-step {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #E8E8E8;
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .simulation-step {
    border-radius: calc(4px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .simulation-step {
    border-radius: calc(4px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .simulation-step {
    padding: calc(16px * var(--scale)) calc(32px * var(--scale)) calc(16px * var(--scale)) calc(32px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .simulation-step {
    padding: calc(16px * var(--scale)) calc(16px * var(--scale)) calc(24px * var(--scale)) calc(16px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .simulation-step {
    flex-direction: column;
    align-items: flex-start;
  }
}
.page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-header {
    gap: calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-header {
    gap: calc(16px * var(--scale));
  }
}
.page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-num {
  line-height: 1;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  border-radius: 50%;
  border: 1px solid #fff;
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-num {
    width: calc(76px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-num {
    width: calc(52px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-num {
    height: calc(76px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-num {
    height: calc(52px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-num {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-num {
    font-size: max(8px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-num {
    padding-bottom: calc(26px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-num {
    padding-bottom: calc(16px * var(--scale));
  }
}
.page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-num .num {
  font-weight: 400;
  line-height: 0.75;
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-num .num {
    font-size: max(32px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-num .num {
    font-size: max(24px * var(--scale), 10px);
  }
}
@media (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-num .num {
    line-height: 0.65;
  }
}
.page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-title {
  line-height: 1.75;
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-title {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-title {
    font-size: max(15px * var(--scale), 10px);
  }
}
html[lang=en-US] .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-title {
  letter-spacing: 0.02em;
  line-height: 1.2;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-title {
    font-size: max(20px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-title {
    font-size: max(17px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-description {
    margin-left: calc(36px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-description {
    margin-left: calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-description {
    margin-top: calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-description {
    margin-top: calc(16px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-description {
    padding: calc(10px * var(--scale)) calc(0px * var(--scale)) calc(16px * var(--scale)) calc(35px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-description {
    padding: calc(24px * var(--scale)) calc(0px * var(--scale)) calc(0px * var(--scale)) calc(0px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-description {
    border-left: 1px dashed #CCC;
  }
}
@media (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-description {
    width: 100%;
    border-top: 1px dashed #CCC;
  }
}
.page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-description .progress-list {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-description .progress-list {
    gap: calc(8px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-description .progress-list {
    gap: calc(4px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-description .progress-list {
    margin-top: calc(18px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-description .progress-list {
    margin-top: calc(0px * var(--scale));
  }
}
.page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-description .progress {
  display: flex;
  align-items: center;
  background-color: #fff;
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-description .progress {
    height: calc(36px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-description .progress {
    height: calc(32px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-description .progress {
    padding: calc(0px * var(--scale)) calc(12px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-description .progress {
    padding: calc(0px * var(--scale)) calc(16px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-description .progress {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-description .progress {
    font-size: max(13px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-description .progress {
    border-radius: calc(2px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-description .progress {
    border-radius: calc(2px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-description .progress {
    width: 100%;
  }
}
html[lang=en-US] .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-description .progress {
  letter-spacing: 0.02em;
  line-height: 1.2;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-description .progress {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-description .progress {
    font-size: max(15px * var(--scale), 10px);
  }
}
.page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-description .icon-arrow-progress {
  display: flex;
}
@media all and (min-width: 768.5px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-description .icon-arrow-progress {
    width: calc(18.5px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-franchise-detail .section-wrapper .section-simulation .simulation-body .step-description .icon-arrow-progress {
    width: calc(52px * var(--scale));
  }
}

/* サイドメニュー 共通
*********************************/
.side-menu {
  position: sticky;
  flex-shrink: 0;
  height: fit-content;
  z-index: 1;
}
@media all and (min-width: 768.5px) {
  .side-menu {
    top: calc(122px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .side-menu {
    top: calc(77px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .side-menu {
    margin: calc(56px * var(--scale)) calc(0px * var(--scale)) calc(-120px * var(--scale)) calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .side-menu {
    margin: calc(28px * var(--scale)) calc(-20px * var(--scale)) calc(0px * var(--scale)) calc(-20px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .side-menu {
    width: calc(149px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .side-menu {
    width: auto;
  }
}
@media (max-width: 768.4px) {
  .side-menu {
    position: static;
    display: flex;
    padding: calc(0px * var(--scale)) calc(20px * var(--scale));
    gap: calc(9px * var(--scale)) calc(14px * var(--scale));
  }
  .side-menu.franchise {
    flex-wrap: wrap;
  }
}
@media all and (min-width: 768.5px) {
  body:has(.page-franchise-detail) .side-menu {
    width: calc(217px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  body:has(.page-franchise-detail) .side-menu {
    width: auto;
  }
}
@media all and (min-width: 768.5px) {
  body:has(.page-franchise-detail) .side-menu {
    margin: calc(56px * var(--scale)) calc(0px * var(--scale)) calc(-120px * var(--scale)) calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  body:has(.page-franchise-detail) .side-menu {
    margin: calc(20px * var(--scale)) calc(-20px * var(--scale)) calc(38px * var(--scale)) calc(-20px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  body:has(.page-franchise-detail) .side-menu {
    gap: calc(17px * var(--scale)) calc(14px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  body:has(.page-franchise-detail) .side-menu .side-menu-item {
    font-size: max(13px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  body:has(.page-franchise-detail) .side-menu .side-menu-item {
    font-size: max(11px * var(--scale), 10px);
  }
}
.side-menu .side-menu-title {
  flex-shrink: 0;
  line-height: 1.5;
}
@media all and (min-width: 768.5px) {
  .side-menu .side-menu-title {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .side-menu .side-menu-title {
    font-size: max(10px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .side-menu .side-menu-title {
    margin-bottom: calc(17px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .side-menu .side-menu-title {
    margin-bottom: calc(0px * var(--scale));
  }
}
html[lang=en-US] .side-menu .side-menu-title {
  line-height: 1.3;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .side-menu .side-menu-title {
    font-size: max(13px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .side-menu .side-menu-title {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media (max-width: 768.4px) {
  html[lang=en-US] .side-menu .side-menu-title {
    line-height: 1.1;
  }
}
.side-menu .div {
  width: 1px;
  height: calc(8px * var(--scale));
  margin: calc(4px * var(--scale)) calc(2px * var(--scale)) calc(0px * var(--scale)) calc(2px * var(--scale));
  background-color: #121111;
}
html[lang=en-US] .side-menu .div {
  margin: calc(2px * var(--scale)) calc(2px * var(--scale)) calc(0px * var(--scale)) calc(2px * var(--scale));
}
@media (max-width: 768.4px) {
  .side-menu .side-menu-list {
    display: flex;
    flex-wrap: wrap;
    gap: calc(9px * var(--scale)) calc(14px * var(--scale));
  }
  html[lang=en-US] .side-menu .side-menu-list {
    gap: calc(12px * var(--scale)) calc(19px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .side-menu .side-menu-back-holder {
    margin-bottom: calc(28px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .side-menu .side-menu-back-holder {
    margin-bottom: calc(0px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .side-menu .side-menu-back-holder {
    width: 100%;
  }
}
.side-menu .side-menu-back {
  display: flex;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
html[lang=en-US] .side-menu .side-menu-back {
  letter-spacing: 0.02em;
}
@media all and (min-width: 768.5px) {
  .side-menu .side-menu-back {
    font-size: max(13px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .side-menu .side-menu-back {
    font-size: max(11px * var(--scale), 10px);
  }
}
.side-menu .side-menu-back-line {
  border-top: 1px dashed #CCCCCC;
}
@media all and (min-width: 768.5px) {
  .side-menu .side-menu-back-line {
    width: calc(48px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .side-menu .side-menu-back-line {
    width: calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .side-menu .side-menu-back-line {
    margin-bottom: calc(28px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .side-menu .side-menu-back-line {
    margin-bottom: calc(0px * var(--scale));
  }
}
.side-menu .side-menu-item {
  display: flex;
  align-items: center;
  line-height: 1.5;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
html[lang=en-US] .side-menu .side-menu-item {
  line-height: 1.1;
  letter-spacing: 0.02em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .side-menu .side-menu-item {
    font-size: max(15px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .side-menu .side-menu-item {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .side-menu .side-menu-item {
    max-width: calc(120px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .side-menu .side-menu-item {
    max-width: none;
  }
}
html[lang=en-US] .page-franchise-detail .side-menu .side-menu-item {
  max-width: none;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] body.privacy-policy .side-menu .side-menu-item {
    max-width: calc(160px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] body.privacy-policy .side-menu .side-menu-item {
    max-width: none;
  }
}
@media all and (min-width: 768.5px) {
  .side-menu .side-menu-item {
    font-size: max(13px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .side-menu .side-menu-item {
    font-size: max(10px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .side-menu .side-menu-item {
    gap: calc(6px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .side-menu .side-menu-item {
    gap: calc(4px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .side-menu .side-menu-item + .side-menu-item {
    margin-top: calc(8px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .side-menu .side-menu-item + .side-menu-item {
    margin-top: calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .side-menu .side-menu-item + .side-menu-item {
    margin-top: calc(13px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .side-menu .side-menu-item + .side-menu-item {
    margin-top: calc(0px * var(--scale));
  }
}
.side-menu .side-menu-item.current {
  color: #E50717;
  text-decoration: underline;
  text-decoration-color: #E50717;
  pointer-events: none;
}
.side-menu .side-menu-item .icon {
  display: flex;
}
@media all and (min-width: 768.5px) {
  .side-menu .side-menu-item .icon {
    width: calc(13px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .side-menu .side-menu-item .icon {
    width: calc(10px * var(--scale));
  }
}

/* about 共通
*********************************/
@media (min-width: 768.5px) {
  .page-about-holder {
    display: flex;
  }
}

/* philosophy
*********************************/
.article-philosophy .block {
  display: grid;
}
.article-philosophy .block.n1 {
  grid-template-columns: 1fr 51.6102394715%;
}
@media all and (min-width: 768.5px) {
  .article-philosophy .block.n1 {
    gap: calc(110px * var(--scale)) calc(110px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-philosophy .block.n1 {
    gap: calc(33px * var(--scale)) calc(24px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .article-philosophy .block.n1 {
    grid-template-columns: 1fr calc(198px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .article-philosophy .block.n1 .text-box {
    grid-column: 1/3;
  }
}
.article-philosophy .block.n1 .pic {
  height: fit-content;
}
.article-philosophy .block.n1 .pic:nth-of-type(1) {
  grid-column: 1/2;
  grid-row: 2/3;
  align-self: end;
  width: 63.6554621849%;
}
@media (max-width: 768.4px) {
  .article-philosophy .block.n1 .pic:nth-of-type(1) {
    width: 100%;
    align-self: start;
  }
}
.article-philosophy .block.n1 .pic:nth-of-type(2) {
  grid-column: 2/3;
  grid-row: 1/3;
}
@media (max-width: 768.4px) {
  .article-philosophy .block.n1 .pic:nth-of-type(2) {
    grid-row: 2/3;
  }
}
.article-philosophy .block.n2 {
  grid-template-columns: 39.3063583815% 1fr;
}
@media all and (min-width: 768.5px) {
  .article-philosophy .block.n2 {
    margin-top: calc(205px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-philosophy .block.n2 {
    margin-top: calc(91px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .article-philosophy .block.n2 {
    gap: calc(110px * var(--scale)) calc(110px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-philosophy .block.n2 {
    gap: calc(34px * var(--scale)) calc(29px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .article-philosophy .block.n2 {
    grid-template-columns: calc(205px * var(--scale)) 1fr;
  }
}
.article-philosophy .block.n2 .text-box {
  grid-column: 2/3;
}
@media (max-width: 768.4px) {
  .article-philosophy .block.n2 .text-box {
    grid-column: 1/3;
  }
}
.article-philosophy .block.n2 .pic {
  height: fit-content;
}
.article-philosophy .block.n2 .pic:nth-of-type(1) {
  grid-column: 1/2;
  grid-row: 1/3;
}
@media (max-width: 768.4px) {
  .article-philosophy .block.n2 .pic:nth-of-type(1) {
    grid-row: 2/3;
  }
}
.article-philosophy .block.n2 .pic:nth-of-type(2) {
  grid-column: 2/3;
  grid-row: 2/3;
  align-self: end;
  width: 28.64%;
}
@media all and (min-width: 768.5px) {
  .article-philosophy .block.n2 .pic:nth-of-type(2) {
    margin-left: calc(-30px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-philosophy .block.n2 .pic:nth-of-type(2) {
    margin-left: calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .article-philosophy .block.n2 .pic:nth-of-type(2) {
    margin-bottom: calc(-64px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-philosophy .block.n2 .pic:nth-of-type(2) {
    margin-bottom: calc(-35px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .article-philosophy .block.n2 .pic:nth-of-type(2) {
    width: 100%;
  }
}
.article-philosophy .block.n3 {
  grid-template-columns: 1fr 15.8546655656% 26.5895953757%;
}
@media all and (min-width: 768.5px) {
  .article-philosophy .block.n3 {
    margin-top: calc(263px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-philosophy .block.n3 {
    margin-top: calc(125px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  .article-philosophy .block.n3 {
    gap: 0 1.9818331957%;
  }
}
@media (max-width: 768.4px) {
  .article-philosophy .block.n3 {
    grid-template-columns: 1fr calc(189px * var(--scale));
    gap: calc(33px * var(--scale)) calc(24px * var(--scale));
  }
}
.article-philosophy .block.n3 .text-box {
  width: 77.0416024653%;
}
@media (max-width: 768.4px) {
  .article-philosophy .block.n3 .text-box {
    width: 100%;
    grid-column: 1/3;
  }
}
.article-philosophy .block.n3 .pic {
  height: fit-content;
}
.article-philosophy .block.n3 .pic:nth-of-type(1) {
  grid-column: 2/3;
}
@media all and (min-width: 768.5px) {
  .article-philosophy .block.n3 .pic:nth-of-type(1) {
    margin-top: calc(290px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-philosophy .block.n3 .pic:nth-of-type(1) {
    margin-top: calc(144px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .article-philosophy .block.n3 .pic:nth-of-type(1) {
    grid-column: 1/2;
  }
}
.article-philosophy .block.n3 .pic:nth-of-type(2) {
  grid-column: 3/4;
}
@media (max-width: 768.4px) {
  .article-philosophy .block.n3 .pic:nth-of-type(2) {
    grid-column: 2/3;
  }
}
.article-philosophy .block .text-box {
  display: flex;
  flex-direction: column;
}
.article-philosophy .block .text-box .text-shoulder {
  line-height: 1.5;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
html[lang=en-US] .article-philosophy .block .text-box .text-shoulder {
  letter-spacing: 0em;
}
@media all and (min-width: 768.5px) {
  .article-philosophy .block .text-box .text-shoulder {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .article-philosophy .block .text-box .text-shoulder {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .article-philosophy .block .text-box .text-shoulder {
    margin-top: calc(-12px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-philosophy .block .text-box .text-shoulder {
    margin-top: calc(0px * var(--scale));
  }
}
.article-philosophy .block .text-box .text-shoulder::before {
  content: "";
  display: block;
  width: 1.1428571429em;
  height: 0.1428571429em;
  margin-right: 0.7857142857em;
  background-color: #E50717;
}
.article-philosophy .block .text-box .text-title {
  line-height: 1.3;
  letter-spacing: -0.02em;
}
@media all and (min-width: 768.5px) {
  .article-philosophy .block .text-box .text-title {
    font-size: max(32px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .article-philosophy .block .text-box .text-title {
    font-size: max(22px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .article-philosophy .block .text-box .text-title {
    margin-top: calc(51px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-philosophy .block .text-box .text-title {
    margin-top: calc(28px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .article-philosophy .block .text-box .text-title {
    margin-bottom: calc(19px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-philosophy .block .text-box .text-title {
    margin-bottom: calc(19px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .article-philosophy .block .text-box .text-title {
    font-size: max(32px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .article-philosophy .block .text-box .text-title {
    font-size: max(22px * var(--scale), 10px);
  }
}
.article-philosophy .block .text-box .text-lead {
  line-height: 1.85;
  letter-spacing: 0.04em;
  word-break: break-word;
}
html[lang=en-US] .article-philosophy .block .text-box .text-lead {
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .article-philosophy .block .text-box .text-lead {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .article-philosophy .block .text-box .text-lead {
    font-size: max(15px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .article-philosophy .block .text-box .text-lead {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .article-philosophy .block .text-box .text-lead {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .article-philosophy .block .text-box .text-lead + .text-title {
    margin-top: calc(34px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-philosophy .block .text-box .text-lead + .text-title {
    margin-top: calc(33px * var(--scale));
  }
}

/* company
*********************************/
@media (min-width: 768.5px) {
  .article-company .block {
    display: flex;
  }
}
@media all and (min-width: 768.5px) {
  .article-company .block + .block {
    margin-top: calc(156px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-company .block + .block {
    margin-top: calc(97px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .article-company .block + .block {
    margin-top: calc(156px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .article-company .block + .block {
    margin-top: calc(88px * var(--scale));
  }
}
.article-company h3 {
  line-height: 1.5;
  flex-shrink: 0;
  height: fit-content;
}
@media all and (min-width: 768.5px) {
  .article-company h3 {
    width: calc(303px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-company h3 {
    width: auto;
  }
}
@media all and (min-width: 768.5px) {
  .article-company h3 {
    margin-top: calc(-3px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-company h3 {
    margin-top: calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .article-company h3 {
    margin-bottom: calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-company h3 {
    margin-bottom: calc(27px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .article-company h3 {
    font-size: max(26px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .article-company h3 {
    font-size: max(22px * var(--scale), 10px);
  }
}
html[lang=en-US] .article-company h3 {
  letter-spacing: -0.02em;
  line-height: 1.3;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .article-company h3 {
    margin-top: calc(-7px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .article-company h3 {
    margin-top: calc(0px * var(--scale));
  }
}
.article-company ul {
  margin: 0;
  width: 100%;
}
.article-company ul li {
  margin: 0;
  display: flex;
  border-top: 1px solid #EBEBEB;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
html[lang=en-US] .article-company ul li {
  line-height: 1.3;
  letter-spacing: 0em;
}
@media all and (min-width: 768.5px) {
  .article-company ul li {
    padding: calc(29px * var(--scale)) calc(0px * var(--scale)) calc(27px * var(--scale)) calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-company ul li {
    padding: calc(21px * var(--scale)) calc(0px * var(--scale)) calc(19px * var(--scale)) calc(0px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  .article-company ul li {
    align-items: center;
  }
}
.article-company ul li:last-child {
  border-bottom: 1px solid #EBEBEB;
}
.article-company ul li .list-title {
  flex-shrink: 0;
}
@media all and (min-width: 768.5px) {
  .article-company ul li .list-title {
    width: calc(192px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-company ul li .list-title {
    width: calc(116px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .article-company ul li .list-title {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .article-company ul li .list-title {
    font-size: max(13px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .article-company ul li .list-title {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .article-company ul li .list-title {
    font-size: max(14px * var(--scale), 10px);
  }
}
.article-company ul li .list-text {
  text-decoration: none !important;
  display: flex;
  flex-wrap: wrap;
}
@media all and (min-width: 768.5px) {
  .article-company ul li .list-text {
    gap: calc(6px * var(--scale)) calc(31px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-company ul li .list-text {
    gap: calc(6px * var(--scale)) calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .article-company ul li .list-text {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .article-company ul li .list-text {
    font-size: max(13px * var(--scale), 10px);
  }
}
@media (max-width: 768.4px) {
  .article-company ul li .list-text {
    flex-direction: column;
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .article-company ul li .list-text {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .article-company ul li .list-text {
    font-size: max(15px * var(--scale), 10px);
  }
}
.article-company ul li .list-text * {
  text-decoration: none !important;
}
.article-company ul li .list-text a {
  text-decoration: none !important;
}
.article-company ul li .list-text a.btn {
  width: fit-content;
  color: #E50717;
  text-decoration: underline !important;
  text-decoration-color: #E50717;
  text-underline-offset: 2px;
  display: inline-flex;
  align-items: center;
  gap: 0.2857142857em;
  letter-spacing: 0;
}
@media (min-width: 768.5px) {
  .article-company ul li .list-text a.btn {
    margin-top: -0.1428571429em;
  }
}
@media (max-width: 768.4px) {
  .article-company ul li .list-text a.btn {
    display: flex;
  }
}
.article-company ul li .list-text a.btn .icon {
  display: inline-block;
  width: 0.7142857143em;
  height: 0.7142857143em;
}
.article-company ul li .list-text a.btn[target=_blank] .icon {
  background: url("../images/common/icon/icon-outerlink.svg") no-repeat center center;
  background-size: contain;
}

/* message
*********************************/
.article-message .block {
  display: flex;
}
@media all and (min-width: 768.5px) {
  .article-message .block {
    gap: calc(130px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-message .block {
    gap: calc(45px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .article-message .block {
    flex-direction: column;
  }
}
.article-message .block .pic {
  flex-shrink: 0;
  height: fit-content;
}
@media all and (min-width: 768.5px) {
  .article-message .block .pic {
    width: calc(413px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-message .block .pic {
    width: auto;
  }
}
.article-message .block .text-box {
  display: flex;
  flex-direction: column;
}
.article-message .block .text-box .text-title {
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-top: 0;
}
@media all and (min-width: 768.5px) {
  .article-message .block .text-box .text-title {
    font-size: max(32px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .article-message .block .text-box .text-title {
    font-size: max(22px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .article-message .block .text-box .text-title {
    margin-top: calc(-10px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-message .block .text-box .text-title {
    margin-top: calc(19px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .article-message .block .text-box .text-title {
    margin-bottom: calc(31px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-message .block .text-box .text-title {
    margin-bottom: calc(19px * var(--scale));
  }
}
.article-message .block .text-box .text-lead {
  line-height: 2.2;
  letter-spacing: 0.04em;
}
html[lang=en-US] .article-message .block .text-box .text-lead {
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .article-message .block .text-box .text-lead {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .article-message .block .text-box .text-lead {
    font-size: max(15px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .article-message .block .text-box .text-lead {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .article-message .block .text-box .text-lead {
    font-size: max(13px * var(--scale), 10px);
  }
}
@media (max-width: 768.4px) {
  .article-message .block .text-box .text-lead {
    line-height: 2;
  }
}
@media all and (min-width: 768.5px) {
  .article-message .block .text-box .text-lead + .text-title {
    margin-top: calc(34px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-message .block .text-box .text-lead + .text-title {
    margin-top: calc(33px * var(--scale));
  }
}
.article-message .block .text-box .name-box {
  line-height: 1.5;
  letter-spacing: 0.04em;
  width: fit-content;
}
html[lang=en-US] .article-message .block .text-box .name-box {
  letter-spacing: 0.02em;
}
@media all and (min-width: 768.5px) {
  .article-message .block .text-box .name-box {
    margin: calc(49px * var(--scale)) calc(0px * var(--scale)) calc(0px * var(--scale)) auto;
  }
}
@media all and (max-width: 768.4px) {
  .article-message .block .text-box .name-box {
    margin: calc(45px * var(--scale)) auto calc(0px * var(--scale)) calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .article-message .block .text-box .name-box .date {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .article-message .block .text-box .name-box .date {
    font-size: max(13px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .article-message .block .text-box .name-box .date {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .article-message .block .text-box .name-box .date {
    font-size: max(15px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .article-message .block .text-box .name-box .name {
    font-size: max(18px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .article-message .block .text-box .name-box .name {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .article-message .block .text-box .name-box .name {
    margin-top: calc(6px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-message .block .text-box .name-box .name {
    margin-top: calc(7px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .article-message .block .text-box .name-box .name {
    font-size: max(20px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .article-message .block .text-box .name-box .name {
    font-size: max(18px * var(--scale), 10px);
  }
}

/* privacy-policy, exemption
*********************************/
.article-privacy-policy .block .block-lead,
.article-exemption .block .block-lead {
  line-height: 1.75;
  letter-spacing: 0.04em;
  margin: 0;
  word-break: break-word;
}
html[lang=en-US] .article-privacy-policy .block .block-lead,
html[lang=en-US] .article-exemption .block .block-lead {
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .article-privacy-policy .block .block-lead,
  html[lang=en-US] .article-exemption .block .block-lead {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .article-privacy-policy .block .block-lead,
  html[lang=en-US] .article-exemption .block .block-lead {
    font-size: max(15px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .article-privacy-policy .block .block-lead,
  .article-exemption .block .block-lead {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .article-privacy-policy .block .block-lead,
  .article-exemption .block .block-lead {
    font-size: max(13px * var(--scale), 10px);
  }
}
.article-privacy-policy .block ol,
.article-exemption .block ol {
  counter-reset: cnt;
  margin-bottom: 0;
  padding: 0;
}
@media all and (min-width: 768.5px) {
  .article-privacy-policy .block ol,
  .article-exemption .block ol {
    margin-top: calc(154px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-privacy-policy .block ol,
  .article-exemption .block ol {
    margin-top: calc(57px * var(--scale));
  }
}
.article-privacy-policy .block ol li,
.article-exemption .block ol li {
  list-style: none;
  display: flex;
  border-bottom: 1px solid #EBEBEB;
  margin: 0;
}
@media all and (min-width: 768.5px) {
  .article-privacy-policy .block ol li,
  .article-exemption .block ol li {
    gap: calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-privacy-policy .block ol li,
  .article-exemption .block ol li {
    gap: calc(7px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .article-privacy-policy .block ol li,
  .article-exemption .block ol li {
    padding-bottom: calc(34px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-privacy-policy .block ol li,
  .article-exemption .block ol li {
    padding-bottom: calc(26px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .article-privacy-policy .block ol li,
  .article-exemption .block ol li {
    flex-direction: column;
  }
}
.article-privacy-policy .block ol li:first-child,
.article-exemption .block ol li:first-child {
  border-top: 1px solid #EBEBEB;
}
.article-privacy-policy .block ol li::before,
.article-exemption .block ol li::before {
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: normal;
  counter-increment: cnt;
  line-height: 1;
  flex-shrink: 0;
  content: "(" counter(cnt, decimal-leading-zero) ")";
}
@media all and (min-width: 768.5px) {
  .article-privacy-policy .block ol li::before,
  .article-exemption .block ol li::before {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .article-privacy-policy .block ol li::before,
  .article-exemption .block ol li::before {
    font-size: max(10px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .article-privacy-policy .block ol li::before,
  .article-exemption .block ol li::before {
    padding-top: calc(14px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-privacy-policy .block ol li::before,
  .article-exemption .block ol li::before {
    padding-top: calc(15px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .article-privacy-policy .block ol li::before,
  .article-exemption .block ol li::before {
    padding-right: calc(66px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-privacy-policy .block ol li::before,
  .article-exemption .block ol li::before {
    padding-right: calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .article-privacy-policy .block ol li:has(.list-title)::before,
  .article-exemption .block ol li:has(.list-title)::before {
    padding-right: calc(23px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-privacy-policy .block ol li:has(.list-title)::before,
  .article-exemption .block ol li:has(.list-title)::before {
    padding-right: calc(0px * var(--scale));
  }
}
.article-privacy-policy .block ol li .list-title,
.article-exemption .block ol li .list-title {
  flex-shrink: 0;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
html[lang=en-US] .article-privacy-policy .block ol li .list-title,
html[lang=en-US] .article-exemption .block ol li .list-title {
  line-height: 1.3;
  letter-spacing: 0.02em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .article-privacy-policy .block ol li .list-title,
  html[lang=en-US] .article-exemption .block ol li .list-title {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .article-privacy-policy .block ol li .list-title,
  html[lang=en-US] .article-exemption .block ol li .list-title {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .article-privacy-policy .block ol li .list-title,
  html[lang=en-US] .article-exemption .block ol li .list-title {
    padding-right: calc(70px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .article-privacy-policy .block ol li .list-title,
  html[lang=en-US] .article-exemption .block ol li .list-title {
    padding-right: calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .article-privacy-policy .block ol li .list-title,
  .article-exemption .block ol li .list-title {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .article-privacy-policy .block ol li .list-title,
  .article-exemption .block ol li .list-title {
    font-size: max(13px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .article-privacy-policy .block ol li .list-title,
  .article-exemption .block ol li .list-title {
    width: calc(249px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-privacy-policy .block ol li .list-title,
  .article-exemption .block ol li .list-title {
    width: auto;
  }
}
@media all and (min-width: 768.5px) {
  .article-privacy-policy .block ol li .list-title,
  .article-exemption .block ol li .list-title {
    padding-top: calc(36px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-privacy-policy .block ol li .list-title,
  .article-exemption .block ol li .list-title {
    padding-top: calc(0px * var(--scale));
  }
}
.article-privacy-policy .block ol li .list-text,
.article-exemption .block ol li .list-text {
  line-height: 1.75;
  letter-spacing: 0.04em;
  word-break: break-word;
}
html[lang=en-US] .article-privacy-policy .block ol li .list-text,
html[lang=en-US] .article-exemption .block ol li .list-text {
  letter-spacing: 0.02em;
  line-height: 1.5;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .article-privacy-policy .block ol li .list-text,
  html[lang=en-US] .article-exemption .block ol li .list-text {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .article-privacy-policy .block ol li .list-text,
  html[lang=en-US] .article-exemption .block ol li .list-text {
    font-size: max(15px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .article-privacy-policy .block ol li .list-text,
  .article-exemption .block ol li .list-text {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .article-privacy-policy .block ol li .list-text,
  .article-exemption .block ol li .list-text {
    font-size: max(13px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .article-privacy-policy .block ol li .list-text,
  .article-exemption .block ol li .list-text {
    padding-top: calc(34px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-privacy-policy .block ol li .list-text,
  .article-exemption .block ol li .list-text {
    padding-top: calc(0px * var(--scale));
  }
}

/* gift-vouchers
*********************************/
.article-gift-vouchers .block .block-lead {
  line-height: 1.75;
  letter-spacing: 0;
  word-break: break-word;
}
@media all and (min-width: 768.5px) {
  .article-gift-vouchers .block .block-lead {
    font-size: max(18px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .article-gift-vouchers .block .block-lead {
    font-size: max(22px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .article-gift-vouchers .block .block-lead {
    margin-bottom: calc(67px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-gift-vouchers .block .block-lead {
    margin-bottom: calc(51px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .article-gift-vouchers .block .block-lead {
    letter-spacing: -0.02em;
  }
}
html[lang=en-US] .article-gift-vouchers .block .block-lead {
  line-height: 1.3;
  letter-spacing: -0.02em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .article-gift-vouchers .block .block-lead {
    font-size: max(22px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .article-gift-vouchers .block .block-lead {
    font-size: max(22px * var(--scale), 10px);
  }
}
.article-gift-vouchers .block .annotation {
  color: #888888;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 0;
}
html[lang=en-US] .article-gift-vouchers .block .annotation {
  letter-spacing: 0.02em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .article-gift-vouchers .block .annotation {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .article-gift-vouchers .block .annotation {
    font-size: max(13px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .article-gift-vouchers .block .annotation {
    margin-top: calc(6px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .article-gift-vouchers .block .annotation {
    margin-top: calc(15px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .article-gift-vouchers .block .annotation {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .article-gift-vouchers .block .annotation {
    font-size: max(11px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .article-gift-vouchers .block .annotation {
    margin-top: calc(8px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-gift-vouchers .block .annotation {
    margin-top: calc(8px * var(--scale));
  }
}
.article-gift-vouchers .block ol, .article-gift-vouchers .block ul {
  counter-reset: cnt;
  margin-bottom: 0;
  padding: 0;
}
.article-gift-vouchers .block ol ol, .article-gift-vouchers .block ol ul, .article-gift-vouchers .block ul ol, .article-gift-vouchers .block ul ul {
  counter-reset: cnt_2;
}
@media all and (min-width: 768.5px) {
  .article-gift-vouchers .block ol ol, .article-gift-vouchers .block ol ul, .article-gift-vouchers .block ul ol, .article-gift-vouchers .block ul ul {
    margin-top: calc(28px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-gift-vouchers .block ol ol, .article-gift-vouchers .block ol ul, .article-gift-vouchers .block ul ol, .article-gift-vouchers .block ul ul {
    margin-top: calc(20px * var(--scale));
  }
}
.article-gift-vouchers .block ol ol li, .article-gift-vouchers .block ol ul li, .article-gift-vouchers .block ul ol li, .article-gift-vouchers .block ul ul li {
  line-height: 2;
  margin-top: 0;
}
@media all and (min-width: 768.5px) {
  .article-gift-vouchers .block ol ol li, .article-gift-vouchers .block ol ul li, .article-gift-vouchers .block ul ol li, .article-gift-vouchers .block ul ul li {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .article-gift-vouchers .block ol ol li, .article-gift-vouchers .block ol ul li, .article-gift-vouchers .block ul ol li, .article-gift-vouchers .block ul ul li {
    font-size: max(13px * var(--scale), 10px);
  }
}
html[lang=en-US] .article-gift-vouchers .block ol ol li, html[lang=en-US] .article-gift-vouchers .block ol ul li, html[lang=en-US] .article-gift-vouchers .block ul ol li, html[lang=en-US] .article-gift-vouchers .block ul ul li {
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .article-gift-vouchers .block ol ol li, html[lang=en-US] .article-gift-vouchers .block ol ul li, html[lang=en-US] .article-gift-vouchers .block ul ol li, html[lang=en-US] .article-gift-vouchers .block ul ul li {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .article-gift-vouchers .block ol ol li, html[lang=en-US] .article-gift-vouchers .block ol ul li, html[lang=en-US] .article-gift-vouchers .block ul ol li, html[lang=en-US] .article-gift-vouchers .block ul ul li {
    font-size: max(15px * var(--scale), 10px);
  }
}
.article-gift-vouchers .block ol ol li::before, .article-gift-vouchers .block ol ul li::before, .article-gift-vouchers .block ul ol li::before, .article-gift-vouchers .block ul ul li::before {
  counter-increment: cnt_2;
  content: counter(cnt_2) ".";
}
@media all and (min-width: 768.5px) {
  .article-gift-vouchers .block ol ol li::before, .article-gift-vouchers .block ol ul li::before, .article-gift-vouchers .block ul ol li::before, .article-gift-vouchers .block ul ul li::before {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .article-gift-vouchers .block ol ol li::before, .article-gift-vouchers .block ol ul li::before, .article-gift-vouchers .block ul ol li::before, .article-gift-vouchers .block ul ul li::before {
    font-size: max(13px * var(--scale), 10px);
  }
}
.article-gift-vouchers .block ol ol ol, .article-gift-vouchers .block ol ol ul, .article-gift-vouchers .block ol ul ol, .article-gift-vouchers .block ol ul ul, .article-gift-vouchers .block ul ol ol, .article-gift-vouchers .block ul ol ul, .article-gift-vouchers .block ul ul ol, .article-gift-vouchers .block ul ul ul {
  color: #888888;
}
.article-gift-vouchers .block ol ol ol li, .article-gift-vouchers .block ol ol ul li, .article-gift-vouchers .block ol ul ol li, .article-gift-vouchers .block ol ul ul li, .article-gift-vouchers .block ul ol ol li, .article-gift-vouchers .block ul ol ul li, .article-gift-vouchers .block ul ul ol li, .article-gift-vouchers .block ul ul ul li {
  line-height: 1.9;
}
@media (max-width: 768.4px) {
  .article-gift-vouchers .block ol ol ol li, .article-gift-vouchers .block ol ol ul li, .article-gift-vouchers .block ol ul ol li, .article-gift-vouchers .block ol ul ul li, .article-gift-vouchers .block ul ol ol li, .article-gift-vouchers .block ul ol ul li, .article-gift-vouchers .block ul ul ol li, .article-gift-vouchers .block ul ul ul li {
    line-height: 1.75;
  }
}
@media all and (min-width: 768.5px) {
  .article-gift-vouchers .block ol ol ol + li, .article-gift-vouchers .block ol ol ul + li, .article-gift-vouchers .block ol ul ol + li, .article-gift-vouchers .block ol ul ul + li, .article-gift-vouchers .block ul ol ol + li, .article-gift-vouchers .block ul ol ul + li, .article-gift-vouchers .block ul ul ol + li, .article-gift-vouchers .block ul ul ul + li {
    margin-top: calc(21px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-gift-vouchers .block ol ol ol + li, .article-gift-vouchers .block ol ol ul + li, .article-gift-vouchers .block ol ul ol + li, .article-gift-vouchers .block ol ul ul + li, .article-gift-vouchers .block ul ol ol + li, .article-gift-vouchers .block ul ol ul + li, .article-gift-vouchers .block ul ul ol + li, .article-gift-vouchers .block ul ul ul + li {
    margin-top: calc(30px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .article-gift-vouchers .block ol ol ol, .article-gift-vouchers .block ol ul ol, .article-gift-vouchers .block ul ol ol, .article-gift-vouchers .block ul ul ol {
    margin-top: calc(10px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-gift-vouchers .block ol ol ol, .article-gift-vouchers .block ol ul ol, .article-gift-vouchers .block ul ol ol, .article-gift-vouchers .block ul ul ol {
    margin-top: calc(12px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .article-gift-vouchers .block ol ol ul, .article-gift-vouchers .block ol ul ul, .article-gift-vouchers .block ul ol ul, .article-gift-vouchers .block ul ul ul {
    margin-top: calc(12px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-gift-vouchers .block ol ol ul, .article-gift-vouchers .block ol ul ul, .article-gift-vouchers .block ul ol ul, .article-gift-vouchers .block ul ul ul {
    margin-top: calc(13px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .article-gift-vouchers .block ol ol, .article-gift-vouchers .block ul ol {
    margin-left: calc(42px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-gift-vouchers .block ol ol, .article-gift-vouchers .block ul ol {
    margin-left: calc(5px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .article-gift-vouchers .block ol ol ul, .article-gift-vouchers .block ul ol ul {
    margin-left: calc(48px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-gift-vouchers .block ol ol ul, .article-gift-vouchers .block ul ol ul {
    margin-left: calc(19px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .article-gift-vouchers .block ol ul, .article-gift-vouchers .block ul ul {
    margin-left: calc(42px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-gift-vouchers .block ol ul, .article-gift-vouchers .block ul ul {
    margin-left: calc(1px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .article-gift-vouchers .block ol ul li, .article-gift-vouchers .block ul ul li {
    line-height: 1.5;
  }
}
@media all and (min-width: 768.5px) {
  .article-gift-vouchers .block ol ul ul, .article-gift-vouchers .block ul ul ul {
    margin-left: calc(48px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-gift-vouchers .block ol ul ul, .article-gift-vouchers .block ul ul ul {
    margin-left: calc(23px * var(--scale));
  }
}
.article-gift-vouchers .block ol li, .article-gift-vouchers .block ul li {
  list-style: none;
  margin: 0;
  display: flex;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
html[lang=en-US] .article-gift-vouchers .block ol li, html[lang=en-US] .article-gift-vouchers .block ul li {
  line-height: 1.3;
  letter-spacing: 0em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .article-gift-vouchers .block ol li, html[lang=en-US] .article-gift-vouchers .block ul li {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .article-gift-vouchers .block ol li, html[lang=en-US] .article-gift-vouchers .block ul li {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .article-gift-vouchers .block ol li, .article-gift-vouchers .block ul li {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .article-gift-vouchers .block ol li, .article-gift-vouchers .block ul li {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .article-gift-vouchers .block ol li, .article-gift-vouchers .block ul li {
    margin-top: calc(67px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-gift-vouchers .block ol li, .article-gift-vouchers .block ul li {
    margin-top: calc(68px * var(--scale));
  }
}
.article-gift-vouchers .block ol li:first-child, .article-gift-vouchers .block ul li:first-child {
  margin-top: 0;
}
.article-gift-vouchers .block ol li::before, .article-gift-vouchers .block ul li::before {
  counter-increment: cnt;
  flex-shrink: 0;
  content: counter(cnt) ".";
  margin-right: 0.25em;
}
@media all and (min-width: 768.5px) {
  .article-gift-vouchers .block ol li::before, .article-gift-vouchers .block ul li::before {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .article-gift-vouchers .block ol li::before, .article-gift-vouchers .block ul li::before {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .article-gift-vouchers .block ol li::before, html[lang=en-US] .article-gift-vouchers .block ul li::before {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .article-gift-vouchers .block ol li::before, html[lang=en-US] .article-gift-vouchers .block ul li::before {
    font-size: max(15px * var(--scale), 10px);
  }
}
.article-gift-vouchers .block ol li a, .article-gift-vouchers .block ul li a {
  text-decoration: none !important;
}
@media all and (min-width: 768.5px) {
  .article-gift-vouchers .block ol .annotation + ul, .article-gift-vouchers .block ul .annotation + ul {
    margin-top: calc(32px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-gift-vouchers .block ol .annotation + ul, .article-gift-vouchers .block ul .annotation + ul {
    margin-top: calc(16px * var(--scale));
  }
}
.article-gift-vouchers .block ul li {
  display: block;
}
.article-gift-vouchers .block ul li::before {
  display: none;
}
@media all and (min-width: 768.5px) {
  .article-gift-vouchers .block-giftcard {
    margin-top: calc(69px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-gift-vouchers .block-giftcard {
    margin-top: calc(71px * var(--scale));
  }
}
.article-gift-vouchers .block-giftcard .block-giftcard-title {
  line-height: 1.5;
  letter-spacing: 0.04em;
}
html[lang=en-US] .article-gift-vouchers .block-giftcard .block-giftcard-title {
  letter-spacing: 0.02em;
}
@media all and (min-width: 768.5px) {
  .article-gift-vouchers .block-giftcard .block-giftcard-title {
    margin-bottom: calc(28px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-gift-vouchers .block-giftcard .block-giftcard-title {
    margin-bottom: calc(27px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .article-gift-vouchers .block-giftcard .block-giftcard-title {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .article-gift-vouchers .block-giftcard .block-giftcard-title {
    font-size: max(16px * var(--scale), 10px);
  }
}
.article-gift-vouchers .block-giftcard .card-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media all and (min-width: 768.5px) {
  .article-gift-vouchers .block-giftcard .card-list {
    gap: calc(16px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-gift-vouchers .block-giftcard .card-list {
    gap: calc(8px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .article-gift-vouchers .block-giftcard .card-list {
    grid-template-columns: 1fr;
  }
}

/* history
*********************************/
@media all and (min-width: 768.5px) {
  .article-history .swiper-history {
    margin-right: calc(-190px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-history .swiper-history {
    margin-right: calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .article-history .swiper-history .swiper-wrapper {
    padding-top: calc(43px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-history .swiper-history .swiper-wrapper {
    padding-top: calc(0px * var(--scale));
  }
}
.article-history .swiper-history .history-item {
  position: relative;
  width: auto !important;
}
@media all and (min-width: 768.5px) {
  .article-history .swiper-history .history-item {
    margin-left: calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-history .swiper-history .history-item {
    margin-left: calc(10px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .article-history .swiper-history .history-item {
    padding-left: calc(14px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-history .swiper-history .history-item {
    padding-left: calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .article-history .swiper-history .history-item {
    padding-right: calc(48px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-history .swiper-history .history-item {
    padding-right: calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .article-history .swiper-history .history-item {
    padding-bottom: calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-history .swiper-history .history-item {
    padding-bottom: calc(48px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  .article-history .swiper-history .history-item {
    border-top: 1px dashed #222222;
  }
}
@media (max-width: 768.4px) {
  .article-history .swiper-history .history-item {
    display: flex;
    border-left: 1px dashed #222222;
  }
}
.article-history .swiper-history .history-item:first-child {
  padding-left: 0;
}
.article-history .swiper-history .history-item:last-child {
  padding-right: 0;
}
@media all and (min-width: 768.5px) {
  .article-history .swiper-history .history-item:last-child {
    padding-bottom: calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-history .swiper-history .history-item:last-child {
    padding-bottom: calc(3.5px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  .article-history .swiper-history .history-item:last-child {
    width: calc(100% - 14px * var(--scale)) !important;
  }
}
.article-history .swiper-history .history-item .age {
  width: fit-content;
  height: fit-content;
  flex-shrink: 0;
  font-weight: 400;
  color: #E50717;
  line-height: 1.5;
  letter-spacing: 0.04em;
  background-color: #fff;
}
html[lang=en-US] .article-history .swiper-history .history-item .age {
  letter-spacing: 0.02em;
}
@media all and (min-width: 768.5px) {
  .article-history .swiper-history .history-item .age {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .article-history .swiper-history .history-item .age {
    font-size: max(13px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .article-history .swiper-history .history-item .age {
    margin-top: calc(-18px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-history .swiper-history .history-item .age {
    margin-top: calc(-4px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .article-history .swiper-history .history-item .age {
    margin-left: calc(-15px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-history .swiper-history .history-item .age {
    margin-left: calc(-10px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .article-history .swiper-history .history-item .age {
    padding: calc(5px * var(--scale)) calc(15px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-history .swiper-history .history-item .age {
    padding: calc(4px * var(--scale)) calc(0px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .article-history .swiper-history .history-item .age {
    width: calc(88px * var(--scale));
  }
}
.article-history .swiper-history .history-item .title {
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #E50717;
}
html[lang=en-US] .article-history .swiper-history .history-item .title {
  letter-spacing: 0.02em;
}
@media all and (min-width: 768.5px) {
  .article-history .swiper-history .history-item .title {
    font-size: max(18px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .article-history .swiper-history .history-item .title {
    font-size: max(15px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .article-history .swiper-history .history-item .title {
    margin-top: calc(31px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-history .swiper-history .history-item .title {
    margin-top: calc(0px * var(--scale));
  }
}
.article-history .swiper-history .history-item .history-list {
  display: flex;
  flex-direction: column;
}
@media all and (min-width: 768.5px) {
  .article-history .swiper-history .history-item .history-list {
    gap: calc(15px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-history .swiper-history .history-item .history-list {
    gap: calc(14px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .article-history .swiper-history .history-item .history-list {
    margin-top: calc(38px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-history .swiper-history .history-item .history-list {
    margin-top: calc(16px * var(--scale));
  }
}
.article-history .swiper-history .history-item .history-list-item {
  flex-shrink: 0;
  display: flex;
}
@media all and (min-width: 768.5px) {
  .article-history .swiper-history .history-item .history-list-item {
    gap: calc(23px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-history .swiper-history .history-item .history-list-item {
    gap: calc(15px * var(--scale));
  }
}
.article-history .swiper-history .history-item .history-list-item .date {
  flex-shrink: 0;
  color: #979797;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
html[lang=en-US] .article-history .swiper-history .history-item .history-list-item .date {
  letter-spacing: 0.02em;
}
@media all and (min-width: 768.5px) {
  .article-history .swiper-history .history-item .history-list-item .date {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .article-history .swiper-history .history-item .history-list-item .date {
    font-size: max(14px * var(--scale), 10px);
  }
}
.article-history .swiper-history .history-item .history-list-item .text {
  line-height: 1.5;
  letter-spacing: 0.04em;
}
html[lang=en-US] .article-history .swiper-history .history-item .history-list-item .text {
  letter-spacing: 0.02em;
}
@media all and (min-width: 768.5px) {
  .article-history .swiper-history .history-item .history-list-item .text {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .article-history .swiper-history .history-item .history-list-item .text {
    font-size: max(12px * var(--scale), 10px);
  }
}
@media (min-width: 768.5px) {
  .article-history .swiper-history .history-item .history-list-item .text {
    white-space: nowrap;
  }
}
html[lang=ja] .article-history .swiper-history .history-item .history-list-item .text {
  word-break: break-all;
}
.article-history .swiper-history .swiper-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media all and (min-width: 768.5px) {
  .article-history .swiper-history .swiper-top {
    gap: calc(7px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-history .swiper-history .swiper-top {
    gap: calc(7px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .article-history .swiper-history .swiper-top {
    margin-right: calc(30px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-history .swiper-history .swiper-top {
    margin-right: calc(0px * var(--scale));
  }
}
.article-history .swiper-history .swiper-top .swiper-button-prev,
.article-history .swiper-history .swiper-top .swiper-button-next {
  position: static;
  border: 1px solid #E8E8E8;
  border-radius: 50%;
  background-color: #F6F6F6;
  margin: 0;
  flex-shrink: 0;
  display: flex;
  z-index: 1;
  transition: background-color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media all and (min-width: 768.5px) {
  .article-history .swiper-history .swiper-top .swiper-button-prev,
  .article-history .swiper-history .swiper-top .swiper-button-next {
    width: calc(40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-history .swiper-history .swiper-top .swiper-button-prev,
  .article-history .swiper-history .swiper-top .swiper-button-next {
    width: calc(40px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .article-history .swiper-history .swiper-top .swiper-button-prev,
  .article-history .swiper-history .swiper-top .swiper-button-next {
    height: calc(40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-history .swiper-history .swiper-top .swiper-button-prev,
  .article-history .swiper-history .swiper-top .swiper-button-next {
    height: calc(40px * var(--scale));
  }
}
@media (hover: hover) and (pointer: fine) {
  .article-history .swiper-history .swiper-top .swiper-button-prev:focus,
  .article-history .swiper-history .swiper-top .swiper-button-next:focus {
    background-color: #EBEBEB;
  }
  .article-history .swiper-history .swiper-top .swiper-button-prev:hover,
  .article-history .swiper-history .swiper-top .swiper-button-next:hover {
    background-color: #EBEBEB;
  }
}
.article-history .swiper-history .swiper-top .swiper-button-prev::after,
.article-history .swiper-history .swiper-top .swiper-button-next::after {
  content: none;
}
.article-history .swiper-history .swiper-top .swiper-button-prev .icon,
.article-history .swiper-history .swiper-top .swiper-button-next .icon {
  display: flex;
}
@media all and (min-width: 768.5px) {
  .article-history .swiper-history .swiper-top .swiper-button-prev .icon,
  .article-history .swiper-history .swiper-top .swiper-button-next .icon {
    width: calc(6px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .article-history .swiper-history .swiper-top .swiper-button-prev .icon,
  .article-history .swiper-history .swiper-top .swiper-button-next .icon {
    width: calc(6px * var(--scale));
  }
}
.article-history .swiper-history .swiper-top .swiper-button-prev .icon {
  transform: rotate(180deg);
}

/* 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(8px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-contact .contact-list-item + .contact-list-item {
    margin-top: calc(8px * var(--scale));
  }
}
.page-contact .contact-list-item .item-title-holder {
  width: 100%;
}
@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));
  }
}

/* recruitment
*********************************/
@media all and (min-width: 768.5px) {
  .page-recruitment .recruitment-kv {
    margin-right: calc(-40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-recruitment .recruitment-kv {
    margin-right: calc(-20px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-recruitment .recruitment-kv {
    margin-left: calc(-40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-recruitment .recruitment-kv {
    margin-left: calc(-20px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-recruitment .recruitment-kv {
    padding-bottom: calc(200px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-recruitment .recruitment-kv {
    padding-bottom: calc(96px * var(--scale));
  }
}
.page-recruitment .recruitment-kv .pic-container {
  --scale: var(--scaleKv);
  overflow: hidden;
}
.page-recruitment .recruitment-kv .pic-container.n1 {
  display: grid;
  grid-template-columns: 1fr calc(322px * var(--scale)) 1fr;
}
@media all and (min-width: 768.5px) {
  .page-recruitment .recruitment-kv .pic-container.n1 {
    margin-top: calc(-70px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-recruitment .recruitment-kv .pic-container.n1 {
    margin-top: calc(16px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .page-recruitment .recruitment-kv .pic-container.n1 {
    align-items: flex-end;
    grid-template-columns: 1fr calc(154px * var(--scale)) 1fr;
  }
}
.page-recruitment .recruitment-kv .pic-container.n2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 768.4px) {
  .page-recruitment .recruitment-kv .pic-container.n2 {
    grid-template-columns: 1fr calc(154px * var(--scale)) 1fr;
  }
}
.page-recruitment .recruitment-kv .pic-container .pic {
  height: fit-content;
}
.page-recruitment .recruitment-kv .pic-container .pic.n1 {
  align-self: flex-start;
}
@media all and (min-width: 768.5px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n1 {
    width: calc(465px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n1 {
    width: calc(125px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n1 {
    margin-top: calc(157px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n1 {
    margin-top: calc(88px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n1 {
    margin-left: calc(-60px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n1 {
    margin-left: calc(-28px * var(--scale));
  }
}
.page-recruitment .recruitment-kv .pic-container .pic.n2 {
  grid-column: 2/3;
  grid-row: 1/2;
  align-self: flex-start;
}
@media all and (min-width: 768.5px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n2 {
    width: calc(240px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n2 {
    width: calc(125px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n2 {
    margin-left: calc(-42px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n2 {
    margin-left: calc(14px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n2 {
    margin-top: calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n2 {
    margin-top: calc(16px * var(--scale));
  }
}
.page-recruitment .recruitment-kv .pic-container .pic.n3 {
  grid-column: 2/3;
  grid-row: 1/2;
  justify-self: flex-end;
}
@media all and (min-width: 768.5px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n3 {
    width: calc(129px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n3 {
    width: calc(72px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n3 {
    margin-top: calc(95px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n3 {
    margin-top: calc(123px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n3 {
    margin-right: calc(-69px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n3 {
    margin-right: calc(20px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n3 {
    align-self: flex-end;
    grid-column: 3/4;
    grid-row: 1/2;
  }
}
.page-recruitment .recruitment-kv .pic-container .pic.n4 {
  justify-self: flex-end;
}
@media all and (min-width: 768.5px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n4 {
    width: calc(342px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n4 {
    width: calc(134px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n4 {
    margin-right: calc(-23px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n4 {
    margin-right: calc(-20px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n4 {
    align-self: flex-start;
    grid-column: 3/4;
    grid-row: 1/2;
  }
}
@media all and (min-width: 768.5px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n5 {
    width: calc(279px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n5 {
    width: calc(114px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n5 {
    margin-left: calc(40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n5 {
    margin-left: calc(-19px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n5 {
    margin-top: auto;
  }
}
@media all and (max-width: 768.4px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n5 {
    margin-top: calc(16px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n5 {
    align-self: flex-end;
  }
}
.page-recruitment .recruitment-kv .pic-container .pic.n6 {
  justify-self: center;
  align-self: flex-end;
}
@media all and (min-width: 768.5px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n6 {
    width: calc(322px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n6 {
    width: calc(154px * var(--scale));
  }
}
.page-recruitment .recruitment-kv .pic-container .pic.n7 {
  justify-self: flex-end;
  align-self: flex-end;
}
@media all and (min-width: 768.5px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n7 {
    width: calc(216px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n7 {
    width: calc(110px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n7 {
    margin-right: calc(40px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-recruitment .recruitment-kv .pic-container .pic.n7 {
    margin-right: calc(-16px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-recruitment .recruitment-kv .kv-text-block {
    margin: calc(-153px * var(--scale)) calc(40px * var(--scale)) calc(-64px * var(--scale)) auto;
  }
}
@media all and (max-width: 768.4px) {
  .page-recruitment .recruitment-kv .kv-text-block {
    margin: calc(28px * var(--scale)) calc(20px * var(--scale)) calc(41px * var(--scale)) calc(20px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  .page-recruitment .recruitment-kv .kv-text-block {
    width: calc(408px * var(--scaleKv));
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .page-recruitment .recruitment-kv .kv-text-block {
    margin: calc(-174px * var(--scale)) calc(40px * var(--scale)) calc(-64px * var(--scale)) auto;
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .page-recruitment .recruitment-kv .kv-text-block {
    margin: calc(28px * var(--scale)) calc(20px * var(--scale)) calc(41px * var(--scale)) calc(20px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  html[lang=en-US] .page-recruitment .recruitment-kv .kv-text-block {
    width: 31.3888888889%;
  }
}
.page-recruitment .recruitment-kv .kv-text-block .kv-title {
  line-height: 1.5;
}
@media all and (min-width: 768.5px) {
  .page-recruitment .recruitment-kv .kv-text-block .kv-title {
    font-size: max(26px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-recruitment .recruitment-kv .kv-text-block .kv-title {
    font-size: max(22px * var(--scale), 10px);
  }
}
html[lang=en-US] .page-recruitment .recruitment-kv .kv-text-block .kv-title {
  line-height: 1.3;
  letter-spacing: -0.02em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .page-recruitment .recruitment-kv .kv-text-block .kv-title {
    font-size: max(32px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .page-recruitment .recruitment-kv .kv-text-block .kv-title {
    font-size: max(22px * var(--scale), 10px);
  }
}
.page-recruitment .recruitment-kv .kv-text-block .kv-text {
  line-height: 1.85;
  letter-spacing: 0.01em;
  word-break: break-word;
}
@media (max-width: 768.4px) {
  .page-recruitment .recruitment-kv .kv-text-block .kv-text {
    letter-spacing: 0.04em;
  }
}
html[lang=en-US] .page-recruitment .recruitment-kv .kv-text-block .kv-text {
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .page-recruitment .recruitment-kv .kv-text-block .kv-text {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .page-recruitment .recruitment-kv .kv-text-block .kv-text {
    font-size: max(15px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .page-recruitment .recruitment-kv .kv-text-block .kv-text {
    margin-top: calc(13px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-recruitment .recruitment-kv .kv-text-block .kv-text {
    margin-top: calc(8px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-recruitment .recruitment-kv .kv-text-block .kv-text {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-recruitment .recruitment-kv .kv-text-block .kv-text {
    font-size: max(13px * var(--scale), 10px);
  }
}
@media (max-width: 768.4px) {
  .page-recruitment .recruitment-kv .kv-text-block .kv-text {
    line-height: 1.75;
  }
}
.page-recruitment .recruitment-link-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media all and (min-width: 768.5px) {
  .page-recruitment .recruitment-link-list {
    gap: calc(80px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-recruitment .recruitment-link-list {
    gap: calc(56px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .page-recruitment .recruitment-link-list {
    grid-template-columns: 1fr;
  }
}
.page-recruitment .recruitment-link-list-item {
  border-top: 1px solid #222222;
}
@media all and (min-width: 768.5px) {
  .page-recruitment .recruitment-link-list-item {
    padding-top: calc(17px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-recruitment .recruitment-link-list-item {
    padding-top: calc(10px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-recruitment .recruitment-link-list-item .item-title {
    font-size: max(26px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-recruitment .recruitment-link-list-item .item-title {
    font-size: max(18px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .page-recruitment .recruitment-link-list-item .item-title {
    margin-bottom: calc(27px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-recruitment .recruitment-link-list-item .item-title {
    margin-bottom: calc(13px * var(--scale));
  }
}
html[lang=en-US] .page-recruitment .recruitment-link-list-item .item-title {
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.page-recruitment .recruitment-link-list-item .item-text {
  line-height: 1.75;
  letter-spacing: 0.04em;
}
html[lang=en-US] .page-recruitment .recruitment-link-list-item .item-text {
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .page-recruitment .recruitment-link-list-item .item-text {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .page-recruitment .recruitment-link-list-item .item-text {
    font-size: max(15px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .page-recruitment .recruitment-link-list-item .item-text {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-recruitment .recruitment-link-list-item .item-text {
    font-size: max(13px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .page-recruitment .recruitment-link-list-item .item-text {
    margin-bottom: calc(26px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-recruitment .recruitment-link-list-item .item-text {
    margin-bottom: calc(17px * var(--scale));
  }
}

/* recruitment
*********************************/
@media all and (min-width: 768.5px) {
  .page-property .property-detail-list {
    padding-top: calc(106px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-property .property-detail-list {
    padding-top: calc(84px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-property .property-detail-list-item + .property-detail-list-item {
    margin-top: calc(72px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-property .property-detail-list-item + .property-detail-list-item {
    margin-top: calc(74px * var(--scale));
  }
}
.page-property .property-detail-list-item .item-title {
  line-height: 1.5;
}
@media all and (min-width: 768.5px) {
  .page-property .property-detail-list-item .item-title {
    font-size: max(26px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-property .property-detail-list-item .item-title {
    font-size: max(18px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .page-property .property-detail-list-item .item-title {
    margin-bottom: calc(32px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-property .property-detail-list-item .item-title {
    margin-bottom: calc(27px * var(--scale));
  }
}
html[lang=en-US] .page-property .property-detail-list-item .item-title {
  line-height: 1.3;
  letter-spacing: -0.02em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .page-property .property-detail-list-item .item-title {
    width: calc(502px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .page-property .property-detail-list-item .item-title {
    width: auto;
  }
}
.page-property .property-detail-list-item .item-inner {
  display: flex;
  gap: 19.0441176471%;
}
@media (max-width: 768.4px) {
  .page-property .property-detail-list-item .item-inner {
    gap: calc(32px * var(--scale));
    flex-direction: column;
  }
}
.page-property .property-detail-list-item .property-list {
  width: 100%;
}
.page-property .property-detail-list-item .property-list-item {
  margin: 0;
  width: 100%;
  display: flex;
  border-top: 1px solid #EBEBEB;
}
@media all and (min-width: 768.5px) {
  .page-property .property-detail-list-item .property-list-item {
    padding: calc(15px * var(--scale)) calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-property .property-detail-list-item .property-list-item {
    padding: calc(15px * var(--scale)) calc(0px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-property .property-detail-list-item .property-list-item {
    gap: calc(20px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-property .property-detail-list-item .property-list-item {
    gap: calc(10px * var(--scale));
  }
}
.page-property .property-detail-list-item .property-list-item:last-child {
  border-bottom: 1px solid #EBEBEB;
}
.page-property .property-detail-list-item .property-list-item .title {
  line-height: 1.5;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
html[lang=en-US] .page-property .property-detail-list-item .property-list-item .title {
  line-height: 1.3;
  letter-spacing: 0em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .page-property .property-detail-list-item .property-list-item .title {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .page-property .property-detail-list-item .property-list-item .title {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .page-property .property-detail-list-item .property-list-item .title {
    width: calc(170px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-property .property-detail-list-item .property-list-item .title {
    width: calc(79px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-property .property-detail-list-item .property-list-item .title {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-property .property-detail-list-item .property-list-item .title {
    font-size: max(13px * var(--scale), 10px);
  }
}
.page-property .property-detail-list-item .property-list-item .text {
  line-height: 1.5;
  letter-spacing: 0.04em;
  white-space: pre-line;
}
html[lang=en-US] .page-property .property-detail-list-item .property-list-item .text {
  line-height: 1.3;
  letter-spacing: 0.02em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .page-property .property-detail-list-item .property-list-item .text {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .page-property .property-detail-list-item .property-list-item .text {
    font-size: max(15px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .page-property .property-detail-list-item .property-list-item .text {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-property .property-detail-list-item .property-list-item .text {
    font-size: max(13px * var(--scale), 10px);
  }
}
.page-property .property-detail-list-item .item-pic {
  flex-shrink: 0;
  display: flex;
  height: fit-content;
}
@media (min-width: 768.5px) {
  .page-property .property-detail-list-item .item-pic {
    width: 23.2352941176%;
  }
}
.page-property .property-contact {
  display: flex;
}
@media all and (min-width: 768.5px) {
  .page-property .property-contact {
    gap: calc(0px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-property .property-contact {
    gap: calc(14px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  .page-property .property-contact {
    margin-top: calc(149px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-property .property-contact {
    margin-top: calc(74px * var(--scale));
  }
}
@media (max-width: 768.4px) {
  .page-property .property-contact {
    flex-direction: column;
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .page-property .property-contact {
    gap: calc(164px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .page-property .property-contact {
    gap: calc(0px * var(--scale));
  }
}
.page-property .property-contact .property-contact-title {
  line-height: 1.5;
}
@media all and (min-width: 768.5px) {
  .page-property .property-contact .property-contact-title {
    width: calc(347px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-property .property-contact .property-contact-title {
    width: auto;
  }
}
@media all and (min-width: 768.5px) {
  .page-property .property-contact .property-contact-title {
    font-size: max(26px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-property .property-contact .property-contact-title {
    font-size: max(18px * var(--scale), 10px);
  }
}
html[lang=en-US] .page-property .property-contact .property-contact-title {
  line-height: 1.3;
  letter-spacing: -0.02em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .page-property .property-contact .property-contact-title {
    width: calc(182px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .page-property .property-contact .property-contact-title {
    width: auto;
  }
}
.page-property .property-contact .property-contact-lead {
  line-height: 1.75;
  word-break: break-word;
  letter-spacing: 0.04em;
}
html[lang=en-US] .page-property .property-contact .property-contact-lead {
  line-height: 1.3;
  letter-spacing: 0.02em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .page-property .property-contact .property-contact-lead {
    margin-top: calc(4px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .page-property .property-contact .property-contact-lead {
    margin-top: calc(15px * var(--scale));
  }
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .page-property .property-contact .property-contact-lead {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .page-property .property-contact .property-contact-lead {
    font-size: max(15px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .page-property .property-contact .property-contact-lead {
    font-size: max(14px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  .page-property .property-contact .property-contact-lead {
    font-size: max(13px * var(--scale), 10px);
  }
}
@media all and (min-width: 768.5px) {
  .page-property .property-contact .property-contact-lead {
    margin-bottom: calc(26px * var(--scale));
  }
}
@media all and (max-width: 768.4px) {
  .page-property .property-contact .property-contact-lead {
    margin-bottom: calc(20px * var(--scale));
  }
}
@media (min-width: 768.5px) {
  .page-property .property-contact .property-contact-lead {
    white-space: pre-line;
  }
}
@media (max-width: 768.4px) {
  .page-property .property-contact .property-contact-lead {
    line-height: 1.5;
  }
}

/* 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));
  }
}
html[lang=en-US] .page-error .error-message {
  letter-spacing: 0.02em;
}
@media all and (min-width: 768.5px) {
  html[lang=en-US] .page-error .error-message {
    font-size: max(16px * var(--scale), 10px);
  }
}
@media all and (max-width: 768.4px) {
  html[lang=en-US] .page-error .error-message {
    font-size: max(15px * var(--scale), 10px);
  }
}