@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;800&family=Noto+Serif+JP:wght@700;900&family=Poppins:wght@600;700;800&display=swap");
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #000000;
  background-color: #FFFFFF;
}

* {
  box-sizing: border-box;
}

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

/* ========== Buttons ========== */
.btn {
  padding: 14px 36px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #F26522 0%, #F59E0B 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 60px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  border: none;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.btn .icon svg {
  display: block;
}
.btn .icon svg path {
  fill: #FFFFFF;
}
.btn.btn-dark {
  background: linear-gradient(135deg, #F26522 0%, #F59E0B 100%);
  border: none;
  box-shadow: 0 4px 20px rgba(242, 101, 34, 0.3);
}
.btn.btn-dark:hover {
  background: linear-gradient(135deg, #D4520E 0%, #D98A09 100%);
  border: none;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(242, 101, 34, 0.4);
}
.btn.btn-dark .icon svg path {
  fill: #FFFFFF;
}
.btn.btn-light {
  background: #FFFFFF;
  border: 2px solid #F26522;
  color: #F26522;
}
.btn.btn-light:hover {
  background: #FFF7ED;
  border: 2px solid #F26522;
}
.btn.btn-light .icon svg {
  display: block;
}
.btn.btn-light .icon svg path {
  fill: #F26522;
}
.btn.btn-outline-dark {
  border: 2px solid #F26522;
  background: transparent;
  color: #F26522;
}
.btn.btn-outline-dark .icon svg path {
  fill: #F26522;
}
.btn.btn-outline-light {
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  background: transparent;
}
.btn.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
}
.btn.btn-outline-light .icon svg path {
  fill: #FFFFFF;
}

.btn-cta {
  width: 100%;
  box-shadow: 0 4px 20px rgba(242, 101, 34, 0.3);
}
@media screen and (min-width: 769px) {
  .btn-cta {
    width: 280px;
    height: 72px;
    font-size: 18px;
  }
}

/* ========== Section Header ========== */
.section-header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
.section-header .section-header__title {
  color: #000000;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.5;
  margin: 0;
  letter-spacing: 1px;
}
@media screen and (min-width: 769px) {
  .section-header .section-header__title {
    font-size: 38px;
  }
}
.section-header .section-header__text {
  color: #78716C;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  margin: 0;
}

.notice {
  color: #A8A29E;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
}

/* ========== Page Top ========== */
#pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s;
}
#pagetop.visible {
  opacity: 1;
  pointer-events: auto;
}
#pagetop svg {
  width: 53px;
  height: auto;
}

/* ========== Layout ========== */
.container {
  padding: 0 24px;
  margin: 0 auto;
  max-width: 1228px;
}

.container-slim {
  padding: 0 24px;
  margin: 0 auto;
  max-width: 948px;
}

/* ========== Header ========== */
#header {
  width: 100%;
  height: 80px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 769px) {
  #header {
    padding: 0 40px;
  }
}
#header .logo img {
  height: 28px;
  width: auto;
}
@media screen and (min-width: 769px) {
  #header .logo img {
    height: 34px;
  }
}
#header .header-cta {
  padding: 8px 20px;
  font-size: 13px;
  border-radius: 40px;
}
@media screen and (min-width: 769px) {
  #header .header-cta {
    padding: 10px 24px;
    font-size: 14px;
  }
}

#main {
  margin-top: -80px;
}

