@charset "UTF-8";
/*************************************************
common-style
*************************************************/
* {
  box-sizing: border-box;
}

.ie_ObjectFit {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
  /* Font stack: Nunito Sans -> YakuHanJP -> Zen Kaku Gothic New */
  font-family: "Nunito Sans", YakuHanJP, "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  min-height: 100dvh;
  background-color: #FCF5F6;
  color: #0D0001;
  font-size: 1.6rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body img {
  width: 100%;
  height: auto;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

.contents__inner {
  width: 100%;
  max-width: 1440px;
  padding: 0 60px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .contents__inner {
    padding: 0 20px;
  }
}
.contents__title {
  font-weight: 400;
  font-size: 9.6rem;
  line-height: 1;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 599px) {
  .contents__title {
    font-size: 6.4rem;
  }
}
.contents__title-sub {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0.05em;
}
@media screen and (max-width: 599px) {
  .contents__title-sub {
    font-size: 1.6rem;
  }
}

.swiper-pagination_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  /* 前後ボタンのスタイル */
  /* ページネーションドットのスタイル */
}
.swiper-pagination_wrap .swiper-button-prev,
.swiper-pagination_wrap .swiper-button-next {
  width: 40px;
  height: 40px;
  background: url("../images/icon_slide_arrow.png") no-repeat center/contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.swiper-pagination_wrap .swiper-button-prev:hover,
.swiper-pagination_wrap .swiper-button-next:hover {
  transform: scale(1.1);
}
.swiper-pagination_wrap .swiper-button-prev.swiper-button-disabled,
.swiper-pagination_wrap .swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.swiper-pagination_wrap .swiper-button-prev.swiper-button-disabled:hover,
.swiper-pagination_wrap .swiper-button-next.swiper-button-disabled:hover {
  transform: none;
}
.swiper-pagination_wrap .swiper-button-prev .swiper-navigation-icon,
.swiper-pagination_wrap .swiper-button-next .swiper-navigation-icon {
  display: none;
}
.swiper-pagination_wrap .swiper-button-prev {
  transform: rotate(180deg);
}
.swiper-pagination_wrap .swiper-button-prev:hover {
  transform: rotate(180deg) scale(1.1);
}
.swiper-pagination_wrap .swiper-button-prev.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.swiper-pagination_wrap .swiper-button-prev.swiper-button-disabled:hover {
  transform: rotate(180deg);
}
.swiper-pagination_wrap .swiper-pagination {
  display: flex;
  gap: 8px;
}
.swiper-pagination_wrap .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #E5E5E5;
  border-radius: 50%;
  cursor: pointer;
}
.swiper-pagination_wrap .swiper-pagination .swiper-pagination-bullet-active {
  background: #E60012;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideToLeft {
  from {
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  to {
    left: calc(50% - 240px);
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes slideToRight {
  from {
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
  }
  to {
    left: calc(50% + 241px);
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes slideToTopLeft {
  from {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  to {
    left: 35%;
    top: 35%;
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes slideToBottomRight {
  from {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
  }
  to {
    left: 65%;
    top: 65%;
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.fadeIn {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fadeIn.active {
  opacity: 1;
  transform: translateY(0);
}

.fadeIn_left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fadeIn_left.active {
  opacity: 1;
  transform: translateX(0);
}

.fadeIn_right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fadeIn_right.active {
  opacity: 1;
  transform: translateX(0);
}

.fadeIn_up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fadeIn_up.active {
  opacity: 1;
  transform: translateY(0);
}

.fadeIn_down {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fadeIn_down.active {
  opacity: 1;
  transform: translateY(0);
}

.fadeIn_zoom {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fadeIn_zoom.active {
  opacity: 1;
  animation: fadeInZoomAnim 0.8s ease forwards;
}

@keyframes fadeInZoomAnim {
  0% {
    transform: scale(0) translateY(30px);
  }
  80% {
    transform: scale(1.1) translateY(0);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}
.fadeIn--delay-1,
.fadeIn_left--delay-1,
.fadeIn_right--delay-1,
.fadeIn_up--delay-1,
.fadeIn_down--delay-1 {
  transition-delay: 0.2s;
}

.fadeIn--delay-2,
.fadeIn_left--delay-2,
.fadeIn_right--delay-2,
.fadeIn_up--delay-2,
.fadeIn_down--delay-2 {
  transition-delay: 0.4s;
}

.fadeIn--delay-3,
.fadeIn_left--delay-3,
.fadeIn_right--delay-3,
.fadeIn_up--delay-3,
.fadeIn_down--delay-3 {
  transition-delay: 0.6s;
}

.fadeIn--delay-4,
.fadeIn_left--delay-4,
.fadeIn_right--delay-4,
.fadeIn_up--delay-4,
.fadeIn_down--delay-4 {
  transition-delay: 0.8s;
}

.fadeIn--delay-5,
.fadeIn_left--delay-5,
.fadeIn_right--delay-5,
.fadeIn_up--delay-5,
.fadeIn_down--delay-5 {
  transition-delay: 1s;
}

.fadeIn--delay-6,
.fadeIn_left--delay-6,
.fadeIn_right--delay-6,
.fadeIn_up--delay-6,
.fadeIn_down--delay-6 {
  transition-delay: 1.2s;
}

@media (prefers-reduced-motion: reduce) {
  .fadeIn,
  .fadeIn_left,
  .fadeIn_right,
  .fadeIn_up,
  .fadeIn_down {
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}
.contents__title-wrap--stagger .contents__title,
hgroup.heading--stagger .contents__title {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.contents__title-wrap--stagger .contents__title-sub,
hgroup.heading--stagger .contents__title-sub {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}
.contents__title-wrap--stagger.active .contents__title,
.contents__title-wrap--stagger.active .contents__title-sub,
hgroup.heading--stagger.active .contents__title,
hgroup.heading--stagger.active .contents__title-sub {
  opacity: 1;
  transform: translateX(0);
}

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

.u-pc-inlineblock {
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .u-pc-inlineblock {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 599px) {
  .u-sp {
    display: block;
  }
}

.u-sp-inlineblock {
  display: none;
}
@media screen and (max-width: 599px) {
  .u-sp-inlineblock {
    display: inline-block;
  }
}

.u-sp-inline {
  display: none;
}
@media screen and (max-width: 599px) {
  .u-sp-inline {
    display: inline;
  }
}

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

/*************************************************
header
*************************************************/
#fadeLayer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  z-index: 501;
  pointer-events: none;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#fadeLayer.active {
  opacity: 1;
  visibility: visible;
}

.header {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  opacity: 0;
  transform: translateY(-20px);
}
@media screen and (max-width: 1024px) {
  .header {
    height: 80px;
  }
}
@media screen and (max-width: 599px) {
  .header {
    padding: 0 12px;
  }
}
.header.is-visible {
  animation: fadeInDown 0.8s ease forwards;
  animation-delay: 2s;
}
.header__logo a {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: opacity 0.3s;
}
.header__logo a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 599px) {
  .header__logo a {
    flex-direction: column;
    align-items: start;
    gap: 5px;
  }
}
.header__logo img {
  width: auto;
  height: 34px;
}
@media screen and (max-width: 599px) {
  .header__logo img {
    height: 24px;
  }
}
.header__logo-text {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media screen and (max-width: 599px) {
  .header__logo-text {
    font-size: 1.1rem;
    font-weight: 600;
  }
}
.header__nav {
  background-color: #FFECEC;
  border-radius: 9999px;
  min-height: 52px;
  padding: 5px 6px 5px 24px;
  box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 1279px) {
  .header__nav {
    display: none;
  }
}
.header__nav > ul {
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
}
.header__nav-submenu {
  position: absolute;
  width: 440px;
  background: #FFECEC;
  padding: 24px;
  border-radius: 10px;
  left: 0;
  top: 40px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.header__nav-submenu.focused {
  opacity: 1;
  visibility: visible;
}
.header__nav-submenu .en {
  font-size: 1.1rem;
  font-weight: 700;
  color: #E60012;
  margin-bottom: 5px;
}
.header__nav-submenu .submenu__wrap {
  border-top: 1px solid #E60012;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
}
.header__nav-submenu .submenu__wrap figure {
  width: 42%;
  height: auto;
}
.header__nav-submenu .submenu__wrap figure img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.header__nav-submenu a {
  display: block;
  padding: 6px 15px 6px 25px;
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
}
.header__nav-submenu a::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("../images/icon_arrow_black.svg") no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}
.header__nav-submenu a:hover::before {
  transform: translate(5px, -50%);
}
.header__nav-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 5px;
}
.header__nav .menu-item-has-children:hover .header__nav-submenu {
  opacity: 1;
  visibility: visible;
}
.header__nav-item {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  display: block;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
  cursor: default;
}
.header__nav-item::after {
  content: "";
  width: 100%;
  height: 32px;
  display: block;
  background: linear-gradient(90deg, #F55C76 0%, #F93658 24.62%, #F95661 49.57%, #F98673 74.52%, #F49E8F 100%);
  border-radius: 9999px;
  filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(0);
  transition: opacity 0.6s, visibility 0.6s;
  z-index: -1;
}
.header__nav-item:hover {
  color: #fff;
}
.header__nav-item:hover::after {
  opacity: 1;
  visibility: visible;
}
.header__nav-item--special {
  position: relative;
}
.header__nav-item--special::before {
  content: "Special";
  position: absolute;
  top: -2em;
  left: 50%;
  transform: translateX(-50%);
  background-color: #E60012;
  color: #fff;
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 10px;
  white-space: nowrap;
}
.header__cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.header__cta-button {
  display: flex;
  align-items: center;
  gap: 3px;
  min-width: 150px;
  height: 40px;
  padding: 0 6px;
  border-radius: 9999px;
  font-size: 1.4rem;
  font-weight: 700;
  white-space: nowrap;
  grid-area: 1/1;
  transition: all 0.3s;
}
.header__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 8px 0 rgba(251, 203, 83, 0.1), 0 0 8px 0 rgba(230, 0, 18, 0.1);
}
.header__cta-button img {
  width: 24px;
  height: 24px;
}
.header__cta-button--line {
  background-color: #06C755;
  color: #fff;
}
.header__cta-button--wantedly {
  background-color: #0D0001;
  color: #fff;
}
.header__cta-button--wantedly img {
  width: 30px;
}
.header__hammenu {
  display: none;
}
@media screen and (max-width: 1279px) {
  .header__hammenu {
    display: block;
  }
}
.header__hammenu .button {
  position: fixed;
  top: 18px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #CC0010;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 1000;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.header__hammenu .line-box {
  position: relative;
  width: 16px;
  height: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.header__hammenu .line {
  position: absolute;
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
  transition: transform 0.3s ease, background-color 0.3s ease;
  left: 0;
}
.header__hammenu .open-button .line:first-child {
  top: 0;
  transform: translateY(0);
}
.header__hammenu .open-button .line:last-child {
  bottom: 0;
  transform: translateY(0);
}
.header__hammenu .close-button {
  background-color: #fff;
}
.header__hammenu .close-button .line {
  background-color: #E60012;
  top: 50%;
}
.header__hammenu .close-button .line:first-child {
  transform: translateY(-50%) rotate(45deg);
}
.header__hammenu .close-button .line:last-child {
  transform: translateY(-50%) rotate(-45deg);
}
.header__hammenu .dialog {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #E60012 0%, #FFECEC 100%);
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
  z-index: 9999;
  max-width: 100%;
  max-height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}
.header__hammenu .dialog:not(.-open) {
  opacity: 0;
}
.header__hammenu .dialog__bg {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(960px, 104.1666666667vw, 4000px);
  height: clamp(960px, 104.1666666667vw, 4000px);
  border-radius: 50%;
  background: url("../images/bg_gradient.png") no-repeat center/cover;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  .header__hammenu .dialog__bg {
    width: clamp(500px, 179.4871794872vw, 1000px);
    height: clamp(500px, 179.4871794872vw, 1000px);
  }
}
.header__hammenu .dialog__inner {
  max-width: 1080px;
  margin: 200px auto;
  padding: 0 40px;
}
@media screen and (max-width: 599px) {
  .header__hammenu .dialog__inner {
    margin: 120px auto;
  }
}
.header__hammenu .dialog__logo {
  position: absolute;
  left: 12px;
  top: 18px;
}
.header__hammenu .dialog__logo a {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: opacity 0.3s;
}
.header__hammenu .dialog__logo a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 599px) {
  .header__hammenu .dialog__logo a {
    flex-direction: column;
    align-items: start;
    gap: 5px;
  }
}
.header__hammenu .dialog__logo img {
  width: auto;
  height: 34px;
}
@media screen and (max-width: 599px) {
  .header__hammenu .dialog__logo img {
    height: 24px;
  }
}
.header__hammenu .dialog__logo-text {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #fff;
}
@media screen and (max-width: 599px) {
  .header__hammenu .dialog__logo-text {
    font-size: 1.1rem;
    font-weight: 600;
  }
}
.header__hammenu .dialog__nav-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, auto));
  gap: 40px 60px;
}
@media screen and (max-width: 599px) {
  .header__hammenu .dialog__nav-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.header__hammenu .dialog__nav-group {
  border-top: 1px solid #FFECEC;
  padding: 0 5px;
}
.header__hammenu .dialog__nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0;
  color: #fff;
}
.header__hammenu .dialog__nav-title {
  font-size: 2rem;
  font-weight: 700;
}
.header__hammenu .dialog__nav-en {
  font-size: 1.2rem;
  font-weight: 500;
}
.header__hammenu .dialog__nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFECEC;
}
.header__hammenu .dialog__nav-list li {
  padding-left: 25px;
  position: relative;
}
.header__hammenu .dialog__nav-list li::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url("../images/icon_arrow_white.svg") no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(90deg);
}
.header__hammenu .dialog__company {
  margin-top: 140px;
  color: #fff;
}
@media screen and (max-width: 599px) {
  .header__hammenu .dialog__company {
    margin-top: 80px;
  }
}
.header__hammenu .dialog__company-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.header__hammenu .dialog__company-address {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.6;
}
.header__hammenu .dialog__company-link {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: 6%;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.header__hammenu .dialog__company-linkicon {
  width: 18px;
  height: 18px;
}
.header__hammenu :focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

/*************************************************
footer
*************************************************/
.footer {
  width: 100%;
  background: #0D0001 url("../images/bg_footer.png") no-repeat center/cover;
  padding: 120px 60px 60px 120px;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 100px 20px 30px;
    background-position: right -300px center;
  }
}
@media screen and (max-width: 599px) {
  .footer {
    padding: 80px 20px 30px;
  }
}
.footer__container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, auto));
  grid-template-rows: auto auto;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .footer__container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 60px;
  }
}
.footer__logo {
  text-align: center;
}
.footer__logo-img {
  width: auto;
  height: 50px;
}
@media screen and (max-width: 599px) {
  .footer__logo-img {
    height: 45px;
  }
}
.footer__logo-sitetitle {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 15px;
  color: #fff;
}
.footer__company {
  margin-top: 140px;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .footer__company {
    margin-top: 0;
  }
}
.footer__company-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.footer__company-address {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.6;
}
.footer__company-link {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: 6%;
  text-underline-offset: auto;
  text-underline-position: from-font;
  transition: all 0.3s;
}
.footer__company-link:hover {
  opacity: 0.7;
}
.footer__company-linkicon {
  width: 18px;
  height: 18px;
}
.footer__copyright {
  margin-top: 20px;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
}
.footer__col--lefttop {
  grid-column: 1/2;
  grid-row: 1/2;
}
.footer__col--leftbottom {
  grid-column: 1/2;
  grid-row: 2/3;
}
@media screen and (max-width: 1024px) {
  .footer__col--leftbottom {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
.footer__col--right {
  grid-column: 2/3;
  grid-row: 1/3;
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, auto));
  gap: 40px 60px;
}
@media screen and (max-width: 1024px) {
  .footer__col--right {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
@media screen and (max-width: 599px) {
  .footer__col--right {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.footer__nav-group {
  border-top: 1px solid #FFECEC;
  padding: 0 5px;
}
.footer__nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0;
  color: #fff;
}
.footer__nav-title {
  font-size: 2rem;
  font-weight: 700;
}
.footer__nav-en {
  font-size: 1.2rem;
  font-weight: 500;
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFECEC;
}
.footer__nav-list li {
  padding-left: 25px;
  position: relative;
  transition: all 0.3s;
}
.footer__nav-list li::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url("../images/icon_arrow_white.svg") no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(90deg);
  transition: all 0.3s;
}
.footer__nav-list li:hover::before {
  left: 3px;
}
.footer__pagetop {
  margin-top: 140px;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 3px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .footer__pagetop {
    margin-top: 40px;
  }
}
.footer__pagetop-icon {
  width: 32px;
  height: 32px;
}
.footer__pagetop:hover {
  transform: translateY(-3px);
}

/*************************************************
top
*************************************************/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 1;
  transition: opacity 0.6s ease;
}
.loading.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.loading__circle {
  width: clamp(540px, 39.3055555556vw, 1000px);
  height: clamp(540px, 39.3055555556vw, 1000px);
  border-radius: 50%;
  background: linear-gradient(135deg, #E60012 0%, #FF9F9F 50%, #FBCB53 100%);
  position: relative;
  z-index: 1;
  animation: rotate 10s linear infinite;
}
.loading__circle::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: url("../images/bg_gradient.webp") no-repeat center/cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  .loading__circle {
    width: 350px;
    height: 350px;
    max-width: 500px;
    max-height: 500px;
  }
}
.loading__text {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: clamp(211px, 14.6527777778vw, 1000px);
  height: clamp(310px, 21.5277777778vw, 1000px);
}
@media screen and (max-width: 599px) {
  .loading__text {
    right: 12px;
    bottom: 12px;
    width: 130px;
    height: 190px;
  }
}

.mainview {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  overflow: hidden;
}
.mainview.is-loading {
  opacity: 0;
}
.mainview.is-visible {
  opacity: 1;
  transition: opacity 0.3s ease;
}
.mainview__concept {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 12rem;
  line-height: 1.35;
  letter-spacing: -0.05em;
  color: #FFECEC;
  white-space: nowrap;
  opacity: 0;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.mainview__concept span {
  display: block;
}
@media screen and (max-width: 1024px) {
  .mainview__concept {
    font-size: 9.6rem;
    flex-direction: column;
    gap: 0;
  }
  .mainview__concept span:nth-child(2) {
    margin-top: -20px;
    margin-left: auto;
    text-align: right;
  }
}
@media screen and (max-width: 599px) {
  .mainview__concept {
    font-size: 5.4rem;
  }
}
.mainview.is-visible .mainview__concept {
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 2s;
}
.mainview__circle-left {
  position: absolute;
  left: 50%;
  top: calc(50% + 19px);
  transform: translate(-50%, -50%);
  z-index: 1;
  width: clamp(540px, 39.3055555556vw, 1000px);
  height: clamp(540px, 39.3055555556vw, 1000px);
  border-radius: 50%;
  background: url("../images/bg_gradient.webp") no-repeat center/cover;
  overflow: hidden;
  box-shadow: 0px 4px 40px rgba(13, 0, 1, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding-left: 4.8rem;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .mainview__circle-left {
    left: 50%;
    top: 50%;
    padding-left: 3rem;
    gap: 15px;
  }
}
@media screen and (max-width: 599px) {
  .mainview__circle-left {
    width: 350px;
    height: 350px;
    padding-left: 65px;
  }
}
.mainview.is-visible .mainview__circle-left {
  animation: slideToLeft 1s ease forwards;
  animation-delay: 0.5s;
}
@media screen and (max-width: 1024px) {
  .mainview.is-visible .mainview__circle-left {
    animation: slideToTopLeft 1s ease forwards;
    animation-delay: 0.5s;
  }
}
.mainview__catch {
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
  color: #fff;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .mainview__catch {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 599px) {
  .mainview__catch {
    font-size: 2.4rem;
  }
}
.mainview.is-visible .mainview__catch {
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 1.8s;
}
.mainview__catch span {
  display: block;
}
.mainview__description {
  color: #fff;
  font-size: 1.6rem;
  opacity: 0;
}
@media screen and (max-width: 599px) {
  .mainview__description {
    font-size: 1.3rem;
  }
}
.mainview.is-visible .mainview__description {
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 2s;
}
.mainview__description p {
  font-weight: 700;
  line-height: 1.6;
}
.mainview__collage {
  position: absolute;
  left: 50%;
  top: calc(50% + 19px);
  transform: translate(-50%, -50%);
  width: clamp(540px, 39.3055555556vw, 1000px);
  height: clamp(540px, 39.3055555556vw, 1000px);
  border-radius: 50%;
  overflow: hidden;
  background-color: #FFECEC;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .mainview__collage {
    left: 50%;
    top: 50%;
  }
}
@media screen and (max-width: 599px) {
  .mainview__collage {
    width: 350px;
    height: 350px;
  }
}
.mainview.is-visible .mainview__collage {
  animation: slideToRight 1s ease forwards;
  animation-delay: 0.5s;
}
@media screen and (max-width: 1024px) {
  .mainview.is-visible .mainview__collage {
    animation: slideToBottomRight 1s ease forwards;
    animation-delay: 0.5s;
  }
}
.mainview__collage-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  opacity: 0;
}
.mainview.is-visible .mainview__collage-container {
  animation: fadeIn 0.6s ease forwards;
  animation-delay: 2s;
}
.mainview__collage-row {
  flex: 1;
  overflow: hidden;
  width: 100%;
}
.mainview__collage-row.swiper {
  width: 100%;
  height: 100%;
}
.mainview__collage-row .swiper-wrapper {
  transition-timing-function: linear !important;
  height: 100%;
}
.mainview__collage-row .swiper-slide {
  width: auto !important;
  height: 100%;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  min-width: 0;
}
.mainview__collage-row .swiper-slide img {
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.about {
  position: relative;
  width: 100%;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #E60012 0%, #FFECEC 100%);
}
@media screen and (max-width: 599px) {
  .about {
    min-height: 0;
  }
}
.about__bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(960px, 76.3888888889vw, 1500px);
  height: clamp(960px, 76.3888888889vw, 1500px);
  border-radius: 50%;
  background: url("../images/bg_gradient.png") no-repeat center/cover;
  z-index: 0;
}
@media screen and (max-width: 599px) {
  .about__bg {
    width: clamp(500px, 179.4871794872vw, 1000px);
    height: clamp(500px, 179.4871794872vw, 1000px);
  }
}
.about__inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 599px) {
  .about__inner {
    padding: 120px 20px;
  }
}
.about__title {
  font-weight: 700;
  font-size: 4.8rem;
  line-height: 1;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .about__title {
    font-size: 3.2rem;
    line-height: 1.5;
  }
}
.about__paragraph {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  text-align: left;
}
@media screen and (max-width: 599px) {
  .about__paragraph {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
.about__paragraph:last-of-type {
  margin-bottom: 0;
}

.service {
  width: 100%;
  margin: 120px 0;
  /* Brands list */
}
@media screen and (max-width: 599px) {
  .service {
    margin: 80px 0;
  }
}
.service__inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: start;
}
@media screen and (max-width: 1024px) {
  .service__inner {
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 599px) {
  .service__inner {
    align-items: start;
  }
}
.service__copy {
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.6;
  margin: 50px 0 40px;
}
@media screen and (max-width: 599px) {
  .service__copy {
    font-size: 2.4rem;
    margin: 40px 0 24px;
  }
}
.service__text {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 599px) {
  .service__text {
    font-size: 1.5rem;
  }
}
.service__text p {
  margin-bottom: 1.2em;
}
.service__diagram {
  width: 580px;
  height: auto;
}
@media screen and (max-width: 599px) {
  .service__diagram {
    width: 100%;
  }
}
.service__brands {
  margin-top: 100px;
  overflow: hidden;
}
.service__brand-heading {
  width: 100%;
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 30px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.service__brand-heading::after {
  content: "";
  display: block;
  flex-grow: 1;
  height: 1px;
  background-color: #E60012;
}
.service__brand-slider:not(.swiper-initialized) .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .service__brand-slider {
    overflow: visible;
  }
}
.service__brand-media {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  min-width: 0;
  position: relative;
}
.service__brand-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.service__brand-media::after {
  content: "";
  display: block;
  width: 120px;
  height: 120px;
  background: url("../images/icon_brand_tsukurioki_01.png") no-repeat center/contain;
  position: absolute;
  bottom: -20px;
  left: 8px;
}
.service__brand-media.tsukurioki::after {
  background-image: url("../images/icon_brand_tsukurioki_01.png");
}
.service__brand-media.kcal100::after {
  background-image: url("../images/icon_brand_100_01.png");
}
.service__brand-media.home::after {
  background-image: url("../images/icon_brand_home_01.png");
}
.service__brand-body {
  padding: 40px 12px 0;
}
.service__brand-title {
  font-weight: 700;
  font-size: 2rem;
  margin: 0 0 10px 0;
}
.service__brand-desc {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.service__brand-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0D0001;
  color: #fff;
  padding: 8px 10px;
  border-radius: 3px;
  font-size: 1.3rem;
  font-weight: 700;
  transition: all 0.3s;
}
.service__brand-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 8px 0 rgba(251, 203, 83, 0.1), 0 0 8px 0 rgba(230, 0, 18, 0.1);
}
.service .swiper-pagination_wrap {
  display: none;
}
@media screen and (max-width: 1024px) {
  .service .swiper-pagination_wrap {
    display: flex;
  }
}

.message {
  width: 100%;
  margin: 160px 0;
}
@media screen and (max-width: 599px) {
  .message {
    margin: 80px 0 100px;
  }
}
.message__container {
  width: 100%;
  background: #FFECEC url("../images/noise-pink.png") repeat center/auto;
  border-radius: 20px;
  padding: 60px;
  display: flex;
  align-items: center;
  gap: 80px;
}
@media screen and (max-width: 1024px) {
  .message__container {
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .message__container {
    border-radius: 10px;
    padding: 40px 20px;
  }
}
.message__figure {
  position: relative;
  z-index: 1;
  margin-left: 50px;
  margin-bottom: 100px;
  width: 480px;
  flex-shrink: 0;
}
@media screen and (max-width: 599px) {
  .message__figure {
    margin-left: 0;
    margin-bottom: 60px;
    width: 100%;
  }
}
.message__figure-img {
  width: 300px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .message__figure-img {
    width: clamp(180px, 53.8461538462vw, 500px);
    height: clamp(180px, 53.8461538462vw, 500px);
  }
}
.message__figure__small {
  position: absolute;
  right: 20px;
  bottom: -60px;
  z-index: -1;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: url("../images/bg_gradient.png") no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  .message__figure__small {
    width: clamp(120px, 33.3333333333vw, 300px);
    height: clamp(120px, 33.3333333333vw, 300px);
  }
}
.message__figure__small .label {
  text-align: center;
  color: #fff;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  .message__figure__small .label {
    font-size: 1.4rem;
  }
}
.message__figure__small .label span {
  font-size: 1.3rem;
}
@media screen and (max-width: 599px) {
  .message__figure__small .label span {
    font-size: 1.2rem;
  }
}
.message__heading {
  flex-shrink: 1;
}
.message .contents__title {
  font-size: 6.4rem;
}
@media screen and (max-width: 599px) {
  .message .contents__title {
    font-size: 4.8rem;
  }
}
.message__copy {
  margin-top: 30px;
  font-size: 1.5rem;
  line-height: 1.8;
}
@media screen and (max-width: 599px) {
  .message__copy {
    margin-top: 20px;
    font-size: 1.4rem;
  }
}
.message__copy p {
  margin-bottom: 1.2em;
}
.message__copy p:last-child {
  margin-bottom: 0;
}

.data {
  position: relative;
  width: 100%;
  padding: 80px 0 100px;
  background-color: #fff;
}
@media screen and (max-width: 599px) {
  .data {
    padding: 60px 0 74px;
  }
}
.data__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 60px;
}
.data__card {
  grid-column: span 2;
  background-image: url("../images/noise-pink.png"), linear-gradient(100deg, #FFEBEE 0%, #FFEFF0 50%, #fbf4e8 65%, #FFF2F3 100%);
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-position: center, center;
  border-radius: 3px;
  padding: 20px;
  position: relative;
  box-shadow: 0 0.4rem 1rem rgba(134, 128, 128, 0.08);
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .data__card {
    grid-column: span 3;
  }
}
@media screen and (max-width: 599px) {
  .data__card {
    padding: 10px;
    min-height: 214px;
  }
}
.data__card--large {
  height: 280px;
}
@media screen and (max-width: 599px) {
  .data__card--large {
    height: 214px;
  }
}
.data__card--xlarge {
  grid-column: span 3;
  min-height: 600px;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .data__card--xlarge {
    grid-column: span 6;
    min-height: 500px;
  }
}
@media screen and (max-width: 599px) {
  .data__card--xlarge {
    min-height: 450px;
  }
}
.data__label {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  padding: 5px 8px;
  border-radius: 3px;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .data__label {
    padding: 4px 6px;
    font-size: 1.3rem;
  }
}
.data__box {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 0 10px;
}
@media screen and (max-width: 599px) {
  .data__box {
    flex-direction: column;
    justify-content: start;
    gap: 10px;
  }
}
@media screen and (max-width: 599px) {
  .data__box--ratio {
    flex-direction: column-reverse;
  }
}
.data__box--ratio .data__box-left {
  display: flex;
  align-items: flex-end;
  position: relative;
}
@media screen and (max-width: 599px) {
  .data__box--ratio .data__box-left {
    width: 100%;
    justify-content: center;
  }
}
.data__box--ratio .data__box-left .ratio {
  text-align: center;
}
.data__box--ratio .data__box-left .ratio span {
  display: block;
}
.data__box--ratio .data__box-left .ratio__label {
  font-size: 1.3rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .data__box--ratio .data__box-left .ratio__label {
    margin-bottom: 0;
  }
}
.data__box--ratio .data__box-left .ratio__num {
  font-size: 9.6rem;
  color: #E60012;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  .data__box--ratio .data__box-left .ratio__num {
    font-size: 5.4rem;
  }
}
.data__box--ratio .data__box-left .colon {
  font-size: 6.4rem;
  color: #E60012;
  margin: 0 6px;
}
@media screen and (max-width: 599px) {
  .data__box--ratio .data__box-left .colon {
    font-size: 4.8rem;
  }
}
.data__box--ratio .data__box-left .data__note {
  width: 100%;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.data__box--ratio .data__box-right {
  width: 45%;
}
@media screen and (max-width: 599px) {
  .data__box--ratio .data__box-right {
    width: 60px;
    margin-left: auto;
  }
}
.data__box--ratio .ratio_graph {
  width: 100%;
  height: auto;
  transform: rotate(-90deg);
}
.data__box--ratio .enko {
  fill: none;
  stroke-width: 12;
  stroke-dasharray: 125.6;
  stroke-dashoffset: 125.6;
}
.data__box--ratio #red {
  stroke: url(#redGradient);
}
.data__box--ratio #red.active {
  animation: redAnime 1s ease-in-out forwards;
}
@keyframes redAnime {
  from {
    stroke-dashoffset: 125.6;
  }
  to {
    stroke-dashoffset: 50.24;
  }
}
.data__box--ratio #orange {
  stroke: url(#orangeGradient);
}
.data__box--ratio #orange.active {
  animation: orangeAnime 1s ease-in-out forwards;
}
@keyframes orangeAnime {
  from {
    stroke-dashoffset: 125.6;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.data__box--years {
  justify-content: space-between;
}
@media screen and (max-width: 599px) {
  .data__box--years {
    justify-content: start;
  }
}
.data__box--years .data__box-left {
  margin-top: auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .data__box--years .data__box-left {
    margin: 0 0 0 auto;
  }
}
.data__box--years .data__box-left img {
  max-width: 100px;
  height: auto;
}
@media screen and (max-width: 599px) {
  .data__box--years .data__box-left img {
    max-width: 47px;
  }
}
.data__box--years .data__box-right {
  flex-shrink: 0;
}
.data__box--years .data__value {
  margin-top: 0;
}
.data__box--holiday {
  justify-content: end;
  position: relative;
}
@media screen and (max-width: 599px) {
  .data__box--holiday {
    justify-content: center;
  }
}
.data__box--holiday .data__box-left {
  position: absolute;
  left: 0;
  top: 40px;
  margin-bottom: auto;
}
@media screen and (max-width: 599px) {
  .data__box--holiday .data__box-left {
    left: initial;
    right: 0;
    top: -10px;
  }
}
.data__box--holiday .data__box-left img {
  width: 150px;
  height: auto;
}
@media screen and (max-width: 599px) {
  .data__box--holiday .data__box-left img {
    width: 45px;
  }
}
.data__box--holiday .data__box-right .data__value {
  text-align: right;
}
@media screen and (max-width: 599px) {
  .data__box--holiday .data__box-right .data__value {
    text-align: center;
  }
}
.data__box--holiday .data__box-right .data__note {
  text-align: right;
}
@media screen and (max-width: 599px) {
  .data__box--holiday .data__box-right .data__note {
    text-align: left;
  }
}
.data__box--holiday .data__box-right .data__value {
  margin-top: 0;
}
@media screen and (max-width: 599px) {
  .data__box--holiday .data__box-right .data__value {
    margin-top: 20px;
  }
}
.data__box--holiday .data__box-right .data__note {
  line-height: 1.2;
}
.data__box--holiday .data__box-right .data__note:first-of-type {
  color: #0D0001;
  font-size: 1.5rem;
}
@media screen and (max-width: 599px) {
  .data__box--holiday .data__box-right .data__note:first-of-type {
    font-size: 1.2rem;
  }
}
.data__value {
  font-size: 12.8rem;
  color: #E60012;
  letter-spacing: -0.05em;
  line-height: 1;
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .data__value {
    font-size: 8.4rem;
  }
}
@media screen and (max-width: 599px) {
  .data__value {
    font-size: 6.4rem;
  }
}
.data__value__unit {
  font-size: 3.6rem;
  margin-left: 6px;
  color: #0D0001;
}
@media screen and (max-width: 599px) {
  .data__value__unit {
    font-size: 2rem;
  }
}
.data__note {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.8;
  color: #868080;
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 599px) {
  .data__note {
    font-size: 1.1rem;
    margin-top: 5px;
    line-height: 1.5;
  }
}
.data__background {
  margin-top: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 599px) {
  .data__background {
    margin-top: 10px;
  }
}
.data__background__text {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 2rem;
  flex-shrink: 0;
}
@media screen and (max-width: 599px) {
  .data__background__text {
    font-size: 1.3rem;
  }
}
.data__background__grid {
  width: 100%;
  flex: 1;
  max-height: 300px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20px, 1fr));
  grid-auto-rows: 10px;
  gap: 20px;
  grid-auto-flow: dense;
}
@media screen and (max-width: 599px) {
  .data__background__grid {
    max-height: 250px;
    grid-template-columns: repeat(auto-fit, minmax(10px, 1fr));
    grid-auto-rows: 8px;
    gap: 15px;
  }
}
.data__background__bubble {
  background: #fff;
  padding: 2em 1.5em;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 0.8rem rgba(251, 203, 83, 0.1), 0 0 0.8rem rgba(230, 0, 18, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  position: relative;
  /* サイズ別スタイル */
}
@media screen and (max-width: 599px) {
  .data__background__bubble {
    border-radius: 5px;
    padding: 1.5em 1em;
  }
}
.data__background__bubble::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 30px;
  width: 20px;
  height: 20px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.05);
}
.data__background__bubble.bubble-xl {
  grid-column: span 7;
  grid-row: span 4;
  font-size: 2.4rem;
}
@media screen and (max-width: 599px) {
  .data__background__bubble.bubble-xl {
    font-size: 1.4rem;
  }
}
.data__background__bubble.bubble-large {
  grid-column: span 6;
  grid-row: span 3;
  font-size: 1.8rem;
}
@media screen and (max-width: 599px) {
  .data__background__bubble.bubble-large {
    font-size: 1.3rem;
  }
}
.data__background__bubble.bubble-medium {
  grid-column: span 5;
  grid-row: span 3;
  font-size: 1.5rem;
}
@media screen and (max-width: 599px) {
  .data__background__bubble.bubble-medium {
    font-size: 1.2rem;
  }
}
.data__background__bubble.bubble-small {
  grid-column: span 4;
  grid-row: span 3;
  font-size: 1.3rem;
}
@media screen and (max-width: 599px) {
  .data__background__bubble.bubble-small {
    font-size: 1.1rem;
  }
}
.data__collection {
  margin-top: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.data__collection__flex {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .data__collection__flex {
    gap: 15px;
  }
}
.data__collection__item {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 599px) {
  .data__collection__item {
    gap: 13px;
  }
}
.data__collection__item-reverse {
  flex-direction: row-reverse;
}
.data__collection__image {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0.8rem rgba(251, 203, 83, 0.2), 0 0 0.8rem rgba(230, 0, 18, 0.2);
}
@media screen and (max-width: 599px) {
  .data__collection__image {
    width: 70px;
    height: 70px;
  }
}
.data__collection__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.data__collection__text {
  max-width: 300px;
  flex: 1;
  background: #fff;
  padding: 15px 20px;
  border-radius: 1rem;
  box-shadow: 0 0 0.8rem rgba(251, 203, 83, 0.1), 0 0 0.8rem rgba(230, 0, 18, 0.1);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .data__collection__text {
    padding: 5px 8px;
    min-width: 150px;
    min-height: 50px;
  }
}
.data__collection__text::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  transform: translateX(-100%);
  width: 14px;
  height: 14px;
  background: #fff;
  clip-path: polygon(0 85%, 100% 100%, 100% 0);
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}
.data__collection__text p {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 599px) {
  .data__collection__text p {
    font-size: 1.2rem;
  }
}
.data__collection__item-reverse .data__collection__text::before {
  left: initial;
  right: 0;
  transform: translateX(100%);
  clip-path: polygon(100% 85%, 0 100%, 0 0);
}

.special {
  width: 100%;
  margin: 87px 0 107px;
  overflow: hidden;
}
.special__container {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .special__container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 20px;
  }
}
.special__container hgroup {
  grid-column: 1/2;
  grid-row: 1/2;
  align-self: flex-end;
}
.special__container .special__contents {
  grid-column: 1/2;
  grid-row: 2/3;
}
@media screen and (max-width: 1024px) {
  .special__container .special__contents {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
.special__container .special__image {
  grid-column: 2/3;
  grid-row: 1/3;
}
@media screen and (max-width: 1024px) {
  .special__container .special__image {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.special .contents__title {
  background-color: #E60012;
  background-image: url("../images/bg_gradient.png");
  background-size: cover;
  background-position: right bottom;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: -0.03em;
}
.special .contents__title-sub {
  margin: 15px 0 30px;
}
@media screen and (max-width: 599px) {
  .special .contents__title-sub {
    margin: 5px 0 20px;
  }
}
.special__text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 1.2em;
}
@media screen and (max-width: 599px) {
  .special__text {
    font-size: 1.4rem;
  }
}
.special__cta {
  margin-top: 32px;
  max-width: 480px;
  border-radius: 6px;
  background: linear-gradient(90deg, #FFECEC 0%, #FFFAEB 50%, #FEDCDC 100%);
  text-align: center;
  position: relative;
  z-index: 0;
  padding: 20px;
}
@media screen and (max-width: 599px) {
  .special__cta {
    border-radius: 3px;
    padding: 15px;
  }
}
.special__cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/bg_gradient.png") no-repeat center/cover;
  z-index: -1;
  opacity: 0.2;
}
.special__cta p {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 5px;
}
@media screen and (max-width: 599px) {
  .special__cta p {
    font-size: 1.4rem;
  }
}
.special__cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 50px;
  border-radius: 9999px;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 10px 20px;
  background: #06C755;
  color: #fff;
  max-width: 300px;
  margin: 0 auto;
  transition: all 0.3s;
}
.special__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 8px 0 rgba(251, 203, 83, 0.1), 0 0 8px 0 rgba(230, 0, 18, 0.1);
}
.special__cta-btnicon {
  width: 30px;
  height: 30px;
}
.special__note {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  color: #868080;
  max-width: 480px;
  margin-top: 10px;
}
.special__image {
  width: clamp(540px, 55.5555555556vw, 800px);
  height: clamp(540px, 55.5555555556vw, 800px);
  margin-right: -60px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #FFECEC;
}
@media screen and (max-width: 599px) {
  .special__image {
    width: clamp(240px, 87.1794871795vw, 540px);
    height: clamp(240px, 87.1794871795vw, 540px);
  }
}
.special__image-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.special__image-row {
  flex: 1;
  overflow: hidden;
  width: 100%;
}
.special__image-row.swiper {
  width: 100%;
  height: 100%;
}
.special__image-row .swiper-wrapper {
  transition-timing-function: linear !important;
  height: 100%;
}
.special__image-row .swiper-slide {
  width: auto !important;
  height: 100%;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  min-width: 0;
}
.special__image-row .swiper-slide img {
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.interview {
  margin: 120px 0;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .interview {
    margin: 80px 0;
  }
}
.interview__slider {
  position: relative;
  margin-top: 160px;
  padding: 0 20px;
  overflow: visible;
}
@media screen and (max-width: 599px) {
  .interview__slider {
    margin-top: 40px;
    padding: 0;
  }
}
.interview .swiper-slide {
  width: 390px;
}
@media screen and (max-width: 599px) {
  .interview .swiper-slide {
    width: 280px;
  }
}
.interview .swiper-slide:nth-child(2n) {
  margin-top: -100px;
}
@media screen and (max-width: 599px) {
  .interview .swiper-slide:nth-child(2n) {
    margin-top: 0;
  }
}
.interview__item {
  position: relative;
  width: 100%;
  height: 560px;
}
@media screen and (max-width: 599px) {
  .interview__item {
    height: 400px;
  }
}
.interview__image-wrap {
  position: relative;
  width: 330px;
  height: 330px;
  border-radius: 230px;
  overflow: hidden;
  margin: 0 30px;
}
@media screen and (max-width: 599px) {
  .interview__image-wrap {
    width: 240px;
    height: 240px;
    margin: 0 40px;
  }
}
.interview__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.interview__content {
  position: absolute;
  left: 0;
  top: 230px;
  width: 330px;
  height: 330px;
  border-radius: 230px;
  background-image: url("../images/bg_gradient.png"), linear-gradient(204.701deg, #FF9F9F 12.428%, rgba(230, 0, 18, 0.8) 87.928%);
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  background-position: center, center;
  color: #fff;
  padding: 35px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  .interview__content {
    width: 240px;
    height: 240px;
    top: initial;
    bottom: 0;
    padding: 20px;
  }
}
.interview__label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .interview__label {
    gap: 5px;
    margin-bottom: 5px;
  }
}
.interview__number {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 599px) {
  .interview__number {
    font-size: 1.2rem;
  }
}
.interview__position {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  padding: 4px 10px;
  border: 1px solid #fff;
  border-radius: 30px;
  white-space: nowrap;
}
@media screen and (max-width: 599px) {
  .interview__position {
    font-size: 1.2rem;
    padding: 3px 8px;
  }
}
.interview__message {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 599px) {
  .interview__message {
    font-size: 1.5rem;
    padding-bottom: 3px;
  }
}
.interview__info {
  margin: 10px 0;
}
@media screen and (max-width: 599px) {
  .interview__info {
    margin: 8px 0;
  }
}
.interview__join {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.interview__department {
  font-size: 1.3rem;
  font-weight: 700;
}
.interview__button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 49px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 3px 8px;
  background: #0D0001;
  border-radius: 20px;
  text-decoration: none;
  width: 186px;
  height: 30px;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
  transition: all 0.3s;
}
@media screen and (max-width: 599px) {
  .interview__button {
    bottom: 20px;
    gap: 3px;
    padding: 2px 8px;
    width: 92px;
    height: 24px;
  }
}
.interview__button-icon {
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.interview__button-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.interview__button-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}
.interview__button:hover {
  transform: translateY(-2px) translateX(-50%);
  box-shadow: 0 0 8px 0 rgba(251, 203, 83, 0.1), 0 0 8px 0 rgba(230, 0, 18, 0.1);
}
.interview__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.interview__modal.is-active {
  display: flex;
}
@media screen and (max-width: 599px) {
  .interview__modal {
    padding: 16px;
  }
}
.interview__modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}
.interview__modal-content {
  position: relative;
  max-width: 1200px;
  width: 100%;
  z-index: 1;
}
.interview__modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: #fff;
  font-size: 3.2rem;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 599px) {
  .interview__modal-close {
    top: -40px;
    font-size: 2.8rem;
  }
}
.interview__modal-close:hover {
  opacity: 0.7;
}
.interview__modal-video {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #000;
  border-radius: 8px;
  overflow: hidden;
}
.interview__modal-video-element {
  width: 100%;
  height: 100%;
}

/*************************************************
Timeline
*************************************************/
.timeline {
  background: linear-gradient(90deg, #ffecec 0%, #fffaeb 50%, #fedcdc 100%);
  position: relative;
  z-index: 1;
  padding: 80px 0;
}
@media screen and (max-width: 599px) {
  .timeline {
    padding: 40px 0;
  }
}
.timeline__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 539px;
  height: 552px;
  overflow: hidden;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  .timeline__bg {
    width: 278px;
    height: 278px;
  }
}
.timeline__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.timeline__title {
  font-size: 3.2rem;
  font-weight: 700;
  background: #fff;
  border-radius: 3px;
  display: inline-block;
  padding: 3px 10px;
  margin-bottom: 8px;
}
@media screen and (max-width: 599px) {
  .timeline__title {
    font-size: 2.4rem;
    margin-bottom: 5px;
  }
}
.timeline__subtitle {
  font-size: 1.6rem;
  font-weight: 500;
  background: #fff;
  border-radius: 3px;
  display: inline-block;
  padding: 3px 10px;
}
@media screen and (max-width: 599px) {
  .timeline__subtitle {
    font-size: 1.5rem;
  }
}
.timeline__scroll-wrapper {
  margin-top: 60px;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100vw;
  max-width: 100vw;
}
@media screen and (max-width: 599px) {
  .timeline__scroll-wrapper {
    margin-top: 30px;
  }
}
.timeline__main-scroll {
  padding: 80px 100px 20px 174px;
  min-height: 450px;
}
@media screen and (max-width: 599px) {
  .timeline__main-scroll {
    padding: 30px 40px 20px 40px;
  }
}
.timeline__main-scroll .scroll__inner {
  background-color: #E60012;
  padding: 0 0 20px 0;
  overflow-x: scroll;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
}
.timeline__main-scroll .scroll__inner::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}
.timeline__main-scroll .simplebar-scrollbar::before {
  background: #E60012;
  border-radius: 10px;
  height: 6px !important;
  margin-left: 2px;
  margin-top: 0px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.timeline__main-scroll .simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}
.timeline__main-scroll .simplebar-track {
  background: rgba(255, 255, 255, 0.6);
  height: 6px !important;
  border-radius: 6px;
  margin: 100px 100px 20px 174px;
  bottom: -20px;
}
@media screen and (max-width: 599px) {
  .timeline__main-scroll .simplebar-track {
    margin: 30px 40px 20px 40px;
  }
}
.timeline__main {
  display: flex;
  gap: 30px;
  position: relative;
  padding-bottom: 20px;
}
.timeline__line {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  width: 2484px;
  height: 2px;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  .timeline__line {
    width: 2200px;
  }
}
.timeline__dotline {
  background-image: linear-gradient(to right, #868080 25%, transparent 25%);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  width: 100%;
  height: 2px;
}
.timeline__card {
  flex-shrink: 0;
  width: 294px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 8px 0 rgba(251, 203, 83, 0.1), 0 0 8px 0 rgba(230, 0, 18, 0.1);
  padding: 24px;
  display: flex;
  flex-direction: column;
  margin-top: 87px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 599px) {
  .timeline__card {
    width: 260px;
    padding: 20px;
  }
}
.timeline__time {
  position: absolute;
  top: -87px;
  left: 0;
  font-size: 2rem;
  white-space: nowrap;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .timeline__time {
    font-size: 1.6rem;
  }
}
.timeline__dot {
  position: absolute;
  top: -43px;
  left: 15px;
  width: 12px;
  height: 50px;
  z-index: 3;
}
.timeline__dot img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.timeline__card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.timeline__card-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.timeline__card-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.timeline__card-title {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .timeline__card-title {
    font-size: 1.4rem;
  }
}
.timeline__card-desc {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 500;
  white-space: normal;
  flex-grow: 1;
}
@media screen and (max-width: 599px) {
  .timeline__card-desc {
    font-size: 1.3rem;
  }
}
.timeline__card-note {
  background: #ffecec;
  border-radius: 3px;
  font-size: 1.3rem;
  font-weight: 500;
  color: #0d0001;
  padding: 5px 10px;
  line-height: 1.8;
  margin-top: 14px;
}
@media screen and (max-width: 599px) {
  .timeline__card-note {
    font-size: 1.2rem;
  }
}
.timeline__nextday {
  flex-shrink: 0;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  background: url("../images/bg_gradient.png") no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: -22px;
}
@media screen and (max-width: 599px) {
  .timeline__nextday {
    width: 100px;
    height: 100px;
    margin-top: 0;
  }
}
.timeline__nextday-text {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  z-index: 2;
  white-space: nowrap;
}
@media screen and (max-width: 599px) {
  .timeline__nextday-text {
    font-size: 1.2rem;
  }
}

/*************************************************
Benefits
*************************************************/
.benefits {
  margin: 180px 0 120px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .benefits {
    padding: 400px 0 100px;
    margin: 0;
  }
}
.benefits__lead {
  margin-top: 30px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
}
.benefits__bg1 {
  position: absolute;
  right: 60px;
  top: -100px;
  width: 433px;
  height: 433px;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .benefits__bg1 {
    right: 0;
    top: 40px;
    width: 320px;
    height: 320px;
  }
}
@media screen and (max-width: 599px) {
  .benefits__bg1 {
    width: 240px;
    height: 240px;
  }
}
.benefits__bg1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 20px 0 rgba(251, 203, 83, 0.1), 0 0 20px 0 rgba(230, 0, 18, 0.1);
}
.benefits__bg2 {
  position: absolute;
  right: 500px;
  top: 200px;
  width: 230px;
  height: 230px;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .benefits__bg2 {
    right: 300px;
    top: 230px;
  }
}
@media screen and (max-width: 599px) {
  .benefits__bg2 {
    right: 220px;
    width: 130px;
    height: 130px;
  }
}
.benefits__bg2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 20px 0 rgba(251, 203, 83, 0.1), 0 0 20px 0 rgba(230, 0, 18, 0.1);
}
.benefits__bg3 {
  position: absolute;
  right: 500px;
  top: 0;
  width: 160px;
  height: 160px;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .benefits__bg3 {
    right: 340px;
    top: 80px;
    width: 120px;
    height: 120px;
  }
}
@media screen and (max-width: 599px) {
  .benefits__bg3 {
    right: 260px;
    top: 120px;
    width: 80px;
    height: 80px;
  }
}
.benefits__bg3 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 20px 0 rgba(251, 203, 83, 0.1), 0 0 20px 0 rgba(230, 0, 18, 0.1);
}
.benefits__bg1, .benefits__bg2, .benefits__bg3 {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.benefits__bg1 img, .benefits__bg2 img, .benefits__bg3 img {
  width: 100%;
  height: auto;
}
.benefits__bg1.active, .benefits__bg2.active, .benefits__bg3.active {
  opacity: 1;
  transform: scale(1);
}
.benefits__bg1 {
  transition-delay: 0s;
}
.benefits__bg2 {
  transition-delay: 0.2s;
}
.benefits__bg3 {
  transition-delay: 0.4s;
}
.benefits__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 260px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .benefits__cards {
    margin-top: 40px;
    grid-template-columns: 1fr;
  }
}
.benefits__card {
  align-self: start;
  background: #fff;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px 0 rgba(251, 203, 83, 0.1), 0 0 8px 0 rgba(230, 0, 18, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .benefits__card {
    border-radius: 3px;
  }
}
.benefits__card-img {
  width: 100%;
  height: 235px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px 6px 0 0;
}
@media screen and (max-width: 599px) {
  .benefits__card-img {
    height: 194px;
    border-radius: 3px 3px 0 0;
  }
}
.benefits__card-icon {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  .benefits__card-icon {
    gap: 4px;
  }
}
.benefits__card-icon-img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 599px) {
  .benefits__card-icon-img {
    width: 20px;
    height: 20px;
  }
}
.benefits__card-title {
  font-size: 2.4rem;
  font-weight: 500;
  vertical-align: baseline;
}
@media screen and (max-width: 599px) {
  .benefits__card-title {
    font-size: 2rem;
  }
}
.benefits__card-desc {
  font-size: 1.6rem;
  margin: 20px 0 40px;
  padding: 0 30px;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .benefits__card-desc {
    font-size: 1.4rem;
    margin: 15px 0 30px;
    padding: 0 20px;
  }
}

