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

ul,
ol {
  list-style: none;
}

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

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

button {
  appearance: none;
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 9rem;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #4a3f35;
  background-color: #fff8ec;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

.main {
  flex: 1 0 auto;
}

.footer {
  flex-shrink: 0;
}

@media screen and (min-width: 768px) {
  .u-sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

.inner {
  width: 100%;
  max-width: calc(1080px + 4rem);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.c-btn {
  display: inline-block;
  padding: 1.4rem 3.6rem;
  border-radius: 99.9rem;
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
@media screen and (max-width: 767px) {
  .c-btn {
    padding: 1.2rem 2.8rem;
    font-size: 1.4rem;
  }
}
@media (hover: hover) {
  .c-btn:hover {
    transform: translateY(-0.3rem);
  }
}

.c-btn--primary {
  background-color: #e8604c;
  color: #fff;
  box-shadow: 0 0.4rem 0 #c9432f;
}
@media (hover: hover) {
  .c-btn--primary:hover {
    box-shadow: 0 0.7rem 0 #c9432f;
  }
}

.c-btn--outline {
  background-color: #fff;
  border: 0.2rem solid #4a3f35;
  box-shadow: 0 0.4rem 0 #4a3f35;
}
@media (hover: hover) {
  .c-btn--outline:hover {
    box-shadow: 0 0.7rem 0 #4a3f35;
  }
}

.c-btn--large {
  padding: 1.8rem 5.6rem;
  font-size: 1.7rem;
}
@media screen and (max-width: 767px) {
  .c-btn--large {
    padding: 1.6rem 3.2rem;
    font-size: 1.5rem;
  }
}

.c-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.c-title__en {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #e8604c;
  text-transform: uppercase;
}
.c-title__ja {
  margin-top: 0.4rem;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .c-title__ja {
    font-size: 2.4rem;
  }
}

.c-title--left {
  align-items: flex-start;
  text-align: left;
}

.c-title-side {
  display: flex;
  flex-direction: column;
}
.c-title-side__en {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #e8604c;
  text-transform: uppercase;
}
.c-title-side__ja {
  font-size: 2rem;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .c-title-side__ja {
    font-size: 1.8rem;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background-color: rgba(255, 248, 236, 0.9);
  backdrop-filter: blur(0.6rem);
  transition: box-shadow 0.3s;
}
.header.is-scrolled {
  box-shadow: 0 0.2rem 1.2rem rgba(74, 63, 53, 0.1);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 7.2rem;
}
@media screen and (max-width: 767px) {
  .header__inner {
    height: 6rem;
  }
}
.header__logo {
  font-weight: 900;
}
.header__logo-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.header__logo-marks {
  display: flex;
  align-items: flex-end;
  gap: 0.3rem;
}
.header__logo-mark {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
}
.header__logo-mark--red {
  background-color: #e8604c;
  border-radius: 50%;
}
.header__logo-mark--yellow {
  background-color: #f5b640;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.header__logo-mark--blue {
  background-color: #4a90d9;
  border-radius: 0.2rem;
}
.header__logo-text {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .header__logo-text {
    font-size: 1.8rem;
  }
}
.header__logo-sub {
  margin-left: 0.2rem;
  font-size: 1.2rem;
  color: #e8604c;
}
@media screen and (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 90;
    width: min(30rem, 80%);
    height: 100dvh;
    padding: 9rem 2.4rem 4rem;
    background-color: #fdf3dd;
    transform: translateX(100%);
    transition: transform 0.4s;
  }
  .header__nav.is-open {
    transform: translateX(0);
    box-shadow: 0 0 3rem rgba(74, 63, 53, 0.2);
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}
.header__nav-link {
  font-size: 1.4rem;
  font-weight: 700;
  transition: color 0.3s;
}
@media (hover: hover) {
  .header__nav-link:hover {
    color: #e8604c;
  }
}
@media screen and (max-width: 767px) {
  .header__nav-link {
    font-size: 1.5rem;
  }
}
.header__nav-link--contact {
  padding: 0.8rem 2rem;
  border-radius: 99.9rem;
  background-color: #e8604c;
  color: #fff;
}
@media (hover: hover) {
  .header__nav-link--contact:hover {
    color: #fff;
    opacity: 0.85;
  }
}
.header__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    position: relative;
    z-index: 110;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    width: 4rem;
    height: 4rem;
  }
}
.header__hamburger-line {
  display: block;
  width: 2.2rem;
  height: 0.2rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 0.2rem;
  background-color: #4a3f35;
  transition: transform 0.3s, opacity 0.3s;
}
.is-open .header__hamburger-line:nth-child(1) {
  transform: translateY(0.7rem) rotate(45deg);
}
.is-open .header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.is-open .header__hamburger-line:nth-child(3) {
  transform: translateY(-0.7rem) rotate(-45deg);
}

.kv {
  position: relative;
  padding-top: 7.2rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .kv {
    padding-top: 6rem;
  }
}
.kv__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding-top: 6.4rem;
  padding-bottom: 7.2rem;
}
@media screen and (max-width: 767px) {
  .kv__inner {
    flex-direction: column;
    padding-top: 3.2rem;
    padding-bottom: 4.8rem;
  }
}
.kv__lead {
  display: inline-block;
  padding: 0.6rem 1.8rem;
  border-radius: 99.9rem;
  background-color: #f5b640;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}
.kv__copy {
  margin-top: 2rem;
  font-size: 5.2rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .kv__copy {
    font-size: 3.4rem;
  }
}
.kv__copy-line {
  display: block;
}
.kv__copy-line:nth-child(2) {
  color: #e8604c;
}
.kv__text {
  margin-top: 2rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .kv__text {
    font-size: 1.4rem;
  }
}
.kv__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .kv__buttons {
    margin-top: 2.4rem;
  }
}
.kv__illust {
  flex-shrink: 0;
  width: min(48rem, 44%);
}
@media screen and (max-width: 767px) {
  .kv__illust {
    width: min(34rem, 90%);
    margin-top: 0.8rem;
  }
}
.kv__shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.kv__shape {
  position: absolute;
  display: block;
  opacity: 0.5;
}
.kv__shape--circle {
  top: 12%;
  left: -3%;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background-color: #fdeeea;
}
.kv__shape--triangle {
  top: 60%;
  left: 45%;
  width: 7rem;
  height: 6rem;
  background-color: #fdf3dd;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.kv__shape--square {
  top: 8%;
  right: 6%;
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 1.2rem;
  background-color: #edf7ee;
  transform: rotate(18deg);
}
.kv__shape--half {
  bottom: -4%;
  right: -3%;
  width: 18rem;
  height: 9rem;
  border-radius: 18rem 18rem 0 0;
  background-color: #eaf3fc;
}

.news__box {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  padding: 2.8rem 3.6rem;
  border-radius: 2.4rem;
  background-color: #fff;
  box-shadow: 0 0.4rem 1.6rem rgba(74, 63, 53, 0.06);
}
@media screen and (max-width: 767px) {
  .news__box {
    flex-direction: column;
    gap: 1.2rem;
    padding: 2rem;
  }
}
.news__list {
  flex: 1;
}
.news__item + .news__item {
  margin-top: 0.4rem;
  border-top: 0.1rem dashed #f0e4cf;
}
.news__link {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  transition: color 0.3s;
}
@media (hover: hover) {
  .news__link:hover {
    color: #e8604c;
  }
}
@media screen and (max-width: 767px) {
  .news__link {
    flex-direction: column;
    gap: 0.2rem;
  }
}
.news__date {
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #4a90d9;
}
.news__text {
  font-size: 1.4rem;
}

.feature__inner {
  padding-top: 9.6rem;
}
@media screen and (max-width: 767px) {
  .feature__inner {
    padding-top: 6.4rem;
  }
}
.feature__lead {
  margin-top: 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .feature__lead {
    text-align: left;
  }
}
.feature__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .feature__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
    margin-top: 2.8rem;
  }
}
.feature__item {
  padding: 2.8rem 2rem;
  border-radius: 2.4rem;
  text-align: center;
}
.feature__item--red {
  background-color: #fdeeea;
}
.feature__item--green {
  background-color: #edf7ee;
}
.feature__item--blue {
  background-color: #eaf3fc;
}
.feature__item--yellow {
  background-color: #fdf3dd;
}
.feature__icon {
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  margin-left: auto;
  margin-right: auto;
}
.feature__icon--circle {
  border-radius: 50%;
  background-color: #e8604c;
}
.feature__icon--clover {
  background-color: #6fbf73;
  border-radius: 50% 50% 0 50%;
  transform: rotate(45deg);
}
.feature__icon--drop {
  background-color: #4a90d9;
  border-radius: 50% 0 50% 50%;
  transform: rotate(45deg);
}
.feature__icon--star {
  background-color: #f5b640;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.feature__item-title {
  margin-top: 1.6rem;
  font-size: 1.7rem;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .feature__item-title {
    font-size: 1.5rem;
  }
}
.feature__item-text {
  margin-top: 0.8rem;
  font-size: 1.3rem;
  text-align: left;
}

