@charset "UTF-8";
/*
Brakepoint
*/
/*
SASS
*/
/*
Cookie banner
*/
button {
  background: none;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
}

/*
scss function

# x-strip-units

*/
@media (max-width: 640px) {
  .section--cookie {
    background-color: rgba(34, 34, 34, 0.8);
    position: fixed;
    bottom: 6.6666666667vw;
    z-index: var(--z-index-section--cookie);
    color: #fff;
    font-size: 2.9333333333vw;
    line-height: 160%;
    padding: 3.7333333333vw;
    margin: 0 6.6666666667vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.6666666667vw;
    -webkit-transform: translateY(120%);
            transform: translateY(120%);
    /* 画面外（下）に隠す */
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    letter-spacing: -0.0266666667vw;
  }
  .section--cookie .__cookie__button {
    color: #fff;
    font-size: 2.9333333333vw;
  }
  .section--cookie .__cookie__link {
    text-decoration: underline;
    color: #fff;
  }
  .section--cookie .__cookie__button-box {
    text-align: right;
  }
  .section--cookie .__cookie__button {
    cursor: pointer;
  }
  .section--cookie.is-active {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media (min-width: 641px) {
  .section--cookie {
    background-color: rgba(34, 34, 34, 0.8);
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: var(--z-index-section--cookie);
    color: #fff;
    font-size: 0.6875rem;
    line-height: 160%;
    padding: 1.25rem;
    width: 25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
    -webkit-transform: translateY(120%);
            transform: translateY(120%);
    /* 画面外（下）に隠す */
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }
  .section--cookie .__cookie__button {
    color: #fff;
    font-size: 0.75rem;
  }
  .section--cookie .__cookie__link {
    text-decoration: underline;
    color: #fff;
  }
  .section--cookie .__cookie__button-box {
    margin-top: 0.625rem;
    text-align: right;
  }
  .section--cookie .__cookie__button {
    cursor: pointer;
  }
  .section--cookie.is-active {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*
CSS Variables
*/
:root {
  --color-black: #000;
  --color-white: #fff;
  --color-text: #231815;
  --color-gray: #686868;
  --color-theme: #4ba53a;
  --color-background: #f4f4f4;
  --color-border: #c7c7c7;
  --font-jp-regular: "yu-gothic-pr6n", sans-serif;
  --z-index-drawer: 600;
  --z-index-hamburger: 601;
  --z-index-overlay: 700;
  --z-index-modal: 701;
  --z-index-modal-navigation: 1000;
}

/*
Reset
*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: normal;
}

/*
Basics
*/
body {
  position: relative;
  font-family: var(--font-jp-regular);
  line-height: 1;
  color: var(--color-text);
}
@media (max-width: 640px) {
  body {
    font-size: min(4vw, 18px);
  }
}
@media (min-width: 641px) {
  body {
    font-size: 16px;
  }
}
body img,
body video {
  width: 100%;
  margin: 0;
  line-height: 1;
  vertical-align: bottom;
}
body .view {
  margin: 0 auto;
}
@media (max-width: 640px) {
  body .view {
    width: 85.64102564vw;
  }
}
@media (min-width: 641px) {
  body .view {
    width: 90%;
    max-width: 1080px;
  }
}
body .__wb {
  white-space: unset;
}
@media (min-width: 641px) {
  body .__wb > span {
    display: inline-block;
    white-space: nowrap;
  }
}
body .__wba > span {
  display: inline-block;
  white-space: nowrap;
}
@media (min-width: 641px) {
  body br.--ismobile {
    display: none;
  }
}
@media (max-width: 640px) {
  body br.--isdesktop {
    display: none;
  }
}

/*
Animation
*/
.__intersection.__fadein {
  -webkit-transition: opacity 1.4s;
  transition: opacity 1.4s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  opacity: 0;
}
.__intersection.__fadein.__inview {
  opacity: 1;
}

/*
header
*/
header .header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 640px) {
  header .header {
    height: 57px;
  }
}
@media (min-width: 641px) {
  header .header {
    height: 65px;
  }
}
header .header .image {
  aspect-ratio: 162.27/22.57;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}
@media (max-width: 640px) {
  header .header .image {
    width: 98.56px;
  }
}
@media (min-width: 641px) {
  header .header .image {
    width: 107px;
  }
}
header .hamburger {
  position: fixed;
  top: 0;
  z-index: var(--z-index-hamburger);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: visible;
  cursor: pointer;
}
@media (max-width: 640px) {
  header .hamburger {
    width: 57px;
    height: 57px;
    left: 0;
  }
}
@media (min-width: 641px) {
  header .hamburger {
    width: 65px;
    height: 65px;
    right: 17px;
  }
}
header .hamburger .box {
  position: relative;
}
@media (max-width: 640px) {
  header .hamburger .box {
    width: 21px;
    height: 21px;
  }
}
@media (min-width: 641px) {
  header .hamburger .box {
    width: 24px;
    height: 24px;
  }
}
header .hamburger .box .bars {
  position: absolute;
  top: 16px;
  border-radius: 2px;
  background-color: var(--color-black);
  -webkit-transition: -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.13s;
  transition: -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.13s;
  transition: transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.13s;
  transition: transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.13s, -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.13s;
}
@media (max-width: 640px) {
  header .hamburger .box .bars {
    width: 21px;
    height: 1px;
  }
}
@media (min-width: 641px) {
  header .hamburger .box .bars {
    width: 24px;
    height: 1px;
  }
}
header .hamburger .box .bars::before, header .hamburger .box .bars::after {
  display: block;
  content: "";
  position: absolute;
  border-radius: 2px;
  background-color: var(--color-black);
}
@media (max-width: 640px) {
  header .hamburger .box .bars::before, header .hamburger .box .bars::after {
    width: 21px;
    height: 1px;
  }
}
@media (min-width: 641px) {
  header .hamburger .box .bars::before, header .hamburger .box .bars::after {
    width: 24px;
    height: 1px;
  }
}
header .hamburger .box .bars::before {
  top: -6px;
  -webkit-transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
header .hamburger .box .bars::after {
  top: -12px;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0.1s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0.1s linear;
}

/*
drawer
*/
body.drawer--active header .hamburger .box .bars {
  -webkit-transform: translate3d(0, -4px, 0) rotate(-45deg);
          transform: translate3d(0, -4px, 0) rotate(-45deg);
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
body.drawer--active header .hamburger .box .bars::before {
  top: 0;
  -webkit-transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
body.drawer--active header .hamburger .box .bars::after {
  top: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s linear 0.22s;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s linear 0.22s;
  opacity: 0;
}
body.drawer--active .drawer {
  -webkit-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
}
body.drawer--active .drawer .drawer-scroll {
  opacity: 1;
}

.drawer {
  z-index: var(--z-index-drawer);
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  width: 100vw;
  height: 120vh;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
  background-color: #eae7e2;
}
.drawer .drawer-scroll {
  width: 100%;
  height: 100vh;
  overscroll-behavior-y: contain;
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
.drawer .drawer-scroll .drawer-wrap {
  width: 100%;
}
.drawer .drawer-scroll .drawer-wrap .layout {
  margin: 0 auto;
}
@media (max-width: 640px) {
  .drawer .drawer-scroll .drawer-wrap .layout {
    width: 90%;
    max-width: 460px;
    padding: 74px 0 100px;
  }
}
@media (min-width: 641px) {
  .drawer .drawer-scroll .drawer-wrap .layout {
    width: 90%;
    max-width: 980px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 113px 0;
  }
}
@media (max-width: 640px) {
  .drawer .drawer-scroll .drawer-wrap .layout .navigations {
    margin-bottom: 14vw;
  }
}
@media (min-width: 641px) {
  .drawer .drawer-scroll .drawer-wrap .layout .navigations {
    width: 45.5%;
    max-width: 446px;
    min-width: 380px;
  }
}
.drawer .drawer-scroll .drawer-wrap .layout .navigations ul {
  border-top: 1px solid #b1b1b1;
}
.drawer .drawer-scroll .drawer-wrap .layout .navigations ul li {
  border-bottom: 1px solid #b1b1b1;
}
@media (max-width: 640px) {
  .drawer .drawer-scroll .drawer-wrap .layout .navigations ul li {
    padding: min(5.12vw, 24px) 0 min(5.128vw, 24px) 4.3vw;
    font-size: min(3.58974359vw, 16px);
  }
}
@media (min-width: 641px) {
  .drawer .drawer-scroll .drawer-wrap .layout .navigations ul li {
    padding: 20px 0 19px 35px;
    font-size: 16px;
    line-height: 1.125;
  }
}
.drawer .drawer-scroll .drawer-wrap .layout .navigations ul li a {
  color: #767676;
  text-decoration: none;
}
@media (hover: hover) {
  .drawer .drawer-scroll .drawer-wrap .layout .navigations ul li a {
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
  }
  .drawer .drawer-scroll .drawer-wrap .layout .navigations ul li a:hover {
    color: #231815;
  }
}
.drawer .drawer-scroll .drawer-wrap .layout .navigations ul li a em {
  font-family: "minion-3", "yu-gothic-pr6n", serif;
  font-weight: 400;
  font-style: normal;
  font-style: normal;
}
@media (min-width: 641px) {
  .drawer .drawer-scroll .drawer-wrap .layout .navigations ul li a em {
    font-size: 1.125em;
  }
}
.drawer .drawer-scroll .drawer-wrap .layout .navigations ul li.subcontents {
  border: none;
  background-size: 3.5px 1px;
  background-image: linear-gradient(to right, #999 1px, transparent 1px);
  background-repeat: repeat-x;
  background-position: left bottom;
}
.drawer .drawer-scroll .drawer-wrap .layout .navigations ul li.external-link a span {
  font-style: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (max-width: 640px) {
  .drawer .drawer-scroll .drawer-wrap .layout .navigations ul li.external-link a span {
    font-size: min(3.58974359vw, 16px);
    gap: 1vw;
  }
}
@media (min-width: 641px) {
  .drawer .drawer-scroll .drawer-wrap .layout .navigations ul li.external-link a span {
    gap: 9px;
  }
}
.drawer .drawer-scroll .drawer-wrap .layout .navigations ul li.external-link a span:after {
  content: "";
  background-image: url('data:image/svg+xml;utf8,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="3.5" width="12" height="12" stroke="%23767676"/><path d="M5.5 0.5H15.5V10.5" stroke="%23767676"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 1/1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media (max-width: 640px) {
  .drawer .drawer-scroll .drawer-wrap .layout .navigations ul li.external-link a span:after {
    width: 0.86em;
    height: 0.86em;
  }
}
@media (min-width: 641px) {
  .drawer .drawer-scroll .drawer-wrap .layout .navigations ul li.external-link a span:after {
    width: 15px;
  }
}
@media (hover: hover) {
  .drawer .drawer-scroll .drawer-wrap .layout .navigations ul li.external-link a:hover span:after {
    background-image: url('data:image/svg+xml;utf8,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="3.5" width="12" height="12" stroke="%23231815"/><path d="M5.5 0.5H15.5V10.5" stroke="%23231815"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
  }
}
@media (max-width: 640px) {
  .drawer .drawer-scroll .drawer-wrap .layout .logo {
    width: 40vw;
    margin: 0 auto;
  }
}
@media (min-width: 641px) {
  .drawer .drawer-scroll .drawer-wrap .layout .logo {
    width: 45.5%;
    max-width: 446px;
    min-width: 380px;
  }
}
.drawer .drawer-scroll .drawer-wrap .layout .logo .image {
  display: block;
  aspect-ratio: 304/240.29;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}
@media (min-width: 641px) {
  .drawer .drawer-scroll .drawer-wrap .layout .logo .image {
    width: 32vw;
    max-width: 304px;
    min-width: 260px;
    margin: 80px auto 0;
  }
}

/*
section
*/
.section--billboard {
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
.section--billboard .layout {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section--billboard .layout .key-visual {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  width: 100vw;
  overflow: hidden;
}
@media (max-width: 640px) {
  .section--billboard .layout .key-visual {
    aspect-ratio: 390/490;
  }
}
@media (min-width: 641px) {
  .section--billboard .layout .key-visual {
    aspect-ratio: 1440/700;
  }
}
.section--billboard .layout .key-visual .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
}
@media (max-width: 640px) {
  .section--billboard .layout .key-visual .image {
    -webkit-transition: -webkit-transform 3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: -webkit-transform 3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: transform 3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: transform 3s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
}
@media (min-width: 641px) {
  .section--billboard .layout .key-visual .image {
    -webkit-transition: -webkit-transform 4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: -webkit-transform 4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: transform 4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: transform 4s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
}
.section--billboard .layout .title-logo {
  z-index: 1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
}
.section--billboard .layout .title-logo .image {
  display: block;
  opacity: 0;
  -webkit-transition: opacity 3s linear 0.5s;
  transition: opacity 3s linear 0.5s;
}
@media (max-width: 640px) {
  .section--billboard .layout .title-logo .image {
    width: 56vw;
    margin: 18.7vw auto 0;
  }
}
@media (min-width: 641px) {
  .section--billboard .layout .title-logo .image {
    width: 25.625vw;
    margin: 6vw auto 0;
  }
}
.section--billboard.__load {
  opacity: 1;
}
@media (max-width: 640px) {
  .section--billboard.__load .layout .key-visual .image {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@media (min-width: 641px) {
  .section--billboard.__load .layout .key-visual .image {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
}
.section--billboard.__load .layout .title-logo .image {
  opacity: 1;
}
@media (max-width: 640px) {
  .section--overview {
    padding: 43px 0 122px 0;
  }
}
@media (min-width: 641px) {
  .section--overview {
    padding: 89px 0 min(20vw, 226px);
  }
}
@media (max-width: 640px) {
  .section--overview .view {
    width: 84vw;
  }
}
@media (min-width: 641px) {
  .section--overview .view {
    max-width: 832px;
    margin: 0 auto;
  }
}
.section--overview .view .greetings {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  text-align: center;
}
@media (max-width: 640px) {
  .section--overview .view .greetings .title {
    font-size: min(6.8vw, 30px);
    line-height: 1.56;
    margin-bottom: min(7.8vw, 30px);
  }
}
@media (min-width: 641px) {
  .section--overview .view .greetings .title {
    font-size: min(4.2vw, 34px);
    line-height: 1.4;
    margin-bottom: min(3vw, 41px);
  }
}
@media (max-width: 640px) {
  .section--overview .view .greetings p {
    line-height: 2;
  }
}
@media (min-width: 641px) {
  .section--overview .view .greetings p {
    font-size: 18px;
    line-height: 42px;
  }
}
.section--overview .view .information {
  border: 1px solid var(--color-text);
  border-radius: 4px;
}
@media (max-width: 640px) {
  .section--overview .view .information {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 45px;
    padding: 28px 7vw;
  }
}
@media (min-width: 641px) {
  .section--overview .view .information {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 27px 20px 27px 0;
    margin-top: 58px;
  }
}
.section--overview .view .information .label {
  font-family: "minion-3", "yu-gothic-pr6n", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.02em;
}
@media (max-width: 640px) {
  .section--overview .view .information .label {
    font-size: 20px;
    margin-bottom: 27px;
    padding: 0 17px 15px;
    border-bottom: 1px solid var(--color-text);
  }
}
@media (min-width: 641px) {
  .section--overview .view .information .label {
    font-size: min(2.4vw, 24px);
    padding: 0 min(3.8vw, 53px);
  }
}
@media (min-width: 641px) {
  .section--overview .view .information .contents {
    border-left: 1px solid var(--color-text);
    padding-left: 30px;
  }
}
.section--overview .view .information .contents ul li {
  list-style: none;
  margin-left: 1em;
}
@media (max-width: 640px) {
  .section--overview .view .information .contents ul li {
    font-size: min(3.3333333333vw, 15px);
    line-height: 1.8;
  }
}
@media (min-width: 641px) {
  .section--overview .view .information .contents ul li {
    font-size: 14px;
    line-height: 1.6;
  }
}
.section--overview .view .information .contents ul li:before {
  content: "・";
  margin-left: -1em;
}
@media (max-width: 640px) {
  .section--overview .view .information .contents ul li:nth-child(n+2) {
    margin-top: 1em;
  }
}
@media (min-width: 641px) {
  .section--overview .view .information .contents ul li:nth-child(n+2) {
    margin-top: 0.4em;
  }
}
.section--overview .view .toc {
  text-align: center;
}
@media (max-width: 640px) {
  .section--overview .view .toc {
    margin-top: 71px;
  }
}
@media (min-width: 641px) {
  .section--overview .view .toc {
    margin-top: 110px;
  }
}
@media (max-width: 640px) {
  .section--overview .view .toc .title {
    margin-bottom: 37px;
  }
}
@media (min-width: 641px) {
  .section--overview .view .toc .title {
    margin-bottom: 58px;
  }
}
.section--overview .view .toc .title .image {
  aspect-ratio: 173/27;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}
@media (max-width: 640px) {
  .section--overview .view .toc .title .image {
    width: 34.87vw;
  }
}
@media (min-width: 641px) {
  .section--overview .view .toc .title .image {
    width: 173px;
  }
}
.section--overview .view .toc .items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 640px) {
  .section--overview .view .toc .items {
    gap: 3.076923077vw;
  }
}
@media (min-width: 641px) {
  .section--overview .view .toc .items {
    gap: min(1.39vw, 20px) min(1.95vw, 28px);
  }
}
.section--overview .view .toc .items .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f2f2f2;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  text-decoration: none;
}
@media (max-width: 640px) {
  .section--overview .view .toc .items .item {
    aspect-ratio: 1/1;
    border-bottom: min(2vw, 14px) solid var(--color-text);
  }
}
@media (min-width: 641px) {
  .section--overview .view .toc .items .item {
    aspect-ratio: 402/169;
    clip-path: polygon(0% 38.46%, 19.15% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
.section--overview .view .toc .items .item .scene .label {
  color: var(--color-text);
}
@media (max-width: 640px) {
  .section--overview .view .toc .items .item .scene .label {
    font-size: min(3.33vw, 16px);
    line-height: 2;
    margin-bottom: 0.615em;
  }
}
@media (min-width: 641px) {
  .section--overview .view .toc .items .item .scene .label {
    font-size: min(1.8vw, 16px);
    line-height: 1.625;
    margin-bottom: min(0.625vw, 9px);
  }
}
.section--overview .view .toc .items .item .scene .name {
  font-family: "minion-3", "yu-gothic-pr6n", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.03em;
  color: #999999;
}
@media (max-width: 640px) {
  .section--overview .view .toc .items .item .scene .name {
    font-size: min(3.85vw, 18.4px);
    line-height: 1.2;
  }
}
@media (min-width: 641px) {
  .section--overview .view .toc .items .item .scene .name {
    font-size: min(3.102625298vw, 26px);
    line-height: 1.3;
  }
  .section--overview .view .toc .items .item .scene .name > br {
    display: none;
  }
}
@media (max-width: 640px) {
  .section--overview .view .toc .items .item--family {
    border-color: #efe8da;
  }
}
.section--overview .view .toc .items .item--family .scene .name {
  color: #d2bba4;
}
@media (max-width: 640px) {
  .section--overview .view .toc .items .item--housewarming {
    border-color: #d0dfda;
  }
}
.section--overview .view .toc .items .item--housewarming .scene .name {
  color: #b0c4bd;
}
@media (max-width: 640px) {
  .section--overview .view .toc .items .item--wedding {
    border-color: #cdcdcd;
  }
}
.section--overview .view .toc .items .item--wedding .scene .name {
  color: #b0b0b0;
}
@media (max-width: 640px) {
  .section--overview .view .toc .items .item--basic {
    border-color: #d5d9e0;
  }
}
.section--overview .view .toc .items .item--basic .scene .name {
  color: #9cadca;
}
@media (hover: hover) {
  .section--overview .view .toc .items .item {
    -webkit-transition: background-color 0.5s;
    transition: background-color 0.5s;
  }
  .section--overview .view .toc .items .item .scene .name {
    -webkit-transition: color 0.5s;
    transition: color 0.5s;
  }
  .section--overview .view .toc .items .item:hover.item--family {
    background-color: #efe8da;
  }
  .section--overview .view .toc .items .item:hover.item--family .scene .name {
    color: #9a8f84;
  }
  .section--overview .view .toc .items .item:hover.item--housewarming {
    background-color: #d0dfda;
  }
  .section--overview .view .toc .items .item:hover.item--housewarming .scene .name {
    color: #738c84;
  }
  .section--overview .view .toc .items .item:hover.item--wedding {
    background-color: #d6d6d6;
  }
  .section--overview .view .toc .items .item:hover.item--wedding .scene .name {
    color: #878080;
  }
  .section--overview .view .toc .items .item:hover.item--basic {
    background-color: #d5d9e0;
  }
  .section--overview .view .toc .items .item:hover.item--basic .scene .name {
    color: #6f84a9;
  }
}
@media (max-width: 640px) {
  .section--scene {
    margin-top: 34px;
  }
}
@media (min-width: 641px) {
  .section--scene {
    margin-top: 56px;
  }
}
.section--scene .price {
  font-size: 15px;
}
.section--scene .price::before {
  content: "¥";
  font-size: 0.8em;
}
.section--scene .price::after {
  content: "（税込）";
  font-size: 0.733333em;
}
.section--scene .scene {
  position: relative;
}
@media (max-width: 640px) {
  .section--scene .scene {
    padding-bottom: min(32vw, 160px);
  }
}
@media (min-width: 641px) {
  .section--scene .scene {
    padding-bottom: min(26vw, 308px);
  }
}
@media (max-width: 640px) {
  .section--scene .scene .view {
    width: 92vw;
  }
}
@media (min-width: 641px) {
  .section--scene .scene .view {
    max-width: 876px;
  }
}
.section--scene .scene .view .section-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 640px) {
  .section--scene .scene .view .section-label {
    height: calc(7.6923076923vw + 40px);
    position: relative;
    top: calc(-7.4358974359vw - 40px);
  }
}
@media (min-width: 641px) {
  .section--scene .scene .view .section-label {
    height: 65px;
    position: relative;
    top: -65px;
  }
}
.section--scene .scene .view .section-label .image {
  display: block;
  width: auto;
}
@media (max-width: 640px) {
  .section--scene .scene .view .section-label .image {
    height: calc(100% - 40px);
  }
}
@media (min-width: 641px) {
  .section--scene .scene .view .section-label .image {
    height: min(6.8vw, 51px);
    margin-bottom: -1px;
  }
}
@media (max-width: 640px) {
  .section--scene .scene .view .title {
    margin-top: calc(-7.6923076923vw - 40px);
    margin-bottom: 73px;
    padding-top: 23px;
    font-size: min(3.846vw, 18px);
    line-height: 1;
  }
}
@media (min-width: 641px) {
  .section--scene .scene .view .title {
    margin-top: -50px;
    margin-bottom: 85px;
    padding-top: 31px;
    font-size: 20px;
    line-height: 1.5;
  }
}
.section--scene .scene .view .main-visual {
  position: relative;
  background-color: var(--color-white);
  border: 1px solid #231815;
}
@media (max-width: 640px) {
  .section--scene .scene .view .main-visual {
    padding: 3vw;
  }
}
@media (min-width: 641px) {
  .section--scene .scene .view .main-visual {
    padding: 18px;
  }
}
.section--scene .scene .view .main-visual .swiper {
  overflow: hidden;
}
@media (max-width: 640px) {
  .section--scene .scene .view .main-visual .swiper {
    padding-bottom: calc(2.56vw + 8.2px);
  }
}
@media (min-width: 641px) {
  .section--scene .scene .view .main-visual .swiper {
    padding-bottom: 23px;
  }
}
@media (max-width: 640px) {
  .section--scene .scene .view .main-visual .swiper .swiper-slide {
    aspect-ratio: 336/210;
  }
}
@media (min-width: 641px) {
  .section--scene .scene .view .main-visual .swiper .swiper-slide {
    aspect-ratio: 839/400;
  }
}
.section--scene .scene .view .main-visual .swiper .swiper-pagination {
  position: absolute;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 640px) {
  .section--scene .scene .view .main-visual .swiper .swiper-pagination {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8.2px;
    margin-top: 2.56vw;
  }
}
@media (min-width: 641px) {
  .section--scene .scene .view .main-visual .swiper .swiper-pagination {
    right: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 10px;
    margin: 13px 18px 0 auto;
  }
}
.section--scene .scene .view .main-visual .swiper .swiper-pagination .swiper-pagination-bullet {
  margin: 0;
  background-color: #686868;
  opacity: 0.4;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
@media (max-width: 640px) {
  .section--scene .scene .view .main-visual .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 8.2px;
    height: 8.2px;
  }
}
@media (min-width: 641px) {
  .section--scene .scene .view .main-visual .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}
.section--scene .scene .view .main-visual .swiper .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
.section--scene .scene .view .main-visual .number01 {
  position: absolute;
  z-index: 1;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  height: auto;
}
@media (max-width: 640px) {
  .section--scene .scene .view .main-visual .number01 {
    width: min(11vw, 50px);
    top: -0.1vw;
    right: 5.128vw;
  }
}
@media (min-width: 641px) {
  .section--scene .scene .view .main-visual .number01 {
    width: min(9vw, 67px);
    top: -0.4px;
    right: 24px;
  }
}
.section--scene .scene .view .main-visual .description {
  color: #231815;
}
@media (max-width: 640px) {
  .section--scene .scene .view .main-visual .description {
    padding: 20px 18px 12px;
  }
}
@media (min-width: 641px) {
  .section--scene .scene .view .main-visual .description {
    padding: 3px 100px 16px min(3vw, 39px);
  }
}
@media (max-width: 640px) {
  .section--scene .scene .view .main-visual .description .caption {
    font-size: min(3.6vw, 17px);
    line-height: 1.86;
  }
  .section--scene .scene .view .main-visual .description .caption > br {
    display: none;
  }
}
@media (min-width: 641px) {
  .section--scene .scene .view .main-visual .description .caption {
    font-size: min(2vw, 16px);
    line-height: 1.75;
  }
}
.section--scene .scene .view .main-visual .description .caption:after {
  content: "";
  display: block;
  height: 1px;
  background-color: var(--color-black);
}
@media (max-width: 640px) {
  .section--scene .scene .view .main-visual .description .caption:after {
    width: 15px;
    margin: 30px auto 28px 0;
  }
}
@media (min-width: 641px) {
  .section--scene .scene .view .main-visual .description .caption:after {
    width: 20px;
    margin: 30px auto 28px 0;
  }
}
@media (max-width: 640px) {
  .section--scene .scene .view .main-visual .description .logo {
    margin-bottom: 2.3vw;
  }
}
@media (min-width: 641px) {
  .section--scene .scene .view .main-visual .description .logo {
    margin-bottom: 15px;
  }
}
.section--scene .scene .view .main-visual .description .logo .image {
  width: auto;
}
@media (max-width: 640px) {
  .section--scene .scene .view .main-visual .description .logo .image {
    height: 3.4vw;
  }
}
@media (min-width: 641px) {
  .section--scene .scene .view .main-visual .description .logo .image {
    height: 22.01px;
  }
}
.section--scene .scene .view .main-visual .description .cta {
  color: #878787;
}
.section--scene .scene .view .main-visual .description .cta .prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 640px) {
  .section--scene .scene .view .main-visual .description .cta .prices {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.18vw;
  }
}
@media (min-width: 641px) {
  .section--scene .scene .view .main-visual .description .cta .prices {
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .section--scene .scene .view .main-visual .description .cta .prices .category {
    font-size: min(3.08vw, 18px);
  }
}
@media (min-width: 641px) {
  .section--scene .scene .view .main-visual .description .cta .prices .category {
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .section--scene .scene .view .main-visual .description .cta .prices .price {
    font-size: min(3.4vw, 18px);
  }
}
@media (min-width: 641px) {
  .section--scene .scene .view .main-visual .description .cta .prices .price {
    font-size: 15px;
  }
}
.section--scene .scene .view .main-visual .description .cta .prices .price:before {
  content: "¥";
}
@media (min-width: 641px) {
  .section--scene .scene .view .main-visual .description .cta .prices .price:before {
    font-size: 11px;
  }
}
.section--scene .scene .view .main-visual .description .cta .readmore {
  position: absolute;
  color: #878787;
  text-decoration: none;
}
@media (max-width: 640px) {
  .section--scene .scene .view .main-visual .description .cta .readmore {
    font-size: min(2.82vw, 15px);
    right: 7.18vw;
    bottom: calc(3vw + 10px);
  }
}
@media (min-width: 641px) {
  .section--scene .scene .view .main-visual .description .cta .readmore {
    right: 36px;
    bottom: 34px;
    font-size: 14px;
  }
}
.section--scene .scene .view .main-visual .description .cta .readmore::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 1px;
  background-color: var(--color-gray);
}
@media (hover: hover) {
  .section--scene .scene .view .main-visual .description .cta .readmore {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .section--scene .scene .view .main-visual .description .cta .readmore:hover {
    color: #231815;
  }
}
.section--scene .scene .view .items {
  display: -ms-grid;
  display: grid;
}
@media (max-width: 640px) {
  .section--scene .scene .view .items {
    margin-top: 16.4vw;
    -ms-grid-columns: 1fr 0 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 16.4vw 0;
  }
}
@media (min-width: 641px) {
  .section--scene .scene .view .items {
    margin-top: 102px;
    -ms-grid-columns: 1fr 0 1fr 0 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 147px 0;
  }
}
.section--scene .scene .view .items .item {
  position: relative;
  width: 100%;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: var(--color-white);
  border: 1px solid #231815;
  border-left: none;
}
@media (max-width: 640px) {
  .section--scene .scene .view .items .item {
    padding: 2.1vw;
  }
  .section--scene .scene .view .items .item:nth-child(odd) {
    border-left: 1px solid #231815;
  }
}
@media (min-width: 641px) {
  .section--scene .scene .view .items .item {
    padding: 16px;
  }
  .section--scene .scene .view .items .item:nth-child(1), .section--scene .scene .view .items .item:nth-child(4) {
    border-left: 1px solid #231815;
  }
}
.section--scene .scene .view .items .item .swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
}
@media (max-width: 640px) {
  .section--scene .scene .view .items .item .swiper {
    position: relative;
    aspect-ratio: 164/154;
  }
}
@media (min-width: 641px) {
  .section--scene .scene .view .items .item .swiper {
    aspect-ratio: 1/1;
  }
}
@media (max-width: 640px) {
  .section--scene .scene .view .items .item .swiper .swiper-pagination {
    position: absolute;
    width: 100%;
    bottom: 2.5vw;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8.2px;
  }
}
@media (min-width: 641px) {
  .section--scene .scene .view .items .item .swiper .swiper-pagination {
    display: none;
  }
}
.section--scene .scene .view .items .item .swiper .swiper-pagination .swiper-pagination-bullet {
  margin: 0;
  background-color: var(--color-gray);
  opacity: 0.4;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
@media (max-width: 640px) {
  .section--scene .scene .view .items .item .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 8.2px;
    height: 8.2px;
  }
}
@media (min-width: 641px) {
  .section--scene .scene .view .items .item .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 8.4px;
    height: 8.4px;
  }
}
.section--scene .scene .view .items .item .swiper .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
.section--scene .scene .view .items .item .number {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  width: auto;
}
@media (max-width: 640px) {
  .section--scene .scene .view .items .item .number {
    height: min(6.41vw, 34px);
    -webkit-transform: translate(-50%, -100%);
            transform: translate(-50%, -100%);
  }
}
@media (min-width: 641px) {
  .section--scene .scene .view .items .item .number {
    height: 40px;
    -webkit-transform: translate(-50%, -40px);
            transform: translate(-50%, -40px);
  }
}
.section--scene .scene .view .items .item .caption {
  color: var(--color-text);
}
@media (max-width: 640px) {
  .section--scene .scene .view .items .item .caption {
    font-size: min(3.08vw, 14px);
    letter-spacing: -0.01em;
    line-height: 1.67;
    min-height: 5.01rem;
    padding: 3vw 0.5vw 0 1.2vw;
    margin-bottom: 9vw;
  }
}
@media (min-width: 641px) {
  .section--scene .scene .view .items .item .caption {
    font-size: min(1.9vw, 14px);
    line-height: 1.72;
    min-height: calc(5.16rem + 24px);
    padding: 24px min(0.7vw, 8px) 0;
    margin-bottom: min(6vw, 44px);
  }
}
.section--scene .scene .view .items .item .item-description {
  position: relative;
  width: 100%;
  margin-top: auto;
  color: #878787;
}
@media (max-width: 640px) {
  .section--scene .scene .view .items .item .item-description {
    padding: 0 0 7.5vw 1.2vw;
  }
}
@media (min-width: 641px) {
  .section--scene .scene .view .items .item .item-description {
    padding: 0 0 28px min(0.7vw, 8px);
  }
}
.section--scene .scene .view .items .item .item-description::after {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  background-color: var(--color-black);
}
@media (max-width: 640px) {
  .section--scene .scene .view .items .item .item-description::after {
    top: -6.4vw;
    left: calc(50% - 7.5px);
    width: 15px;
  }
}
@media (min-width: 641px) {
  .section--scene .scene .view .items .item .item-description::after {
    top: -45px;
    left: calc(50% - 10px);
    width: 20px;
  }
}
.section--scene .scene .view .items .item .item-description .logo {
  width: auto;
}
@media (max-width: 640px) {
  .section--scene .scene .view .items .item .item-description .logo {
    height: min(2.9vw, 14px);
    margin: 0 auto min(2.635431918vw, 8px) 0.4vw;
  }
}
@media (min-width: 641px) {
  .section--scene .scene .view .items .item .item-description .logo {
    height: min(1.8vw, 17px);
    margin: 0 auto 7px 2px;
  }
}
@media (max-width: 640px) {
  .section--scene .scene .view .items .item .item-description .summary {
    min-height: calc(2.8em + 2.56vw + 3.333333333vw);
  }
}
@media (max-width: 640px) and (max-width: 450px) {
  .section--scene .scene .view .items .item .item-description .summary {
    min-height: calc(2.8em + 2.56vw + 15px);
  }
}
.section--scene .scene .view .items .item .item-description .summary .copy {
  line-height: 1.4;
}
@media (max-width: 640px) {
  .section--scene .scene .view .items .item .item-description .summary .copy {
    font-size: min(3.076923077vw, 14px);
    margin-bottom: 2.56vw;
  }
}
@media (min-width: 641px) {
  .section--scene .scene .view .items .item .item-description .summary .copy {
    font-size: min(1.4vw, 13px);
    margin-bottom: 3px;
    min-height: 2.8em;
  }
}
@media (max-width: 640px) {
  .section--scene .scene .view .items .item .item-description .summary .price {
    margin-top: 2.56vw;
    font-size: min(3.333333333vw, 15px);
  }
}
@media (min-width: 641px) {
  .section--scene .scene .view .items .item .item-description .summary .price {
    display: none;
  }
}
@media (min-width: 641px) {
  .section--scene .scene .view .items .item .item-description .cta {
    position: relative;
  }
}
@media (max-width: 640px) {
  .section--scene .scene .view .items .item .item-description .cta .price {
    display: none;
  }
}
.section--scene .scene .view .items .item .item-description .cta .readmore {
  position: absolute;
  right: min(0.7vw, 8px);
  bottom: 0;
  color: #878787;
  text-decoration: none;
}
@media (max-width: 640px) {
  .section--scene .scene .view .items .item .item-description .cta .readmore {
    bottom: 3.8vw;
    right: 2.1vw;
    font-size: min(2.82vw, 13px);
  }
}
@media (min-width: 641px) {
  .section--scene .scene .view .items .item .item-description .cta .readmore {
    font-size: min(1.6vw, 13px);
  }
}
.section--scene .scene .view .items .item .item-description .cta .readmore::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 1px;
  background-color: var(--color-gray);
}
@media (hover: hover) {
  .section--scene .scene .view .items .item .item-description .cta .readmore {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .section--scene .scene .view .items .item .item-description .cta .readmore:hover {
    color: #231815;
  }
}
.section--scene .scene--family {
  background: #efe8da;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(239, 232, 218)), color-stop(50%, rgb(239, 232, 218)), to(rgba(239, 232, 218, 0.2)));
  background: linear-gradient(180deg, rgb(239, 232, 218) 0%, rgb(239, 232, 218) 50%, rgba(239, 232, 218, 0.2) 100%);
}
.section--scene .scene--housewarming {
  background: #d0dfda;
  background: linear-gradient(172deg, rgb(208, 223, 218) 0%, rgb(208, 223, 218) 50%, rgba(208, 223, 218, 0.2) 100%);
}
.section--scene .scene--wedding {
  background: #dcdcdc;
  background: linear-gradient(172deg, rgb(220, 220, 220) 0%, rgb(220, 220, 220) 50%, rgba(220, 220, 220, 0.2) 100%);
}
.section--scene .scene--basic {
  background: #d5d9e0;
  background: linear-gradient(172deg, rgb(213, 217, 224) 0%, rgb(213, 217, 224) 50%, rgba(213, 217, 224, 0.2) 100%);
}
@media (max-width: 640px) {
  .section--scene .scene--basic {
    padding-bottom: 25vw;
  }
}
@media (min-width: 641px) {
  .section--scene .scene--basic {
    padding-bottom: 243px;
  }
}
@media (max-width: 640px) {
  .section--scene .scene--basic .view .items {
    margin-top: 21.28vw;
  }
}
@media (min-width: 641px) {
  .section--scene .scene--basic .view .items {
    margin-top: 129px;
  }
}
@media (max-width: 640px) {
  .section--wrapping {
    padding-top: 17.4vw;
  }
}
@media (min-width: 641px) {
  .section--wrapping {
    padding-top: 114px;
    margin: 0 0 155px;
  }
}
@media (max-width: 640px) {
  .section--wrapping .view {
    width: 92%;
  }
}
.section--wrapping .view > .title {
  text-align: center;
}
@media (max-width: 640px) {
  .section--wrapping .view > .title {
    font-size: min(4.6vw, 24px);
    letter-spacing: 0.02em;
    margin-bottom: 11.3vw;
  }
}
@media (min-width: 641px) {
  .section--wrapping .view > .title {
    font-size: min(3.5vw, 26px);
    letter-spacing: 0.02em;
    margin-bottom: 98px;
  }
}
.section--wrapping .view .wrapping {
  text-align: center;
}
@media (max-width: 640px) {
  .section--wrapping .view .wrapping {
    background-color: #eeeeee;
    margin: 0 auto 14px;
    padding: min(17.18vw, 80px) 0 0;
    border-radius: 4px;
  }
}
@media (min-width: 641px) {
  .section--wrapping .view .wrapping {
    background-color: var(--color-background);
    margin-bottom: 12px;
    padding: 100px 0 90px;
    border-radius: 8px;
  }
}
@media (min-width: 641px) {
  .section--wrapping .view .wrapping .titles {
    width: 90%;
    max-width: 672px;
    margin: 0 auto;
  }
}
.section--wrapping .view .wrapping .titles .title {
  letter-spacing: 0.02em;
}
@media (max-width: 640px) {
  .section--wrapping .view .wrapping .titles .title {
    font-size: min(4.6vw, 22px);
    margin-bottom: 1.56em;
  }
}
@media (min-width: 641px) {
  .section--wrapping .view .wrapping .titles .title {
    font-size: 24px;
    margin-bottom: 36px;
  }
}
@media (max-width: 640px) {
  .section--wrapping .view .wrapping .titles .description {
    font-size: min(3.58974359vw, 14px);
    line-height: 1.86;
    margin-bottom: min(7.7vw, 32px);
  }
}
@media (min-width: 641px) {
  .section--wrapping .view .wrapping .titles .description {
    font-size: 16px;
    line-height: 1.875;
    margin-bottom: 1.875em;
  }
}
.section--wrapping .view .wrapping .titles .modal-open,
.section--wrapping .view .wrapping .titles .link {
  position: relative;
  display: inline;
  color: #878787;
  text-decoration: none;
  cursor: pointer;
}
@media (max-width: 640px) {
  .section--wrapping .view .wrapping .titles .modal-open,
  .section--wrapping .view .wrapping .titles .link {
    font-size: min(3.3333333333vw, 14px);
  }
}
@media (min-width: 641px) {
  .section--wrapping .view .wrapping .titles .modal-open,
  .section--wrapping .view .wrapping .titles .link {
    font-size: 14px;
  }
}
.section--wrapping .view .wrapping .titles .modal-open::after,
.section--wrapping .view .wrapping .titles .link::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 1px;
  background-color: #878787;
}
@media (hover: hover) {
  .section--wrapping .view .wrapping .titles .modal-open,
  .section--wrapping .view .wrapping .titles .link {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .section--wrapping .view .wrapping .titles .modal-open:hover,
  .section--wrapping .view .wrapping .titles .link:hover {
    color: #231815;
  }
}
@media (max-width: 640px) {
  .section--wrapping .view .wrapping .photos {
    margin-top: min(9.74vw, 50px);
  }
}
@media (min-width: 641px) {
  .section--wrapping .view .wrapping .photos {
    width: 90%;
    max-width: 672px;
    margin: 42px auto 0;
  }
}
.section--wrapping .view .wrapping .photos .photo .image {
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 640px) {
  .section--wrapping .view .wrapping--original .photos .photo .image {
    aspect-ratio: 360/226;
  }
}
@media (min-width: 641px) {
  .section--wrapping .view .wrapping--original .photos .photo .image {
    aspect-ratio: 672/426;
  }
}
.section--wrapping .view .wrapping--wedding .photos {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
.section--wrapping .view .wrapping--wedding .photos .photo {
  min-width: 0;
}
@media (max-width: 640px) {
  .section--wrapping .view .wrapping--wedding .photos .photo .image {
    aspect-ratio: 180/174;
  }
}
@media (min-width: 641px) {
  .section--wrapping .view .wrapping--wedding .photos .photo .image {
    aspect-ratio: 336/231;
    min-height: 230px;
  }
}
@media (min-width: 641px) {
  .section--wrapping .view .wrapping--shops .photos {
    max-width: 482px;
  }
}
@media (max-width: 640px) {
  .section--wrapping .view .wrapping--shops .photos .photo .image {
    aspect-ratio: 360/172;
  }
}
@media (min-width: 641px) {
  .section--wrapping .view .wrapping--shops .photos .photo .image {
    aspect-ratio: 482/231;
  }
}
.section--service {
  background-color: var(--color-background);
}
@media (max-width: 640px) {
  .section--service {
    padding: 13.84615385vw 0 min(22vw, 100px);
  }
}
@media (min-width: 641px) {
  .section--service {
    padding: min(16vw, 119px) 0 min(14vw, 206px);
  }
}
.section--service .view {
  text-align: center;
}
@media (max-width: 640px) {
  .section--service .view {
    width: 85.64102564%;
  }
}
.section--service .view .title {
  letter-spacing: 0.02em;
}
@media (max-width: 640px) {
  .section--service .view .title {
    font-size: min(4.6vw, 24px);
    line-height: 1.65;
    margin-bottom: 10vw;
  }
}
@media (min-width: 641px) {
  .section--service .view .title {
    font-size: min(3.5vw, 26px);
    margin: 0 0 76px;
  }
}
@media (max-width: 640px) {
  .section--service .view .items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2.564102564vw 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.564102564vw;
  }
}
@media (min-width: 641px) {
  .section--service .view .items {
    width: 90%;
    max-width: 877px;
    margin: 0 auto;
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(216px, 1fr));
    gap: min(2.5vw, 36px) min(2.85vw, 41px);
  }
}
.section--service .view .items .item {
  min-width: 0;
  background-color: var(--color-white);
}
@media (max-width: 640px) {
  .section--service .view .items .item {
    padding: 4vw 0.5vw 5.8vw;
  }
}
@media (min-width: 641px) {
  .section--service .view .items .item {
    padding: min(3.925233645vw, 42px) 5px;
  }
}
.section--service .view .items .item .image {
  aspect-ratio: 74/52;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 640px) {
  .section--service .view .items .item .image {
    width: min(14vw, 74px);
    margin-bottom: min(3.6vw, 16px);
  }
}
@media (min-width: 641px) {
  .section--service .view .items .item .image {
    width: min(6.91588785vw, 74px);
    margin-bottom: min(2.242990654vw, 24px);
  }
}
@media (min-width: 641px) and (max-width: 860px) {
  .section--service .view .items .item .image {
    width: 60px;
  }
}
@media (max-width: 640px) {
  .section--service .view .items .item .service-name {
    font-size: min(3.333333333vw, 14px);
    line-height: 1.69;
    margin-bottom: min(4vw, 12px);
  }
}
@media (min-width: 641px) {
  .section--service .view .items .item .service-name {
    font-size: min(1.5vw, 16px);
    line-height: 1.75;
    margin-bottom: min(1.95vw, 28px);
  }
}
@media (min-width: 641px) and (max-width: 860px) {
  .section--service .view .items .item .service-name {
    font-size: 13px;
  }
}
.section--service .view .items .item .readmore {
  display: inline;
  position: relative;
  color: #878787;
  text-decoration: none;
}
@media (max-width: 640px) {
  .section--service .view .items .item .readmore {
    font-size: min(3.333333333vw, 14px);
  }
}
@media (min-width: 641px) {
  .section--service .view .items .item .readmore {
    font-size: min(1.4vw, 13px);
  }
}
@media (min-width: 641px) and (max-width: 860px) {
  .section--service .view .items .item .readmore {
    font-size: 13px;
  }
}
.section--service .view .items .item .readmore::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 1px;
  background-color: #878787;
}
@media (hover: hover) {
  .section--service .view .items .item {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
    cursor: pointer;
  }
  .section--service .view .items .item .readmore {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .section--service .view .items .item:hover {
    opacity: 0.6;
  }
  .section--service .view .items .item:hover .readmore {
    color: #231815;
  }
}

/*
footer
*/
.footer {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  color: var(--color-white);
}
@media (min-width: 641px) {
  .footer {
    height: 680px;
  }
}
.footer .background,
.footer .foreground {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}
.footer .background .image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 640px) {
  .footer .background .image {
    height: 147vw;
  }
}
@media (min-width: 641px) {
  .footer .background .image {
    height: 680px;
  }
}
.footer .foreground .view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: center;
  height: 100%;
}
@media (max-width: 640px) {
  .footer .foreground .view {
    padding-bottom: 7.4vw;
  }
}
@media (min-width: 641px) {
  .footer .foreground .view {
    padding-bottom: 48px;
  }
}
.footer .foreground .view .social-accounts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 640px) {
  .footer .foreground .view .social-accounts {
    gap: 0 min(7.8vw, 30px);
    margin-bottom: min(8.2vw, 38px);
  }
}
@media (min-width: 641px) {
  .footer .foreground .view .social-accounts {
    gap: 0 30px;
    margin-bottom: 52px;
  }
}
.footer .foreground .view .social-accounts .social .image {
  aspect-ratio: 1/1;
}
@media (max-width: 640px) {
  .footer .foreground .view .social-accounts .social .image {
    width: min(8.2vw, 36px);
  }
}
@media (min-width: 641px) {
  .footer .foreground .view .social-accounts .social .image {
    width: 36px;
  }
}
.footer .foreground .view .brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer .foreground .view .brand .image--balmuda {
  aspect-ratio: 119.86/16.66;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}
@media (max-width: 640px) {
  .footer .foreground .view .brand .image--balmuda {
    width: min(34.62vw, 160px);
    margin-bottom: min(5.38vw, 20px);
  }
}
@media (min-width: 641px) {
  .footer .foreground .view .brand .image--balmuda {
    width: 158px;
    margin-bottom: 24px;
  }
}
.footer .foreground .view .brand .copyright {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
@media (max-width: 640px) {
  .footer .foreground .view .brand .copyright {
    font-size: min(2.564102564vw, 12px);
  }
}
@media (min-width: 641px) {
  .footer .foreground .view .brand .copyright {
    font-size: 12px;
  }
}

/*
modal
*/
.overlay {
  z-index: var(--z-index-overlay);
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
  background-color: rgba(0, 0, 0, 0.5);
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.overlay::-webkit-scrollbar {
  display: none;
}
.overlay.__active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.overlay.__close {
  opacity: 0;
}
.overlay.__close .modal-window.__active {
  opacity: 0;
  -webkit-transform: translateY(100vh);
          transform: translateY(100vh);
}
.overlay::before, .overlay::after {
  content: "";
  width: 0;
  height: calc(100vh + 1px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: transparent;
}
.overlay .modal {
  background-color: var(--color-white);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s cubic-bezier(0.05, 0.9, 0.36, 0.94);
  transition: opacity 0.3s, -webkit-transform 0.3s cubic-bezier(0.05, 0.9, 0.36, 0.94);
  transition: transform 0.3s cubic-bezier(0.05, 0.9, 0.36, 0.94), opacity 0.3s;
  transition: transform 0.3s cubic-bezier(0.05, 0.9, 0.36, 0.94), opacity 0.3s, -webkit-transform 0.3s cubic-bezier(0.05, 0.9, 0.36, 0.94);
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(100vh);
          transform: translateY(100vh);
}
@media (max-width: 640px) {
  .overlay .modal {
    width: 87%;
    height: auto;
    margin: 4.871794872vw auto;
    border-radius: min(3.076923077vw, 20px);
  }
}
@media (min-width: 641px) {
  .overlay .modal {
    width: 980px;
    max-width: 90%;
    min-height: calc(100vh - 60px);
    margin: 30px auto;
    border-radius: 20px;
  }
}
.overlay .modal.__active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.overlay .modal .modal-data {
  display: none;
}
.overlay .modal .modal-data.__active {
  display: block;
}
.overlay .modal .modal-data .controls {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 640px) {
  .overlay .modal .modal-data .controls {
    top: 4.871794872vw;
  }
}
@media (min-width: 641px) {
  .overlay .modal .modal-data .controls {
    top: 30px;
  }
}
.overlay .modal .modal-data .controls > .close-button {
  position: absolute;
  background-color: #c1c1c1;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
@media (max-width: 640px) {
  .overlay .modal .modal-data .controls > .close-button {
    top: 4.615384615vw;
    right: 4.615384615vw;
    width: min(9.743589744vw, 38px);
    height: min(9.743589744vw, 38px);
  }
}
@media (min-width: 641px) {
  .overlay .modal .modal-data .controls > .close-button {
    top: min(3.168316832vw, 32px);
    right: min(3.168316832vw, 32px);
    width: 44px;
    height: 44px;
  }
}
.overlay .modal .modal-data .controls > .close-button::before, .overlay .modal .modal-data .controls > .close-button::after {
  content: "";
  position: absolute;
  top: 50%;
  background-color: var(--color-white);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}
@media (max-width: 640px) {
  .overlay .modal .modal-data .controls > .close-button::before, .overlay .modal .modal-data .controls > .close-button::after {
    width: 20px;
    height: 1px;
  }
}
@media (min-width: 641px) {
  .overlay .modal .modal-data .controls > .close-button::before, .overlay .modal .modal-data .controls > .close-button::after {
    width: 24px;
    height: 1.5px;
  }
}
.overlay .modal .modal-data .controls > .close-button::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.overlay .modal .modal-data .controls > .close-button::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (hover: hover) {
  .overlay .modal .modal-data .controls > .close-button:hover {
    background-color: #959595;
  }
  .overlay .modal .modal-data .controls > .close-button:hover::before {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .overlay .modal .modal-data .controls > .close-button:hover::after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 0;
  }
}
@media (max-width: 640px) {
  .overlay .modal .modal-data .view {
    width: 87%;
    padding: min(16vw, 80px) 0 12.5vw;
  }
}
@media (min-width: 641px) {
  .overlay .modal .modal-data .view {
    width: 92%;
    max-width: 840px;
    padding: min(6.435643564vw, 65px) 0 min(9.405940594vw, 95px);
  }
}
.overlay .modal .modal-data .view .title {
  text-align: center;
}
@media (max-width: 640px) {
  .overlay .modal .modal-data .view .title {
    font-size: min(4.2vw, 22px);
    line-height: 1.75;
    margin-bottom: 7.2vw;
  }
}
@media (min-width: 641px) {
  .overlay .modal .modal-data .view .title {
    font-size: min(2.4vw, 24px);
    line-height: 1.75;
    margin-bottom: min(4.8vw, 50px);
  }
}
.overlay .modal .modal-data .view .items {
  display: -ms-grid;
  display: grid;
}
@media (max-width: 640px) {
  .overlay .modal .modal-data .view .items {
    -ms-grid-columns: 1fr min(2.97029703vw, 30px) 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: min(3.267326733vw, 33px) min(2.97029703vw, 30px);
  }
}
@media (min-width: 641px) {
  .overlay .modal .modal-data .view .items {
    -ms-grid-columns: 1fr min(2.97029703vw, 30px) 1fr min(2.97029703vw, 30px) 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: min(3.267326733vw, 33px) min(2.97029703vw, 30px);
  }
}
.overlay .modal .modal-data .view .items .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  background-color: var(--color-background);
  text-align: center;
}
@media (max-width: 640px) {
  .overlay .modal .modal-data .view .items .item {
    aspect-ratio: 154/186;
    padding-bottom: 3vw;
  }
}
@media (min-width: 641px) {
  .overlay .modal .modal-data .view .items .item {
    aspect-ratio: 260/290;
    padding-bottom: min(2.97029703vw, 30px);
  }
}
.overlay .modal .modal-data .view .items .item .captions .logo {
  margin: 0;
  line-height: 1;
  vertical-align: bottom;
  width: auto;
}
@media (max-width: 640px) {
  .overlay .modal .modal-data .view .items .item .captions .logo {
    height: 2.451282051vw;
    margin-bottom: 1.666666667vw;
  }
}
@media (min-width: 641px) {
  .overlay .modal .modal-data .view .items .item .captions .logo {
    height: min(1.283168317vw, 13px);
    margin-bottom: min(0.7326732673vw, 7.4px);
  }
}
@media (max-width: 640px) {
  .overlay .modal .modal-data .view .items .item .captions .subtitle {
    font-size: 2.051282051vw;
    line-height: 1.375;
    margin-bottom: 1.538461538vw;
  }
}
@media (min-width: 641px) {
  .overlay .modal .modal-data .view .items .item .captions .subtitle {
    font-size: min(0.9900990099vw, 10px);
    margin-bottom: 1em;
  }
}
.overlay .modal .modal-data .view .items .item .captions .price {
  color: #878787;
}
@media (max-width: 640px) {
  .overlay .modal .modal-data .view .items .item .captions .price {
    font-size: min(2.84vw, 15px);
  }
}
@media (min-width: 641px) {
  .overlay .modal .modal-data .view .items .item .captions .price {
    font-size: min(1.4vw, 15px);
  }
}
.overlay .modal .modal-data .view .items .item .captions .price::before {
  content: "¥";
  font-size: 0.72em;
}
.overlay .modal .modal-data .view .items .item .captions .price::after {
  content: "（税込）";
  font-size: 0.72em;
}
.overlay .modal .modal-data .view .items .item .link {
  margin-top: auto;
}
.overlay .modal .modal-data .view .items .item .link > a {
  position: relative;
  display: inline;
  color: #878787;
  text-decoration: none;
  cursor: pointer;
}
@media (max-width: 640px) {
  .overlay .modal .modal-data .view .items .item .link > a {
    font-size: min(2.82vw, 14px);
  }
}
@media (min-width: 641px) {
  .overlay .modal .modal-data .view .items .item .link > a {
    font-size: min(1.287128713vw, 13px);
  }
}
.overlay .modal .modal-data .view .items .item .link > a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 1px;
  background-color: #878787;
}
@media (hover: hover) {
  .overlay .modal .modal-data .view .items .item .link > a {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .overlay .modal .modal-data .view .items .item .link > a:hover {
    color: #231815;
  }
}
.overlay .modal {
  /*
  for "online-service" modal
  */
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) {
  background-color: transparent;
  border-radius: 0;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
  -ms-touch-action: none;
      touch-action: none;
}
@media (max-width: 640px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) {
    width: 100vw;
    height: 100vh;
    margin: 0;
  }
}
@media (min-width: 641px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) {
    width: 100vw;
    min-width: initial;
    max-width: initial;
    height: 725px;
    min-height: auto;
    max-height: 80vh;
    margin: auto;
  }
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data {
  height: 100%;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
  -ms-touch-action: none;
      touch-action: none;
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick {
  height: 100%;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 640px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-track {
    height: 100vh;
  }
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide {
  width: 100vw !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: var(--color-white);
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service::-webkit-scrollbar {
  display: none;
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service {
  -ms-touch-action: auto;
      touch-action: auto;
}
@media (max-width: 640px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service {
    width: 80%;
    height: 80vh;
    max-height: 80vh;
    border-radius: 1.5vw;
    margin: auto;
  }
}
@media (min-width: 641px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service {
    width: 84%;
    max-width: 850px;
    height: 80vh;
    max-height: 725px;
    border-radius: 10px;
    margin: auto;
  }
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .control {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .control .number {
  position: absolute;
  top: min(3.168316832vw, 32px);
  left: min(3.168316832vw, 32px);
}
@media (max-width: 640px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .control .number {
    font-size: 2.8vw;
  }
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .control > .close-button {
  position: absolute;
  background-color: #c1c1c1;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
@media (max-width: 640px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .control > .close-button {
    top: 4.615384615vw;
    right: 4.615384615vw;
    width: min(9.743589744vw, 38px);
    height: min(9.743589744vw, 38px);
  }
}
@media (min-width: 641px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .control > .close-button {
    top: min(3.168316832vw, 32px);
    right: min(3.168316832vw, 32px);
    width: 44px;
    height: 44px;
  }
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .control > .close-button::before, .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .control > .close-button::after {
  content: "";
  position: absolute;
  top: 50%;
  background-color: var(--color-white);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}
@media (max-width: 640px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .control > .close-button::before, .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .control > .close-button::after {
    width: 20px;
    height: 1px;
  }
}
@media (min-width: 641px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .control > .close-button::before, .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .control > .close-button::after {
    width: 24px;
    height: 1.5px;
  }
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .control > .close-button::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .control > .close-button::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (hover: hover) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .control > .close-button:hover {
    background-color: #959595;
  }
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .control > .close-button:hover::before {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .control > .close-button:hover::after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 0;
  }
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description {
  text-align: center;
}
@media (max-width: 640px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description {
    padding: min(15vw, 70px) 0 0;
  }
}
@media (min-width: 641px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description {
    padding: min(8.514851485vw, 86px) min(8vw, 101px) min(7.920792079vw, 80px);
  }
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .image {
  width: auto;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .image {
    height: min(17.69230769vw, 70px);
    margin-bottom: min(5vw, 20px);
  }
}
@media (min-width: 641px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .image {
    height: min(10vw, 90px);
    margin-bottom: min(2.97029703vw, 30px);
  }
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .service-name {
  border-bottom: 1px solid #adadad;
}
@media (max-width: 640px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .service-name {
    font-size: min(4.2vw, 22px);
    line-height: 1.6;
    margin: 0 7vw;
    padding-bottom: min(7vw, 30px);
    margin-bottom: min(7vw, 30px);
  }
}
@media (min-width: 641px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .service-name {
    font-size: min(2.772277228vw, 28px);
    line-height: 1.36;
    padding-bottom: min(2.97029703vw, 30px);
    margin-bottom: min(2.97029703vw, 30px);
  }
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .text {
  text-align: left;
}
@media (max-width: 640px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .text {
    font-size: min(3.7vw, 15px);
    line-height: 1.6;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.8em;
    padding: 0 7vw;
  }
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .text > br {
    display: none;
  }
}
@media (min-width: 641px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .text {
    font-size: min(2vw, 16px);
    line-height: 1.8;
  }
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (max-width: 640px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .links {
    padding: 7vw 7vw;
    gap: 0 0.4em;
    font-size: min(3.7vw, 15px);
    line-height: 1.35;
  }
}
@media (min-width: 641px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .links {
    margin-top: min(4.455445545vw, 45px);
    gap: 0 0.4em;
    font-size: min(2vw, 16px);
    line-height: 1;
  }
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .links::before {
  content: "";
  position: relative;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20.78 20.78"><path class="cls-1" d="M10.39,20.78c-1.39,0-2.76-.28-4.04-.82-1.23-.53-2.35-1.28-3.3-2.23-.95-.95-1.71-2.07-2.23-3.3C.28,13.15,0,11.78,0,10.39c0-1.39.28-2.76.82-4.04.52-1.23,1.28-2.35,2.23-3.3.95-.95,2.07-1.71,3.3-2.23C7.63.28,9,0,10.39,0c1.39,0,2.76.28,4.04.82,1.24.52,2.36,1.28,3.3,2.23.95.95,1.71,2.07,2.23,3.3.54,1.28.82,2.65.82,4.04,0,1.39-.28,2.76-.82,4.04-.53,1.23-1.28,2.35-2.23,3.3-.95.95-2.07,1.71-3.3,2.23-1.28.54-2.65.82-4.04.82ZM8.83,5.38h0l-1.36,1.36h.01s-.02.03-.02.03l3.97,3.97-3.7,3.7,1.38,1.38,5.01-5.01-.02-.02.07-.07h-.01s-5.33-5.34-5.33-5.34h0Z" fill="%23666"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 640px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .links::before {
    top: 0.05em;
    width: min(4.4vw, 18px);
    height: min(4.4vw, 18px);
  }
}
@media (min-width: 641px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .links::before {
    top: -0.15em;
    width: min(2.4vw, 21px);
    height: min(2.4vw, 21px);
  }
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .links a {
  color: var(--color-text);
  text-decoration: none;
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .note {
  background-color: #ebebeb;
  text-align: left;
}
@media (max-width: 640px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .note {
    margin-top: 7vw;
    padding: 7vw 7vw;
  }
}
@media (min-width: 641px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .note {
    margin-top: min(2.97029703vw, 30px);
    padding: min(3vw, 22px) min(5.445544554vw, 55px) min(1.98019802vw, 20px);
    border-radius: 10px;
  }
}
@media (max-width: 640px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .note .note-title {
    font-size: min(3.7vw, 15px);
    line-height: 1.6;
    margin-bottom: 0.8em;
  }
}
@media (min-width: 641px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .note .note-title {
    font-size: min(1.8vw, 14.4px);
    line-height: 1.6;
    margin-bottom: min(1.4vw, 14px);
  }
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .note .layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 min(5vw, 50px);
}
@media (max-width: 640px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .note .layout ul {
    font-size: min(3.2vw, 13px);
    line-height: 1.3;
  }
}
@media (min-width: 641px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .note .layout ul {
    font-size: 12px;
    line-height: 1.4;
  }
}
@media (max-width: 640px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .note .layout ul:not(:last-child) {
    margin-bottom: 0.5em;
  }
}
@media (min-width: 641px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .note .layout ul:not(:last-child) {
    margin-bottom: 0.4em;
  }
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .note .layout ul li {
  margin-left: 1em;
}
@media (max-width: 640px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .note .layout ul li:not(:last-child) {
    margin-bottom: 0.5em;
  }
}
@media (min-width: 641px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .note .layout ul li:not(:last-child) {
    margin-bottom: 0.4em;
  }
}
@media (max-width: 640px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .note .notice {
    margin-top: 1em;
  }
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .note .notice > div {
    font-size: min(3.2vw, 13px);
    line-height: 1.3;
    margin-bottom: 0.4em;
    margin-left: 1em;
  }
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .note .notice > div::before {
    content: "※";
    margin-left: -1em;
  }
}
@media (min-width: 641px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .note .notice {
    margin-top: min(1.4vw, 14px);
  }
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .note .notice > div {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 0.4em;
    margin-left: 1em;
  }
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .note .notice > div::before {
    content: "※";
    margin-left: -1em;
  }
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-title {
  text-align: left;
}
@media (max-width: 640px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-title {
    margin: 10vw 0 6vw;
    padding: 0 7vw;
    font-size: 3.7vw;
    line-height: 1.5;
  }
}
@media (min-width: 641px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-title {
    margin: 40px auto 25px 0;
    font-size: min(2vw, 16px);
    line-height: 1.8;
  }
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 640px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups {
    gap: 10vw;
    padding: 0 7vw;
  }
}
@media (min-width: 641px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups {
    gap: min(4.95049505vw, 50px);
    font-size: 18px;
  }
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty {
  text-align: left;
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .hdg-category-kitchen,
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .hdg-category-air,
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .hdg-category-light,
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .hdg-category-speaker,
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .hdg-category-cleaner {
  border-bottom: 1px solid #d9d9d9;
}
@media (max-width: 640px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .hdg-category-kitchen,
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .hdg-category-air,
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .hdg-category-light,
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .hdg-category-speaker,
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .hdg-category-cleaner {
    font-size: 3.282051282vw;
    padding-bottom: 1.282051282vw;
  }
}
@media (min-width: 641px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .hdg-category-kitchen,
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .hdg-category-air,
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .hdg-category-light,
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .hdg-category-speaker,
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .hdg-category-cleaner {
    font-size: 12.8px;
    padding-bottom: 5px;
  }
}
@media (max-width: 640px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .hdg-category-air {
    margin-bottom: 6vw;
  }
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .category-kitchen,
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .category-air {
  display: -ms-grid;
  display: grid;
}
@media (max-width: 640px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .category-kitchen,
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .category-air {
    -ms-grid-columns: 1fr 6.4vw 1fr 6.4vw 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 6.4vw;
  }
}
@media (min-width: 641px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .category-kitchen,
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .category-air {
    margin-top: 20px;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 20px 45px;
  }
}
@media (max-width: 640px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .category-others {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10vw;
  }
}
@media (min-width: 641px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .category-others {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 62px;
  }
}
@media (max-width: 640px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .category-light {
    width: 100%;
  }
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .category-speaker .lyt,
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .category-cleaner .lyt {
  margin-top: 20px;
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .light-lyt {
  margin-top: 20px;
}
@media (max-width: 640px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .light-lyt {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 6.4vw 1fr 6.4vw 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 6.4vw;
  }
}
@media (min-width: 641px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .light-lyt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 25px 55px;
  }
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .lyt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (min-width: 641px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .lyt.--pro {
    width: 81px;
  }
}
@media (min-width: 641px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .lyt.--plate {
    width: 76px;
  }
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .lyt__body {
  min-height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .lyt__head {
  font-size: 10px;
  line-height: 1.4;
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-slide .service .service-description .warranty-groups .warranty .lyt__name {
  text-align: center;
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-prev,
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-next {
  all: unset;
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(8vw, 64px);
  height: 100%;
  margin: auto;
  display: block;
  cursor: pointer;
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-prev::before,
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(5vw, 40px);
  height: min(5vw, 40px);
  border-right: 2px solid var(--color-white);
  border-top: 2px solid var(--color-white);
}
@media (max-width: 1012px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-prev {
    left: 2vw;
  }
}
@media (min-width: 1013px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-prev {
    left: calc(50vw - 425px - 60px);
  }
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-prev::before {
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
          transform: translate(-50%, -50%) rotate(-135deg);
}
@media (max-width: 1012px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-next {
    right: 2vw;
  }
}
@media (min-width: 1013px) {
  .overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-next {
    right: calc(50vw - 425px - 60px);
  }
}
.overlay .modal:has(.modal-data[data-modal-content=online-service].__active) .modal-data .slick .slick-next::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}