@charset "UTF-8";
:root {
  --color-primary: #0A58B8;
  --color-blue: #57A8DD;
  --color-teal: #72C7CF;
  --color-orange: #DF772E;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-bg-light: #F0F0F0;
  --color-text: #000000;
  --font-main: 游ゴシック, YuGothic, メイリオ, Hiragino Sans, Segoe UI, Helvetica Neue, Arial, sans-serif;
  --content-width: 1200px;
  --content-padding: min(40px, 2.7777777778vw);
  --header-height: 125px;
}
@media screen and (max-width: 960px) {
  :root {
    --content-padding: 24px;
    --header-height: 70px;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-main);
  font-weight: bold;
  color: var(--color-text);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

.wrapper {
  overflow: hidden;
}

.inner {
  max-width: calc(1200px + 40px * 2);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}
@media screen and (max-width: 960px) {
  .inner {
    max-width: 500px;
  }
}

.inner--narrow {
  max-width: 1000px;
}

@media screen and (min-width: 961px) {
  .inner--wide {
    max-width: calc(1240px + 40px * 2);
  }
}

.show--sp {
  display: none !important;
}
@media screen and (max-width: 960px) {
  .show--sp {
    display: block !important;
  }
}

@media screen and (max-width: 960px) {
  br.show--sp {
    display: inline !important;
  }
}

.show--pc {
  display: block !important;
}
@media screen and (max-width: 960px) {
  .show--pc {
    display: none !important;
  }
}

br.show--pc {
  display: inline !important;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section {
  padding-block: 80px 0;
}
@media screen and (max-width: 960px) {
  .section {
    padding-block: 56px 0;
  }
}

.section__subtitle {
  font-size: 16px;
  color: #D0DFED;
  text-align: center;
  display: block;
  line-height: 1;
  position: relative;
}
.section__subtitle::before {
  content: "";
  display: block;
  width: 50px;
  height: 12px;
  margin: 0 auto 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='12' viewBox='0 0 50 12' fill='none'%3E%3Cpath d='M25.3046 0C15.5802 0 6.86979 4.38226 1 11.2977H6.80768C11.7017 6.82777 18.1881 4.10482 25.3046 4.10482C32.421 4.10482 38.9082 6.82777 43.8014 11.2977H49.6091C43.7393 4.38226 35.0289 0 25.3046 0Z' fill='%23D0DFED'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.section__title {
  font-size: 32px;
  text-align: center;
  margin-top: 8px;
  line-height: normal;
  color: var(--color-primary);
}
@media screen and (max-width: 960px) {
  .section__title {
    font-size: 24px;
  }
}

.section__title-keyword {
  background: radial-gradient(50% 50% at 50% 50%, #0A58B8 0%, #26BACF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-gradient {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(95deg, #57A8DD 2.3%, #72C7CF 100%);
  color: var(--color-white);
  padding: 16px 8px;
  border-radius: 10px;
  font-size: 16px;
  max-width: 350px;
  width: 100%;
  isolation: isolate;
}
@media screen and (max-width: 960px) {
  .btn-gradient {
    padding: 14px 32px;
    font-size: 16px;
    width: 100%;
  }
}
.btn-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, #72C7CF 2.3%, #57A8DD 100%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.btn-gradient svg {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.btn-gradient:hover::before {
  opacity: 1;
}

.btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-orange);
  color: var(--color-white);
  padding: 20px 40px;
  border-radius: 20px;
  font-size: 24px;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 960px) {
  .btn-orange {
    padding: 16px 32px;
    font-size: 20px;
    width: 100%;
  }
}
.btn-orange:hover {
  opacity: 0.8;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(95deg, #57A8DD 2.3%, #72C7CF 100%);
  height: var(--header-height);
  transition: all 0.3s ease;
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  height: 100%;
  padding: 0 min(48px, 3.3333333333vw) 0 min(24px, 1.6666666667vw);
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .header__inner {
    display: flex;
    align-items: center;
    padding: 0 24px 0 16px;
  }
}

.header__logo {
  grid-row: 1/3;
  flex-shrink: 0;
  margin-right: auto;
}
.header__logo a {
  display: flex;
  align-items: center;
  height: 100%;
}
.header__logo img {
  height: 90px;
  width: auto;
}
@media screen and (max-width: 960px) {
  .header__logo img {
    height: 50px;
  }
}

.header__right {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: min(24px, 1.6666666667vw);
  padding-top: 20px;
}
@media screen and (max-width: 960px) {
  .header__right {
    display: none;
  }
}

.header__nav {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
}
@media screen and (max-width: 960px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: min(24px, 1.6666666667vw);
}

.header__nav-item-link {
  color: var(--color-white);
  font-size: 16px;
  white-space: nowrap;
  position: relative;
  padding-bottom: 4px;
}
.header__nav-item-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.header__nav-item-link:hover {
  opacity: 1;
}
.header__nav-item-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.header__nav-item-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header__tel {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--color-white);
}

.header__tel-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.header__tel-info {
  line-height: 1.3;
  display: flex;
  gap: 10px;
}

.header__tel-number {
  font-size: min(28px, 1.9444444444vw);
  letter-spacing: 0.02em;
  color: var(--color-white);
}

.header__tel-hours {
  font-size: 11px;
  line-height: 1.27;
  display: flex;
  align-items: center;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--color-orange);
  color: var(--color-white);
  padding: 6px 14px 6px 12px;
  border-radius: 10px;
  font-size: 16px;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}