.products__inner {
  padding-top: 9.6rem;
}
@media screen and (max-width: 767px) {
  .products__inner {
    padding-top: 6.4rem;
  }
}
.products__lead {
  margin-top: 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .products__lead {
    text-align: left;
  }
}
.products__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.8rem;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .products__list {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2.8rem;
  }
}
.products__card {
  display: block;
  padding-bottom: 2.8rem;
  background-color: #fff;
  border-radius: 2.4rem;
  overflow: hidden;
  box-shadow: 0 0.4rem 1.6rem rgba(74, 63, 53, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
@media (hover: hover) {
  .products__card:hover {
    transform: translateY(-0.6rem);
    box-shadow: 0 1rem 2.4rem rgba(74, 63, 53, 0.12);
  }
}
.products__card-img img {
  width: 100%;
}
.products__card-title {
  margin-top: 2rem;
  padding-left: 2.4rem;
  padding-right: 2.4rem;
  font-size: 2rem;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .products__card-title {
    font-size: 1.8rem;
  }
}
.products__card-text {
  margin-top: 0.8rem;
  padding-left: 2.4rem;
  padding-right: 2.4rem;
  font-size: 1.4rem;
}
.products__card-more {
  display: inline-block;
  margin-top: 1.2rem;
  margin-left: 2.4rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: #e8604c;
}
.products__card-more::after {
  content: "→";
  margin-left: 0.6rem;
}
.products__catalog {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 4.8rem;
  padding: 2.8rem;
  border-radius: 2.4rem;
  border: 0.2rem dashed #f5b640;
  background-color: #fdf3dd;
}
@media screen and (max-width: 767px) {
  .products__catalog {
    margin-top: 3.2rem;
    padding: 2rem;
  }
}
.products__catalog-text {
  font-weight: 700;
}

.oem {
  margin-top: 9.6rem;
  padding-top: 7.2rem;
  padding-bottom: 7.2rem;
  background-color: #eaf3fc;
  border-radius: 4.8rem 4.8rem 0 0;
}
@media screen and (max-width: 767px) {
  .oem {
    margin-top: 6.4rem;
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
    border-radius: 2.8rem 2.8rem 0 0;
  }
}
.oem__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4.8rem;
}
@media screen and (max-width: 767px) {
  .oem__inner {
    flex-direction: column;
    gap: 2.8rem;
  }
}
.oem__text {
  margin-top: 2rem;
}
.oem__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.oem__tag {
  padding: 0.4rem 1.6rem;
  border-radius: 99.9rem;
  background-color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  color: #4a90d9;
}
.oem__button {
  margin-top: 2.8rem;
}
.oem__illust {
  flex-shrink: 0;
  width: min(42rem, 40%);
}
@media screen and (max-width: 767px) {
  .oem__illust {
    width: min(32rem, 90%);
  }
}

.case {
  padding-bottom: 2.4rem;
  background-color: #eaf3fc;
}
.case__inner {
  padding-top: 7.2rem;
  padding-bottom: 7.2rem;
  border-radius: 4.8rem;
  background-color: #fff8ec;
}
@media screen and (max-width: 767px) {
  .case__inner {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
    border-radius: 2.8rem;
  }
}
.case__lead {
  margin-top: 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .case__lead {
    text-align: left;
  }
}
.case__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .case__list {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2.8rem;
  }
}
.case__card {
  padding-bottom: 2.4rem;
  background-color: #fff;
  border-radius: 2.4rem;
  overflow: hidden;
  box-shadow: 0 0.4rem 1.6rem rgba(74, 63, 53, 0.06);
}
.case__card-img img {
  width: 100%;
}
.case__card-title {
  margin-top: 1.6rem;
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: 1.7rem;
  font-weight: 900;
}
.case__card-text {
  margin-top: 0.8rem;
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: 1.3rem;
}

