@charset "UTF-8";
/*------------------------------------------------------------
  reset.css customized
------------------------------------------------------------*/
*:where(:not(html):not(iframe):not(canvas):not(img):not(svg):not(video):not(audio):not(input[type="checkbox"]):not(input[type="radio"]):not(i):not(svg *):not(symbol *)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

a, button {
  cursor: revert;
}

img {
  height: auto;
  max-inline-size: 100%;
  max-block-size: 100%;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

input, textarea {
  -webkit-user-select: auto;
}

textarea {
  display: block;
  white-space: revert;
}

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

:root {
  --white: #fff;
  --light-gray: #efefef;
  --pale-gray: #dbdbdb;
  --yellow-gray: #7d796f;
  --brown: #b75608;
  --blue: #0006be;
  --green: #01a8a2;
  --beige: #eee9e5;
  --black: #000;
  --primary-color: var(--yellow-gray);
  --secondary-color: var(--beige);
  --accent-color: var(--brown);
  --base-gray-color: var(--yellow-gray);
  --base-text-color: var(--black);
  --base-border-color: var(--pale-gray);
}

/*------------------------------------------------------------
  setting
------------------------------------------------------------*/
html {
  font-size: 2.56410256vw;
}

@media screen and (min-width: 600px) {
  html {
    font-size: 1.30208333vw;
  }
}

@media screen and (min-width: 1024px) {
  html {
    font-size: 0.9765625vw;
  }
}

@media screen and (min-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}

@media screen and (min-width: 1366px) {
  html {
    font-size: 0.73206442vw;
  }
}

@media screen and (min-width: 1440px) {
  html {
    font-size: 0.69444444vw;
  }
}

@media screen and (min-width: 1536px) {
  html {
    font-size: 0.65104166vw;
  }
}

@media screen and (min-width: 1664px) {
  html {
    font-size: 0.60096153vw;
  }
}

@media screen and (min-width: 1792px) {
  html {
    font-size: 0.55803571vw;
  }
}

@media screen and (min-width: 1920px) {
  html {
    font-size: 0.52083333vw;
  }
}

@media screen and (min-width: 2560px) {
  html {
    font-size: 0.390625vw;
  }
}

body {
  position: relative;
  color: var(--base-text-color);
  font-size: 1.5rem;
  font-weight: 500;
  font-feature-settings: "palt";
}

body.is-fixed {
  overflow: hidden;
}

html[lang="ja"] body {
  font-family: "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-feature-settings: "palt";
  line-height: 1.86667;
  letter-spacing: 0;
}

p {
  line-break: strict;
}

a, button, ::file-selector-button {
  touch-action: manipulation;
  -weblit-user-select: none;
  user-select: none;
}

a {
  color: var(--base-text-color);
}

p a {
  transition: color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

p a:active:not(:disabled), p a:hover:not(:disabled) {
  color: var(--primary-color);
  transition-duration: 0.4s;
}

button, select {
  cursor: pointer;
}

picture, video, iframe {
  display: block;
}

.wp-post-image {
  height: auto;
}

figcaption {
  margin-top: 1.2rem;
}

@media screen and (min-width: 1024px) {
  figcaption {
    margin-top: 1.8rem;
  }
}

th {
  text-align: left;
}

caption {
  caption-side: bottom;
  margin-top: 1.5rem;
  font-size: 1.45rem;
  line-height: 1.71428571;
}

@media screen and (min-width: 1024px) {
  caption {
    margin-top: 2.5rem;
    font-size: 1.4rem;
  }
}

caption p + p {
  margin-top: 1rem;
}

caption li {
  padding-left: 1.7rem;
  text-indent: -1.7rem;
}

ul {
  list-style-type: '';
}

ol {
  margin-left: 1.8em;
}

@media screen and (max-width: 599px) {
  .md, .lg, .lg--small, .lg--medium, .lg--large {
    display: none !important;
  }
  .sm {
    display: revert !important;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .sm, .lg, .lg--small, .lg--medium, .lg--large {
    display: none !important;
  }
  .md {
    display: revert !important;
  }
}

@media screen and (min-width: 1024px) {
  .sm, .md, .lg--medium, .lg--large {
    display: none !important;
  }
  .lg, .lg--small {
    display: revert !important;
  }
}

@media screen and (min-width: 1280px) {
  .lg--small {
    display: none !important;
  }
  .lg--medium {
    display: revert !important;
  }
}

@media screen and (min-width: 1536px) {
  .lg--small, .lg--medium {
    display: none !important;
  }
  .lg--large {
    display: revert !important;
  }
}

.bg-lazy {
  background-image: none !important;
}

.se {
  pointer-events: none;
}

.se a {
  pointer-events: none;
}

.is-in {
  pointer-events: visible;
}

.is-in a {
  pointer-events: visible;
}

.fade {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 350ms;
  transition-timing-function: ease-in;
}

.is-in .fade, .is-in.fade {
  opacity: 1;
}

.delay--100 {
  transition-delay: 100ms;
  animation-delay: 100ms;
}

.delay--200 {
  transition-delay: 200ms;
  animation-delay: 200ms;
}

.delay--300 {
  transition-delay: 300ms;
  animation-delay: 300ms;
}

.delay--400 {
  transition-delay: 400ms;
  animation-delay: 400ms;
}

.delay--500 {
  transition-delay: 500ms;
  animation-delay: 500ms;
}

.delay--600 {
  transition-delay: 600ms;
  animation-delay: 600ms;
}

.delay--700 {
  transition-delay: 700ms;
  animation-delay: 700ms;
}

.delay--800 {
  transition-delay: 800ms;
  animation-delay: 800ms;
}

.delay--900 {
  transition-delay: 900ms;
  animation-delay: 900ms;
}

.delay--1000 {
  transition-delay: 1000ms;
  animation-delay: 1000ms;
}

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

/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

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

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

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

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

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

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

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

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

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

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

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

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

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

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

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

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

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Slide styles end */
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

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

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

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

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Navigation font end */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

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

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

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

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

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

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

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

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

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

/* Zoom container styles end */
.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

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

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

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

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

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

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

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

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

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

.swiper.swiper-cube {
  overflow: visible;
}

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

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

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

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

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

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

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

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

/* Cube slide shadows start */
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Cube slide shadows end */
.swiper.swiper-flip {
  overflow: visible;
}

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

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

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

/* Flip slide shadows start */
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Flip slide shadows end */
.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper.swiper-cards {
  overflow: visible;
}

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

/* customize */
.swiper {
  width: 100%;
}

.swiper-scrollbar {
  height: 0.2rem !important;
  border-radius: 0;
  background: var(--base-border-color);
}

@media screen and (min-width: 1024px) {
  .swiper-scrollbar {
    height: 0.3rem !important;
  }
}

.swiper-scrollbar-drag {
  border-radius: 0;
  background: var(--primary-color);
}

/*------------------------------------------------------------
  layout
------------------------------------------------------------*/
.l-container, .l-container--pt-0, .l-container--pb-0, .l-container--xs, .l-container--xs--pt-0, .l-container--xs--pb-0, .l-container--small, .l-container--small--pt-0, .l-container--small--pb-0 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

@media screen and (min-width: 600px) {
  .l-container, .l-container--pt-0, .l-container--pb-0, .l-container--xs, .l-container--xs--pt-0, .l-container--xs--pb-0, .l-container--small, .l-container--small--pt-0, .l-container--small--pb-0 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-container, .l-container--pt-0, .l-container--pb-0, .l-container--xs, .l-container--xs--pt-0, .l-container--xs--pb-0, .l-container--small, .l-container--small--pt-0, .l-container--small--pb-0 {
    padding-top: 16rem;
    padding-bottom: 16rem;
  }
}

.l-container--pt-0 {
  padding-top: 0;
}

.l-container--pb-0 {
  padding-bottom: 0;
}

.l-container--xs, .l-container--xs--pt-0, .l-container--xs--pb-0 {
  padding-top: 2.66667rem;
  padding-bottom: 2.66667rem;
}

@media screen and (min-width: 1024px) {
  .l-container--xs, .l-container--xs--pt-0, .l-container--xs--pb-0 {
    padding-top: 5.33333rem;
    padding-bottom: 5.33333rem;
  }
}

.l-container--xs--pt-0 {
  padding-top: 0;
}

.l-container--xs--pb-0 {
  padding-bottom: 0;
}

.l-container--small, .l-container--small--pt-0, .l-container--small--pb-0 {
  padding-top: 5.33333rem;
  padding-bottom: 5.33333rem;
}

@media screen and (min-width: 600px) {
  .l-container--small, .l-container--small--pt-0, .l-container--small--pb-0 {
    padding-top: 6.66667rem;
    padding-bottom: 6.66667rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-container--small, .l-container--small--pt-0, .l-container--small--pb-0 {
    padding-top: 10.66667rem;
    padding-bottom: 10.66667rem;
  }
}

.l-container--small--pt-0 {
  padding-top: 0;
}

.l-container--small--pb-0 {
  padding-bottom: 0;
}

.l-center, .l-center--small, .l-center--medium, .l-center--sm-small {
  margin-right: auto;
  margin-left: auto;
  padding-right: 3rem;
  padding-left: 3rem;
}

@media screen and (min-width: 600px) {
  .l-center, .l-center--small, .l-center--medium, .l-center--sm-small {
    padding-right: 4rem;
    padding-left: 4rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-center, .l-center--small, .l-center--medium, .l-center--sm-small {
    max-width: calc(120rem + 10rem);
    padding-right: 5rem;
    padding-left: 5rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-center--small {
    max-width: calc(100rem + 10rem);
  }
}

@media screen and (min-width: 1024px) {
  .l-center--medium {
    max-width: calc(140rem + 10rem);
  }
}

.l-center--sm-small {
  padding-right: 4.5rem;
  padding-left: 4.5rem;
}

@media screen and (min-width: 600px) {
  .l-center--sm-small {
    padding-right: 4rem;
    padding-left: 4rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-center--sm-small {
    padding-right: 5rem;
    padding-left: 5rem;
  }
}

/* ---------------------------
  header
--------------------------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transform: translate(0, -6rem);
  width: 100%;
  transition: transform 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (min-width: 1024px) {
  .l-header {
    transform: translate(0, -8rem);
  }
}

.is-scroll .l-header {
  transform: translate(0, 0);
}

.l-header .inner {
  display: flex;
  align-items: center;
  justify-content: end;
  position: relative;
  z-index: 300;
  width: 100%;
  height: 6rem;
  background: var(--white);
}

@media screen and (min-width: 1024px) {
  .l-header .inner {
    height: 8rem;
  }
}

.l-header .logo {
  display: block;
  position: relative;
  z-index: 300;
  transform: translate(0, 0.2rem);
  transform-origin: left center;
  width: 11.6rem;
  margin-right: auto;
  margin-left: 1rem;
  line-height: 1;
}

@media screen and (min-width: 1024px) {
  .l-header .logo {
    width: 14rem;
    margin-left: 3rem;
  }
}

.l-header .logo img, .l-header .logo svg {
  width: 100%;
  height: auto;
}

.l-header a:nth-of-type(2), .l-header a:nth-of-type(3) {
  display: grid;
  place-content: center;
  /* width: 10rem; */
  padding-left: 1rem;
  padding-right: 1rem;
  height: 4rem;
  border: .1rem solid #bfbfbf;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  transition: background 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.l-header a:nth-of-type(2){
  background-color: #f5a000;
  color: #fff;
  border:none;
}
/* .l-header a:nth-of-type(3){
  background-color: #f5a000;
  color: #fff;
  border:none;
} */

.l-header a:nth-of-type(2):active:not(:disabled), .l-header a:nth-of-type(2):hover:not(:disabled), .l-header a:nth-of-type(3):active:not(:disabled), .l-header a:nth-of-type(3):hover:not(:disabled) {
  background: #bfbfbf;
  color: var(--white);
  transition-duration: 0.4s;
}

@media screen and (min-width: 1024px) {
  .l-header a:nth-of-type(2), .l-header a:nth-of-type(3) {
    width: 25rem;
    height: 4rem;
    font-size: 1.3rem;
  }
}

/* @media screen and (min-width: 1024px) {
  .l-header a:nth-of-type(2) {
    grid-template-columns: repeat(3, auto);
  }
} */

.l-header a:nth-of-type(2) {
  margin-right: 1rem;
  margin-left: 1rem;
}
/* .l-header a:nth-of-type(3) {
  margin-right: 1rem;
  margin-left: 1rem;
} */

@media screen and (min-width: 1024px) {
  .l-header a:nth-of-type(2) {
    margin-right: 3rem;
    margin-left: 2rem;
  }
  /* .l-header a:nth-of-type(3) {
    margin-right: 3rem;
    margin-left: 2rem;
  } */
}

.l-main {
  overflow: hidden;
  position: relative;
}

/* ---------------------------
  footer
--------------------------- */
.l-footer {
  display: grid;
  position: relative;
  overflow: hidden;
  max-width: none;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media screen and (max-width: 599px) {
  .l-footer {
    gap: 3rem;
  }
}

@media screen and (min-width: 600px) {
  .l-footer {
    grid-template-columns: repeat(2, auto);
  }
}

@media screen and (min-width: 600px) {
  .l-footer > div:nth-of-type(1) {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: end;
    gap: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-footer > div:nth-of-type(1) {
    gap: 4.6rem;
  }
}

@media screen and (max-width: 599px) {
  .l-footer > div:nth-of-type(1) p {
    text-align: center;
  }
}

.l-footer > div:nth-of-type(1) p:nth-of-type(1) {
  margin-bottom: 1.4rem;
  font-size: 1.4rem;
}

.l-footer > div:nth-of-type(1) p:nth-of-type(2) {
  margin-bottom: .6rem;
  font-size: 1.3rem;
}

.l-footer > div:nth-of-type(1) p:nth-of-type(3) {
  font-size: 1.3rem;
}

.l-footer > div:nth-of-type(1) p:nth-of-type(4) {
  font-size: 1.3rem;
}

.l-footer > div:nth-of-type(2) div {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 1rem;
  width: fit-content;
  margin-bottom: 1.2rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 600px) {
  .l-footer > div:nth-of-type(2) div {
    margin-right: 0;
  }
}

.l-footer > div:nth-of-type(2) div a {
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 100%;
  background: var(--black);
  transition: background 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.l-footer > div:nth-of-type(2) div a:active:not(:disabled), .l-footer > div:nth-of-type(2) div a:hover:not(:disabled) {
  background: var(--primary-color);
  transition-duration: 0.4s;
}

.l-footer > div:nth-of-type(2) img {
  width: 1.4rem;
}

.l-footer > div:nth-of-type(2) > a {
  display: block;
  position: relative;
  width: fit-content;
  margin-bottom: 3.6rem;
  margin-right: auto;
  margin-left: auto;
  font-size: 1.2rem;
  transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 600px) {
  .l-footer > div:nth-of-type(2) > a {
    margin-right: 0;
  }
}

.l-footer > div:nth-of-type(2) > a:active:not(:disabled), .l-footer > div:nth-of-type(2) > a:hover:not(:disabled) {
  opacity: .7;
  transition-duration: 0.4s;
}

.l-footer > div:nth-of-type(2) > a:after {
  content: '';
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: .1rem;
  background: var(--base-text-color);
}

.l-footer > div:nth-of-type(2) p {
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  font-size: 1rem;
  letter-spacing: .1em;
}

@media screen and (min-width: 600px) {
  .l-footer > div:nth-of-type(2) p {
    margin-right: 0;
  }
}

.l-footer .logo {
  display: block;
  position: relative;
  width: 6rem;
  margin-right: auto;
  margin-left: auto;
  line-height: 1;
}

@media screen and (max-width: 599px) {
  .l-footer .logo {
    margin-bottom: 1.4rem;
  }
}

@media screen and (min-width: 600px) {
  .l-footer .logo {
    width: 8rem;
  }
}

.l-footer .logo img {
  width: 100%;
}

/*------------------------------------------------------------
  index
------------------------------------------------------------*/
.s-index .a-fv {
  position: relative;
  top: 0;
  left: 0;
  /* z-index: -1; */
  width: 100%;
  height: 100svh;
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 5%, #eee9e5 15%, #eee9e5 100%);
}

.s-index .a-fv .a-logo {
  height: 8rem;
  height: 80px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.s-index .a-fv .a-logo .logo-wrap {
  width: 150px;
  height: 150px;
  background-color: var(--white);
  border-radius: 0 0 2rem 0;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.s-index .a-fv .a-logo .logo-wrap img {
  width: 73px;
}

.s-index .a-fv .a-logo .shoulder {
  font-weight: bold;
  margin-right: 7rem;
  margin-left: auto;
  font-size: 1.6rem;
  border-bottom: 2px solid #000;
  padding-bottom: 0.2em;
}

@media screen and (max-width: 599px) {
  .s-index .a-fv {
    position: relative;
    top: inherit;
    left: inherit;
    width: 100%;
    height: auto;
    /* min-height: 100svh; */
    background: var(--secondary-color);
    padding-bottom: 10rem;
  }

  .s-index .a-fv .a-logo {
    height: auto;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    background-color: var(--white);
  }
  
  .s-index .a-fv .a-logo .logo-wrap {
    width: min(31.8%, 214px);
    height: auto;
    background-color: transparent;
    border-radius: 0;
    position: inherit;
    margin-left: 2rem;
    display: block;
  }
  
  .s-index .a-fv .a-logo .logo-wrap img {
    width: 100%;
  }
  
  .s-index .a-fv .a-logo .shoulder {
    margin-right: 2rem;
    font-size: 1.5rem;
  }
}

.s-index .a-fv .mv {
  padding-left: 7rem;
  padding-right: 7rem;
  position: relative;
}

.s-index .a-fv .mv img.mv-bg {
  width: 100%;
  height: calc(100svh - 230px);
  object-fit: cover;
  object-position: top 20rem;
}

.s-index .a-fv h1 {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  max-height: calc(100svh - 30rem);
  height: 33rem;
}

.s-index .a-fv h1 img {
  position: relative;
  /* top: 50%; */
  /* transform: translateY(-50%); */
}

@media screen and (max-width: 599px) {
  .s-index .a-fv .mv {
    display: none;
  }
  
  .s-index .a-fv .mv-sm {
    padding-top: 2.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .s-index .a-fv h1 {
    position: inherit;
    top: inherit;
    left: inherit;
    transform: none;
    height: auto;
    max-height: none;
  }
  
  .s-index .a-fv h1 img {
    position: inherit;
    top:inherit;
    transform: inherit;
    width: 100%;
  }
}

.s-index .a-fv .sub-title {
  text-align: center;
  height: 150px;
  /* max-height: 150px; */
  /* padding: 2vw 0; */
  display: flex;
  flex-direction: column;
  justify-content: center;

}
.s-index .a-fv .sub-title h2 {
  font-size: 2.5rem;
  font-weight: bold;
}
.s-index .a-fv .sub-title h2 span {
  color: var(--accent-color);
}
.s-index .a-fv .sub-title p {
  font-size: 2rem;
}

@media screen and (max-width: 599px) {
  .s-index .a-fv .sub-title {
    height: auto;
    display: inherit;
    margin-top: 2rem;
  }
  .s-index .a-fv .sub-title h2 {
    font-size: 2rem;
  }
  .s-index .a-fv .sub-title p {
    font-size: 1.7rem;
  }
}

.s-index .a-fv .scroll {
  position  : absolute;
  font-size : 1.3rem;
  writing-mode : vertical-rl;
  bottom : 14rem;
  right : 2.5rem;
}
.s-index .a-fv .scroll::before,
.s-index .a-fv .scroll::after {
  content : '';
  display : inline-block;
  position : absolute;
  background-color: #b4b4b4;
  right : 50%;
  bottom : -10rem;
  transform : translateX(-50%);
  width : 1px;
  height : 9rem;
}
.s-index .a-fv .scroll::after {
  background-color: #000;
  animation: scroll 1.5s infinite;
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@media screen and (max-width: 599px) {
  .s-index .a-fv .scroll {
    writing-mode : inherit;
    bottom : 1rem;
    right : 50%;
    transform : translateX(50%);
  }
  .s-index .a-fv .scroll::before,
  .s-index .a-fv .scroll::after {
    bottom : 2rem;
    height : 5rem;
  }
}

.a-what {
  background: var(--secondary-color);
  padding-top: 3rem;
  text-align: center;
}
.a-what h2 {
  font-family: "Shippori Mincho", serif;
  font-weight: normal;
  font-size: 3rem;
  margin-top: 11rem;
  margin-bottom: 5rem;
  position: relative;
}
.a-what h2::before {
  display: block;
  content: "";
  height: 2px;
  width: 3rem;
  background-color: var(--accent-color);
  margin-bottom: 2rem;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.a-what p {
  line-height: 2;
}
.a-what .column-wrap {
  display: flex;
  justify-content: center;
  margin-top: 6rem;
  margin-bottom: 9rem;
}
.a-what .column-wrap .column-cont {
  padding-left: min(5rem, 5%);
  padding-right: min(5rem, 5%);
}
.a-what .column-wrap .column-cont:first-child {
  border-right: 1px solid #d7cbc2;
}
.a-what .column-wrap .column-cont .label {
  background-color: var(--accent-color);
  border-radius: 100%;
  width: 7rem;
  height: 7rem;
  color: var(--white);
  font-size: 1.6rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.a-what .column-wrap .column-cont h3 {
  font-family: "Shippori Mincho", serif;
  font-weight: normal;
  font-size: 2.2rem;
  line-height: 1.615;
}
.a-what .column-wrap .column-cont h3 span {
  color: var(--accent-color);
}

@media screen and (min-width: 1280px) {
  .a-what .column-wrap .column-cont h3 {
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 599px) {
  .a-what {
    padding-top: 7rem;
  }
  .a-what h2 {
    font-size: 2.8rem;
    margin-top: 9rem;
    margin-bottom: 2rem;
    text-align: left;
  }
  .a-what h2::before {
    left: 0;
    transform: none;
    margin-bottom: 1rem;
  }
  .a-what p {
    text-align: left;
  }
  .a-what .column-wrap {
    display:  block;
    margin-top: 2rem;
    margin-bottom: 6rem;
  }
  .a-what .column-wrap .column-cont {
    padding-left: 0;
    padding-right: 0;
  }
  .a-what .column-wrap .column-cont:first-child {
    border-bottom: 1px solid #d7cbc2;
    border-right: none;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
  }
  .a-what .column-wrap .column-cont h3 {
    font-size: 2.1rem;
  }
}


.a-life .column-wrap {
  /* display: flex;
  justify-content: space-between; */
  max-width: calc(110rem + 10rem);
  margin-bottom: -4rem;
  position: relative;
  z-index: 1;
}
.a-life h2 {
  font-family: "Shippori Mincho", serif;
  font-weight: normal;
  font-size: 2.6rem;
  line-height: 1.666;
  margin-bottom: 3rem;
  margin-right: 1em;
  white-space: nowrap;
}
.a-life h2::before {
  display: block;
  content: "";
  height: 2px;
  width: 3rem;
  background-color: var(--accent-color);
  margin-bottom: 2rem;
}
.a-life .point {
  font-family: "Shippori Mincho", serif;
  font-weight: normal;
  font-size: 1.8rem;
  margin-top: 3rem;
  margin-bottom: 6rem;
}
.a-life .point b {
  display: inline;
  padding: 0 4px 4px 4px;
  background: linear-gradient(transparent 85%, #f6bc96 0%);
}
.a-life .point span {
  color: var(--accent-color);
  font-weight: 500;
}

.a-life .life-img img {
  width: 100%;
}

@media screen and (min-width: 1280px) {
  .a-life h2 {
    font-size: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .a-life .column-wrap {
    display: flex;
    justify-content: space-between;
  }
}

@media screen and (max-width: 599px) {
  .a-life .column-wrap {
    display: block;
    margin-bottom: -8rem;
  }
  .a-life h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    margin-right: 0;
  }
  .a-life h2::before {
    margin-bottom: 1rem;
  }
  .a-life .point {
    font-size: 1.8rem;
    margin-bottom: 4rem;
    line-height: 2.222;
  }
}



.a-manager {
  padding-top: 4rem;
  padding-bottom: 7rem;
}

.a-manager .inner {
  width: 780px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 21rem 1fr;
}

.a-manager h2 {
  margin-bottom: 3.5rem;
  grid-column: span 2 / span 2;
}

.a-manager .name {
  font-size: 3.4rem;
  font-family: "Shippori Mincho", serif;
  line-height: 1em;
  font-weight: normal;
  grid-row: span 2 / span 2;
  grid-row-start: 2;
  width: 21rem;
}

.a-manager .name span {
  display: block;
  font-size: 1.3rem;
  font-family: initial;
  color: var(--accent-color);
}

.a-manager .title {
  font-size: 1.4rem;
  grid-row-start: 2;
}

.a-manager .title::after {
  display: block;
  content: "";
  height: 1px;
  width: 3rem;
  background-color: #c8c8c8;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.a-manager .profile {
  grid-column-start: 2;
  grid-row-start: 3;
}

@media screen and (max-width: 599px) {
  .a-manager {
    padding-top: 0;
    padding-bottom: 4rem;
  }

  .a-manager .inner {
    display: block;
  }
  
  .a-manager h2 {
    margin-bottom: 2.6rem;
  }

  .a-manager h2 img {
    width: 100%;
  }
  
  .a-manager .name {
    font-size: 2.8rem;
    width: auto;
    text-align: center;
    margin-bottom: 1.3rem;
  }
    
  .a-manager .title {
    text-align: center;
  }
  
  .a-manager .title::after {
    margin-top: 2rem;
    margin-bottom: 2rem;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

}

.s-index .a-mind {
  background: var(--secondary-color);
  padding-bottom: 10rem;
  padding-top: 15rem;
  position: relative;
  margin-top: 26rem;
}

.a-mind .a-movie {
  width: 870px;
  max-width: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%) translateY(-64%);
}

.a-mind .a-movie .video-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.a-mind .a-movie .video-wrap iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 599px) {
  .s-index .a-mind {
    padding-bottom: 7rem;
    padding-top: 12rem;
    margin-top: 10rem;
  }
  .a-mind .a-movie {
    transform: translateX(-50%) translateY(-10rem);
  }
}

.s-index .a-mind .swiper-buttons {
  display: flex;
  justify-content: end;
  gap: 1rem;
  position: relative;
  margin-bottom: 1rem;
}

.s-index .a-mind .swiper {
  overflow: visible;
}

.s-index .a-mind .swiper-button-prev,
.s-index .a-mind .swiper-button-next {
  display: grid;
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  place-items: center;
  width: 4.6rem;
  height: 4.6rem;
  margin: 0;
  padding-bottom: .3rem;
  border-radius: 100%;
  background: rgba(255, 255, 255, 1);
  transition: background 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.s-index .a-mind .swiper-button-prev:active:not(:disabled), .s-index .a-mind .swiper-button-prev:hover:not(:disabled),
.s-index .a-mind .swiper-button-next:active:not(:disabled),
.s-index .a-mind .swiper-button-next:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.5);
  transition-duration: 0.4s;
}

.s-index .a-mind .swiper-button-prev:after,
.s-index .a-mind .swiper-button-next:after {
  content: none;
}

.s-index .a-mind .swiper-button-prev svg,
.s-index .a-mind .swiper-button-next svg {
  width: 1.2rem;
  height: auto;
}

.s-index .a-mind .swiper-button-prev svg {
  transform: scale(-1, 1);
}

.s-index .a-mind .swiper-slide {
  width: 90%;
  padding: 1.2rem 3.4rem 2rem;
  border-left: 0.1rem solid #d8d8d8;
}

@media screen and (min-width: 600px) {
  .s-index .a-mind .swiper-slide {
    width: 50rem;
  }
}

.s-index .a-mind p:nth-of-type(1) {
  margin-bottom: 2.2rem;
  color: var(--black);
  font-size: 1.6rem;
  font-weight: 100;
  font-family: "Montserrat", "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.s-index .a-mind p:nth-of-type(2) {
  color: var(--black);
  font-size: 1.5rem;
}

.s-index .a-mind h3 {
  margin-bottom: 1.4rem;
  color: var(--black);
  font-size: 2rem;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
}

.a-flow {
  max-width: 930px;
}

.a-flow h2 {
  font-size: 3rem;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  text-align: center;
  margin-bottom: 8rem;
}

.a-flow h2::before {
  display: block;
  content: "";
  width: 3rem;
  height: 2px;
  background-color: var(--accent-color);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 1rem;
}

.a-flow .lead {
}

.a-flow .lead p {
  text-align: center;
  margin-bottom: 1em;
}

.a-flow .lead p span {
  color: var(--accent-color);
}

.a-flow .step {
  list-style: none;
  margin: 5rem 0 9rem;
  position: relative;
}

.a-flow .step li {
  background-color: var(--beige);
  border-radius: 1rem;
  display: flex;
  min-height: 120px;
  margin-bottom: 5rem;
}
.a-flow .step::after {
  display: block;
  content: "";
  width: 6px;
  height: 100%;
  background-color: var(--secondary-color);
  position: absolute;
  top: 0;
  left: calc(50% - 3px);
  z-index: -1;
}
.a-flow .step li .number {
  background-color: var(--base-gray-color);
  border-radius: 1rem 0 0 1rem;
  color: var(--white);
  font-family: "Montserrat", "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  width: 11rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 4.4rem;
  line-height: 1em;
  flex-shrink: 0;
}
.a-flow .step li .number span {
  font-size: 1.2rem;
  height: 2rem;
  line-height: 2rem;
}
.a-flow .step li .cont {
  padding: 2rem 4rem;
}
.a-flow .step li h3 {
  font-size: 2.2rem;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  margin-bottom: 0.3em;
}
.a-flow .step li h3 span {
  font-size: 1.6rem;
}

@media screen and (max-width: 599px) {  
  .a-flow h2 {
    margin-bottom: 1em;
  }
  
  .a-flow h2::before {
    left: 0;
    transform: none;
  }  
  .a-flow .lead p {
    text-align: left;
  }  
  .a-flow .step {
    list-style: none;
    margin: 1em 0 5rem;
  }
  .a-flow .step li {
    display: block;
    margin-bottom: 3rem;
  }
  .a-flow .step li .number {
    border-radius: 1rem 1rem 0 0;
    width: 100%;
    font-size: 3rem;
    padding-top: 0.2em;
    padding-bottom: 0.2em;
  }
  .a-flow .step li .cont {
    padding: 1.5rem 2rem;
  }
  .a-flow .step li h3 {
    font-size: 2rem;
    text-align: center;
    line-height: 1.4em;
  }
  .a-flow .step li h3 span {
    font-size: 1.4rem;
    line-height: 1em;
    display: block;
  }
}


.a-lounge {
  max-width: calc(110rem + 10rem);
}
.a-lounge h2 {
  font-size: 3rem;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  margin-bottom: 7rem;
}
.a-lounge h2::before {
  display: block;
  content: "";
  width: 3rem;
  height: 2px;
  background-color: var(--accent-color);
  margin-bottom: 1rem;
}
.a-lounge .column-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7rem;
}
.a-lounge .column-wrap .column-cont {
  flex-basis: 53rem;
  margin-right: 1em;
}
.a-lounge .column-wrap .column-cont ul {
  margin-top: -2rem;
}
.a-lounge .column-wrap .column-cont li {
  border-bottom: 1px dotted var(--base-gray-color);
  padding: 2rem 1rem;
  font-size: 1.4rem;
  display: flex;
}
.a-lounge .column-wrap .column-cont li span {
  font-weight: bold;
  width: 9rem;
}
.a-lounge .map {
  height: 55rem;
}
.a-lounge .map iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 599px) { 
  .a-lounge h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
  }
  .a-lounge .column-wrap {
    flex-direction: column-reverse;
    margin-bottom: 2rem;
  }
  .a-lounge .column-wrap .column-cont {
    flex-basis: inherit;
    margin-bottom: 2rem;
    margin-right: 0;
  }
  .a-lounge .column-wrap .column-cont ul {
    margin-top: inherit;
  }
  .a-lounge .column-wrap .column-cont li {
    display: block;
  }
  .a-lounge .column-wrap .column-cont li span {
    width: auto;
    display: block;
  }
  .a-lounge .map {
    height: 30rem;
    margin: 0 calc(50% - 50vw);
  }
}


.a-info {
}
.a-info .info-img {
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 5%, #eee9e5 15%, #eee9e5 100%);
}
.a-info .info-img img {
  width: 100%;
}
.a-info .info-cards {
  background-color: var(--secondary-color);
  padding-bottom: 15rem;
  padding-top: 12rem;
  padding-left: 3rem;
  padding-right: 3rem;
}
.a-info .info-cards ol {
  margin-bottom: 10rem;
  list-style: none;
  display: flex;
  gap: 6.5rem min(5rem, 3%);
  flex-wrap: wrap;
  justify-content: center;
  margin-left: 0;
}
.a-info .info-cards ol li {
  width: min(350px, calc((100vw - 22rem) / 3));
  background-color: var(--white);
  padding: 6rem 3rem 2rem;
  position: relative;
}
.a-info .info-cards ol li .number {
  font-family: "Montserrat", "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 4rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.a-info .info-cards ol li h3 {
  font-size: 2.1rem;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  line-height: 1.333;
  text-align: center;
}
.a-info .info-cards ol li .icon {
  height: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 599px) {
  .a-info .info-cards {
    padding-bottom: 9rem;
    padding-top: 8rem;
    padding-left: 3rem;
    padding-right: 3rem;
    
  }
  .a-info .info-cards ol {
    margin-bottom: 5rem;
    display: block;
  }
  .a-info .info-cards ol li {
    width: 100%;
    margin-bottom: 5rem;
    padding: 5rem 3rem 2rem;
  }
}



.s-index .a-reason h2 {
  width: 33rem;
  margin-bottom: 5.6rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 1024px) {
  .s-index .a-reason h2 {
    width: 46rem;
    margin-bottom: 4rem;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-reason div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.s-index .a-reason p {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.6rem;
  padding-top: 1.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 0.1rem solid var(--base-border-color);
}

@media screen and (min-width: 1024px) {
  .s-index .a-reason p {
    gap: 3.6rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

@media screen and (max-width: 599px) {
  .s-index .a-reason p:nth-of-type(1) {
    border-top: 0.1rem solid var(--base-border-color);
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-reason p:nth-of-type(2n) {
    position: relative;
    padding-left: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-reason p:nth-of-type(2n) {
    padding-left: 4rem;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-reason p:nth-of-type(2n):before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: .1rem;
    height: 70%;
    background: var(--base-border-color);
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-reason p:nth-of-type(2n):before {
    height: 60%;
  }
}

.s-index .a-reason p span:nth-of-type(1) {
  display: inline-block;
  transform: translate(0, 0.4rem);
  font-size: 1.8rem;
  font-weight: 100;
  font-family: "Montserrat", "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

@media screen and (min-width: 1024px) {
  .s-index .a-reason p span:nth-of-type(1) {
    font-size: 2.2rem;
  }
}

.s-index .a-reason p span:nth-of-type(2) {
  margin-right: -1rem;
  font-size: 2.2rem;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  line-height: 1.81818181;
}

@media screen and (min-width: 1024px) {
  .s-index .a-reason p span:nth-of-type(2) {
    font-size: 2.6rem;
  }
}

.s-index .a-reason b {
  padding-right: .6rem;
  padding-left: .6rem;
  background: var(--secondary-color);
  color: #b75608;
}

.s-index .a-reason small {
  font-size: 1.8rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-reason small {
    font-size: 2rem;
  }
}

.s-index .a-plannner {
  display: grid;
  gap: 4rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-plannner {
    grid-template-columns: repeat(3, 1fr);
    place-content: center;
    gap: 2rem;
    margin-right: -2rem;
    margin-left: -2rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-plannner {
    gap: 4rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-plannner {
    gap: 10rem;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (max-width: 599px) {
  .s-index .a-plannner article {
    width: 30rem;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-plannner article {
    width: 30rem;
  }
}

.s-index .a-features {
  display: grid;
  gap: 3rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-features {
    gap: 4rem;
  }
}

.s-index .a-features h2 {
  width: 27rem;
  margin-bottom: 1rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 1024px) {
  .s-index .a-features h2 {
    width: 31rem;
  }
}

.s-index .a-features > section {
  padding: 3rem 2rem;
  background: var(--secondary-color);
}

@media screen and (min-width: 600px) {
  .s-index .a-features > section {
    display: grid;
    grid-template-columns: 10% 1fr;
    gap: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-features > section {
    grid-template-columns: 8% 1fr;
    gap: 4rem;
    padding: 5rem 4rem;
  }
}

.s-index .a-features > section:nth-of-type(4) > div {
  display: grid;
  gap: 2rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-features > section:nth-of-type(4) > div {
    grid-template-columns: 1fr 40%;
    gap: 4%;
  }
}

.s-index .a-features > section:nth-of-type(6) > div > div {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-features > section:nth-of-type(6) > div > div {
    grid-template-columns: 1fr 40%;
    gap: 1rem 4%;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-features > section:nth-of-type(6) > div > div {
    margin-bottom: 3rem;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-features > section:nth-of-type(6) > div figure {
    grid-row: 1 / 3;
    grid-column: 2 / 3;
  }
}

.s-index .a-features > section:nth-of-type(6) > div > p {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
  text-align: center;
}

.s-index .a-features > section:nth-of-type(6) > div > p span {
  border-bottom: .4rem solid #f6bc96;
}

.s-index .a-features > section > p {
  display: grid;
  margin-bottom: 2rem;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.2;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .s-index .a-features > section > p {
    grid-template-columns: repeat(2, auto);
    align-items: start;
    gap: .4rem;
  }
}

.s-index .a-features > section > p span:nth-of-type(1) {
  font-size: 1.3rem;
  font-weight: 100;
  font-family: "Montserrat", "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

@media screen and (min-width: 600px) {
  .s-index .a-features > section > p span:nth-of-type(1) {
    transform: translate(0, 0.8rem);
    writing-mode: vertical-rl;
  }
}

.s-index .a-features > section > p span:nth-of-type(2) {
  font-size: 4rem;
  font-family: "Montserrat", "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

@media screen and (min-width: 1024px) {
  .s-index .a-features > section > p span:nth-of-type(2) {
    font-size: 4.4rem;
  }
}

.s-index .a-features > section > div {
  border-top: .2rem solid #dacfc5;
}

@media screen and (max-width: 599px) {
  .s-index .a-features > section > div {
    padding-top: 1.8rem;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-features > section > div {
    padding-left: 2rem;
    border-top: none;
    border-left: .2rem solid #dacfc5;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-features > section > div {
    padding-left: 4rem;
  }
}

.s-index .a-features > section section {
  padding: 2rem 0;
  border-top: .1rem solid #dacfc5;
}

@media screen and (min-width: 600px) {
  .s-index .a-features > section section {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 4%;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-features > section section {
    align-items: center;
    padding: 3rem 0;
  }
}

.s-index .a-features > section section:nth-of-type(1) {
  border-top: none;
}

@media screen and (min-width: 600px) {
  .s-index .a-features > section section div {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
  }
}

.s-index .a-features h3 {
  margin-bottom: 1.4rem;
  font-size: 2.2rem;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  line-height: 1.81818181;
}

@media screen and (max-width: 599px) {
  .s-index .a-features h3 {
    text-align: center;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-features h3 {
    font-size: 2.6rem;
  }
}

.s-index .a-features h4 {
  display: grid;
  place-items: center;
  height: 4rem;
  margin-bottom: 1.6rem;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.7rem;
  font-weight: 500;
}

@media screen and (min-width: 600px) {
  .s-index .a-features h4 {
    width: fit-content;
    height: 3.2rem;
    padding-right: 1.2rem;
    padding-left: 1.2rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-features h4 {
    font-size: 1.6rem;
  }
}

.s-index .a-features h4 + p {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.66666666;
}

@media screen and (max-width: 599px) {
  .s-index .a-features h4 + p {
    margin-bottom: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-features h4 + p {
    font-size: 1.7rem;
  }
}

.s-index .a-features .a-txt h4 {
  background-color: #f5a000;
  color: #fff;
  text-align: center;
  width: 100%;
  height: auto;
  font-size: 2rem;
  margin-top: 5rem;
  margin-bottom: 0;
  padding-top: .7rem;
  padding-bottom: .7rem;
}

.s-index .a-features .a-txt p {
  background-color: #fff;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.86;
  padding: 3rem 4rem;
}

@media screen and (max-width: 599px) {
  .s-index .a-features .a-txt h4 {
    line-height: 1.444;
  }
  .s-index .a-features .a-txt p {
  padding: 1.8rem;
}
}


.a-contact .btn {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 830px;
  height: 7rem;
  margin-bottom: 6rem;
  margin-right: auto;
  margin-left: auto;
  border-radius: 1rem;
  background: #f5a000;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  transition: background 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .a-contact .btn {
    height: 8rem;
    font-size: 2rem;
  }
}

@media screen and (max-width: 599px) {
  .a-contact .btn {
    margin-bottom: 3rem;
  }
}

.a-contact .btn:active:not(:disabled), .a-contact .btn:hover:not(:disabled) {
  background: #bfbfbf;
  transition-duration: 0.4s;
}

@media screen and (max-width: 599px) {
  .s-index .a-contact .tel {
    display: block;
    background-color: #fff;
    border-radius: 1rem;
    border: 2px solid #eee9e5;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.s-index .a-contact > .tel h3 {
  display: grid;
  gap: 1rem;
  width: fit-content;
  margin-bottom: 1rem;
  margin-right: auto;
  margin-left: auto;
  font-size: 2.2rem;
  font-weight: 700;
}

@media screen and (max-width: 599px) {
  .s-index .a-contact > .tel h3 {
    place-items: center;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-contact > .tel h3 {
    grid-template-columns: repeat(2, auto);
    align-items: center;
  }
}

.s-index .a-contact > .tel img {
  width: 2.2rem;
}

.s-index .a-contact > .tel small {
  font-size: 2rem;
}

.s-index .a-contact > .tel p:nth-of-type(1) {
  display: block;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  font-size: 3.6rem;
  font-weight: 400;
  font-family: "Montserrat", "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.3;
}

@media screen and (min-width: 600px) {
  .s-index .a-contact > .tel p:nth-of-type(1) {
    transition: color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-contact > .tel p:nth-of-type(1) {
    font-size: 5rem;
  }
}

.s-index .a-contact > .tel p:nth-of-type(2) {
  font-size: 1.4rem;
  text-align: center;
}

/*------------------------------------------------------------
  utility
------------------------------------------------------------*/
.u-dis-none {
  display: none !important;
}

.u-dis-block {
  display: block !important;
}

.u-dis-ib {
  display: inline-block !important;
}

.u-of-hidden {
  overflow: hidden;
}

.u-pos-relative {
  position: relative;
}

.u-opa-0 {
  opacity: 0;
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-mr-0 {
  margin-right: 0 !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-ml-0 {
  margin-left: 0 !important;
}

@media screen and (min-width: 600px) {
  .u-md-mt-0 {
    margin-top: 0 !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-mt-0 {
    margin-top: 0 !important;
  }
}

@media screen and (min-width: 600px) {
  .u-md-mb-0 {
    margin-bottom: 0 !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-mb-0 {
    margin-bottom: 0 !important;
  }
}

.u-mt-xxxs {
  margin-top: 0.5rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-xxxs {
    margin-top: 0.75rem !important;
  }
}

.u-mt-xxs {
  margin-top: 1rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-xxs {
    margin-top: 1.5rem !important;
  }
}

.u-mt-xs {
  margin-top: 2rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-xs {
    margin-top: 3rem !important;
  }
}

.u-mt-small {
  margin-top: 3rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-small {
    margin-top: 4.5rem !important;
  }
}

.u-mt-medium {
  margin-top: 4rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-medium {
    margin-top: 6rem !important;
  }
}

.u-mt-large {
  margin-top: 7rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-large {
    margin-top: 10.5rem !important;
  }
}

.u-mt-minus-xxxs {
  margin-top: -0.5rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-minus-xxxs {
    margin-top: -0.75rem !important;
  }
}

.u-mt-minus-xxs {
  margin-top: -1rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-minus-xxs {
    margin-top: -1.5rem !important;
  }
}

.u-mt-minus-xs {
  margin-top: -2rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-minus-xs {
    margin-top: -3rem !important;
  }
}

.u-mt-minus-small {
  margin-top: -3rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-minus-small {
    margin-top: -4.5rem !important;
  }
}

.u-mt-minus-medium {
  margin-top: -4rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-minus-medium {
    margin-top: -6rem !important;
  }
}

.u-mt-minus-large {
  margin-top: -7rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-minus-large {
    margin-top: -10.5rem !important;
  }
}

.u-mb-xxxs {
  margin-bottom: 0.5rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-xxxs {
    margin-bottom: 0.75rem !important;
  }
}

.u-mb-xxs {
  margin-bottom: 1rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-xxs {
    margin-bottom: 1.5rem !important;
  }
}

.u-mb-xs {
  margin-bottom: 2rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-xs {
    margin-bottom: 3rem !important;
  }
}

.u-mb-small {
  margin-bottom: 3rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-small {
    margin-bottom: 4.5rem !important;
  }
}

.u-mb-medium {
  margin-bottom: 4rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-medium {
    margin-bottom: 6rem !important;
  }
}

.u-mb-large {
  margin-bottom: 7rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-large {
    margin-bottom: 10.5rem !important;
  }
}

.u-mb-minus-xxxs {
  margin-bottom: -0.5rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-minus-xxxs {
    margin-bottom: -0.75rem !important;
  }
}

.u-mb-minus-xxs {
  margin-bottom: -1rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-minus-xxs {
    margin-bottom: -1.5rem !important;
  }
}

.u-mb-minus-xs {
  margin-bottom: -2rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-minus-xs {
    margin-bottom: -3rem !important;
  }
}

.u-mb-minus-small {
  margin-bottom: -3rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-minus-small {
    margin-bottom: -4.5rem !important;
  }
}

.u-mb-minus-medium {
  margin-bottom: -4rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-minus-medium {
    margin-bottom: -6rem !important;
  }
}

.u-mb-minus-large {
  margin-bottom: -7rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-minus-large {
    margin-bottom: -10.5rem !important;
  }
}

.u-pt-0 {
  padding-top: 0 !important;
}

.u-pr-0 {
  padding-right: 0 !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-pl-0 {
  padding-left: 0 !important;
}

.u-pt-xxxs {
  padding-top: 0.5rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pt-xxxs {
    padding-top: 0.75rem !important;
  }
}

.u-pt-xxs {
  padding-top: 1rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pt-xxs {
    padding-top: 1.5rem !important;
  }
}

.u-pt-xs {
  padding-top: 2rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pt-xs {
    padding-top: 3rem !important;
  }
}

.u-pt-small {
  padding-top: 3rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pt-small {
    padding-top: 4.5rem !important;
  }
}

.u-pt-medium {
  padding-top: 4rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pt-medium {
    padding-top: 6rem !important;
  }
}

.u-pt-large {
  padding-top: 7rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pt-large {
    padding-top: 10.5rem !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-pt-0 {
    padding-top: 0 !important;
  }
}

.u-pb-xxxs {
  padding-bottom: 0.5rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pb-xxxs {
    padding-bottom: 0.75rem !important;
  }
}

.u-pb-xxs {
  padding-bottom: 1rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pb-xxs {
    padding-bottom: 1.5rem !important;
  }
}

.u-pb-xs {
  padding-bottom: 2rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pb-xs {
    padding-bottom: 3rem !important;
  }
}

.u-pb-small {
  padding-bottom: 3rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pb-small {
    padding-bottom: 4.5rem !important;
  }
}

.u-pb-medium {
  padding-bottom: 4rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pb-medium {
    padding-bottom: 6rem !important;
  }
}

.u-pb-large {
  padding-bottom: 7rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pb-large {
    padding-bottom: 10.5rem !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-pb-0 {
    padding-bottom: 0 !important;
  }
}

.u-br-small {
  border-radius: 1rem;
}

.u-br-medium {
  border-radius: 2rem;
}

@media screen and (min-width: 1024px) {
  .u-br-medium {
    border-radius: 4rem;
  }
}

.u-col-white {
  color: var(--white);
}

.u-col-gray {
  color: #555;
}

.u-col-black {
  color: var(--black);
}

.u-col-blue {
  color: var(--blue);
}

.u-col-green {
  color: var(--green);
}

.u-col-yellow {
  color: #EEBF18;
}

.u-col-red {
  color: #E63D5B;
}

.u-col-primary {
  color: var(--primary-color);
}

.u-col-secondary {
  color: var(--secondary-color);
}

.u-fs-0 {
  font-size: 0;
}

.u-fs-xs {
  font-size: .85714285em;
}

@media screen and (min-width: 1024px) {
  .u-fs-xs {
    font-size: .8125em;
  }
}

.u-fs-small {
  font-size: .92857142em;
}

@media screen and (min-width: 1024px) {
  .u-fs-small {
    font-size: .875em;
  }
}

.u-fs-medium {
  font-size: 1.07142857em;
}

@media screen and (min-width: 1024px) {
  .u-fs-medium {
    font-size: 1.125em;
  }
}

.u-fs-large {
  font-size: 1.14285714em;
}

@media screen and (min-width: 1024px) {
  .u-fs-large {
    font-size: 1.25em;
  }
}

.u-fw-100 {
  font-weight: 100;
}

.u-fw-200 {
  font-weight: 200;
}

.u-fw-300 {
  font-weight: 300;
}

.u-fw-400 {
  font-weight: 400;
}

.u-fw-500 {
  font-weight: 500;
}

.u-fw-600 {
  font-weight: 600;
}

.u-fw-700 {
  font-weight: 700;
}

.u-fw-800 {
  font-weight: 800;
}

.u-fw-900 {
  font-weight: 900;
}

.u-lh-1 {
  line-height: 1 !important;
}

.u-ls-minus-small {
  letter-spacing: -0.5em !important;
}

.u-ls-0 {
  letter-spacing: 0 !important;
}

@media screen and (min-width: 1024px) {
  .u-lg-ls-0 {
    letter-spacing: 0 !important;
  }
}

.u-ta-center {
  text-align: center !important;
}

@media screen and (max-width: 599px) {
  .u-sm-ta-center {
    text-align: center !important;
  }
}

@media screen and (min-width: 600px) {
  .u-md-ta-center {
    text-align: center !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-ta-center {
    text-align: center !important;
  }
}

.u-ta-right {
  text-align: right !important;
}

@media screen and (min-width: 600px) {
  .u-md-ta-right {
    text-align: right !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-ta-right {
    text-align: right !important;
  }
}

.u-ta-left {
  text-align: left !important;
}

@media screen and (min-width: 600px) {
  .u-md-ta-left {
    text-align: left !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-ta-left {
    text-align: left !important;
  }
}

.u-ws-nowrap {
  white-space: nowrap;
}

.u-pe-none {
  pointer-events: none !important;
}

/*# sourceMappingURL=style.css.map */