@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #222222;
  font-size: 16px;
  line-height: 1.75;
  background: #ffffff;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3,
p {
  font-weight: 400;
  margin: 0;
}

.inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.section-heading h2 {
  font-size: 28px;
  font-weight: 700;
  color: #222222;
}
@media (max-width: 600px) {
  .section-heading h2 {
    font-size: 22px;
  }
}
.section-heading::after {
  content: "";
  display: block;
  width: 100px;
  height: 5px;
  border-radius: 100px;
  background: linear-gradient(90deg, #00bbf4, #fff70c);
}
.section-heading__row {
  display: flex;
  align-items: baseline;
  flex-direction: column;
  align-items: center;
}
.section-heading__en {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  color: #00bbf4;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.btn:hover {
  opacity: 0.85;
}
.btn:hover .btn__arrow {
  transform: translateX(4px);
}
.btn svg {
  flex-shrink: 0;
}

.btn__arrow {
  transition: transform 0.2s ease;
}

.btn--outline {
  background: #ffffff;
  border: 1px solid #00bbf4;
  color: #00bbf4 !important;
  box-shadow: 0 0 5px 0 rgba(0, 187, 244, 0.2);
}

.btn--filled {
  background: linear-gradient(90deg, #00bbf4, #00f5c8);
  color: #ffffff !important;
  box-shadow: 0 0 5px 0 rgba(0, 187, 244, 0.2);
}

.btn--large {
  padding: 20px 30px;
  font-size: 18px;
  height: 60px;
}

.btn--wide {
  width: 100%;
  max-width: 500px;
  justify-content: space-between;
}

.header {
  position: sticky;
  top: 20px;
  z-index: 100;
  max-width: 1400px;
  margin: 20px auto 0;
  padding: 0 24px;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  height: 70px;
  padding: 0 30px;
  background: #ffffff;
  border-radius: 100px;
  box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.1);
}
@media (min-width: 1024px) and (max-width: 1330px) {
  .header__inner {
    gap: 16px;
    padding: 0 20px;
  }
}
.header__logo {
  flex-shrink: 0;
}
.header__logo img {
  height: 32px;
  width: auto;
}
@media (min-width: 1024px) and (max-width: 1330px) {
  .header__logo img {
    height: 28px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 0 16px;
  margin-left: auto;
}
.header__nav ul {
  margin: 0;
}
.header__nav a {
  font-weight: 700;
  font-size: 16px;
  color: #222222 !important;
  white-space: nowrap;
}
.header__nav a:hover {
  color: #00bbf4 !important;
  transition: all 0.6s;
}
@media (min-width: 1024px) and (max-width: 1330px) {
  .header__nav {
    gap: 16px;
    padding: 0;
  }
  .header__nav a {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__actions .btn {
  padding: 11px 20px;
  font-size: 14px;
  white-space: nowrap;
}
@media (min-width: 1024px) and (max-width: 1330px) {
  .header__actions {
    gap: 8px;
  }
  .header__actions .btn {
    padding: 10px 14px;
    font-size: 13px;
  }
}
@media (max-width: 1024px) {
  .header__actions {
    display: none;
  }
}
.header__burger {
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  margin-left: 12px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}
.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #222222;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
@media (max-width: 1024px) {
  .header__burger {
    display: flex;
  }
}
.header__mobile-nav {
  position: absolute;
  top: calc(100% + 10px);
  left: 24px;
  right: 24px;
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 20px 30px 100px 30px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  visibility: hidden;
  pointer-events: none;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.header__mobile-nav > a {
  padding: 10px 0;
  font-weight: 700;
  font-size: 16px;
  color: #222222;
  border-bottom: 1px solid #f5f5f5;
}
.header__mobile-nav > a:last-of-type {
  border-bottom: none;
}
.header__mobile-nav > a:hover {
  color: #00bbf4;
}
@media (max-width: 1024px) {
  .header__mobile-nav {
    display: flex;
  }
}
.header__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}
.header__mobile-actions .btn {
  width: 100%;
}
.header.is-open .header__mobile-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.header.is-open .header__burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header.is-open .header__burger span:nth-child(2) {
  opacity: 0;
}
.header.is-open .header__burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.has-submenu {
  position: relative;
  list-style: none;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
}
.submenu li {
  margin-bottom: 10px;
  list-style: none;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  display: block;
  width: 250px;
  background: #fff;
  height: 250px;
  padding: 20px;
  box-sizing: border-box;
}

.submenu-mobile li {
  margin-bottom: 10px;
}

.submenu-mobile {
  display: none;
  margin: 10px 0 20px;
  padding-left: 20px;
}

.submenu-mobile.is-open {
  display: block;
}

.mobile-menu__parent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f5f5f5;
}
.mobile-menu__parent a {
  padding: 10px 0;
  font-weight: 700;
  font-size: 16px;
  color: #222222;
}

.submenu-toggle {
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 22px;
  font-weight: bold;
}

.hero {
  position: relative;
  margin-top: -90px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100% 288px;
  background-image: linear-gradient(180deg, #00bbf4 5%, rgba(0, 245, 160, 0.5) 35%, rgba(255, 255, 255, 0) 95%);
  max-height: 800px;
  height: 60vw;
}
@media (max-width: 1024px) {
  .hero {
    max-height: fit-content;
    height: auto;
  }
}
.hero__contents {
  background: url("../img/bg-fv-photo.png") no-repeat top right;
  background-size: contain;
  padding: min(20vw, 290px) 0 100px;
  position: relative;
}
@media (max-width: 1024px) {
  .hero__contents {
    padding: 150px 0 60px;
    background: none;
  }
}
.hero__contents::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/bg-fv-left.png") no-repeat center left;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media (max-width: 1024px) {
  .hero__contents::after {
    background-position: top left;
    background-size: auto;
  }
}
.hero__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(320px, 560px) 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .hero__inner {
    padding: 0 16px;
  }
}
.hero__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1024px) {
  .hero__text {
    display: contents;
  }
}
.hero__eyebrow {
  font-family: "Jost", sans-serif;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #00bbf4;
}
@media (max-width: 1024px) {
  .hero__eyebrow {
    order: 1;
    width: 100%;
    text-align: left;
  }
}
.hero__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.6;
  color: #222222;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .hero__title {
    white-space: normal;
    order: 2;
    width: 100%;
    text-align: left;
  }
}
@media (max-width: 600px) {
  .hero__title {
    font-size: 20px;
  }
}
.hero__title .is-impact {
  font-size: 50px;
}
@media (max-width: 600px) {
  .hero__title .is-impact {
    font-size: 32px;
  }
}
.hero__title .is-gradient,
.hero__title .is-gradient-alt {
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-size: 50px;
  line-break: 1.6;
}
@media (max-width: 600px) {
  .hero__title .is-gradient,
  .hero__title .is-gradient-alt {
    font-size: 32px;
  }
}
.hero__title .is-gradient {
  background-image: linear-gradient(90deg, #00bbf4, #fff70c);
}
.hero__title .is-gradient-alt {
  background-image: linear-gradient(90deg, #fff70c, #00bbf4);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero__actions .btn {
  width: 230px;
}
@media (max-width: 1024px) {
  .hero__actions {
    order: 4;
    width: 100%;
    justify-content: center;
  }
  .hero__actions .btn {
    width: min(100%, 320px);
  }
}
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .hero__visual {
    order: 3;
    position: static;
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }
}
.hero__visual .is-tablet {
  display: none;
}
@media (max-width: 1024px) {
  .hero__visual .is-tablet {
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}
.hero__stats {
  display: flex;
  z-index: 2;
  position: absolute;
  right: 20px;
  bottom: 0;
}
@media (max-width: 1024px) {
  .hero__stats {
    position: static;
    right: auto;
    bottom: auto;
    justify-content: center;
  }
}
.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.hero__stat + .hero__stat {
  margin-left: -16px;
}
@media (max-width: 600px) {
  .hero__stat {
    width: 108px;
    height: 108px;
  }
}
.hero__stat--primary {
  background: rgba(0, 187, 244, 0.9);
}
.hero__stat--green {
  background: rgba(28, 233, 162, 0.9);
}
.hero__stat--yellow {
  background: rgba(245, 200, 0, 0.9);
}
.hero__stat .hero__stat-label {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .hero__stat .hero__stat-label {
    font-size: 12px;
  }
}
.hero__stat .hero__stat-value {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .hero__stat .hero__stat-value {
    font-size: 14px;
  }
}
.hero__stat .hero__stat-unit {
  font-weight: 700;
  font-size: 16px;
}
@media (max-width: 600px) {
  .hero__stat .hero__stat-unit {
    font-size: 14px;
  }
}

.page-hero {
  position: relative;
  margin-top: -90px;
  padding: 190px 0 60px;
  overflow: hidden;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100% 288px;
  background-image: linear-gradient(180deg, #00bbf4 5%, rgba(0, 245, 160, 0.5) 35%, rgba(255, 255, 255, 0) 95%);
}
@media (max-width: 600px) {
  .page-hero {
    padding: 160px 0 40px;
  }
}
.page-hero__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0px;
}
@media (max-width: 600px) {
  .page-hero__inner {
    flex-direction: column;
    align-items: center;
  }
}
.page-hero__en {
  font-family: "Jost", sans-serif;
  font-size: 80px;
  color: #00bbf4;
  line-height: 1;
}
@media (max-width: 1024px) {
  .page-hero__en {
    font-size: 76px;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .page-hero__en {
    font-size: 48px;
    text-align: center;
  }
}
.page-hero__ja {
  font-size: 30px;
  font-weight: 700;
  color: #222222;
}
@media (max-width: 1024px) {
  .page-hero__ja {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .page-hero__ja {
    font-size: 20px;
  }
}

.breadcrumb {
  padding: 20px 0 0;
}
.breadcrumb__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #222222;
}
.breadcrumb__inner a,
.breadcrumb__inner span {
  word-break: keep-all;
}
.breadcrumb a:hover {
  color: #00bbf4;
}
.breadcrumb__sep {
  color: #00bbf4;
}

.intro {
  padding: 50px 0 80px;
}
.intro__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .intro__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.intro__heading {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.intro__logo {
  width: 83%;
  height: auto;
  margin: 0 auto;
}
.intro__eyebrow {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  color: #00bbf4;
}
.intro__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  color: #222222;
}
@media (max-width: 1024px) {
  .intro__title {
    font-size: 30px;
  }
}
@media (max-width: 600px) {
  .intro__title {
    font-size: 24px;
  }
}
.intro__divider {
  flex-shrink: 0;
  width: 5px;
  height: 100px;
  border-radius: 100px;
  background: linear-gradient(90deg, #00bbf4, #fff70c);
}
@media (max-width: 1024px) {
  .intro__divider {
    width: 100px;
    height: 5px;
  }
}
.intro__text {
  font-size: 16px;
  line-height: 1.75;
  color: #222222;
}
.intro--row .intro__inner {
  flex-direction: row;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1024px) {
  .intro--row .intro__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
.intro--row .intro__text {
  flex: 1;
}

.process {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding-bottom: 80px;
}
@media (max-width: 600px) {
  .process {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 140px;
}
@media (max-width: 1024px) {
  .process__step {
    width: 120px;
  }
}
.process__icon {
  width: 140px;
  height: 140px;
}
@media (max-width: 1024px) {
  .process__icon {
    width: 120px;
    height: 120px;
  }
}
.process__label {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 1024px) {
  .process__label {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .process__label {
    font-size: 18px;
  }
}
.process__arrow {
  width: 10px;
  height: 19px;
  flex-shrink: 0;
  margin-top: 60.5px;
}
@media (max-width: 600px) {
  .process__arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }
}

.company {
  padding: 60px 0 80px;
}
@media (max-width: 600px) {
  .company {
    padding: 40px 0 80px;
  }
}
.company__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.company__table {
  width: 100%;
  border-collapse: collapse;
}
.company__table tr {
  border-bottom: 1px solid #d9d9d9;
}
.company__table th,
.company__table td {
  padding: 24px 20px;
  text-align: left;
  font-size: 16px;
  line-height: 1.75;
  vertical-align: top;
}
@media (max-width: 600px) {
  .company__table th,
  .company__table td {
    display: block;
    width: 100%;
    padding: 8px 0;
  }
}
.company__table th {
  width: 220px;
  color: #00bbf4;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .company__table th {
    padding-bottom: 0;
  }
}
.company__table td {
  color: #222222;
}

.detail-hero {
  position: relative;
  margin-top: -90px;
  padding: 190px 0 60px;
  overflow: hidden;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100% 288px;
  background-image: linear-gradient(180deg, #00bbf4 5%, rgba(0, 245, 160, 0.5) 35%, rgba(255, 255, 255, 0) 95%);
}
.detail-hero__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 20px;
}
@media (max-width: 600px) {
  .detail-hero__inner {
    flex-direction: column;
    gap: 10px;
  }
}
.detail-hero__en {
  font-family: "Jost", sans-serif;
  font-size: 64px;
  color: #00bbf4;
  line-height: 1;
}
@media (max-width: 600px) {
  .detail-hero__en {
    font-size: 36px;
  }
}
.detail-hero__ja {
  font-size: 28px;
  font-weight: 700;
  color: #222222;
}
@media (max-width: 600px) {
  .detail-hero__ja {
    font-size: 18px;
  }
}

.detail-about {
  background: url("../img/bg-about-right.png") no-repeat right -20px;
  padding: 50px 0 80px;
}
@media (max-width: 1024px) {
  .detail-about {
    background: none;
  }
}
.detail-about__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1024px) {
  .detail-about__inner {
    flex-direction: column;
  }
}
.detail-about__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.detail-about__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.detail-about__eyebrow {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  color: #00bbf4;
}
.detail-about__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  color: #222222;
}
@media (max-width: 600px) {
  .detail-about__title {
    font-size: 22px;
  }
}
.detail-about__divider {
  width: 93px;
  height: 5px;
  border-radius: 100px;
  background: linear-gradient(90deg, #00bbf4, #fff70c);
}
.detail-about__text {
  font-size: 16px;
  line-height: 1.8;
}
.detail-about__text p + p {
  margin-top: 10px;
}
.detail-about__visual {
  flex-shrink: 0;
  width: 530px;
}
@media (max-width: 1024px) {
  .detail-about__visual {
    width: 75%;
  }
}
@media (max-width: 600px) {
  .detail-about__visual {
    width: 100%;
  }
}
.detail-about__visual img {
  width: 100%;
  height: auto;
}

.reasons {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: #eff9fd;
  border-radius: 30px;
}
.reasons__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.reasons__contents {
  display: flex;
  gap: 30px;
}
@media (max-width: 1024px) {
  .reasons__contents {
    flex-direction: column;
  }
}
.reasons__photo {
  width: 100%;
  max-width: 560px;
}
.reasons__photo .is-pc {
  display: block;
}
.reasons__photo .is-tablet {
  display: none;
}
@media (max-width: 1024px) {
  .reasons__photo {
    max-width: 100%;
    width: 100%;
    margin: auto;
  }
  .reasons__photo .is-pc {
    display: none;
  }
  .reasons__photo .is-tablet {
    display: block;
  }
}
.reasons__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 900px;
}
.reasons__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 50px 32px;
  background: #ffffff;
  border: 1px solid #00bbf4;
  border-radius: 10px;
  box-shadow: 5px 5px 0 0 #98dcf7;
  overflow: hidden;
  height: stretch;
}
@media (max-width: 600px) {
  .reasons__item {
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 20px 20px;
    height: 100%;
  }
}
.reasons__number {
  position: absolute;
  top: 5px;
  left: 5px;
  font-family: "Jost", sans-serif;
  font-weight: bold;
  font-size: 80px;
  color: #eff9fd;
  line-height: 1;
  z-index: 1;
}
@media (max-width: 600px) {
  .reasons__number {
    font-size: 50px;
  }
}
.reasons__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.reasons__title {
  font-size: 20px;
  font-weight: 700;
  color: #00bbf4;
  z-index: 2;
}
.reasons__text {
  font-size: 16px;
  line-height: 1.75;
}

.scope {
  padding: 80px 0;
  border-radius: 30px;
}
.scope__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1024px) {
  .scope__inner {
    flex-direction: column;
  }
}
.scope__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.scope__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.scope__eyebrow {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  color: #00bbf4;
}
.scope__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 600px) {
  .scope__title {
    font-size: 22px;
  }
}
.scope__title strong {
  color: #00bbf4;
  font-weight: 700;
}
.scope__divider {
  width: 100px;
  height: 5px;
  border-radius: 100px;
  background: linear-gradient(90deg, #00bbf4, #fff70c);
}
.scope__lead {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}
.scope__lead strong {
  font-weight: bold;
  color: #00bbf4;
}
.scope__text {
  font-size: 16px;
  line-height: 1.75;
}
.scope__diagram {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 568px;
  width: 100%;
}
.scope__circle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.4;
  overflow: hidden;
  background: linear-gradient(90deg, #00bbf4, #00f5c8);
}
.scope__circle::before {
  content: attr(data-number);
  position: absolute;
  top: -10px;
  right: 5px;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 56px;
  color: rgba(255, 255, 255, 0.25);
}
.scope__circle span {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}
.scope__circle:nth-child(2) {
  background: linear-gradient(135deg, #35c9e3, #00bbf4);
}
.scope__circle:nth-child(3) {
  background: linear-gradient(135deg, #8ecf27, #35d48a);
}
.scope__circle:nth-child(4) {
  background: linear-gradient(135deg, #faa019, #ffd54f);
}
.scope__circle:nth-child(5) {
  background: linear-gradient(135deg, #e26464, #faa019);
}
@media (max-width: 600px) {
  .scope__circle {
    width: 120px;
    height: 120px;
    font-size: 14px;
  }
}

.flow {
  padding: 80px 0;
  background: #eff9fd;
}
.flow__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.flow__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .flow__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .flow__grid {
    grid-template-columns: 1fr;
  }
}
.flow__step {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 25px 20px 30px;
  background: #ffffff;
  border: 1px solid #f5f5f5;
  border-radius: 10px;
}
.flow__head {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.flow__icon {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
}
.flow__label {
  display: flex;
  flex-direction: column;
  line-height: 1.75;
  font-size: 20px;
  font-weight: 700;
}
.flow__step-en {
  font-family: "Jost", sans-serif;
  font-weight: 400;
}
.flow__text {
  font-size: 16px;
  line-height: 1.75;
}
.flow__step .btn {
  margin-top: 15px;
  width: 200px;
  height: 50px;
  font-size: 14px;
}

.work-detail {
  padding: 50px 0 80px;
}
.work-detail__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.work-detail__tag {
  align-self: flex-start;
  padding: 3px 20px;
  background: #35c9e3;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}
.work-detail__title {
  font-size: 32px;
  font-weight: 700;
  color: #222222;
}
@media (max-width: 600px) {
  .work-detail__title {
    font-size: 24px;
  }
}
.work-detail__image-wrap {
  position: relative;
}
.work-detail__image-wrap::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -220px;
  width: 366px;
  height: 470px;
  background: url("../img/bg-work-right.png") no-repeat center/contain;
  z-index: 0;
}
@media (max-width: 600px) {
  .work-detail__image-wrap::before {
    display: none;
  }
}
.work-detail__image-wrap::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -210px;
  width: 316px;
  height: 340px;
  background: url("../img/bg-work-left.png") no-repeat center/contain;
  z-index: 0;
}
@media (max-width: 600px) {
  .work-detail__image-wrap::after {
    display: none;
  }
}
.work-detail__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 600px) {
  .work-detail__image {
    height: 220px;
  }
}
.work-detail__info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 40px;
  background: #ffffff;
}
@media (max-width: 600px) {
  .work-detail__info {
    padding: 24px;
  }
}
.work-detail__row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.work-detail__row-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
}
@media (max-width: 600px) {
  .work-detail__row-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
.work-detail__label {
  flex-shrink: 0;
  width: 180px;
  color: #00bbf4;
  font-weight: 700;
}
.work-detail__row-divider {
  height: 1px;
  background: #d9d9d9;
}
.work-detail__section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
}
.work-detail__purpose {
  display: flex;
  gap: 30px;
  align-items: center;
}
@media (max-width: 1024px) {
  .work-detail__purpose {
    flex-direction: column-reverse;
  }
}
.work-detail__purpose .work-detail__text {
  flex: 1;
}
.work-detail__purpose-image {
  flex-shrink: 0;
  width: 480px;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .work-detail__purpose-image {
    width: 100%;
  }
}
.work-detail__purpose-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.work-detail__section-title {
  padding: 20px 30px;
  background: linear-gradient(90deg, #00bbf4, #fff70c);
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
}
@media (max-width: 600px) {
  .work-detail__section-title {
    font-size: 20px;
    padding: 15px 20px;
  }
}
.work-detail__text {
  font-size: 16px;
  line-height: 1.75;
}
.work-detail__text p + p {
  margin-top: 20px;
}
.work-detail__stats {
  display: flex;
  gap: 10px;
}
@media (max-width: 600px) {
  .work-detail__stats {
    flex-direction: column;
  }
}
.work-detail__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #00bbf4;
  border-radius: 10px;
  box-shadow: 4px 4px 0 0 rgba(0, 187, 244, 0.2);
}
.work-detail__stat strong {
  color: #00bbf4;
  font-size: 24px;
  font-weight: 700;
}
.work-detail__stat span {
  font-size: 28px;
  font-weight: 700;
  color: #222222;
}
.work-detail__result-image {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
}
.work-detail__result-image img {
  width: 100%;
  height: auto;
  display: block;
}
.work-detail__voice {
  display: flex;
  gap: 30px;
  align-items: center;
}
@media (max-width: 1024px) {
  .work-detail__voice {
    flex-direction: column;
  }
}
.work-detail__voice-image {
  flex-shrink: 0;
  width: 480px;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .work-detail__voice-image {
    width: 100%;
  }
}
.work-detail__voice-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.work-detail__voice-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.work-detail__voice-eyebrow {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  color: #00bbf4;
}
.work-detail__voice-title {
  font-size: 22px;
  font-weight: 700;
  color: #222222;
}
.work-detail__voice-text {
  font-size: 14px;
  line-height: 1.75;
}
.work-detail__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .work-detail__gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .work-detail__gallery {
    grid-template-columns: 1fr;
  }
}
.work-detail__gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}
.work-detail__back {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  background: #ffffff;
  border: 1px solid #00bbf4;
  border-radius: 100px;
  color: #00bbf4;
  font-size: 16px;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.work-detail__back:hover {
  background: #00bbf4;
  color: #ffffff;
}
.work-detail__back-wrap {
  display: flex;
  justify-content: center;
  padding: 50px 0 80px;
}

.gallery {
  padding: 80px 0;
}
.gallery__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.gallery__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gallery__grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}

