/*
RESET CSS
-------------------------------------------------------------------
* @acab/reset.css
* Nov 29, 2024
* https://github.com/mayank99/reset.css/blob/main/package/index.css
*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
  tab-size: 2;
  scrollbar-gutter: stable;
  interpolate-size: allow-keywords;
  line-height: 1.5;
}

:where(html:has(dialog:modal[open])) {
  overflow: clip;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: inherit;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled, label:has(> :disabled, + disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
  text-wrap: balance;
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(dialog, [popover]) {
  border: none;
  background: none;
  color: inherit;
  inset: unset;
  max-width: unset;
  max-height: unset;
  overflow: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  display: none !important;
}

:where(:focus-visible) {
  outline: 3px solid CanvasText;
  box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px;
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
  user-select: none !important;
}

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: min(1em, 3.8095vw);
  color: var(--color-text-main);
  background-color: var(--color-white);
  line-height: 1.5;
  text-align: left;
}

.sp,
.tb,
.pc {
  display: none;
}

@media (max-width: 575px) {
  .sp {
    display: block !important;
  }
  br.sp {
    display: inline !important;
  }
}
@media (min-width: 576px) and (max-width: 1023px) {
  .tb {
    display: block !important;
  }
  br.tb {
    display: inline !important;
  }
}
@media (min-width: 1024px) {
  .pc {
    display: block !important;
  }
  br.pc {
    display: inline !important;
  }
}
:root {
  --color-primary: #0089d0;
  --color-secondary: #00baf2;
  --color-text-main: #222222;
  --color-white: #ffffff;
  --color-bg-base: #dcf1fd;
  --color-bg-accent: #fffab5;
  --color-border: #cdcdcd;
}

.stripe {
  width: 100%;
  height: 10px;
  background-image: url("./stripe_pattern.svg");
  background-repeat: repeat-x;
  background-position: center -12px;
  background-size: auto 22px;
}
@media (min-width: 1024px) {
  .stripe {
    height: 20px;
    background-position: center -24px;
    background-size: auto 44px;
  }
}

.hero {
  position: relative;
  width: 100%;
  background-color: var(--color-bg-base);
  background-image: url("./hero_bg_sp.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
}
@media (min-width: 1024px) {
  .hero {
    background-image: url("./hero_bg.png");
    background-size: cover;
    background-position: top center;
  }
}
.hero__container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px 20px;
}
@media (min-width: 1024px) {
  .hero__container {
    padding: 0 30px;
  }
}

.credit {
  display: flex;
  justify-content: flex-end;
  padding: 10px 0;
}
.credit-text {
  font-size: 0.875em;
  line-height: 16px;
  color: var(--color-text-main);
}

.hero__title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding-top: 10px;
}
@media (min-width: 1024px) {
  .hero__title {
    gap: 15px;
  }
}

.hero__ribbon {
  clip-path: polygon(1.22% 0, 100% 0, 98.78% 100%, 0 100%);
  display: block;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  background-color: var(--color-secondary);
  color: var(--color-white);
  font-weight: 900;
  font-size: 1.05em;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
  padding: 4px 8px 5px;
}
@media (min-width: 1024px) {
  .hero__ribbon {
    font-size: 1.6875em;
    padding: 4px 60px 5px;
  }
}

.hero__heading-wrap {
  width: calc(100% + 30px);
  margin: 0 -15px;
}
@media (min-width: 1024px) {
  .hero__heading-wrap {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    position: relative;
  }
}

.hero__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-shadow: 0 0 10px var(--color-white);
}
.hero__heading-sub {
  color: var(--color-primary);
  font-weight: 900;
  font-size: clamp(32px, 10.95vw, 80px);
  line-height: 1.125;
}
@media (min-width: 1024px) {
  .hero__heading-sub {
    font-size: 2.5em;
  }
}
.hero__heading-main {
  color: var(--color-text-main);
  font-weight: 900;
  font-size: clamp(28px, 9.52vw, 68px);
  line-height: 1.125;
}
@media (min-width: 1024px) {
  .hero__heading-main {
    font-size: 2.125em;
  }
}

.hero__lead {
  width: 100%;
  max-width: 820px;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1em;
  line-height: 2;
  text-align: justify;
  text-justify: inter-ideograph;
  font-feature-settings: "palt";
}
@media (min-width: 1024px) {
  .hero__lead {
    font-size: 1.125em;
    text-align: center;
  }
}

.hero__badge {
  display: none;
}
@media (min-width: 1024px) {
  .hero__badge {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto 0;
    width: 120px;
    height: fit-content;
  }
}

.points {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
}
@media (min-width: 1024px) {
  .points {
    display: grid;
    grid-template-columns: 36.2319fr 27.6087fr 36.2319fr;
    grid-template-rows: repeat(3, auto);
    row-gap: 1.4493cqw;
    align-items: start;
    container-type: inline-size;
    padding-top: 0;
    margin-top: 135px;
    margin-bottom: 80px;
  }
}

.hero__model-wrap {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  display: grid;
  align-items: start;
}
@media (min-width: 1024px) {
  .hero__model-wrap {
    display: none;
  }
}

.hero__model--duplicate {
  grid-area: 1/1;
  width: 55%;
  max-width: 230px;
  margin: 0 auto;
}
.hero__model--original {
  display: none;
}
@media (min-width: 1024px) {
  .hero__model--original {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
    width: max(27.6087%, 314.74px);
    aspect-ratio: 381/800.1;
  }
}

.hero__badge-overlay {
  grid-area: 1/1;
  justify-self: end;
  margin-top: 10px;
  width: clamp(45px, 28vw - 33px, 120px);
}

.points__arrow {
  display: none;
}
@media (min-width: 1024px) {
  .points__arrow {
    display: block;
    position: absolute;
    width: 2.5362%;
    aspect-ratio: 35/50;
    background-image: url("./arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
  }
  .points__arrow--row1 {
    top: 12.0685%;
    left: 62.75%;
  }
  .points__arrow--row2 {
    top: 46.5%;
    left: 62.75%;
  }
  .points__arrow--row3 {
    top: 81.0822%;
    left: 34.7138%;
    transform: scaleX(-1);
  }
  .points__arrow--sub {
    left: 34.7138%;
    transform: scaleX(-1);
  }
}

.point {
  position: relative;
  width: 100%;
  background-color: var(--color-white);
  box-shadow: 0 0 5px rgba(0, 137, 208, 0.25);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1024px) {
  .point {
    position: relative;
    flex-direction: row;
    gap: 0;
    width: 100%;
    height: auto;
  }
}
@media (min-width: 1024px) {
  .point--03 {
    grid-column: 1;
    grid-row: 1;
  }
}
@media (min-width: 1024px) {
  .point--04 {
    grid-column: 1;
    grid-row: 2;
  }
}
@media (min-width: 1024px) {
  .point--05 {
    grid-column: 1;
    grid-row: 3;
  }
}
@media (min-width: 1024px) {
  .point--01 {
    grid-column: 3;
    grid-row: 1;
  }
}
@media (min-width: 1024px) {
  .point--02 {
    grid-column: 3;
    grid-row: 2;
  }
}
.point__photo {
  order: 2;
  width: 100%;
  aspect-ratio: 200/210;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .point__photo {
    order: 0;
    flex: 0 0 40%;
    width: 40%;
    aspect-ratio: auto;
  }
}
.point__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.point__content {
  order: 1;
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  column-gap: 10px;
}
@media (min-width: 1024px) {
  .point__content {
    order: 0;
    flex: 1 1 auto;
    padding: 3%;
    column-gap: 2.5%;
    align-content: flex-start;
  }
}
.point__num {
  align-self: center;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 3em;
  line-height: 1;
  color: var(--color-primary);
}
@media (min-width: 1024px) {
  .point__num {
    font-size: 3.4783cqw;
  }
}
.point__label {
  align-self: center;
  font-weight: 700;
  font-size: 0.875em;
  line-height: 1.3;
  color: var(--color-text-main);
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .point__label {
    font-size: 1.0145cqw;
  }
}
.point__title {
  flex-basis: 100%;
  width: 100%;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 900;
  color: var(--color-primary);
  font-size: 1.5em;
}
@media (min-width: 1024px) {
  .point__title {
    font-size: 1.4493cqw;
    padding-top: 1%;
  }
}
.point__text {
  flex-basis: 100%;
  width: 100%;
  font-size: 0.875em;
  line-height: 1.5;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media (min-width: 1024px) {
  .point__text {
    font-size: max(12px, 0.8696cqw);
    padding-top: 1%;
  }
}

.iine {
  width: 100%;
  border: 1px solid var(--color-primary);
  background-color: var(--color-bg-accent);
  position: relative;
  padding-bottom: 16px;
}
@media (min-width: 1024px) {
  .iine {
    grid-column: 3;
    grid-row: 3;
    padding-bottom: 0;
  }
}
.iine__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--color-primary);
  height: 36px;
}
@media (min-width: 1024px) {
  .iine__head {
    height: 20%;
    gap: 1.6%;
    padding: 0.5% 0 1%;
  }
}
.iine__head-text {
  color: var(--color-white);
  font-weight: 900;
  font-size: 1.3125em;
}
@media (min-width: 1024px) {
  .iine__head-text {
    font-size: 1.7391cqw;
  }
}
.iine__badge {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (min-width: 1024px) {
  .iine__badge {
    gap: 0.2899cqw;
  }
}
.iine__badge img {
  width: 40px;
  flex: 0 0 auto;
  margin-top: -8px;
}
@media (min-width: 1024px) {
  .iine__badge img {
    width: 3.5cqw;
    margin-top: -0.5797cqw;
  }
}
.iine__badge span {
  color: var(--color-bg-accent);
  font-weight: 900;
  font-size: 0.7em;
  transform: rotate(-16deg);
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .iine__badge span {
    font-size: 1.1594cqw;
  }
}
.iine__list {
  padding: 20px 20px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (min-width: 1024px) {
  .iine__list {
    padding: 2% 3% 2% 8%;
    gap: 1%;
  }
}
.iine__list li {
  position: relative;
  font-weight: 700;
  font-size: 1.125em;
  line-height: 1.55;
  color: var(--color-text-main);
}
@media (min-width: 1024px) {
  .iine__list li {
    font-size: 1.3043cqw;
  }
}
.iine__list .checkmark {
  position: absolute;
  left: -27px;
  top: 4px;
}
@media (min-width: 1024px) {
  .iine__list .checkmark {
    left: -1.9565cqw;
    top: 0.2899cqw;
    width: 1.4493cqw;
    height: 1.4493cqw;
  }
}
.iine__list .accent {
  color: var(--color-primary);
  white-space: nowrap;
}

.checkmark {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("./checkmark.svg");
  background-size: contain;
  background-repeat: no-repeat;
  flex: 0 0 auto;
}
.checkmark--lg {
  width: 30px;
  height: 30px;
}

.content {
  width: 100%;
  padding: 50px 0;
}
@media (min-width: 1024px) {
  .content {
    padding: 60px 0;
  }
}
.content__body {
  width: 90%;
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  .content__body {
    gap: 50px;
  }
}

.content__lead p,
.content__text p {
  font-size: 1em;
  line-height: 2;
  text-align: justify;
  text-justify: inter-ideograph;
  text-indent: 1em;
}
.content__lead p + p,
.content__text p + p {
  margin-top: 1em;
}
.content__lead .sup,
.content__text .sup {
  font-size: 0.65em;
  vertical-align: top;
}

.hero__lead .sup {
  font-size: 0.65em;
  vertical-align: top;
}

.content__h2 {
  text-align: center;
}
.content__h2 h2 {
  display: inline;
  color: var(--color-primary);
  font-size: 1.5em;
  line-height: 1.25;
  font-weight: 900;
  font-feature-settings: "palt";
}
@media (min-width: 1024px) {
  .content__h2 h2 {
    font-size: 2em;
  }
}

.graph {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.graph__head {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 900;
  font-size: 1.25em;
  line-height: 1.5;
  text-align: center;
  padding: 15px 10px;
}
@media (min-width: 1024px) {
  .graph__head {
    font-size: 1.875em;
    padding: 5px 10px;
  }
}

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

.content__footer-note {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.content__note {
  font-size: 0.875em;
  line-height: 2;
  color: #000;
}

.purchase-box {
  width: 90%;
  max-width: 850px;
  margin: 40px auto 0;
  border: 1px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px;
}
@media (min-width: 1024px) {
  .purchase-box {
    margin: 60px auto 0;
    gap: 20px;
    padding: 28px;
  }
}
.purchase-box__text {
  font-size: 1.125em;
  line-height: 1.8;
  color: var(--color-text-main);
  text-align: center;
}
.purchase-box__shop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media (min-width: 1024px) {
  .purchase-box__shop {
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
  }
}
.purchase-box__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.125em;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  word-break: break-all;
  transition: color 0.3s, text-decoration-color 0.3s;
}
.purchase-box__link-icon {
  display: inline-block;
  width: 6px;
  height: 10.5px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask-image: url("./btn_arrow.svg");
  mask-image: url("./btn_arrow.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.purchase-box__link:hover {
  color: var(--color-secondary);
}

.interview {
  width: 100%;
}
.interview__inner {
  width: 100%;
  background-color: var(--color-bg-base);
  padding: 50px 0;
}
@media (min-width: 1024px) {
  .interview__inner {
    padding: 60px 0;
  }
}
.interview__body {
  width: 90%;
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (min-width: 1024px) {
  .interview__body {
    gap: 50px;
  }
}

.interview__label {
  clip-path: polygon(2.02% 0, 100% 0, 97.98% 100%, 0 100%);
  display: block;
  width: 70vw;
  text-align: center;
  background-color: var(--color-text-main);
  color: var(--color-white);
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 900;
  font-size: 1.375em;
  letter-spacing: 0.05em;
  padding: 4px 32px;
}
@media (min-width: 1024px) {
  .interview__label {
    clip-path: polygon(2.67% 0, 100% 0, 97.33% 100%, 0 100%);
    width: 400px;
    font-size: 1.75em;
    padding: 4px 60px;
  }
}

.interview__h2 h2,
.interview__h3 h3 {
  color: var(--color-text-main);
  font-weight: 900;
  font-size: 1.5em;
  line-height: 1.4;
  text-align: center;
}
@media (min-width: 1024px) {
  .interview__h2 h2,
  .interview__h3 h3 {
    font-size: 2em;
  }
}

.interview__h3 h3 {
  color: var(--color-primary);
}

.interview__unit {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (min-width: 1024px) {
  .interview__unit {
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
  }
}

.interview__photo {
  width: 100%;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media (min-width: 1024px) {
  .interview__photo {
    flex: 0 0 340px;
    max-width: 340px;
  }
}
.interview__photo img {
  width: 100%;
  height: auto;
}

.interview__caption {
  text-align: center;
  color: var(--color-text-main);
  font-size: 1em;
  line-height: 1.5;
}
.interview__caption span {
  font-weight: 900;
  font-size: 1.25em;
}

.interview__text {
  width: 100%;
}
@media (min-width: 1024px) {
  .interview__text {
    flex: 1 1 570px;
  }
}
.interview__text p {
  font-size: 1em;
  line-height: 2;
  text-align: justify;
  text-justify: inter-ideograph;
  text-indent: 1em;
}
.interview__text p + p {
  margin-top: 1em;
}

.interview__block {
  width: 100%;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (min-width: 1024px) {
  .interview__block {
    gap: 40px;
  }
}
.interview__block > p {
  width: 100%;
  font-size: 1em;
  line-height: 2;
  text-align: justify;
  text-justify: inter-ideograph;
  text-indent: 1em;
}

.interview__figure {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.interview__figure img {
  width: 100%;
  height: auto;
}
.interview__figure figcaption {
  font-size: 1em;
  line-height: 1.6;
  text-align: center;
  color: var(--color-text-main);
}

.keieihandan {
  width: 100%;
  max-width: 820px;
  border: 1px solid var(--color-primary);
  background-color: var(--color-bg-accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
}
@media (min-width: 1024px) {
  .keieihandan {
    border-width: 2px;
    padding-bottom: 29px;
  }
}

.keieihandan__head {
  width: 100%;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 900;
  font-size: 1.25em;
  text-align: center;
  padding: 15px 10px;
  margin-bottom: 15px;
}
@media (min-width: 1024px) {
  .keieihandan__head {
    font-size: 1.875em;
    padding: 5px 10px;
    margin-bottom: 23px;
  }
}

.keieihandan__list {
  width: 100%;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1024px) {
  .keieihandan__list {
    padding: 0 50px;
    gap: 12px;
  }
}
.keieihandan__list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 700;
  font-size: 1.125em;
  line-height: 1.5;
  color: var(--color-text-main);
}
@media (min-width: 1024px) {
  .keieihandan__list li {
    font-size: 1.5em;
  }
}
.keieihandan__list .checkmark {
  margin-top: 0.25em;
  flex: 0 0 auto;
}
.keieihandan__list .accent {
  color: var(--color-primary);
  white-space: nowrap;
}

.inquiry {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 60px 0;
  border-bottom: 2px solid var(--color-border);
}
@media (min-width: 1024px) {
  .inquiry {
    gap: 25px;
    padding: 80px 0;
  }
}
.inquiry__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 1024px) {
  .inquiry__head {
    gap: 18px;
  }
}
.inquiry__head h2 {
  font-weight: 900;
  font-size: 1.125em;
  color: var(--color-text-main);
}
.inquiry__line {
  width: 45px;
  height: 2px;
  background-color: var(--color-text-main);
  border-radius: 1px;
}
@media (min-width: 1024px) {
  .inquiry__line {
    width: 70px;
  }
}
.inquiry__co {
  font-weight: 900;
  font-size: 1.5em;
  color: var(--color-text-main);
}
@media (min-width: 1024px) {
  .inquiry__co {
    font-size: 1.875em;
  }
}
.inquiry__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  max-width: 360px;
  height: 64px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  font-weight: 700;
  font-size: 1.125em;
  text-decoration: none;
  transition: filter 0.3s;
}
@media (min-width: 1024px) {
  .inquiry__btn {
    height: 80px;
    font-size: 1.25em;
  }
}
.inquiry__btn img {
  width: 8px;
}
.inquiry__btn:hover {
  filter: brightness(1.08);
}

.fadein {
  will-change: opacity, transform;
}

.fadein {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fadein.is-animated {
  opacity: 1;
}

.fadein.fadeinUp {
  transform: translateY(20px);
}

.fadein.fadeinUp.is-animated {
  opacity: 1;
  transform: translateY(0);
}