/*************************************************
Jobs
*************************************************/
.jobs {
  width: 100%;
  background: #FFECEC url("../images/noise-pink.png") repeat center/auto;
  padding: 100px 0 120px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 599px) {
  .jobs {
    padding: 80px 0;
  }
}
.jobs::before {
  content: "";
  display: block;
  width: clamp(250px, 18.6111111111vw, 100%);
  height: clamp(250px, 19.0277777778vw, 100%);
  background: url("../images/bg_jobs_side.png") no-repeat right top/contain;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .jobs::before {
    width: 236px;
    height: 236px;
  }
}
.jobs .contents__inner {
  position: relative;
  z-index: 2;
}
.jobs__desc {
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: 80px;
  line-height: 1.8;
}
@media screen and (max-width: 599px) {
  .jobs__desc {
    font-size: 1.4rem;
    margin-bottom: 50px;
  }
}
.jobs__group {
  margin-bottom: 48px;
}
@media screen and (max-width: 599px) {
  .jobs__group {
    margin-bottom: 32px;
  }
}
.jobs__group-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.6;
}
@media screen and (max-width: 599px) {
  .jobs__group-title {
    font-size: 1.8rem;
  }
}
.jobs__items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media screen and (max-width: 1024px) {
  .jobs__items {
    flex-direction: column;
    gap: 8px;
  }
}
.jobs__item {
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 6px;
  width: 333px;
  height: 68px;
  position: relative;
  padding: 0 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .jobs__item {
    width: 100%;
    height: 60px;
  }
}
.jobs__item:hover {
  box-shadow: 0 4px 16px rgba(230, 0, 18, 0.15);
  transform: translateY(-2px);
}
.jobs__item-main {
  flex: 1 1 auto;
  min-width: 0;
}
.jobs__item-title {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 599px) {
  .jobs__item-title {
    font-size: 1.6rem;
  }
}
.jobs__item-desc {
  font-size: 1.3rem;
  font-weight: 500;
  color: #868080;
  line-height: 1.5;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 599px) {
  .jobs__item-desc {
    font-size: 1.2rem;
  }
}
.jobs__item-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: url("../images/icon_jobs_arrow.png") no-repeat center/contain;
}
.jobs__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.jobs__modal.is-active {
  display: flex;
}
@media screen and (max-width: 599px) {
  .jobs__modal {
    padding: 16px;
  }
}
.jobs__modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.jobs__modal-content {
  position: relative;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  background: #fff;
  border-radius: 10px;
  overflow-y: auto;
  z-index: 1;
}
.jobs__modal-content::-webkit-scrollbar {
  width: 8px;
}
.jobs__modal-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.jobs__modal-content::-webkit-scrollbar-thumb {
  background: #E60012;
  border-radius: 10px;
}
.jobs__modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  color: #0d0001;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  .jobs__modal-close {
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    font-size: 2rem;
  }
}
.jobs__modal-close:hover {
  background: #E60012;
  color: #fff;
  transform: rotate(90deg);
}
.jobs__modal-body {
  padding: 60px 50px 50px;
}
@media screen and (max-width: 599px) {
  .jobs__modal-body {
    padding: 60px 24px 30px;
  }
}
.jobs__modal-category {
  display: inline-block;
  background: #E60012;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 3px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.jobs__modal-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0d0001;
  line-height: 1.5;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 599px) {
  .jobs__modal-title {
    font-size: 2.2rem;
  }
}
.jobs__modal-subtitle {
  font-size: 1.6rem;
  font-weight: 500;
  color: #868080;
  margin-bottom: 30px;
  line-height: 1.6;
}
@media screen and (max-width: 599px) {
  .jobs__modal-subtitle {
    font-size: 1.4rem;
    margin-bottom: 24px;
  }
}
.jobs__modal-section {
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .jobs__modal-section {
    margin-bottom: 32px;
  }
}
.jobs__modal-section:last-of-type {
  margin-bottom: 30px;
}
.jobs__modal-section h4 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #0d0001;
  padding-left: 16px;
  border-left: 4px solid #E60012;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  .jobs__modal-section h4 {
    font-size: 1.8rem;
    padding-left: 12px;
    border-left-width: 3px;
  }
}
.jobs__modal-section p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #0d0001;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .jobs__modal-section p {
    font-size: 1.4rem;
  }
}
.jobs__modal-section ul {
  list-style: none;
  padding: 0;
}
.jobs__modal-section ul li {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #0d0001;
  font-weight: 500;
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}
@media screen and (max-width: 599px) {
  .jobs__modal-section ul li {
    font-size: 1.4rem;
    padding-left: 20px;
  }
}
.jobs__modal-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background: #E60012;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .jobs__modal-section ul li::before {
    top: 10px;
    width: 6px;
    height: 6px;
  }
}
.jobs__modal-info {
  background: #FFECEC;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .jobs__modal-info {
    padding: 20px 16px;
  }
}
.jobs__modal-info-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(134, 128, 128, 0.2);
}
.jobs__modal-info-item:first-child {
  padding-top: 0;
}
.jobs__modal-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media screen and (max-width: 599px) {
  .jobs__modal-info-item {
    flex-direction: column;
    gap: 6px;
    padding: 10px 0;
  }
}
.jobs__modal-info-label {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0d0001;
  min-width: 120px;
}
@media screen and (max-width: 599px) {
  .jobs__modal-info-label {
    font-size: 1.3rem;
    min-width: auto;
  }
}
.jobs__modal-info-value {
  font-size: 1.6rem;
  color: #0d0001;
  font-weight: 500;
  text-align: right;
  flex: 1;
}
@media screen and (max-width: 599px) {
  .jobs__modal-info-value {
    font-size: 1.4rem;
    text-align: left;
  }
}
.jobs__modal-button {
  display: block;
  width: 100%;
  background: #E60012;
  color: #fff;
  text-align: center;
  padding: 18px 30px;
  border-radius: 50px;
  font-size: 1.8rem;
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(230, 0, 18, 0.3);
}
@media screen and (max-width: 599px) {
  .jobs__modal-button {
    font-size: 1.6rem;
    padding: 16px 24px;
  }
}
.jobs__modal-button:hover {
  background: #c00010;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 0, 18, 0.4);
}