.sponsor {
  padding: 0 0 80px;
}
.sponsor__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  max-width: 1000px;
}
.sponsor__box {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 70px 40px 50px;
  background: #ffffff;
  border: 1px solid #00bbf4;
  border-radius: 20px;
  box-shadow: 6px 6px 12px rgba(0, 187, 244, 0.15);
}
@media (max-width: 600px) {
  .sponsor__box {
    padding: 50px 20px 40px;
  }
}
.sponsor__watermark {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Jost", sans-serif;
  font-size: 72px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(0, 187, 244, 0.08);
  white-space: nowrap;
  pointer-events: none;
}
@media (max-width: 600px) {
  .sponsor__watermark {
    font-size: 40px;
  }
}
.sponsor__title {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  color: #00bbf4;
  text-align: center;
}
@media (max-width: 600px) {
  .sponsor__title {
    font-size: 20px;
  }
}
.sponsor__text {
  position: relative;
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
}
.sponsor__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: 250px;
  margin-top: 10px;
  padding: 12px 24px;
  background: #ffffff;
  border: 1px solid #00bbf4;
  border-radius: 100px;
  color: #00bbf4 !important;
  font-size: 16px;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.sponsor__btn::after {
  content: "→";
}
.sponsor__btn:hover {
  background: #00bbf4;
  color: #ffffff !important;
}

