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

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
legend,
figure,
figcaption,
button,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

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

button {
  padding: 0;
  border: none;
  background-color: transparent;
  appearance: none;
  cursor: pointer;
  outline: none;
}

li {
  list-style: none;
}

small,
em {
  font-style: normal;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

:root {
  --color: #2daf61;
  --color-black: #000;
  --color-blue: #0067b6;
  --color-gray: #ededed;
  --color-light: #e6f2e6;
  --color-white: #fff;
}

body {
  color: var(--color-black);
  font-family: "Noto Sans JP", serif;
  font-style: normal;
  font-size: clamp(0.8125rem, .744rem + .29vw, 1rem);
  font-weight: 500;
  font-optical-sizing: auto;
  font-feature-settings: "palt";
  line-height: 1.75;
  letter-spacing: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media screen and (max-width: 768px) {
  body.is-passive {
    overflow: hidden;
  }
}

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

@media screen and (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}

.eng {
  font-family: "Montserrat", sans-serif;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: min(19.2vw, 110px);
  z-index: 100;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.875rem;
  margin: 0 auto;
  width: min(100%, 1400px);
  height: 100%;
}
@media screen and (max-width: 768px) {
  .header__container {
    padding-inline: .9375rem;
  }
}

.header-logo {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-shrink: 0;
  width: min(34.133vw, 182.5px);
  transition: opacity .3s ease;
}
@media screen and (min-width: 769px) {
  .header-logo:hover {
    opacity: .7;
  }
}

.header-logo__image {
  display: inline-block;
  width: 44%;
}

.header-logo__text {
  width: 54%;
  fill: var(--color-white);
  transition: fill .3s ease;
}
.header.scrolled .header-logo__text,
.header-logo__text--black {
  fill: var(--color-black);
}

.menu-btn {
  width: 19.2vw;
  height: 100%;
}
.header__menu-btn {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}

.menu-btn__border {
  position: absolute;
  right: 19%;
  height: 1px;
  background-color: var(--color-white);
  transform: translateY(-50%);
  transition: background-color .3s ease, opacity .3s ease, transform .3s ease;
}
.header.scrolled .menu-btn__border,
.menu-btn__border--black  {
  background-color: var(--color-black);
}

.menu-btn__border:nth-of-type(1) {
  top: 36%;
  width: 48.611%;
}
.menu-btn.is-active .menu-btn__border:nth-of-type(1) {
  top: 50%;
  width: 50%;
  background-color: var(--color-white);
  transform: translateY(-50%) rotate(225deg);
}

.menu-btn__border:nth-of-type(2) {
  top: 50%;
  width: 29.167%;
}
.menu-btn.is-active .menu-btn__border:nth-of-type(2) {
  opacity: 0;
}

.menu-btn__border:nth-of-type(3) {
  top: 64%;
  width: 36.111%;
}
.menu-btn.is-active .menu-btn__border:nth-of-type(3) {
  top: 50%;
  width: 50%;
  background-color: var(--color-white);
  transform: translateY(-50%) rotate(-225deg);
}

.nav {
  width: 100%;
  transition: opacity .3s ease;
}
@media screen and (min-width: 769px) {
  .nav {
    max-width: 710px;
  }
}
@media screen and (max-width: 768px) {
  .nav {
    padding: 5.625rem 0;
    height: 100dvh;
    background-color: var(--color-blue);
    opacity: 0;
    pointer-events: none;
  }
  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
  }
}
@media screen and (max-width: 768px) {
  .header__nav {
    position: absolute;
    top: 0;
    left: 0;
    overflow: scroll;
  }
}

.nav-list {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .nav-list {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .nav-list {
    padding: 0 2.34375rem;
  }
}

.nav-list__item {
  flex: 1 0 auto;
}

.nav-list__link {
  display: block;
  width: 100%;
  text-align: center;
  color: var(--color-white);
  font-size: 1rem;
  transition: color .3s ease, opacity .3s ease;
}
@media screen and (max-width: 768px) {
  .nav-list__link {
    padding: 1.25em 0;
    border-bottom: 1px solid var(--color-white);
    text-align: left;
  }
}
@media screen and (min-width: 769px) {
  .header.scrolled .nav-list__link,
  .nav-list__link--black {
    color: var(--color-black);
  }
  .nav-list__link:hover {
    opacity: .7;
  }
}

.section {
  position: relative;
  z-index: 0;
}
.section--bg-green {
  background-color: var(--color);
}
.video-wrap__section {
  margin-top: calc((1dvh * 100) * -1);
}

.cmn-container {
  padding: 0 1.875rem;
  width: min(100%, 1300px);
}
.section__cmn-container {
  margin-inline: auto;
}

.cmn-heading {
  color: var(--color-white);
  font-size: clamp(2.375rem, 1.529rem + 3.61vw, 4.6875rem);
  font-weight: 200;
  line-height: 1.25;
}
.cmn-heading--green {
  color: var(--color);
}
.cmn-heading--center {
  text-align: center;
}

.cmn-heading__caption {
  display: block;
  font-size: clamp(0.8125rem, 0.652rem + 0.68vw, 1.25rem);
  font-weight: 400;
}
.cmn-heading__caption--black {
  color: var(--color-black);
}

.cmn-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.animation-wrap {
  width: 100%;
  height: min(65vw, 910px);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .animation-wrap {
    height: 117.333vw;
  }
}
.section__animation-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.circle-animation {
  width: min(65vw, 910px);
}
@media screen and (max-width: 768px) {
  .circle-animation {
    width: 117.333vw;
  }
}
.animation-wrap__circle-animation {
  position: absolute;
  left: calc(50% - min(8.643vw, 121px));
}
@media screen and (max-width: 768px) {
  .animation-wrap__circle-animation {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.circle-animation__circle {
  fill: rgba(255, 255, 255, .19);
}
.circle-animation__circle--stroke {
  fill: none;
  stroke: var(--color-white);
}

.gmap {
  position: relative;
  width: 100%;
  height: 0;
}
.gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-wrap {
  position: relative;
  z-index: 0;
}

.video-wrap__video {
  display: block;
  position: sticky;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  object-fit: cover;
  pointer-events: none;
  z-index: -2;
}

.video-wrap__bubble-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.bubble {
  position: absolute;
  bottom: 0;
  border: var(--bubble-border, none);
  border-radius: 50%;
  width: var(--size);
  height: var(--size);
  background-color: var(--bubble-bg-color, transparent);
  opacity: 0;
  animation: floatUp var(--duration) ease-out var(--delay) forwards;
  pointer-events: none;
}

@keyframes floatUp {
    0% {
        transform: translate(0, 0) scale(0.2);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--random-x-offset), calc(-175vh - var(--size))) scale(1.2);
        opacity: 0;
    }
}

.fv {
  padding-top: clamp(5.0625rem, 1.084rem + 16.98vw, 15.9375rem);
}

.slider {
  width: min(42.071vw, 589px);
  animation: float 5s ease-in-out infinite;
  animation-delay: 0.5s;
}
@media screen and (max-width: 768px) {
  .slider {
    width: 76vw;
  }
}
@media screen and (min-width: 769px) {
  .fv__slider {
    position: absolute;
    top: min(8.571vw, 120px);
    left: calc(50% + min(2.786vw, 39px));
  }
}

@keyframes float {
    0% {
        transform: translateY(0); 
    }
    50% {
        transform: translateY(-1em); 
    }
    100% {
        transform: translateY(0); 
    }
}

.slider__slide {
  border-radius: 50%;
  overflow: hidden;
  transition-property: opacity;
}
.slider__slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(212, 240, 255, .53);
  mix-blend-mode: multiply;
}

@media screen and (min-width: 769px) {
  .fv__circle-animation {
    top: -4.505%;
  }
}

.fv-text {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .fv-text {
    width: 100%;
  }
}

.fv-text__copy {
  color: var(--color-white);
  font-family: -apple-system, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", "Noto Sans JP", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.6875rem, 1.162rem + 2.24vw, 3.125rem);
  font-weight: 300;
  letter-spacing: .075em;
}
@media screen and (max-width: 768px) {
  .fv-text__copy {
    margin-top: 1.875rem;
  }
}

.fv-text__description {
  color: var(--color-white);
  font-size: clamp(0.875rem, 0.784rem + 0.39vw, 1.125rem);
  line-height: 2.389;
  letter-spacing: .2em;
}
@media screen and (max-width: 768px) {
  .fv-text__description {
    margin-top: .625rem;
  }
}

.fv-text__key-word {
  margin-top: clamp(1.875rem, 0.274rem + 6.83vw, 6.25rem);
  color: var(--color-white);
  font-size: clamp(0.625rem, 0.442rem + 0.78vw, 1.125rem);
  font-weight: 100;
  line-height: 1.25;
  letter-spacing: .1em;
}

.fv-text__initial {
  color: #0ef293;
  font-size: 1.5em;
}

.philosophy {
  padding: clamp(4.375rem, 1.402rem + 12.68vw, 12.5rem) 0;
}

.philosophy__text {
  margin-top: clamp(2.8125rem, 1.784rem + 4.39vw, 5.625rem);
  color: var(--color-white);
  font-size: clamp(1.5625rem, 1.311rem + 1.07vw, 2.25rem);
  font-weight: 500;
  line-height: 2.194;
}

.message {
  padding: clamp(3.125rem, 1.753rem + 5.85vw, 6.875rem) 0;
}

.message__image {
  width: min(23.857vw, 334px);
}
@media screen and (min-width: 769px) {
  .message__image {
    position: absolute;
    top: min(21.143vw, 296px);
    left: calc(50% + min(13.926vw, 195px));
  }
}
@media screen and (max-width: 768px) {
  .message__image {
    margin: max(13.333vw, 3.125rem) auto 0;
    width: 54.4vw;
  }
}

@media screen and (max-width: 768px) {
  .message__animation-wrap,
  .recruit__animation-wrap {
    height: 145.6vw;
  }
}

@media screen and (min-width: 769px) {
  .message__circle-animation {
    top: 2.637%;
  }
}
@media screen and (max-width: 768px) {
  .message__circle-animation,
  .recruit__circle-animation {
    width: 145.6vw;
  }
}

.message__text {
  margin-top: clamp(1.5625rem, 0.877rem + 2.93vw, 3.4375rem);
}
@media screen and (min-width: 769px) {
  .message__text {
    margin-bottom: 3.125rem;
    width: 50%;
  }
}

.message__heading {
  color: var(--color-white);
  font-size: clamp(1.375rem, 1.123rem + 1.07vw, 2.0625rem);
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .message__heading {
    line-height: 2;
  }
}

.message__content {
  margin-top: clamp(1.875rem, 1.761rem + 0.49vw, 2.1875rem);
  color: var(--color-white);
}

.message__signature {
  margin-top: clamp(1.5625rem, 1.22rem + 1.46vw, 2.5rem);
}

.message__name {
  display: inline-block;
  margin-left: 1em;
  font-size: clamp(1.25rem, 1.113rem + 0.59vw, 1.625rem);
}

.business {
  padding: clamp(3.125rem, 2.439rem + 2.93vw, 5rem) 0;
}

.business__business-list {
  margin-top: clamp(1.875rem, 1.646rem + 0.98vw, 2.5rem);
}

.business-list__item {
  padding: clamp(1.5625rem, 1.22rem + 1.46vw, 2.5rem) 0;
  background-color: var(--color-light);
}
.business-list__item:nth-of-type(2n) {
  background-color: var(--color-white);
}

.business-list__container {
  margin: 0 auto;
  width: min(100%, 1400px);
}
@media screen and (min-width: 769px) {
  .business-list__container {
    display: flex;
  }
}

.business-list__image {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .business-list__image {
    width: 94.133%;
  }
}

.business-list__text {
  position: relative;
  padding: 0 clamp(1.875rem, 0.503rem + 5.85vw, 5.625rem);
}
@media screen and (min-width: 769px) {
  .business-list__text {
    width: 50%;
  }
}

.business-list__number {
  position: absolute;
  bottom: calc(50% + min(5.571vw, 78px));
  left: -4.714%;
  padding: .6em 1em;
  width: min(48.267vw, 274px);
  background-color: var(--color-white);
  color: var(--color);
  font-size: clamp(0.8125rem, 0.675rem + 0.59vw, 1.1875rem);
  font-weight: 200;
}
@media screen and (max-width: 768px) {
  .business-list__number {
    bottom: calc(100% + 2.667vw);
    left: max(8vw, 30px);
  }
}
.business-list__number::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% + min(11.2vw, 63px));
  width: min(20vw, 113px);
  height: 1px;
  background-color: var(--color);
  transform: translateY(-50%);
}