.support__inner {
  padding-top: 7.2rem;
}
@media screen and (max-width: 767px) {
  .support__inner {
    padding-top: 4.8rem;
  }
}
.support__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.8rem;
}
@media screen and (max-width: 767px) {
  .support__list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.support__card {
  display: block;
  padding: 3.2rem 3.6rem;
  border-radius: 2.4rem;
  background-color: #fff;
  box-shadow: 0 0.4rem 1.6rem rgba(74, 63, 53, 0.06);
  transition: transform 0.3s;
}
@media (hover: hover) {
  .support__card:hover {
    transform: translateY(-0.6rem);
  }
}
@media screen and (max-width: 767px) {
  .support__card {
    padding: 2.4rem;
  }
}
.support__card-title {
  display: flex;
  flex-direction: column;
  font-size: 2.2rem;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .support__card-title {
    font-size: 1.9rem;
  }
}
.support__card-en {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #6fbf73;
  text-transform: uppercase;
}
.support__card-text {
  margin-top: 1.2rem;
  font-size: 1.4rem;
}
.support__card-more {
  display: inline-block;
  margin-top: 1.6rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: #e8604c;
}
.support__card-more::after {
  content: "→";
  margin-left: 0.6rem;
}

.contact {
  position: relative;
  margin-top: 9.6rem;
  padding-top: 8rem;
  padding-bottom: 8.8rem;
  background-color: #fdf3dd;
  border-radius: 4.8rem 4.8rem 0 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .contact {
    margin-top: 6.4rem;
    padding-top: 5.6rem;
    padding-bottom: 6.4rem;
    border-radius: 2.8rem 2.8rem 0 0;
  }
}
.contact__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.contact__text {
  margin-top: 2.4rem;
}
.contact__note {
  margin-top: 1.2rem;
  font-size: 1.3rem;
  color: rgba(74, 63, 53, 0.75);
}
.contact__button {
  margin-top: 3.2rem;
}
.contact__shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.contact__shape {
  position: absolute;
  display: block;
  opacity: 0.6;
}
.contact__shape--circle {
  bottom: -8%;
  left: 4%;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background-color: #fdeeea;
}
.contact__shape--triangle {
  top: 12%;
  right: 8%;
  width: 7rem;
  height: 6rem;
  background-color: #edf7ee;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.contact__shape--square {
  top: 55%;
  right: 18%;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 1rem;
  background-color: #eaf3fc;
  transform: rotate(-14deg);
}

.footer {
  background-color: #4a3f35;
  color: #fff8ec;
}
.footer__inner {
  padding-top: 6.4rem;
  padding-bottom: 3.2rem;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    padding-top: 4.8rem;
    padding-bottom: 2.8rem;
  }
}
.footer__main {
  display: flex;
  justify-content: space-between;
  gap: 4.8rem;
}
@media screen and (max-width: 767px) {
  .footer__main {
    flex-direction: column;
    gap: 3.2rem;
  }
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 2.4rem;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    font-size: 2rem;
  }
}
.footer__logo-marks {
  display: flex;
  align-items: flex-end;
  gap: 0.3rem;
}
.footer__logo-mark {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
}
.footer__logo-mark--red {
  background-color: #e8604c;
  border-radius: 50%;
}
.footer__logo-mark--yellow {
  background-color: #f5b640;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.footer__logo-mark--blue {
  background-color: #4a90d9;
  border-radius: 0.2rem;
}
.footer__logo-sub {
  margin-left: 0.4rem;
  font-size: 1.3rem;
  color: #f5b640;
}
.footer__text {
  max-width: 40rem;
  margin-top: 1.6rem;
  font-size: 1.3rem;
  opacity: 0.85;
}
.footer__contact {
  margin-top: 2.4rem;
}
.footer__nav {
  flex-shrink: 0;
}
.footer__nav-list {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0.4rem 4rem;
}
@media screen and (max-width: 767px) {
  .footer__nav-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem 1.6rem;
  }
}
.footer__nav-link {
  display: block;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  font-size: 1.4rem;
  font-weight: 700;
  transition: color 0.3s;
}
.footer__nav-link::before {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  margin-right: 1rem;
  border-radius: 50%;
  background-color: #f5b640;
  vertical-align: 0.2rem;
}
@media (hover: hover) {
  .footer__nav-link:hover {
    color: #f5b640;
  }
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  margin-top: 4.8rem;
  padding-top: 2rem;
  border-top: 0.1rem solid rgba(255, 248, 236, 0.25);
}
@media screen and (max-width: 767px) {
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 3.6rem;
  }
}
.footer__note {
  font-size: 1.1rem;
  opacity: 0.7;
}
.footer__copyright {
  flex-shrink: 0;
  font-size: 1.2rem;
  opacity: 0.7;
}