/* ========== Hero ========== */
#hero {
  background: linear-gradient(180deg, #FFF7ED 0%, #FFF1E6 30%, #FFFBF5 70%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 80px;
}
#hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 101, 34, 0.15) 0%, rgba(245, 158, 11, 0.06) 50%, transparent 70%);
  pointer-events: none;
}
#hero::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, rgba(242, 101, 34, 0.04) 50%, transparent 70%);
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  #hero {
    padding: 100px 0 90px;
  }
  #hero::before {
    width: 900px;
    height: 900px;
    top: -30%;
    right: -5%;
  }
  #hero::after {
    width: 700px;
    height: 700px;
    bottom: -30%;
    left: -5%;
  }
}
#hero .hero-contents {
  padding: 0 24px;
}
#hero .hero-contents .catch-copy {
  margin: 0;
  text-align: center;
}
#hero .hero-contents .catch-copy .text {
  color: #000000;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.7;
  letter-spacing: 2px;
  margin-bottom: 26px;
}
@media screen and (min-width: 769px) {
  #hero .hero-contents .catch-copy .text {
    font-size: 32px;
    margin-bottom: 40px;
    letter-spacing: 4px;
  }
}
#hero .hero-contents .catch-copy .text strong {
  color: #F26522;
}
#hero .hero-contents .catch-copy .logo img {
  height: 62px;
  width: auto;
}
@media screen and (min-width: 769px) {
  #hero .hero-contents .catch-copy .logo img {
    height: 110px;
  }
}
#hero .hero-contents .lead-copy {
  margin: 0;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 2px;
  margin-top: 24px;
  color: #57534E;
}
@media screen and (min-width: 769px) {
  #hero .hero-contents .lead-copy {
    font-size: 20px;
    margin-top: 32px;
    letter-spacing: 2.5px;
  }
}
#hero .hero-contents .lead-copy__accent {
  color: #F26522;
  border-bottom: 2px solid #F26522;
  padding-bottom: 2px;
}
#hero .hero-contents .lead-copy--sub {
  margin-top: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #F26522;
}
@media screen and (min-width: 769px) {
  #hero .hero-contents .lead-copy--sub {
    font-size: 13px;
    margin-top: 12px;
  }
}
#hero .hero-contents .hero-cta {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  #hero .hero-contents .hero-cta {
    margin-top: 36px;
    flex-direction: row;
    gap: 40px;
  }
}

/* Main Results */
#hero .main-results {
  padding: 28px 16px;
  background-color: #FFFFFF;
  margin-top: 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
@media screen and (min-width: 769px) {
  #hero .main-results {
    margin-top: 40px;
    padding: 32px 82px;
  }
}
#hero .main-results .title {
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  margin: 0 0 16px;
  color: #000000;
}
@media screen and (min-width: 769px) {
  #hero .main-results .title {
    font-size: 16px;
  }
}
#hero .main-results ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
@media screen and (min-width: 769px) {
  #hero .main-results ul {
    gap: 16px 20px;
  }
}
#hero .main-results ul li {
  width: calc((100% - 24px) / 3);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  #hero .main-results ul li {
    width: calc((100% - 80px) / 5);
    height: 80px;
  }
}
#hero .main-results ul li img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
#hero .main-results .more {
  color: #A8A29E;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  margin: 16px 0 0;
}

/* ========== Feature ========== */
#feature {
  padding: 80px 0 90px;
  background: linear-gradient(180deg, #FFF7ED 0%, #FFFFFF 100%);
  color: #000000;
  position: relative;
  overflow: hidden;
}
#feature::before {
  content: "";
  position: absolute;
  top: 60px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 40px solid rgba(242, 101, 34, 0.04);
  pointer-events: none;
}
#feature::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  #feature {
    padding: 100px 0 120px;
  }
  #feature::before {
    width: 500px;
    height: 500px;
    border-width: 60px;
    top: -80px;
    left: -150px;
  }
  #feature::after {
    width: 600px;
    height: 600px;
    bottom: -100px;
    right: -120px;
  }
}
#feature .section-header {
  margin-bottom: 56px;
}
#feature .section-header .section-header__title {
  color: #000000;
}
#feature .section-header .section-header__text {
  color: #78716C;
}