.error404 {
  padding: 0 0 80px;
}
.error404__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.error404__text {
  font-size: 16px;
  line-height: 1.9;
}
.error404__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.error404__actions .btn {
  width: 260px;
}
.error404 .btn--outline {
  transition: background-color 0.3s ease, color 0.3s ease;
}
.error404 .btn--outline:hover {
  background: #00bbf4;
  color: #ffffff !important;
  opacity: 1;
}
.error404__link {
  color: #00bbf4;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
}

.thanks {
  padding: 0 0 80px;
}
.thanks__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.thanks__text {
  font-size: 16px;
  line-height: 1.9;
}
.thanks__text p + p {
  margin-top: 1em;
}
.thanks__actions {
  display: flex;
  justify-content: center;
}
.thanks__actions .btn {
  width: 260px;
}
.thanks .btn--outline {
  transition: background-color 0.3s ease, color 0.3s ease;
}
.thanks .btn--outline:hover {
  background: #00bbf4;
  color: #ffffff !important;
  opacity: 1;
}

.policy {
  padding: 50px 0 80px;
}
.policy__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.policy__lead {
  font-size: 16px;
  line-height: 1.8;
}
.policy__section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.policy__section p {
  font-size: 16px;
  line-height: 1.8;
}
.policy__heading {
  font-size: 20px;
  font-weight: 700;
  color: #00bbf4;
  padding-bottom: 10px;
  border-bottom: 1px solid #d9d9d9;
}
.policy__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 1.5em;
  list-style: disc;
  font-size: 16px;
  line-height: 1.8;
}
.policy__date {
  align-self: flex-end;
  font-size: 14px;
  color: #666666;
}

