:root {
  color-scheme: light;
  --accent: #f7a400;
  --accent-dark: #d58500;
  --accent-light: #ffe8bf;
  --text-main: #262626;
  --text-secondary: rgba(15, 23, 42, 0.75);
  --surface: #ffffff;
  --radius-pill: 999px;
  font-family: "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
}

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

/* buttonのデフォルトスタイルをリセット */
button {
	background: none;
	border: none;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
  cursor: pointer;
}

.hidden {
  display: none !important;
}

body {
  margin: 0;
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

p {
  margin: 0;
}

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

img {
  display: block;
}

.hidden-pc {
  display: none;
}

@media screen and (max-width: 1023px) {
  .hidden-pc {
    display: block;
  }
}

header {
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  height: 120px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

@media screen and (max-width: 1023px) {
  header {
    padding: 0 16px;
    height: 70px;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: #ffffff;
}

.brand-icon {
  width: clamp(40px, 7vw, 64px);
  height: auto;
  flex-shrink: 0;
  display: block;
}

nav {
  display: inline-flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--text-main);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 24px -18px rgba(15, 23, 42, 0.35);
  transition: transform 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

nav a:hover {
  color: var(--accent-dark);
  box-shadow: 0 18px 36px -22px rgba(247, 164, 0, 0.4);
}

nav button {
  display: flex;
  align-items: center;
  padding: 0 50px 0 85px;
  height: 60px;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  background-color: #FB6A02;
  border-radius: 34px;
  background-image: url('/static/img/icon_logout.svg');
  background-size: 50px 50px;
  background-position: 5px center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1023px) {
  nav button {
    padding: 0 25px;
    height: 50px;
    background-size: 40px 40px;
  }

  nav button span {
    display: none;
  }
}

main {
  
}

section {
  
}

.section-title {
  margin: 0;
  font-size: clamp(1.5rem, 4.5vw, 2.2rem);
  font-weight: 800;
  color: var(--text-main);
}

.section-eyebrow {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--accent-dark);
}

/* ヒーローセクション */
.hero {
  background-color: #FFAE00;
  border-radius: 0 0 36px 36px;
  position: relative;
  padding-bottom: 100px;
}

@media screen and (max-width: 1023px) {
  .hero {
    padding-bottom: 28px;
  }
}

.hero::after {
  content: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: calc(calc(746 / 1440) * 100%) calc(calc(694 / 1440) * 100%);
  grid-template-rows: min-content 1fr;
}

@media screen and (max-width: 1023px) {
  .hero-grid {
    display: block;
    padding-inline: 16px;
  }
}

.hero-logo__wrap {
  padding-top: 120px;
  padding-bottom: 24px;
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .hero-logo__wrap {
    padding-top: 70px;
    padding-bottom: 15px;
  }
}

.hero-logo__wrap::after {
  position: absolute;
  content: '';
  width: 100%;
  aspect-ratio: 746 / 900;
  background-image: url('/static/img/hero-bg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  z-index: 1;
}

@media screen and (max-width: 1023px) {
  .hero-logo__wrap::after {
    width: calc(100% + 32px);
    aspect-ratio: 390 / 265;
    background-image: url('/static/img/hero-bg-sp.svg');
    left: -16px;
  }
}

.hero-logo {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-logo__combined {
  width: clamp(14.375rem, 10.634rem + 15.962vw, 25rem);
  max-width: 88vw;
  height: auto;
  display: block;
}

.hero-title {
  margin-top: 16px;
  color: #fff;
  font-size: clamp(1.5rem, 1.236rem + 1.127vw, 2.25rem);
  text-align: center;
  line-height: 1.4;
  position: relative;
  z-index: 10;
}

.hero-img {
  grid-column: 2;
  grid-row: 1 / 3;
  position: relative;
  z-index: 10;
}

.hero-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media screen and (max-width: 1023px) {
  .hero-img img {
    border-radius: 20px;
  }
}

.hero-login__wrap {
  grid-column: 1;
  grid-row: 2;
  width: 100%;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.hero-login {
  color: #262626;
  background-color: #fff;
  border-radius: 20px;
  width: min(100%, 500px);
  padding: 32px 40px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: fit-content;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 1023px) {
  .hero-img {
    margin-bottom: 14px;
  }

  .hero-login__wrap {
    margin-top: 14px;
    padding-inline: 8px;
  }

  .hero-login {
    width: min(100%, 470px);
    padding: 26px 22px 24px;
  }
}

.hero-login > * + * {
  margin-top: 12px;
}

.hero-login__eyebrow {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-login__title {
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
}

.hero-login__mode-tabs {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 6px;
  border-radius: 12px;
  background: #f3f4f6;
}

.hero-login__mode {
  height: 42px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #4b5563;
  background: transparent;
}

.hero-login__mode.is-active {
  background: #ffffff;
  color: #111827;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}

.google-signup {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 18px;
  font-weight: 700;
  background: #fff;
}

@media screen and (max-width: 1023px) {
  .google-signup {
    font-size: 16px;
  }
}

.google-signup img {
  width: 28px;
  height: auto;
}

.hero-login__separator {
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  color: #4D4D4D;
  position: relative;
}

.hero-login__separator::before,
.hero-login__separator::after {
  position: absolute;
  content: '';
  width: calc(calc(100% - 110px) / 2);
  height: 1px;
  background: #4D4D4D;
  top: 50%;
}

.hero-login__separator::before {
  left: 0;
}

.hero-login__separator::after {
  right: 0;
}

.hero-auth-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-auth-field {
  width: 100%;
  display: grid;
  gap: 6px;
  text-align: left;
}

.hero-auth-field label {
  font-size: 14px;
  font-weight: 700;
  color: #374151;
}

.hero-auth-field input {
  width: 100%;
  height: 46px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  padding: 0 14px;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}

.hero-auth-field input:focus {
  outline: none;
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18);
}

.hero-auth-agreement {
  margin-top: 4px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 8px;
  text-align: left;
  font-size: 13px;
  color: #4b5563;
}

.hero-auth-agreement input {
  margin-top: 3px;
}

.hero-auth-agreement a {
  display: inline;
  text-decoration: underline;
  font-weight: 700;
}

.email-signup__button {
  margin-top: 4px;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #FB6A02;
  background-color: #FB6A02;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

@media screen and (max-width: 1023px) {
  .email-signup__button {
    font-size: 16px;
  }
}

.hero-login__message {
  min-height: 24px;
  margin: 0;
  text-align: left;
  color: #b91c1c;
  font-size: 13px;
  line-height: 1.5;
}

.hero-login__agreement {
  color: #4D4D4D;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

@media screen and (min-width: 1024px) {
  .hero-login {
    width: min(100%, 480px);
    padding: 24px 32px 20px;
  }

  .hero-login > * + * {
    margin-top: 10px;
  }

  .hero-login__title {
    font-size: 30px;
  }

  .hero-login__mode {
    height: 40px;
    font-size: 15px;
  }

  .google-signup,
  .email-signup__button {
    height: 46px;
    font-size: 17px;
  }

  .hero-auth-form {
    gap: 6px;
  }

  .hero-auth-field input {
    height: 42px;
  }

  .hero-login__separator {
    font-size: 13px;
  }

  .hero-login__message {
    min-height: 20px;
    font-size: 12px;
  }
}

@media screen and (max-width: 1023px) {
  .google-signup,
  .hero-auth-form,
  .email-signup__button {
    width: 100%;
  }

  .hero-login__title {
    font-size: 30px;
  }
}

@media screen and (max-width: 767px) {
  .hero-login__wrap {
    padding-inline: 0;
  }

  .hero-login {
    width: 100%;
    border-radius: 18px;
    padding: 22px 16px 20px;
  }

  .hero-login__title {
    font-size: 28px;
  }

  .hero-login__mode {
    font-size: 15px;
  }

  .hero-auth-field input,
  .google-signup,
  .email-signup__button {
    height: 50px;
  }
}

@media screen and (max-width: 420px) {
  .hero-login {
    padding: 20px 14px 18px;
  }

  .hero-login__title {
    font-size: 26px;
  }

  .hero-login__separator {
    font-size: 13px;
  }
}

.hero-experiment__wrap {
  padding: 0 40px;
}

@media screen and (max-width: 1023px) {
  .hero-experiment__wrap {
    padding: 0 16px;
  }
}

.hero-experiment {
  margin-top: 100px;
  background-color: #FFF8E0;
  max-width: 1200px;
  margin-inline: auto;
  padding: 50px calc(calc(80 / 1440) * 100vw) 40px calc(calc(400 / 1440) * 100vw);
  border-radius: 20px;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 1023px) {
  .hero-experiment {
    padding: 15px 16px 85px;
  }
}

.hero-experiment::after {
  position: absolute;
  content: '';
  width: 714px;
  height: 150px;
  background-color: #FFF8E0;
  top: -149px;
  left: 50%;
  transform: translateX(-50%);
  clip-path: circle(500px at 50% 500px);
  z-index: 10;
}

@media screen and (max-width: 1023px) {
  .hero-experiment::after {
    width: 213px;
    height: 45px;
    top: -44px;
    clip-path: circle(149px at 50% 149px);
  }
}

.hero-experiment__head {
  text-align: center;
  position: absolute;
  top: -130px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
}

@media screen and (max-width: 1023px) {
  .hero-experiment__head {
    position: static;
    transform: none;
  }

  .hero-experiment__icon img {
    width: 50px;
  }
}

.hero-experiment__icon img {
  margin-inline: auto;
}

.hero-experiment__title {
  margin-top: 7px;
  color: #FB6A02;
  font-size: 36px;
  font-weight: 700;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .hero-experiment__title {
    display: inline-block;
    font-size: 24px;
    font-weight: 500;
  }
}

.hero-experiment__title::before,
.hero-experiment__title::after {
  position: absolute;
  content: '';
  width: 29px;
  height: 51px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
}

.hero-experiment__title::before {
  background-image: url('/static/img/experiment-vector-left.svg');
  left: -45px;
}

.hero-experiment__title::after {
  background-image: url('/static/img/experiment-vector-right.svg');
  right: -45px;
}

@media screen and (max-width: 1023px) {
  .hero-experiment__title::before,
  .hero-experiment__title::after {
    width: 20px;
  }

  .hero-experiment__title::before {
    left: -20px;
  }

  .hero-experiment__title::after {
    right: -20px;
  }
}

.hero-experiment__img {
  position: absolute;
  bottom: -6px;
  left: 60px;
  z-index: 11;
}

@media screen and (max-width: 1023px) {
  .hero-experiment__img {
    bottom: -34px;
    right: -10px;
    left: auto;
  }
}

.hero-experiment__img img {
  width: calc(calc(300 / 1440) * 100vw);
  max-width: 300px;
  aspect-ratio: 11 / 12;
  object-fit: cover;
}

@media screen and (max-width: 1023px) {
  .hero-experiment__img img {
    width: 130px;
  }
}

.hero-experiment__text {
  color: #4D4D4D;
  font-size: 20px;
  line-height: 1.6;
}

@media screen and (max-width: 1023px) {
  .hero-experiment__text {
    margin-top: 16px;
    font-size: 16px;
  }
}

/* セクション見出し */
.section__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

@media screen and (max-width: 1023px) {
  .section__heading {
    flex-direction: column;
    gap: 8px;
  }
}

.section__heading-icon {
  width: 70px;
  height: 64px;
}

.section__heading-icon img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1023px) {
  .section__heading-icon {
    width: 50px;
    height: 48px;
  }
}

.section__heading-title {
  color: #FFAE00;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  height: 80px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFF8E0;
  border-radius: 40px;
  text-align: center;
}

@media screen and (max-width: 1023px) {
  .section__heading-title {
    font-size: 24px;
    width: 360px;
    height: 54px;
    padding: 0;
    border-radius: 25px;
  }

  .section__heading-title.section__heading-title--vertically-long {
    height: auto;
    line-height: 1.6;
  }
}

.section__heading-title.section__heading-title--orange {
  background-color: #FFAE00;
  color: #fff;
}

/* ABOUTセクション */
.about {
  padding: 80px 20px;
  max-width: 1200px;
  margin-inline: auto;
}

@media screen and (max-width: 1023px) {
  .about {
    padding: 40px 11px;
  }
}

.about__text {
  margin-top: 24px;
  font-size: 24px;
  line-height: 1.6;
  text-align: center;
}

@media screen and (max-width: 1023px) {
  .about__text {
    font-size: 16px;
  }
}

.about__img {
  margin-top: 40px;
  max-width: 800px;
  margin-inline: auto;
}

@media screen and (max-width: 1023px) {
  .about__img {
    margin-top: 24px;
    padding: 0 5px;
  }
}

.about__img img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

.about-feature__wrap {
  margin-top: 60px;
  max-width: 840px;
  margin-inline: auto;
}

@media screen and (max-width: 1023px) {
  .about-feature__wrap {
    margin-top: 24px;
    max-width: 600px;
  }
}

@media screen and (max-width: 767px) {
  .about-feature__wrap {
    max-width: 320px;
  }
}

.about-feature:nth-child(n + 2) {
  margin-top: 32px;
}

@media screen and (max-width: 1023px) {
  .about-feature:nth-child(n + 2) {
    margin-top: 32px;
  }
}

.about-feature__title {
  color: #FB6A02;
  font-size: 24px;
  text-align: center;
}

@media screen and (max-width: 1023px) {
  .about-feature__title {
    font-size: 20px;
  }
}

.about-feature__content {
  margin-top: 16px;
  background-color: #FFF8E0;
  border-radius: 40px;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

@media screen and (max-width: 1023px) {
  .about-feature__content {
    margin-top: 8px;
    border-radius: 20px;
    padding: 16px 8px;
    justify-content: space-between;
    gap: 0;
  }
}

@media screen and (max-width: 767px) {
  .about-feature__item--wide .about-feature__text {
    width: 100px;
  }
}

.about-feature__text {
  font-size: 14px;
  text-align: center;
}

@media screen and (max-width: 1023px) {
  .about-feature__text {
    font-size: 10px;
  }
}

.about-feature__img {
  margin-top: -10px;
  width: auto;
  height: 160px;
  text-align: center;
}

.about-feature__img img {
  width: auto;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1023px) {
  .about-feature__img {
    margin-top: 0;
    height: 80px;
  }
}

.about-feature__arrow {
  width: 20px;
  height: 100px;
}

@media screen and (max-width: 1023px) {
  .about-feature__arrow {
    width: 10px;
    height: 50px;
  }
}

.about-feature__arrow img {
  width: 100%;
  height: auto;
}

/* WHATセクション */
.what {
  background-color: #FFAE00;
  border-radius: 80px;
  padding-block: 80px;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .what {
    border-radius: 40px;
    padding-block: 40px;
    padding-inline: 16px;
  }
}

.what__title {
  margin-top: 60px;
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 1023px) {
  .what__title {
    margin-top: 60px;
    font-size: 36px;
  }
}

.what__text {
  margin-top: 16px;
  background-color: #fff;
  color: #FFAE00;
  line-height: 1.6;
  text-align: center;
  padding: 10px 0;
  margin-inline: auto;
  max-width: 640px;
}

@media screen and (max-width: 1023px) {
  .what__text {
    padding: 10px;
  }
}

.what__buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

@media screen and (max-width: 1023px) {
  .what__buttons {
    margin-top: 24px;
    flex-direction: column;
    gap: 16px;
  }
}

.what__button {
  background-color: #FB6A02;
  border-radius: 30px;
  width: 350px;
  height: 60px;
  padding-left: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  font-size: 24px;
  position: relative;
}

.what__button-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}

.what__button-icon img {
  width: 100%;
  height: auto;
}

.what__input {
  margin-top: 40px;
  margin-inline: auto;
  max-width: 1100px;
}

@media screen and (max-width: 1023px) {
  .what__input {
    margin-top: 24px;
  }
}

.what__input-field {
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid #ADADAD;
  border-radius: 10px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  padding: 33px 30px;
  font-size: 24px;
  resize: none;
  min-height: 190px;
}

@media screen and (max-width: 1023px) {
  .what__input-field {
    padding: 10px;
    font-size: 16px;
    min-height: 160px;
  }
}

.what__input-field::placeholder {
  color: #888;
}

.what__input-field:focus {
  outline: none;
}

/* SERVICEセクション */
.service {
  padding: 80px 30px;
}

@media screen and (max-width: 1023px) {
  .service {
    padding: 40px 35px;
  }
}

.service__items {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 1023px) {
  .service__items {
    gap: 32px;
  }
}

.service__item {
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
  position: relative;
  max-width: 400px;
}

.service__icon {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  z-index: 10;
}

@media screen and (max-width: 1023px) {
  .service__icon {
    top: -20px;
    left: -15px;
    width: 80px;
    height: 80px;
  }
}

.service__icon img {
  width: 100%;
  height: auto;
}

.service__img {
  width: 100%;
}

.service__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.service__content {
  padding: 24px 20px 30px;
  text-align: center;
}

.service__title {
  padding-bottom: 18px;
  color: #F7A400;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .service__title {
    padding-bottom: 8px;
  }
}

.service__title::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 3px;
  background-color: #FFAE00;
}

.service__text {
  margin-top: 30px;
  color: #000;
  line-height: 1.6;
}

@media screen and (max-width: 1023px) {
  .service__text {
    margin-top: 16px;
  }
}

.service__button {
  margin-top: 30px;
  margin-inline: auto;
  background: linear-gradient(90deg, #FFAB01 0%, #FB6D02 100%);
  border-radius: 20px;
  width: 243px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .service__button {
    margin-top: 16px;
  }
}

.service__button::after {
  position: absolute;
  content: '';
  background-image: url('/static/img/icon_arrow.svg');
  width: 24px;
  height: 24px;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

/* INCREASEセクション */
.increase {
  padding: 80px 30px;
  position: relative;
}

.increase::after {
  position: absolute;
  content: '';
  background-image: url('/static/img/please-bg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  aspect-ratio: 219/46;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 1023px) {
  .increase {
    padding: 40px 16px;
  }
}

.increase__content {
  margin-top: 60px;
  max-width: 1040px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 1023px) {
  .increase__content {
    margin-top: 24px;
    max-width: 500px;
    flex-direction: column;
    gap: 16px;
  }
}

.increase__img {
  width: 500px;
  height: 301px;
  border-radius: 20px;
}

@media screen and (max-width: 1023px) {
  .increase__img {
    width: 100%;
    height: auto;
  }
}

.increase__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.increase__text {
  flex: 1;
  font-size: 24px;
  line-height: 1.6;
}

@media screen and (max-width: 1023px) {
  .increase__text {
    font-size: 16px;
  }
}

/* PLEASEセクション */
.please {
  background-color: #FFF8E0;
  padding: 80px 30px;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .please {
    padding: 40px 16px;
  }
}

.please-form {
  margin-top: 60px;
  margin-inline: auto;
  max-width: 1100px;
  text-align: center;
}

@media screen and (max-width: 1023px) {
  .please-form {
    margin-top: 24px;
  }
}

.please-form__title {
  color: #E39B00;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
}

@media screen and (max-width: 1023px) {
  .please-form__title {
    font-size: 24px;
    font-weight: 500;
  }
}

.please-form__text {
  margin-top: 16px;
  margin-inline: auto;
  max-width: 891px;
  padding: 10px;
  background-color: #fff;
  color: #FFAE00;
  font-size: 24px;
  line-height: 1.6;
}

@media screen and (max-width: 1023px) {
  .please-form__text {
    max-width: 400px;
    font-size: 16px;
  }
}

.please-form__textarea {
  margin-top: 24px;
  width: 100%;
  min-height: 190px;
  background-color: #F8F9FA;
  border: 1px solid #8A8A8A;
  border-radius: 10px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  padding: 33px 30px;
  line-height: 1.6;
  resize: none;
}

@media screen and (max-width: 1023px) {
  .please-form__textarea {
    margin-top: 16px;
    padding: 10px;
    max-width: 800px;
  }
}

.please-form__textarea::placeholder {
  color: #8A8A8A;
}

.please-form__textarea:focus {
  outline: none;
}

.please-form__button {
  margin-top: 24px;
  width: 300px;
  height: 60px;
  background: linear-gradient(99deg, #FFAB01 0%, #FB6D02 100%);
  border-radius: 30px;
  color: #fff;
  font-size: 24px;
  position: relative;
}

.please-form__button::after {
  position: absolute;
  content: '';
  background-image: url('/static/img/icon_arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

@media screen and (max-width: 1023px) {
  .please-form__button {
    margin-top: 16px;
  }
}

.please-info {
  margin-top: 60px;
  max-width: 1100px;
  margin-inline: auto;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.please-info__upper {
  padding: 30px 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

@media screen and (max-width: 1023px) {
  .please-info__upper {
    padding: 20px 16px 0;
    flex-direction: column;
    gap: 0;
  }
}

.please-info__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  line-height: 1.6;
}

.please-info__highlight {
  margin-top: 8px;
  font-size: 24px;
  line-height: 1.6;
}

.please-info__highlight span {
  color: #FB6A02;
}

.please-info__img {
  width: 450px;
  flex-shrink: 0;
  border-radius: 10px;
}

@media screen and (max-width: 1023px) {
  .please-info__img {
    max-width: 500px;
    width: 100%;
  }
}

.please-info__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.please-voices {
  margin-top: 40px;
  background-color: #FFAE00;
  padding: 30px;
}

@media screen and (max-width: 1023px) {
  .please-voices {
    padding: 30px 16px;
  }
}

.please-voice__title {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}

@media screen and (max-width: 1023px) {
  .please-voice__title {
    font-size: 18px;
    font-weight: 600;
  }
}

.please-voice__list {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 1023px) {
  .please-voice__list {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

.please-voice__card {
  max-width: 500px;
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 1023px) {
  .please-voice__card {
    padding: 16px;
  }
}

.please-voice__header {
  display: flex;
  align-items: center;
  gap: 24px;
}

@media screen and (max-width: 1023px) {
  .please-voice__header {
    gap: 16px;
    justify-content: center;
  }
}

.please-voice__avatar {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  border-radius: 50%;
}

@media screen and (max-width: 1023px) {
  .please-voice__avatar {
    width: 80px;
    height: 80px;
  }
}

.please-voice__avatar img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.please-voice__role {
  font-size: 24px;
  line-height: 1.6;
}

@media screen and (max-width: 1023px) {
  .please-voice__role {
    font-size: 18px;
  }
}

.please-voice__text {
  margin-top: 24px;
  line-height: 1.6;
}

@media screen and (max-width: 1023px) {
  .please-voice__text {
    margin-top: 16px;
  }
}

/* GOALセクション */
.goal {
  background-color: #FFAE00;
  padding: 80px 30px;
}

@media screen and (max-width: 1023px) {
  .goal {
    padding: 40px 16px;
  }
}

.goal__box {
  margin-top: 57px;
  max-width: 1100px;
  margin-inline: auto;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
}

@media screen and (max-width: 1023px) {
  .goal__box {
    margin-top: 24px;
  }
}

.goal__header {
  padding: 40px 40px 0;
}

@media screen and (max-width: 1023px) {
  .goal__header {
    padding: 24px 16px 0;
  }
}

.goal__header-title {
  background-color: #C4E2FF;
  border-radius: 40px;
  margin-inline: auto;
  width: 583px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0057B0;
  font-size: 36px;
  font-weight: 700;
}

@media screen and (max-width: 1023px) {
  .goal__header-title {
    max-width: 500px;
    width: 100%;
    height: 60px;
    font-size: 19px;
  }
}

.goal__header-text {
  margin-top: 48px;
  font-size: 24px;
  text-align: center;
}

@media screen and (max-width: 1023px) {
  .goal__header-text {
    margin-top: 16px;
    font-size: 16px;
  }
}

.goal__body {
  margin-top: 80px;
  background-color: #E8F2FC;
  padding: 40px;
}

@media screen and (max-width: 1023px) {
  .goal__body {
    margin-top: 40px;
    padding: 40px 16px;
  }
}

.goal__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media screen and (max-width: 1023px) {
  .goal__item {
    gap: 8px;
  }
}

.goal__item:nth-child(n + 2) {
  margin-top: 80px;
}

.goal__card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.1);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

@media screen and (max-width: 1023px) {
  .goal__card {
    padding: 16px;
    flex-direction: column;
    gap: 24px;
  }
}

.goal__img {
  width: 300px;
  height: 300px;
  flex-shrink: 0;
  border-radius: 10%;
  overflow: hidden;
}

@media screen and (max-width: 1023px) {
  .goal__img {
    width: 100%;
    height: 180px;
  }
}

.goal__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.goal__content {
  flex: 1;
}

.goal__title {
  color: #FFAE00;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 16px;
  border-bottom: 3px solid #FFAE00;
}

@media screen and (max-width: 1023px) {
  .goal__title {
    font-size: 24px;
  }
}

.goal__lead {
  margin-top: 16px;
  color: #FB6A02;
  font-size: 18px;
  font-weight: 700;
}

@media screen and (max-width: 1023px) {
  .goal__lead {
    margin-top: 8px;
    font-size: 16px;
  }
}

.goal__text {
  margin-top: 16px;
}

@media screen and (max-width: 1023px) {
  .goal__text {
    margin-top: 8px;
  }
}

.goal__arrow {
  margin-top: 7px;
  width: 498px;
}

@media screen and (max-width: 1023px) {
  .goal__arrow {
    margin-top: 3px;
    width: 200px;
  }
}

.goal__arrow img {
  width: 100%;
  height: auto;
}

.goal__answer {
  width: 100%;
  background-color: #0057B0;
  border-radius: 20px;
  box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1023px) {
  .goal__answer {
    padding: 16px;
  }
}

.goal__answer p {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: calc(40 / 30);
  text-align: center;
}

@media screen and (max-width: 1023px) {
  .goal__answer p {
    font-size: 18px;
    line-height: 1.6;
  }
}

/* CTAセクション */
.cta {
  background-color: #FB6A02;
  padding: 40px 30px;
  position: relative;
}

.cta::before {
  position: absolute;
  content: '';
  background-image: url('/static/img/cta-bg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

@media screen and (max-width: 1023px) {
  .cta {
    padding: 40px 20px;
  }

  .cta::before {
    background-image: url('/static/img/cta-bg-sp.svg');
  }
}

.cta__content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.cta__icon {
  width: 70px;
  margin-inline: auto;
}

@media screen and (max-width: 1023px) {
  .cta__icon {
    width: 50px;
  }
}

.cta__icon img {
  width: 100%;
  height: auto;
}

.cta__title {
  margin-top: 8px;
  display: inline-block;
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  position: relative;
}

@media screen and (max-width: 1100px) {
  .cta__title {
    margin-top: 0;
    font-size: 18px;
    line-height: 1.6;
  }
}

.cta__title::before,
.cta__title::after {
  position: absolute;
  content: '';
  width: 29px;
  height: 51px;
  background-color: #fff;
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
  top: 50%;
  transform: translateY(-50%);
}

.cta__title::before {
  mask-image: url('/static/img/experiment-vector-left.svg');
  left: -45px;
}

.cta__title::after {
  mask-image: url('/static/img/experiment-vector-right.svg');
  right: -45px;
}

@media screen and (max-width: 1023px) {
  .cta__title::before,
  .cta__title::after {
    width: 20px;
    height: 35px;
    top: auto;
    transform: none;
    bottom: 0;
  }

  .cta__title::before {
    left: -22px;
  }

  .cta__title::after {
    right: -22px;
  }
}

.cta__button {
  margin-top: 40px;
  margin-inline: auto;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  max-width: 350px;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FB6A02;
  font-size: 24px;
  position: relative;
}

.cta__button::after {
  position: absolute;
  content: '';
  width: 24px;
  height: 24px;
  mask-image: url('/static/img/icon_arrow.svg');
  background-color: #FB6A02;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

@media screen and (max-width: 1023px) {
  .cta__button {
    margin-top: 17px;
  }
}

/* HINTセクション */
.hint {
  padding: 80px 30px;
  max-width: 1100px;
  margin-inline: auto;
}

@media screen and (max-width: 1023px) {
  .hint {
    padding: 40px 16px;
  }
}

.hint__subtitle {
  margin-top: 34px;
  font-size: 24px;
  line-height: 1;
  text-align: center;
  color: #000;
}

@media screen and (max-width: 1023px) {
  .hint__subtitle {
    display: none;
  }
}

.hint__talks {
  margin-top: 74px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

@media screen and (max-width: 1023px) {
  .hint__talks {
    margin-top: 24px;
  }
}

.hint__talk {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media screen and (max-width: 1023px) {
  .hint__talk {
    gap: 16px;
  }
}

/* お客様の吹き出し（左寄り） */
.hint__customer {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

@media screen and (max-width: 1023px) {
  .hint__customer {
    gap: 8px;
  }
}

.hint__customer-avatar {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}

@media screen and (max-width: 1023px) {
  .hint__customer-avatar {
    width: 80px;
    height: 80px;
  }
}

.hint__customer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hint__customer-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 600px;
}

@media screen and (max-width: 1023px) {
  .hint__customer-body {
    margin-top: 10px;
  }
}

.hint__customer-name {
  padding-left: 15px;
  font-size: 24px;
  line-height: 1.6;
  color: #8A8A8A;
}

@media screen and (max-width: 1023px) {
  .hint__customer-name {
    padding-left: 0;
    font-size: 16px;
    line-height: 1;
  }
}

.hint__customer-balloon {
  margin-left: 26px;
  border-radius: 20px;
  box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.1);
  padding: 20px 30px;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .hint__customer-balloon {
    margin-left: 0;
    padding: 10px;
    border-radius: 10px;
  }
}

.hint__customer-balloon::before {
  position: absolute;
  content: '';
  width: 26px;
  height: 30px;
  background-color: #fff;
  mask-image: url('/static/img/hint-vector-left.svg');
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
  top: 16px;
  left: -26px;
}

@media screen and (max-width: 1023px) {
  .hint__customer-balloon::before {
    width: 9px;
    height: 10px;
    top: 20px;
    left: -9px;
  }
}

.hint__customer-balloon p {
  
}

@media screen and (max-width: 1023px) {
  .hint__customer-balloon p {
    font-size: 15px;
  }
}

/* しごとんの吹き出し（右寄り） */
.hint__shigoton {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 9px;
}

@media screen and (max-width: 1023px) {
  .hint__shigoton {
    gap: 8px;
  }
}

.hint__shigoton-body {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  max-width: 600px;
  flex: 1;
}

@media screen and (max-width: 1023px) {
  .hint__shigoton-body {
    margin-top: 10px;
  }
}

.hint__shigoton-name {
  padding-right: 30px;
  font-size: 24px;
  color: #FFAE00;
  text-align: right;
}

@media screen and (max-width: 1023px) {
  .hint__shigoton-name {
    padding-right: 0;
    font-size: 16px;
    line-height: 1;
  }
}

.hint__shigoton-balloon {
  margin-right: 26px;
  background-color: #FFF8E0;
  border-radius: 20px;
  box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.1);
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .hint__shigoton-balloon {
    margin-right: 0;
    padding: 22px 10px 24px;
    border-radius: 10px;
    gap: 10px;
  }
}

.hint__shigoton-balloon::before {
  position: absolute;
  content: '';
  width: 26px;
  height: 51px;
  background-color: #FFF8E0;
  mask-image: url('/static/img/hint-vector-right.svg');
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
  top: 16px;
  right: -26px;
}

@media screen and (max-width: 1023px) {
  .hint__shigoton-balloon::before {
    width: 9px;
    height: 10px;
    top: 20px;
    right: -9px;
  }
}

.hint__shigoton-balloon p {
  
}

@media screen and (max-width: 1023px) {
  .hint__shigoton-balloon p {
    font-size: 15px;
  }
}

.hint__shigoton-accent {
  color: #FB6A02;
}

.hint__shigoton-avatar {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
}

@media screen and (max-width: 1023px) {
  .hint__shigoton-avatar {
    width: 80px;
    height: 80px;
  }
}

.hint__shigoton-avatar img {
  width: 100%;
  height: auto;
}

.hint__shigoton-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 60px;
  background-color: #FB6A02;
  border-radius: 30px;
  color: #fff;
  font-size: 24px;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .hint__shigoton-button {
    width: 250px;
    height: 40px;
    font-size: 16px;
  }
}

.hint__shigoton-button::after {
  position: absolute;
  content: '';
  width: 30px;
  height: 30px;
  mask-image: url('/static/img/icon_arrow.svg');
  mask-size: cover;
  mask-repeat: no-repeat;
  background-color: #fff;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
}

@media screen and (max-width: 1023px) {
  .hint__shigoton-button::after {
    right: 8px;
  }
}

.hint__shigoton-button-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
}

@media screen and (max-width: 1023px) {
  .hint__shigoton-button-icon {
    left: 5px;
    width: 30px;
    height: 30px;
  }
}

.hint__shigoton-button-icon img {
  width: 100%;
  height: auto;
}

/* ABOUT USセクション */
.about-us {
  background-color: #FFF8E0;
  padding: 80px 20px;
}

@media screen and (max-width: 1023px) {
  .about-us {
    padding: 40px 15px;
  }
}

.about-us__company {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
}

@media screen and (max-width: 1023px) {
  .about-us__company {
    margin-top: 32px;
    flex-direction: column-reverse;
    align-items: center;
    gap: 24px;
  }
}

.about-us__company-content {
  flex: 1;
}

.about-us__company-button {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 60px;
  border-radius: 30px;
  background: linear-gradient(99deg, #FFAB01 0%, #FB6D02 100%);
  color: #fff;
  font-size: 24px;
  text-decoration: underline;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .about-us__company-button {
    margin-top: 32px;
    margin-inline: auto;
    width: 100%;
    max-width: 300px;
  }
}

.about-us__company-button::after {
  position: absolute;
  content: '';
  width: 24px;
  height: 24px;
  mask-image: url('/static/img/icon_arrow.svg');
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.about-us__company-img {
  flex-shrink: 0;
  width: 500px;
}

@media screen and (max-width: 1023px) {
  .about-us__company-img {
    width: 100%;
    max-width: 700px;
  }
}

.about-us__company-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ABOUT US - プロフィールカード */
.about-us__profile {
  margin-top: 60px;
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media screen and (max-width: 1023px) {
  .about-us__profile {
    margin-top: 32px;
    padding: 30px 16px;
    max-width: 700px;
  }
}

.about-us__profile-head {
  display: flex;
  align-items: center;
  gap: 40px;
}

@media screen and (max-width: 1023px) {
  .about-us__profile-head {
    flex-direction: column;
    gap: 24px;
  }
}

.about-us__profile-img {
  width: 300px;
  height: 300px;
  border-radius: 10%;
  overflow: hidden;
}

@media screen and (max-width: 1023px) {
  .about-us__profile-img {
    width: 100%;
    max-width: 500px;
  }
}

.about-us__profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-us__profile-content {
  flex: 1;
}

.about-us__profile-title {
  margin-top: 11px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: #FFAE00;
  padding-bottom: 16px;
  border-bottom: 3px solid #FFAE00;
}

@media screen and (max-width: 1023px) {
  .about-us__profile-title {
    font-size: 18px;
    line-height: 1.6;
    padding-bottom: 8px;
  }
}

.about-us__profile-name {
  margin-top: 16px;
  font-size: 24px;
  font-weight: 700;
  color: #FB6A02;
}

@media screen and (max-width: 1023px) {
  .about-us__profile-name {
    margin-top: 8px;
    font-size: 20px;
  }
}

.about-us__profile-text {
  margin-top: 16px;
}

@media screen and (max-width: 1023px) {
  .about-us__profile-text {
    margin-top: 8px;
  }
}

/* ABOUT US - 経歴・役割 */
.about-us__profile-details {
  margin-top: 24px;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

@media screen and (max-width: 1023px) {
  .about-us__profile-details {
    flex-direction: column;
    gap: 16px;
  }
}

.about-us__profile-detail {
  width: 400px;
}

@media screen and (max-width: 1023px) {
  .about-us__profile-detail {
    width: 100%;
  }
}

.about-us__profile-detail-title {
  border-left: 3px solid #FB6A02;
  padding: 5px 10px;
  font-weight: 500;
}

.about-us__profile-detail-list {
  margin: 0;
  margin-top: 8px;
  padding-left: 21px;
  font-size: 14px;
  font-weight: 400;
  list-style: disc;
}

@media screen and (max-width: 1023px) {
  .about-us__profile-detail-list {
    font-size: 12px;
    padding-left: 18px;
  }
}

/* SUGOIセクション */
.sugoi {
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

@media screen and (max-width: 1023px) {
  .sugoi {
    padding-top: 40px;
  }
}

.sugoi__header {
  
}

@media screen and (max-width: 1023px) {
  .sugoi__header {

  }
}

.sugoi__subtitle {
  margin-top: 34px;
  font-size: 24px;
  line-height: 1;
  color: #000;
  text-align: center;
}

@media screen and (max-width: 1023px) {
  .sugoi__subtitle {
    margin-top: 24px;
    line-height: 1.6;
  }
}

.sugoi__cards {
  margin-top: 160px;
  display: flex;
  gap: 29px;
  justify-content: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 1023px) {
  .sugoi__cards {
    margin-top: 24px;
    flex-direction: column;
    align-items: center;
    padding-inline: 16px;
  }
}

.sugoi__card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.15);
  width: 350px;
  padding: 120px 20px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .sugoi__card {
    width: 100%;
    max-width: 358px;
    padding: 145px 16px 20px;
  }
}

.sugoi__card-icon {
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 270px;
  height: 270px;
}

@media screen and (max-width: 1023px) {
  .sugoi__card-icon {
    top: 0;
    width: 136px;
    height: 136px;
  }
}

.sugoi__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sugoi__card-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  color: #FB6A02;
  text-align: center;
}

.sugoi__card-text {
  margin-top: 16px;
  color: #000;
}

/* SUGOI - 動画エリア */
.sugoi__movie {
  margin-top: 80px;
  max-width: 960px;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .sugoi__movie {
    margin-top: 40px;
    padding-inline: 16px;
  }
}

.sugoi__movie-img {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.sugoi__movie-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sugoi__movie-button {
  margin-top: 24px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 243px;
  height: 40px;
  border-radius: 20px;
  background: linear-gradient(92deg, #FFAB01 0%, #FB6D02 100%);
  color: #fff;
  position: relative;
}

.sugoi__movie-button::after {
  position: absolute;
  content: '';
  width: 24px;
  height: 24px;
  mask-image: url('/static/img/icon_arrow.svg');
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

@media screen and (max-width: 1023px) {
  .sugoi__movie-button {
    margin-top: 16px;
  }
}

/* SUGOI - 波形背景 */
.sugoi__bg {
  margin-top: 80px;
  width: 100%;
}

.sugoi__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* EXSAMPLEセクション */
.exsample {
  background-color: #F1FFDE;
  padding: 80px 20px 120px;
}

@media screen and (max-width: 1023px) {
  .exsample {
    padding: 40px 16px 80px;
  }
}

.exsample__inner {
  max-width: 1020px;
  width: 100%;
  margin-inline: auto;
}

@media screen and (max-width: 1023px) {
  .exsample__inner {
    max-width: 700px;
  }
}

.exsample__header {

}

.exsample__subtitle {
  margin-top: 24px;
  font-size: 24px;
  text-align: center;
}

@media screen and (max-width: 1023px) {
  .exsample__subtitle {
    font-size: 16px;
    text-align: left;
  }
}

.exsample__card {
  margin-top: 80px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .exsample__card {
    margin-top: 24px;
    padding: 24px 16px;
  }
}

.exsample__card-img {
  width: 100%;
  aspect-ratio: 960 / 545;
  border-radius: 10px;
  overflow: hidden;
}

.exsample__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exsample__card-body {
  margin-top: 30px;
}

@media screen and (max-width: 1023px) {
  .exsample__card-body {
    margin-top: 24px;
  }
}

.exsample__card-title {

}

.exsample__card-name {
  font-size: 24px;
}

.exsample__card-lead {
  margin-top: 16px;
  font-size: 20px;
  line-height: 1.5;
  color: #FB6A02;
  padding-bottom: 5px;
  border-bottom: 1px solid #FB6A02;
}

@media screen and (max-width: 1023px) {
  .exsample__card-lead {
    font-size: 18px;
    line-height: 1.6;
  }
}

.exsample__card-text {
  margin-top: 16px;
}

.exsample__highlight {
  color: #FFAE00;
}

/* MODELセクション */
.model {
  background-color: #FFF8E0;
  padding: 80px 20px 120px;
}

@media screen and (max-width: 1023px) {
  .model {
    padding: 40px 16px 80px;
  }
}

.model__inner {
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
}

.model__header {
  text-align: center;
}

.model__subtitle {
  margin-top: 24px;
  display: inline-block;
  font-size: 24px;
  color: #000;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .model__subtitle {
    margin-top: 16px;
  }
}

.model__subtitle::before,
.model__subtitle::after {
  position: absolute;
  content: '';
  width: 55px;
  height: 1px;
  background-color: #262626;
  top: 50%;
  transform: translateY(-50%);
}

.model__subtitle::before {
  left: -71px;
}

.model__subtitle::after {
  right: -71px;
}

.model__text {
  margin-top: 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #000;
  text-align: center;
}

.model__img {
  margin-top: 40px;
  width: 100%;
  max-width: 1200px;
}

.model__img img {
  width: 100%;
  height: auto;
}

/* フッター */
.footer {
  padding: 40px 20px;
  background-color: #FFAE00;
}

.footer__logo {
  width: 250px;
  height: 82px;
  margin-inline: auto;
}

.footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer__nav {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}

@media screen and (max-width: 1023px) {
  .footer__nav {
    flex-direction: column;
    gap: 16px;
  }
}

.footer__nav-link {
  color: #FFF;
  font-size: 18px;
}

.footer__copy {
  margin-top: 32px;
  font-size: 12px;
  color: #FFF;
  text-align: center;
}