.business-list__term {
  margin-top: clamp(1.875rem, -0.526rem + 10.24vw, 8.438rem);
  color: var(--color);
  font-size: clamp(1.375rem, 1.192rem + 0.78vw, 1.875rem);
  font-weight: 700;
}

.business-list__description {
  margin-top: clamp(0.625rem, 0.511rem + 0.49vw, 0.9375rem);
}
@media screen and (min-width: 769px) {
  .business-list__description {
    width: min(100%, 480px);
  }
}

.recruit {
  padding: clamp(3.125rem, 1.753rem + 5.85vw, 6.875rem) 0;
  overflow: hidden;
}

@media screen and (min-width: 769px) {
  .recruit__text {
    position: absolute;
    top: min(22.143vw, 310px);
    left: 50%;
    padding: 0 min(7.143vw, 6.25rem);
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .recruit__text {
    margin-top: max(9.333vw, 2.1875rem);
  }
}

.recruit__term {
  color: var(--color-white);
  font-size: clamp(1.375rem, 0.826rem + 2.34vw, 2.875rem);
  font-weight: 500;
  line-height: 1.5;
}

.recruit__description {
  margin-top: clamp(1.5625rem, 1.105rem + 1.95vw, 2.8125rem);
  color: var(--color-white);
  font-size: clamp(0.8125rem, 0.698rem + 0.49vw, 1.125rem);
}

.recruit__description p {
  margin-top: 1.5em;
}

@media screen and (min-width: 769px) {
  .recruit__circle-animation {
    top: 5.714%;
  }
}

.recruit__container {
  margin: 0 auto;
  width: min(100%, 1400px);
}

.recruit__image {
  margin-top: clamp(3.125rem, 2.21rem + 3.9vw, 5.625rem);
}
@media screen and (min-width: 769px) {
  .recruit__image {
    width: 50%;
  }
}

.recruit__license {
  width: min(100%, 1309px);
  background-color: var(--color-white);
}
@media screen and (min-width: 769px) {
  .recruit__license {
    display: flex;
    margin: 6.1875rem 0 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .recruit__license {
    padding-block: 2.5rem 2.8125rem;
  }
}

.license-text {
  padding: 0 clamp(1.875rem, 1.189rem + 2.93vw, 3.75rem);
}
@media screen and (min-width: 769px) {
  .license-text {
    padding-block: 2.5rem;
    width: 46%;
    height: max(18.857vw, 264px);
  }
}

.license-text__term {
  color: var(--color);
  font-size: clamp(1.375rem, 1.078rem + 1.27vw, 2.1875rem);
  font-weight: 500;
}

.license-text__description {
  margin-top: .9375rem;
}
@media screen and (min-width: 769px) {
  .license-text__description {
    width: min(100%, 465px);
  }
}

.license-list {
  display: flex;
}
@media screen and (min-width: 769px) {
  .license-list {
    width: 54%;
  }
}
@media screen and (max-width: 768px) {
  .license-list {
    margin: 1.875rem 0 0 auto;
    width: 91.467%;
    height: max(34.4vw, 129px);
  }
}

.license-list__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(100% / 3);
}
.license-list__item:nth-of-type(1) {
  background-color: #258c49;
}
.license-list__item:nth-of-type(2) {
  background-color: #2a9e52;
}
.license-list__item:nth-of-type(3) {
  background-color: #34c264;
}

.license-list__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: min(13.067vw, 90px);
}
.license-list__icon img {
  max-height: 100%;
}