.header__cta:hover {
  opacity: 0.8;
}

.header__cta-mail {
  flex-shrink: 0;
}

.header__cta-arrow {
  flex-shrink: 0;
}

.header__sp-icons {
  display: none;
}
@media screen and (max-width: 960px) {
  .header__sp-icons {
    display: flex;
    align-items: center;
    gap: 16px;
  }
}
.header__sp-icons.is-hidden {
  display: none !important;
}

.header__sp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  transition: opacity 0.3s ease;
}
.header__sp-icon--tel {
  background: var(--color-white);
}
.header__sp-icon--mail {
  background: var(--color-orange);
}
.header__sp-icon svg {
  width: 30px;
  height: 30px;
}

.hamburger {
  display: none;
}
@media screen and (max-width: 960px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    margin-left: 16px;
  }
}

.hamburger-bar {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--color-white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active .hamburger-bar:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.hamburger.active .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-bar:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

.drawer {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background: linear-gradient(95deg, #57A8DD 2.3%, #72C7CF 100%);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  padding: 40px 40px 48px;
}
.drawer.active {
  transform: translateX(0);
}

.drawer__content {
  max-width: 380px;
  margin: 0 auto;
}

.drawer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 960px) {
  .drawer__nav-list {
    gap: 19px;
  }
}

.drawer__nav-item-link {
  color: var(--color-white);
  font-size: 16px;
}

.drawer__cta-area {
  margin-top: 40px;
  flex-direction: column;
  gap: 24px;
  margin-inline: 0;
  max-width: none;
}
@media screen and (max-width: 960px) {
  .drawer__cta-area {
    margin-top: 30px;
    margin-inline: -16px;
  }
}
.drawer__cta-area .cta__box-tel {
  width: 100%;
  padding: 20px 24px 20px 18px;
  gap: 6px;
  position: relative;
}
.drawer__cta-area .cta__tel-image {
  margin-bottom: -20px;
}
.drawer__cta-area .cta__tel-image img {
  width: 84px;
}
.drawer__cta-area .cta__tel-label {
  font-size: 14px;
}
.drawer__cta-area .cta__tel-number {
  font-size: 24px;
  padding-left: 0;
}
.drawer__cta-area .cta__tel-hours {
  font-size: 12px;
  white-space: nowrap;
}
.drawer__cta-area .cta__tel-arrow {
  display: block;
}
.drawer__cta-area .cta__box-mail {
  width: 100%;
  padding: 28px 24px 20px;
}
.drawer__cta-area .cta__mail-text {
  font-size: 16px;
}
.drawer__cta-area .cta__mail-btn {
  font-size: 24px;
}
.drawer__cta-area .cta__mail-arrow {
  right: 18px;
}

.cta {
  position: relative;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(95deg, #57A8DD 2.3%, #72C7CF 100%);
  opacity: 0.9;
}

.cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 100px;
}
@media screen and (max-width: 960px) {
  .cta__content {
    padding-top: 56px;
    padding-bottom: 54px;
    max-width: 375px;
    margin-inline: auto;
  }
}

.section__subtitle--white {
  color: var(--color-white);
}
.section__subtitle--white::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='12' viewBox='0 0 50 12' fill='none'%3E%3Cpath d='M25.3046 0C15.5802 0 6.86979 4.38226 1 11.2977H6.80768C11.7017 6.82777 18.1881 4.10482 25.3046 4.10482C32.421 4.10482 38.9082 6.82777 43.8014 11.2977H49.6091C43.7393 4.38226 35.0289 0 25.3046 0Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
}