.sitemap {
  padding: 50px 0 80px;
}
.sitemap__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  max-width: 900px;
}
.sitemap__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sitemap__item > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #222222;
}
.sitemap__item > a:hover {
  color: #00bbf4;
}
.sitemap__item > a::before {
  content: "";
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-top: 2px solid #00bbf4;
  border-right: 2px solid #00bbf4;
  transform: rotate(45deg);
}
.sitemap__sublist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
  padding-left: 27px;
}
.sitemap__sublist a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #222222;
}
.sitemap__sublist a:hover {
  color: #00bbf4;
}
.sitemap__sublist a::before {
  content: "-";
  color: #00bbf4;
}

.download {
  padding: 50px 0 80px;
}
.download__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.download__lead {
  font-size: 16px;
  line-height: 1.8;
}
.download__notice {
  padding: 20px;
  background: #eff9fd;
  border-left: 4px solid #00bbf4;
  border-radius: 10px;
  color: #222222;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}

.download-form {
  padding: 40px;
  background: #eff9fd;
  border-radius: 30px;
}
@media (max-width: 600px) {
  .download-form {
    padding: 24px;
  }
}
.download-form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.download-form__group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.download-form__group--inline {
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid #d9d9d9;
}
.download-form__group--inline .download-form__label {
  flex-shrink: 0;
  width: 210px;
  padding-top: 2px;
}
.download-form__group--inline .download-form__checks,
.download-form__group--inline .wpcf7-form-control-wrap {
  flex: 1;
  width: auto;
}
@media (max-width: 600px) {
  .download-form__group--inline {
    flex-direction: column;
    gap: 10px;
  }
  .download-form__group--inline .download-form__label {
    width: 100%;
  }
}
.download-form__label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
}
.download-form__required {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  margin-top: 2px;
  padding: 2px 10px;
  border-radius: 100px;
  background: #e26464;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
.download-form__checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 30px;
}
.download-form__checks .wpcf7-form-control-wrap {
  width: auto;
}
.download-form__checks--column {
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 12px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
}
.download-form__checks .wpcf7-list-item {
  margin: 0;
}
.download-form__checks label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
  margin-right: 10px;
}
.download-form__checks input[type="checkbox"],
.download-form__checks input[type="radio"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: #00bbf4;
}
.download-form__checks a {
  color: #00bbf4;
  text-decoration: underline;
}
.download-form__check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
}
.download-form__check input {
  width: 16px;
  height: 16px;
  accent-color: #00bbf4;
}
.download-form__note {
  font-size: 12px;
  color: #666666;
}
.download-form__input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: #222222;
}
.download-form__input::placeholder {
  color: #999999;
}
.download-form__input:focus {
  outline: none;
  border-color: #00bbf4;
}
.download-form__textarea {
  height: auto;
  padding: 16px;
  resize: vertical;
}
.download-form__submit {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border: none;
  cursor: pointer;
  text-align: center;
  line-height: 1;
}