.feature-card-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
}
.feature-card-wrap .feature-card {
  width: 100%;
  border: none;
  background: #FFFFFF;
  border-radius: 20px;
  overflow: visible;
  box-shadow: 0 4px 24px rgba(242, 101, 34, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border-top: 3px solid #F26522;
}
.feature-card-wrap .feature-card:hover {
  box-shadow: 0 12px 40px rgba(242, 101, 34, 0.18);
  transform: translateY(-6px);
}
@media screen and (min-width: 769px) {
  .feature-card-wrap .feature-card {
    width: calc((100% - 48px) / 3);
  }
}
.feature-card-wrap .feature-card .feature-card__number {
  position: absolute;
  top: -18px;
  left: 24px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  background: linear-gradient(135deg, #F26522, #F59E0B);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(242, 101, 34, 0.3);
}
.feature-card-wrap .feature-card .feature-card__icon {
  text-align: center;
  padding: 32px 28px 0;
}
.feature-card-wrap .feature-card .feature-card__icon svg {
  width: 48px;
  height: 48px;
}
.feature-card-wrap .feature-card .feature-card__body {
  padding: 20px 28px 40px;
}
.feature-card-wrap .feature-card .feature-card__body .feature-card__title {
  color: #000000;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
}
@media screen and (min-width: 769px) {
  .feature-card-wrap .feature-card .feature-card__body .feature-card__title {
    font-size: 20px;
  }
}
.feature-card-wrap .feature-card .feature-card__body .feature-card__title::after {
  content: "";
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #F26522, #F59E0B);
}
.feature-card-wrap .feature-card .feature-card__body p {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
  color: #57534E;
}

.feature-cta {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  .feature-cta {
    flex-direction: row;
    gap: 40px;
  }
}

/* ========== Results ========== */
#results {
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  #results {
    padding: 100px 0 120px;
  }
}
#results .bg {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #000000 0%, #2d2015 15%, #F26522 40%, #FFF7ED 65%, #FFFFFF 100%);
}
#results::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 5%;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
#results::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 25%;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  #results::before {
    width: 500px;
    height: 500px;
    right: -120px;
  }
  #results::after {
    width: 350px;
    height: 350px;
    left: -100px;
  }
}
#results .container {
  position: relative;
  z-index: 2;
}

.results-contents {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 48px;
}
@media screen and (min-width: 769px) {
  .results-contents {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
}
.results-contents .results-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 769px) {
  .results-contents .results-header {
    width: 240px;
    align-items: flex-start;
  }
}
.results-contents .results-header .results-header__title {
  margin: 0;
  color: #FFFFFF;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.7;
}
@media screen and (min-width: 769px) {
  .results-contents .results-header .results-header__title {
    font-size: 36px;
  }
}
.results-contents .results-header .results-header__text {
  margin: 0;
  color: #FFFFFF;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (min-width: 769px) {
  .results-contents .results-header .results-header__text {
    text-align: left;
  }
}
@media screen and (min-width: 769px) {
  .results-contents .results-body {
    flex: 1;
  }
}
.results-contents .results-body .notice {
  margin-top: 20px;
}

.results-cta {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  .results-cta {
    flex-direction: row;
    gap: 40px;
  }
}

.results-item-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 16px;
}
@media screen and (min-width: 769px) {
  .results-item-wrap {
    gap: 20px;
  }
}
.results-item-wrap .results-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0;
}
@media screen and (min-width: 769px) {
  .results-item-wrap .results-item {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (min-width: 961px) {
  .results-item-wrap .results-item {
    width: calc((100% - 40px) / 3);
  }
}
.results-item-wrap .results-item .results-item__header {
  width: 100%;
  border: none;
  background: linear-gradient(135deg, #F26522, #F59E0B);
  padding: 10px 0;
  border-radius: 12px 12px 0 0;
}
.results-item-wrap .results-item .results-item__header .results-item__title {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  color: #FFFFFF;
}
.results-item-wrap .results-item .results-item__body {
  width: 100%;
  padding: 16px 20px;
  padding-left: 30px;
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  flex: 1;
  border-radius: 0 0 12px 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-top: none;
}
.results-item-wrap .results-item .results-item__body .results-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 6px;
}
.results-item-wrap .results-item .results-item__body .results-list li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
}
.results-item-wrap .results-item .results-item__body .results-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #F59E0B;
  position: relative;
  top: 9px;
}
.results-item-wrap .results-item .results-item__body .results-list li div {
  flex: 1;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  color: #57534E;
}
@media screen and (min-width: 769px) {
  .results-item-wrap .results-item .results-item__body .results-list li div {
    line-height: 1.6;
  }
}