.license-list__text {
  margin-top: 1.5em;
  text-align: center;
  color: var(--color-white);
  font-size: clamp(0.75rem, 0.659rem + 0.39vw, 1rem);
}

.recruit__attention {
  margin-top: clamp(3.125rem, 1.524rem + 6.83vw, 7.5rem);
  text-align: center;
  color: var(--color-white);
  font-size: clamp(0.9375rem, 0.823rem + 0.49vw, 1.25rem);
  font-weight: 400;
}

.recruit-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 6.25rem;
}
@media screen and (max-width: 768px) {
  .recruit-list {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.recruit__recruit-list {
  margin-top: clamp(1.5625rem, 1.22rem + 1.46vw, 2.5rem);
}

.recruit-list__item {
  width: min(34.929vw, 489px);
  height: min(11.5vw, 161px);
}
@media screen and (max-width: 768px) {
  .recruit-list__item {
    width: min(75.2vw, 282px);
    height: min(24.8vw, 93px);
  }
}

.recruit-list__link {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--color-black);
  text-align: center;
  color: var(--color-white);
  font-size: clamp(0.8125rem, 0.584rem + 0.98vw, 1.4375rem);
  font-weight: 500;
  transition: opacity .3s ease;
}
@media screen and (min-width: 769px) {
  .recruit-list__link:hover {
    opacity: .7;
  }
}
.recruit-list__link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% + min(14vw, 196px));
  border-right: 2px solid var(--color-white);
  border-bottom: 1.5px solid var(--color-white);
  width: min(6.5vw, 91px);
  height: min(1.971vw, 15px);
  transform: translateY(-50%) skew(45deg);
}
@media screen and (max-width: 768px) {
  .recruit-list__link::after {
    left: calc(50% + min(29.867vw, 112px));
    width: min(14.133vw, 53px);
    height: min(2.4vw, 9px);
  }
}
.recruit-list__link--white {
  background-color: var(--color-white);
  color: var(--color-black);
}
.recruit-list__link--white::after {
  border-right-color: var(--color-black);
  border-bottom-color: var(--color-black);
}

