/**
 * Swiper 12.1.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 18, 2026
 */
:root {
  --swiper-theme-color:#007aff;
}

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

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

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

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

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

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

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

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

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

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

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

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

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

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

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

.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper:before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .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-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-wrapper:before {
      height: var(--swiper-centered-offset-after);
      min-width: 1px;
      width: 100%;
    }
  }
}

.swiper-3d {
  .swiper-slide-shadow, .swiper-slide-shadow-bottom, .swiper-slide-shadow-left, .swiper-slide-shadow-right, .swiper-slide-shadow-top {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.1490196078);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  }
}

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

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

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

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

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

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

.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 {
    height: var(--swiper-virtual-size);
    width: 1px;
  }
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  align-items: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  cursor: pointer;
  display: flex;
  height: var(--swiper-navigation-size);
  justify-content: center;
  position: absolute;
  width: var(--swiper-navigation-size);
  z-index: 10;
  &.swiper-button-disabled {
    cursor: auto;
    opacity: 0.35;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    cursor: auto;
    opacity: 0;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  svg {
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    width: 100%;
    fill: currentColor;
    pointer-events: none;
  }
}

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

.swiper-button-next, .swiper-button-prev {
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  top: var(--swiper-navigation-top-offset, 50%);
}

.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}

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

.swiper-horizontal {
  .swiper-button-next, .swiper-button-prev, ~ .swiper-button-next, ~ .swiper-button-prev {
    margin-left: 0;
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    top: var(--swiper-navigation-top-offset, 50%);
  }
  &.swiper-rtl .swiper-button-next, &.swiper-rtl ~ .swiper-button-next, & ~ .swiper-button-prev, .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  &.swiper-rtl .swiper-button-prev, &.swiper-rtl ~ .swiper-button-prev, & ~ .swiper-button-next, .swiper-button-next {
    left: auto;
    right: var(--swiper-navigation-sides-offset, 4px);
  }
  &.swiper-rtl .swiper-button-next, &.swiper-rtl ~ .swiper-button-next, & ~ .swiper-button-prev, .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev, &.swiper-rtl ~ .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}

.swiper-vertical {
  .swiper-button-next, .swiper-button-prev, ~ .swiper-button-next, ~ .swiper-button-prev {
    left: var(--swiper-navigation-top-offset, 50%);
    margin-left: calc(0px - var(--swiper-navigation-size) / 2);
    margin-top: 0;
    right: auto;
  }
  .swiper-button-prev, ~ .swiper-button-prev {
    bottom: auto;
    top: var(--swiper-navigation-sides-offset, 4px);
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next, ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transform: translateZ(0);
  transition: opacity 0.3s;
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  &.swiper-pagination-disabled, .swiper-pagination-disabled > & {
    display: none !important;
  }
}

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

.swiper-pagination-bullets-dynamic {
  font-size: 0;
  overflow: hidden;
  .swiper-pagination-bullet {
    position: relative;
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active, .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}

.swiper-pagination-bullet {
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  display: inline-block;
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  button& {
    appearance: none;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }
  &:only-child {
    display: none !important;
  }
}

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

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  left: var(--swiper-pagination-left, auto);
  right: var(--swiper-pagination-right, 8px);
  top: 50%;
  transform: translate3d(0, -50%, 0);
  .swiper-pagination-bullet {
    display: block;
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition: transform 0.2s, top 0.2s;
    }
  }
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition: transform 0.2s, left 0.2s;
    }
  }
}

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

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

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.2509803922));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: scale(0);
    transform-origin: left top;
    width: 100%;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  &.swiper-pagination-horizontal, &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-horizontal > &, .swiper-vertical > &.swiper-pagination-progressbar-opposite {
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
    width: 100%;
  }
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, &.swiper-pagination-vertical, .swiper-horizontal > &.swiper-pagination-progressbar-opposite, .swiper-vertical > & {
    height: 100%;
    left: 0;
    top: 0;
    width: var(--swiper-pagination-progressbar-size, 4px);
  }
}

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

.swiper-scrollbar {
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1019607843));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  &.swiper-scrollbar-disabled, .swiper-scrollbar-disabled > & {
    display: none !important;
  }
  &.swiper-scrollbar-horizontal, .swiper-horizontal > & {
    bottom: var(--swiper-scrollbar-bottom, 4px);
    height: var(--swiper-scrollbar-size, 4px);
    left: var(--swiper-scrollbar-sides-offset, 1%);
    position: absolute;
    top: var(--swiper-scrollbar-top, auto);
    width: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
    z-index: 50;
  }
  &.swiper-scrollbar-vertical, .swiper-vertical > & {
    height: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
    left: var(--swiper-scrollbar-left, auto);
    position: absolute;
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    width: var(--swiper-scrollbar-size, 4px);
    z-index: 50;
  }
}

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

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

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

.swiper-zoom-container {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  text-align: center;
  width: 100%;
  > canvas, > img, > svg {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
  }
}

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

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

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

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

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

.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

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