.sub-hero {
  padding-top: 7.2rem;
  background-color: #fdf3dd;
  border-radius: 0 0 4.8rem 4.8rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .sub-hero {
    padding-top: 6rem;
    border-radius: 0 0 2.8rem 2.8rem;
  }
}
.sub-hero__inner {
  position: relative;
  padding-top: 5.6rem;
  padding-bottom: 4.8rem;
}
@media screen and (max-width: 767px) {
  .sub-hero__inner {
    padding-top: 3.6rem;
    padding-bottom: 3.2rem;
  }
}
.sub-hero__label {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #e8604c;
  text-transform: uppercase;
}
.sub-hero__title {
  margin-top: 0.4rem;
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .sub-hero__title {
    font-size: 2.6rem;
  }
}
.sub-hero__lead {
  margin-top: 1.2rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .sub-hero__lead {
    font-size: 1.3rem;
  }
}
.sub-hero__shape {
  position: absolute;
  display: block;
  pointer-events: none;
  opacity: 0.6;
}
.sub-hero__shape--circle {
  top: 20%;
  right: 10%;
  width: 7.2rem;
  height: 7.2rem;
  border-radius: 50%;
  background-color: #fdeeea;
}
.sub-hero__shape--triangle {
  bottom: 8%;
  right: 22%;
  width: 5.2rem;
  height: 4.4rem;
  background-color: #edf7ee;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.breadcrumb {
  margin-top: 2rem;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.2rem;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.breadcrumb__item:not(:first-child)::before {
  content: "/";
  opacity: 0.4;
}
.breadcrumb__item:last-child {
  opacity: 0.7;
}
.breadcrumb__link {
  font-weight: 700;
  color: #4a90d9;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .breadcrumb__link:hover {
    opacity: 0.7;
  }
}