.hidden-fields-container {
  display: none;
}

.screen-reader-response {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
}

.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  color: #e26464;
  font-size: 12px;
}

.wpcf7-response-output {
  margin: 0 0 0 !important;
  padding: 16px 20px !important;
  border-radius: 10px !important;
  font-size: 14px;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #00bbf4 !important;
  color: #222222;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  border-color: #e26464 !important;
  color: #e26464;
}

.wpcf7-spinner {
  margin: 0 auto;
  display: block;
}

.service {
  padding: 80px 0;
  background: #eff9fd;
  border-radius: 30px;
}
.service__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.service__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .service__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .service__grid {
    grid-template-columns: 1fr;
  }
}
.service__card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #f5f5f5;
  border-radius: 10px;
}
.service__icon {
  width: 60px;
  height: 60px;
}
.service__title {
  font-size: 18px;
  font-weight: 700;
}
.service__desc {
  font-size: 16px;
  flex: 1;
}
.service__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
}
.service__link::after {
  content: "→";
  transition: transform 0.2s ease;
}
.service__link:hover::after {
  transform: translateX(4px);
}
.service__card--food .service__link {
  color: #2b92ff;
}
.service__card--anniversary .service__link {
  color: #8ecf27;
}
.service__card--corporate .service__link {
  color: #faa019;
}
.service__card--regional .service__link {
  color: #35c9e3;
}
.service__card--promotion .service__link {
  color: #5927cf;
}
.service__card--own .service__link {
  color: #e26464;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px 24px;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.image-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.image-modal__img {
  width: 760px;
  height: 428px;
  max-width: 100%;
  max-height: calc(100vh - 84px);
  object-fit: cover;
  border-radius: 10px;
}
.image-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.image-modal__close::before, .image-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 2px;
  background: #ffffff;
}
.image-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.image-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.works {
  padding: 80px 0;
  overflow-x: hidden;
  overflow-x: clip;
}
.works__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.works__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .works__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .works__grid {
    grid-template-columns: 1fr;
  }
}
.works__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #f5f5f5;
  border-radius: 10px;
  max-width: 388px;
  transition: opacity 0.3s ease;
}
.works__card:hover {
  opacity: 0.7;
}
.works__thumb {
  position: relative;
}
.works__thumb img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  max-width: 100%;
}
.works__tag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 3px 20px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}
.works__tag--food {
  background: #2b92ff;
}
.works__tag--anniversary {
  background: #8ecf27;
}
.works__tag--regional {
  background: #35c9e3;
}
.works__tag--corporate {
  background: #faa019;
}
.works__tag--promotion {
  background: #5927cf;
}
.works__tag--own {
  background: #e26464;
}
.works__body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  flex: 1;
}
.works__title {
  font-size: 18px;
  font-weight: 700;
}
.works__meta {
  font-size: 16px;
}
.works__meta p + p {
  margin-top: 0;
}
.works__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 5px;
  color: #00bbf4;
  font-size: 14px;
}
.works__link::after {
  content: "→";
}
.works__link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.works__more {
  padding: 10px 30px;
  min-width: 230px;
  white-space: nowrap;
  text-align: center;
  background: #ffffff;
  border: 1px solid #00bbf4;
  border-radius: 100px;
  color: #00bbf4 !important;
  font-weight: 700;
  font-size: 16px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.works__more:hover {
  background: #00bbf4;
  color: #ffffff !important;
}
.works__carousel {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 24px;
}
.works__carousel .slick-list {
  overflow: visible;
  margin: 0 -15px;
}
.works__carousel .slick-track {
  display: flex;
}
.works__carousel .slick-slide {
  height: auto;
  margin: 0 15px;
}
.works__carousel .slide-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 50px;
  height: 50px;
  padding: 0;
  border: none;
  background: none;
  line-height: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.works__carousel .slide-arrow svg {
  width: 100%;
  height: 100%;
}
.works__carousel .slide-arrow:hover {
  opacity: 0.7;
}
@media (max-width: 600px) {
  .works__carousel .slide-arrow {
    width: 40px;
    height: 40px;
  }
}
.works__carousel .prev-arrow {
  left: 0;
  transform: translate(-50%, -50%);
}
.works__carousel .next-arrow {
  right: 0;
  transform: translate(50%, -50%);
}
.works__grid--carousel {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  width: 100%;
}
.works__grid--carousel .works__card {
  flex: 0 0 380px;
}
.works__grid--carousel.slick-initialized {
  display: block;
}
.works__grid--carousel.slick-initialized .works__card {
  display: flex;
  flex: none;
  max-width: none;
}
@media (max-width: 600px) {
  .works__grid--carousel {
    gap: 16px;
  }
  .works__grid--carousel .works__card {
    flex: 0 0 78%;
  }
}

.works--related {
  width: 100%;
  background: #eff9fd;
  border-radius: 30px;
}

.news-archive {
  padding: 0 0 80px;
}
.news-archive__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.news-archive .news__list {
  gap: 0;
  border-top: 1px solid #e5e5e5;
}
.news-archive .news__item {
  background: transparent;
  border: none;
  border-bottom: 1px solid #e5e5e5;
  padding: 24px 8px;
}
.news-archive__empty {
  text-align: center;
  font-size: 16px;
  padding: 40px 0;
}
.news-archive__pager {
  margin-top: 40px;
}
.news-archive__pager ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.news-archive__pager a.page-numbers,
.news-archive__pager span.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #00bbf4;
  border-radius: 4px;
  background: #ffffff;
  color: #00bbf4;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.news-archive__pager a.page-numbers:hover, .news-archive__pager a.page-numbers.current,
.news-archive__pager span.page-numbers:hover,
.news-archive__pager span.page-numbers.current {
  background: #00bbf4;
  color: #ffffff;
}
.news-archive__pager a.page-numbers.dots,
.news-archive__pager span.page-numbers.dots {
  border: none;
  background: none;
  color: #222222;
}

.news {
  background: #eff9fd;
  margin-bottom: 80px;
}
.news__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 80px;
  align-items: center;
  border-radius: 30px;
  padding: 60px;
}
@media (max-width: 1024px) {
  .news__inner {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 40px 24px;
  }
}
.news__heading {
  flex-shrink: 0;
}
.news__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.news__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 20px;
  background: #ffffff;
}
.news__item:hover .news__arrow {
  transform: translateX(4px);
}
.news__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .news__meta {
    gap: 8px 20px;
  }
}
.news__date {
  font-size: 14px;
}
.news__tag {
  padding: 2px 10px;
  background: #00bbf4;
  color: #ffffff;
  font-size: 14px;
}
.news__title {
  font-size: 16px;
}
@media (max-width: 1024px) {
  .news__title {
    width: 100%;
  }
}
.news__arrow {
  flex-shrink: 0;
  color: #00bbf4;
  display: flex;
  align-items: center;
  transition: transform 0.2s ease;
}