/* ========== Works ========== */
#works {
  background: #FFFBF5;
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
#works::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 101, 34, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
#works::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 50px solid rgba(245, 158, 11, 0.04);
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  #works {
    padding: 100px 0 120px;
  }
  #works::before {
    width: 550px;
    height: 550px;
    top: -120px;
    right: -100px;
  }
  #works::after {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -120px;
  }
}
#works .section-header {
  margin-bottom: 56px;
}

.works-card-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  .works-card-wrap {
    flex-direction: row;
    align-items: stretch;
    gap: 24px;
  }
}

.works-card {
  background-color: #FFFFFF;
  width: 100%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.works-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
@media screen and (min-width: 769px) {
  .works-card {
    width: calc(100% - 20px);
  }
}
.works-card .works-card__header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 20px;
  background: #FFFBF5;
}
@media screen and (min-width: 769px) {
  .works-card .works-card__header {
    padding: 24px 20px;
  }
}
.works-card .works-card__header .works-card__title {
  margin: 0;
  color: #F26522;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.7;
}
@media screen and (min-width: 769px) {
  .works-card .works-card__header .works-card__title {
    font-size: 20px;
  }
}
.works-card .works-card__body {
  padding: 16px 20px;
}
.works-card .works-card__body .works-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.works-card .works-card__body .works-list li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
}
.works-card .works-card__body .works-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #F26522;
  position: relative;
  top: 8px;
}
.works-card .works-card__body .works-list li div {
  flex: 1;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #57534E;
}
.works-card .works-card__body .works-list.works-list__blue li::before {
  background-color: #F26522;
}
.works-card .works-card__body .works-list.works-list__lightgold li::before {
  background-color: #F59E0B;
}
.works-card .works-card__body .works-list.works-list__red li::before {
  background-color: #EF4444;
}

.works-cta {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  .works-cta {
    flex-direction: row;
    gap: 40px;
  }
}

/* ========== Data ========== */
#data {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF7ED 50%, #FFFFFF 100%);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
#data::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 101, 34, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  #data {
    padding: 100px 0 120px;
  }
  #data::before {
    width: 800px;
    height: 800px;
  }
}
#data .section-header {
  margin-bottom: 48px;
}

.data {
  max-width: 660px;
  margin: 0 auto;
}
.data .data-header .data__title {
  margin: 0;
  margin-bottom: 12px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  padding: 10px 0;
  border: none;
  background: linear-gradient(135deg, #F26522, #F59E0B);
  color: #FFFFFF;
  border-radius: 10px;
}
@media screen and (min-width: 769px) {
  .data .data-header .data__title {
    padding: 8px 0;
  }
}
.data .data-header .data__list {
  margin: 0;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  color: #78716C;
}
.data .data-body {
  margin: 36px auto 0;
  text-align: center;
  max-width: 484px;
  aspect-ratio: 1/1;
  position: relative;
}
.data .data-body canvas {
  position: relative;
  z-index: 1;
}
.data .data-body .chart-text {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.data .data-body .chart-text dl {
  margin: 0;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
}
.data .data-body .chart-text dl dt {
  margin: 0;
  padding: 0;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
}
@media screen and (min-width: 769px) {
  .data .data-body .chart-text dl dt {
    font-size: 18px;
  }
}
.data .data-body .chart-text dl dd {
  margin: 0;
  padding: 0;
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
}
@media screen and (min-width: 769px) {
  .data .data-body .chart-text dl dd {
    font-size: 36px;
  }
}
.data .data-body .chart-text dl dd small {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
}
@media screen and (min-width: 769px) {
  .data .data-body .chart-text dl dd small {
    font-size: 20px;
  }
}

.data-cta {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  .data-cta {
    flex-direction: row;
    gap: 40px;
  }
}

/* ========== How to Entry ========== */
#how-to-entry {
  padding: 80px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF7ED 100%);
  position: relative;
  overflow: hidden;
}
#how-to-entry::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(242, 101, 34, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  #how-to-entry {
    padding: 100px 0 120px;
  }
  #how-to-entry::before {
    width: 1000px;
    height: 400px;
    top: -100px;
  }
}
#how-to-entry .section-header {
  margin-bottom: 64px;
}
#how-to-entry .container {
  max-width: 1008px;
}