.sub-section__inner {
  padding-top: 7.2rem;
}
@media screen and (max-width: 767px) {
  .sub-section__inner {
    padding-top: 4.8rem;
  }
}
.sub-section__lead {
  margin-top: 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sub-section__lead {
    text-align: left;
  }
}
.sub-section__note {
  margin-top: 1.6rem;
  font-size: 1.2rem;
  color: rgba(74, 63, 53, 0.7);
}

.chip-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .chip-nav {
    justify-content: flex-start;
    gap: 0.8rem;
  }
}
.chip-nav__link {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 99.9rem;
  border: 0.2rem solid #f0e4cf;
  background-color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  transition: border-color 0.3s, color 0.3s;
}
@media (hover: hover) {
  .chip-nav__link:hover {
    border-color: #e8604c;
    color: #e8604c;
  }
}

.category__inner {
  padding-top: 7.2rem;
}
@media screen and (max-width: 767px) {
  .category__inner {
    padding-top: 4.8rem;
  }
}
.category__head {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 0.3rem solid #f0e4cf;
}
.category__mark {
  flex-shrink: 0;
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
}
.category__mark--red {
  background-color: #e8604c;
}
.category__mark--blue {
  background-color: #4a90d9;
}
.category__mark--green {
  background-color: #6fbf73;
}
.category__mark--yellow {
  background-color: #f5b640;
}
.category__title {
  font-size: 2.4rem;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .category__title {
    font-size: 2rem;
  }
}
.category__text {
  margin-top: 1.6rem;
  font-size: 1.4rem;
}
.category__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  margin-top: 2.8rem;
}
@media screen and (max-width: 767px) {
  .category__list {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}

.p-card {
  padding-bottom: 2rem;
  background-color: #fff;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 0.4rem 1.4rem rgba(74, 63, 53, 0.06);
}
.p-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #fdf3dd;
}
.p-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-card__body {
  padding-left: 2rem;
  padding-right: 2rem;
}
.p-card__title {
  margin-top: 1.4rem;
  font-size: 1.6rem;
  font-weight: 900;
}
.p-card__spec {
  margin-top: 0.4rem;
  font-size: 1.2rem;
  color: rgba(74, 63, 53, 0.75);
}
.p-card__price {
  margin-top: 0.8rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #e8604c;
}