.news-archive {
  width: 90%;
  max-width: 1200px;
  margin: 40px auto;
}
.news-archive a {
  font-size: 16px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px #d9d9d9 solid;
}
.news-archive a:hover .news__arrow {
  transform: translateX(4px);
}
.news-archive__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.news-archive__pagination a,
.news-archive__pagination span {
  font-size: 14px;
  padding: 8px;
  border-radius: 4px;
  color: #00bbf4;
  min-width: 40px;
  height: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  margin: 0 4px;
}
.news-archive__pagination a {
  border: 1px #00bbf4 solid;
  background: #fff;
}
.news-archive__pagination span {
  background: #eff9fd;
}

.news-detail {
  width: 90%;
  max-width: 900px;
  margin: 40px auto;
}
@media (max-width: 600px) {
  .news-detail {
    margin: 0 auto !important;
  }
}
.news-detail header {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px #efefef solid;
}
.news-detail__date {
  font-size: 16px;
  font-weight: bold;
  color: #00bbf4;
}
.news-detail__content img {
  width: 100%;
  margin: 40px auto;
}
.news-detail__content p {
  font-size: 16px;
  line-height: 1.8;
}
.news-detail__nav {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  justify-content: center;
}
.news-detail a {
  color: #00bbf4;
}
@media (max-width: 600px) {
  .news-detail__title {
    font-size: 5vw;
  }
}
.news-detail h2 {
  color: #fff;
  background: linear-gradient(90deg, #00bbf4, #fff70c);
  font-size: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  padding: 10px 20px;
  margin: 20px 0 30px;
}
@media (max-width: 600px) {
  .news-detail h2 {
    font-size: 20px;
  }
}
.news-detail p {
  margin: 20px 0;
}

.faq {
  padding: 80px 0;
  margin-bottom: 80px;
  background: #eff9fd;
}
.faq__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 80px;
  align-items: center;
  border-radius: 30px;
}
@media (max-width: 1024px) {
  .faq__inner {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 40px 24px;
  }
}
.faq__heading {
  flex-shrink: 0;
}
.faq__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.faq__item {
  display: flex;
  flex-direction: column;
  background: #ffffff;
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
  padding: 15px 20px;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.faq__q {
  flex-shrink: 0;
  color: #00bbf4;
  font-size: 14px;
  font-weight: 700;
}
.faq__question-text {
  font-size: 14px;
  text-align: left;
}
.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-left: auto;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #00bbf4;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.3s ease;
}
.faq__icon::before {
  width: 16px;
  height: 2px;
}
.faq__icon::after {
  width: 2px;
  height: 16px;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.75;
  color: #666666;
  transition: max-height 0.3s ease;
}
.faq__answer-inner {
  padding: 0 20px 20px;
}
.faq__item.is-open .faq__icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq__item.is-open .faq__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.cta {
  background: linear-gradient(90deg, #00bbf4, #00f5c8);
  position: relative;
  margin: 0 24px 80px;
  padding: 80px 24px;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  position: relative;
}
.cta::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg-cta.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 600px) {
  .cta::after {
    background-image: url("../img/bg-cta__sp.png");
  }
}
@media (max-width: 1024px) {
  .cta {
    padding: 80px 16px 40px;
  }
}
.cta::before {
  content: "CONTACT";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Jost", sans-serif;
  font-size: 150px;
  color: #ffffff;
  opacity: 0.15;
  white-space: nowrap;
  line-height: 1;
}
@media (max-width: 600px) {
  .cta::before {
    font-size: 60px;
    top: -10px;
  }
}
.cta__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1024px) {
  .cta__inner {
    padding: 0;
  }
}
.cta__title {
  font-size: 28px;
  color: #ffffff;
}
.cta__title .is-tablet {
  display: none;
}
@media (max-width: 1024px) {
  .cta__title {
    font-size: 24px;
    line-height: 1.4;
  }
  .cta__title .is-tablet {
    display: block;
  }
}
.cta__desc {
  font-size: 18px;
  color: #ffffff;
}
.cta__desc .is-tablet {
  display: none;
}
@media (max-width: 1024px) {
  .cta__desc {
    font-size: 16px;
  }
  .cta__desc .is-tablet {
    display: block;
  }
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
  width: 100%;
}
.cta__actions .btn {
  background: #ffffff;
  color: #00bbf4;
  justify-content: space-between;
}

