@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(svg *):not(symbol *)) {
  all: unset;
  display: revert;
}

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

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;
  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;
  user-select: auto;
  line-break: after-white-space;
  -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;
  --gray: #e5e5e6;
  --black: #333333;
  --gold: #b59948;
  --red: #c30d23;
  --primary-color: var(--gold);
  --secondary-color: var(--red);
  --base-gray-color: var(--gray);
  --base-text-color: var(--black);
  --base-border-color: var(--black);
  --hover-arrow-default-translate-x: 0;
  --hover-arrow-direction-1: 1rem;
  --hover-arrow-direction-2: -1rem;
}

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

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

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

@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: 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.4rem;
  font-weight: 700;
  font-family: "Shippori Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-feature-settings: "palt";
  line-height: 1.64286;
  letter-spacing: 0.08em;
}

body.is-fixed {
  overflow: hidden;
}

@media screen and (min-width: 1024px) {
  body {
    font-size: 1.2rem;
    line-height: 1.83333;
  }

  body.is-fixed {
    overflow: visible;
  }
}

p {
  line-break: strict;
}

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

p a {
  background: linear-gradient(90deg, #c30d23, #c30d23) left bottom/100% 0.05rem no-repeat;
  color: var(--base-text-color);
  transition: background-size 0.3s ease;
}

@media screen and (min-width: 1024px) {
  p a {
    background-size: 100% .1rem;
  }
}

p a:active:not(:disabled),
p a:hover:not(:disabled) {
  background-position: right bottom;
  background-size: 0 .05rem;
}

@media screen and (min-width: 1024px) {

  p a:active:not(:disabled),
  p a:hover:not(:disabled) {
    background-size: 0 .1rem;
  }
}

button {
  cursor: pointer;
}

figure {
  margin-bottom: 0 !important;
}

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

caption,
figcaption {
  margin-top: .8rem;
  font-size: 1.2rem;
  line-height: 1.57142857;
}

@media screen and (min-width: 1024px) {

  caption,
  figcaption {
    margin-top: 1.4rem;
    font-size: 1.4rem;
  }
}

picture {
  display: block;
}

caption {
  caption-side: bottom;
  text-align: right;
}

ul {
  list-style: none;
}

ol {
  margin-left: 1.8em;
}

@media screen and (max-width: 599px) {

  .tb,
  .pc,
  .pc--small,
  .pc--medium,
  .pc--large {
    display: none !important;
  }

  .sp {
    display: revert !important;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {

  .sp,
  .pc,
  .pc--small,
  .pc--medium,
  .pc--large {
    display: none !important;
  }

  .tb {
    display: revert !important;
  }
}

@media screen and (min-width: 1024px) {

  .sp,
  .tb {
    display: none !important;
  }

  .pc {
    display: revert !important;
  }

  .pc--small {
    display: revert !important;
  }

  .pc--medium {
    display: none !important;
  }

  .pc--large {
    display: none !important;
  }
}

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

  .pc--medium {
    display: revert !important;
  }
}

@media screen and (min-width: 1536px) {
  .pc--small {
    display: none !important;
  }

  .pc--medium {
    display: none !important;
  }

  .pc--large {
    display: revert !important;
  }
}

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

@keyframes hover-arrow {
  0% {
    transform: translate(var(--hover-arrow-default-translate-x), -50%);
    opacity: 1;
  }

  49.99999% {
    transform: translate(var(--hover-arrow-direction-1), -50%);
    opacity: 0;
  }

  50% {
    transform: translate(var(--hover-arrow-direction-2), -50%);
  }

  100% {
    transform: translate(var(--hover-arrow-default-translate-x), -50%);
    opacity: 1;
  }
}

@keyframes hover-arrow--left {
  0% {
    transform: translate(var(--hover-arrow-default-translate-x), -50%) scale(-1, 1);
  }

  49.99999% {
    transform: translate(var(--hover-arrow-direction-2), -50%) scale(-1, 1);
    opacity: 0;
  }

  50% {
    transform: translate(var(--hover-arrow-direction-1), -50%) scale(-1, 1);
  }

  100% {
    transform: translate(var(--hover-arrow-default-translate-x), -50%) scale(-1, 1);
    opacity: 1;
  }
}

@keyframes hover-arrow--down {
  0% {
    transform: translate(var(--hover-arrow-default-translate-x), -50%);
  }

  49.99999% {
    transform: translate(var(--hover-arrow-default-translate-x), 20%);
    opacity: 0;
  }

  50% {
    transform: translate(var(--hover-arrow-default-translate-x), -120%);
  }

  100% {
    transform: translate(var(--hover-arrow-default-translate-x), -50%);
    opacity: 1;
  }
}

/*------------------------------------------------------------
  plugins first
------------------------------------------------------------*/
/**
 * Swiper 9.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 13, 2023
 */
/* 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;
  */
}

.swiper,
swiper-container {
  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-wrapper {
  transform: translate3d(0px, 0, 0);
}

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

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

.swiper-slide,
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-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-cube-shadow {
  transform-style: preserve-3d;
}

.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));
}

/* 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-horizontal.swiper-css-mode>.swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode>.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-centered>.swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}

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

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

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

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

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

.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-container: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);
  }
}

.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: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,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

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

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

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

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

: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,
:host(.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;
  /*ADD_HOST*/
}

.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;
  -ms-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;
}

.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;
}

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

/* a11y */
.swiper .swiper-notification,
swiper-container .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,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.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,
.swiper-cube .swiper-slide-next+.swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

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

.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-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;
}

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

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

.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-button-prev,
.swiper-button-next {
  width: 3rem;
  height: 3.5rem;
  margin-top: -1.75rem;
  background: var(--primary-color);
  transition: opacity 0.3s ease;
}

@media screen and (min-width: 1024px) {

  .swiper-button-prev,
  .swiper-button-next {
    width: 4rem;
    height: 4rem;
    margin-top: -2rem;
  }
}

.swiper-button-prev:active:not(:disabled),
.swiper-button-prev:hover:not(:disabled),
.swiper-button-next:active:not(:disabled),
.swiper-button-next:hover:not(:disabled) {
  opacity: .7;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 1.6rem;
  height: 1.6rem;
  border-top: 0.4rem solid var(--white);
  border-right: 0.4rem solid var(--white);
}

.swiper-button-prev {
  left: -2rem;
}

@media screen and (min-width: 1024px) {
  .swiper-button-prev {
    left: 50%;
    margin-left: -50.5rem;
  }
}

.swiper-button-prev:after {
  left: 58%;
  transform: translate(-50%, -50%) rotate(225deg);
}

.swiper-button-next {
  right: -2rem;
}

@media screen and (min-width: 1024px) {
  .swiper-button-next {
    right: 50%;
    margin-right: -50.5rem;
  }
}

.swiper-button-next:after {
  left: 42%;
}

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