.cta__title {
  font-size: 32px;
  color: var(--color-white);
}
@media screen and (max-width: 960px) {
  .cta__title {
    font-size: 24px;
  }
}

.cta__boxes {
  display: flex;
  gap: min(40px, 2.7777777778vw);
  justify-content: center;
  max-width: 900px;
  margin: 48px auto 0;
}
@media screen and (max-width: 960px) {
  .cta__boxes {
    flex-direction: column;
    gap: 40px;
    margin-top: 24px;
    margin-inline: -16px;
  }
}

.cta__box-tel {
  width: 430px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-white);
  border-radius: 20px;
  padding: 0px min(20px, 1.3888888889vw);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
.cta__box-tel:hover {
  opacity: 0.85;
}
@media screen and (max-width: 960px) {
  .cta__box-tel {
    width: 100%;
    padding: 20px 24px 20px 18px;
    gap: 6px;
    position: relative;
  }
}

.cta__tel-image {
  flex-shrink: 0;
  align-self: flex-end;
}
@media screen and (max-width: 960px) {
  .cta__tel-image {
    margin-bottom: -20px;
  }
}
.cta__tel-image img {
  width: 102px;
  height: auto;
}
@media screen and (max-width: 960px) {
  .cta__tel-image img {
    width: 84px;
  }
}

.cta__tel-info {
  text-align: left;
  flex: 1;
}

.cta__tel-label {
  font-size: 18px;
  color: var(--color-primary);
}
@media screen and (max-width: 960px) {
  .cta__tel-label {
    font-size: 16px;
  }
}

.cta__tel-number {
  font-size: 40px;
  color: var(--color-primary);
  line-height: 1.2;
  margin-top: 4px;
}
@media screen and (max-width: 960px) {
  .cta__tel-number {
    font-size: 28px;
    padding-left: 0;
  }
}

.cta__tel-hours {
  font-size: 14px;
  color: var(--color-primary);
}
@media screen and (max-width: 960px) {
  .cta__tel-hours {
    margin-top: 6px;
  }
}

.cta__tel-arrow {
  flex-shrink: 0;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.cta__box-mail {
  width: 430px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #DF772E;
  border-radius: 20px;
  padding: 32px min(24px, 1.6666666667vw) 30px;
  text-decoration: none;
  color: var(--color-white);
  transition: opacity 0.3s ease;
  position: relative;
  overflow: visible;
}
@media screen and (max-width: 960px) {
  .cta__box-mail {
    width: 100%;
    padding: 28px 24px 24px;
  }
}
.cta__box-mail:hover {
  opacity: 0.85;
}

.cta__mail-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  background: var(--color-white);
  color: #DF772E;
  font-size: 18px;
  border-radius: 24px;
  padding: 2px 38px;
  white-space: nowrap;
  line-height: normal;
}

.cta__mail-text {
  font-size: 18px;
  color: var(--color-white);
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .cta__mail-text {
    font-size: 16px;
  }
}

.cta__mail-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 28px;
  color: var(--color-white);
  margin-top: 8px;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .cta__mail-btn {
    font-size: 24px;
  }
}

.cta__mail-icon {
  flex-shrink: 0;
}

.cta__mail-arrow {
  flex-shrink: 0;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 960px) {
  .cta__mail-arrow {
    right: 18px;
  }
}

.footer {
  background: linear-gradient(95deg, rgba(87, 168, 221, 0.2) 2.3%, rgba(114, 199, 207, 0.2) 100%);
  padding: 100px 0;
}
@media screen and (max-width: 960px) {
  .footer {
    padding: 56px 0 56px;
  }
}

@media screen and (min-width: 961px) {
  .footer__inner {
    max-width: calc(1240px + 40px * 2);
  }
}

.footer__main {
  display: flex;
  gap: min(40px, 2.7777777778vw);
}
@media screen and (max-width: 960px) {
  .footer__main {
    flex-direction: column;
    gap: 48px;
  }
}

.footer__left {
  flex: 1;
}
@media screen and (min-width: 961px) {
  .footer__left {
    padding-bottom: 40px;
  }
}

