@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

ul[class], ol[class] {
  padding: 0;
}

body, h1, h2, h3, h4, p, ul[class], ol[class], figure, blockquote, dl, dd {
  margin: 0;
}

body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

ul[class], ol[class] {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media screen and (max-width: 1279px) {
  html {
    font-size: 0.7320644217vw;
  }
}
@media screen and (max-width: 1079px) {
  html {
    font-size: 40%;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

:root {
  --black: #212121;
  --color: var(--black);
  --primary-color: #f2b035;
  --secondary-color: #36bfb8;
  --tertiary-color: #09ccea;
  --quaternary-color: #561912;
  --error-color: #bb491d;
  --gray: #707070;
  --primary-bg-color: #f2efeb;
  --primary-button-color: #282a32;
  --font: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --primary-font: "all-round-gothic", sans-serif;
  --font-size: 1.6rem;
  --font-size-xs: 1.2rem;
  --font-size-s: 1.4rem;
  --font-size-base: var(--font-size);
  --font-size-m: 2rem;
  --font-size-l: 2.4rem;
  --font-size-xl: 2.8rem;
  --font-size-2xl: 3.2rem;
  --font-size-3xl: 3.6rem;
  --font-size-4xl: 6.3rem;
  --font-size-5xl: 6.3rem;
  --gutter: 1.5rem;
  --inner: 112.6rem;
  --transition1: cubic-bezier(.75,0,.175,1);
}

body {
  font-feature-settings: "palt";
  font-family: var(--font);
  font-size: var(--font-size);
  color: var(--color);
  background-color: var(--primary-bg-color);
  line-height: 1.5;
  position: relative;
}
body::before {
  content: "";
  background-color: #e8e2d9;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 127rem;
  z-index: -1;
}
b {
  font-weight: bold;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}
a:not(.c-button):hover {
  opacity: 0.7;
}

input[type=submit] {
  transition: 0.3s;
  cursor: pointer;
}
input[type=submit]:hover {
  opacity: 0.7;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

p {
  font-size: var(--font-size);
  line-height: 3.5rem;
  color: var(--text);
}
@media (max-width: 767px) {
  p {
    font-size: 1.4rem;
    line-height: 3rem;
  }
}

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

video {
  max-width: 100%;
}

button {
  appearance: none;
  border: 0;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}
.m {
  margin: var(--margin);
}
@media (max-width: 767px) {
  .m {
    margin: var(--margin_sp);
  }
}

.mt {
  margin-top: var(--margin-top) !important;
}
@media (max-width: 767px) {
  .mt {
    margin-top: var(--margin-top_sp) !important;
  }
}

.mb {
  margin-bottom: var(--margin-bottom) !important;
}
@media (max-width: 767px) {
  .mb {
    margin-bottom: var(--margin-bottom_sp) !important;
  }
}

.p {
  padding: var(--padding);
}
@media (max-width: 767px) {
  .p {
    padding: var(--padding_sp);
  }
}

.inline {
  display: inline !important;
}

.inline-block {
  display: inline-block !important;
}

.flex {
  display: flex;
}

.flex-center-y {
  display: flex;
  align-items: center;
}

.absolute {
  position: absolute;
  left: var(--l, auto);
  right: var(--r, auto);
  top: var(--t, auto);
  bottom: var(--b, auto);
}
@media (max-width: 767px) {
  .absolute {
    left: var(--l_sp, auto);
    right: var(--r_sp, auto);
    top: var(--t_sp, auto);
    bottom: var(--b_sp, auto);
  }
}

.grid {
  display: grid;
}

.grid-cols-1 {
  display: grid;
  grid-template-columns: 1fr;
}

.grid-cols-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 767px) {
  .grid-cols-1_sp {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .grid-cols-2_sp {
    grid-template-columns: 1fr 1fr;
  }
}

.grid-cols {
  grid-template-columns: var(--grid-col, repeat(2, 1fr));
}
@media (max-width: 767px) {
  .grid-cols {
    grid-template-columns: var(--grid-col_sp, var(--grid-col, 1fr));
  }
}

.grid-gap {
  gap: var(--grid-gap, 2rem);
}
@media (max-width: 767px) {
  .grid-gap {
    gap: var(--grid-gap_sp, var(--grid-gap, 2rem));
  }
}

.bold {
  font-weight: bold;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.hide {
  display: none;
}

.overflow-hidden {
  overflow: hidden;
}

.white {
  color: #fff;
}

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

.text-right {
  text-align: right;
}

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

.nowrap {
  white-space: nowrap;
}

.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.no-line-break {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.relative {
  position: relative;
}

.between {
  justify-content: space-between;
}

.u-gutter {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.u-wrapper {
  max-width: 124.5rem;
  margin: auto;
}
@media (max-width: 1079px) {
  .u-wrapper {
    max-width: 100%;
    padding: 0 2rem;
  }
}
@media screen and (max-width: 767px) {
  .u-wrapper {
    padding: 0;
    overflow: hidden;
    position: relative;
  }
}

.u-inner {
  max-width: calc(var(--inner) + 40px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .u-inner {
    max-width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.u-inner--large {
  max-width: 124rem;
}

.underline {
  text-decoration: underline !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.ms-0 {
  margin-left: 0rem !important;
}

.ms-1 {
  margin-left: 1rem !important;
}

.ms-2 {
  margin-left: 2rem !important;
}

.ms-3 {
  margin-left: 3rem !important;
}

.ms-4 {
  margin-left: 4rem !important;
}

.ms-0-5 {
  margin-left: 0.5rem !important;
}

.me-0 {
  margin-right: 0 !important;
}

.ms-auto {
  margin-left: auto !important;
}

.me-auto {
  margin-right: auto !important;
}

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

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

.mb-15 {
  margin-bottom: 1.5rem !important;
}

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

.mb-25 {
  margin-bottom: 2.5rem !important;
}

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

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

.mb-45 {
  margin-bottom: 4.5rem !important;
}

.mb-50 {
  margin-bottom: 5rem !important;
}

.mb-55 {
  margin-bottom: 5.5rem !important;
}

.mb-60 {
  margin-bottom: 6rem !important;
}

.mb-65 {
  margin-bottom: 6.5rem !important;
}

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

.mb-80 {
  margin-bottom: 8rem !important;
}

.mb-90 {
  margin-bottom: 9rem !important;
}

.mb-100 {
  margin-bottom: 10rem !important;
}

.mb-110 {
  margin-bottom: 11rem !important;
}

.mb-120 {
  margin-bottom: 12rem !important;
}

.mb-125 {
  margin-bottom: 12.5rem !important;
}

.mb-130 {
  margin-bottom: 13rem !important;
}

.mb-140 {
  margin-bottom: 14rem !important;
}

.mb-150 {
  margin-bottom: 15rem !important;
}

.mb-160 {
  margin-bottom: 16rem !important;
}

.mb-300 {
  margin-bottom: 30rem !important;
}

/* margin-top */
.mt-00 {
  margin-top: 0rem !important;
}

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

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

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

.mb-35 {
  margin-bottom: 3.5rem !important;
}

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

.mt-50 {
  margin-top: 5rem !important;
}

.mt-60 {
  margin-top: 6rem !important;
}

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

.mt-80 {
  margin-top: 8rem !important;
}

.mt-90 {
  margin-top: 9rem !important;
}

.mt-100 {
  margin-top: 10rem !important;
}

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

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

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

.pb-100 {
  padding-bottom: 10rem !important;
}

.pb-130 {
  padding-bottom: 13rem !important;
}

.pb-140 {
  padding-bottom: 14rem !important;
}

.pb-160 {
  padding-bottom: 16rem !important;
}

.pb-180 {
  padding-bottom: 18rem !important;
}

/* padding-top**/
.pt-40 {
  padding-top: 4rem;
}

.pt-100 {
  padding-top: 10rem !important;
}

.pt-120 {
  padding-top: 12rem !important;
}

.pt-130 {
  padding-top: 13rem !important;
}

.pt-140 {
  padding-top: 14rem !important;
}

.pt-160 {
  padding-top: 16rem !important;
}

.pt-180 {
  padding-top: 18rem !important;
}

.pt-200 {
  padding-top: 20rem !important;
}

.ps-10 {
  padding-left: 10rem !important;
}

.ml-auto {
  margin-left: auto !important;
}

@media print, screen and (min-width: 768px) {
  .nowrap_pc {
    white-space: nowrap;
  }
}
@media (max-width: 767px) {
  .u-align-baseline_sp {
    align-items: baseline;
  }

  .u-align-end_sp {
    align-items: end;
  }

  .justify-center_sp {
    justify-content: center;
  }

  .font46_sp {
    font-size: 4.6rem !important;
  }

  .font16_sp {
    font-size: 1.6rem !important;
  }

  .fz-14_sp {
    font-size: 1.4rem !important;
  }

  .fz-24_sp {
    font-size: 2.4rem !important;
  }

  .font36_sp {
    font-size: 3.6rem !important;
  }

  .nowrap_sp {
    white-space: nowrap !important;
  }

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

  .mb-10_sp {
    margin-bottom: 1rem !important;
  }

  .mb-20_sp {
    margin-bottom: 2rem !important;
  }

  .mb-25_sp {
    margin-bottom: 2.5rem !important;
  }

  .mb-30_sp {
    margin-bottom: 3rem !important;
  }

  .mb-35_sp {
    margin-bottom: 3.5rem !important;
  }

  .mb-40_sp {
    margin-bottom: 4rem !important;
  }

  .mb-45_sp {
    margin-bottom: 4.5rem !important;
  }

  .mb-50_sp {
    margin-bottom: 5rem !important;
  }

  .mb-60_sp {
    margin-bottom: 6rem !important;
  }

  .mb-55_sp {
    margin-bottom: 5.5rem !important;
  }

  .mb-65_sp {
    margin-bottom: 6.5rem !important;
  }

  .mb-70_sp {
    margin-bottom: 7rem !important;
  }

  .mb-80_sp {
    margin-bottom: 8rem !important;
  }

  .mb-85_sp {
    margin-bottom: 8.5rem !important;
  }

  .mb-90_sp {
    margin-bottom: 9rem !important;
  }

  .mb-100_sp {
    margin-bottom: 10rem !important;
  }

  .mb-120_sp {
    margin-bottom: 12rem !important;
  }

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

  .mt-40_sp {
    margin-top: 4rem !important;
  }

  .mt-30_sp {
    margin-top: 3rem !important;
  }

  .ms-0_sp {
    margin-left: 0 !important;
  }

  .ms-20_sp {
    margin-left: 2rem !important;
  }

  .mx-auto_sp {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .pt-20_sp {
    padding-top: 2rem !important;
  }

  .pt-25_sp {
    padding-top: 2.5rem !important;
  }

  .pt-30_sp {
    padding-top: 3rem !important;
  }

  .pt-40_sp {
    padding-top: 4rem !important;
  }

  .pt-50_sp {
    padding-top: 5rem !important;
  }

  .pt-60_sp {
    padding-top: 6rem !important;
  }

  .pt-70_sp {
    padding-top: 7rem !important;
  }

  .pt-80_sp {
    padding-top: 8rem !important;
  }

  .pt-90_sp {
    padding-top: 9rem !important;
  }

  .pt-100_sp {
    padding-top: 10rem !important;
  }

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

  .pb-40_sp {
    padding-bottom: 4rem !important;
  }

  .pb-50_sp {
    padding-bottom: 5rem !important;
  }

  .pb-60_sp {
    padding-bottom: 6rem !important;
  }

  .pb-80_sp {
    padding-bottom: 8rem !important;
  }

  .px-0_sp {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .px-15_sp {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .px-40_sp {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .ps-0_sp {
    padding-left: 0 !important;
  }

  .ps-20_sp {
    padding-left: 2rem !important;
  }

  .pe-0_sp {
    padding-right: 0 !important;
  }

  .pe-20_sp {
    padding-right: 2rem !important;
  }

  .block_sp {
    display: block !important;
  }

  .text-center_sp {
    text-align: center !important;
  }

  .text-left_sp {
    text-align: left !important;
  }

  .u-gutter {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
}
.no-border {
  border: 0 !important;
}

/* select **/
.input-checkbox input {
  appearance: none;
  position: relative;
}
.input-checkbox input::before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  display: inline-block;
  background-color: #edf2f4;
  border: solid 1px #edf2f4;
  margin-right: 0.5rem;
  position: relative;
  top: 0rem;
}
.input-checkbox input:checked {
  background-color: transparent;
}
.input-checkbox input:checked::before {
  background-color: transparent;
}
.input-checkbox input:checked::after {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0.2rem;
  width: 0.5rem;
  height: 1.1rem;
  display: inline-block;
  border: solid 2px #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
  border-radius: 2px;
  margin-right: 0.5rem;
}

@keyframes fadein {
  to {
    transform: none;
    opacity: 1;
  }
}
@keyframes draw {
  to {
    stroke-dashoffset: 0px;
  }
}
.c-heading {
  font-size: 4.8rem;
  margin-bottom: 5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .c-heading {
    font-size: 2.4rem;
    margin-bottom: 3.5rem;
  }
}

.c-separate {
  border-top: 1.5px solid var(--color);
  width: 124.6rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .c-separate {
    width: calc(100% - 3rem);
  }
}

.c-profile {
  display: grid;
  grid-template-columns: 5rem 1fr;
  align-items: center;
  gap: 1rem;
}
.c-profile__image {
  width: 5rem;
  height: 5rem;
  overflow: hidden;
}
.c-profile__image img {
  border-radius: 100%;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.c-profile__name {
  font-size: var(--font-size-s);
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.c-profile__subname {
  font-family: var(--primary-font);
  color: var(--gray);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.c-profile--m {
  grid-template-columns: 9rem 1fr;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .c-profile--m {
    grid-template-columns: 6.5rem 1fr;
  }
}
.c-profile--m .c-profile__image {
  border-radius: 100%;
  width: 9rem;
  height: 9rem;
}
@media (max-width: 767px) {
  .c-profile--m .c-profile__image {
    border-radius: 100%;
    width: 6.5rem;
    height: 6.5rem;
  }
}
.c-profile--m .c-profile__name {
  font-size: var(--font-size-m);
}
@media (max-width: 767px) {
  .c-profile--m .c-profile__name {
    font-size: var(--font-size-base);
  }
}
.c-profile--m .c-profile__subname {
  font-size: var(--font-size-s);
}
@media (max-width: 767px) {
  .c-profile--m .c-profile__subname {
    font-size: 1.2rem;
  }
}

.c-title-logos-start {
  position: fixed;
  bottom: -80rem;
  left: 50%;
  height: 100%;
  transform: translate(-50%, 0);
  pointer-events: none;
  width: 100%;
}

.c-title-logos {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1.6rem;
  margin: auto;
  z-index: -1;
}
@media (max-width: 767px) {
  .c-title-logos {
    padding: 0 1.5rem;
    overflow: visible;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem 0.75rem;
    bottom: auto;
    top: 46rem;
  }
}

.c-scroll-logo2 {
  background-color: var(--color);
  padding: 2.8rem 0;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
.c-scroll-logo2--foot {
  margin-bottom: 15rem;
}
@media (max-width: 767px) {
  .c-scroll-logo2--foot {
    margin-bottom: 9rem;
  }
}
@media (max-width: 767px) {
  .c-scroll-logo2 {
    padding: 1.4rem 0;
    gap: 2.5rem;
  }
}
.c-scroll-logo2 img {
  max-width: none;
  width: 338.1rem;
}
@media (max-width: 767px) {
  .c-scroll-logo2 img {
    width: 196.6rem;
  }
}

.c-scroll-logo {
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0rem;
}
.c-scroll-logo img {
  max-width: none;
  width: auto;
  height: 6.6rem;
}
@media (max-width: 767px) {
  .c-scroll-logo img {
    height: 5.7rem;
  }
}

.c-photo {
  position: relative;
  border: solid 2px var(--color);
}
@media (max-width: 767px) {
  .c-photo {
    border-width: 1.5px;
  }
}
.c-photo__rects {
  position: absolute;
  width: 100%;
  height: 100%;
}
.c-photo__rect {
  width: 1.4rem;
  height: 1.4rem;
  border: solid 2px;
  position: absolute;
  background: #fff;
}
@media (max-width: 767px) {
  .c-photo__rect {
    border-width: 1.5px;
  }
}
.c-photo__rect:nth-child(1) {
  top: -0.6rem;
  left: -0.6rem;
}
.c-photo__rect:nth-child(2) {
  top: -0.6rem;
  right: -0.6rem;
}
.c-photo__rect:nth-child(3) {
  bottom: -0.6rem;
  left: -0.6rem;
}
.c-photo__rect:nth-child(4) {
  bottom: -0.6rem;
  right: -0.6rem;
}

.c-buttons {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
}
@media (max-width: 767px) {
  .c-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.c-button {
  font-size: var(--font);
  font-weight: bold;
  display: block;
  width: fit-content;
  --button-color: var(--primary-color);
  position: relative;
  transition: 0.3s !important;
  transition-delay: 0;
  width: var(--button-w, 27.5rem);
  height: 6rem;
}
@media (max-width: 767px) {
  .c-button {
    width: calc(100% - 0.5rem);
    transform: translate(0, -0.7rem);
  }
}
.c-button input[type=button],
.c-button input[type=submit] {
  opacity: 1 !important;
  transition: 0s !important;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  text-align: left;
  padding-left: 3rem;
  border: 0;
  color: inherit;
}
.c-button--pink {
  --button-color: #f26695;
}
.c-button--blue {
  --button-color: #09ccea;
}
.c-button--blue2 {
  --button-color: #36bfb8;
}
.c-button--green {
  --button-color: #8ec641;
}
.c-button--red {
  --button-color: #fb6458;
}
.c-button--black {
  --button-color: var(--black);
}
.c-button--center {
  margin: 0 auto;
}
.c-button--end {
  margin-left: auto;
}
.c-button:hover {
  color: #fff;
}
.c-button:hover .c-button__inner {
  background-color: var(--button-color);
}
.c-button:hover .c-button__icon {
  background-color: #fff;
  scale: 0.75;
}
.c-button::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0.5rem;
  top: 0.7rem;
  background-color: var(--color);
  border-radius: 3rem;
}
.c-button__inner {
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 1.5rem 2rem 1.5rem 3rem;
  border-radius: 3rem;
  position: relative;
  white-space: nowrap;
  z-index: 2;
  background: #fff;
  border: 1.5px solid var(--color);
  display: flex;
  gap: 2.6rem;
  justify-content: space-between;
  align-items: center;
}
.c-button__icon {
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 100%;
  width: 3rem;
  height: 3rem;
  background: var(--button-color);
  border: 1px solid #212121;
}

.c-slider {
  margin-right: calc(50% - 50vw);
}
.c-slider .swiper-slide {
  width: auto;
}
@media (max-width: 767px) {
  .c-slider .c-work-card {
    width: 24.5rem;
  }
}

.c-work-card {
  width: 49rem;
  display: block;
}
@media (max-width: 767px) {
  .c-work-card {
    width: 15.7rem;
  }
}
.c-work-card:hover image {
  scale: 1.05;
}
.c-work-card image {
  transition: 0.4s;
}
@media (max-width: 767px) {
  .c-work-card--slide {
    --wkcard-name-fs: 1.2rem;
    --wkcard-name-mb: 1rem;
    --wkcard-title-fs: 1.6rem;
    --wkcard-title-mb: 1.5rem;
    --wkcard-desc-fs: 1.2rem;
    --wkcard-desc-pt: 1.5rem;
  }
}
.c-work-card__image {
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .c-work-card__image {
    margin-bottom: 1.5rem;
  }
}
.c-work-card__image svg {
  max-width: 100%;
}
.c-work-card__name {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: var(--font-size-base);
  font-weight: normal;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .c-work-card__name {
    font-size: var(--wkcard-name-fs, 1rem);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
    margin-bottom: var(--wkcard-name-mb, 0.5rem);
  }
}
.c-work-card__name::before {
  content: "";
  background-color: var(--secondary-color);
  flex: 0 0 1rem;
  border-radius: 100%;
  width: 1rem;
  height: 1rem;
}
@media (max-width: 767px) {
  .c-work-card__name::before {
    display: inline-block;
    margin-right: 0.5rem;
  }
}
.c-work-card__title {
  font-size: var(--font-size-l);
  margin-bottom: 2rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  position: relative;
}
@media (max-width: 767px) {
  .c-work-card__title {
    font-size: var(--wkcard-title-fs, var(--font-size-s));
    margin-bottom: var(--wkcard-title-mb, 1rem);
  }
}
.c-work-card__desc {
  color: var(--gray);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  border-top: 1px solid var(--gray);
  padding-top: 2rem;
}
@media (max-width: 767px) {
  .c-work-card__desc {
    line-height: 2;
    font-size: var(--wkcard-desc-fs, 1rem);
    padding-top: var(--wkcard-desc-pt, 1rem);
  }
}

@media (max-width: 767px) {
  .c-interview-card--list .c-interview-card__image {
    margin-bottom: 1.5rem;
  }
  .c-interview-card--list .c-interview-card__image img {
    height: 11.2rem;
  }
  .c-interview-card--list .c-interview-card__title {
    font-size: var(--font-size-xs);
    margin-bottom: 1rem;
  }
  .c-interview-card--list .c-interview-card__tag {
    font-size: 1.2rem;
  }
}
.c-interview-card--s {
  width: 42rem;
  display: block;
}
@media (max-width: 767px) {
  .c-interview-card--s {
    width: 24.5rem;
  }
}
.c-interview-card--s .c-interview-card__image img {
  height: 30rem;
}
@media (max-width: 767px) {
  .c-interview-card--s .c-interview-card__image img {
    height: 17.5rem;
  }
}
.c-interview-card--type2 .c-interview-card__image {
  border-radius: 0 18rem 0 0;
}
@media (max-width: 767px) {
  .c-interview-card--type2 .c-interview-card__image {
    border-radius: 0 10rem 0 0;
  }
}
.c-interview-card--type3 .c-interview-card__image {
  border-radius: 0;
}
.c-interview-card:hover .c-interview-card__image img {
  scale: 1.04;
}
.c-interview-card__image {
  border-radius: 18rem;
  overflow: hidden;
  border: solid 2px;
  margin-bottom: 2.5rem;
}
.c-interview-card__image img {
  transition: 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .c-interview-card__image img {
    height: 17.5rem;
  }
}
.c-interview-card__title {
  font-size: var(--font-size-l);
  margin-bottom: 2rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  position: relative;
}
@media (max-width: 767px) {
  .c-interview-card__title {
    font-size: var(--font-size-base);
    margin-bottom: 1.5rem;
  }
}
.c-interview-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .c-interview-card__tags {
    gap: 1rem;
  }
}
.c-interview-card__tag {
  font-size: var(--font-size-s);
}
@media (max-width: 767px) {
  .c-interview-card__tag {
    font-size: var(--font-size-xs);
  }
}
.c-interview-card__tag::before {
  content: "#";
  color: var(--secondary-color);
  margin-right: 0.5rem;
}

@media (max-width: 767px) {
  .c-article:not(.c-article--feature) .c-profile {
    display: none;
  }
}

.c-article {
  display: grid;
  grid-template-columns: 22rem 1fr;
  gap: 3.5rem;
}
@media (max-width: 767px) {
  .c-article {
    grid-template-columns: 12rem 1fr;
    gap: 1.5rem;
  }
}
.c-article .c-profile {
  margin-top: 1.5rem;
}
.c-article--feature {
  display: grid;
  grid-template-columns: 43rem 1fr;
  gap: 5rem;
  padding: 5rem 6rem;
  height: 40rem;
}
@media (max-width: 767px) {
  .c-article--feature {
    padding: 2.5rem 1.5rem;
    height: 100%;
    display: block;
  }
}
.c-article--feature .c-article__title {
  font-size: 3.6rem;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .c-article--feature .c-article__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}
.c-article--feature .c-article__badge {
  opacity: 0;
  transition: 0.4s;
  transition-delay: 0.4s;
}
@media (max-width: 767px) {
  .c-article--feature .c-article__date {
    font-size: var(--font-size-base);
  }
}
@media (max-width: 767px) {
  .c-article--feature .c-article__category {
    font-size: 1.4rem;
    font-weight: 500;
  }
}
@media (max-width: 767px) {
  .c-article--feature .c-article__body {
    padding: 2rem 0 0;
  }
}
.c-article--feature .c-article__image img {
  height: 31rem;
}
@media (max-width: 767px) {
  .c-article--feature .c-article__image img {
    height: 25rem;
  }
}
@media print, screen and (min-width: 768px) {
  .c-article--block-s {
    display: block;
  }
  .c-article--block-s .c-article__title {
    font-size: var(--font-size-base);
  }
  .c-article--block-s .c-article__image {
    margin-bottom: 1rem;
  }
  .c-article--block-s .c-article__image img {
    height: 15.5rem;
  }
}
@media print and (max-width: 767px), screen and (min-width: 768px) and (max-width: 767px) {
  .c-article--block-s .c-article__image img {
    height: 8.6rem;
  }
}
.c-article--block {
  display: block;
}
.c-article--block .c-article__title {
  font-size: var(--font-size-base);
}
.c-article--block .c-article__image {
  margin-bottom: 1rem;
}
.c-article--block .c-article__image img {
  height: 23.8rem;
}
@media (max-width: 767px) {
  .c-article--block .c-article__image img {
    height: 8.6rem;
  }
}
.c-article--s {
  grid-template-columns: 18rem 1fr;
  gap: 2.5rem;
}
@media (max-width: 767px) {
  .c-article--s {
    grid-template-columns: 12rem 1fr;
    gap: 1.5rem;
  }
}
.c-article--s .c-article__image img {
  height: 13rem;
}
@media (max-width: 767px) {
  .c-article--s .c-article__image img {
    height: 8.6rem;
  }
}
@media print, screen and (min-width: 768px) {
  .c-article:hover .c-article__image > img {
    scale: 1.045;
  }
}
.c-article__image {
  overflow: hidden;
  border: solid 1.5px;
  align-self: flex-start;
}
.c-article__image img {
  transition: 0.6s cubic-bezier(0.4, 0, 1, 1);
  width: 100%;
  height: 16rem;
  object-fit: cover;
}
@media (max-width: 767px) {
  .c-article__image img {
    height: 8.6rem;
  }
}
.c-article__body {
  padding: 0.4rem 0 0;
}
.c-article__meta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 0.2rem;
}
.c-article__date {
  font-weight: 600;
  font-family: var(--primary-font);
  color: var(--gray);
}
@media (max-width: 767px) {
  .c-article__date {
    font-size: var(--font-size-xs);
  }
}
@media (max-width: 767px) {
  .c-article__date--detail {
    font-size: var(--font-size-base);
  }
}
.c-article__category {
  font-size: var(--font-size-s);
}
@media (max-width: 767px) {
  .c-article__category {
    font-size: var(--font-size-xs);
  }
}
@media (max-width: 767px) {
  .c-article__category--detail {
    font-size: var(--font-size-s);
  }
}
.c-article__category::before {
  content: "";
  background-color: var(--ctcolor, #8ec641);
  width: 1rem;
  height: 1rem;
  display: inline-block;
  margin-right: 0.6rem;
  transform: rotate(45deg);
}
.c-article__title {
  font-weight: bold;
  font-size: var(--font-size-m);
  overflow: hidden;
  display: -webkit-box;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  white-space: break-spaces;
  word-break: break-all;
}
@media (max-width: 767px) {
  .c-article__title {
    font-size: var(--font-size-s);
  }
}
.c-article__badge {
  position: absolute;
  left: 2.4rem;
  top: 2.4rem;
  border-radius: 100%;
  width: 7rem;
  height: 7rem;
  text-align: center;
  font-family: var(--primary-font);
  font-size: 1.9rem;
  line-height: 7rem;
  color: #fff;
  letter-spacing: 0.1em;
  background-color: var(--ctcolor, #8ec641);
}
@media (max-width: 767px) {
  .c-article__badge {
    border-radius: 100%;
    width: 5rem;
    height: 5rem;
    line-height: 5rem;
    font-size: 1.6rem;
    left: 1rem;
    top: 1rem;
  }
}

.c-feature-slider {
  width: 100%;
  overflow: hidden;
  background-color: #e5e0d8;
  margin-bottom: 8rem;
  --swiper-pagination-right: auto;
  --swiper-pagination-left: 3rem;
  --swiper-pagination-color: #f26695;
  --swiper-pagination-bullet-vertical-gap: 1.2rem;
  --swiper-pagination-bullet-width: 1rem;
  --swiper-pagination-bullet-height: 1rem;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-inactive-color: #fff;
}
@media (max-width: 767px) {
  .c-feature-slider {
    margin-bottom: 5rem;
  }
}
.c-feature-slider .swiper {
  height: 41rem;
}
@media (max-width: 767px) {
  .c-feature-slider .swiper {
    height: 46.4rem;
  }
}
.c-feature-slider .swiper-slide-active .c-article__badge {
  opacity: 1;
}
@media (max-width: 767px) {
  .c-feature-slider {
    --swiper-pagination-right: 2.5rem;
    --swiper-pagination-left: auto;
  }
  .c-feature-slider .swiper-pagination-bullets {
    top: calc(50% - 8rem);
  }
  .c-feature-slider .swiper-pagination-bullet {
    border: solid 1px #212121;
  }
}

.c-search {
  background-color: #e5e0d8;
  padding: 4rem 6rem;
  margin: 0 0 7rem;
}
@media (max-width: 767px) {
  .c-search {
    padding: 2rem;
    margin-bottom: 3.5rem;
  }
}

.c-search-items {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 5rem;
  justify-content: start;
}
@media (max-width: 767px) {
  .c-search-items {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.c-search-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .c-search-item {
    display: block;
  }
}
.c-search-item__label {
  font-weight: bold;
}
@media (max-width: 767px) {
  .c-search-item__label {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
}
.c-search-item__body select {
  color: var(--black);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2217.712%22%20height%3D%2210.944%22%20viewBox%3D%220%200%2017.712%2010.944%22%3E%20%3Cg%20id%3D%22down-chevron%22%20transform%3D%22translate(0%20-48.907)%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_56%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2056%22%20transform%3D%22translate(0%2048.907)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_97%22%20data-name%3D%22%E3%83%91%E3%82%B9%2097%22%20d%3D%22M15.623%2C48.907%2C8.856%2C55.674%2C2.089%2C48.907%2C0%2C51l8.856%2C8.856L17.712%2C51Z%22%20transform%3D%22translate(0%20-48.907)%22%20fill%3D%22%23707070%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: center right 2rem;
  background-repeat: no-repeat;
  height: 5rem;
  padding: 1rem 2rem;
  width: 37rem;
  display: block;
}
@media (max-width: 767px) {
  .c-search-item__body select {
    background-size: 1rem;
    width: 100%;
    height: auto;
    font-size: 16px;
    padding: 1rem;
  }
}

.c-category {
  margin-bottom: 7rem;
  padding: 0 6rem;
  position: relative;
}
@media (max-width: 767px) {
  .c-category {
    margin-bottom: 3.5rem;
    padding: 0 1.5rem;
    position: relative;
  }
}
.c-category::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 5px;
  border-bottom: 1.5px solid var(--black);
}
@media (max-width: 767px) {
  .c-category::after {
    width: calc(100% - 3rem);
    left: 1.5rem;
  }
}

.c-category-filters {
  display: flex;
  gap: 5rem;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 5px;
}
@media (max-width: 767px) {
  .c-category-filters {
    gap: 2.5rem;
  }
}

.c-category-filter {
  font-weight: bold;
  font-size: var(--font-size-xl);
  padding-bottom: 0.5em;
  position: relative;
  opacity: 1 !important;
}
@media (max-width: 767px) {
  .c-category-filter {
    font-size: var(--font-size-m);
  }
}
.c-category-filter::after {
  z-index: 4;
  content: "";
  background-color: var(--ctcolor, #f26695);
  width: 0%;
  height: 5px;
  position: absolute;
  left: 50%;
  bottom: 1px;
  transform: translate(-50%, 50%);
  transition: 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.c-category-filter:hover {
  color: var(--ctcolor, #f26695);
}
.c-category-filter:hover::after {
  width: 100%;
}
.c-category-filter.is-active {
  color: var(--ctcolor, #f26695);
}
.c-category-filter.is-active::after {
  width: 100%;
}

.c-pager {
  margin-top: 10rem;
}
@media (max-width: 767px) {
  .c-pager {
    margin-top: 7rem;
  }
}
.c-pager .wp-pagenavi {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
@media (max-width: 767px) {
  .c-pager .wp-pagenavi {
    gap: 1rem;
  }
}
.c-pager .page-numbers {
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  text-align: center;
  background-color: #f2efeb;
  border: solid 1.5px var(--black);
  font-size: 2.4rem;
  font-family: var(--primary-font);
}
@media (max-width: 767px) {
  .c-pager .page-numbers {
    width: 4rem;
    height: 4rem;
    line-height: 4rem;
    font-size: 1.4rem;
  }
}
.c-pager .page-numbers:hover {
  color: #fff;
  background-color: var(--black);
  opacity: 1;
}
.c-pager .page-numbers.current {
  color: #fff;
  background-color: var(--black);
}
.c-pager .page-numbers.prev, .c-pager .page-numbers.next {
  border: 0;
  font-size: 0;
  text-indent: 9999px;
  background-color: transparent !important;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%227.642%22%20height%3D%2212.223%22%20viewBox%3D%220%200%207.642%2012.223%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_87%22%20data-name%3D%22%E3%83%91%E3%82%B9%2087%22%20d%3D%22M0%2C5.465C.441%2C5.081%2C5.415%2C0%2C5.415%2C0l5.444%2C5.464%22%20transform%3D%22translate(6.219%200.656)%20rotate(90)%22%20fill%3D%22none%22%20stroke%3D%22%23212121%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.c-pager .page-numbers.prev {
  transform: scaleX(-1);
}

a.c-staff-card:hover {
  opacity: 1 !important;
}
a.c-staff-card:hover .c-staff-card__image-before {
  opacity: 0;
  filter: blur(4px);
}
a.c-staff-card:hover .c-staff-card__image-after {
  opacity: 1;
}

.c-staff-card__visual {
  position: relative;
  width: 32.8rem;
  height: 32.8rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .c-staff-card__visual {
    width: 16.4rem;
    height: 16.4rem;
    margin-bottom: 1rem;
  }
}
.c-staff-card__bg, .c-staff-card__image {
  position: absolute;
  left: 50%;
  width: 100%;
  bottom: 0;
  transform: translate(-50%, 0);
}
.c-staff-card__image-before {
  position: relative;
  z-index: 2;
  transition: opacity 1.2s, filter 0.8s;
}
.c-staff-card__image-after {
  opacity: 0;
  position: absolute;
  bottom: 0;
  transition: 0.6s;
}
.c-staff-card__bg {
  max-width: 29.5rem;
}
@media (max-width: 767px) {
  .c-staff-card__bg {
    max-width: 14.8rem;
  }
}
.c-staff-card__name {
  position: absolute;
  left: 0;
  bottom: 1rem;
  font-size: 4.4rem;
  line-height: 0.9090909091;
  font-weight: bold;
  color: #fff;
  font-family: var(--primary-font);
}
@media (max-width: 767px) {
  .c-staff-card__name {
    font-size: 2rem;
    line-height: 1;
    bottom: 0.5rem;
  }
}
.c-staff-card__subtitle {
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .c-staff-card__subtitle {
    font-size: 1.2rem;
  }
}
.c-staff-card__title {
  font-size: var(--font-size-l);
}
@media (max-width: 767px) {
  .c-staff-card__title {
    font-size: var(--font-size-base);
  }
}

.c-breadcrumb {
  position: relative;
  opacity: 0;
  transform: translate(0, 10px);
  animation: fadein 1s linear both;
}
.c-breadcrumb__items {
  font-size: var(--font-size-s);
  display: flex;
  gap: 1rem;
}
@media (max-width: 767px) {
  .c-breadcrumb__items {
    font-size: 1.2rem;
    gap: 0.5rem;
    width: 20rem;
    flex-wrap: wrap;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
.c-breadcrumb__item {
  color: #e3e3e3;
}
.c-breadcrumb__item::before {
  content: "";
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%225.279%22%20height%3D%227.011%22%20viewBox%3D%220%200%205.279%207.011%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_28056%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2028056%22%20transform%3D%22translate(0.214%206.801)%20rotate(-90)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_97%22%20data-name%3D%22%E3%83%91%E3%82%B9%2097%22%20d%3D%22M5.821%2C0%2C3.3%2C3.37.776%2C0%2C0%2C.617%2C3.3%2C4.822%2C6.591.617Z%22%20fill%3D%22%231d1d1d%22%20stroke%3D%22%23212121%22%20stroke-width%3D%220.3%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  background-size: 0.5rem;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  width: 1.2rem;
  height: 1.2rem;
  display: inline-block;
  margin-right: 1rem;
}
@media (max-width: 767px) {
  .c-breadcrumb__item::before {
    margin-right: 0.5rem;
    width: 1rem;
    height: 1rem;
  }
}
@media (max-width: 767px) {
  .c-breadcrumb__item:nth-child(3) {
    margin-bottom: -1.5rem;
    position: relative;
    z-index: 2;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 10rem;
    overflow: hidden;
    display: block;
  }
}
.c-breadcrumb__item:first-child::before {
  display: none;
}

.c-grid-bg {
  background-color: #f2efeb;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #fff calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #fff calc(100% - 1px));
  background-size: 4rem 4rem;
  background-repeat: repeat;
  background-position: center center;
}

.c-page-head-wrapper {
  overflow-x: clip;
}

.c-page-head {
  position: relative;
  padding-top: calc(250 / 1366 * 100vw);
}
@media (max-width: 767px) {
  .c-page-head {
    padding-top: 10rem;
  }
}
.c-page-head__line {
  width: calc(2050 / 1366 * 100vw);
  height: calc(696 / 1366 * 100vw);
  stroke-dasharray: 2000, 2000;
  stroke-dashoffset: 2000;
  backface-visibility: hidden;
  transform: translate(-50%, 0);
  position: absolute;
  pointer-events: none;
  animation: draw 1s linear both;
}
@media (max-width: 767px) {
  .c-page-head__line {
    animation: draw 2s linear both;
    animation-delay: 0.25s;
    width: 100%;
    height: 23.1rem;
    transform: none;
    left: 0;
    overflow-x: clip;
  }
  .c-page-head__line svg {
    width: 72.6rem;
    height: 23.1rem;
    left: -14rem;
    position: relative;
  }
}
@keyframes draw {
  to {
    stroke-dashoffset: 0px;
  }
}
.c-page-head__line--1 {
  left: 51%;
  top: 3vw;
}
@media (max-width: 767px) {
  .c-page-head__line--1 {
    top: 5.42rem;
    left: 0;
  }
}
.c-page-head__line--2 {
  mix-blend-mode: multiply;
  left: 50.5%;
  top: 5.5vw;
}
@media (max-width: 767px) {
  .c-page-head__line--2 {
    top: 6.92rem;
    left: 0;
  }
}

.c-page-heading {
  position: relative;
  opacity: 0;
  transform: translate(0, 10px);
  animation: fadein 1s linear both;
}
.c-page-heading__title {
  font-size: 6.4rem;
  letter-spacing: 0.1em;
  color: #fff;
  position: absolute;
  top: 2.7rem;
  left: 0;
}
@media (max-width: 767px) {
  .c-page-heading__title {
    top: 2.3rem;
    font-size: 3.2rem;
    line-height: 3.5rem;
  }
}
.c-page-heading__subtitle {
  font-family: var(--primary-font);
  font-weight: bold;
  font-size: 16.8rem;
  line-height: 15.5rem;
  white-space: nowrap;
  color: #fff;
  opacity: 0.3;
  pointer-events: none;
}
@media (max-width: 767px) {
  .c-page-heading__subtitle {
    font-size: 6.4rem;
    line-height: 1;
    padding: 1rem 0 0;
  }
}

.c-page-content {
  padding-top: calc(300 / 1366 * 100vw);
  padding-bottom: 15rem;
}
@media (max-width: 767px) {
  .c-page-content {
    padding-bottom: 7rem;
    padding-top: 14rem;
  }
}

/*
右から左へ
----------------------------*/
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/*
    左から右へ
    ----------------------------*/
@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
.a-infinity-scroll--left {
  animation: infinity-scroll-left 40s infinite linear 0.15s both;
}

.a-infinity-scroll--left2 {
  animation: infinity-scroll-left 65s infinite linear 1s both;
}

.a-infinity-scroll--right {
  animation: infinity-scroll-right 40s infinite linear 0.15s both;
}

.c-about {
  z-index: 4;
}
.c-about__inner {
  display: grid;
  grid-template-columns: 38.6rem 1fr;
  gap: 13rem;
  height: 100%;
  position: relative;
  z-index: 13;
  padding: 0 6rem;
}
@media (max-width: 767px) {
  .c-about__inner {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 0;
    overflow: visible;
  }
}
.c-about__logomark {
  width: 38.6rem;
  height: calc(100% - 16rem);
  position: relative;
}
@media (max-width: 767px) {
  .c-about__logomark {
    width: 21.7rem;
    margin: 0 auto 3.5rem;
    height: auto;
  }
}
.c-about__logomark-img {
  position: sticky;
  top: 20rem;
  left: 0;
}
.c-about__logomark svg {
  width: 100%;
}
.c-about__logomark-img-center {
  position: absolute;
  top: 1rem;
  left: 1rem;
}
@media (max-width: 767px) {
  .c-about__logomark-img-center {
    top: 0.6rem;
    left: 0.6rem;
  }
}
.c-about__logomark-img-center svg {
  width: 36.6rem;
}
@media (max-width: 767px) {
  .c-about__logomark-img-center svg {
    width: 20.5rem;
  }
}
@media (max-width: 767px) {
  .c-about__content {
    overflow: hidden;
    position: relative;
  }
}
.c-about__logo {
  font-family: var(--primary-font);
  font-weight: bold;
  font-size: 16.8rem;
  color: #fff;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .c-about__logo {
    font-size: 12.8rem;
    right: -1.5rem;
    line-height: 1;
    top: 1rem;
  }
}
.c-about__title {
  font-size: 8rem;
  line-height: 10rem;
  margin-bottom: 10rem;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media (max-width: 767px) {
  .c-about__title {
    position: relative;
    z-index: 2;
    font-size: 4rem;
    line-height: 6rem;
    margin-bottom: 3.6rem;
  }
}
.c-about__title span {
  width: fit-content;
  display: block;
  position: relative;
  z-index: 2;
}
.c-about__title span sub {
  font-family: var(--primary-font);
  font-size: 2rem;
  font-weight: 600;
  line-height: 2.2rem;
  position: absolute;
  letter-spacing: 0;
  right: 0rem;
  top: 5rem;
  transform: translate(100%, -25%);
}
@media (max-width: 767px) {
  .c-about__title span sub {
    font-size: 1.4rem;
    line-height: 1.5rem;
    right: -1rem;
    bottom: 0.2rem;
    top: auto;
  }
  .c-about__title span sub.sub1 {
    top: 2.2rem;
    bottom: auto;
    right: -27.5rem;
  }
}
@media (max-width: 767px) {
  .c-about__title span {
    display: inline;
  }
  .c-about__title span span {
    position: relative;
    z-index: 3;
  }
}
@media print, screen and (min-width: 768px) {
  .c-about__title span .sub1 {
    right: 10rem;
    top: 5.5rem;
  }
  .c-about__title span:nth-child(1) > span {
    padding-left: 11.7rem;
    margin: -1rem 0;
  }
  .c-about__title span:nth-child(3) sub {
    right: 1rem;
  }
}
.c-about__title.is-active .c-about__title-ac1 path {
  stroke-dashoffset: 0;
}
.c-about__title.is-active .c-about__title-ac2 path {
  stroke-dashoffset: 0;
}
.c-about__title-ac1 {
  position: absolute;
  top: 9.8rem;
  left: 9.8rem;
  width: 21.7rem;
}
.c-about__title-ac1 path {
  stroke-dasharray: 600, 600;
  stroke-dashoffset: -600;
  transition: 2s;
}
@media (max-width: 767px) {
  .c-about__title-ac1 {
    top: 1rem;
    left: 13.8rem;
    width: 10.2rem;
  }
}
.c-about__title-ac2 {
  position: absolute;
  width: 41.5rem;
  bottom: -2.8rem;
  left: -3rem;
  z-index: -1;
}
.c-about__title-ac2 path {
  stroke-dasharray: 600, 600;
  stroke-dashoffset: 600;
  transition: 2s;
  transition-delay: 0.8s;
}
@media (max-width: 767px) {
  .c-about__title-ac2 {
    width: 23.3rem;
    bottom: -1.2rem;
    left: 0;
  }
}
.c-about__desc {
  font-size: 2rem;
  font-weight: bold;
  line-height: 2;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .c-about__desc {
    font-size: 1.6rem;
    line-height: 4rem;
  }
}
.c-about__desc + .c-about__desc {
  margin-top: 7rem;
}
@media (max-width: 767px) {
  .c-about__desc + .c-about__desc {
    margin-top: 4rem;
  }
}
.c-about__button {
  margin-top: 10rem;
}
@media (max-width: 767px) {
  .c-about__button {
    margin-top: 5rem;
  }
}
.c-about__band {
  overflow-x: clip;
  position: relative;
  left: -5px;
  width: calc(100% + 10px);
  left: 0;
  width: 100%;
  margin: -11rem auto -22rem;
  z-index: 3;
  background: linear-gradient(180deg, transparent 0%, transparent 50%, var(--primary-bg) 50%, var(--primary-bg) 100%);
}
@media print, screen and (min-width: 768px) {
  .c-about__band {
    position: relative;
    top: 1rem;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .c-about__band {
    left: -1.5rem;
    width: 100vw;
    margin: -7rem 0 -26rem;
    padding-bottom: 3.3rem;
  }
}
.c-about__band .band-line {
  width: 100%;
  width: 162.5rem;
  width: 192rem;
  position: relative;
  width: 114vw;
  left: -7vw;
  pointer-events: none;
}
@media (max-width: 767px) {
  .c-about__band .band-line {
    width: 66.8rem;
    left: -14rem;
  }
}
.c-about__band .band-line__catch-w {
  margin: auto;
  max-width: var(--inner);
  position: absolute;
  top: 6rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  height: 100%;
  z-index: 2;
}
@media (max-width: 767px) {
  .c-about__band .band-line__catch-w {
    width: calc(100% - 3rem);
    top: 8.5rem;
  }
}
.c-about__band .band-line__catch-w > svg {
  width: 74.5rem;
}
@media (max-width: 767px) {
  .c-about__band .band-line__catch-w > svg {
    width: 100%;
  }
}
.c-about__band.is-active .band-line {
  animation: draw 2s linear both;
}
@media (max-width: 767px) {
  .c-about__band.is-active .band-line {
    animation: draw 4s linear both;
  }
}
.c-about__band.is-active .band-line__catch {
  opacity: 1;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0px;
  }
}
.c-about__band.is-active .c-about__band-image {
  transition-delay: 1.2s;
  opacity: 1;
}
.c-about__band-image {
  rotate: 5deg;
  position: absolute;
  right: 0;
  bottom: 2rem;
  transition: 0.3s;
  opacity: 0;
}
@media (max-width: 767px) {
  .c-about__band-image {
    right: 0rem;
    bottom: 9.9rem;
  }
}
.c-about__band-image img {
  width: 28rem;
  height: 21rem;
  object-fit: cover;
}
@media (max-width: 767px) {
  .c-about__band-image img {
    width: 14rem;
    height: 10rem;
  }
}

.c-toggle-item {
  background: #fff;
  padding: 0 4rem 0;
  max-width: calc(100% - 4rem);
  position: relative;
  margin-left: auto;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .c-toggle-item {
    max-width: calc(100% - 1rem);
    padding: 0 1.5rem;
    margin-bottom: 3.5rem;
  }
}
.c-toggle-item:last-child {
  margin-bottom: 0;
}
.c-toggle-item::before {
  content: "Q";
  position: absolute;
  left: -4rem;
  top: -2rem;
  color: #fff;
  background-color: var(--black);
  border-radius: 30px;
  width: 8rem;
  height: 5rem;
  text-align: center;
  line-height: 5rem;
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 3.2rem;
}
@media (max-width: 767px) {
  .c-toggle-item::before {
    font-size: 2rem;
    left: -1rem;
    top: -1rem;
    width: 5rem;
    height: 3rem;
    line-height: 3rem;
  }
}
.c-toggle-item__title {
  font-size: 2rem;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-bottom: 2rem;
  font-weight: bold;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2215.32%22%20height%3D%229.201%22%20viewBox%3D%220%200%2015.32%209.201%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_67110%22%20data-name%3D%22%E3%83%91%E3%82%B9%2067110%22%20d%3D%22M0%2C0C.567.493%2C6.959%2C7.023%2C6.959%2C7.023l7-7.023%22%20transform%3D%22translate(0.656%200.754)%22%20fill%3D%22none%22%20stroke%3D%22%23212121%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  cursor: pointer;
  background-position: right 0 center;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .c-toggle-item__title {
    padding: 3rem 3rem 3rem 0;
    font-size: 1.6rem;
  }
}
.c-toggle-item__title.is-active {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2215.321%22%20height%3D%229.201%22%20viewBox%3D%220%200%2015.321%209.201%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_67111%22%20data-name%3D%22%E3%83%91%E3%82%B9%2067111%22%20d%3D%22M0%2C7.023C.567%2C6.531%2C6.959%2C0%2C6.959%2C0l7%2C7.023%22%20transform%3D%22translate(0.656%201.423)%22%20fill%3D%22none%22%20stroke%3D%22%23212121%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
}
.c-toggle-item__body {
  border-top: dashed 1px #919191;
  padding-left: 5.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .c-toggle-item__body {
    padding-left: 0;
  }
}
.c-toggle-item__body > p {
  padding-bottom: 2rem;
}
@media print, screen and (min-width: 768px) {
  .c-toggle-item__body > p {
    padding-top: 2rem;
  }
}
.c-toggle-item__body::before {
  content: "A";
  font-size: 3.2rem;
  font-family: var(--primary-font);
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 2rem;
  background-color: #f2b035;
  width: 3.5rem;
  height: 3.5rem;
  line-height: 3.5rem;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .c-toggle-item__body::before {
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    position: static;
    display: block;
    margin: 2rem 0 1rem;
    font-size: 2rem;
  }
}

.header {
  padding: 3rem 6rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2001;
  transition: 0.7s;
}
.header__inner {
  display: flex;
  justify-content: space-between;
}
.header__cta {
  margin-left: auto;
}
@media (max-width: 767px) {
  .header__cta {
    display: none;
  }
}
.header__logo {
  position: fixed;
  top: 3rem;
  left: 6rem;
  z-index: 3001;
  width: 35.6rem;
}
@media (max-width: 767px) {
  .header__logo {
    width: 23rem;
    top: 2rem;
    left: 1.5rem;
  }
}
.header__menu-button-wrap {
  position: relative;
  z-index: 2;
}
.header__menu {
  position: relative;
  border-radius: 3rem;
  margin-left: 2rem;
  width: 7rem;
  height: 6rem;
  background: #fff;
  border: 2px solid;
}
.header__menu::before {
  z-index: -1;
  border-radius: 3rem;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  background-color: var(--color);
}
@media (max-width: 767px) {
  .header__menu::before {
    left: 0.3rem;
    top: 0.3rem;
  }
}
.header__menu-body {
  display: none;
}
.header__menu-button {
  position: relative;
  width: 100%;
  height: 6rem;
  display: block;
  border-radius: 3rem;
  transition: 0.3s opacity;
}
.header__menu-button span {
  position: absolute;
  left: 50%;
  top: 2.2rem;
  transform: translate(-50%, -50%);
  display: block;
  margin: auto;
  width: 3rem;
  height: 3px;
  background-color: var(--color);
}
.header__menu-button span:nth-child(2) {
  left: 50%;
  top: calc(50% + 3px);
}
.header.is-active {
  top: 3rem;
  transform: none;
  position: fixed;
}
.header.is-active .header__inner {
  display: flex;
}
.header.is-active .header__menu {
  border-radius: 3rem;
  margin-left: 2rem;
  width: 7rem;
  height: 6rem;
}
.header.is-active .header__menu::before {
  display: block;
}
.header.is-active .header__menu-button {
  background-color: transparent;
}
.header.is-active .header__menu-button span {
  background-color: var(--color);
  width: 3rem;
  top: 2.2rem;
}
.header.is-active .header__menu-button span:nth-child(2) {
  top: calc(50% + 3px);
}
.header.is-active .header__cta {
  margin-bottom: 0;
}
.header.is-active .header__menu-body {
  display: none;
}

@media (max-width: 767px) {
  .header__menu {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    width: auto !important;
    height: auto !important;
    border-radius: 3rem !important;
    border: solid 2px;
  }
  .header__menu::before {
    display: block !important;
  }

  .header__menu-button {
    background-color: #fff !important;
    width: 5rem;
    height: 4.7rem;
  }

  .header__menu-button span {
    width: 2.4rem !important;
  }

  .header__menu-button span:nth-child(1) {
    top: calc(50% - 5px) !important;
  }

  .header__menu-button span:nth-child(2) {
    top: calc(50% + 5px) !important;
  }
}
.header-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fdf9f5;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f2efeb calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f2efeb calc(100% - 1px));
  background-size: 4rem 4rem;
  background-repeat: repeat;
  background-position: center center;
  z-index: 2;
  transform: translate(100%, 0);
  transition: 0.5s;
  z-index: 1000;
  overflow: hidden;
}
.header-drawer.is-open {
  transform: none;
}
.header-drawer .header__menu-button {
  border: solid 2px;
  width: 7rem;
  height: 6rem;
  position: absolute;
  top: 3rem;
  right: 6rem;
  background-color: #fff !important;
  opacity: 1 !important;
}
@media (max-width: 767px) {
  .header-drawer .header__menu-button {
    top: 1.5rem;
    right: 1.5rem;
    width: 5.2rem;
    height: 4.9rem;
  }
}
.header-drawer .header__menu-button span {
  rotate: 20deg;
  transform-origin: -50%;
}
.header-drawer .header__menu-button span:nth-child(1) {
  top: calc(50% - 0.5rem) !important;
}
.header-drawer .header__menu-button span:nth-child(2) {
  top: calc(50% - 0.5rem) !important;
  rotate: 340deg;
  transform-origin: 50%;
}
@media (max-width: 767px) {
  .header-drawer .header__menu-button span {
    left: 50%;
  }
}
.header-drawer .header__menu-button::before {
  border-radius: 3rem;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  background-color: var(--color);
  z-index: -1;
}
@media (max-width: 767px) {
  .header-drawer .header__menu-button::before {
    left: 0.3rem;
    top: 0.3rem;
  }
}
.header-drawer__row {
  display: grid;
  grid-template-columns: auto 44.5rem;
  margin-bottom: 7rem;
  padding: 14.5rem 0 0;
}
@media (max-width: 767px) {
  .header-drawer__row {
    display: flex;
    flex-direction: column-reverse;
    padding: 0 var(--gutter);
    gap: 3rem;
  }
}
.header-drawer__mark {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 87.6rem;
  height: 68rem;
  pointer-events: none;
}
@media (max-width: 1079px) {
  .header-drawer__mark {
    top: 41rem;
  }
}
@media (max-width: 767px) {
  .header-drawer__mark {
    top: auto;
    width: 51.6rem;
    height: 42rem;
    right: -15rem;
    bottom: 0rem;
  }
}
.header-drawer__left {
  max-width: 65.3rem;
  height: 55rem;
  border-radius: 40px;
  background: transparent;
  border: 5px solid #fff;
  /* Note: currently only Safari supports backdrop-filter */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.75);
  padding: 8rem 7rem;
}
@media (max-width: 767px) {
  .header-drawer__left {
    padding: 2rem;
    height: auto;
  }
}
@media (max-width: 767px) {
  .header-drawer__left .global-sublink {
    font-size: var(--font-size-xs);
  }
}
@media (max-width: 767px) {
  .header-drawer__inner {
    position: static;
    padding: 10rem 0 4rem;
    overflow: scroll;
    height: 100%;
  }
  .header-drawer__inner .global-links {
    margin-bottom: 2rem;
    font-size: var(--font-size-xs);
  }
  .header-drawer__inner .global-link {
    font-size: var(--font-size-s);
  }
}
.header-drawer__right .global-cta {
  background-color: transparent;
  border-radius: 40px;
  background: #fff;
  border: 5px solid #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.75);
}
.header-drawer__logos {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
@media (max-width: 767px) {
  .header-drawer__logos {
    top: 0;
  }
}
.header-drawer__logos > img {
  width: 16.5rem;
  position: absolute;
  transition: transform 0.3s linear 0s;
}
@media (max-width: 767px) {
  .header-drawer__logos > img {
    width: 8.775rem;
  }
}
.header-drawer__logos > img:nth-child(1) {
  transition: transform 0.4s linear 0s;
  rotate: 21deg;
  top: 4.3rem;
  right: 48.5rem;
}
@media (max-width: 767px) {
  .header-drawer__logos > img:nth-child(1) {
    top: 8.2rem;
    right: auto;
  }
}
.header-drawer__logos > img:nth-child(2) {
  transition: transform 0.5s linear 0s;
  top: 11.4rem;
  right: 27rem;
}
@media (max-width: 767px) {
  .header-drawer__logos > img:nth-child(2) {
    top: 8.5rem;
    right: 10.4rem;
  }
}
.header-drawer__logos > img:nth-child(3) {
  transition: transform 0.6s linear 0s;
  rotate: -6deg;
  top: 25.5rem;
  right: 6rem;
}
.header-drawer__logos > img:nth-child(4) {
  transition: transform 0.7s linear 0s;
  rotate: -7deg;
  top: 33.6rem;
  right: 44.5rem;
}
@media (max-width: 767px) {
  .header-drawer__logos > img:nth-child(4) {
    right: auto;
    left: 4rem;
    top: 40rem;
  }
}
.header-drawer__logos > img:nth-child(5) {
  transition: transform 0.8s linear 0s;
  rotate: 16deg;
  bottom: 12.5rem;
  right: 12rem;
}
@media (max-width: 1079px) {
  .header-drawer__logos > img:nth-child(5) {
    top: 51rem;
  }
}
@media (max-width: 767px) {
  .header-drawer__logos > img:nth-child(5) {
    right: 5rem;
    top: 44rem;
  }
}
.header-drawer__logos > img:nth-child(6) {
  transition: transform 0.9s linear 0s;
  rotate: 6deg;
  bottom: 0.3rem;
  right: 64.5rem;
}
@media (max-width: 1079px) {
  .header-drawer__logos > img:nth-child(6) {
    top: 61rem;
  }
}
@media (max-width: 767px) {
  .header-drawer__logos > img:nth-child(6) {
    right: auto;
    top: 61rem;
    left: 0.2rem;
    bottom: auto;
  }
}
.header-drawer__logos > img:nth-child(7) {
  transition: transform 1s linear 0s;
  rotate: -6deg;
  bottom: 1.4rem;
  right: 33rem;
}
@media (max-width: 1079px) {
  .header-drawer__logos > img:nth-child(7) {
    top: 65rem;
  }
}
@media (max-width: 767px) {
  .header-drawer__logos > img:nth-child(7) {
    left: 14rem;
    top: 65rem;
  }
}

.footer {
  border-radius: 20rem 20rem 0px 0px;
  outline: 5px solid #fff;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background-color: rgba(255, 255, 255, 0.04);
  position: relative;
  padding-bottom: 6rem;
}
@media (max-width: 767px) {
  .footer {
    border-radius: 7rem 7rem 0 0;
    border-bottom: 0;
    padding-bottom: 8.2rem;
  }
}
.footer__inner {
  position: relative;
  height: 100%;
  padding: 7rem 0 0;
}
@media (max-width: 767px) {
  .footer__inner {
    overflow: visible;
    padding: 5rem 1.5rem 0;
  }
}
.footer__row {
  display: grid;
  grid-template-columns: auto 44.5rem;
  margin-bottom: 7rem;
  padding: 0 6rem;
}
@media (max-width: 767px) {
  .footer__row {
    display: flex;
    flex-direction: column-reverse;
    padding: 0 0;
  }
}
.footer__left {
  padding: 3.5rem 0 0;
}
.footer__logo {
  width: 100%;
  padding: 0 6rem;
  margin: auto;
  overflow: hidden;
  align-items: end;
}
@media (max-width: 767px) {
  .footer__logo {
    margin: 0 auto;
    padding: 0 1.5rem;
  }
}
.footer__logo svg {
  width: 100%;
}
.footer__logo .footer-logo-c {
  transition: all 1.6s 0s cubic-bezier(0.43, 0.195, 0.02, 1);
  transform: translateY(-150%);
}
.footer__logo .footer-logo-c--2 {
  transition-delay: 0.05s;
}
.footer__logo .footer-logo-c--3 {
  transition-delay: 0.1s;
}
.footer__logo .footer-logo-c--4 {
  transition-delay: 0.15s;
}
.footer__logo .footer-logo-c--5 {
  transition-delay: 0.2s;
}
.footer__logo .footer-logo-c--6 {
  transition-delay: 0.25s;
}
.footer__logo .footer-logo-c--7 {
  transition-delay: 0.3s;
}
.footer__logo .footer-logo-c--8 {
  transition-delay: 0.35s;
}
.footer__logo .footer-logo-c--9 {
  transition-delay: 0.4s;
}
.footer__logo .footer-logo-c--10 {
  transition-delay: 0.45s;
}
.footer__logo .footer-logo-c--11 {
  transition-delay: 0.5s;
}
.footer__logo.is-active .footer-logo-c {
  transform: none;
}
.footer__bottom-row {
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 6rem;
  font-size: var(--font-size-s);
}
@media (max-width: 767px) {
  .footer__bottom-row {
    display: block;
    padding: 0 1.5rem;
    font-size: var(--font-size-xs);
  }
}
.footer__copyright {
  color: var(--gray);
}
@media (max-width: 767px) {
  .footer__copyright {
    text-align: right;
    position: absolute;
    right: 1.5rem;
    bottom: 5rem;
  }
}
.footer__pagetop {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  display: flex;
  gap: 1rem;
  position: absolute;
  right: 0;
  top: 18rem;
  font-family: var(--primary-font);
}
@media (max-width: 767px) {
  .footer__pagetop {
    display: none;
  }
}
.footer__pagetop img {
  transition: 0.4s;
}
.footer__pagetop:hover img {
  transform: translate(0, -5px);
}

.global-cta {
  background-color: #fff;
  border-radius: 2rem;
  padding: 2.5rem 3rem;
}
@media (max-width: 767px) {
  .global-cta {
    padding: 2rem;
  }
}
.global-cta-title {
  font-size: 7.2rem;
  font-family: var(--primary-font);
}
@media (max-width: 767px) {
  .global-cta-title {
    font-size: 5.6rem;
  }
}
.global-cta-title span:nth-child(1) {
  color: #F26695;
}
.global-cta-title span:nth-child(2) {
  color: #09CCEA;
}
.global-cta-title span:nth-child(3) {
  color: #36BFB8;
}
.global-cta-title span:nth-child(4) {
  color: #F2B035;
}
.global-cta-title span:nth-child(5) {
  color: #FB6458;
}
.global-cta-title span:nth-child(6) {
  color: #8EC641;
}
.global-cta-title span:nth-child(7) {
  color: #09CCEA;
}
.global-cta-desc {
  font-size: var(--font-size-s);
  margin-bottom: 3rem;
}
.global-cta-button {
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .global-cta-button {
    margin-bottom: 1.5rem;
  }
}

.global-cta-tel {
  align-items: center;
  font-size: 1.2rem;
  white-space: nowrap;
  display: grid;
  grid-template-columns: 5rem repeat(2, auto);
}
@media (max-width: 767px) {
  .global-cta-tel {
    grid-template-columns: 3.1rem repeat(2, auto);
  }
}
.global-cta-tel-no {
  font-size: 4rem;
  white-space: nowrap;
  font-family: var(--primary-font);
  margin: 0 1.5rem 0 1rem;
}
@media (max-width: 767px) {
  .global-cta-tel-no {
    font-size: 2.8rem;
  }
}

.global-links {
  max-width: 51.5rem;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 3rem 7rem;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .global-links {
    max-width: 100%;
    gap: 1.5rem 2.5rem;
    margin-bottom: 3.5rem;
  }
}

.global-link {
  font-size: var(--font-size-l);
  font-weight: bold;
}
@media (max-width: 767px) {
  .global-link {
    font-size: var(--font-size-base);
    white-space: nowrap;
  }
}
.global-link::before {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  border: solid 2px var(--color);
  background-color: #fff;
  display: inline-block;
  transform: rotate(45deg);
  margin-right: 1rem;
}
@media (max-width: 767px) {
  .global-link::before {
    width: 1rem;
    height: 1rem;
    border-width: 1px;
  }
}

.global-sublinks {
  display: flex;
  gap: 3.5rem;
}
@media (max-width: 767px) {
  .global-sublinks {
    gap: 2.5rem;
  }
}

.global-sublink {
  color: var(--gray);
  padding-bottom: 0.25rem;
  border-bottom: 1px solid;
}
@media (max-width: 767px) {
  .global-sublink {
    font-size: var(--font-size-s);
  }
}
.global-sublink-icon {
  width: 1.2rem;
  height: 1.2rem;
}