.step {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.6rem;
}
@media screen and (max-width: 767px) {
  .step {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
}
.step__item {
  padding: 2.4rem 2rem;
  background-color: #fff;
  border-radius: 2rem;
  text-align: center;
  box-shadow: 0 0.4rem 1.4rem rgba(74, 63, 53, 0.06);
}
.step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  background-color: #4a90d9;
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
}
.step__title {
  margin-top: 1.2rem;
  font-size: 1.6rem;
  font-weight: 900;
}
.step__text {
  margin-top: 0.6rem;
  font-size: 1.3rem;
  text-align: left;
}

.faq-list {
  margin-top: 3.6rem;
}
.faq-list__item {
  background-color: #fff;
  border-radius: 2rem;
  box-shadow: 0 0.4rem 1.4rem rgba(74, 63, 53, 0.06);
}
.faq-list__item + .faq-list__item {
  margin-top: 1.6rem;
}
.faq-list__question {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 2rem 2.4rem;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq-list__question::-webkit-details-marker {
  display: none;
}
.faq-list__question::before {
  content: "Q";
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background-color: #e8604c;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}
.faq-list__question::after {
  content: "＋";
  margin-left: auto;
  font-weight: 900;
  color: #e8604c;
  transition: transform 0.3s;
}
@media screen and (max-width: 767px) {
  .faq-list__question {
    padding: 1.6rem 1.8rem;
    font-size: 1.4rem;
  }
}
.faq-list__item[open] .faq-list__question::after {
  transform: rotate(45deg);
}
.faq-list__answer {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  padding: 0 2.4rem 2.4rem;
  font-size: 1.4rem;
}
.faq-list__answer::before {
  content: "A";
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background-color: #4a90d9;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .faq-list__answer {
    padding: 0 1.8rem 1.8rem;
  }
}

.form {
  max-width: 68rem;
  margin-top: 4rem;
  margin-left: auto;
  margin-right: auto;
}
.form__group + .form__group {
  margin-top: 2.4rem;
}
.form__label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  font-weight: 700;
}
.form__required {
  padding: 0.1rem 0.8rem;
  border-radius: 0.6rem;
  background-color: #e8604c;
  font-size: 1.1rem;
  color: #fff;
}
.form__optional {
  padding: 0.1rem 0.8rem;
  border-radius: 0.6rem;
  background-color: #f0e4cf;
  font-size: 1.1rem;
}
.form__input, .form__select, .form__textarea {
  width: 100%;
  margin-top: 0.8rem;
  padding: 1.2rem 1.6rem;
  border: 0.2rem solid #f0e4cf;
  border-radius: 1.2rem;
  background-color: #fff;
  font: inherit;
  color: inherit;
  transition: border-color 0.3s;
}
.form__input:focus, .form__select:focus, .form__textarea:focus {
  outline: none;
  border-color: #4a90d9;
}
.form__textarea {
  min-height: 18rem;
  resize: vertical;
}
.form__agree {
  margin-top: 2.8rem;
  text-align: center;
  font-size: 1.3rem;
}
.form__agree-link {
  font-weight: 700;
  color: #4a90d9;
  text-decoration: underline;
}
.form__submit {
  margin-top: 2.4rem;
  text-align: center;
}