.footer__info {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 960px) {
  .footer__info {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}

.footer__logo {
  flex-shrink: 0;
}
.footer__logo img {
  height: 124px;
  width: auto;
}
@media screen and (max-width: 960px) {
  .footer__logo img {
    height: 127px;
  }
}

.footer__company-name {
  font-size: 20px;
}

.footer__address {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 4px;
}

.footer__nav {
  display: flex;
  gap: min(70px, 4.8611111111vw);
  margin-top: 32px;
}
@media screen and (max-width: 960px) {
  .footer__nav {
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
  }
}

.footer__nav-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__nav-link {
  font-size: 16px;
  color: var(--color-text);
  transition: opacity 0.3s ease;
  line-height: normal;
}
.footer__nav-link:hover {
  opacity: 0.7;
}

.footer__map {
  flex-shrink: 0;
  width: 50%;
}
@media screen and (max-width: 960px) {
  .footer__map {
    width: 100%;
  }
}
.footer__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 620/407;
  border: none;
}
@media screen and (max-width: 960px) {
  .footer__map iframe {
    height: 225px;
    min-height: auto;
  }
}

.footer__bottom {
  margin-top: -24px;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .footer__bottom {
    margin-top: 48px;
    line-height: 1;
  }
}

.copyright {
  font-size: 12px;
  color: var(--color-text);
}

.page-mv {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  background: linear-gradient(95deg, #57A8DD 2.3%, #72C7CF 100%);
  border-radius: 20px;
  max-width: min(1240px, calc(100% - var(--content-padding) * 2));
  margin: calc(var(--header-height) + 48px) auto 0;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .page-mv {
    max-width: 100%;
    height: 200px;
    border-radius: 0;
    margin: var(--header-height) 0 0;
    background: linear-gradient(97deg, rgba(87, 168, 221, 0.2) 0.25%, rgba(125, 232, 154, 0.2) 100%);
  }
}
.page-mv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(97deg, rgba(87, 168, 221, 0.2) 0.25%, rgba(125, 232, 154, 0.2) 100%);
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .page-mv::before {
    content: none;
  }
}

.page-mv__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 40px;
  padding-left: 80px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 960px) {
  .page-mv__inner {
    padding-top: 32px;
    padding-left: 32px;
  }
}

.page-mv__title {
  font-size: 40px;
  color: var(--color-primary);
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .page-mv__title {
    font-size: 24px;
    line-height: 1.5;
  }
}

.page-mv__subtitle-en {
  font-size: 20px;
  margin-top: 5px;
  background: radial-gradient(50% 50% at 50% 50%, #0A58B8 0%, #72C7CF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media screen and (max-width: 960px) {
  .page-mv__subtitle-en {
    font-size: 16px;
  }
}

.page-mv__deco-logo {
  position: absolute;
  right: 40px;
  top: 0;
  width: 366px;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .page-mv__deco-logo {
    right: 0;
    width: 247px;
  }
}

.breadcrumbs {
  padding: 20px 0;
  font-size: 16px;
  color: #A5A5A5;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .breadcrumbs {
    padding: 24px 0;
    font-size: 14px;
    line-height: 16px;
  }
}
.breadcrumbs a {
  color: var(--color-primary);
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0;
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
}
.breadcrumbs__item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 14px;
  margin: 0 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='14' viewBox='0 0 8 14' fill='none'%3E%3Cpath d='M0.800389 2.22719L1.77297 1.29969L7.07039 6.35456C7.15578 6.43556 7.22355 6.53188 7.26979 6.63797C7.31604 6.74406 7.33984 6.85784 7.33984 6.97275C7.33984 7.08766 7.31604 7.20144 7.26979 7.30753C7.22355 7.41362 7.15578 7.50994 7.07039 7.59094L1.77297 12.6484L0.801306 11.7209L5.77331 6.97406L0.800389 2.22719Z' fill='%23A5A5A5'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}
.breadcrumbs__item a {
  color: var(--color-primary);
  text-decoration: underline;
}

.voice {
  padding-bottom: 100px;
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .voice {
    padding-bottom: 56px;
  }
}

.voice__header-text {
  text-align: center;
}

.voice__header-image {
  position: absolute;
  right: min(120px, 8.3333333333vw);
  top: max(-184px, -12.7777777778vw);
  max-width: min(322px, 22.3611111111vw);
  z-index: 2;
}
@media screen and (max-width: 960px) {
  .voice__header-image {
    max-width: 150px;
    right: 0px;
    top: -164px;
  }
}
.voice__header-image img {
  width: 100%;
  height: auto;
}

.voice__lead {
  font-size: 20px;
  line-height: normal;
  margin-top: 16px;
}
@media screen and (max-width: 960px) {
  .voice__lead {
    font-size: 16px;
    margin-top: 24px;
  }
}