/*************************************************
Flow
*************************************************/
.flow {
  margin: 120px 0;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .flow {
    margin: 80px 0 100px;
  }
}
.flow__container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
@media screen and (max-width: 1024px) {
  .flow__container {
    flex-direction: column;
  }
}
.flow__steps {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 15px;
  flex-grow: 1;
  max-width: 860px;
}
@media screen and (max-width: 1024px) {
  .flow__steps {
    align-items: center;
  }
}
.flow__step {
  display: grid;
  grid-template-columns: 110px minmax(0, auto);
  grid-template-rows: auto auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 0.8rem rgba(251, 203, 83, 0.1), 0 0 0.8rem rgba(230, 0, 18, 0.1);
  min-height: 110px;
  width: 100%;
  padding: 20px;
}
@media screen and (max-width: 599px) {
  .flow__step {
    grid-template-columns: 60px minmax(0, auto);
    min-height: 0;
    border-radius: 6px;
    padding: 24px 12px;
    gap: 10px 0;
  }
}
.flow__step-num {
  grid-column: 1/2;
  grid-row: 1/3;
  align-content: center;
  font-size: 4.8rem;
  color: #ff9f9f;
  font-weight: 400;
  letter-spacing: -0.05em;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .flow__step-num {
    grid-column: 1/2;
    grid-row: 1/2;
    font-size: 3.6rem;
    text-align: left;
  }
}
.flow__step-main {
  grid-column: 2/3;
  grid-row: 2/3;
  padding-right: 40px;
}
@media screen and (max-width: 599px) {
  .flow__step-main {
    grid-column: 1/3;
    grid-row: 2/3;
    padding: 0;
  }
}
.flow__step-title {
  grid-column: 2/3;
  grid-row: 1/2;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  .flow__step-title {
    font-size: 2rem;
    margin: 0;
    align-content: center;
  }
}
.flow__step-desc {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
}
.flow__step-buttons {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}
@media screen and (max-width: 599px) {
  .flow__step-buttons {
    gap: 10px;
  }
}
.flow__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  border-radius: 31px;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0 18px;
  transition: all 0.3s;
}
.flow__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 8px 0 rgba(251, 203, 83, 0.1), 0 0 8px 0 rgba(230, 0, 18, 0.1);
}
@media screen and (max-width: 599px) {
  .flow__btn {
    gap: 3px;
    padding: 0 10px;
  }
}
.flow__btn--line {
  background: #06C755;
  color: #fff;
}
.flow__btn--line .flow__btn-icon {
  width: 24px;
  height: 24px;
}
.flow__btn--wantedly {
  background: #0D0001;
  color: #fff;
}
.flow__btn--wantedly .flow__btn-icon {
  width: 30px;
  height: 24px;
}
.flow__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 13px;
  width: 100px;
  margin-right: auto;
}
@media screen and (max-width: 599px) {
  .flow__arrow {
    margin: 0;
  }
}
.flow__arrow img {
  width: 100%;
  height: auto;
  display: block;
}