.entry-flow {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 769px) {
  .entry-flow {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
.entry-flow .flow-item {
  width: 100%;
  background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
@media screen and (min-width: 769px) {
  .entry-flow .flow-item {
    width: 280px;
  }
}
.entry-flow .flow-item > * {
  position: relative;
  z-index: 2;
}
.entry-flow .flow-item .flow-item__number {
  color: rgba(242, 101, 34, 0.08);
  font-family: "Poppins", sans-serif;
  font-size: 96px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  position: absolute;
  z-index: 1;
  top: -18px;
  left: 5px;
}
.entry-flow .flow-item .flow-item__header {
  margin-bottom: 16px;
}
.entry-flow .flow-item .flow-item__header .flow-item__title {
  color: #000000;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.5;
  margin: 0;
}
@media screen and (min-width: 769px) {
  .entry-flow .flow-item .flow-item__header .flow-item__title {
    font-size: 20px;
    min-height: 3em;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.entry-flow .flow-item .flow-item__img {
  text-align: center;
  margin-bottom: 16px;
}
.entry-flow .flow-item .flow-item__body p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
  color: #78716C;
}
@media screen and (min-width: 769px) {
  .entry-flow .flow-arrow {
    align-self: center;
  }
}
@media screen and (min-width: 769px) {
  .entry-flow .flow-arrow .sp {
    display: none;
  }
}
.entry-flow .flow-arrow .pc {
  display: none;
}
@media screen and (min-width: 769px) {
  .entry-flow .flow-arrow .pc {
    display: block;
  }
}

/* ========== CTA ========== */
#cta {
  max-width: 1180px;
  margin: 0 auto -287px;
  position: relative;
  z-index: 2;
  padding: 0 24px;
}
@media screen and (min-width: 769px) {
  #cta {
    margin: 0 auto -355px;
  }
}

.cta-card {
  padding: 50px 24px;
  color: #FFFFFF;
  background: linear-gradient(135deg, #F26522 0%, #D4520F 100%);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.cta-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.cta-card::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .cta-card {
    background: linear-gradient(135deg, #F26522 0%, #D4520F 100%);
    height: auto;
    position: relative;
    overflow: hidden;
    padding: 80px 95px;
  }
  .cta-card::before {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -80px;
  }
  .cta-card::after {
    width: 300px;
    height: 300px;
    bottom: -120px;
    left: -60px;
  }
}
.cta-card .cta-card__contents {
  text-align: center;
}
.cta-card .cta-card__contents .cta-card__title {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.7;
  margin: 0;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .cta-card .cta-card__contents .cta-card__title {
    font-size: 36px;
    margin-bottom: 24px;
  }
}
.cta-card .cta-card__contents .cta-card__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  margin: 0;
  margin-bottom: 40px;
  opacity: 0.9;
}
@media screen and (min-width: 769px) {
  .cta-card .cta-card__contents .cta-card__text {
    font-size: 18px;
    margin-bottom: 56px;
  }
}
.cta-card .cta-card__contents .cta-card__cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  .cta-card .cta-card__contents .cta-card__cta {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }
}
.cta-card .cta-card__contents .cta-card__cta .btn.btn-dark {
  background: #FFFFFF;
  color: #F26522;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.cta-card .cta-card__contents .cta-card__cta .btn.btn-dark:hover {
  background: #FFF7ED;
  transform: translateY(-2px) scale(1.02);
}
.cta-card .cta-card__contents .cta-card__cta .btn.btn-dark .icon svg path {
  fill: #F26522;
}
/* ========== Concept ========== */
#concept {
  background: linear-gradient(180deg, #FFF7ED 0%, #FFFFFF 30%, #FFFFFF 70%, #FFF7ED 100%);
  padding: 347px 0 100px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#concept::before {
  content: "";
  position: absolute;
  top: 320px;
  right: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 50px solid rgba(242, 101, 34, 0.04);
  pointer-events: none;
}
#concept::after {
  content: "";
  position: absolute;
  bottom: 60px;
  left: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  #concept {
    padding: 435px 0 140px;
  }
  #concept::before {
    width: 550px;
    height: 550px;
    border-width: 70px;
    top: 350px;
    right: -150px;
  }
  #concept::after {
    width: 450px;
    height: 450px;
    bottom: 80px;
    left: -120px;
  }
}
#concept .section-header {
  margin-bottom: 28px;
}
@media screen and (min-width: 769px) {
  #concept .section-header {
    margin-bottom: 36px;
  }
}