.content {
  padding: 50px 0 80px;
}

.archive-report ul.p-work-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0;
}
@media (max-width: 600px) {
  .archive-report ul.p-work-list {
    flex-direction: column;
  }
}
.archive-report ul.p-work-list li.p-work-list__item {
  width: calc((100% - (20px * 2)) / 3);
  list-style: none;
}
@media (max-width: 600px) {
  .archive-report ul.p-work-list li.p-work-list__item {
    width: 100%;
  }
}
.archive-report ul.p-work-list li.p-work-list__item a:hover {
  opacity: .6;
}
.archive-report ul.p-work-list li.p-work-list__item .p-work-list__img img {
  aspect-ratio: 270 / 150;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.archive-report ul.p-work-list li.p-work-list__item .p-work-list__title {
  margin: 5px 0;
  font-weight: bold;
}
.archive-report ul.p-work-list li.p-work-list__item .p-work-list__date {
  color: #00bbf4;
  font-size: 12px;
}

.filter-tabs {
  padding: 40px 0 0;
}
.filter-tabs__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.filter-tabs__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  border: 1px solid #00bbf4;
  border-radius: 100px;
  background: #ffffff;
  color: #00bbf4;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.filter-tabs__item:hover, .filter-tabs__item.is-active {
  background: #00bbf4;
  color: #ffffff;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 0 80px;
}
.pagination__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #00bbf4;
  background: #ffffff;
  color: #00bbf4;
  font-size: 14px;
}
.pagination__arrow:hover {
  background: #00bbf4;
  color: #ffffff;
}
.pagination__list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #00bbf4;
  background: #ffffff;
  color: #00bbf4;
  font-size: 14px;
  font-weight: 700;
}
.pagination__item.is-active {
  background: #eff9fd;
  border-color: transparent;
  color: #222222;
}