/*************************************************
CTA
*************************************************/
.cta {
  width: 100%;
  background: #3D3132;
}
.cta__bg {
  width: 100%;
  height: 480px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .cta__bg {
    height: 260px;
  }
}
.cta__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cta__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 60px;
}
@media screen and (max-width: 1024px) {
  .cta__container {
    align-items: start;
    flex-direction: column;
    gap: 40px;
  }
}
@media screen and (max-width: 599px) {
  .cta__container {
    padding: 60px 20px;
  }
}
.cta__texts {
  color: #fff;
}
.cta__title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  .cta__title {
    font-size: 3.2rem;
    margin-bottom: 20px;
  }
}
.cta__desc {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
}
.cta__actions {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 599px) {
  .cta__actions {
    gap: 15px;
    width: 100%;
  }
}
.cta__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 60px;
  border-radius: 30px;
  font-size: 2rem;
  font-weight: 700;
  padding: 0 20px;
  min-width: 360px;
  transition: all 0.3s;
}
.cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 8px 0 rgba(251, 203, 83, 0.1), 0 0 8px 0 rgba(230, 0, 18, 0.1);
}
@media screen and (max-width: 599px) {
  .cta__btn {
    width: 100%;
    min-width: 0;
    max-width: 400px;
  }
}
.cta__btn--line {
  background: #06C755;
  color: #fff;
}
.cta__btn--line .cta__btn-icon {
  width: 30px;
  height: 30px;
}
.cta__btn--wantedly {
  background: #0D0001;
  color: #fff;
}
.cta__btn--wantedly .cta__btn-icon {
  width: 42px;
  height: 34px;
}/* End of CTA Section Styles */
/* Reservation Section Styles */
.reservation {
  padding: 120px 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .reservation {
    padding: 80px 0;
  }
}
.reservation__desc {
  margin-top: 40px;
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 599px) {
  .reservation__desc {
    margin-top: 24px;
    text-align: left;
  }
}
.reservation__calendar {
  margin-top: 60px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .reservation__calendar {
    margin-top: 40px;
  }
}
.reservation__button {
  display: inline-block;
  background: #E60012;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  height: 60px;
  line-height: 60px;
  padding: 0 40px;
  border-radius: 30px;
  transition: all 0.3s;
  text-decoration: none;
}
.reservation__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 0, 18, 0.3);
}
@media screen and (max-width: 599px) {
  .reservation__button {
    font-size: 1.8rem;
    width: 100%;
    max-width: 400px;
  }
}
/* End of Reservation Section Styles */
/*# sourceMappingURL=style.css.map */