.recruit-list__image {
  width: 73%;
}

.company {
  padding-top: clamp(2.8125rem, 0.64rem + 9.27vw, 8.75rem);
}

.company-prifile {
  display: flex;
  flex-wrap: wrap;
  width: min(100%, 800px);
}
@media screen and (max-width: 768px) {
  .company-prifile {
    padding: 0 .46875rem;
  }
}
.company__company-prifile {
  margin: clamp(0.625rem, -0.175rem + 3.41vw, 2.8125rem) auto 0;
}

.company-prifile__term,
.company-prifile__description {
  padding: clamp(0.9375rem, 0.823rem + 0.49vw, 1.25rem) 0;
  border-bottom: 1px solid var(--color-gray);
  width: 100%;
}

.company-prifile__term {
  color: var(--color);
}
@media screen and (min-width: 769px) {
  .company-prifile__term {
    width: 20%;
  }
}
@media screen and (max-width: 768px) {
  .company-prifile__term {
    padding-bottom: 0;
    border-bottom: none;
  }
}

@media screen and (min-width: 769px) {
  .company-prifile__description {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .company-prifile__description {
    padding-top: 0;
  }
}

.company__gmap {
  margin: clamp(2.875rem, 2.486rem + 1.66vw, 3.9375rem) auto 0;
  width: min(100%, 800px);
  padding-top: 30%;
}
@media screen and (max-width: 768px) {
  .company__gmap {
    padding-top: 100%;
  }
}

.group {
  padding: clamp(2.8125rem, 0.64rem + 9.27vw, 8.75rem) 0 clamp(4.375rem, 2.774rem + 6.83vw, 8.75rem);
}

.group-info {
  width: min(100%, 800px);
}
@media screen and (max-width: 768px) {
  .group-info {
    padding: 0 .78125rem;
  }
}
.group__group-info {
  margin: clamp(2.5rem, 1.814rem + 2.93vw, 4.375rem) auto 0;
}

@media screen and (min-width: 769px) {
  .group-info__term {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .group-info__term {
    margin-top: 2.1875rem;
  }
}

.group-info__logo {
  text-align: center;
}
@media screen and (min-width: 769px) {
  .group-info__logo {
    width: 46.5%;
  }
}
.group-info__logo a {
  transition: opacity .3s ease;
}
@media screen and (min-width: 769px) {
  .group-info__logo a:hover {
    opacity: .7;
  }
}

.group-info__image {
  width: min(51.467vw, 329px);
}

.group-info__text {
  position: relative;
}
@media screen and (min-width: 769px) {
  .group-info__text {
    padding-left: 2em;
    border-left: 1px solid var(--color);
    width: 53.5%;
  }
}
@media screen and (max-width: 768px) {
  .group-info__text {
    padding-top: .8125rem;
    margin-top: .8125rem;
  }
}

@media screen and (max-width: 768px) {
  .group-info__text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 26.552%;
    height: 1px;
    background-color: var(--color);
    transform: translateX(-50%);
  }
}

.group-info__text p:not(:first-of-type) {
  margin-top: .5em;
}

.group-info__name {
  font-size: clamp(1rem, 0.909rem + 0.39vw, 1.25rem);
  font-weight: 700;
}

.group-info__description {
  margin: clamp(1.25rem, 1.021rem + 0.98vw, 1.875rem) auto 0;
  width: min(100%, 745px);
  font-size: clamp(0.75rem, 0.659rem + 0.39vw, 1rem);
}

.go-top {
  position: fixed;
  right: min(2.933vw, 28px);
  bottom: min(2.933vw, 28px);
  border-top: 2px solid var(--color-black);
  border-left: 1.5px solid var(--color-black);
  width: min(2.4vw, 20px);
  height: min(8.533vw, 73px);
  transform: skewY(45deg);
  z-index: 100;
}

.footer {
  padding: clamp(1.875rem, 1.189rem + 2.93vw, 3.75rem) 0 clamp(0.625rem, -0.061rem + 2.93vw, 2.5rem);
  border-top: 2px solid var(--color);
  background-color: var(--color-gray);
}

.footer__container {
  padding: 0 1.875rem;
  margin: 0 auto;
  width: min(100%, 1320px);
}

@media screen and (min-width: 769px) {
  .footer-content {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .footer-content {
    text-align: center;
  }
}

.footer-logo {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: min(38.4vw, 251px);
}
@media screen and (max-width: 768px) {
  .footer__footer-logo {
    margin: 0 auto;
  }
}

.footer-logo__image {
  width: 44%;
}

.footer-logo__text {
  width: 54%;
}

.footer-text {
  font-size: clamp(0.75rem, 0.704rem + 0.2vw, 0.875rem);
}
@media screen and (min-width: 769px) {
  .footer-text {
    margin-left: 2.875rem;
  }
}
@media screen and (max-width: 768px) {
  .footer__footer-text {
    margin-top: 1em;
  }
}
@media screen and (min-width: 769px) {
  .footer-text p:not(:first-of-type) {
    margin-top: .5em;
  }
}

.footer-text__name {
  font-size: clamp(0.9375rem, 0.777rem + 0.68vw, 1.375rem);
  font-weight: 700;
}

.copylight {
  text-align: right;
  color: #8a8a8a;
  font-size: clamp(0.625rem, 0.534rem + 0.39vw, 0.875rem);
  letter-spacing: .1em;
}
@media screen and (max-width: 768px) {
  .copylight {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .footer__copylight {
    margin-top: 2.5rem;
  }
}

.contact-title {
  padding: clamp(4.375rem, 2.774rem + 6.83vw, 8.75rem) 0 clamp(1.875rem, 0.96rem + 3.9vw, 4.375rem);
  background-color: var(--color-light);
}

.contact-content {
  padding: clamp(2.125rem, 1.485rem + 2.73vw, 3.875rem) 0 clamp(6.125rem, 4.936rem + 5.07vw, 9.375rem);
}

.contact-content__container {
  padding: 0 1.25rem;
  margin: 0 auto;
  width: min(100%, 1040px);
}

.global-errors {
  padding: clamp(2.1875rem, 1.959rem + 0.98vw, 2.8125rem) 1em;
  width: min(100%, 600px);
  background-color: #fdede4;
  text-align: center;
  color: #db0a17;
}
.contact-content__global-errors {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .contact-content__global-errors {
    margin-bottom: 2.25rem;
  }
}

.global-errors__heading {
  font-size: clamp(1.25rem, 1.181rem + 0.29vw, 1.4375rem);
}

.global-errors__list {
  margin-top: 1.25rem;
  font-size: clamp(0.875rem, 0.829rem + 0.2vw, 1rem);
  line-height: 1.9375;
}

.contact-content__confirm-attention {
  margin-bottom: clamp(1.875rem, 0.96rem + 3.9vw, 4.375rem);
  text-align: center;
  color: #db0a17;
  font-size: clamp(1.25rem, 1.181rem + 0.29vw, 1.4375rem);
  font-weight: 500;
}

.contact-content__note {
  font-size: clamp(0.75rem, 0.659rem + 0.39vw, 1rem);
  font-weight: 400;
}
@media screen and (min-width: 769px) {
  .contact-content__note {
    margin-top: 2.375rem;
  }
}

@media screen and (min-width: 769px) {
  .contact-form {
    display: flex;
    flex-wrap: wrap;
  }
}
.contact-content__contact-form {
  margin-top: clamp(1.25rem, 1.136rem + 0.49vw, 1.5625rem);
}

.contact-form__term,
.contact-form__description {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 1.375rem 0;
  border-top: 1px solid #c2c2c2;
  font-size: clamp(0.875rem, 0.829rem + 0.2vw, 1rem);
}
.contact-form__term:last-of-type,
.contact-form__description:last-of-type {
  border-bottom: 1px solid #c2c2c2;
}
@media screen and (max-width: 768px) {
  .contact-form__term:last-of-type {
    border-bottom: none;
  }
}

.contact-form__term {
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .contact-form__term {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 769px) {
  .contact-form__term {
    width: 30%;
  }
}

.contact-form__description {
  align-items: center;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .contact-form__description {
    padding-block: .8125rem 1.9375rem;
    border-top: none;
  }
}
@media screen and (min-width: 769px) {
  .contact-form__description {
    width: 70%;
  }
}

.contact-form__input-division {
  width: min(17.333vw, 120px);
}

.contact-form__date {
  margin-left: .3125em;
}
.contact-form__date:not(:last-of-type) {
  margin-right: 1em;
}

.contact-form__item {
  margin: 0 2em 0 .75em;
}

@media screen and (max-width: 768px) {
  .contact-form__radio-wrap {
    width: 100%;
  }
}

.required {
  display: inline-block;
  padding: .125em .5em;
  border-radius: .28125em;
  background-color: var(--color);
  text-align: center;
  color: var(--color-white);
  font-size: clamp(0.75rem, 0.659rem + 0.39vw, 1rem);
}
.contact-content__required {
  margin-right: .625em;
}
.contact-form__required {
  margin: 0 2.0625rem 0 auto;
}
@media screen and (max-width: 768px) {
  .contact-form__required {
    margin-inline: 1em 0;
  }
}

.input-box {
  padding: .625em 1.25em;
  border: 1px solid #c2c2c2;
  border-radius: .5em;
  margin: 0;
  background-color: var(--color-white);
  width: 100%;
  height: 100%;
  outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
@media screen and (max-width: 768px) {
  .input-box {
    padding-inline: 1em;
  }
}
.contact-form__description:has(.error) .input-box,
.contact-form__description:has(.error) .text-area {
  border-color: #f26169;
  background-color: #fdede4;
}

.text-area {
  padding: .625em 1.25em;
  border: 1px solid #c2c2c2;
  border-radius: .5em;
  width: 100%;
  outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
@media screen and (max-width: 768px) {
  .text-area {
    padding-inline: 1em;
  }
}

.error {
  display: none;
}

.privacy-attention {
  font-weight: 400;
}
@media screen and (min-width: 769px) {
  .privacy-attention {
    text-align: center;
  }
}
.contact-content__privacy-attention {
  margin-top: clamp(1.25rem, 0.793rem + 1.95vw, 2.5rem);
}

.privacy-attention__link {
  text-decoration: underline;
  color: var(--color);
}

.agree-checker {
  text-align: center;
  font-size: clamp(1rem, 0.909rem + 0.39vw, 1.25rem);
  font-weight: 400;
}
.contact-content__agree-checker {
  margin-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .contact-content__agree-checker {
    margin-top: 2.8125rem;
  }
}

.contact-content__thanks {
  margin-top: clamp(1.25rem, 1.067rem + 0.78vw, 1.75rem);
  text-align: center;
  font-size: clamp(0.875rem, 0.829rem + 0.2vw, 1rem);
}
@media screen and (max-width: 768px) {
  .contact-content__thanks {
    text-align: justify;
  }
}
.contact-content__thanks p:not(:first-of-type) {
  margin-top: 2em;
}

.recaptcha-wrap {
  display: flex;
  justify-content: center;
}
.contact-content__recaptcha-wrap {
  margin-top: 2.8125rem;
}

.submit-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  width: min(88vw, 400px);
  height: min(17.6vw, 80px);
  background-color: var(--color);
  text-align: center;
  color: var(--color-white);
  font-size: clamp(1.25rem, 1.159rem + 0.39vw, 1.5rem);
  font-weight: 400;
  outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
  transition: opacity .3s ease;
}
@media screen and (min-width: 769px) {
  .submit-btn {
    cursor: pointer;
  }
  .submit-btn:hover {
    opacity: .7;
  }
}
.submit-btn:disabled {
  opacity: .5;
  pointer-events: none;
  cursor: default;
}
.input__submit-btn {
  margin: clamp(3.125rem, 2.896rem + 0.98vw, 3.75rem) auto 0;
}
.confirm__submit-btn {
  margin: clamp(3.5625rem, 3.197rem + 1.56vw, 4.5625rem) auto 0;
}
.finish__submit-btn {
  margin: clamp(4.375rem, 4.146rem + 0.98vw, 5rem) auto 0;
}

.return {
  text-align: center;
  font-size: clamp(1rem, 0.909rem + 0.39vw, 1.25rem);
  font-weight: 400;
}
.confirm__return {
  margin: clamp(1.5625rem, 1.334rem + 0.98vw, 2.1875rem) auto 0;
}

.return-btn {
  display: inline-block;
  position: relative;
  transition: opacity .3s ease;
}
@media screen and (min-width: 769px) {
  .return-btn,
  .return-btn input {
    cursor: pointer;
  }
  .return-btn:hover {
    opacity: .7;
  }
}
.return-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% + .5em);
  border-top: 1px solid var(--color-black);
  border-left: 1px solid var(--color-black);
  width: min(1.867vw, 10px);
  height: min(1.867vw, 10px);
  transform: translateY(-50%) rotate(-45deg);
}
.return-btn input {
  border: none;
  background: none;
  vertical-align: text-top;
  outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}