@media screen and (min-width: 1024px) {

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

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

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

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

@media screen and (min-width: 1024px) {

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

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

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

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

@media screen and (min-width: 1024px) {

  .l-sp-container,
  .l-sp-container--pt-0,
  .l-sp-container--pb-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
}

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

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

.l-sp-container--small {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

@media screen and (min-width: 1024px) {
  .l-sp-container--small {
    padding-top: 0;
    padding-bottom: 0;
  }
}

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

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

@media screen and (min-width: 1024px) {

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

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

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

.l-center,
.l-center--small,
.l-center--medium {
  padding-right: 2rem;
  padding-left: 2rem;
}

@media screen and (min-width: 600px) {

  .l-center,
  .l-center--small,
  .l-center--medium {
    padding-right: 3.5rem;
    padding-left: 3.5rem;
  }
}

@media screen and (min-width: 1024px) {

  .l-center,
  .l-center--small,
  .l-center--medium {
    max-width: calc(80rem + 10rem);
    margin-right: auto;
    margin-left: auto;
    padding-right: 5rem;
    padding-left: 5rem;
  }
}

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

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

.l-sp-center {
  padding-right: 2rem;
  padding-left: 2rem;
}

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

@media screen and (min-width: 1024px) {
  .l-sp-center {
    padding-right: 0;
    padding-left: 0;
  }
}

@media screen and (min-width: 1024px) {

  .l-pc-center,
  .l-pc-center--medium,
  .l-pc-center--large {
    max-width: calc(80rem + 10rem);
    margin-right: auto;
    margin-left: auto;
    padding-right: 5rem;
    padding-left: 5rem;
  }
}

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

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

/* ---------------------------
  header
--------------------------- */
.l-header {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 300;
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .l-header {
    transition: transform .4s ease-out;
  }
}

.page-index .l-header .logo path {
  fill: var(--white);
  transition: fill .4s ease-out;
}

.page-club-off .l-header .logo path {
  fill: var(--white);
}

@media screen and (min-width: 1024px) {
  .page-club-off .l-header .logo path {
    fill: #bf9c50;
  }
}

@media screen and (min-width: 1024px) {
  .page-index.is-scroll .l-header .logo path {
    fill: #bf9c50;
  }
}

@media screen and (min-width: 1024px) {
  .is-scroll .l-header {
    position: fixed;
    top: -10rem;
    transform: translate(0, 10rem);
  }
}

@media screen and (min-width: 1024px) {
  .is-scroll .l-header .inner {
    background: var(--white);
  }
}

.l-header .inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 300;
  width: 100%;
  height: 0;
  transition: background .4s ease-out;
}

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

.l-header .logo {
  position: relative;
  z-index: 300;
  transform-origin: left top;
  width: min(90%,350px);
  margin-top: 1.4rem;
  margin-left: 2rem;
  transition: transform 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .l-header .logo {
    width: 30.6rem;
    margin-top: 0;
    margin-left: 2.5rem;
  }
}

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

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

/* ---------------------------
  fixed banner
--------------------------- */
.l-fixed-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 200;
  transform: translate(0, 6rem);
  width: 100%;
  padding: 1rem 0;
  background: var(--black);
  transition: transform .4s ease-out;
}

@media screen and (min-width: 1024px) {
  .l-fixed-banner {
    display: none;
  }
}

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

.l-fixed-banner>div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.l-fixed-banner .logo {
  display: block;
  width: min(45%,350px);
}

/* ---------------------------
  grobal navigation end
--------------------------- */
.l-main {
  position: relative;
}

@media screen and (min-width: 1024px) {
  .page-under .l-main {
    padding-top: 10rem;
  }
}

/*------------------------------------------------------------
  compornent first
------------------------------------------------------------*/
/*------------------------------------------------------------
  index first
------------------------------------------------------------*/
.s-index .a-mv {
  position: relative;
}

.s-index .a-mv h1 {
  position: absolute;
  bottom: 3rem;
  left: 2.5rem;
  width: 24rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-mv h1 {
    top: 50%;
    bottom: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50.16666666%;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv h1 {
    width: 40.16666666%;
  }
}

.s-index .a-mv-card {
  overflow: hidden;
  padding-top: 4rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv-card {
    overflow: visible;
    margin-top: -7.5rem;
    padding-top: 0;
    padding-bottom: 4rem;
  }
}

.s-index .a-mv-card figure {
  transform: scale(1.25);
}

@media screen and (min-width: 600px) {
  .s-index .a-mv-card figure {
    transform: scale(1);
  }
}

.s-index .a-feature {
  overflow: hidden;
  background: #e5e5e6;
}

.s-index .a-feature .swiper-wrap {
  position: relative;
  max-width: 40rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 1024px) {
  .s-index .a-feature .swiper-wrap {
    width: 97rem;
    max-width: none;
    height: 40.6rem;
    margin-right: auto;
    margin-left: auto;
  }
}

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

.s-index .a-feature .swiper-slide {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, white 0%, white 75%, #eeeeee 100%);
}

@media screen and (min-width: 1024px) {
  .s-index .a-feature .swiper-slide {
    display: grid;
    grid-template-columns: 31.261rem 1fr;
    background: linear-gradient(90deg, #c6c1c3 0%, #eeeeee 100%);
    box-shadow: 1rem 1rem 1rem 0rem rgba(0, 0, 0, 0.1);
  }
}

.s-index .a-feature .swiper-slide.zero {
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 51.613rem;
  padding-bottom: .5rem;
  background: var(--white);
}

@media screen and (min-width: 600px) {
  .s-index .a-feature .swiper-slide.zero {
    min-height: 53.964rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-feature .swiper-slide.zero {
    display: block;
    height: 40.6rem;
    min-height: 40.6rem;
    padding-bottom: 0;
  }
}

.s-index .a-feature .swiper-slide.zero:before {
  content: none;
}

.s-index .a-feature .swiper-slide.zero img {
  transform: scale(1.1);
}

@media screen and (min-width: 1024px) {
  .s-index .a-feature .swiper-slide.zero img {
    transform: translate(0.8rem, 0rem) scale(1.04);
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-feature .swiper-slide:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transform: skew(-4deg);
    width: 74rem;
    height: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, white 25%, white 100%);
  }
}

.s-index .a-feature .swiper-slide>div {
  display: grid;
  align-items: center;
  position: relative;
  min-height: 39.5rem;
  padding-bottom: 1.5rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-feature .swiper-slide>div {
    min-height: 41.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-feature .swiper-slide>div {
    min-height: 40.6rem;
    padding-bottom: 0;
    padding-left: 2.5rem;
    padding-right: 0;
  }
}

.s-index .a-feature figure {
  position: relative;
}

@media screen and (min-width: 1024px) {
  .s-index .a-feature figure img {
    height: 40.6rem;
  }
}

.s-index .a-feature p:nth-of-type(1) {
  position: relative;
  margin-bottom: 2rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-feature p:nth-of-type(1) {
    margin-bottom: .5rem;
  }
}

.s-index .a-feature p:nth-of-type(1):after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 5rem;
  transform: translate(0, -50%);
  width: 10.8rem;
  height: .2rem;
  background: linear-gradient(90deg, #967f52 0%, #c9b168 100%);
}

@media screen and (min-width: 1024px) {
  .s-index .a-feature p:nth-of-type(1):after {
    left: 5.5rem;
  }
}

.s-index .a-feature p:nth-of-type(1) img {
  height: 3.6rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-feature p:nth-of-type(1) img {
    height: 4.5rem;
  }
}

.s-index .a-feature p:nth-of-type(2) {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  line-height: 1.34782608;
  letter-spacing: -.05em;
}

@media screen and (min-width: 1024px) {
  .s-index .a-feature p:nth-of-type(2) {
    padding-left: 5.5rem;
    font-size: 2.9rem;
    font-weight: 600;
    line-height: 1.44827586;
  }
}

.s-index .a-feature p:nth-of-type(2) span {
  font-size: 1.5rem;
}

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

.s-index .a-feature p:nth-of-type(3) {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  line-height: 1.41176470;
  letter-spacing: 0;
  text-align: justify;
}

@media screen and (min-width: 1024px) {
  .s-index .a-feature p:nth-of-type(3) {
    padding-left: 5.5rem;
    font-size: 1.7rem;
    line-height: 1.55529685;
    letter-spacing: -.02em;
    text-align: left;
  }
}

.s-index .a-feature p:nth-of-type(4) {
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 1.42857142;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  .s-index .a-feature p:nth-of-type(4) {
    margin-bottom: 2rem;
    padding-left: 5.5rem;
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: -.02em;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-feature a {
    margin-top: 2rem;
    margin-left: 5.5rem;
  }
}

/*
  first load end
*/
/*------------------------------------------------------------
  plugins
------------------------------------------------------------*/
/*------------------------------------------------------------
  layout
------------------------------------------------------------*/
/* ---------------------------
  footer
--------------------------- */
.l-footer {
  position: relative;
  overflow: hidden;
  padding-top: 3rem;
  padding-bottom: 7rem;
  background: var(--black);
}

@media screen and (min-width: 1024px) {
  .l-footer {
    padding-top: 6rem;
    padding-bottom: 1.5rem;
  }
}

.l-footer>div>div {
  display: grid;
  gap: 2.5rem;
}

@media screen and (min-width: 600px) {
  .l-footer>div>div {
    grid-template-columns: 1fr 51%;
    align-items: center;
    gap: 0;
  }
}

@media screen and (min-width: 1024px) {
  .l-footer>div>div {
    gap: 0;
    max-width: 80rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.l-footer h2 {
  color: var(--white);
  font-size: 2.5rem;
  letter-spacing: .1em;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .l-footer h2 {
    font-size: 3.3rem;
    letter-spacing: .2em;
    text-align: left;
  }
}

.l-footer p:nth-of-type(1) {
  display: grid;
  place-items: center;
  height: 3rem;
  margin-bottom: 1.2rem;
  background: var(--white);
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  line-height: 1;
  letter-spacing: .2em;
}

@media screen and (min-width: 1024px) {
  .l-footer p:nth-of-type(1) {
    height: 3.4rem;
    margin-bottom: 1.5rem;
    font-size: 1.7rem;
  }
}

.l-footer p:nth-of-type(2) {
  margin-bottom: .4rem;
  color: var(--white);
  font-weight: 500;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  letter-spacing: .2em;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .l-footer p:nth-of-type(2) {
    font-size: 1.4rem;
  }
}

.l-footer p:nth-of-type(3) {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 400;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  letter-spacing: 0;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .l-footer p:nth-of-type(3) {
    letter-spacing: .05em;
  }
}

.l-footer p+a {
  display: block;
  margin-bottom: .6rem;
  margin-right: auto;
  margin-left: auto;
  width: fit-content;
  color: var(--white);
  font-size: 3rem;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  line-height: 1;
  letter-spacing: .2em;
}

@media screen and (min-width: 1024px) {
  .l-footer p+a {
    margin-bottom: .8rem;
  }
}

.l-footer small {
  display: block;
  margin-top: 2.5rem;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 400;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  letter-spacing: .1em;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .l-footer small {
    margin-top: 5rem;
    font-size: 1.3rem;
  }
}

.l-pagetop {
  opacity: 0;
  display: block;
  position: fixed;
  bottom: 8rem;
  right: 2rem;
  z-index: 200;
  transform: translate(0, 6rem);
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, #e0b464 0%, #8a5a25 100%);
  transition: opacity 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .l-pagetop {
    bottom: 6rem;
    right: 6rem;
  }
}

.is-scroll .l-pagetop {
  opacity: 1;
  transform: translate(0, 0);
  pointer-events: visible;
}

.l-pagetop:active:not(:disabled),
.l-pagetop:hover:not(:disabled) {
  opacity: .7;
}

.l-pagetop:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-right: .8rem solid transparent;
  border-bottom: 1.2rem solid var(--black);
  border-left: .8rem solid transparent;
}

/*------------------------------------------------------------
  compornent
------------------------------------------------------------*/
/*
  heading
*/
.c-two-lang-heading {
  margin-bottom: 5rem;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .c-two-lang-heading {
    margin-bottom: 5.5rem;
  }
}

.c-two-lang-heading span:nth-child(1) {
  color: var(--primary-color);
  font-size: 3rem;
  font-family: "Bodoni Moda", serif;
}

@media screen and (min-width: 1024px) {
  .c-two-lang-heading span:nth-child(1) {
    font-size: 5rem;
  }
}

.c-two-lang-heading span:nth-child(2) {
  display: block;
  font-size: 1.7rem;
}

@media screen and (min-width: 1024px) {
  .c-two-lang-heading span:nth-child(2) {
    font-size: 1.8rem;
  }
}

/*
  button
*/
.c-color-button,
.c-color-button--red {
  opacity: 1;
  display: grid;
  place-items: center;
  position: relative;
  width: 100%;
  max-width: 33.5rem;
  min-height: 5rem;
  margin-right: auto;
  margin-left: auto;
  padding: .7rem 2.5rem 1.1rem;
  overflow: hidden;
  border: .1rem solid #c9b168;
  background: #c9b168;
  color: var(--white);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .08em;
  transition: background 0.3s ease, color 0.3s ease;
}

@media screen and (min-width: 1024px) {

  .c-color-button,
  .c-color-button--red {
    min-height: 5.4rem;
    letter-spacing: .06em;
  }
}

.c-color-button:active:not(:disabled),
.c-color-button--red:active:not(:disabled),
.c-color-button:hover:not(:disabled),
.c-color-button--red:hover:not(:disabled) {
  background: var(--white);
  color: #c9b168;
}

.c-color-button:active:not(:disabled):before,
.c-color-button--red:active:not(:disabled):before,
.c-color-button:hover:not(:disabled):before,
.c-color-button--red:hover:not(:disabled):before {
  border-bottom-color: #c9b168;
  border-left-color: #c9b168;
}

.c-color-button:active:not(:disabled):after,
.c-color-button--red:active:not(:disabled):after,
.c-color-button:hover:not(:disabled):after,
.c-color-button--red:hover:not(:disabled):after {
  border-left-color: #c9b168;
  animation: 0.4s ease both hover-arrow;
}

.c-color-button:disabled,
.c-color-button--red:disabled {
  opacity: .5;
  cursor: default;
}

.c-color-button:before,
.c-color-button--red:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - .6rem);
  height: calc(100% - .6rem);
  border-bottom: 0.1rem solid var(--white);
  border-left: 0.1rem solid var(--white);
  transition: border 0.3s ease;
}

.c-color-button:after,
.c-color-button--red:after {
  content: '';
  display: block;
  position: absolute;
  top: 47%;
  right: 2rem;
  transform: translate(0, -50%);
  border-top: .7rem solid transparent;
  border-bottom: .7rem solid transparent;
  border-left: 1.1rem solid var(--white);
  transition: border 0.3s ease;
}

@supports (-ms-ime-align: auto) {

  .c-color-button,
  .c-color-button--red {
    max-width: 27rem;
  }
}

.c-color-button--red {
  border-color: #bc0d23;
  background: #bc0d23;
}

.c-color-button--red:active:not(:disabled),
.c-color-button--red:hover:not(:disabled) {
  color: #bc0d23;
}

.c-color-button--red:active:not(:disabled):before,
.c-color-button--red:hover:not(:disabled):before {
  border-bottom-color: #bc0d23;
  border-left-color: #bc0d23;
}

.c-color-button--red:active:not(:disabled):after,
.c-color-button--red:hover:not(:disabled):after {
  border-left-color: #bc0d23;
}

.c-round-button {
  opacity: 1;
  display: grid;
  place-items: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 16rem;
  min-height: 3.5rem;
  padding: 1rem;
  border: .1rem solid #bf9c50;
  border-radius: 3.5rem;
  background: #bf9c50;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: .5em;
  text-align: center;
  transition: background 0.3s ease, color 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .c-round-button {
    min-width: 21.4rem;
    min-height: 4.6rem;
    font-size: 1.6rem;
  }

}

.c-round-button span {
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.c-round-button:active:not(:disabled),
.c-round-button:hover:not(:disabled) {
  background: var(--white);
  color: #bf9c50;
}

.c-round-button:active:not(:disabled):before,
.c-round-button:hover:not(:disabled):before {
  border-color: #bf9c50;
}

.c-round-button:active:not(:disabled):after,
.c-round-button:hover:not(:disabled):after {
  transform: translate(1.5rem, -50%);
  background: var(--white);
}

.c-round-button:active:not(:disabled)>span:before,
.c-round-button:hover:not(:disabled)>span:before {
  opacity: 1;
  transform: scaleX(1);
}

.c-round-button:disabled {
  opacity: .5;
  cursor: default;
}

.c-round-button:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - .6rem);
  height: calc(100% - .6rem);
  border: 0.1rem solid var(--white);
  border-radius: 3.5rem;
  transition: border 0.3s ease;
}

@supports (-ms-ime-align: auto) {
  .c-round-button {
    max-width: 27rem;
  }
}

/*
  table
*/
/*
  other
*/
@media screen and (min-width: 600px) {

  .c-articles>article,
  .c-articles--gray>article {
    display: grid;
  }
}

.c-articles>article+article,
.c-articles--gray>article+article {
  margin-top: 5.5rem;
}

@media screen and (min-width: 1024px) {

  .c-articles>article+article,
  .c-articles--gray>article+article {
    margin-top: 11rem;
  }
}

@media screen and (min-width: 600px) {

  .c-articles>article:nth-child(2n+1),
  .c-articles--gray>article:nth-child(2n+1) {
    grid-template-columns: 1fr 55%;
  }
}

@media screen and (min-width: 1024px) {

  .c-articles>article:nth-child(2n+1),
  .c-articles--gray>article:nth-child(2n+1) {
    transform: translate(-1rem, 0);
  }
}

@media screen and (min-width: 600px) {

  .c-articles>article:nth-child(2n+1) figure,
  .c-articles--gray>article:nth-child(2n+1) figure {
    transform: translate(3rem, 0) scale(1.21);
    transform-origin: right top;
  }
}

@media screen and (min-width: 1024px) {

  .c-articles>article:nth-child(2n+1) figure,
  .c-articles--gray>article:nth-child(2n+1) figure {
    transform: translate(10rem, 0) scale(1.36);
  }
}

@media screen and (min-width: 600px) {

  .c-articles>article:nth-child(2n+1) div,
  .c-articles--gray>article:nth-child(2n+1) div {
    padding-left: 6rem;
  }
}

@media screen and (min-width: 1024px) {

  .c-articles>article:nth-child(2n+1) div,
  .c-articles--gray>article:nth-child(2n+1) div {
    padding-left: 14rem;
  }
}

@media screen and (min-width: 600px) {

  .c-articles>article:nth-child(2n),
  .c-articles--gray>article:nth-child(2n) {
    grid-template-columns: 55% 1fr;
  }
}

@media screen and (min-width: 1024px) {

  .c-articles>article:nth-child(2n),
  .c-articles--gray>article:nth-child(2n) {
    transform: translate(1rem, 0);
  }
}

@media screen and (min-width: 600px) {

  .c-articles>article:nth-child(2n) figure,
  .c-articles--gray>article:nth-child(2n) figure {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    transform: translate(-3rem, 0) scale(1.21);
    transform-origin: left top;
  }
}

@media screen and (min-width: 1024px) {

  .c-articles>article:nth-child(2n) figure,
  .c-articles--gray>article:nth-child(2n) figure {
    transform: translate(-10rem, 0) scale(1.36);
  }
}

@media screen and (min-width: 600px) {

  .c-articles>article:nth-child(2n) div,
  .c-articles--gray>article:nth-child(2n) div {
    padding-right: 6rem;
  }
}

@media screen and (min-width: 1024px) {

  .c-articles>article:nth-child(2n) div,
  .c-articles--gray>article:nth-child(2n) div {
    padding-right: 14rem;
  }
}

.c-articles div,
.c-articles--gray div {
  padding: 3rem;
  background: var(--white);
}

@media screen and (min-width: 600px) {

  .c-articles div,
  .c-articles--gray div {
    margin-top: 4rem;
  }
}

@media screen and (min-width: 1024px) {

  .c-articles div,
  .c-articles--gray div {
    margin-top: 7.5rem;
    padding: 5.5rem;
  }
}

.c-articles div article,
.c-articles--gray div article {
  padding-bottom: 1.5rem;
  border-bottom: .2rem solid #c30d23;
}

@media screen and (min-width: 1024px) {

  .c-articles div article,
  .c-articles--gray div article {
    padding-bottom: 2rem;
  }
}

.c-articles div article p,
.c-articles--gray div article p {
  margin-right: -1rem;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {

  .c-articles div article p,
  .c-articles--gray div article p {
    font-size: 1.7rem;
  }
}

.c-articles div article p:nth-child(1),
.c-articles--gray div article p:nth-child(1) {
  margin-bottom: .2rem;
  margin-right: 0;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  line-height: 1.64286;
  letter-spacing: .1em;
  text-align: right;
}

.c-articles div article p+p,
.c-articles--gray div article p+p {
  margin-top: 1rem;
}

.c-articles h3,
.c-articles--gray h3 {
  position: relative;
  margin-bottom: 1.5rem;
  margin-right: -1rem;
  padding-left: 1.8rem;
  color: var(--primary-color);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: .05em;
}

@media screen and (min-width: 1024px) {

  .c-articles h3,
  .c-articles--gray h3 {
    margin-bottom: 2.5rem;
    padding-left: 2.2rem;
    font-size: 2.5rem;
  }
}

.c-articles h3:before,
.c-articles--gray h3:before {
  content: '';
  display: block;
  position: absolute;
  top: 51%;
  left: 0;
  transform: translate(0, -50%);
  width: .7rem;
  height: 80%;
  background: var(--primary-color);
}

@media screen and (min-width: 1024px) {

  .c-articles h3:before,
  .c-articles--gray h3:before {
    width: .8rem;
  }
}

.c-articles h3+p,
.c-articles--gray h3+p {
  margin-bottom: 1rem;
  margin-right: -1rem;
  font-size: 1.5rem;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {

  .c-articles h3+p,
  .c-articles--gray h3+p {
    margin-bottom: 2rem;
    font-size: 1.9rem;
    line-height: 1.66666666;
    letter-spacing: .05em;
  }
}

.c-articles h4,
.c-articles--gray h4 {
  display: grid;
  align-items: center;
  height: 2.5rem;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  background: linear-gradient(90deg, #c30d23 0%, #c30d23 30%, rgba(195, 13, 35, 0.5) 100%);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: .3em;
}

.c-articles .price,
.c-articles--gray .price {
  color: #c30d23;
  font-size: 3.5rem;
  font-weight: 800;
  font-family: "Shippori Mincho", serif;
  line-height: 1.2;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {

  .c-articles .price,
  .c-articles--gray .price {
    font-size: rem;
  }
}

.c-articles .price--small,
.c-articles--gray .price--small {
  color: #c30d23;
  font-size: 2.9rem;
  font-weight: 800;
  font-family: "Shippori Mincho", serif;
  line-height: 1.2;
  letter-spacing: .1em;
}

@media screen and (min-width: 1024px) {

  .c-articles .price--small,
  .c-articles--gray .price--small {
    font-size: rem;
  }
}

.c-articles .yen,
.c-articles--gray .yen {
  color: #c30d23;
  font-size: 1.6rem;
  font-weight: 800;
  font-family: "Shippori Mincho", serif;
  line-height: 1.2;
}

@media screen and (min-width: 1024px) {

  .c-articles .yen,
  .c-articles--gray .yen {
    font-size: rem;
  }
}

.c-articles .small,
.c-articles--gray .small {
  font-size: 1.1rem;
  font-weight: 400;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  line-height: 1.4;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {

  .c-articles .small,
  .c-articles--gray .small {
    font-size: 1.2rem;
  }
}

.c-articles--gray div {
  background: #f4f4f2;
}

.c-note,
.c-note--pr {
  position: relative;
  width: fit-content;
  margin-top: .5rem;
  margin-bottom: .2rem;
  font-size: 1.1rem;
  font-weight: 400;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  letter-spacing: .06em;
}

@media screen and (min-width: 600px) {

  .c-note,
  .c-note--pr {
    margin-top: 1rem;
    margin-bottom: .5rem;
    margin-right: auto;
    margin-left: auto;
    line-height: 1.58333333;
  }
}

@media screen and (min-width: 1024px) {

  .c-note,
  .c-note--pr {
    font-size: 1.2rem;
    letter-spacing: .1em;
  }
}

.c-note a,
.c-note--pr a {
  color: #c30d23;
  font-size: 1.4rem;
  font-weight: 900;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  letter-spacing: .08em;
}

@media screen and (min-width: 1024px) {

  .c-note a,
  .c-note--pr a {
    font-size: rem;
  }
}

@media screen and (min-width: 600px) {
  .c-note--pr {
    padding-right: 17.90830945%;
  }
}

@media screen and (min-width: 1024px) {
  .c-note--pr {
    padding-right: 10rem;
  }
}

/*------------------------------------------------------------
  index
------------------------------------------------------------*/
.s-index .a-card {
  overflow: hidden;
  background: #e5e5e6;
}

@media screen and (min-width: 1024px) {
  .s-index .a-card>div {
    display: grid;
    grid-template-columns: 36.2% 1fr;
    gap: 4.3%;
    max-width: 103rem;
  }
}

.s-index .a-card figure {
  margin-right: -2rem;
  margin-left: -2rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-card figure {
    max-width: 50rem;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-card figure {
    transform: translate(0, 3rem) scale(1.25);
  }
}

.s-index .a-card h2 {
  margin-top: -3.5rem;
  margin-bottom: 2.5rem;
  font-size: 1.9rem;
  line-height: 1.30434782;
  letter-spacing: -.02em;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-index .a-card h2 {
    margin-top: 0;
    margin-bottom: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-top: 0.1rem solid var(--black);
    border-bottom: 0.1rem solid var(--black);
    font-size: 1.7rem;
    line-height: 1.58823529;
    text-align: left;
  }
}

.s-index .a-card h2 span {
  display: block;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 0.1rem solid var(--black);
}

@media screen and (min-width: 1024px) {
  .s-index .a-card h2 span {
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
}

.s-index .a-card dl {
  margin-bottom: 2rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-card dl {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-card dl {
    display: grid;
    grid-template-rows: 3.264rem 1fr;
    grid-template-columns: 14rem 1fr;
    gap: 1rem;
    align-items: start;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-card dl {
    grid-template-rows: 2.8rem 1fr;
    grid-template-columns: 13rem 1fr;
  }
}

.s-index .a-card dt {
  margin-top: 1.8rem;
  margin-bottom: .5rem;
  padding-top: .4rem;
  padding-bottom: .4rem;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.5rem;
  letter-spacing: .3em;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .s-index .a-card dt {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: .5rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-card dt {
    padding-top: 0;
    padding-bottom: 0;
    letter-spacing: .2em;
  }
}

.s-index .a-card dd {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: .02em;
}

@media screen and (min-width: 600px) {
  .s-index .a-card dd {
    padding-top: .4rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-card dd {
    padding-top: 0;
    font-size: 1.6rem;
    letter-spacing: .08em;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-card dd {
    font-size: 1.8rem;
  }
}

.s-index .a-index {
  background: #e5e5e6;
}

@media screen and (min-width: 1024px) {
  .s-index .a-index .index {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    box-shadow: 1rem 1rem 1rem 0rem rgba(0, 0, 0, 0.1);
  }
}

.s-index .a-index a {
  display: grid;
  place-items: center;
  position: relative;
  height: 6rem;
  background: var(--black);
  color: var(--white);
  font-size: 1.9rem;
  line-height: 1.3;
  letter-spacing: .1em;
  text-align: center;
  transition: opacity 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .s-index .a-index a {
    height: 11.4rem;
    padding-bottom: .5rem;
    font-size: 2rem;
  }
}

.s-index .a-index a:active:not(:disabled),
.s-index .a-index a:hover:not(:disabled) {
  opacity: .7;
}

.s-index .a-index a:active:not(:disabled):after,
.s-index .a-index a:hover:not(:disabled):after {
  animation: 0.4s ease both hover-arrow--down;
}

@media screen and (min-width: 1024px) {

  .s-index .a-index a:active:not(:disabled):after,
  .s-index .a-index a:hover:not(:disabled):after {
    --hover-arrow-default-translate-x: -50%;
    animation: 0.4s ease both hover-arrow--down;
  }
}

.s-index .a-index a+a {
  border-top: 0.2rem solid var(--white);
}

@media screen and (min-width: 1024px) {
  .s-index .a-index a+a {
    border-top: none;
    border-left: 0.2rem solid var(--white);
  }
}

.s-index .a-index a:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translate(0, -50%);
  border-top: 0.9rem solid var(--white);
  border-right: .6rem solid transparent;
  border-left: .6rem solid transparent;
}

@media screen and (min-width: 1024px) {
  .s-index .a-index a:after {
    top: auto;
    bottom: .5rem;
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.s-index .a-index a span span {
  font-size: 1.5rem;
  letter-spacing: .03em;
}

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

.s-index .a-club-off {
  overflow: hidden;
}

.s-index .a-club-off>div:nth-child(1) {
  position: relative;
}

.s-index .a-club-off>div:nth-child(2) {
  padding-top: 2rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-club-off>div:nth-child(2) {
    padding-top: 5rem;
  }
}

.s-index .a-club-off .mv img {
  width: 100%;
}

.s-index .a-club-off h2 {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  color: var(--white);
  font-size: 3.3rem;
  line-height: 1.41671659;
  letter-spacing: .15em;
  text-shadow: 0 0 1rem var(--primary-color), 0 0 1rem var(--primary-color), 0 0 1rem var(--primary-color), 0 0 1rem var(--primary-color), 0 0 1rem var(--primary-color);
}

@media screen and (min-width: 600px) {
  .s-index .a-club-off h2 {
    top: 18%;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    letter-spacing: .1em;
    white-space: nowrap;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-club-off h2 {
    font-size: 4rem;
  }
}

.s-index .a-club-off .lead {
  margin-bottom: 6rem;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  line-height: 1.6875;
  text-align: justify;
}

@media screen and (min-width: 600px) {
  .s-index .a-club-off .lead {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, 0);
    margin-bottom: 0;
    color: var(--white);
    font-size: 1.7rem;
    font-family: "Shippori Mincho", serif;
    line-height: 1.73684210;
    text-align: center;
    text-shadow: 0 0 1rem var(--primary-color), 0 0 1rem var(--primary-color), 0 0 1rem var(--primary-color), 0 0 1rem var(--primary-color), 0 0 1rem var(--primary-color), 0 0 1rem var(--primary-color), 0 0 1rem var(--primary-color);
    white-space: nowrap;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-club-off .lead {
    font-size: 1.9rem;
  }
}

.s-index .a-club-off .copy {
  margin-bottom: 3.5rem;
  color: var(--primary-color);
  font-size: 2.2rem;
  line-height: 1.5;
}

@media screen and (min-width: 600px) {
  .s-index .a-club-off .copy {
    margin-bottom: 5rem;
    letter-spacing: 0;
    text-align: center;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-club-off .copy {
    font-size: 2.8rem;
  }
}

.s-index .a-club-off .service {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

@media screen and (min-width: 600px) {

  .s-index .a-club-off .service figure {
    width: 46.25%;
  }

  .s-index .a-club-off .service .service_txt {
    width: 53.75%;
  }

}



@media screen and (min-width: 600px) {
  .s-index .a-club-off .service {
    flex-direction: row;
    gap: 3.75%;
    align-items: end;
  }
}

.s-index .a-club-off .service+.service {
  margin-top: 4rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-club-off .service+.service {
    margin-top: 7rem;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-club-off .service:nth-child(2n+1) {
    grid-template-columns: 46.25% 1fr;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-club-off .service:nth-child(2n+1) p:nth-of-type(1):after {
    left: -3rem;
  }
}

@media screen and (min-width: 600px) {

  .s-index .a-club-off .service:nth-child(2n) {
    flex-direction: row-reverse;
  }

}


@media screen and (min-width: 600px) {
  .s-index .a-club-off .service:nth-child(2n) p:nth-of-type(1):after {
    right: -3rem;
    left: auto;
  }
}

.s-index .a-club-off .service h3 {
  margin-right: -1rem;
  font-size: 2.3rem;
  letter-spacing: -.05em;
}

@media screen and (min-width: 600px) {
  .s-index .a-club-off .service h3 {
    margin-bottom: .8rem;
    font-size: 3rem;
    line-height: 1.18918918;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-club-off .service h3 {
    font-size: 3.7rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-club-off .service h3.adjust {
    margin-bottom: -2rem;
  }
}

.s-index .a-club-off .service h3 span {
  font-size: 2rem;
}

.s-index .a-club-off .service p:nth-of-type(1) {
  position: relative;
  margin-bottom: .8rem;
  padding-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1.4;
}

.s-index .a-club-off .service .price {
  color: var(--primary-color);
  font-size: 4.5rem;
  line-height: 1;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  .s-index .a-club-off .service p:nth-of-type(1) {
    padding-bottom: 1.6rem;
    margin-bottom: 1rem;
    font-size: 1.7rem;
  }

  .s-index .a-club-off .service .price {
    font-size: 6rem;
  }

}

.s-index .a-club-off .service p:nth-of-type(1):after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: .1rem;
  background: var(--black);
}

@media screen and (min-width: 600px) {
  .s-index .a-club-off .service p:nth-of-type(1):after {
    width: calc(100% + 3rem);
  }
}

.s-index .a-club-off .service p:nth-of-type(1) .sub {
  margin-right: -1rem;
  color: var(--base-text-color);
  font-size: 1.7rem;
  line-height: 1;
}

@media screen and (min-width: 1024px) {
  .s-index .a-club-off .service p:nth-of-type(1) .sub {
    font-size: 2rem;
  }
}

.s-index .a-club-off .service p:nth-of-type(1) .yen {
  font-size: 3.5rem;
  color: var(--primary-color);
}

@media screen and (min-width: 1024px) {
  .s-index .a-club-off .service p:nth-of-type(1) .yen {
    font-size: 3.6rem;
  }
}

.s-index .a-club-off .service p:nth-of-type(1).adjust {
  margin-top: -4rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-club-off .service p:nth-of-type(1).adjust {
    margin-top: -7rem;
  }
}

.s-index .a-club-off .service p:nth-of-type(2) {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .05em;
}

@media screen and (min-width: 1024px) {
  .s-index .a-club-off .service p:nth-of-type(2) {
    margin-right: -1rem;
    font-size: 1.7rem;
  }
}

.s-index .a-club-off .scenes>div {
  background: #f1efd5;
}

@media screen and (min-width: 1024px) {
  .s-index .a-club-off .scenes>div {
    background: none;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-club-off .scenes>div>div {
    padding: 3rem 4rem;
    background: #f1efd5;
  }
}

.s-index .a-club-off .scenes h3 {
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 0.1rem solid var(--black);
  font-size: 2rem;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-index .a-club-off .scenes h3 {
    margin-bottom: 4rem;
    padding-bottom: 0.5rem;
    font-size: 2.8rem;
    letter-spacing: .15em;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-club-off .scenes .scene {
    max-width: 63rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.s-index .a-club-off .scenes .scene+.scene {
  margin-top: 4rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-club-off .scenes .scene+.scene {
    margin-top: 5rem;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-club-off .scenes .scene:nth-of-type(2n+1)>div {
    grid-template-columns: 32% 49% 1fr;
  }
}

.s-index .a-club-off .scenes .scene:nth-of-type(2n+1) figure {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  margin-right: -2rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-club-off .scenes .scene:nth-of-type(2n+1) figure {
    margin-right: 0;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-club-off .scenes .scene:nth-of-type(2n)>div {
    grid-template-columns: 1fr 49% 32%;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-club-off .scenes .scene:nth-of-type(2n)>div div {
    grid-row: 1 / 2;
    grid-column: 3 / 4;
  }
}

.s-index .a-club-off .scenes .scene:nth-of-type(2n) figure {
  margin-left: -2rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-club-off .scenes .scene:nth-of-type(2n) figure {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    margin-left: 0;
  }
}

.s-index .a-club-off .scenes .scene>div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 2rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-club-off .scenes .scene>div {
    gap: 4.76190476%;
  }
}

.s-index .a-club-off .scenes .scene article p {
  font-size: 1.1rem;
  font-weight: 500;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  line-height: 1.3;
  letter-spacing: 0;
}

.s-index .a-club-off .scenes h4 {
  margin-bottom: 1rem;
  color: #a48530;
  font-size: 1.8rem;
  line-height: 1.241;
  letter-spacing: 0;
  text-shadow: 0 0 .5rem #f1efd5, 0 0 .5rem #f1efd5, 0 0 .5rem #f1efd5, 0 0 .5rem #f1efd5, 0 0 .5rem #f1efd5, 0 0 .5rem #f1efd5;
}

@media screen and (min-width: 600px) {
  .s-index .a-club-off .scenes h4 {
    margin-bottom: 1.5rem;
    font-size: 2.1rem;
    line-height: 1.42857142;
    white-space: nowrap;
  }
}

.s-index .a-club-off .scenes h4+p {
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  line-height: 1.3;
  letter-spacing: 0;
}

.s-index .a-club-off .scenes h4+p span {
  font-size: 1.1rem;
}

.s-index .a-club-off .scenes h5 {
  display: grid;
  align-items: center;
  height: 2.4rem;
  margin-top: .5rem;
  margin-bottom: .5rem;
  padding-left: 1rem;
  background: linear-gradient(90deg, #c30d23 0%, #c30d23 30%, rgba(195, 13, 35, 0.5) 100%);
  color: var(--white);
  font-size: 1.2rem;
  letter-spacing: .2em;
}

@media screen and (min-width: 1024px) {
  .s-index .a-club-off .scenes h5 {
    margin-top: 1rem;
    margin-bottom: .8rem;
  }
}

.s-index .a-club-off .scenes .price {
  color: #c30d23;
  font-size: 2.3rem;
  font-weight: 800;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  .s-index .a-club-off .scenes .price {
    font-size: 2.5rem;
  }
}

.s-index .a-club-off .scenes .yen {
  color: #c30d23;
  font-weight: 800;
  font-family: "Shippori Mincho", serif;
}


.s-index .a-club-off .scenes .text {
  max-width: 53rem;
  margin-top: 4rem;
  margin-bottom: 2rem;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: .8rem;
  border-top: .2rem solid #c30d23;
  border-bottom: .2rem solid #c30d23;
}

@media screen and (min-width: 1024px) {
  .s-index .a-club-off .scenes .text {
    margin-top: 5rem;
  }
}

.s-index .a-club-off .scenes .text p:nth-child(1) {
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  letter-spacing: 0;
}

@media screen and (min-width: 600px) {
  .s-index .a-club-off .scenes .text p:nth-child(1) {
    font-size: 2.3rem;
    line-height: 1.3;
    letter-spacing: .05em;
    text-align: center;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-club-off .scenes .text p:nth-child(1) {
    font-size: rem;
  }
}

.s-index .a-club-off .scenes .text p:nth-child(2) {
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  line-height: 1.42857142;
}

@media screen and (min-width: 600px) {
  .s-index .a-club-off .scenes .text p:nth-child(2) {
    font-size: 1.25rem;
    letter-spacing: .025em;
    text-align: center;
  }
}

.s-index .a-club-off .scenes .text .price {
  font-size: 2.8rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-club-off .scenes .text .price {
    font-size: 4.2rem;
  }
}

.s-index .a-club-off .scenes .text .yen {
  font-size: 2rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-club-off .scenes .text .yen {
    font-size: 2.7rem;
  }
}

.s-index .a-club-off .scenes .text .red {
  color: #c30d23;
  font-size: 2rem;
  font-weight: 400;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
}

@media screen and (min-width: 600px) {
  .s-index .a-club-off .scenes .text .red {
    font-size: 2.7rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-club-off .scenes .text .red {
    font-size: rem;
  }
}

.s-index .a-syotaibiyori {
  background: #e8eff2;
}

.s-index .a-syotaibiyori>div>article {
  padding: 1.5rem;
  background: var(--white);
}

@media screen and (min-width: 600px) {
  .s-index .a-syotaibiyori>div>article {
    padding: 4rem 3rem;
  }
}

.s-index .a-syotaibiyori>div>article article+article {
  margin-top: 2.2rem;
  padding-top: 2.8rem;
  border-top: 0.1rem solid var(--black);
}

@media screen and (min-width: 600px) {
  .s-index .a-syotaibiyori>div>article article+article {
    margin-top: 5rem;
    padding-top: 0;
    border-top: none;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-syotaibiyori>div>article article+article {
    margin-top: 7rem;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-syotaibiyori>div>article article:nth-child(2n+1)>div:nth-child(1) {
    grid-template-columns: 1fr 53%;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-syotaibiyori>div>article article:nth-child(2n+1) figure {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-syotaibiyori>div>article article:nth-child(2n)>div:nth-child(1) {
    grid-template-columns: 53% 1fr;
  }
}

.s-index .a-syotaibiyori>div>article article>div:nth-child(1) {
  display: grid;
  gap: 2rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-syotaibiyori>div>article article>div:nth-child(1) {
    align-items: center;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-syotaibiyori>div>article article>div:nth-child(1) {
    gap: 2.5rem;
  }
}

.s-index .a-syotaibiyori>div>article article>div:nth-child(2) {
  margin-top: 2.5rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-syotaibiyori>div>article article>div:nth-child(2) {
    display: grid;
    grid-template-columns: 15% 1fr;
    gap: 1.6%;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-syotaibiyori>div>article article>div:nth-child(2) {
    margin-top: 2rem;
  }
}

.s-index .a-syotaibiyori>div>article article>div:nth-child(2) p:nth-child(1) {
  display: grid;
  place-items: center;
  height: 3.2rem;
  margin-bottom: 1rem;
  padding-left: .5rem;
  background: linear-gradient(90deg, #c30d23 0%, #c30d23 30%, rgba(195, 13, 35, 0.5) 100%);
  color: var(--white);
  font-size: 1.5rem;
  letter-spacing: .3em;
}

@media screen and (min-width: 600px) {
  .s-index .a-syotaibiyori>div>article article>div:nth-child(2) p:nth-child(1) {
    height: 100%;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-syotaibiyori>div>article article>div:nth-child(2) p:nth-child(1) {
    font-size: 1.3rem;
  }
}

.s-index .a-syotaibiyori>div>article article>div:nth-child(2) p:nth-child(2) {
  color: #c30d23;
  font-size: 1.45rem;
  line-height: 1.64285714;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  .s-index .a-syotaibiyori>div>article article>div:nth-child(2) p:nth-child(2) {
    margin-right: -1rem;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: -.02em;
  }
}

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

@media screen and (min-width: 1024px) {
  .s-index .a-syotaibiyori h2 {
    width: 30.3rem;
    margin-bottom: 3rem;
  }
}

.s-index .a-syotaibiyori h2+p {
  margin-bottom: 2rem;
  font-size: 2rem;
  line-height: 1.47619047;
  letter-spacing: 0;
  text-align: center;
}

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

.s-index .a-syotaibiyori h2+p+p {
  margin-bottom: 2rem;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  line-height: 1.6875;
}

@media screen and (min-width: 1024px) {
  .s-index .a-syotaibiyori h2+p+p {
    margin-bottom: 4.5rem;
    font-size: 1.1rem;
    line-height: 1.72727272;
    text-align: center;
  }
}

.s-index .a-syotaibiyori h3 {
  display: grid;
  place-items: center;
  height: 4.2rem;
  margin-bottom: 1.5rem;
  background: #131d3d;
  color: var(--white);
  font-size: 2rem;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  .s-index .a-syotaibiyori h3 {
    margin-bottom: 3rem;
  }
}

.s-index .a-syotaibiyori h4 {
  margin-bottom: 2rem;
  color: #a98c48;
  font-size: 2.7rem;
  line-height: 1.1;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  .s-index .a-syotaibiyori h4 {
    margin-bottom: 3.5rem;
    line-height: 1.4;
  }
}

.s-index .a-syotaibiyori h4 span {
  display: block;
  font-size: 1.5rem;
}

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

.s-index .a-syotaibiyori h4+p {
  margin-bottom: 1rem;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.02em;
}

@media screen and (min-width: 1024px) {
  .s-index .a-syotaibiyori h4+p {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}

.s-index .a-syotaibiyori h4+p+p {
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  line-height: 1.64285714;
}

@media screen and (min-width: 1024px) {
  .s-index .a-syotaibiyori h4+p+p {
    font-size: 1.1rem;
    line-height: 1.72727272;
  }
}

.s-index .a-priority-pass h2 {
  width: 27.5rem;
  margin-bottom: 2.5rem;
  margin-right: auto;
  margin-left: auto;
}

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

.s-index .a-priority-pass article {
  display: grid;
  gap: 1rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-priority-pass article {
    grid-template-columns: 35% 1fr;
    gap: 5%;
  }
}

.s-index .a-priority-pass article+article {
  margin-top: 4rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-priority-pass article+article {
    margin-top: 5.5rem;
  }
}

.s-index .a-priority-pass>p {
  display: grid;
  place-items: center;
  width: fit-content;
  margin-bottom: 4rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: .6rem;
  padding-left: .6rem;
  border: .1rem solid #847238;
  color: #847238;
  font-size: 1.6rem;
  font-weight: 500;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  .s-index .a-priority-pass>p {
    margin-bottom: 8rem;
    padding-right: 1rem;
    padding-left: 1rem;
    letter-spacing: .15em;
    white-space: nowrap;
  }
}

.s-index .a-priority-pass h3 {
  margin-bottom: 1rem;
  margin-right: -1rem;
  color: #847238;
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.02em;
}

@media screen and (min-width: 600px) {
  .s-index .a-priority-pass h3 {
    font-size: 2.3rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-priority-pass h3 {
    margin-bottom: 1.8rem;
  }
}

.s-index .a-priority-pass p:nth-of-type(1) {
  font-weight: 400;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
}

.s-index .a-priority-pass p:nth-of-type(2) {
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: 400;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  line-height: 1.66666666;
}

@media screen and (min-width: 1024px) {
  .s-index .a-priority-pass p:nth-of-type(2) {
    font-style: 1rem;
  }
}

.s-index .a-insurance {
  background: #e8eff2;
}

.s-index .a-insurance>div>div {
  padding: 1.5rem;
  background: var(--white);
}

@media screen and (min-width: 600px) {
  .s-index .a-insurance>div>div {
    padding: 3rem 4rem;
  }
}

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

.s-index .a-insurance h2 {
  margin-bottom: 3rem;
  color: #182d5d;
  font-size: 4rem;
  text-align: center;
  line-height: 1;
  letter-spacing: .1em;
}

@media screen and (min-width: 1024px) {
  .s-index .a-insurance h2 {
    margin-bottom: 3.5rem;
    font-size: 4.2rem;
  }
}

.s-index .a-insurance h2+p {
  display: grid;
  place-items: center;
  margin-bottom: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top: .1rem solid #182d5d;
  border-bottom: .1rem solid #182d5d;
  color: #182d5d;
  font-size: 2.3rem;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .s-index .a-insurance h2+p {
    width: fit-content;
    height: 4.8rem;
    margin-bottom: 2.5rem;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
    font-size: 1.9rem;
  }
}

.s-index .a-insurance h2+p+p {
  margin-bottom: 3rem;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  line-height: 1.6875;
}

@media screen and (min-width: 600px) {
  .s-index .a-insurance h2+p+p {
    margin-bottom: 4rem;
    font-size: 1.2rem;
    line-height: 2;
    text-align: center;
  }
}

.s-index .a-insurance article+article {
  margin-top: 3.5rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-insurance article+article {
    margin-top: 6rem;
  }
}

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

.s-index .a-insurance h3 {
  display: block;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #182d5d;
  color: #d4b67c;
  font-size: 2.2rem;
  letter-spacing: .2em;
  text-align: center;
  line-height: 1;
}

.s-index .a-insurance figure+figure {
  margin-top: 2.2rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-insurance figure+figure {
    margin-top: 0;
  }
}

.s-index .a-insurance figcaption {
  margin-top: .5rem;
  color: #182d5d;
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: .1em;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-index .a-insurance figcaption {
    margin-top: 1rem;
    font-size: 2.2rem;
  }
}

.s-index .a-insurance figcaption span {
  display: block;
  font-size: 1.4rem;
}

.s-index .a-insurance article h4 {
  margin-bottom: 2rem;
  font-size: 2rem;
  line-height: 1.47619047;
  letter-spacing: 0;
  text-align: center;
  margin: 2em 0 1em;
}

.s-index .a-insurance article div .insurance {
  margin: 0  auto !important;
}

@media screen and (max-width: 599px) {

  .s-index .a-insurance article div .insurance {
    margin: 1.5rem  auto !important;
  }

}

.s-index .a-benefit {
  position: relative;
  overflow: hidden;
  padding-top: 9rem;
  padding-bottom: 2rem;
  background: #333366;
}

@media screen and (min-width: 600px) {
  .s-index .a-benefit {
    padding-top: 16rem;
    background: #19254a;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-benefit {
    padding-top: 27rem;
  }
}

.s-index .a-benefit>figure {
  position: absolute;
  top: 0;
  left: 0;
}

.s-index .a-benefit>div {
  position: relative;
}

.s-index .a-benefit>div>p:nth-of-type(1) {
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: 2.3rem;
  line-height: 1.25;
  letter-spacing: .05em;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-index .a-benefit>div>p:nth-of-type(1) {
    margin-bottom: 2.2rem;
    font-size: 1.9rem;
  }
}

.s-index .a-benefit>div>p:nth-of-type(2) {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 0.1rem solid var(--white);
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  line-height: 1.6875;
  letter-spacing: .05em;
}

@media screen and (min-width: 1024px) {
  .s-index .a-benefit>div>p:nth-of-type(2) {
    max-width: 70rem;
    margin-bottom: 2rem;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 2rem;
    font-size: 1.1rem;
    letter-spacing: .08em;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-benefit>div>p:nth-of-type(2) {
    font-size: 1.2rem;
    letter-spacing: .1em;
  }
}

.s-index .a-benefit>div>p:nth-of-type(3) {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 400;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  line-height: 1.66666666;
  letter-spacing: .05em;
}

@media screen and (min-width: 1024px) {
  .s-index .a-benefit>div>p:nth-of-type(3) {
    max-width: 70rem;
    margin-right: auto;
    margin-left: auto;
    font-size: 1rem;
    line-height: 1.55;
    letter-spacing: .15em;
  }
}

.s-index .a-benefit>div>article {
  margin-top: 6rem;
  padding: 2rem 1.5rem 3rem;
  background: var(--white);
}

@media screen and (min-width: 600px) {
  .s-index .a-benefit>div>article {
    padding: 3rem 7.5% 4rem;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-benefit>div>article>div {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: column;
    gap: 0 8%;
  }
}

.s-index .a-benefit>div>article article {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.s-index .a-benefit>div>article article:nth-of-type(1) {
  border-top: .4rem solid #cab975;
}

.s-index .a-benefit>div>article article:nth-of-type(2) {
  border-top: .4rem solid #d6730b;
}

@media screen and (min-width: 600px) {
  .s-index .a-benefit>div>article article:nth-of-type(2) {
    border-bottom: .4rem solid #7b191e;
  }
}

.s-index .a-benefit>div>article article:nth-of-type(3) {
  border-top: .4rem solid #7b191e;
}

.s-index .a-benefit>div>article article:nth-of-type(4) {
  border-top: .4rem solid #00418f;
  border-bottom: .4rem solid #7483c0;
}

.s-index .a-benefit>div>article p {
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  line-height: 1.5;
  letter-spacing: .05em;
}

@media screen and (min-width: 600px) {
  .s-index .a-benefit>div>article p {
    font-size: 1.2rem;
    line-height: 1.41666666;
    letter-spacing: 0;
  }
}

.s-index .a-benefit>div>article+p {
  margin-top: 3rem;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 400;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  line-height: 1.66666666;
  letter-spacing: .05em;
}

@media screen and (min-width: 1024px) {
  .s-index .a-benefit>div>article+p {
    margin-top: 4rem;
    font-size: 1rem;
    line-height: 2.1;
    letter-spacing: .15em;
  }
}

.s-index .a-benefit h2 {
  margin-bottom: 4rem;
  color: var(--white);
  font-size: 3.3rem;
  line-height: 1.30303030;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-index .a-benefit h2 {
    margin-bottom: 2rem;
    font-size: 4rem;
    line-height: 1.325;
    letter-spacing: .1em;
  }
}

.s-index .a-benefit h3 {
  margin-bottom: 2rem;
  font-size: 2.2rem;
  letter-spacing: .05em;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-index .a-benefit h3 {
    margin-bottom: 3rem;
  }
}

.s-index .a-benefit h4 {
  display: grid;
  grid-template-columns: 2.8rem 1fr;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
  padding-right: .5rem;
  padding-left: .5rem;
  gap: 1rem;
}

.s-index .a-benefit h4 img {
  object-fit: contain;
  width: 2.8rem;
  height: 2.9rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-benefit h4 img {
    width: 2.6rem;
    height: 2.7rem;
  }
}

.s-index .a-benefit h4 span {
  font-size: 1.9rem;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  line-height: 1.154;
}

@media screen and (min-width: 600px) {
  .s-index .a-benefit h4 span {
    font-size: 1.5rem;
  }
}

/*------------------------------------------------------------
  syotaibiyori
------------------------------------------------------------*/
.s-syotaibiyori .a-mv {
  background: #e8eff2;
}

@media screen and (min-width: 1024px) {
  .s-syotaibiyori .a-mv figure {
    max-width: 80.33333333%;
    margin-left: auto;
  }
}

@media screen and (min-width: 1920px) {
  .s-syotaibiyori .a-mv figure {
    max-width: 60.33333333%;
  }
}

.s-syotaibiyori .a-mv>div {
  margin-top: -4rem;
}

@media screen and (min-width: 600px) {
  .s-syotaibiyori .a-mv>div {
    margin-top: -28rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-syotaibiyori .a-mv>div {
    margin-top: -40rem;
  }
}

.s-syotaibiyori .a-mv>div>p:nth-of-type(1) {
  margin-bottom: 2rem;
  font-size: 2.1rem;
  line-height: 1.3;
  letter-spacing: -.02em;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .s-syotaibiyori .a-mv>div>p:nth-of-type(1) {
    margin-bottom: 3rem;
    line-height: 1.5;
    letter-spacing: .1em;
    text-align: left;
  }
}

@media screen and (min-width: 1024px) {
  .s-syotaibiyori .a-mv>div>p:nth-of-type(1) {
    font-size: 2.2rem;
  }
}

.s-syotaibiyori .a-mv>div>p:nth-of-type(2) {
  margin-bottom: 3rem;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  line-height: 1.6875;
  letter-spacing: .05em;
}

@media screen and (min-width: 600px) {
  .s-syotaibiyori .a-mv>div>p:nth-of-type(2) {
    margin-bottom: 4rem;
    font-size: 1.1rem;
    line-height: 1.72727272;
  }
}

.s-syotaibiyori .a-mv>div>p:nth-of-type(3) {
  margin-bottom: .8rem;
  font-size: 1.6rem;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  line-height: 1.6875;
  letter-spacing: .05em;
}

@media screen and (min-width: 600px) {
  .s-syotaibiyori .a-mv>div>p:nth-of-type(3) {
    font-size: 1.1rem;
    letter-spacing: .1em;
  }
}

.s-syotaibiyori .a-mv>div div {
  padding: 1.5rem;
  border: 0.2rem solid var(--primary-color);
  background: var(--white);
}

@media screen and (min-width: 600px) {
  .s-syotaibiyori .a-mv>div div {
    display: grid;
    grid-template-columns: 1fr 25%;
    align-items: center;
    width: 58rem;
    padding: 1rem;
  }
}

.s-syotaibiyori .a-mv>div div p:nth-of-type(1) {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 400;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  line-height: 1.5;
  letter-spacing: .05em;
}

@media screen and (min-width: 600px) {
  .s-syotaibiyori .a-mv>div div p:nth-of-type(1) {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: .12em;
  }
}

.s-syotaibiyori .a-mv>div div p:nth-of-type(2) {
  font-size: 1.8rem;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  letter-spacing: .06em;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .s-syotaibiyori .a-mv>div div p:nth-of-type(2) {
    font-size: 1.3rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-syotaibiyori .a-mv>div div p:nth-of-type(2) {
    font-size: rem;
  }
}

.s-syotaibiyori .a-mv h1 {
  width: 27rem;
  margin-bottom: 2rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 600px) {
  .s-syotaibiyori .a-mv h1 {
    margin-bottom: 3rem;
    margin-left: 0;
  }
}

@media screen and (min-width: 1024px) {
  .s-syotaibiyori .a-mv h1 {
    width: 30rem;
  }
}

.s-syotaibiyori .a-step {
  padding-top: 8rem;
  background: #e8eff2;
}

.s-syotaibiyori .a-step h2 {
  margin-bottom: 2rem;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-syotaibiyori .a-step h2 {
    margin-bottom: 3rem;
  }
}

.s-syotaibiyori .a-step h2 img {
  display: block;
  width: 21rem;
  margin-right: 1rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 600px) {
  .s-syotaibiyori .a-step h2 img {
    display: inline-block;
    margin-right: 1rem;
    margin-left: 0;
    vertical-align: middle;
  }
}

.s-syotaibiyori .a-step h2 span {
  font-size: 3.3rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .s-syotaibiyori .a-step h2 span {
    vertical-align: middle;
  }
}

@media screen and (min-width: 1024px) {
  .s-syotaibiyori .a-step h2 span {
    font-size: rem;
  }
}

.s-syotaibiyori .a-step>article>div {
  position: relative;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

@media screen and (min-width: 1024px) {
  .s-syotaibiyori .a-step>article>div {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.s-syotaibiyori .a-step>article>div:nth-of-type(2n+1) {
  background: var(--white);
}

.s-syotaibiyori .a-step>article>div:nth-of-type(2n+1):before {
  border-top-color: #ededeb;
}

.s-syotaibiyori .a-step>article>div:nth-of-type(2n) {
  background: #ededeb;
}

.s-syotaibiyori .a-step>article>div:nth-of-type(2n):before {
  border-top-color: var(--white);
}

.s-syotaibiyori .a-step>article>div:nth-of-type(1):before {
  content: none;
}

.s-syotaibiyori .a-step>article>div:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  border-top: 2rem solid transparent;
  border-right: 4rem solid transparent;
  border-left: 4rem solid transparent;
}

.s-syotaibiyori .a-step>article>div>div {
  max-width: 74rem;
  margin-right: auto;
  margin-left: auto;
}

.s-syotaibiyori .a-step>article>div>div>div {
  background: var(--white);
  padding: 2rem 2rem 2.5rem;
}

@media screen and (min-width: 600px) {
  .s-syotaibiyori .a-step>article>div>div>div {
    padding: 3.5rem 6rem 4rem;
  }
}

.s-syotaibiyori .a-step>article>div>div>div p {
  margin-top: 1rem;
  font-size: 1.35rem;
  line-height: 1.55844155;
  letter-spacing: .02em;
  text-align: justify;
}

@media screen and (min-width: 600px) {
  .s-syotaibiyori .a-step>article>div>div>div p {
    margin-top: 0;
  }
}

.s-syotaibiyori .a-step>article>div>div>div+p {
  margin-top: .8rem;
  margin-bottom: .3rem;
  font-size: 1.5rem;
  letter-spacing: 0;
}

@media screen and (min-width: 600px) {
  .s-syotaibiyori .a-step>article>div>div>div+p {
    margin-top: 1.5rem;
  }
}

.s-syotaibiyori .a-step>article>div>div>div+p+p {
  font-size: 1.15rem;
  font-weight: 400;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  line-height: 1.5;
  letter-spacing: .12em;
}

@media screen and (min-width: 600px) {
  .s-syotaibiyori .a-step>article>div>div article div {
    display: grid;
    grid-template-columns: 53.63636363% 1fr;
    gap: 5.45454545%;
  }
}

.s-syotaibiyori .a-step>article>div>div article+article {
  margin-top: 3rem;
}

.s-syotaibiyori .a-step .heading-wrap {
  display: grid;
  align-items: center;
  position: relative;
  height: 8rem;
  padding-right: 1.5rem;
  padding-left: 11rem;
  background: linear-gradient(0deg, #c9b168 0%, #967f52 100%);
}

@media screen and (min-width: 1024px) {
  .s-syotaibiyori .a-step .heading-wrap {
    height: 9rem;
  }
}

.s-syotaibiyori .a-step .heading-wrap picture {
  position: absolute;
  top: -1.1rem;
  left: 1.5rem;
  width: 7.3rem;
}

@media screen and (min-width: 1024px) {
  .s-syotaibiyori .a-step .heading-wrap picture {
    top: -1.4rem;
    left: 50%;
    transform: translate(-40rem, 0);
    width: 10.4rem;
  }
}

.s-syotaibiyori .a-step .heading-wrap h3 {
  color: var(--white);
  font-size: 2.4rem;
  line-height: 1.4;
  letter-spacing: .1em;
}

@media screen and (min-width: 1024px) {
  .s-syotaibiyori .a-step .heading-wrap h3 {
    font-size: 2.5rem;
    letter-spacing: .2em;
    text-align: center;
  }
}

.s-syotaibiyori .a-step .heading-wrap h3 span {
  display: block;
  font-size: 1.7rem;
}

@media screen and (min-width: 600px) {
  .s-syotaibiyori .a-step .heading-wrap h3 span {
    display: inline;
  }
}

@media screen and (min-width: 1024px) {
  .s-syotaibiyori .a-step .heading-wrap h3 span {
    font-size: 2.5rem;
  }
}

.s-syotaibiyori .a-step .step-01-01 figure {
  margin-left: 2rem;
}

@media screen and (min-width: 600px) {
  .s-syotaibiyori .a-step .step-01-01 figure {
    width: 55rem;
    margin-left: 0;
  }
}

@media screen and (min-width: 1024px) {
  .s-syotaibiyori .a-step .step-01-01 figure {
    width: 53rem;
  }
}

@media screen and (min-width: 600px) {
  .s-syotaibiyori .a-step .step-01-02 figure {
    width: 59.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-syotaibiyori .a-step .step-01-02 figure {
    width: 57.5rem;
  }
}

@media screen and (min-width: 600px) {
  .s-syotaibiyori .a-step .step-02-01 figure {
    width: 58.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-syotaibiyori .a-step .step-02-01 figure {
    width: 54.5rem;
  }
}

@media screen and (min-width: 600px) {
  .s-syotaibiyori .a-step .step-02-02 figure {
    width: 43rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-syotaibiyori .a-step .step-02-02 figure {
    width: 40rem;
  }
}

@media screen and (min-width: 600px) {
  .s-syotaibiyori .a-step .step-02-03 figure {
    width: 40.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-syotaibiyori .a-step .step-02-03 figure {
    width: 38rem;
  }
}

@media screen and (min-width: 600px) {
  .s-syotaibiyori .a-step .step-02-04 figure {
    width: 43.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-syotaibiyori .a-step .step-02-04 figure {
    width: 41rem;
  }
}

@media screen and (min-width: 600px) {
  .s-syotaibiyori .a-step .step-02-06 figure {
    width: 56.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-syotaibiyori .a-step .step-02-06 figure {
    width: 54rem;
  }
}

@media screen and (min-width: 600px) {
  .s-syotaibiyori .a-step .step-02-07 figure {
    width: 65.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-syotaibiyori .a-step .step-02-07 figure {
    width: 63rem;
  }
}

.s-syotaibiyori .a-step h4 {
  margin-bottom: .5rem;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.s-syotaibiyori .a-step .step-03>div>div>p {
  margin-bottom: 2.5rem;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: .05em;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-syotaibiyori .a-step .step-03>div>div>p {
    font-size: rem;
  }
}

.s-syotaibiyori .a-step .step-03>div>div>div {
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 30rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
}

@media screen and (min-width: 600px) {
  .s-syotaibiyori .a-step .step-03>div>div>div {
    grid-template-rows: 13rem 1fr;
    grid-template-columns: 28.4rem 1fr;
    gap: 2rem 3rem;
    width: 52.5rem;
  }
}

.s-syotaibiyori .a-step .step-03>div>div>div figure:nth-child(1) {
  grid-row: 1 / 2;
  grid-column: 1 / 3;
}

@media screen and (min-width: 600px) {
  .s-syotaibiyori .a-step .step-03>div>div>div figure:nth-child(1) {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
  }
}

.s-syotaibiyori .a-step .step-03>div>div p {
  line-height: 1.51515151;
  letter-spacing: 0;
}

.s-syotaibiyori .a-scene {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: #ededeb;
}

@media screen and (min-width: 1024px) {
  .s-syotaibiyori .a-scene {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.s-syotaibiyori .a-scene>div {
  max-width: 34rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 600px) {
  .s-syotaibiyori .a-scene>div {
    max-width: 57rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-syotaibiyori .a-scene>div {
    max-width: 60rem;
  }
}

@media screen and (min-width: 600px) {
  .s-syotaibiyori .a-scene>div>div {
    display: grid;
    grid-template-columns: 54% 1fr;
    gap: 1.5rem;
  }
}

.s-syotaibiyori .a-scene>div>div+div {
  margin-top: 3.5rem;
}

.s-syotaibiyori .a-scene h2 {
  display: grid;
  place-items: center;
  height: 5rem;
  margin-bottom: 1.5rem;
  background: #c9b168;
  color: var(--white);
  font-size: 2.2rem;
  letter-spacing: .2em;
}

@media screen and (min-width: 600px) {
  .s-syotaibiyori .a-scene h2 {
    margin-bottom: 2.5rem;
    font-size: 1.95rem;
    letter-spacing: .075em;
  }
}

.s-syotaibiyori .a-scene p {
  display: grid;
  place-items: center;
  margin-top: .5rem;
  font-size: 2rem;
  letter-spacing: .1rem;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .s-syotaibiyori .a-scene p {
    display: grid;
    height: 100%;
    margin-top: 0;
    border-top: 0.1rem solid var(--black);
    border-bottom: 0.1rem solid var(--black);
    font-size: 1.7rem;
    letter-spacing: 0;
  }
}

.s-syotaibiyori .a-attention {
  padding-bottom: 2rem;
  background: linear-gradient(0deg, #c9b168 0%, #967f52 100%);
}

@media screen and (min-width: 1024px) {
  .s-syotaibiyori .a-attention {
    padding-bottom: 3rem;
  }
}

.s-syotaibiyori .a-attention h2 {
  display: grid;
  place-items: center;
  height: 4.2rem;
  margin-bottom: 2.5rem;
  border: 0.1rem solid var(--white);
  color: var(--white);
  font-size: 1.7rem;
  letter-spacing: .5rem;
}

@media screen and (min-width: 1024px) {
  .s-syotaibiyori .a-attention dl {
    display: grid;
    grid-template-columns: 15rem 1fr;
    gap: 2rem 1rem;
  }
}

.s-syotaibiyori .a-attention dt {
  color: var(--white);
  font-size: 1.5rem;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  .s-syotaibiyori .a-attention dt {
    font-size: 1.2rem;
    text-align: justify;
    text-align-last: justify;
  }
}

.s-syotaibiyori .a-attention dd {
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1.46153846;
  letter-spacing: 0;
  text-align: justify;
}

@media screen and (min-width: 1024px) {
  .s-syotaibiyori .a-attention dd {
    font-size: 1.2rem;
  }
}

.s-syotaibiyori .a-attention dd+dt {
  margin-top: 2rem;
}

@media screen and (min-width: 1024px) {
  .s-syotaibiyori .a-attention dd+dt {
    margin-top: 0;
  }
}

.s-syotaibiyori .a-attention p {
  margin-top: 2.5rem;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 400;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  line-height: 1.45454545;
  letter-spacing: .1em;
}

@media screen and (min-width: 1024px) {
  .s-syotaibiyori .a-attention p {
    margin-top: 5rem;
    font-size: 1.0rem;
    line-height: 1.733;
    letter-spacing: .12em;
  }
}

/*------------------------------------------------------------
  club-off
------------------------------------------------------------*/
.s-club-off .a-mv {
  overflow: hidden;
  background: #f1efd5;
}

.s-club-off .a-mv>div:nth-child(1) {
  position: relative;
}

.s-club-off .a-mv>div:nth-child(2) {
  padding-top: 1.5rem;
}

@media screen and (min-width: 600px) {
  .s-club-off .a-mv>div:nth-child(2) {
    padding-top: 0;
  }
}

.s-club-off .a-mv h1 {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  color: var(--white);
  font-size: 3.3rem;
  line-height: 1.41671659;
  letter-spacing: .15em;
  text-shadow: 0 0 1rem var(--primary-color), 0 0 1rem var(--primary-color), 0 0 1rem var(--primary-color), 0 0 1rem var(--primary-color), 0 0 1rem var(--primary-color);
}

@media screen and (min-width: 600px) {
  .s-club-off .a-mv h1 {
    top: 28%;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    letter-spacing: .1em;
    white-space: nowrap;
  }
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-mv h1 {
    top: 18%;
    font-size: 4rem;
  }
}

.s-club-off .a-mv .lead {
  color: #bf9c50;
  font-size: 1.7rem;
  line-height: 1.58823529;
  letter-spacing: 0;
  text-align: justify;
}

@media screen and (min-width: 600px) {
  .s-club-off .a-mv .lead {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, 0);
    color: var(--white);
    font-size: 1.7rem;
    font-family: "Shippori Mincho", serif;
    line-height: 1.73684210;
    letter-spacing: .1em;
    text-align: center;
    text-shadow: 0 0 1rem var(--primary-color), 0 0 1rem var(--primary-color), 0 0 1rem var(--primary-color), 0 0 1rem var(--primary-color), 0 0 1rem var(--primary-color), 0 0 1rem var(--primary-color), 0 0 1rem var(--primary-color);
    white-space: nowrap;
  }
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-mv .lead {
    font-size: 1.9rem;
  }
}

.s-club-off .a-club-off {
  background: #f1efd5;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-club-off {
    padding-top: 6rem;
  }
}

@media screen and (min-width: 600px) {
  .s-club-off .a-club-off>div {
    display: grid;
    grid-template-columns: 44% 1fr;
    gap: 3rem;
  }
}

.s-club-off .a-club-off article {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
}

.s-club-off .a-club-off article+article {
  margin-top: 3.5rem;
}

@media screen and (min-width: 600px) {
  .s-club-off .a-club-off article+article {
    margin-top: 0;
  }
}

.s-club-off .a-club-off article>div:nth-child(1) {
  display: grid;
  justify-content: center;
  position: relative;
  transform: translate(-0.5rem, 0);
  padding-top: 2rem;
}

.s-club-off .a-club-off article>div:nth-child(1):after {
  content: '';
  display: block;
  position: absolute;
  bottom: .5rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: .1rem;
  height: 65%;
  background: #bf9c50;
}

.s-club-off .a-club-off img {
  width: 3.5rem;
}

.s-club-off .a-club-off h2 {
  margin-bottom: 1rem;
}

.s-club-off .a-club-off h2 span:nth-child(1) {
  color: #bf9c50;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .05em;
}

.s-club-off .a-club-off h2 span:nth-child(2) {
  display: block;
  color: #bf9c50;
  font-size: 3.5rem;
  line-height: 1.2;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-club-off h2 span:nth-child(2) {
    letter-spacing: .05em;
  }
}

.s-club-off .a-club-off p {
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  line-height: 1.64285714;
  letter-spacing: .04em;
  text-align: justify;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-club-off p {
    font-size: 1.2rem;
    line-height: 1.83333333;
    letter-spacing: 0;
  }
}

.s-club-off .a-scene {
  background: #f1efd5;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-scene {
    padding-top: 6rem;
  }
}

.s-club-off .a-scene>div>div {
  display: grid;
  gap: 3rem;
}

@media screen and (min-width: 600px) {
  .s-club-off .a-scene>div>div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 63rem;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-scene>div>div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: auto;
  }
}

.s-club-off .a-scene h2 {
  margin-bottom: 3rem;
  color: var(--primary-color);
  font-size: 2.2rem;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-scene h2 {
    font-size: 2.8rem;
    letter-spacing: .1em;
  }
}

.s-club-off .a-scene article {
  width: 30rem;
  margin-right: auto;
  margin-left: auto;
  padding: 3rem;
  background: var(--white);
}

.s-club-off .a-scene h3 {
  margin-bottom: 2rem;
  font-size: 1.6rem;
  line-height: 1.36263157;
  letter-spacing: 0;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-scene h3 {
    text-align: left;
  }
}

.s-club-off .a-scene p:nth-of-type(1) {
  margin-bottom: 1rem;
  padding-top: .8rem;
  border-top: 0.1rem solid var(--black);
  font-size: 1.65rem;
  font-weight: 500;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  line-height: 1.44230769;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-scene p:nth-of-type(1) {
    font-size: rem;
  }
}

.s-club-off .a-scene p:nth-of-type(1) span {
  color: var(--primary-color);
}

.s-club-off .a-scene p:nth-of-type(2) {
  margin-bottom: 1.2rem;
  font-size: 1.25rem;
  font-weight: 400;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  line-height: 1.52;
  letter-spacing: .025em;
  text-align: justify;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-scene p:nth-of-type(2) {
    font-size: rem;
  }
}

.s-club-off .a-scene figcaption {
  margin-top: .5rem;
  font-size: 1.25rem;
  font-weight: 400;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  line-height: 1.28;
  letter-spacing: .025em;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-scene figcaption {
    font-size: rem;
  }
}

.s-club-off .a-index {
  background: #f1efd5;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-index .index {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    box-shadow: 1rem 1rem 1rem 0rem rgba(0, 0, 0, 0.1);
  }
}

.s-club-off .a-index a {
  display: grid;
  place-items: center;
  position: relative;
  height: 8rem;
  background: var(--primary-color);
  line-height: 1;
  text-align: center;
  transition: opacity 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-index a {
    height: 11.4rem;
    padding-bottom: 2rem;
  }
}

.s-club-off .a-index a:active:not(:disabled),
.s-club-off .a-index a:hover:not(:disabled) {
  opacity: .7;
}

.s-club-off .a-index a:active:not(:disabled):after,
.s-club-off .a-index a:hover:not(:disabled):after {
  animation: 0.4s ease both hover-arrow--down;
}

@media screen and (min-width: 1024px) {

  .s-club-off .a-index a:active:not(:disabled):after,
  .s-club-off .a-index a:hover:not(:disabled):after {
    --hover-arrow-default-translate-x: -50%;
    animation: 0.4s ease both hover-arrow--down;
  }
}

.s-club-off .a-index a+a {
  border-top: 0.2rem solid var(--white);
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-index a+a {
    border-top: none;
    border-left: 0.2rem solid var(--white);
  }
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-index a:last-child {
    padding-bottom: 0;
  }
}

.s-club-off .a-index a:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translate(0, -50%);
  border-top: 0.9rem solid var(--white);
  border-right: .6rem solid transparent;
  border-left: .6rem solid transparent;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-index a:after {
    top: auto;
    bottom: .5rem;
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.s-club-off .a-index a span {
  display: grid;
  gap: .8rem;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-index a span {
    gap: .5rem;
  }
}

.s-club-off .a-index a span span:nth-child(1) {
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 800;
  font-family: "Bodoni Moda", serif;
  line-height: .90909090;
  letter-spacing: .025em;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-index a span span:nth-child(1) {
    min-height: 4rem;
  }
}

.s-club-off .a-index a span span:nth-child(2) {
  display: block;
  color: var(--white);
  font-size: 1.1rem;
  letter-spacing: .075em;
}

.s-club-off .a-index img {
  width: 7.3rem;
}

.s-club-off .a-special-offer>div:nth-child(1) {
  padding-top: 6rem;
  padding-bottom: 15rem;
  background: linear-gradient(90deg, #9d2428 0%, #e50012 100%);
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-special-offer>div:nth-child(1) {
    height: 26.5rem;
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-special-offer>div:nth-child(1)>div {
    display: grid;
    grid-template-columns: 30rem 1fr;
    align-items: center;
    height: 100%;
  }
}

.s-club-off .a-special-offer h2 {
  width: 19rem;
  margin-bottom: 5rem;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-special-offer h2 {
    width: 21rem;
    margin-bottom: 0;
    margin-left: 0;
  }
}

.s-club-off .a-special-offer h2 svg {
  display: block;
  margin-bottom: 1.5rem;
}

.s-club-off .a-special-offer h2 path {
  fill: var(--white);
}

.s-club-off .a-special-offer h2 span {
  margin-right: -2rem;
  margin-left: -2rem;
  color: var(--white);
  font-size: 1.6rem;
  letter-spacing: .075em;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-special-offer h2 span {
    margin-right: -3rem;
    margin-left: -3rem;
    font-size: 1.8rem;
  }
}

.s-club-off .a-special-offer h2+p {
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1.73333333;
  letter-spacing: .02em;
  text-align: justify;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-special-offer h2+p {
    margin-right: -2rem;
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: -.02em;
    text-align: left;
  }
}

.s-club-off .a-special-offer>article {
  position: relative;
}

.s-club-off .a-special-offer>article:nth-of-type(1) {
  margin-top: -11rem;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-special-offer>article:nth-of-type(1) {
    margin-top: 0;
  }
}

.s-club-off .a-special-offer>article:nth-of-type(1) figure {
  overflow: hidden;
}

@media screen and (min-width: 600px) {
  .s-club-off .a-special-offer>article:nth-of-type(1) figure {
    margin-bottom: 4rem !important;
    margin-right: -3.5rem;
    margin-left: -3.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-special-offer>article:nth-of-type(1) figure {
    margin-right: 0;
    margin-left: 0;
  }
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-special-offer>article:nth-of-type(1) figure img {
    object-fit: cover;
    width: 100%;
    height: 55rem;
    transform: translate(0, -0.1rem);
  }
}

@media screen and (min-width: 600px) {
  .s-club-off .a-special-offer>article:nth-of-type(1)>div {
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 4rem;
    padding-right: 3.5rem;
    padding-left: 3.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-special-offer>article:nth-of-type(1)>div {
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    padding-top: 7rem;
  }
}

@media screen and (min-width: 600px) {
  .s-club-off .a-special-offer>article:nth-of-type(1) h3 {
    margin-top: 0;
    color: var(--white);
  }
}

@media screen and (min-width: 600px) {
  .s-club-off .a-special-offer>article:nth-of-type(1) h3+p {
    color: var(--white);
  }
}

@media screen and (min-width: 600px) {
  .s-club-off .a-special-offer>article:nth-of-type(1) p:nth-of-type(2) {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 2rem;
    color: var(--white);
    text-align: left;
  }
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-special-offer>article:nth-of-type(1) p:nth-of-type(2) {
    margin-top: 3rem;
  }
}

@media screen and (min-width: 600px) {
  .s-club-off .a-special-offer>article:nth-of-type(1) p:nth-of-type(3) {
    width: 50%;
    margin-top: 4rem;
    margin-bottom: 0;
    margin-left: auto;
    color: var(--white);
  }
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-special-offer>article:nth-of-type(1) p:nth-of-type(3) {
    width: 35rem;
    margin-top: 17rem;
    letter-spacing: .1em;
  }
}

@media screen and (min-width: 600px) {
  .s-club-off .a-special-offer>article:nth-of-type(1) .text {
    width: 41rem;
  }
}

.s-club-off .a-special-offer>article:nth-of-type(2) .text {
  width: 30rem;
}

@media screen and (min-width: 600px) {
  .s-club-off .a-special-offer>article:nth-of-type(2) .text {
    width: 27.4rem;
  }
}

.s-club-off .a-special-offer>article:nth-of-type(3) .text {
  width: 30rem;
}

@media screen and (min-width: 600px) {
  .s-club-off .a-special-offer>article:nth-of-type(3) .text {
    width: 41.6rem;
  }
}

.s-club-off .a-special-offer>article+article {
  margin-top: 5rem;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-special-offer>article+article {
    margin-top: 8rem;
  }
}

.s-club-off .a-special-offer>article p:nth-of-type(1) {
  margin-bottom: .2rem;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  letter-spacing: .1em;
  text-align: right;
}

@media screen and (min-width: 600px) {
  .s-club-off .a-special-offer>article p:nth-of-type(1) {
    margin-bottom: .5rem;
    text-align: left;
  }
}

.s-club-off .a-special-offer>article p:nth-of-type(2) {
  margin-bottom: 1rem;
  margin-right: -1rem;
  color: var(--primary-color);
  font-size: 1.8rem;
  line-height: 1.66666666;
  letter-spacing: .13em;
}

@media screen and (min-width: 600px) {
  .s-club-off .a-special-offer>article p:nth-of-type(2) {
    position: absolute;
    top: 0;
    right: 3.5rem;
    text-align: right;
    margin-right: 0;
  }
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-special-offer>article p:nth-of-type(2) {
    right: 5rem;
  }
}

.s-club-off .a-special-offer>article p:nth-of-type(3) {
  margin-bottom: 2rem;
  font-weight: 400;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  letter-spacing: .045em;
  text-align: justify;
}

@media screen and (min-width: 600px) {
  .s-club-off .a-special-offer>article p:nth-of-type(3) {
    margin-bottom: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-special-offer>article p:nth-of-type(3) {
    font-size: rem;
  }
}

@media screen and (min-width: 600px) {
  .s-club-off .a-special-offer>article article {
    display: grid;
    grid-template-columns: 32.5% 1fr;
  }
}

.s-club-off .a-special-offer>article article p {
  margin-bottom: .2rem;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  letter-spacing: .1em;
  text-align: right;
}

@media screen and (min-width: 600px) {
  .s-club-off .a-special-offer figure {
    margin-bottom: 2rem !important;
  }
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-special-offer figure {
    margin-bottom: 2.5rem !important;
  }
}

.s-club-off .a-special-offer h3 {
  position: relative;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  padding-left: 1.8rem;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0;
}

@media screen and (min-width: 600px) {
  .s-club-off .a-special-offer h3 {
    margin-bottom: 1rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-special-offer h3 {
    padding-left: 2.2rem;
    font-size: 3.5rem;
  }
}

.s-club-off .a-special-offer h3:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: .6rem;
  height: 80%;
  background: var(--primary-color);
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-special-offer h3:before {
    width: .8rem;
  }
}

.s-club-off .a-special-offer h3 span {
  display: block;
  font-size: 1.7rem;
}

@media screen and (min-width: 600px) {
  .s-club-off .a-special-offer h3 span {
    display: inline-block;
  }
}

.s-club-off .a-special-offer h3 small {
  font-size: 2.1rem;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-special-offer h3 small {
    font-size: 2rem;
  }
}

.s-club-off .a-special-offer h4 {
  display: grid;
  align-items: center;
  height: 2.5rem;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  background: linear-gradient(90deg, #c30d23 0%, #c30d23 30%, rgba(195, 13, 35, 0.5) 100%);
  color: var(--white);
  font-size: 1.5rem;
  letter-spacing: .3em;
}

@media screen and (min-width: 600px) {
  .s-club-off .a-special-offer h4 {
    height: 100%;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-special-offer h4 {
    font-size: 1.3rem;
  }
}

.s-club-off .a-special-offer .mark {
  display: block;
  width: 15.8rem;
  margin-right: auto;
  margin-left: auto;
}

.s-club-off .a-special-offer .text-wrap p {
  position: relative !important;
  right: auto !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  color: var(--base-text-color) !important;
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  font-family: "Shippori Mincho", serif !important;
  line-height: 1.5 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
}

@media screen and (min-width: 600px) {
  .s-club-off .a-special-offer .text-wrap p {
    font-size: 2rem !important;
  }
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-special-offer .text-wrap p {
    font-size: 2.1rem !important;
  }
}

.s-club-off .a-special-offer .price {
  display: inline-block;
  transform: translate(0, 0.2rem);
  color: #c30d23;
  font-size: 5rem;
  font-weight: 800;
  font-family: "Shippori Mincho", serif;
  line-height: 1;
  letter-spacing: 0;
}

@media screen and (min-width: 600px) {
  .s-club-off .a-special-offer .price {
    font-size: 8rem;
  }
}

.s-club-off .a-special-offer .yen {
  color: #c30d23;
  font-size: 2.5rem;
  font-weight: 800;
  font-family: "Shippori Mincho", serif;
  line-height: 1;
  letter-spacing: 0;
}

@media screen and (min-width: 600px) {
  .s-club-off .a-special-offer .yen {
    font-size: 5rem;
  }
}

@media screen and (min-width: 600px) {
  .s-club-off .a-special-offer .yen span {
    font-size: 3.5rem;
  }
}

.s-club-off .a-special-offer .small {
  font-size: 1.3rem;
}

@media screen and (min-width: 600px) {
  .s-club-off .a-special-offer .small {
    font-size: 1.5rem;
  }
}

.s-club-off .a-special-offer a {
  margin-top: 2.5rem;
}

@media screen and (min-width: 600px) {
  .s-club-off .a-special-offer a {
    margin-left: 0;
  }
}

.s-club-off .a-special-offer a+p {
  margin-top: .5rem;
  margin-right: -1rem;
  font-size: 1.1rem !important;
  font-weight: 400 !important;
  text-align: left !important;
  letter-spacing: 0.06em !important;
}

@media screen and (min-width: 600px) {
  .s-club-off .a-special-offer a+p {
    margin-top: 1rem;
    line-height: 1.58333333;
  }
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-special-offer a+p {
    font-size: 1.2rem !important;
    letter-spacing: 0.1em !important;
  }
}

.s-club-off .a-special-offer a+p a {
  color: #c30d23;
  font-size: 1.4rem;
  font-weight: 900;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  letter-spacing: .08em;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-special-offer a+p a {
    font-size: rem;
  }
}

.s-club-off .a-hotel {
  overflow: hidden;
  background: #f1efd5;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-hotel .articles>article:nth-child(1) .text {
    width: 27.2rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-hotel .articles>article:nth-child(2) .text {
    width: 29.6rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-hotel .articles>article:nth-child(3) .text {
    width: 30.5rem;
  }
}

.s-club-off .a-resort {
  overflow: hidden;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-resort .articles>article:nth-child(1) .text {
    width: 29.8rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-resort .articles>article:nth-child(2) .text {
    width: 23.8rem;
  }
}

.s-club-off .a-resort .articles>article:nth-child(3) .text {
  width: 20.7rem;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-resort .articles>article:nth-child(4) .text {
    width: 29.4rem;
  }
}

.s-club-off .a-spa {
  overflow: hidden;
  background: #f1efd5;
}

.s-club-off .a-golf {
  overflow: hidden;
}

.s-club-off .a-golf .articles>article:nth-child(1) .text {
  width: 21rem;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-golf .articles>article:nth-child(1) .text {
    width: 21rem;
  }
}

.s-club-off .a-golf .example h3 {
  display: grid;
  place-items: center;
  height: 4.4rem;
  margin-bottom: 3rem;
  border-top: 0.1rem solid var(--black);
  border-bottom: 0.1rem solid var(--black);
  font-size: 2rem;
  letter-spacing: .2em;
}

@media screen and (min-width: 600px) {
  .s-club-off .a-golf .example>div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7.5%;
  }
}

.s-club-off .a-golf .example>div>article+article {
  margin-top: 5.5rem;
}

@media screen and (min-width: 600px) {
  .s-club-off .a-golf .example>div>article+article {
    margin-top: 0;
  }
}

.s-club-off .a-golf .example>div div {
  padding-top: 2rem;
}

.s-club-off .a-golf .example>div div article {
  padding-bottom: 1.5rem;
  border-bottom: .2rem solid #c30d23;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-golf .example>div div article {
    padding-bottom: 2rem;
  }
}

.s-club-off .a-golf .example>div div article p:nth-child(1) {
  margin-bottom: .2rem;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  letter-spacing: .1em;
  text-align: right;
}

.s-club-off .a-golf .example>div div article p+p {
  margin-top: 1rem;
}

.s-club-off .a-golf .example>div h4 {
  position: relative;
  margin-bottom: .5rem;
  margin-right: -1rem;
  padding-left: 1.8rem;
  color: var(--primary-color);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: .05em;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-golf .example>div h4 {
    padding-left: 2.2rem;
    font-size: 2.5rem;
  }
}

.s-club-off .a-golf .example>div h4:before {
  content: '';
  display: block;
  position: absolute;
  top: 51%;
  left: 0;
  transform: translate(0, -50%);
  width: .7rem;
  height: 80%;
  background: var(--primary-color);
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-golf .example>div h4:before {
    width: .8rem;
  }
}

.s-club-off .a-golf .example>div h5 {
  display: grid;
  align-items: center;
  height: 2.5rem;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  background: linear-gradient(90deg, #c30d23 0%, #c30d23 30%, rgba(195, 13, 35, 0.5) 100%);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: .3em;
}

.s-club-off .a-golf .example .price {
  color: #c30d23;
  font-size: 2.5rem;
  font-weight: 800;
  font-family: "Shippori Mincho", serif;
  line-height: 1.2;
  letter-spacing: 0;
}

@media screen and (min-width: 600px) {
  .s-club-off .a-golf .example .price {
    font-size: 2.4rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-golf .example .price {
    font-size: 2.7rem;
  }
}

.s-club-off .a-golf .example .small {
  font-size: 1.1rem;
  font-weight: 400;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  line-height: 1.4;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-golf .example .small {
    font-size: 1.2rem;
  }
}

.s-club-off .a-dailyuse {
  background: #f1efd5;
}

.s-club-off .a-dailyuse>div>figure+p {
  margin-top: 2rem;
  margin-bottom: 3rem;
  font-size: 1.9rem;
  line-height: 1.66666666;
  letter-spacing: .15em;
  text-align: left;
}

@media screen and (min-width: 600px) {
  .s-club-off .a-dailyuse>div>figure+p {
    text-align: center;
  }
}


@media screen and (min-width: 1024px) {
  .s-club-off .a-dailyuse>div>figure+p {
    margin-top: 4rem;
    margin-bottom: 5rem;
  }
}

@media screen and (min-width: 600px) {
  .s-club-off .a-dailyuse>div>div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7.5%;
  }
}

.s-club-off .a-dailyuse>div>div>article+article {
  margin-top: 5.5rem;
}

@media screen and (min-width: 600px) {
  .s-club-off .a-dailyuse>div>div>article+article {
    margin-top: 0;
  }
}

.s-club-off .a-dailyuse>div>div>article:nth-child(1) .text {
  width: 23.7rem;
}

@media screen and (min-width: 600px) {
  .s-club-off .a-dailyuse>div>div>article:nth-child(1) .text {
    width: 100%;
    margin-top: 1.85rem;
    margin-bottom: 1.85rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-dailyuse>div>div>article:nth-child(1) .text {
    margin-top: 2.05rem;
    margin-bottom: 2.05rem;
  }
}

.s-club-off .a-dailyuse>div>div>article:nth-child(2) .text {
  width: 27.8rem;
}

@media screen and (min-width: 600px) {
  .s-club-off .a-dailyuse>div>div>article:nth-child(2) .text {
    width: 100%;
  }
}

.s-club-off .a-dailyuse>div>div div {
  padding-top: 2rem;
}

.s-club-off .a-dailyuse>div>div div>p {
  margin-bottom: 1.5rem;
  margin-right: -1rem;
  font-size: 1.7rem;
  line-height: 1.66666666;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-dailyuse>div>div div>p {
    font-size: 1.9rem;
  }
}

.s-club-off .a-dailyuse>div>div div article {
  padding-bottom: 1.5rem;
  border-bottom: .2rem solid #c30d23;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-dailyuse>div>div div article {
    padding-bottom: 2rem;
  }
}

.s-club-off .a-dailyuse>div>div div article p {
  margin-right: -1rem;
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-dailyuse>div>div div article p {
    margin-right: -2rem;
    font-size: 1.7rem;
  }
}

.s-club-off .a-dailyuse>div>div div article p:nth-child(1) {
  margin-bottom: .2rem;
  margin-right: 0;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  letter-spacing: .1em;
  text-align: right;
}

.s-club-off .a-dailyuse>div>div div article p+p {
  margin-top: 1rem;
}

.s-club-off .a-dailyuse>div>div h3 {
  position: relative;
  margin-bottom: .5rem;
  padding-left: 1.8rem;
  color: var(--primary-color);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: .05em;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-dailyuse>div>div h3 {
    padding-left: 2.2rem;
    font-size: 2.5rem;
  }
}

.s-club-off .a-dailyuse>div>div h3:before {
  content: '';
  display: block;
  position: absolute;
  top: 51%;
  left: 0;
  transform: translate(0, -50%);
  width: .7rem;
  height: 80%;
  background: var(--primary-color);
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-dailyuse>div>div h3:before {
    width: .8rem;
  }
}

.s-club-off .a-dailyuse>div>div h3 img {
  position: absolute;
  top: 0;
  right: 0;
}

.s-club-off .a-dailyuse>div>div h4 {
  display: grid;
  align-items: center;
  height: 2.5rem;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  background: linear-gradient(90deg, #c30d23 0%, #c30d23 30%, rgba(195, 13, 35, 0.5) 100%);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: .3em;
}

.s-club-off .a-dailyuse .price {
  color: #c30d23;
  font-size: 2.5rem;
  font-weight: 800;
  font-family: "Shippori Mincho", serif;
  line-height: 1.2;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-dailyuse .price {
    font-size: 2.7rem;
  }
}

.s-club-off .a-dailyuse .yen {
  color: #c30d23;
  font-size: 1.6rem;
  font-weight: 800;
  font-family: "Shippori Mincho", serif;
  line-height: 1.2;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-dailyuse .yen {
    font-size: rem;
  }
}

.s-club-off .a-dailyuse .small {
  font-size: 1.1rem;
  font-weight: 400;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  line-height: 1.4;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-dailyuse .small {
    font-size: 1.2rem;
  }
}

.s-club-off .a-howto {
  max-width: 52rem;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 1.5rem;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-howto {
    max-width: 73rem;
    padding-bottom: 2.5rem;
  }
}

.s-club-off .a-howto h2 {
  display: grid;
  place-items: center;
  height: 6.4rem;
  margin-bottom: 2.5rem;
  background: #182d5d;
  color: var(--white);
  font-size: 2.5rem;
  letter-spacing: .3em;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-howto h2 {
    height: 8.4rem;
    margin-bottom: 4rem;
    margin-right: -3.5rem;
    margin-left: -3.5rem;
    font-size: 3rem;
    letter-spacing: .5em;
  }
}

.s-club-off .a-howto div+div {
  position: relative;
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 0.1rem solid var(--black);
}

.s-club-off .a-howto div+div:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  border-top: 1.4rem solid var(--black);
  border-right: 1.4rem solid transparent;
  border-left: 1.4rem solid transparent;
}

.s-club-off .a-howto div>p:nth-of-type(1) {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  align-items: start;
  gap: .5rem;
}

.s-club-off .a-howto div>p:nth-of-type(1) span:nth-child(1) {
  display: grid;
  place-items: center;
  border-radius: 100%;
  width: 2.5rem;
  height: 2.5rem;
  background: #182d5d;
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 700;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
}

.s-club-off .a-howto div>p:nth-of-type(1) span:nth-child(2) {
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  line-height: 1.32995566;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-howto div>p:nth-of-type(1) span:nth-child(2) {
    font-size: rem;
  }
}

.s-club-off .a-howto div>p:nth-of-type(1)+p {
  margin-top: 1rem;
  padding-left: 2.5rem;
  font-size: 1.25rem;
  font-weight: 400;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  line-height: 1.28;
  letter-spacing: .025em;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-howto div>p:nth-of-type(1)+p {
    font-size: 1.6rem;
  }
}

.s-club-off .a-howto a {
  margin-top: 2.5rem;
}

.s-club-off .a-howto article {
  margin-top: 4rem;
  padding: 0 1.5rem 8rem;
  border: 0.1rem solid var(--black);
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-howto article {
    padding: 0 2.5rem 3rem;
  }
}

.s-club-off .a-howto article p {
  margin-bottom: 2rem;
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  line-height: 1.5;
  letter-spacing: .025em;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-howto article p {
    font-size: rem;
  }
}

.s-club-off .a-howto h3 {
  width: fit-content;
  margin-top: -1.4rem;
  margin-bottom: 1.5rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
  background: var(--white);
  font-size: 1.6rem;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  letter-spacing: .1em;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-howto dl {
    display: grid;
    grid-template-columns: 10rem 1fr;
    gap: .8rem;
    line-height: 1.5;
  }
}

.s-club-off .a-howto dt {
  display: grid;
  place-items: center;
  margin-top: 1.5rem;
  background: #c30d23;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 400;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  letter-spacing: .1em;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-howto dt {
    margin-top: 0;
  }
}

.s-club-off .a-howto dd {
  color: #c30d23;
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-howto dd {
    font-size: 1.45rem;
  }
}

.s-club-off .a-howto figure {
  margin-top: -6rem;
  margin-bottom: 3rem !important;
  margin-right: 2.5rem;
  margin-left: 2.5rem;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-howto figure {
    margin-top: -10rem;
    margin-right: 3rem;
    margin-left: 3rem;
  }
}

.s-club-off .a-howto>p:nth-of-type(1) {
  display: grid;
  place-items: center;
  height: 10.6rem;
  background: #c30d23;
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-howto>p:nth-of-type(1) {
    height: 5rem;
    font-size: 1.7rem;
  }
}

.s-club-off .a-howto>p:nth-of-type(2) {
  margin-top: 3rem;
  font-size: 1.2rem;
  font-weight: 400;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  line-height: 1.66666666;
  letter-spacing: .05em;
}

@media screen and (min-width: 1024px) {
  .s-club-off .a-howto>p:nth-of-type(2) {
    margin-top: 5rem;
    font-size: 1rem;
    line-height: 2.1;
    letter-spacing: .15em;
  }
}

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

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

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

.u-gap-0 {
  gap: 0;
}

@media screen and (min-width: 1024px) {
  .u-pc-gap-0 {
    gap: 0;
  }
}

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

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

.u-zi-1 {
  position: relative;
  z-index: 1;
}

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

.u-opa-point-5 {
  opacity: 0.5;
}

.u-opa-point-7 {
  opacity: 0.7;
}

.u-cs-bottom {
  caption-side: bottom;
}

.u-fl-left {
  float: left !important;
}

img.u-fl-left {
  margin: 0 1.2rem 1.2rem 0;
}

@media screen and (min-width: 1024px) {
  img.u-fl-left {
    margin: 0 2.5rem 2.5rem 0;
  }
}

.u-fl-right {
  float: right !important;
}

img.u-fl-right {
  margin: 0 0 1.2rem 1.2rem;
}

@media screen and (min-width: 1024px) {
  img.u-fl-right {
    margin: 0 0 2.5rem 2.5rem;
  }
}

.u-wid-100pct {
  width: 100% !important;
}

.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;
}

.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-mt-xs {
  margin-top: 1.5rem !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: 6rem !important;
  }
}

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

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

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

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

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

.u-mb-xs {
  margin-bottom: 1.5rem !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: 6rem !important;
  }
}

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

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

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

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

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

.u-pt-xs {
  padding-top: 1.5rem !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: 6rem !important;
  }
}

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

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

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

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

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

.u-pb-xs {
  padding-bottom: 1.5rem !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: 6rem !important;
  }
}

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

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

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

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

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

@media screen and (min-width: 1024px) {
  .u-pc-mr-20 {
    margin-right: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .u-pc-ml-20 {
    margin-left: 2rem;
  }
}

.u-border-none {
  border: none !important;
}

.u-border {
  border: 0.2rem solid #000000;
}

@media screen and (min-width: 600px) {
  .u-border {
    border-width: .4rem;
  }
}

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

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

.u-bg-gray-yellow {
  background: #b6b3ab;
}

.u-col-white {
  color: #FFF !important;
}

.u-col-black {
  color: #000000;
}

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

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

.u-col-vivid-red {
  color: #FF0000;
}

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

.u-col-deep-blue {
  color: #002fb6;
}

.u-col-dark-blue {
  color: #00304d;
}

.u-col-green {
  color: #00a9ab;
}

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

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

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

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

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

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

@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-1 {
  letter-spacing: -0.1em !important;
}

.u-ls-minus-05 {
  letter-spacing: -0.05em !important;
}

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

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

.u-ls-small {
  letter-spacing: 0.04em;
}

.u-ls-medium {
  letter-spacing: 0.12em;
}

.u-ls-large {
  letter-spacing: 0.16em;
}

.u-ls-xl {
  letter-spacing: 0.2em;
}

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

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

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

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

.u-td-ul {
  text-decoration: underline;
}

.u-td-lt {
  text-decoration: line-through;
}

.u-va-top {
  vertical-align: top !important;
}

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

.u-wb-break-all {
  word-break: break-all;
}

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

.u-clearfix {
  zoom: 1;
}

.u-clearfix:after {
  display: block;
  clear: both;
  content: "";
}

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

.u-hover-image-zoom {
  display: block;
  overflow: hidden;
}

.u-hover-image-zoom:active:not(:disabled) img,
.u-hover-image-zoom:hover:not(:disabled) img {
  transform: scale(1.1);
}

.u-hover-image-zoom figure {
  overflow: hidden;
}

.u-hover-image-zoom picture {
  overflow: hidden;
}

.u-hover-image-zoom img {
  object-fit: cover;
  transition: transform .25s ease-out;
}

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