.clients {
  padding: 50px 0;
  overflow: hidden;
}
.clients__row {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: clients-scroll 60s linear infinite;
}
@media (max-width: 600px) {
  .clients__row {
    gap: 30px;
  }
}
.clients__row:hover {
  animation-play-state: paused;
}
.clients__item {
  flex-shrink: 0;
  height: 50px;
  display: flex;
  align-items: center;
}
@media (max-width: 600px) {
  .clients__item {
    height: 36px;
  }
}
.clients__item img {
  height: 100%;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

@keyframes clients-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.about {
  padding: 80px 0;
  position: relative;
}
@media (max-width: 1024px) {
  .about {
    padding: 80px 0 80vw;
  }
}
.about::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/bg-about-photo.png") no-repeat center left;
  background-size: min(35%, 530px);
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 1024px) {
  .about::before {
    background-position: bottom left;
    background-size: 60%;
    bottom: 0;
    z-index: -1;
  }
}
.about::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/bg-about-right.png") no-repeat center right;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 1024px) {
  .about::after {
    background-position: bottom right;
    background-size: 160%;
    bottom: 0;
    z-index: -1;
  }
}
.about__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: right;
}
@media (max-width: 1024px) {
  .about__inner {
    flex-direction: column;
  }
}
.about__visual {
  display: flex;
  justify-content: center;
}
.about__visual img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.about__body {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: min(62vw, 810px);
}
@media (max-width: 1024px) {
  .about__body {
    width: 100%;
    margin: auto;
  }
}
.about__heading {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about__tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 20px;
  border-radius: 90px;
  background: linear-gradient(90deg, #00bbf4, #fff70c);
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
}
.about__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .about__title {
    font-size: 24px;
  }
}
.about__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
}
.about__text p {
  font-weight: bold;
}
.about__text p + p {
  margin-top: 20px;
}
.about__text .under-line {
  background: linear-gradient(transparent 70%, yellow 70%);
  display: inline;
}
.about__stats {
  display: flex;
  gap: 10px;
}
@media (max-width: 600px) {
  .about__stats {
    flex-direction: column;
  }
  .about__stats .is-tablet {
    display: block;
  }
}
.about__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 154px;
  padding: 20px 10px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #00bbf4;
  border-radius: 10px;
  box-shadow: 4px 4px 0 0 rgba(0, 187, 244, 0.2);
}
.about__stat strong {
  color: #00bbf4;
  font-size: 18px;
  font-weight: 700;
}
.about__stat .about__stat-number {
  font-size: 28px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 0 !important;
}
.about__stat .about__stat-number span {
  font-size: 14px;
}
.about__stat p {
  font-size: 14px;
}
.about__stat small {
  color: #666666;
  font-size: 12px;
}

.footer {
  border-top: 1px solid #d9d9d9;
  padding: 80px 0 20px;
}
.footer__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.footer__top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 1024px) {
  .footer__top {
    flex-direction: column;
    gap: 30px;
  }
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__brand img {
  width: 150px;
  height: auto;
}
.footer__nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .footer__nav {
    gap: 30px 20px;
  }
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 154px;
}
@media (max-width: 1024px) {
  .footer__col {
    gap: 4px;
  }
}
.footer__col dt {
  font-weight: 700;
  font-size: 16px;
  color: #00bbf4;
}
.footer__col dd a {
  display: block;
  line-height: 2;
  font-size: 14px;
}
.footer__col dd a:hover {
  opacity: 0.5;
  transition: all 0.2s;
}
.footer__copyright {
  font-size: 14px;
  text-align: center;
}
