@keyframes carousel {
  100% {
    transform: translateX(-200%);
  }
}
@keyframes carousel-sp {
  100% {
    transform: translateX(-400%);
  }
}
.md-hidden {
  display: block;
}
@media screen and (min-width: 768px) {
  .md-hidden {
    display: none;
  }
}
.md-visible {
  display: none;
}
@media screen and (min-width: 768px) {
  .md-visible {
    display: block;
  }
}

.sm-visible {
  display: none;
}
@media screen and (min-width: 400px) {
  .sm-visible {
    display: block;
  }
}
.sm-hidden {
  display: block;
}
@media screen and (min-width: 400px) {
  .sm-hidden {
    display: none;
  }
}

.top-layout {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.top-layout__content {
  width: 100%;
  position: relative;
}
.top-layout__side {
  display: none;
  justify-content: center;
  width: 24vw;
  min-height: 100dvh;
  position: relative;
  z-index: 4000;
}
@media screen and (min-width: 1200px) {
  .top-layout__content {
    width: 76vw;
    max-width: 76vw;
  }
  .top-layout__side {
    display: flex;
  }
}

@media screen and (min-width: 1200px) {
  .header {
    width: 76vw;
  }
}

.mv {
  display: flex;
  justify-content: center;
  padding: 64px 16px 16px;
  background: var(--primary-color) url(../images/top/mv_bg.png) center 0/auto 100% no-repeat;
  color: var(--gray-000);
  position: relative;
  overflow: hidden;
}
.mv__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: wrap column;
  width: 100%;
}
.mv__title {
  display: flex;
  align-items: center;
  flex-flow: wrap column;
  position: relative;
  z-index: 2;
}
.mv__title__copy {
  margin-top: 8px;
  font-weight: 700;
  font-size: clamp(1.6875rem, 1.0763888889rem + 3.0555555556vw, 3.75rem);
  line-height: 1.3;
  text-align: center;
}
.mv__title__copy span {
  display: block;
  font-size: clamp(1.375rem, 1.3009259259rem + 0.3703703704vw, 1.625rem);
  text-align: center;
}
.mv__title__description {
  margin-top: 16px;
  font-size: clamp(0.875rem, 0.837962963rem + 0.1851851852vw, 1rem);
  text-align: center;
}
.mv__title__feature {
  display: flex;
  gap: 8px;
  width: 100%;
  margin-top: 16px;
  font-weight:bold;
}
.mv__title__feature__item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  font-size: 0.66rem;
  text-align: center;
  position: relative;
  line-height: 1.3;
}
.mv__title__feature__item span {
  width: 100%;
  padding: 6px 16px 10px;
}
.mv__title__feature__item strong {
  font-size: 1rem;
}
.mv__title__feature__item:before, .mv__title__feature__item:after {
  content: "";
  display: block;
  width: 30px;
  height: 100%;
  background: url(../images/top/mv_laurel.png) 0 0/auto 100% no-repeat;
  position: absolute;
  top: 0;
}
.mv__title__feature__item:before {
  left: 0;
}
.mv__title__feature__item:after {
  right: 0;
  transform: scaleX(-1);
}
.mv__title__buttons {
  display: flex;
  flex-flow: wrap row;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}