.company-table {
  width: 100%;
  margin-top: 3.6rem;
  border-collapse: collapse;
}
.company-table__row {
  border-bottom: 0.1rem solid #f0e4cf;
}
.company-table__head {
  width: 20rem;
  padding: 1.8rem 1.6rem;
  background-color: #fdf3dd;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: left;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .company-table__head {
    display: block;
    width: 100%;
    padding: 1rem 1.4rem;
  }
}
.company-table__data {
  padding: 1.8rem 2.4rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .company-table__data {
    display: block;
    padding: 1.2rem 1.4rem 1.6rem;
  }
}

.dl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  margin-top: 3.6rem;
}
@media screen and (max-width: 767px) {
  .dl-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}

.dl-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.4rem;
  background-color: #fff;
  border-radius: 2rem;
  box-shadow: 0 0.4rem 1.4rem rgba(74, 63, 53, 0.06);
}
.dl-card__tag {
  padding: 0.2rem 1.2rem;
  border-radius: 99.9rem;
  background-color: #eaf3fc;
  font-size: 1.1rem;
  font-weight: 700;
  color: #4a90d9;
}
.dl-card__tag--pdf {
  background-color: #fdeeea;
  color: #e8604c;
}
.dl-card__title {
  margin-top: 1.2rem;
  font-size: 1.5rem;
  font-weight: 900;
}
.dl-card__text {
  margin-top: 0.6rem;
  font-size: 1.2rem;
  color: rgba(74, 63, 53, 0.75);
}
.dl-card__button {
  margin-top: 1.6rem;
  padding: 0.8rem 2rem;
  border-radius: 99.9rem;
  border: 0.2rem solid #4a3f35;
  font-size: 1.2rem;
  font-weight: 700;
  transition: background-color 0.3s, color 0.3s;
}
@media (hover: hover) {
  .dl-card__button:hover {
    background-color: #4a3f35;
    color: #fff;
  }
}

.news-page {
  margin-top: 3.6rem;
}
.news-page__item {
  background-color: #fff;
  border-radius: 1.6rem;
  box-shadow: 0 0.4rem 1.4rem rgba(74, 63, 53, 0.06);
}
.news-page__item + .news-page__item {
  margin-top: 1.2rem;
}
.news-page__link {
  display: flex;
  align-items: baseline;
  gap: 2.4rem;
  padding: 1.8rem 2.4rem;
  transition: color 0.3s;
}
@media (hover: hover) {
  .news-page__link:hover {
    color: #e8604c;
  }
}
@media screen and (max-width: 767px) {
  .news-page__link {
    flex-direction: column;
    gap: 0.4rem;
    padding: 1.4rem 1.8rem;
  }
}
.news-page__date {
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #4a90d9;
}
.news-page__title {
  font-size: 1.4rem;
  font-weight: 700;
}

.prose {
  max-width: 76rem;
  margin-top: 0.8rem;
  margin-left: auto;
  margin-right: auto;
}
.prose__section {
  margin-top: 4rem;
}
.prose__title {
  padding-left: 1.4rem;
  border-left: 0.5rem solid #e8604c;
  font-size: 1.9rem;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .prose__title {
    font-size: 1.7rem;
  }
}
.prose__text {
  margin-top: 1.2rem;
  font-size: 1.4rem;
}

.cta-band__inner {
  padding-top: 9.6rem;
  padding-bottom: 9.6rem;
}
@media screen and (max-width: 767px) {
  .cta-band__inner {
    padding-top: 6.4rem;
    padding-bottom: 6.4rem;
  }
}
.cta-band__box {
  padding: 4.8rem 3.2rem;
  border-radius: 3.2rem;
  background-color: #fdeeea;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cta-band__box {
    padding: 3.2rem 2rem;
    border-radius: 2.4rem;
  }
}
.cta-band__title {
  font-size: 2.4rem;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .cta-band__title {
    font-size: 2rem;
  }
}
.cta-band__text {
  margin-top: 1rem;
  font-size: 1.4rem;
}
.cta-band__button {
  margin-top: 2.4rem;
}