.concept-contents .concept-contents__title {
  font-family: "Noto Serif JP", serif;
  color: #F26522;
  text-align: center;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.7;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  .concept-contents .concept-contents__title {
    font-size: 48px;
    margin-bottom: 56px;
  }
}
.concept-contents .concept-contents__lead {
  color: #000000;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 24px;
}
@media screen and (min-width: 769px) {
  .concept-contents .concept-contents__lead {
    font-size: 24px;
  }
}
.concept-contents .concept-contents__text {
  color: #78716C;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 24px;
}
@media screen and (min-width: 769px) {
  .concept-contents .concept-contents__text {
    font-size: 18px;
  }
}
.concept-contents .concept-contents__promise {
  color: #F26522;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  margin-top: 40px;
  margin-bottom: 52px;
}
@media screen and (min-width: 769px) {
  .concept-contents .concept-contents__promise {
    font-size: 24px;
    margin-bottom: 64px;
  }
}

.concept-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  .concept-cta {
    flex-direction: row;
    gap: 40px;
  }
}

/* ========== Footer ========== */
#footer {
  background-color: #FAFAFA;
  color: #78716C;
  padding: 36px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
@media screen and (min-width: 769px) {
  #footer {
    padding: 36px 40px;
  }
}
#footer .footer-header {
  padding-bottom: 36px;
}
@media screen and (min-width: 769px) {
  #footer .footer-header {
    padding-bottom: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
}
#footer .footer-header .fnav {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 40px;
}
@media screen and (min-width: 769px) {
  #footer .footer-header .fnav {
    gap: 24px;
  }
}
#footer .footer-header .fnav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px 20px;
}
@media screen and (min-width: 769px) {
  #footer .footer-header .fnav ul {
    gap: 24px;
    flex-direction: row;
  }
}
#footer .footer-header .fnav ul li a {
  color: #78716C;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
  text-decoration: none;
  transition: all 0.3s;
}
#footer .footer-header .fnav ul li a:hover {
  color: #F26522;
}
@media screen and (min-width: 769px) {
  #footer .footer-header .fnav ul li a {
    font-size: 14px;
  }
}
#footer .footer-header .fcta {
  margin-top: 48px;
}
@media screen and (min-width: 769px) {
  #footer .footer-header .fcta {
    margin: 0;
  }
}
#footer .footer-header .fcta .btn {
  width: 100%;
  height: 56px;
}
#footer .footer-header .fcta .btn .text {
  padding-bottom: 3px;
}
@media screen and (min-width: 769px) {
  #footer .footer-header .fcta .btn {
    width: 351px;
    height: 56px;
    font-size: 18px;
    padding: 11px 30px;
  }
  #footer .footer-header .fcta .btn .icon svg {
    width: 9px;
  }
  #footer .footer-header .fcta .btn .text {
    padding-bottom: 3px;
  }
}
#footer .footer-footer {
  padding-top: 36px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 40px 24px;
}
@media screen and (min-width: 769px) {
  #footer .footer-footer {
    gap: 0;
  }
}
@media screen and (min-width: 769px) {
  #footer .footer-footer .flogo {
    margin-right: 40px;
  }
}
#footer .footer-footer .flogo img {
  display: block;
  filter: none;
}
@media screen and (min-width: 769px) {
  #footer .footer-footer .flogo img {
    width: 144px;
    height: auto;
  }
}
#footer .footer-footer .copyright {
  font-size: 10px;
  font-weight: 400;
  line-height: 20px;
  color: #A8A29E;
}
@media screen and (min-width: 769px) {
  #footer .footer-footer .copyright {
    font-size: 12px;
    margin-right: 40px;
    flex: 1;
  }
}
#footer .footer-footer .funav {
  padding-bottom: 4px;
}
@media screen and (min-width: 769px) {
  #footer .footer-footer .funav {
    margin-right: 24px;
  }
}
#footer .footer-footer .funav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
}
@media screen and (min-width: 769px) {
  #footer .footer-footer .funav ul {
    gap: 24px;
  }
}
#footer .footer-footer .funav ul li a {
  color: #78716C;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
  text-decoration: none;
  transition: all 0.3s;
}
#footer .footer-footer .funav ul li a:hover {
  color: #F26522;
}
@media screen and (min-width: 769px) {
  #footer .footer-footer .funav ul li a {
    font-size: 14px;
  }
}
#footer .footer-footer .x a svg path {
  fill: #A8A29E;
}
@media screen and (min-width: 769px) {
  #footer .footer-footer .x {
    padding-bottom: 4px;
  }
}
#footer .footer-footer .x a {
  transition: all 0.3s;
}
#footer .footer-footer .x a:hover {
  opacity: 0.6;
}

