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

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

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

a, button {
  cursor: revert;
}

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

table {
  border-collapse: collapse;
}

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

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

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body.is-fixed {
  overflow: hidden;
}

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

p {
  line-break: strict;
}

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

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

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

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

button, select {
  cursor: pointer;
}

picture, video, iframe {
  display: block;
}

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

figcaption {
  margin-top: 1.2rem;
}

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

th {
  text-align: left;
}

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

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

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

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

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

ol {
  margin-left: 1.8em;
}

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

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

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

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

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

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

.se {
  pointer-events: none;
}

.se a {
  pointer-events: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.l-main {
  overflow: hidden;
  position: relative;
  padding-top: 8rem;
  padding-top: 80px;
}
@media screen and (max-width: 599px) {
  .l-main {
    padding-top: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*------------------------------------------------------------
  index
------------------------------------------------------------*/
.s-index .a-fv {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  /* height: 100svh; */
  background: var(--white);
}

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

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

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

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

@media screen and (max-width: 599px) {
  .s-index .a-fv {
    position: relative;
    top: inherit;
    left: inherit;
    width: 100%;
    height: auto;
  }

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

/* .s-index .mv {
  width: 100vw;
  position: relative;
  background-image: url(/taishin/images/index/mv.png);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
} */
 .container {
  position: relative;
  height: 100vh;
 }
 .inner {
  position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   clip-path: inset(0);
 }
/* .bg{
   position: fixed;
   top: 0;
   left: 0;
   width: 100vw;
   height: 100vh;
   background-image: url('/taishin/images/index/mv.png');
   background-size: cover;
   background-position: center;
   z-index: -1;
} */
 /* .s-index .mv {
  width: 100vw;
  height: 100vh;
  position: relative;
  background-image: url(/taishin/images/index/mv.png);
  background-size: cover;
  background-position: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
} */
.s-index .mv::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url(/taishin/images/index/mv.png);
  background-size: cover;
  background-position: center;
  z-index: -3;
}
.s-index .mv {
  position: relative;
  z-index: -2;
}

.s-index .mv h1.title {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  /* z-index: -1; */
  width: min(75vw, 750px);
  opacity: 1;
}

.s-index .mv .mv-cover {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #23160e;
}

.s-index .mv .catch-area {
  padding-top: calc(100vh + 100px);
  text-align: center;
  color: var(--white);
  padding-bottom: 120px;
  position: relative;
}
.s-index .mv .catch-area h2 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 1em;
}
.s-index .mv .catch-area p {
  font-size: 20px;
  font-weight: bold;
  line-height: 2.3;
  margin-bottom: 3em;
}
.s-index .mv .catch-area p b {
  display: inline;
  padding: 0 4px 7px 4px;
  background: linear-gradient(transparent 88%, #f5a000 0%);
}

@media screen and (max-width: 599px) {
  .s-index .mv h1.title {
    width: inherit;
    width: 89.74vw;
    text-align: center;
  }
  .s-index .mv .catch-area {
    padding-bottom: min(38.64vw, 13rem);
  }
  .s-index .mv .catch-area h2 {
    font-size: 28px;
  }
  .s-index .mv .catch-area p {
    font-size: 18px;
    margin-bottom: 2em;
    text-align: left;
  }
}

.a-about {
  background: var(--secondary-color);
  padding-bottom: 140px;
  position: relative;
}
.a-about::after {
  content: '';
  display: block;
  width: 250px;
  height: 120px;
  border-left: 125px solid transparent;
  border-right: 125px solid transparent;
  border-top: 60px solid var(--beige);
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  z-index: 2;
}
.a-about .l-center--small {
  max-width: calc(990px + 10rem);
}
.a-about .r7g-premium {
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 120px;
  padding: 2.5rem;
}
.a-about .r7g-premium .r7g-premium-img {
  width: min(40%, 265px);
  flex-shrink: 0;
  margin-left: 22px;
  margin-right: min(5%, 47px);
}
.a-about .r7g-premium p {
  font-size: 16px;
  line-height: 1.625;
}
.a-about .r7g-premium p b {
  font-weight: bold;
  color: var(--brown);
}
.a-about .column-wrap {
  display: flex;
  gap: min(8rem, 80px);
  margin-bottom: 38px;
}
.a-about div.column-cont {
  width: min(40%, 314px);
  flex-shrink: 0;
}
.a-about p.column-cont {
  font-size: 16px;
  line-height: 2.25;
}
.a-about p.column-cont b {
  font-weight: 600;
  color: var(--brown);
  padding: 0 4px 7px 4px;
  background: linear-gradient(transparent 88%, #f6bc96 0%);
}

@media screen and (max-width: 599px) {
  .a-about {
    padding-bottom: 7rem;
  }
  .a-about .r7g-premium {
    display: block;
    margin-top: 3rem;
    margin-bottom: 6.5rem;
    padding: 2.5rem 2rem 2rem;
  }
  .a-about .r7g-premium .r7g-premium-img {
    width: min(100%, 213px);
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
  }
  .a-about .r7g-premium p {
    font-size: 15px;
    line-height: 1.7333;
  }
  .a-about .column-wrap {
    display: block;
    margin-bottom: 3rem;
  }
  .a-about div.column-cont {
    width: auto;
    text-align: center;
    margin-bottom: 2rem;
  }
  .about-r7g-cont {
    text-align: center;
  }
}

.a-realization {
  background-color: var(--primary-color);
  color: var(--white);
  padding-bottom: 11rem;
}
.a-realization .realization-wrap {
  max-width: 1500px;
  /* height: min(38.6666vw, 580px); */
  margin: 0 auto;
  position: relative;
  margin-bottom: 100px;
}
.a-realization .column-wrap {
  display: flex;
  justify-content: space-between;
}
.a-realization .column-cont.txt {
  width: min(43.5vw, 522px);
}
.a-realization h2 {
  font-size: 34px;
  line-height: 1.5;
  margin-bottom: 50px;
}
.a-realization h2 span {
  font-size: 44px;
}
.a-realization h2 img {
  margin-top: 20px;
}
.a-realization .column-cont.txt p {
  font-size: 15px;
  line-height: 2;
}
.a-realization .column-cont.img {
  width: min(48.3333vw, 725px);
  flex-shrink: 0;
  position: absolute;
  right: 0;
}

@media screen and (max-width: 599px) {
  .a-realization {
    padding-bottom: 0;
  }
  .a-realization .realization-wrap {
    /* height: auto; */
    margin-bottom: 0;
  }
  .a-realization .column-wrap {
    display: block;
  }
  .a-realization .column-cont.txt {
    width: auto;
  }
  .a-realization h2 {
    font-size: 24px;
    margin-bottom: 4rem;
    text-align: center;
  }
  .a-realization h2 span {
    font-size: 34px;
  }
  .a-realization h2 img {
    margin-top: 3rem;
  }
  .a-realization .column-cont.txt p {
    /* font-size: 15px; */
    margin-bottom: 2rem;
  }
  .a-realization .column-cont.img {
    position: inherit;
    right: inherit;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}

.a-contact {
  /* max-width: 990px; */
  max-width: calc(990px + 6rem);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-left: 3rem;
  padding-right: 3rem;
}
.a-contact a {
  background-color: var(--white);
  border-radius: 10px;
  display: block;
  position: relative;
  padding: 45px 0 25px;
}
.a-contact a .shoulder {
  font-size: 16px;
  font-weight: bold;
  background-color: var(--beige);
  display: inline-block;
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: min(95%, 600px);
  padding: 6px;
}
.a-contact a .shoulder span {
  color: var(--brown);
}
.a-contact a .btn-inner picture {
  display: inline;
}
.a-contact a .txt {
  font-size: 22px;
  font-weight: bold;
}
.a-contact a .txt img {
  vertical-align: middle;
  margin-left: 15px;
  transform: translateY(-2px);
}
.a-contact a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 599px) {
  .a-contact {
    padding-top: 4rem;
    background-color: var(--white);
  }
  .a-contact a {
    background-color: #f5a000;
    padding: 0 0 20px;
  }
  .a-contact a .shoulder {
    font-size: 15px;
    background-color: #f7f4f2;
    display: block;
    border-radius: 10px 10px 0 0;
    position: inherit;
    top: inherit;
    left: inherit;
    transform: inherit;
    width: auto;
    /* padding: 6px 0; */
  }
  .a-contact a .shoulder span {
    color: #f5a000;
  }
  .a-contact a .btn-inner {
    display: flex;
    justify-content: center;
  }
  .a-contact a .txt {
    font-size: 18px;
    padding-top: 20px;
    color: var(--white);
    text-align: left;
    line-height: 1.4;
    position: relative;
    margin-right: 50px;
  }
  .a-contact a .txt img {
    vertical-align: middle;
    margin-left: 15px;
    transform: translateY(-25%);
    position: absolute;
    top: 50%;
    right: -50px;
  }
  .a-contact a:hover {
    opacity: 0.8;
  }
}

.a-wallstat {
  padding-bottom: 0;
  background-color: var(--white);
}
.a-wallstat .column-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 90px;
}
.a-wallstat .column-cont.txt {
  width: 570px;
}
.a-wallstat .column-cont.txt p {
  font-size: 15px;
  line-height: 2;
}
.a-wallstat .column-cont.img {
  width: min(40%, 482px);
  flex-shrink: 0;
}
.a-wallstat h2 {
  font-size: 30px;
  margin-bottom: 50px;
}
.a-wallstat h2 span {
  font-size: 24px;
}
.a-wallstat .wallstat-video-wrap {
  background-image: linear-gradient(1turn,var(--beige),#fff);
  padding-bottom: 185px;
}
.a-wallstat .wallstat-video {
  /* width: 800px; */
  width: calc(100% - 6rem);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.a-wallstat .video-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.a-wallstat .video-wrap iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 599px) {
  .a-wallstat .column-wrap {
    display: block;
    margin-bottom: 5rem;
  }
  .a-wallstat .column-cont.txt {
    width: auto;
    margin-bottom: 2rem;
  }
  .a-wallstat .column-cont.img {
    width: auto;
    text-align: center;
  }
  .a-wallstat h2 {
    font-size: 25px;
    margin-bottom: 3rem;
    text-align: center;
    white-space: nowrap;
  }
  .a-wallstat h2 span {
    font-size: 20px;
  }
  .a-wallstat .wallstat-video-wrap {
    padding-bottom: 10rem;
  }
  .a-wallstat .wallstat-video {
    width: calc(100% - 6rem);
    margin-left: 3rem;
    margin-right: 3rem;
  }
}

.a-why {
  background-color: var(--beige);
  position: relative;
  padding-top: min(5.0666vw, 76px);
  padding-left: min(5.3333vw, 80px);
  padding-right: min(5.3333vw, 80px);
  /* padding-bottom: 23rem; */
  z-index: 1;
}
.a-why .why-img {
  text-align: center;
  position: relative;
}
.a-why .why-title {
  position: absolute;
  left: 50%;
  top: min(15.6666vw, 250px);
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: min(15vw, 118px);
}
.a-why .column-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px min(2vw, 60px);
  margin-top: 60px;
  margin-bottom: 100px;
  padding: 0;
}
.a-why .why-cont {
  width: min(42vw, 535px);
  border-left: 5px solid var(--primary-color);
  background-color: var(--white);
  border-radius: 0 0 15px 0;
  padding: 25px 40px 30px;
}
.a-why .why-cont .why-no {
  font-weight: bold;
  font-size: 17px;
  line-height: 1;
  border-bottom: 1px solid var(--beige);
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.a-why .why-cont h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.428;
  margin-bottom: 20px;
}
.a-why .why-cont h2 span {
  color: var(--brown);
}
.a-why .why-cont p {
  font-size: 15px;
}
.a-contact.or {
  padding-left: 0;
  padding-right: 0;
  max-width: 990px;
}
.a-contact.or a {
  background-color: #f5a000;
  color: var(--white);
}
.a-contact.or a .shoulder {
  background-color: var(--white);
  border: 1px solid #f5a000;
  color: var(--black);
}
.a-contact.or a .shoulder span {
  color: #f5a000;
}

@media screen and (min-width: 1270px) {
  .a-why .why-cont h2 {
    height: 120px;
    display: table-cell;
    vertical-align: middle;
  }
  .a-why .why-cont p {
    margin-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  .a-why {
    padding-top: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .a-why .why-title {
    /* top: max(54.87vw, 214px);
    width: min(100%, 306px); */
  }
  .a-why .why-img img {
    width: 100%;
  }
  .a-why .column-wrap {
    display: block;
    gap: inherit;
    margin-top: 5.5rem;
    margin-bottom: 6rem;
    padding: 0 1.5rem;
  }
  .a-why .why-cont {
    width: auto;
    margin-bottom: 2rem;
    padding: 2.2rem 2rem;
  }
  .a-why .why-cont .why-no {
    font-size: 15px;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
  .a-why .why-cont h2 {
    font-size: 22px;
    margin-bottom: 2rem;
  }

  .a-contact.or {
    background-color: inherit;
    padding-top: 0;
  }
  
  .a-why .a-contact.or {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .a-why .why-title {
    width: min(100%, 308px);
  }
  .a-contact.or a .shoulder {
    border: none;
  }
}

.a-concept {
  background-color: var(--beige);
  position: relative;
  margin-top: -25vw;
}
.a-concept .bg-round {
  border-radius: 200%;
  width: 120vw;
  height: 50vw;
  background-color: #f08200;
  left: 50%;
  position: relative;
  transform: translate(-50%, 50%);
  z-index: 0;
}
.a-concept .concept-inner {
  position: relative;
  background-color: #f08200;
  padding-bottom: 160px;
  z-index: 0;
}
.a-concept .concept-inner-f {
  position: relative;
  text-align: center;
  padding-bottom: 90px;
}
.a-concept .concept-inner-f::after {
  background-image: radial-gradient(circle, #fabc00, #f0820000 50%);
    top: 50%;
    content: "";
    height: 100vw;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    width: 100vw;
    z-index: -2;
}
.concept-inner-f h2 {
  margin-bottom: 90px;
}
.a-concept .concept-inner-f p {
  font-size: 18px;
  line-height: 2.5555;
  letter-spacing: 0.02em;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}
.a-concept .concept-inner .concept-img {
  position: absolute;
}
.a-concept .concept-inner .concept-img.img1 {
  top: 175px;
  right: min(4.66vw,70px);
}
.a-concept .concept-inner .concept-img.img2 {
  top: 590px;
  right: min(47.43vw, 185px);
}
.a-concept .concept-inner .concept-img.img3 {
  bottom: 180px;
  left: -155px;
  width: min(23vw, 310px);
}
.a-concept .concept-cont-wrap {
  background-color: var(--white);
  border-radius: 10px;
  position: relative;
  z-index: 1;
  padding: min(5.3333vw, 80px);
  max-width: calc(100rem + 10rem);
  width: calc(100vw - 8rem);
}
.a-concept .concept-cont-wrap .column-wrap {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 90px;
}
.a-concept .concept-cont-wrap .column-cont.img {
  width: min(40%, 468px);
  flex-shrink: 0;
  text-align: right;
}
.a-concept .concept-cont-wrap h3 {
  font-size: 26px;
  line-height: 1.5;
  margin-bottom: 40px;
  padding-left: 24px;
  border-left: 4px solid #000;
}
.a-concept .concept-cont-wrap p {
  font-size: 15px;
  line-height: 2;
}
.a-concept .concept-cont-wrap .column-cont.img a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1279px) {
  .a-concept .concept-inner .concept-img.img3 {
    left: -30px;
    max-width: 26vw;
  }
}

@media screen and (max-width: 1200px) {
  .a-concept .concept-inner .concept-img.img2 {
    right: min(47.43vw, 85px);
  }
}

@media screen and (max-width: 1024px) {
  .a-concept .concept-inner .concept-img.img1 {
    right: min(2vw,50px);
  }
  .a-concept .concept-inner .concept-img.img3 {
    max-width: 23vw;
  }
}

@media screen and (max-width: 990px) {
  .a-concept .concept-inner .concept-img.img1 {
    top: 150px;
    right: min(1.2vw,10px);
    max-width: 23vw;
  }
  .a-concept .concept-inner .concept-img.img2 {
    top: 715px;
    right: min(2vw, 5px);
    max-width: 27vw;
  }
  .a-concept .concept-inner .concept-img.img3 {
    bottom: 65px;
  }
}

@media screen and (max-width: 768px) {
  .a-concept .concept-inner .concept-img.img1 {
    top: 140px;
    right: -2%;
  }
}

@media screen and (max-width: 599px) {
  .a-concept .concept-inner {
    padding-bottom: 6rem;
    padding-top: 64.1vw;
  }
  .a-concept .concept-inner-f {
    padding-bottom: 58.97vw;
    margin-bottom: min(10.25vw, 40px);
  }
  .a-concept .concept-inner-f::after {
    height: 100%;
    width: 200vw;
    top: 30%;
  }
  .concept-inner-f h2 {
    margin-bottom: 45px;
  }
  .a-concept .concept-inner-f p {
    font-size: 15px;
    line-height: 2.2666;
    margin-bottom: 30px;
  }
  .a-concept .concept-inner .concept-img.img1 {
    top: 8.9vw;
    left: 5.12vw;
    max-width: 47.43vw;
    right: inherit;
  }
  .a-concept .concept-inner .concept-img.img2 {
    top: 26.92vw;
    right: 0;
    max-width: 40.3vw;
  }
  .a-concept .concept-inner .concept-img.img3 {
    bottom: 0;
    left: 50%;
    max-width: none;
    width: 58.97vw;
    margin-left: -29.485vw;
  }
  .a-concept .concept-inner .concept-img img {
    width: 100%;
  }
  .a-concept .concept-cont-wrap {
    padding: 3rem 2rem 2rem;
  }
  .a-concept .concept-cont-wrap .column-wrap {
    display: block;
    gap: inherit;
    margin-bottom: 5rem;
  }
  .a-concept .concept-cont-wrap .column-wrap.bnr {
    margin-bottom: 0;
  }
  .a-concept .concept-cont-wrap .column-cont.img {
    width: auto;
    text-align: center;
    margin-top: 1rem;
  }
  .a-concept .concept-cont-wrap .column-wrap.bnr .column-cont.img {
    margin-top: 3rem;
  }
  .a-concept .concept-cont-wrap h3 {
    font-size: 21px;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
  }
  .a-concept .concept-cont-wrap p {
    line-height: 1.8666;
  }
  .a-contact.bottom {
    padding-top: 6rem;
  }
}


.a-follow {
  background-color: var(--white);
}
.a-follow .l-center--small {
  max-width: calc(80rem + 10rem);
  text-align: center;
}
.a-follow h2 {
  font-size: 30px;
  margin-bottom: 70px;
}
.a-follow p {
  font-size: 15px;
  line-height: 2;
  margin-top: 40px;
}
.a-follow .promise-wrap {
  background-color: var(--beige);
  padding: 15px;
  margin-top: 35px;
}
.a-follow .promise-cont {
  border-image-source: url(/taishin/images/index/border-img.png); 
  border-image-slice: 21;
  border-image-width:21px;
  padding: 20px 40px;
}
.a-follow .promise-cont h3 {
  font-size: 24px;
  font-weight: bold;
  color: var(--brown);
  text-align: center;
  margin-bottom: 30px;
}
.a-follow .promise-cont li {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.625em;
  margin-bottom: 1em;
  position: relative;
  padding-left: 26px;
  text-align: left;
}
.a-follow .promise-cont li::before {
  display: inline-block;
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 1em;
  border: 5px solid #d4905a;
  position: absolute;
  left: 0;
  top: 4px;
}

@media screen and (max-width: 599px) {
  .a-follow {
    padding-bottom: 6rem;
  }
  .a-follow .l-center--small {
    max-width: calc(80rem + 10rem);
    text-align: center;
  }
  .a-follow h2 {
    font-size: 25px;
    line-height: 1.6;
    margin-bottom: 2.5rem;
  }
  .a-follow p {
    text-align: left;
    margin-top: 3rem;
  }
  .a-follow .promise-wrap {
    margin-top: 4rem;
  }
  .a-follow .promise-cont {
    padding: 20px 10px 5px;
  }
  .a-follow .promise-cont h3 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .a-follow .promise-cont li {
    font-size: 15px;
    padding-left: 24px;
  }
}

.a-seminar {
  padding-top: 0;
  background-color: var(--beige);
}
.a-seminar h2 {
  text-align: center;
  font-size: 30px;
  color: var(--white);
  background-color: var(--primary-color);
  padding: 40px 2em;
}
.a-seminar .seminar-txt {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 65px;
}
.a-seminar .seminar-txt p {
  font-size: 15px;
  line-height: 2;
}
.a-seminar .seminar-txt h3 {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: var(--white);
  background-color: var(--brown);
  border-radius: 2em;
  padding: 1rem;
  margin: 50px 0 25px;
}
.a-seminar .seminar-txt li {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.625em;
  margin-bottom: 20px;
  position: relative;
  padding-left: 26px;
  padding-bottom: 20px;
  text-align: left;
  border-bottom: 1px solid #c9c2bc;
}
.a-seminar .seminar-txt li:last-child {
  border-bottom: none;
}
.a-seminar .seminar-txt li::before {
  display: inline-block;
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 1em;
  border: 5px solid #d4905a;
  position: absolute;
  left: 0;
  top: 6px;
}
.a-seminar .tour-wrap {
  background-color: var(--white);
  border-radius: 30px;
  padding: 5rem min(5.3333vw, 8rem) min(5.3333vw, 8rem);
  margin-top: 7rem;
}
.a-seminar .tour-wrap h3 {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  margin-bottom: 35px;
}
.a-seminar .tour-wrap h3 span {
  display: block;
  font-size: 16px;
}
.a-seminar .tour-wrap h3::after {
  display: block;
  content: '';
  width: 120px;
  height: 3px;
  background-color: var(--brown);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 10px;
}
.a-seminar .tour-wrap p {
  text-align: center;
  font-size: 15px;
  line-height: 2;
  margin-bottom: 40px;
}
.a-seminar .tour-wrap .column-wrap {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-bottom: 40px;
}
.a-seminar .tour-wrap .column-cont.img {
  width: min(49.5%, 490px);
  flex-shrink: 0;
}
.a-seminar .tour-wrap .column-cont.txt {
  width: min(44.44%, 440px);
}
.a-seminar .tour-wrap .column-cont.txt dt {
  font-size: 15px;
  font-weight: bold;
  color: var(--brown);
}
.a-seminar .tour-wrap .column-cont.txt dd {
  font-size: 14px;
  line-height: 1.85;
  border-bottom: 1px solid #d8d2cb;
  padding-bottom: 0.8em;
  padding-top: 0.3em;
  margin-bottom: 0.8em;
}
.a-seminar .tour-wrap .column-cont.txt dd .map-link {
  text-decoration: underline;
}
.a-seminar .tour-wrap .column-cont.txt dd .map-link::before {
  display: inline-block;
  content: '';
  width: 12px;
  height: 18px;
  background-image: url(/taishin/images/index/icon-map.png);
  background-repeat: no-repeat;
  margin-right: 0.5em;
  vertical-align: middle;
}
.a-seminar .tour-wrap .map iframe {
  width: 100%;
}

@media screen and (max-width: 599px) {
  .a-seminar {
    margin-top: 0;
    padding-bottom: 0;
  }
  .a-seminar h2 {
    font-size: 25px;
    padding: 40px 20px;
  }
  .a-seminar .seminar-txt {
    margin-top: 35px;
  }
  .a-seminar .seminar-txt h3 {
    font-size: 17px;
    line-height: 1.5;
    border-radius: 5px;
    margin: 25px 0 20px;
  }
  .a-seminar .seminar-txt li {
    font-size: 17px;
    line-height: 1.52;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  .a-seminar .tour-wrap {
    border-radius: 0;
    padding: 4rem 3rem 0;
    margin: 40px calc(50% - 50vw) 0;
    width: 100vw;
  }
  .a-seminar .tour-wrap h3 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 30px;
  }
  .a-seminar .tour-wrap h3 span {
    font-size: 15px;
  }
  .a-seminar .tour-wrap h3::after {
    width: 100px;
    height: 3px;
    margin-top: 15px;
  }
  .a-seminar .tour-wrap p {
    text-align: left;
    margin-bottom: 20px;
  }
  .a-seminar .tour-wrap .column-wrap {
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  .a-seminar .tour-wrap .column-cont.img {
    width: auto;
    margin-bottom: 20px;
    text-align: center;
  }
  .a-seminar .tour-wrap .column-cont.txt {
    width: auto;
  }
  .a-seminar .tour-wrap .column-cont.txt dd {
    line-height: 1.7;
  }
  .a-seminar .tour-wrap .map iframe {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}

.s-contact {
  background-color: var(--white);
  padding-bottom: 4rem;
}
.s-contact h2 {
  font-size: 30px;
  margin-bottom: 40px;
  text-align: center;
}
.form-wrap iframe {
 height: 890px; 
}
.form-wrap .form-link {
  font-size: 15px;
}
.form-wrap .form-link a {
  color: #f5a000;
  text-decoration: underline;
}

@media screen and (max-width: 856px) {
  .form-wrap iframe {
    height: 1200px; 
  }
}

@media screen and (max-width: 599px) {
  .s-contact h2 {
    font-size: 25px;
    line-height: 1.6;
    margin-bottom: 25px;
  }
}







.a-btn-fixed {
  position: fixed;
  right: 30px;
  bottom: 35px;
  background-color: #3e2f27;
  border-radius: 14px;
  width: 330px;
  padding: 7px;
  z-index: 88;
}

.a-btn-fixed a {
  color: var(--white);
  font-weight: 600;
}

.a-btn-fixed a h3 {
  font-size: 19px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 47px;
  padding-bottom: 4px;
}

.a-btn-fixed a .lg {
  background-color: var(--white);
  color: var(--black);
  padding: 18px 23px;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 0 0 10px 10px;
}

.a-btn-fixed a .lg b {
  font-size: 19px;
  color: var(--brown);
}

.a-btn-fixed a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 599px) {
  .a-btn-fixed {
    right: 50%;
    bottom: 0;
    transform: translateX(50%);
    border-radius: 10px 10px 0 0;
    width: 89.74vw;
    padding: 7px;
  }

  .a-btn-fixed a h3 {
    font-size: 20px;
  }

}


.fadeIn {
  opacity: 0;
  transform: translateY(30px);
  will-change: transform;
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.u-ff-min {
  font-family: "Shippori Mincho", serif;
}

.u-ff-got {
  font-family: "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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