.voice__list {
  display: flex;
  flex-direction: column;
  gap: min(48px, 3.3333333333vw);
  margin-top: 80px;
  max-width: 1440px;
  margin-inline: auto;
}
@media screen and (max-width: 960px) {
  .voice__list {
    gap: 24px;
    padding: 0 24px;
    margin-top: 60px;
  }
}

.voice__item {
  display: flex;
  align-items: stretch;
  position: relative;
  min-height: 240px;
  border-radius: 20px;
  isolation: isolate;
}
@media screen and (max-width: 960px) {
  .voice__item {
    flex-direction: column;
    min-height: auto;
    border-radius: 16px;
    margin-right: -24px;
  }
}

.voice__item--right {
  margin-left: 20%;
  border-radius: 20px;
}
@media screen and (max-width: 960px) {
  .voice__item--right {
    margin-left: 0;
    border-radius: 16px 0 0 16px;
    background: linear-gradient(95deg, rgba(87, 168, 221, 0.2) 2.3%, rgba(114, 199, 207, 0.2) 100%);
  }
}
.voice__item--right::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: min(0px, (1440px - 100vw) / 2);
  background: linear-gradient(95deg, rgba(87, 168, 221, 0.2) 2.3%, rgba(114, 199, 207, 0.2) 100%);
  border-radius: 20px 0 0 20px;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .voice__item--right::before {
    content: none;
  }
}
.voice__item--right .voice__item-num {
  right: min(206px, 14.3055555556vw);
}

.voice__item--left {
  margin-right: min(180px, 12.5vw);
  border-radius: 20px;
}
@media screen and (max-width: 960px) {
  .voice__item--left {
    margin-right: 0;
    margin-left: -24px;
    border-radius: 0 16px 16px 0;
    background: linear-gradient(109deg, rgba(10, 88, 184, 0.2) 2.1%, rgba(114, 199, 207, 0.2) 100%);
  }
  .voice__item--left .voice__item-num {
    left: auto;
    top: auto;
    letter-spacing: normal;
  }
}
.voice__item--left::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: min(0px, (1440px - 100vw) / 2);
  background: linear-gradient(109deg, rgba(10, 88, 184, 0.2) 2.1%, rgba(114, 199, 207, 0.2) 100%);
  border-radius: 0 20px 20px 0;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .voice__item--left::before {
    content: none;
  }
}
.voice__item--left .voice__item-num {
  left: min(180px, 12.5vw);
  top: 50px;
  letter-spacing: 0.08em;
}
.voice__item--left .voice__item-body {
  padding-left: min(359px, 24.9305555556vw);
}
@media screen and (max-width: 960px) {
  .voice__item--left .voice__item-body {
    padding-left: 24px;
  }
}

.voice__item-num {
  position: absolute;
  top: 30px;
  line-height: 1;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .voice__item-num {
    position: static;
    width: 78px;
    height: 75px;
    display: block;
    padding: 25px 0 0 24px;
  }
}

.voice__item-body {
  position: relative;
  z-index: 1;
  padding: min(64px, 4.4444444444vw);
  flex: 1;
}
@media screen and (max-width: 960px) {
  .voice__item-body {
    padding: 0 18px 48px;
    margin-top: 14px;
  }
}

.voice__item-title {
  font-size: 24px;
  color: var(--color-primary);
  line-height: normal;
}
@media screen and (max-width: 960px) {
  .voice__item-title {
    font-size: 18px;
  }
}

.voice__item-company {
  font-size: 16px;
  color: var(--color-primary);
  margin-top: 6px;
  line-height: normal;
}
@media screen and (max-width: 960px) {
  .voice__item-company {
    font-size: 16px;
  }
}

.voice__item-text {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 22px;
  max-width: 737px;
}
@media screen and (max-width: 960px) {
  .voice__item-text {
    font-size: 16px;
    margin-top: 24px;
  }
}

.voice__deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.voice__deco--01 {
  width: 402px;
  height: 366px;
  top: 150px;
  left: max(-148px, 50% - 868px);
}

.voice__deco--02 {
  width: 402px;
  height: 366px;
  top: 615px;
  right: max(7px, 50% - 713px);
  transform: rotate(70deg);
}

.voice__deco--03 {
  width: 402px;
  height: 366px;
  bottom: -55px;
  left: max(131px, 50% - 589px);
  transform: rotate(-180deg);
}