/* ========== Animations ========== */
.fade-in-up {
  transition: 1s;
  opacity: 0;
  transform: translateY(20px);
}
.fade-in-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (min-width: 769px) {
  .fade-in-up.stairs-pc:nth-child(1) {
    transition-delay: 0.3s;
  }
}
@media screen and (min-width: 769px) {
  .fade-in-up.stairs-pc:nth-child(2) {
    transition-delay: 0.6s;
  }
}
@media screen and (min-width: 769px) {
  .fade-in-up.stairs-pc:nth-child(3) {
    transition-delay: 0.9s;
  }
}
@media screen and (min-width: 769px) {
  .fade-in-up.stairs-pc:nth-child(4) {
    transition-delay: 1.2s;
  }
}
@media screen and (min-width: 769px) {
  .fade-in-up.stairs-pc:nth-child(5) {
    transition-delay: 1.5s;
  }
}
@media screen and (min-width: 769px) {
  .fade-in-up.stairs-pc:nth-child(6) {
    transition-delay: 1.8s;
  }
}
@media screen and (min-width: 769px) {
  .fade-in-up.stairs-pc:nth-child(7) {
    transition-delay: 2.1s;
  }
}
@media screen and (min-width: 769px) {
  .fade-in-up.stairs-pc:nth-child(8) {
    transition-delay: 2.4s;
  }
}
@media screen and (min-width: 769px) {
  .fade-in-up.stairs-pc:nth-child(9) {
    transition-delay: 2.7s;
  }
}
@media screen and (min-width: 769px) {
  .fade-in-up.stairs-pc:nth-child(10) {
    transition-delay: 3s;
  }
}
.fade-in-up.blinds-anime:nth-child(1) {
  transition-delay: 0.1s;
}
.fade-in-up.blinds-anime:nth-child(2) {
  transition-delay: 0.2s;
}
.fade-in-up.blinds-anime:nth-child(3) {
  transition-delay: 0.3s;
}
.fade-in-up.blinds-anime:nth-child(4) {
  transition-delay: 0.4s;
}
.fade-in-up.blinds-anime:nth-child(5) {
  transition-delay: 0.5s;
}
.fade-in-up.blinds-anime:nth-child(6) {
  transition-delay: 0.6s;
}
.fade-in-up.blinds-anime:nth-child(7) {
  transition-delay: 0.7s;
}
.fade-in-up.blinds-anime:nth-child(8) {
  transition-delay: 0.8s;
}
.fade-in-up.blinds-anime:nth-child(9) {
  transition-delay: 0.9s;
}
.fade-in-up.blinds-anime:nth-child(10) {
  transition-delay: 1s;
}