.swiper-cube {
  .swiper-slide {
    backface-visibility: hidden;
    height: 100%;
    pointer-events: none;
    transform-origin: 0 0;
    visibility: hidden;
    width: 100%;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  &.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
  .swiper-slide-active {
    &, & .swiper-slide-active {
      pointer-events: auto;
    }
  }
  .swiper-slide-active, .swiper-slide-next, .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }
  .swiper-cube-shadow {
    bottom: 0;
    height: 100%;
    left: 0;
    opacity: 0.6;
    position: absolute;
    width: 100%;
    z-index: 0;
    &:before {
      background: #000;
      bottom: 0;
      content: "";
      filter: blur(50px);
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
    }
  }
}

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

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

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

.swiper-flip {
  .swiper-slide {
    backface-visibility: hidden;
    pointer-events: none;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    &, & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

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

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

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

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

/** ===================================
  mixin/function
==================================== */
@media all and (max-width: 749px) {
  .onlyPc {
    display: none !important;
  }
}
@media all and (min-width: 750px) {
  .onlySp {
    display: none !important;
  }
}
.js-scroll {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.js-scroll-in {
  opacity: 1;
  transform: translateY(0);
}

html {
  overflow-x: hidden;
}

body {
  color: #2D2519;
  font-family: "ZenKakuGothicNew-Medium";
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
@media all and (min-width: 750px) {
  body {
    background: #f2f1ed url(../images/about_bg_pc.webp) 0 0 no-repeat;
    background-size: 100% auto;
  }
}
@media all and (max-width: 749px) {
  body {
    background: #f2f1ed url(../images/about_bg_sp.webp) 0 0 no-repeat;
    background-size: 100% auto;
  }
}

* {
  box-sizing: border-box;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

button,
input,
select {
  font: inherit;
}

@media all and (min-width: 750px) {
  .main {
    padding-bottom: 6.7em;
  }
}
@media all and (max-width: 749px) {
  .main {
    padding-bottom: 22%;
  }
}

@media all and (min-width: 750px) {
  .section-head {
    margin-bottom: 5.5em;
  }
}
@media all and (max-width: 749px) {
  .section-head {
    padding-bottom: 7%;
  }
}
.section-head-label {
  margin: 0 0 0.3em;
  letter-spacing: 0;
  color: #E5DBCC;
  font-family: "ZenKakuGothicNew-Medium";
}
@media all and (min-width: 750px) {
  .section-head-label {
    font-size: clamp(15.5813953488px, calc(9.8676824379px + 0.7618283881vw), 20px);
  }
}
@media all and (max-width: 749px) {
  .section-head-label {
    font-size: clamp(10px, calc(-1.6071428571px + 2.9761904762vw), 12px);
  }
}
.section-head-label {
  line-height: 1;
  display: flex;
  align-items: center;
}
.section-head-label:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.5em;
  background: #E5DBCC;
  border-radius: 50%;
}
.section-head-title {
  margin: 0;
  font-family: "ZenKakuGothicNew-Bold";
}
@media all and (min-width: 750px) {
  .section-head-title {
    font-size: clamp(28.488372093px, calc(0.6716118685px + 3.7089013633vw), 50px);
  }
}
@media all and (max-width: 749px) {
  .section-head-title {
    font-size: clamp(30px, calc(-4.8214285714px + 8.9285714286vw), 36px);
  }
}
.section-head-title {
  line-height: 2;
  color: #8F806C;
}

.mv {
  width: 100%;
  padding: 0 0 62px;
}
@media all and (max-width: 749px) {
  .mv {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.mv-inner {
  width: 85.6%;
  max-width: 1624px;
  margin-inline: auto;
  display: grid;
  align-items: stretch;
}
@media all and (min-width: 750px) {
  .mv-inner {
    font-size: clamp(15.5813953488px, calc(9.8676824379px + 0.7618283881vw), 20px);
  }
}
@media all and (max-width: 749px) {
  .mv-inner {
    font-size: clamp(30px, calc(-4.8214285714px + 8.9285714286vw), 36px);
  }
}
@media all and (min-width: 750px) {
  .mv-inner {
    grid-template-columns: 25.34% 72.66%;
    gap: 2%;
  }
}
@media all and (max-width: 749px) {
  .mv-inner {
    grid-template-columns: 1fr;
    gap: 1.5em;
  }
}
.mv-copy {
  padding: 4.5em 0 0;
}
@media all and (max-width: 749px) {
  .mv-copy {
    padding-top: 10%;
  }
}
.mv-copy-lead {
  margin: 2.3em 0 1em;
}
@media all and (min-width: 750px) {
  .mv-copy-lead {
    font-size: clamp(28.488372093px, calc(0.6716118685px + 3.7089013633vw), 50px);
  }
}
@media all and (max-width: 749px) {
  .mv-copy-lead {
    font-size: clamp(27px, calc(-4.3392857143px + 8.0357142857vw), 32.4px);
  }
}
.mv-copy-lead {
  line-height: 1.36;
  letter-spacing: 0.05em;
  font-family: "ZenKakuGothicNew-Bold";
}
.mv-copy-lead span {
  color: #e47a76;
}
@media all and (max-width: 749px) {
  .mv-copy-lead {
    display: flex;
    margin-bottom: 0;
  }
}
.mv-copy-title {
  margin: 0;
}
@media all and (min-width: 750px) {
  .mv-copy-title {
    font-size: clamp(30.2325581395px, calc(-14.725340818px + 5.9943865277vw), 65px);
  }
}
@media all and (max-width: 749px) {
  .mv-copy-title {
    font-size: clamp(40px, calc(-6.4285714286px + 11.9047619048vw), 48px);
  }
}
.mv-copy-title {
  line-height: 1.6923076923;
  letter-spacing: 0.05em;
  font-family: "ZenKakuGothicNew-Bold";
}
@media all and (min-width: 750px) {
  .mv-copy-text {
    font-size: clamp(15.5813953488px, calc(9.8676824379px + 0.7618283881vw), 20px);
  }
}
@media all and (max-width: 749px) {
  .mv-copy-text {
    font-size: clamp(15px, calc(-2.4107142857px + 4.4642857143vw), 18px);
  }
}
.mv-copy-text {
  line-height: 2;
  letter-spacing: 0.05em;
  font-family: "ZenKakuGothicNew-Medium";
}
@media all and (min-width: 750px) {
  .mv-copy-text {
    margin: 4.2em 0 0;
  }
}
@media all and (max-width: 749px) {
  .mv-copy-text {
    padding-top: 7%;
  }
}
@media all and (min-width: 750px) and (max-width: 1600px) {
  .mv-copy-text br {
    display: none;
  }
}
@media all and (min-width: 750px) {
  .mv-copy-text div + div {
    margin-top: 1.2em;
  }
}
@media all and (max-width: 749px) {
  .mv-copy-text div + div {
    padding-top: 3%;
  }
}
.mv-img {
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
}
@media all and (min-width: 750px) {
  .mv-img {
    margin-top: -90px;
    height: calc(100% + 90px);
    width: calc(72.66% + (100vw - 72.66%) / 2);
    margin-right: calc(72.66% + (100vw - 72.66%) / 2);
    border-radius: 0 0 0 10px;
  }
}
@media all and (max-width: 749px) {
  .mv-img {
    width: calc(100% + (100vw - 100%) / 2);
    margin-right: calc(100% + (100vw - 100%) / 2);
    border-radius: 10px 0 0 10px;
  }
}
.mv-img-inner {
  overflow: hidden;
  width: 100%;
  display: flex;
}
@media all and (min-width: 750px) {
  .mv-img-inner {
    height: 100%;
  }
}
@media all and (max-width: 749px) {
  .mv-img-inner {
    width: 100%;
    margin-top: 0;
    justify-content: center;
    align-items: center;
  }
}
.mv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
}

.about-inner,
.service-inner,
.news-inner,
.social-inner {
  width: 85.6%;
  max-width: 1330px;
  margin-inline: auto;
}

.about {
  position: relative;
  padding: 6.25em 0 7.5em;
}
@media all and (max-width: 749px) {
  .about {
    padding: 15% 0 13%;
  }
}
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.about-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
}
@media all and (min-width: 750px) {
  .about-inner {
    padding-right: 3.5%;
    grid-template-columns: 46.383% 1fr;
  }
}
.about-copy {
  padding-top: 2em;
  max-width: 690px;
}
@media all and (max-width: 749px) {
  .about-copy {
    max-width: none;
    width: 100%;
    padding-top: min(16%, 25px);
  }
}
@media all and (min-width: 750px) {
  .about-copy-title {
    margin-bottom: 1.8em;
  }
}
@media all and (max-width: 749px) {
  .about-copy-title {
    padding-bottom: min(16%, 50px);
    max-width: 500px;
  }
}
.about-copy-title span {
  display: block;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
}
@media all and (min-width: 750px) {
  .about-copy-title span {
    width: 100%;
    height: 0;
    padding-top: 14.868%;
    background: url(../images/about_text_pc.png) 0 0 no-repeat;
    background-size: 100% auto;
  }
}
@media all and (max-width: 749px) {
  .about-copy-title span {
    width: 100%;
    height: 0;
    padding-top: 32.893%;
    background: url(../images/about_text_sp.png) 0 0 no-repeat;
    background-size: 100% auto;
  }
}
.about-copy div + div {
  margin-top: 2.5em;
}
@media all and (max-width: 749px) {
  .about-copy div + div {
    margin-top: 2em;
  }
}
.about-copy-text {
  padding-left: 4%;
  margin: 0 0 18px;
}
@media all and (min-width: 750px) {
  .about-copy-text {
    font-size: clamp(14.2744186047px, calc(9.4568564555px + 0.6423416199vw), 18px);
  }
}
@media all and (max-width: 749px) {
  .about-copy-text {
    font-size: clamp(13px, calc(-2.0892857143px + 3.869047619vw), 15.6px);
  }
}
.about-copy-text {
  line-height: 2.5;
  font-family: "ZenKakuGothicNew-Regular";
}
@media all and (max-width: 749px) {
  .about-copy-text {
    padding-left: 0;
  }
}
@media all and (min-width: 750px) {
  .about-copy .txt_small {
    font-size: clamp(11.2px, calc(7.5793103448px + 0.4827586207vw), 14px);
  }
}
@media all and (max-width: 749px) {
  .about-copy .txt_small {
    font-size: clamp(12px, calc(-1.9285714286px + 3.5714285714vw), 14.4px);
  }
}
.about-copy .txt_small {
  line-height: 2.8125;
  margin-top: 3em;
}
@media all and (max-width: 749px) {
  .about-copy .txt_small {
    margin-top: 1em;
  }
}

.service {
  padding: 0 0 9em;
}
@media all and (max-width: 749px) {
  .service {
    padding-bottom: 3.5em;
  }
}
.service-reverse {
  grid-template-columns: 330px minmax(0, 1fr);
}
.service-reverse .service-block-copy {
  order: 2;
}
.service-reverse .service-block-img {
  order: 1;
}
@media all and (min-width: 750px) {
  .service-box + .service-box {
    padding-top: 13.5em;
  }
}
@media all and (max-width: 749px) {
  .service-box + .service-box {
    padding-top: 11%;
    padding-bottom: 3%;
  }
}
@media all and (min-width: 750px) {
  .service-box-detail {
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-areas: "head img" "list img";
    gap: 0 7em;
  }
}
@media all and (max-width: 749px) {
  .service-box-detail {
    display: grid;
    grid-template-areas: "img" "head" "list";
    gap: 0.7em;
  }
}
.service-box-detail-head {
  grid-area: head;
}
.service-box-detail-list {
  grid-area: list;
}
.service-box-detail-img {
  grid-area: img;
}
@media all and (min-width: 750px) {
  .service-box-detail-head-title {
    font-size: clamp(20.2511627907px, calc(10.2311146752px + 1.3360064154vw), 28px);
  }
}
@media all and (max-width: 749px) {
  .service-box-detail-head-title {
    font-size: clamp(19px, calc(-3.0535714286px + 5.6547619048vw), 22.8px);
  }
}
.service-box-detail-head-title {
  line-height: 1.6785714286;
  font-family: "ZenKakuGothicNew-Bold";
  letter-spacing: 0.03em;
  margin: 0;
}
@media all and (min-width: 750px) {
  .service-box-detail-head-lead {
    font-size: clamp(15.5813953488px, calc(9.8676824379px + 0.7618283881vw), 20px);
  }
}
@media all and (max-width: 749px) {
  .service-box-detail-head-lead {
    font-size: clamp(15px, calc(-2.4107142857px + 4.4642857143vw), 18px);
  }
}
.service-box-detail-head-lead {
  line-height: 1.8;
}
@media all and (min-width: 750px) {
  .service-box-detail-head-lead {
    margin-top: 1.6em;
    margin-bottom: 2.8em;
  }
}
@media all and (max-width: 749px) {
  .service-box-detail-head-lead {
    padding: 6% 0 7%;
    margin: 0;
  }
  .service-box-detail-head-lead div + div {
    padding-top: 0.5em;
  }
}
.service-box-detail-list {
  display: grid;
  gap: 2em;
  margin: 0;
}
@media all and (max-width: 749px) {
  .service-box-detail-list {
    padding-right: 0;
    gap: 1.5em;
  }
}
.service-box-detail-list-item {
  border-bottom: 1px solid #E5DBCC;
  padding-bottom: 1.8em;
}
@media all and (max-width: 749px) {
  .service-box-detail-list-item {
    padding-bottom: 1.5em;
  }
}
.service-box-detail-list-item:nth-last-of-type(1) {
  border-bottom: none;
}
@media all and (min-width: 750px) {
  .service-box-detail-list-item-title {
    font-size: clamp(15.5813953488px, calc(9.8676824379px + 0.7618283881vw), 20px);
  }
}
@media all and (max-width: 749px) {
  .service-box-detail-list-item-title {
    font-size: clamp(15px, calc(-2.4107142857px + 4.4642857143vw), 18px);
  }
}
.service-box-detail-list-item-title {
  line-height: 1.6;
  padding-bottom: 1em;
}
@media all and (max-width: 749px) {
  .service-box-detail-list-item-title {
    padding: 0;
  }
}
.service-box-detail-list-item-text {
  font-family: "ZenKakuGothicNew-Regular";
}
@media all and (min-width: 750px) {
  .service-box-detail-list-item-text {
    font-size: clamp(12.8px, calc(8.6620689655px + 0.5517241379vw), 16px);
  }
}
@media all and (max-width: 749px) {
  .service-box-detail-list-item-text {
    font-size: clamp(13px, calc(-2.0892857143px + 3.869047619vw), 15.6px);
  }
}
.service-box-detail-list-item-text {
  line-height: 1.875;
}
@media all and (max-width: 749px) {
  .service-box-detail-list-item-text {
    margin-top: 0.8em;
    line-height: 1.6153846154;
  }
}
@media all and (min-width: 750px) {
  .service-box-detail-list-item-text-caption {
    display: none;
  }
}
.service-box-detail-list-item-text-caption {
  margin-top: 2.5em;
}
.service-box-detail-list-item-ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5em 1.4em;
}
@media all and (max-width: 749px) {
  .service-box-detail-list-item-ul {
    grid-template-columns: 1fr;
    gap: 0.5em;
    padding-top: 6%;
  }
}
.service-box-detail-list-item-ul li a {
  position: relative;
  display: flex;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  gap: 0.5em;
  background: #fff;
  font-family: "ZenKakuGothicNew-Medium";
  color: #654C50;
  align-items: center;
}
@media all and (min-width: 750px) {
  .service-box-detail-list-item-ul li a {
    font-size: clamp(12.8px, calc(8.6620689655px + 0.5517241379vw), 16px);
  }
}
@media all and (max-width: 749px) {
  .service-box-detail-list-item-ul li a {
    font-size: clamp(14px, calc(-2.25px + 4.1666666667vw), 16.8px);
  }
}
@media all and (min-width: 750px) {
  .service-box-detail-list-item-ul li a {
    padding: 1.4em 3em 1.4em 1.4em;
    min-height: 7em;
    line-height: 1.875;
  }
}
@media all and (max-width: 749px) {
  .service-box-detail-list-item-ul li a {
    padding: 1.8% 2%;
    min-height: 4em;
    line-height: 1.6153846154;
  }
}
.service-box-detail-list-item-ul li a:after {
  content: "";
  display: block;
  position: absolute;
  right: 1.5em;
  clear: both;
  margin: auto;
  background: url(../images/arrow_cl.png) bottom center no-repeat;
  background-size: contain;
  transition: transform 0.3s ease;
}
@media all and (min-width: 750px) {
  .service-box-detail-list-item-ul li a:after {
    bottom: 1em;
    width: 2em;
    height: 2em;
  }
}
@media all and (max-width: 749px) {
  .service-box-detail-list-item-ul li a:after {
    width: 1.6em;
    height: 1.6em;
    top: 0.5em;
  }
}
@media (hover: hover) {
  .service-box-detail-list-item-ul li a {
    transition: color 0.3s ease, background-color 0.3s ease;
  }
  .service-box-detail-list-item-ul li a:hover {
    color: #fff;
    background-color: #534B4C;
  }
  .service-box-detail-list-item-ul li a:hover:after {
    transform: translateX(20%);
  }
}
.service-box-detail-list-item-ul li a span {
  display: block;
}
@media all and (max-width: 749px) {
  .service-box-detail-list-item-search {
    padding-top: 5%;
  }
}
.service-box-detail-list-item-search-bar {
  display: flex;
  border: 1px solid #E5DBCC;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}
.service-box-detail-list-item-search-bar input {
  border: none;
  outline: none;
  font-size: 16px;
  padding: 1em 0.5em;
  width: 100%;
  min-width: 0;
  background: #ffffff !important;
}
.service-box-detail-list-item-search-bar button {
  width: 7em;
  min-width: 7em;
  border: none;
  outline: none;
  cursor: pointer;
  background: #8F806C url(../images/ico_search.png) center no-repeat;
  background-size: auto 60%;
  background-color: #8F806C;
  color: #fff;
}
.service-box-detail-list-item-search-bar button:hover {
  color: #fff;
}
@media (hover: hover) {
  .service-box-detail-list-item-search-bar button {
    transition: background-color 0.3s ease;
  }
  .service-box-detail-list-item-search-bar button:hover {
    background-color: #e47a76;
  }
}
@media all and (max-width: 749px) {
  .service-box-detail-list-item-search-bar button {
    width: 4em;
    min-width: 4em;
  }
}
.service-box-detail-img {
  position: relative;
  margin: 0;
  padding-top: 0.6em;
  padding-bottom: 2.6em;
}
@media all and (max-width: 749px) {
  .service-box-detail-img {
    padding-top: 11%;
    padding-bottom: 0;
  }
}
.service-box-detail-img img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
}
@media all and (min-width: 750px) {
  .service-box-detail-img-caption {
    font-size: clamp(11.2px, calc(7.5793103448px + 0.4827586207vw), 14px);
  }
}
@media all and (max-width: 749px) {
  .service-box-detail-img-caption {
    font-size: clamp(14px, calc(-2.25px + 4.1666666667vw), 16.8px);
  }
}
.service-box-detail-img-caption {
  line-height: 1.7857142857;
  font-family: "ZenKakuGothicNew-Regular";
  margin-top: 2.3em;
}
@media all and (max-width: 749px) {
  .service-box-detail-img-caption {
    display: none;
  }
}
.service-box-detail-img-number {
  position: absolute;
  right: 0;
  pointer-events: none;
  color: #ffffff;
}
@media all and (min-width: 750px) {
  .service-box-detail-img-number {
    font-size: clamp(-135.5813953488px, calc(-595.3849238172px + 61.3071371291vw), 220px);
  }
}
@media all and (max-width: 749px) {
  .service-box-detail-img-number {
    font-size: clamp(110px, calc(-17.6785714286px + 32.7380952381vw), 132px);
  }
}
.service-box-detail-img-number {
  line-height: 1;
  font-family: "ZenKakuGothicNew-Light";
}
@media all and (min-width: 750px) {
  .service-box-detail-img-number {
    transform: translate(31%, -78%);
  }
}
@media all and (max-width: 749px) {
  .service-box-detail-img-number {
    right: 1%;
    top: 19%;
    transform: translate(21%, -59%);
    line-height: 1;
    width: 1em;
    text-align: right;
  }
}
.service-box-alliance {
  display: flex;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background: #ffffff;
  border-radius: 10px 0 0 10px;
  width: calc(100% + (100vw - 100%) / 2);
  margin-right: calc(100% + (100vw - 100%) / 2);
}
@media all and (min-width: 750px) {
  .service-box-alliance {
    margin-top: 3em;
  }
}
@media all and (max-width: 749px) {
  .service-box-alliance {
    margin-top: 0.6em;
  }
}
.service-box-alliance-list {
  display: flex;
  margin: 0;
  justify-content: space-around;
  align-items: center;
}
@media all and (min-width: 750px) {
  .service-box-alliance-list {
    gap: 20px;
    padding: 20px 0;
    width: 30000px;
    max-width: 30000px;
    min-width: 30000px;
    animation: hr_scroll 120s linear infinite;
  }
}
@media all and (max-width: 749px) {
  .service-box-alliance-list {
    padding: 0;
    gap: 10px;
    width: 16000px;
    max-width: 16000px;
    min-width: 16000px;
    animation: hr_scroll_sp 100s linear infinite;
  }
}
.service-box-alliance-list li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-box-alliance-list li img {
  width: auto;
  max-width: 100%;
}
.service-box-btn {
  display: flex;
  justify-content: center;
  gap: 2em;
  margin-top: 5.8em;
}
@media all and (max-width: 749px) {
  .service-box-btn {
    flex-direction: column;
    align-items: center;
    gap: 1em;
    margin-bottom: 2.5em;
    margin-top: 0;
    padding-top: 12%;
  }
  .service-box-btn .btn_base {
    width: 83%;
    min-width: 18em;
  }
}

@media all and (min-width: 750px) {
  .voice {
    padding: 7.8em 0;
    background: url(../images/voice_bg_pc.webp) 0 0 no-repeat;
    background-size: cover;
  }
}
@media all and (max-width: 749px) {
  .voice {
    padding: 8.5% 0 10%;
    background: url(../images/voice_bg_sp.webp) 0 0 no-repeat;
    background-size: cover;
  }
}
@media all and (min-width: 750px) {
  .voice .section-head {
    margin-bottom: 2.5em;
  }
}
@media all and (max-width: 749px) {
  .voice .section-head {
    margin-bottom: 0;
  }
}
.voice-wrap {
  width: 85.6%;
  max-width: 1624px;
  margin-inline: auto;
  display: grid;
  padding: 4.4% 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
}
@media all and (max-width: 749px) {
  .voice-wrap {
    padding: 6% 6% 10%;
    border-radius: 10px;
  }
}
.voice-inner {
  width: 90%;
  max-width: 1330px;
  margin-inline: auto;
}
@media all and (max-width: 749px) {
  .voice-inner {
    width: 100%;
  }
}
.voice-copy {
  display: grid;
}
@media all and (min-width: 750px) {
  .voice-copy {
    grid-template-areas: "lead img" "text img";
    gap: 0 2em;
    grid-template-columns: auto 37%;
  }
}
@media all and (max-width: 749px) {
  .voice-copy {
    grid-template-areas: "img" "lead" "text";
  }
}
.voice-copy-lead {
  grid-area: lead;
}
@media all and (min-width: 750px) {
  .voice-copy-lead {
    font-size: clamp(20.2511627907px, calc(10.2311146752px + 1.3360064154vw), 28px);
  }
}
@media all and (max-width: 749px) {
  .voice-copy-lead {
    font-size: clamp(19px, calc(-3.0535714286px + 5.6547619048vw), 22.8px);
  }
}
.voice-copy-lead {
  font-family: "ZenKakuGothicNew-Bold";
  letter-spacing: 0.03em;
  margin-bottom: 1em;
}
@media all and (min-width: 750px) {
  .voice-copy-lead {
    line-height: 1.6785714286;
  }
}
@media all and (max-width: 749px) {
  .voice-copy-lead {
    padding-top: 8%;
    padding-bottom: 9%;
    margin: 0;
    line-height: 1.3157894737;
  }
}
.voice-copy-text p {
  margin: 0;
}
.voice-copy-text {
  grid-area: text;
  font-family: "ZenKakuGothicNew-Regular";
}
@media all and (min-width: 750px) {
  .voice-copy-text {
    font-size: clamp(12.8px, calc(8.6620689655px + 0.5517241379vw), 16px);
  }
}
@media all and (max-width: 749px) {
  .voice-copy-text {
    font-size: clamp(13px, calc(-2.0892857143px + 3.869047619vw), 15.6px);
  }
}
@media all and (min-width: 750px) {
  .voice-copy-text {
    line-height: 1.875;
  }
}
@media all and (max-width: 749px) {
  .voice-copy-text {
    line-height: 1.6153846154;
  }
}
.voice-copy-text-br {
  display: none;
}
@media all and (min-width: 1150px) {
  .voice-copy-text-br {
    display: block;
  }
}
.voice-copy-img {
  grid-area: img;
  border-radius: 10px;
  overflow: hidden;
}
.voice-copy-img img {
  width: 100%;
}
.voice-btn {
  padding-top: 4.7em;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media all and (max-width: 749px) {
  .voice-btn {
    padding-top: 9%;
  }
  .voice-btn .btn_base {
    width: 100%;
    padding: 4.5% 4% 4.5% 12%;
    min-height: 4em;
    text-align: left;
  }
}
.voice-btn a {
  min-height: 3.3em;
}
.voice-list {
  padding-top: 5.5em;
  padding-bottom: 0.7em;
}
@media all and (max-width: 749px) {
  .voice-list {
    padding-top: 15%;
  }
}
.voice-list .title {
  text-align: center;
}
@media all and (min-width: 750px) {
  .voice-list .title {
    font-size: clamp(15.5813953488px, calc(9.8676824379px + 0.7618283881vw), 20px);
  }
}
@media all and (max-width: 749px) {
  .voice-list .title {
    font-size: clamp(15px, calc(-2.4107142857px + 4.4642857143vw), 18px);
  }
}
.voice-list .title {
  font-family: "ZenKakuGothicNew-Medium";
  position: relative;
  display: flex;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
}
@media all and (min-width: 750px) {
  .voice-list .title {
    gap: 1em;
    line-height: 1.6;
  }
}
@media all and (max-width: 749px) {
  .voice-list .title {
    gap: 0.5em;
    white-space: nowrap;
    line-height: 1.4;
    margin-bottom: 0.5em;
  }
}
.voice-list .title:before, .voice-list .title:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #E5DBCC;
}
.voice-list-inner {
  display: grid;
  gap: 0;
  padding-top: 2em;
}
@media all and (min-width: 750px) {
  .voice-list-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media all and (max-width: 749px) {
  .voice-list-inner {
    padding-top: 0;
    grid-template-columns: 1fr;
  }
}
@media all and (min-width: 750px) {
  .voice-list-box + .voice-list-box {
    border-left: 1px solid #E5DBCC;
  }
}
@media all and (max-width: 749px) {
  .voice-list-box + .voice-list-box {
    border-top: 1px solid #E5DBCC;
  }
}
.voice-list-box:nth-of-type(2n) .voice-list-box-voice {
  margin-right: 0;
  margin-left: auto;
}
@media all and (min-width: 750px) {
  .voice-list-box:nth-of-type(2n) .voice-list-box-voice {
    padding-right: 0;
  }
}
@media all and (min-width: 750px) {
  .voice-list-box:nth-of-type(2n+1) .voice-list-box-voice {
    padding-left: 0;
  }
}
.voice-list-box-voice {
  padding: 1.5em;
}
@media all and (min-width: 750px) {
  .voice-list-box-voice {
    font-size: clamp(12.8px, calc(8.6620689655px + 0.5517241379vw), 16px);
  }
}
@media all and (max-width: 749px) {
  .voice-list-box-voice {
    font-size: clamp(13px, calc(-2.0892857143px + 3.869047619vw), 15.6px);
  }
}
.voice-list-box-voice {
  font-family: "ZenKakuGothicNew-Regular";
  max-width: 600px;
  line-height: 1.875;
}
@media all and (max-width: 749px) {
  .voice-list-box-voice {
    padding: 1.5em 0;
  }
}
@media all and (min-width: 750px) {
  .voice-list-box-voice-title {
    font-size: clamp(15.5813953488px, calc(9.8676824379px + 0.7618283881vw), 20px);
  }
}
@media all and (max-width: 749px) {
  .voice-list-box-voice-title {
    font-size: clamp(15px, calc(-2.4107142857px + 4.4642857143vw), 18px);
  }
}
.voice-list-box-voice-title {
  font-family: "ZenKakuGothicNew-Medium";
  position: relative;
  line-height: 1.5;
  padding-bottom: 0.8em;
}
.voice-list ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4em;
  margin: 0;
  padding: 2.4em 0 0;
  list-style: none;
}
@media all and (max-width: 749px) {
  .voice-list ul {
    grid-template-columns: 1fr;
    gap: 3em;
    padding-top: 8%;
  }
}
@media all and (min-width: 750px) {
  .voice-list ul li {
    font-size: clamp(12.8px, calc(8.6620689655px + 0.5517241379vw), 16px);
  }
}
@media all and (max-width: 749px) {
  .voice-list ul li {
    font-size: clamp(13px, calc(-2.0892857143px + 3.869047619vw), 15.6px);
  }
}
.voice-list ul li {
  font-family: "ZenKakuGothicNew-Regular";
}
@media all and (min-width: 750px) {
  .voice-list ul li {
    line-height: 1.875;
  }
}
@media all and (max-width: 749px) {
  .voice-list ul li {
    line-height: 1.6153846154;
  }
}

.news {
  padding-top: 8em;
}
@media all and (max-width: 749px) {
  .news {
    padding-top: 11%;
  }
}
.news-inner {
  display: grid;
  grid-template-columns: min(35em, 33.5%) minmax(0, 1fr);
}
@media all and (max-width: 749px) {
  .news-inner {
    grid-template-columns: 1fr;
  }
}
.news-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media all and (max-width: 749px) {
  .news-list {
    padding-top: 2%;
  }
}
.news-list-item {
  padding-bottom: 2.7em;
  border-bottom: 1px solid #E5DBCC;
}
.news-list-item:nth-last-of-type(1) {
  border-bottom: 0;
  padding-bottom: 0;
}
@media all and (max-width: 749px) {
  .news-list-item {
    padding: 0 0 2%;
  }
}
@media all and (min-width: 750px) {
  .news-list-item + .news-list-item {
    margin-top: 0.5em;
  }
}
@media all and (max-width: 749px) {
  .news-list-item + .news-list-item {
    padding-top: 5%;
  }
}
.news-list-item-link {
  display: block;
  padding: 0;
}
@media (hover: hover) {
  .news-list-item-link {
    transition: all 0.3s ease;
  }
  .news-list-item-link:hover {
    color: #e47a76;
  }
}
.news-list-item-date {
  display: block;
  color: #8F806C;
}
@media all and (min-width: 750px) {
  .news-list-item-date {
    font-size: clamp(12.8px, calc(8.6620689655px + 0.5517241379vw), 16px);
  }
}
@media all and (max-width: 749px) {
  .news-list-item-date {
    font-size: clamp(13px, calc(-2.0892857143px + 3.869047619vw), 15.6px);
  }
}
.news-list-item-date {
  line-height: 1;
  font-family: "ZenKakuGothicNew-Regular";
}
@media all and (min-width: 750px) {
  .news-list-item-date {
    padding-top: 0.8em;
  }
}
.news-list-item-text {
  padding-top: 1em;
  display: block;
}
@media all and (min-width: 750px) {
  .news-list-item-text {
    font-size: clamp(12.8px, calc(8.6620689655px + 0.5517241379vw), 16px);
  }
}
@media all and (max-width: 749px) {
  .news-list-item-text {
    font-size: clamp(13px, calc(-2.0892857143px + 3.869047619vw), 15.6px);
  }
}
.news-list-item-text {
  line-height: 1.875;
  font-family: "ZenKakuGothicNew-Regular";
}
@media all and (max-width: 749px) {
  .news-list-item-text {
    line-height: 1.6153846154;
  }
}

.social {
  padding-top: 9em;
}
@media all and (max-width: 749px) {
  .social {
    padding-top: 16%;
  }
}
.social-inner {
  display: grid;
  grid-template-columns: min(35em, 33.5%) minmax(0, 1fr);
}
@media all and (max-width: 749px) {
  .social-inner {
    grid-template-columns: 1fr;
    gap: 1.25em;
    align-items: start;
  }
}
.social-account a {
  display: block;
  box-shadow: 0 0 10px rgba(101, 76, 80, 0.2);
  overflow: hidden;
  border-radius: 10px;
  color: #654C50;
  padding: 4% 5% 4% 19.5%;
  background: #fff url(../images/ico_instagram.png) 7% center no-repeat;
  background-size: 6% auto;
}
@media all and (max-width: 749px) {
  .social-account a {
    padding: 2% 5% 3% min(25%, 100px);
    background-position: min(8%, 30px) center;
    background-size: min(11%, 45px) auto;
  }
}
@media (hover: hover) {
  .social-account a {
    transition: box-shadow 0.3s ease;
  }
  .social-account a:hover {
    box-shadow: 0 0 1px rgba(101, 76, 80, 0.4);
  }
}
.social-account-name {
  display: block;
  width: 100%;
}
@media all and (min-width: 750px) {
  .social-account-name {
    font-size: clamp(15.5813953488px, calc(9.8676824379px + 0.7618283881vw), 20px);
  }
}
@media all and (max-width: 749px) {
  .social-account-name {
    font-size: clamp(15px, calc(-2.4107142857px + 4.4642857143vw), 18px);
  }
}
.social-account-name {
  font-family: "ZenKakuGothicNew-Medium";
}
@media all and (min-width: 750px) {
  .social-account-name {
    line-height: 1.5;
  }
}
@media all and (max-width: 749px) {
  .social-account-name {
    line-height: 1.4;
  }
}
.social-account-text {
  display: block;
  width: 100%;
}
@media all and (min-width: 750px) {
  .social-account-text {
    font-size: clamp(12.8px, calc(8.6620689655px + 0.5517241379vw), 16px);
  }
}
@media all and (max-width: 749px) {
  .social-account-text {
    font-size: clamp(13px, calc(-2.0892857143px + 3.869047619vw), 15.6px);
  }
}
.social-account-text {
  font-family: "ZenKakuGothicNew-Regular";
}
@media all and (min-width: 750px) {
  .social-account-text {
    line-height: 1.875;
  }
}
@media all and (max-width: 749px) {
  .social-account-text {
    line-height: 1.6153846154;
    padding-top: 3%;
  }
}

@keyframes hr_scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-15000px);
  }
}
@keyframes hr_scroll_sp {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-8000px);
  }
}

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