.mv__title__buttons__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--button-color);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  min-height: clamp(3rem, 2.7037037037rem + 1.4814814815vw, 4rem);
  padding: 0 16px;
  border-radius: clamp(3rem, 2.7037037037rem + 1.4814814815vw, 4rem);
}
@media screen and (min-width: 768px) {
  .mv__title__buttons__button {
    padding: 0 24px;
  }
}
.mv__title__buttons__button {
  background: var(--button-color);
  color: var(--gray-000);
  margin: 24px 0 0;
}
.mv__title__buttons__button--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--button-color);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  min-height: clamp(3rem, 2.7037037037rem + 1.4814814815vw, 4rem);
  padding: 0 16px;
  border-radius: clamp(3rem, 2.7037037037rem + 1.4814814815vw, 4rem);
}
@media screen and (min-width: 768px) {
  .mv__title__buttons__button--outline {
    padding: 0 24px;
  }
}
.mv__title__buttons__button--outline {
  background: var(--gray-000);
  color: var(--gray-900);
  margin-right: 16px;
}
.mv__image {
  display: flex;
  flex-flow: column;
  align-items: flex-end;
  justify-content: flex-end;
  min-width: 300px;
}
.mv__image__item {
  max-width: 100%;
}
.mv__note__text {
  font-size: clamp(0.625rem, 0.587962963rem + 0.1851851852vw, 0.75rem);
}
@media screen and (min-width: 400px) {
  .mv__title__copy {
    font-size: clamp(3rem, 2.962962963rem + 0.1851851852vw, 3.125rem);
  }
  .mv__title__description {
    font-size: clamp(1rem, 0.962962963rem + 0.1851851852vw, 1.125rem);
  }
  .mv__title__feature {
    gap: 16px;
  }
}
@media screen and (min-width: 500px) {
  .mv__title__feature__item {
    font-size: 1rem;
  }
  .mv__title__feature__item strong {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .mv__title__feature {
    gap: 16px;
  }
  .mv__title__feature__item strong {
    font-size: 1.8rem;
  }
  .mv__title__feature__item span {
    padding: 0 16px;
  }
  .mv__title__buttons__button {
    width: 100%;
    max-width: 12.5rem;
  }
}
@media screen and (min-width: 900px) {
  .mv {
    padding: 160px 16px 40px;
  }
}
@media screen and (min-width: 1000px) {
  .mv {
    background-size: 100% 100%;
  }
  .mv__inner {
    gap: 24px;
    flex-flow: row;
    justify-content: center;
    align-items: flex-end;
  }
  .mv__title {
    align-items: flex-start;
  }
  .mv__title__copy {
    font-size: 2.875rem;
    text-align: left;
  }
  .mv__title__copy span {
    text-align: left;
  }
  .mv__title__description {
    font-size: clamp(0.875rem, 0.837962963rem + 0.1851851852vw, 1rem);
    text-align: left;
  }
  .mv__title__buttons {
    justify-content: flex-start;
    width: 396px;
  }
  .mv__title__buttons__button {
    max-width: 11.875rem;
  }
  .mv__image {
    min-width: 300px;
  }
  .mv__note {
    margin-top: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .mv__title__feature__item strong {
    font-size: 1.4rem;
  }
  .mv__title__buttons {
    width: 436px;
  }
  .mv__title__buttons__button {
    max-width: 13.125rem;
  }
  .mv__image {
    min-width: 320px;
  }
}
@media screen and (min-width: 1400px) {
  .mv__title__copy {
    font-size: clamp(1.875rem, 1.5416666667rem + 1.6666666667vw, 3rem);
  }
  .mv__title__buttons {
    width: 496px;
  }
  .mv__title__buttons__button {
    max-width: 15rem;
  }
}
@media screen and (max-width: 999px) {
  .mv__image {
    margin-top: 32px;
  }
}
@media screen and (max-width: 399px) {
  .mv__title__buttons__button {
    padding-left: clamp(1rem, 0.8518518519rem + 0.7407407407vw, 1.5rem);
    padding-right: clamp(1rem, 0.8518518519rem + 0.7407407407vw, 1.5rem);
    font-size: clamp(0.8125rem, 0.7569444444rem + 0.2777777778vw, 1rem);
  }
}

.banner {
  margin: 48px 0 16px;
  text-align: center;
  overflow: hidden;
}
.banner__title {
  display: inline-block;
  padding: 0 24px;
  color: var(--gray-900);
  font-size: clamp(0.8125rem, 0.6087962963rem + 1.0185185185vw, 1.5rem);
  font-weight: 700;
  text-align: center;
  position: relative;
}
.banner__title b {
  color: var(--primary-color);
}
.banner__title:before, .banner__title:after {
  content: "";
  width: 14px;
  height: 24px;
  background: url(../images/top/icon_dot.svg) center/auto 100% no-repeat;
  position: absolute;
  top: 0;
}
.banner__title:before {
  left: 0.5rem;
}
.banner__title:after {
  right: 0.5rem;
  transform: scale(-1, 1);
}
.banner__list {
  display: flex;
  margin-top: 16px;
  animation: carousel-sp 50s linear infinite;
}
.banner__list__item {
  flex-shrink: 0;
  width: 19.5%;
  margin: 0 0.25% 0.25%;
}
.banner__list__item__image {
  width: 100%;
}
@media screen and (min-width: 400px) {
  .banner__title {
    padding: 0 40px;
    font-size: clamp(1rem, 0.7962962963rem + 1.0185185185vw, 1.6875rem);
  }
  .banner__title:before, .banner__title:after {
    width: 20px;
    height: 32px;
    top: -0.1rem;
  }
}
@media screen and (min-width: 768px) {
  .banner__title {
    padding: 0 32px;
    font-size: clamp(1.125rem, 1.0138888889rem + 0.5555555556vw, 1.5rem);
  }
  .banner__title:before, .banner__title:after {
    top: -0.02rem;
  }
  .banner__title:before {
    left: 0;
  }
  .banner__title:after {
    right: 0;
  }
  .banner__list {
    margin-top: 32px;
    animation: carousel 50s linear infinite;
  }
  .banner__list__item {
    width: 14%;
  }
}

.award {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  padding: 0 16px 40px;
}
@media screen and (min-width: 768px) {
  .award {
    padding: 0 16px 64px;
  }
}
@media screen and (min-width: 1000px) {
  .award {
    padding: 0 24px 80px;
  }
}

.task {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  padding: 40px 16px 150px;
  padding-bottom: 150px;
  background: var(--gray-100);
  text-align: center;
  position: relative;
}
.task__inner {
  width: 100%;
  max-width: 1280px;
}
.task__title {
  font-size: 1.125rem;
  text-align: center;
  display: flex;
  flex-flow: wrap column;
  padding-bottom: 16px;
  position: relative;
}
.task__title:after {
  content: "";
  width: 70px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 4px;
  position: absolute;
  bottom: 0;
  left: calc(50% - 35px);
}
@media screen and (min-width: 1200px) {
  .task__title {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 1400px) {
  .task__title {
    font-size: 1.5rem;
  }
}
.task__list {
  display: inline-flex;
  flex-flow: wrap column;
  margin-bottom: 32px;
}
.task__list__item {
  padding-top: 40px;
}
.task__list__item__title {
  display: inline-block;
  margin-bottom: 24px;
  padding: 0 8px 8px;
  border-bottom: 2px solid var(--gray-900);
  color: var(--primary-color);
  font-size: clamp(1rem, 0.9259259259rem + 0.3703703704vw, 1.25rem);
  position: relative;
}
.task__list__item__title:nth-of-type(n + 2) {
  margin-top: 24px;
}
.task__list__item__title:before, .task__list__item__title:after {
  content: "";
  border-right: 14px solid transparent;
  border-top: 14px solid var(--gray-100);
  position: absolute;
  bottom: -11px;
  left: calc(50% - 12px);
  z-index: 2;
}
.task__list__item__title:after {
  border-top-color: var(--gray-900);
  bottom: -16px;
  left: calc(50% - 14px);
  z-index: 1;
}
.task__list__item__title span {
  color: var(--gray-900);
}
.task__list__item__description {
  font-weight: 700;
}
.task__list__item__description span {
  display: block;
  font-size: 0.76rem;
}
.task__image {
  width: 140px;
  height: auto;
  position: absolute;
  bottom: -2px;
  left: calc(50% - 70px);
}
@media screen and (min-width: 400px) {
  .task__list__item__title {
    font-size: 1rem;
  }
  .task__list__item__description span {
    font-size: 0.8rem;
  }
}
@media screen and (min-width: 768px) {
  .task {
    padding: 64px 16px 220px;
  }
  .task__list {
    display: flex;
    flex-flow: wrap row;
    margin-top: 64px;
    margin-bottom: 0;
  }
  .task__list__item {
    width: 33.333%;
    padding: 24px 16px 0;
    text-align: center;
  }
  .task__list__item:first-of-type {
    padding-top: 72px;
  }
  .task__list__item:last-of-type {
    padding-top: 80px;
  }
  .task__list__item__title:nth-of-type(n + 2) {
    margin-top: 64px;
  }
  .task__list__item__title span {
    display: inline-block;
  }
  .task__list__item__description span {
    font-size: 0.76rem;
  }
  .task__image {
    width: 197px;
    left: calc(50% - 98px);
  }
}
@media screen and (min-width: 1000px) {
  .task {
    padding: 80px 24px 220px;
  }
  .task__list__item__description span {
    font-size: 0.72rem;
  }
}
@media screen and (min-width: 1400px) {
  .task__list__item {
    padding: 0 24px;
  }
  .task__list__item__title {
    padding-bottom: 16px;
  }
}

.imp {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  padding: 40px 16px 100px;
  position: relative;
}
.imp:after {
  content: "";
  display: block;
  width: 320px;
  height: 98px;
  background: url(../images/top/imp_002.png) 0 0/100% auto no-repeat;
  position: absolute;
  bottom: 0;
  left: calc(50% - 160px);
}
.imp__inner {
  display: flex;
  flex-flow: wrap column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1280px;
}
.imp__title {
  text-align: center;
}
.imp__title b {
  color: var(--primary-color);
}
.imp__enq {
  width: 100%;
  max-width: 53.75rem;
  margin-top: 40px;
  padding: 16px;
  background: var(--gray-100);
  border: 2px solid var(--gray-300);
  border-radius: 1rem;
  text-align: center;
}
.imp__enq__image {
  margin-top: 32px;
}
.imp__comment {
  display: flex;
  flex-flow: wrap column;
  align-items: center;
  max-width: 53.75rem;
  margin-top: 40px;
}
.imp__comment__list {
  display: flex;
  flex-flow: wrap column;
  margin-bottom: 16px;
}
.imp__comment__list__item {
  display: flex;
  flex-flow: wrap column;
  padding: 24px 0;
  font-size: clamp(0.75rem, 0.712962963rem + 0.1851851852vw, 0.875rem);
}
.imp__comment__list__item__title {
  padding: 8px 24px;
  align-self: center;
  background: var(--primary-color);
  border-radius: 1.25rem;
  color: var(--gray-000);
  font-weight: 700;
  text-align: center;
}
.imp__comment__list__item__description {
  margin-top: 24px;
}
.imp__comment__list__item__description b {
  color: var(--primary-color);
}
.imp__note {
  font-size: clamp(0.625rem, 0.587962963rem + 0.1851851852vw, 0.75rem);
  text-align: right;
}
@media screen and (min-width: 768px) {
  .imp {
    padding: 64px 16px;
  }
  .imp:after {
    width: 360px;
    height: 110px;
    left: calc(50% - 180px);
  }
  .imp__title span {
    display: inline-block;
  }
  .imp__enq {
    padding: 32px 64px;
  }
  .imp__comment__list {
    flex-flow: wrap row;
    margin-top: 32px;
    margin-bottom: 0;
  }
  .imp__comment__list__item {
    width: 33.333%;
    padding: 0 24px;
  }
  .imp__note {
    width: calc(100% - 32px);
    margin-top: 32px;
  }
}
@media screen and (min-width: 1000px) {
  .imp {
    padding: 80px 24px;
  }
  .imp:after {
    width: 430px;
    height: 125px;
    left: calc(50% - 215px);
  }
}

.supervisor {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  margin: 0 auto;
  padding: 40px 16px;
  text-align: center;
  overflow: hidden;
}
.supervisor__inner {
  display: flex;
  align-items: center;
  flex-flow: column;
  width: 100%;
  max-width: 1280px;
}
.supervisor__title {
  display: inline-block;
  margin-bottom: 24px;
  padding: 0 24px;
  color: var(--gray-900);
  font-size: clamp(0.8125rem, 0.6087962963rem + 1.0185185185vw, 1.5rem);
  font-weight: bold;
  text-align: center;
  position: relative;
}
.supervisor__title b {
  color: var(--primary-color);
}
.supervisor__title:before, .supervisor__title:after {
  content: "";
  width: 14px;
  height: 24px;
  background: url(../images/top/icon_dot.svg) center/auto 100% no-repeat;
  position: absolute;
  top: 0;
}
.supervisor__title:before {
  left: 0.5rem;
}
.supervisor__title:after {
  right: 0.5rem;
  transform: scaleX(-1);
}
.supervisor__description {
  font-size: clamp(0.75rem, 0.6759259259rem + 0.3703703704vw, 1rem);
}
.supervisor__content {
  display: flex;
  flex-flow: column;
  gap: 32px;
  max-width: 53.75rem;
  margin-top: 32px;
}
.supervisor__content__image {
  display: flex;
  flex-flow: column;
  gap: 16px;
  min-width: 0;
  font-size: 1rem;
  font-weight: 700;
}
.supervisor__content__image__item {
  width: 120px;
  height: auto;
}
.supervisor__content__image__description__title {
  font-size: 0.8rem;
}
.supervisor__content__image__description__data {
  font-size: 1.2rem;
}
.supervisor__content__image__description__data small {
  margin-left: 8px;
  font-size: 0.8rem;
}
.supervisor__content__description {
  flex: 1;
  min-width: 0;
  text-align: left;
}
.supervisor__content__description__text {
  margin-bottom: 1rem;
}
.supervisor__content__description__text b {
  color: var(--primary-color);
}
.supervisor__related {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  margin-top: 32px;
}
.supervisor__related__inner {
  display: inline-flex;
  flex-flow: wrap column;
  justify-content: flex-start;
  padding: 16px 24px;
  border: 1px dotted var(--gray-500);
  border-radius: 1rem;
}
.supervisor__related__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  margin-right: auto;
  padding: 8px;
  background-color: var(--primary-color-3);
  border-radius: 0.25rem;
  font-size: 0.75rem;
  line-height: 1;
}
@media screen and (min-width: 400px) {
  .supervisor__title {
    margin-bottom: 32px;
    padding: 0 40px;
    font-size: clamp(1rem, 0.7962962963rem + 1.0185185185vw, 1.6875rem);
  }
  .supervisor__title:before, .supervisor__title:after {
    width: 20px;
    height: 32px;
    top: -0.1rem;
  }
}
@media screen and (min-width: 768px) {
  .supervisor {
    padding: 64px 16px;
  }
  .supervisor__title {
    font-size: clamp(1.125rem, 1.0138888889rem + 0.5555555556vw, 1.5rem);
    padding: 0 32px;
  }
  .supervisor__title br {
    display: none;
  }
  .supervisor__title:before, .supervisor__title:after {
    top: -0.02rem;
  }
  .supervisor__title:before {
    left: 0;
  }
  .supervisor__title:after {
    right: 0;
  }
  .supervisor__content {
    flex-flow: row;
    margin-top: 56px;
  }
  .supervisor__content__image {
    width: 300px;
    text-align: left;
  }
  .supervisor__content__image__item {
    width: 170px;
  }
  .supervisor__content__image__description__title {
    font-size: 1rem;
  }
  .supervisor__content__image__description__data {
    font-size: 1.5rem;
  }
  .supervisor__content__image__description__data small {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1000px) {
  .supervisor {
    padding: 80px 24px;
  }
}

.feature {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  padding: 40px 16px;
  background: var(--gray-100);
}
.feature__inner {
  width: 100%;
  max-width: 1280px;
}
.feature__title {
  font-size: 1.125rem;
  text-align: center;
  display: flex;
  flex-flow: wrap column;
  padding-bottom: 16px;
  position: relative;
}
.feature__title:after {
  content: "";
  width: 70px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 4px;
  position: absolute;
  bottom: 0;
  left: calc(50% - 35px);
}
@media screen and (min-width: 1200px) {
  .feature__title {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 1400px) {
  .feature__title {
    font-size: 1.5rem;
  }
}
.feature__list__item {
  display: flex;
  flex-flow: wrap column;
  margin-top: 56px;
}
.feature__list__item:first-of-type {
  margin-top: 24px;
}
.feature__list__item__content {
  order: 2;
  margin-top: 24px;
}
.feature__list__item__content__title {
  margin-bottom: 24px;
  font-size: 1.125rem;
  text-align: center;
}
.feature__list__item__content__description {
  margin-top: 16px;
}
.feature__list__item__content__description:first-of-type {
  margin-top: 0;
}
.feature__list__item__content__description strong {
  font-weight: 700;
}
.feature__list__item__image {
  order: 1;
  padding: 32px 0 0 32px;
  text-align: center;
  position: relative;
}
.feature__list__item__image--new:before {
  content: "";
  width: 60px;
  height: 56px;
  background: url(../images/top/feature-baloon.png) 0 0/100% auto no-repeat;
  position: absolute;
  right: -4px;
  top: 5px;
}
@media screen and (min-width: 400px) {
  .feature__list__item__image--new:before {
    width: 90px;
    height: 76px;
    right: -30px;
    top: 10px;
  }
}
.feature__list__item__image__title {
  display: inline-flex;
  flex-flow: wrap column;
  padding: 12px 20px;
  background: var(--primary-color);
  border-radius: 1rem;
  color: var(--gray-000);
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
}
.feature__list__item__image__title__text {
  font-size: 0.6875rem;
}
.feature__list__item__image__title__num {
  margin-top: 4px;
  font-style: normal;
  font-size: clamp(1.875rem, 1.7268518519rem + 0.7407407407vw, 2.375rem);
}
.feature__list__item__image__item {
  background: var(--gray-000);
  border: 4px solid var(--primary-color);
  border-radius: 2rem;
  overflow: hidden;
}
.feature__list__item:nth-of-type(odd) .feature__list__item__image {
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .feature {
    padding: 64px 16px;
  }
  .feature__list__item {
    flex-flow: wrap row;
    justify-content: space-between;
  }
  .feature__list__item__content {
    order: 1;
    width: 52%;
    margin-top: 0;
    padding: 32px 32px 16px 0;
  }
  .feature__list__item__content__title {
    text-align: left;
  }
  .feature__list__item__image {
    order: 2;
    width: 48%;
    padding: 48px 0 0 48px;
  }
  .feature__list__item__image__title__num {
    margin-top: 8px;
    font-size: clamp(1.875rem, 1.7268518519rem + 0.7407407407vw, 2.375rem);
  }
  .feature__list__item:nth-of-type(odd) .feature__list__item__content {
    order: 2;
    padding: 32px 0 16px 48px;
  }
  .feature__list__item:nth-of-type(odd) .feature__list__item__image {
    order: 1;
  }
}
@media screen and (min-width: 1000px) {
  .feature {
    padding: 80px 24px;
  }
  .feature__list__item__content {
    padding: 48px 80px 16px 32px;
  }
  .feature__list__item__image__title {
    padding: 16px 24px;
  }
  .feature__list__item__image__title__num {
    font-size: clamp(2.375rem, 2.3009259259rem + 0.3703703704vw, 2.625rem);
  }
  .feature__list__item:nth-of-type(odd) .feature__list__item__content {
    padding: 48px 32px 16px 80px;
  }
}
@media screen and (min-width: 1200px) {
  .feature__list__item__content__title {
    font-size: 1.375rem;
  }
  .feature__list__item__image__title__num {
    font-size: clamp(1.625rem, 1.3287037037rem + 1.4814814815vw, 2.625rem);
  }
}
@media screen and (min-width: 1400px) {
  .feature__list__item__content__title {
    font-size: 1.5rem;
  }
  .feature__list__item__image__title__num {
    font-size: clamp(2.5rem, 2.3888888889rem + 0.5555555556vw, 2.875rem);
  }
}

.activation {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  padding: 40px 16px;
}
.activation__inner {
  display: flex;
  flex-flow: wrap column;
  align-items: center;
  width: 100%;
  max-width: 870px;
}
.activation__title {
  font-size: 1.125rem;
  text-align: center;
  display: flex;
  flex-flow: wrap column;
  padding-bottom: 16px;
  position: relative;
}
.activation__title:after {
  content: "";
  width: 70px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 4px;
  position: absolute;
  bottom: 0;
  left: calc(50% - 35px);
}
@media screen and (min-width: 1200px) {
  .activation__title {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 1400px) {
  .activation__title {
    font-size: 1.5rem;
  }
}
.activation__title {
  margin-bottom: 40px;
}
.activation__sub {
  font-size: 1.125rem;
  text-align: center;
}
.activation__sub span {
  display: inline-block;
}
.activation__list {
  display: flex;
  flex-flow: wrap row;
  justify-content: center;
  margin-top: 32px;
}
.activation__list__item {
  max-width: 162px;
  padding: 16px;
  text-align: center;
}
.activation__list__item__text {
  margin-top: 16px;
  font-size: clamp(0.75rem, 0.712962963rem + 0.1851851852vw, 0.875rem);
}
.activation__description {
  margin-top: 32px;
}
.activation__footer {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .activation {
    padding: 64px 16px;
  }
  .activation__list {
    margin: 48px -32px;
  }
  .activation__list__item {
    max-width: 224px;
    padding: 0 32px;
  }
  .activation__description {
    margin-top: 0;
  }
  .activation__footer {
    margin-top: 40px;
  }
}
@media screen and (min-width: 1000px) {
  .activation {
    padding: 80px 24px;
  }
}
@media screen and (min-width: 1200px) {
  .activation__sub {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 1400px) {
  .activation__sub {
    font-size: 1.5rem;
  }
}

.simple-cta {
  display: flex;
  justify-content: center;
  padding: 32px 16px;
  background: var(--primary-color);
  color: var(--gray-000);
  text-align: center;
}
.simple-cta__inner {
  display: flex;
  flex-flow: wrap column;
  width: 100%;
}
.simple-cta__title {
  font-size: 1rem;
}
.simple-cta__title span {
  text-align: center;
}
.simple-cta__buttons {
  order: 4;
  display: flex;
  flex-flow: wrap row;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
}
.simple-cta__buttons__button {
  display: flex;
  flex-flow: wrap column;
  padding: 24px 8px 0;
}
.simple-cta__buttons__button__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--button-color);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  min-height: clamp(3rem, 2.7037037037rem + 1.4814814815vw, 4rem);
  padding: 0 16px;
  border-radius: clamp(3rem, 2.7037037037rem + 1.4814814815vw, 4rem);
}
@media screen and (min-width: 768px) {
  .simple-cta__buttons__button__item {
    padding: 0 24px;
  }
}
.simple-cta__buttons__button__item {
  background: var(--button-color);
  color: var(--gray-000);
}
.simple-cta__buttons__button__item--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--button-color);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  min-height: clamp(3rem, 2.7037037037rem + 1.4814814815vw, 4rem);
  padding: 0 16px;
  border-radius: clamp(3rem, 2.7037037037rem + 1.4814814815vw, 4rem);
}
@media screen and (min-width: 768px) {
  .simple-cta__buttons__button__item--outline {
    padding: 0 24px;
  }
}
.simple-cta__buttons__button__item--outline {
  background: var(--gray-000);
  color: var(--gray-900);
}
.simple-cta__buttons__button__copy {
  display: inline-block;
  margin-bottom: 4px;
  padding: 0 8px;
  align-self: center;
  font-size: 0.6875rem;
  position: relative;
}
.simple-cta__buttons__button__copy:before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 80%;
  background: var(--gray-000);
  position: absolute;
  top: 1px;
  left: 0;
  transform: rotate(-20deg);
}
@media screen and (min-width: 400px) {
  .simple-cta__buttons__button__copy:before {
    height: 95%;
    top: 0;
  }
}
.simple-cta__buttons__button__copy:after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 80%;
  background: var(--gray-000);
  position: absolute;
  top: 1px;
  right: 0;
  transform: rotate(20deg);
}
@media screen and (min-width: 400px) {
  .simple-cta__buttons__button__copy:after {
    height: 95%;
    top: 0;
  }
}
@media screen and (min-width: 400px) {
  .simple-cta__buttons__button__copy {
    margin-bottom: 8px;
    padding: 0 12px;
    font-size: 0.8125rem;
  }
}
.simple-cta__buttons__link {
  width: 100%;
  margin-top: 32px;
  text-align: center;
}
.simple-cta__buttons__link a {
  color: var(--gray-000);
}
@media screen and (min-width: 768px) {
  .simple-cta {
    padding: 64px 16px;
  }
  .simple-cta__title span {
    display: block;
  }
  .simple-cta__buttons__button {
    width: 100%;
    max-width: 13.75rem;
  }
  .simple-cta__buttons__button__item {
    width: 100%;
  }
}
@media screen and (min-width: 1000px) {
  .simple-cta__inner {
    flex-flow: wrap row;
    align-items: center;
    justify-content: center;
    max-width: 1280px;
  }
  .simple-cta__title {
    font-size: 1.375rem;
  }
  .simple-cta__title span {
    text-align: left;
  }
  .simple-cta__buttons {
    padding-left: 24px;
  }
  .simple-cta__buttons__button {
    max-width: 13.125rem;
  }
  .simple-cta__buttons__button--inquiry {
    max-width: 11.875rem;
  }
}
@media screen and (min-width: 1200px) {
  .simple-cta__title {
    font-size: 1.1875rem;
  }
  .simple-cta__buttons {
    width: 28rem;
    padding-left: 16px;
  }
}
@media screen and (min-width: 1400px) {
  .simple-cta__title {
    font-size: 1.5rem;
  }
  .simple-cta__buttons {
    width: 30rem;
    padding-left: 24px;
  }
  .simple-cta__buttons__button {
    max-width: 13.75rem;
  }
  .simple-cta__buttons__button--inquiry {
    max-width: 11.875rem;
  }
}

.side {
  background: var(--gray-600);
  color: var(--gray-000);
}
.side__inner {
  height: 100%;
  max-height: 100dvh;
  padding: 24px 24px 48px;
  position: sticky;
  top: 24px;
  overflow-y: auto;
}
.side__header {
  text-align: center;
}
.side__header__title, .side__header__text {
  font-size: clamp(1.25rem, 1.212962963rem + 0.1851851852vw, 1.375rem);
  font-weight: 700;
}
.side__body {
  margin-top: 24px;
  padding: 24px;
  background: var(--gray-000);
  border-radius: 1rem;
}
.side__body__footer {
  margin-top: 32px;
  color: var(--gray-900);
}
.side__body__footer__text {
  font-size: clamp(0.75rem, 0.712962963rem + 0.1851851852vw, 0.875rem);
  font-weight: 700;
  text-align: center;
}
.side__body__footer__text__link {
  display: inline-block;
}

/*# sourceMappingURL=page-main.css.map */
