:root {
  --padding: 40px;
  --padding-lg: 50px;
}

:root {
  --base-font: "Noto Sans JP", sans-serif;
  --second-font: "Barlow Condensed", sans-serif;
}

:root {
  --c-base: #fff;
  --c-accent: #fedb00;
  --c-dark: #000;
  --c-text: #000;
  --c-text-white: #fff;
}

:root {
  --z-index-modal: 50;
  --z-index-modal-open: 100;
  --z-index-overlay: 40;
  --z-index-sp-menu: 30;
  --z-index-header: 10;
  --z-index-page-top: 5;
  --z-index-following-banner: 5;
}

:root {
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);
}

:root {
  --rounded-xxs: 3px;
  --rounded-xs: 5px;
  --rounded-sm: 8px;
  --rounded-md: 10px;
  --rounded-lg: 15px;
  --rounded-ml: 20px;
  --rounded-xl: 25px;
  --rounded-xxl: 30px;
  --rounded-xxxl: 50px;
  --rounded-full: 99rem;
}

:root {
  --flex-track: minmax(0, 1fr);
}

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

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

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

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

button {
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background: none;
  touch-action: manipulation;
}

[type=text],
[type=email],
[type=tel],
select,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  border: none;
  border-radius: 0;
  width: 100%;
  background-color: var(--c-base);
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  padding: 0;
}

textarea {
  resize: none;
}

em {
  font-style: normal;
}

body {
  --_bg-color_1: #80858a;
  --_bg-color_2: var(--c-base);
  --_bg_change-percentage: 37.5%;
  font-family: var(--base-font);
  font-size: 30px;
  color: var(--c-text-white);
  background-color: var(--c-base);
  font-feature-settings: "halt";
  background: linear-gradient(to right, var(--_bg-color_1) 0%, var(--_bg-color_2) var(--_bg_change-percentage), var(--_bg-color_2) calc(100% - var(--_bg_change-percentage)), var(--_bg-color_1) 100%);
}

a {
  transition: opacity 0.3s;
  cursor: pointer;
}

.c-button {
  display: inline-block;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: var(--c-text-white);
  background-color: #39b54a;
  border-radius: var(--rounded-full);
  width: min(620px, 100%);
  padding: 15px;
  letter-spacing: 0.06em;
  animation: 1.75s pulse ease-in-out infinite;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
}

@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.c-heading-en {
  display: inline-block;
  font-family: var(--second-font);
  font-weight: 700;
  font-size: 56px;
  color: var(--c-accent);
  line-height: 1.5;
  text-transform: uppercase;
}

.c-heading-ja {
  font-weight: 700;
  font-size: 70px;
  line-height: 1.5;
  color: var(--c-text-white);
}

.c-heading-ja em {
  color: var(--c-accent);
}

.c-heading-ja--underline span {
  display: inline-block;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 15px;
}

.footer {
  font-size: 24px;
  padding: 25px 0;
}

.footer__inner {
  padding: 0 20px;
}

.footer__nav-list {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.footer__nav-item a {
  display: inline-block;
  padding: 5px;
}

.footer__copy {
  margin-top: 20px;
  text-align: center;
}

@media (any-hover: hover) {
  .footer__nav-item a:hover {
    opacity: 0.7;
  }
}
.l-inner {
  padding: 0 var(--padding);
  margin: 0 auto;
}

.l-inner--padding-lg {
  padding: 0 var(--padding-lg);
}

.l-wrapper {
  margin: 0 auto;
  max-width: 750px;
  overflow-x: clip;
  background-color: var(--c-dark);
}

.fv__inner {
  position: relative;
}

.fv__text {
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 355px;
  text-shadow: 0 0 1px var(--c-text), 0 0 1px var(--c-text), 0 0 1px var(--c-text), 0 0 1px var(--c-text), 0 0 1px var(--c-text);
  text-shadow: 0 0 16px var(--c-text), 0 0 16px var(--c-text);
  font-weight: 700;
  font-size: 72px;
  letter-spacing: 0.01em;
  line-height: 1.28;
}

.fv__note {
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 22px;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 1.233;
  text-align: center;
}

.fv__award {
  padding: 28px 0 18px;
  background-image: url("../img/bg_fv_award.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.fv__lead {
  margin: 0 auto;
  max-width: 660px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--c-accent);
  line-height: 1.5;
  text-align: center;
  letter-spacing: -0.05em;
  padding-bottom: 30px;
  margin-bottom: 20px;
  position: relative;
}

.fv__lead::before {
  content: "";
  width: 100%;
  aspect-ratio: 660/5;
  background-image: url(../img/bg_dot.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.banner1 {
  position: relative;
  z-index: 1;
}

.section-cta {
  padding: 10px 0 45px;
  background-color: var(--c-accent);
  position: relative;
}

.section-cta__title {
  padding-bottom: 20px;
}

.section-cta__title-inner {
  display: block;
  text-align: center;
  font-weight: 900;
  font-size: 79px;
  letter-spacing: 0.12em;
  line-height: 1.5;
  color: var(--c-text);
  position: relative;
}

.section-cta__title-img {
  display: inline-block;
  width: 330px;
}

.section-cta__title p {
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -40px;
}

.section-cta__main {
  margin-top: 58px;
  position: relative;
  z-index: 1;
}

.section-cta__img {
  position: relative;
}

.section-cta__button {
  position: absolute;
  width: 620px;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.section-cta__note {
  margin-top: 10px;
  font-size: 15px;
  color: var(--c-text);
  letter-spacing: 0.05em;
  line-height: 1.2333;
}

.reason {
  padding: 30px 0 60px;
  position: relative;
}

.reason::before {
  content: "";
  width: 100%;
  height: 60px;
  background-color: var(--c-dark);
  -webkit-clip-path: var(--clip-triangle-bottom);
          clip-path: var(--clip-triangle-bottom);
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.reason__title {
  text-align: center;
}

.reason__img {
  width: calc(100% + 110px);
  transform: translateX(-55px);
}

.reason__list {
  margin-top: 58px;
}

.reason__item + .reason__item {
  margin-top: 75px;
}

.c-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--second-font);
  font-weight: 700;
  font-size: 40px;
  color: var(--c-accent);
  line-height: 1.2;
  text-transform: uppercase;
}

.c-label__lines {
  display: flex;
  align-items: center;
}

.c-label__thin {
  margin-right: 18px;
  display: inline-block;
  width: 270px;
  height: 1px;
  background-color: var(--c-base);
}

.c-lable__line:not(:first-of-type) {
  margin-left: 10px;
}

.c-lable__line {
  display: inline-block;
  width: 100px;
  height: 8px;
  background-color: var(--c-base);
}

.c-lable__line.is-active {
  background-color: var(--c-accent);
}

.c-label__lines--type2 .c-label__thin {
  width: 160px;
}

.reason__sub-title {
  margin-top: 50px;
  font-weight: 600;
  font-size: 46px;
  line-height: 1.16;
  text-align: justify;
}

.reason__text {
  margin-top: 35px;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.75;
  text-align: justify;
}

.movie-section {
  position: relative;
  padding: 115px 0 55px;
}

.movie-section__bg-area {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 45px;
  position: relative;
  z-index: 1;
}

.movie-section__title {
  color: #00b8f0;
  font-weight: 700;
  font-size: 60px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: -0.04em;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 10px;
}

.movie-section__text {
  margin-top: 45px;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.75;
  text-align: justify;
  color: var(--c-text);
}

.movie-section__movie {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.movie-section__movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.common-cta {
  padding: 32px 0 45px;
  background-color: var(--c-accent);
}

.common-cta__main {
  position: relative;
  z-index: 1;
}

.common-cta__img {
  position: relative;
}

.common-cta__button {
  position: absolute;
  width: 620px;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.common-cta__note {
  margin: 10px 0 20px;
}

.common-cta__note small {
  display: block;
  font-size: 15px;
  color: var(--c-text);
  letter-spacing: 0.05em;
  line-height: 1.2333;
}

.common-cta__note {
  font-weight: 700;
  font-size: 45px;
  letter-spacing: 0.08em;
  color: var(--c-text);
}

.common-cta__note span {
  font-size: 1.25em;
  color: #da2032;
}

.what {
  padding: 40px 0 100px;
  background: linear-gradient(to bottom, #8c9196, #000);
}

.what__title {
  text-align: center;
}

.what__title-ja {
  margin: 25px auto 0;
  width: 610px;
}

.what__img {
  margin: 45px auto 0;
  width: 610px;
}

.what__list {
  margin-top: 60px;
  padding: 0 15px;
}

.what__item {
  padding: 45px 0;
  border-top: 2px solid var(--c-accent);
}

.what__item:last-of-type {
  border-bottom: 2px solid var(--c-accent);
}

.what__sub-title {
  font-weight: 700;
  font-size: 50px;
  line-height: 1.5;
  color: var(--c-accent);
  text-align: center;
}

.what__sub-title span {
  background: linear-gradient(transparent 0%, #da2032 0);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0 10px;
}

.what__text {
  margin-top: 45px;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.75;
  text-align: justify;
  padding: 0 40px;
  letter-spacing: -0.04em;
}

.what__item-list {
  margin-top: 40px;
}

.what__item-title {
  margin: 0 auto;
  font-weight: 700;
  font-size: 38px;
  color: var(--c-accent);
  letter-spacing: 0.08em;
  line-height: 1.97;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}

.what__item-title::before,
.what__item-title::after {
  --_width: 150px;
  content: "";
  width: var(--_width);
  height: 1px;
  background-color: var(--c-base);
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.what__item-title::before {
  left: calc(-1 * var(--_width) - 25px);
}

.what__item-title::after {
  right: calc(-1 * var(--_width) - 25px);
}

.what__item-items {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 28px;
       column-gap: 28px;
}

.what__item-item {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
  text-align: center;
  background-color: var(--c-accent);
  border-radius: var(--rounded-full);
  color: var(--c-text);
  width: 157px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
}

.what__item-label {
  margin: 45px auto 20px;
  width: 400px;
}

.safe__upper {
  --_y: calc(100% - 90px);
  padding: 55px 0 120px;
  position: relative;
  -webkit-clip-path: polygon(50% 100%, 100% var(--_y), 100% 0%, 0 0%, 0% var(--_y));
          clip-path: polygon(50% 100%, 100% var(--_y), 100% 0%, 0 0%, 0% var(--_y));
  background-color: #8c9196;
  background-image: url("../img/bg_ diagonal_line.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.safe__header {
  background-color: var(--c-dark);
  padding: 30px 10px;
}

.safe__title {
  font-weight: 900;
  font-size: 46px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-align: center;
}

.safe__title span {
  display: inline-block;
  font-size: 28px;
  transform: translateY(-0.15em);
}

.safe__title em {
  color: var(--c-accent);
}

.safe__body {
  background-color: var(--c-base);
  color: var(--c-text);
  padding: 40px 30px 68px;
}

.safe__body-title {
  font-weight: 700;
  font-size: 46px;
  line-height: 1.5;
  text-align: center;
  border-bottom: 2px solid;
  padding-bottom: 32px;
  margin-bottom: 32px;
}

.safe__body-title em {
  color: #da2032;
}

.safe__text {
  font-weight: 500;
  font-size: 28px;
  line-height: 1.75;
  text-align: justify;
  letter-spacing: -0.03em;
}

.safe__text span {
  color: #da2032;
}

.safe__test {
  margin-top: 50px;
}

.safe__test-title {
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 0.15em;
  color: var(--c-text-white);
  background-color: #8c9196;
  text-align: center;
  padding: 7px;
}

.safe__bottom {
  margin-top: -90px;
  padding: 150px 0 75px;
  background-color: #00b8f0;
  text-align: center;
  font-weight: 600;
}

.safe__bottom-sub {
  font-size: 37px;
}

.safe__bottom-main {
  margin-top: 20px;
  font-size: 80px;
  line-height: 1.25;
}

.safe__bottom-main .flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.safe__bottom-main .fz60 {
  font-size: 60px;
}

.safe__movie {
  width: 100%;
  aspect-ratio: 750/450;
  line-height: 1;
  margin-bottom: -1px;
}

.safe__movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.safe__box + .safe__box {
  margin-top: 35px;
}

.safe__balloon {
  margin-top: 60px;
  position: relative;
}

.safe__balloon::before {
  content: "";
  width: 42px;
  aspect-ratio: 45/35;
  background-color: #00b8f0;
  -webkit-clip-path: var(--clip-triangle-top);
          clip-path: var(--clip-triangle-top);
  position: absolute;
  bottom: calc(100% - 1px);
  left: 50%;
  transform: translate(-50%, 0);
}

.safe__balloon-header {
  font-weight: 500;
  font-size: 40px;
  letter-spacing: 0.15em;
  line-height: 1.5;
  background-color: #00b8f0;
  color: var(--c-text-white);
  text-align: center;
  padding: 26px 10px;
}

.safe__balloon-body {
  background-color: rgba(140, 145, 150, 0.15);
  padding: 20px 28px 60px;
}

.safe__balloon-title {
  font-weight: 700;
  font-size: 46px;
  line-height: 1.5;
  text-align: center;
  border-bottom: 2px solid;
  padding-bottom: 32px;
  margin-bottom: 32px;
}

.safe__balloon-title em {
  color: #da2032;
}

.safe__balloon-title span {
  font-size: 39px;
}

.safe__balloon-text {
  font-weight: 500;
  font-size: 28px;
  line-height: 1.75;
  text-align: justify;
  letter-spacing: -0.03em;
}

.safe__balloon-text span {
  color: #da2032;
}

.safe__balloon-result {
  margin-top: 30px;
}

.safe__balloon-label {
  margin: 0 auto;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.12em;
  line-height: 1.5;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}

.safe__balloon-label::before,
.safe__balloon-label::after {
  --_width: 150px;
  content: "";
  width: var(--_width);
  height: 2px;
  background-color: var(--c-text);
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.safe__balloon-label::before {
  left: calc(-1 * var(--_width) - 25px);
}

.safe__balloon-label::after {
  right: calc(-1 * var(--_width) - 25px);
}

.safe__balloon-list {
  margin-top: 22px;
  display: grid;
  grid-template-columns: var(--flex-track);
  row-gap: 10px;
  padding-left: 25px;
}

.safe__balloon-item {
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.02em;
  position: relative;
  padding-left: 34px;
}

.safe__balloon-item::before {
  content: "";
  width: 20px;
  aspect-ratio: 1;
  background-color: #8c9196;
  border-radius: var(--rounded-full);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.quality {
  padding: 40px 0 100px;
}

.quality__title {
  text-align: center;
}

.quality__title-ja {
  margin: 25px auto 0;
  width: 625px;
}

.quality__list {
  margin-top: 65px;
}

.quality__item + .quality__item {
  margin-top: 55px;
}

.quality__item-box {
  margin-top: 32px;
  color: var(--c-text);
  background-color: var(--c-base);
}

.quality__item-inner {
  padding: 42px 40px 55px;
}

.quality__item-title {
  font-weight: 700;
  font-size: 50px;
  line-height: 1.5;
  text-align: center;
}

.quality__item-text {
  margin-top: 30px;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.75;
  text-align: justify;
}

.section-prize {
  margin-top: -3px;
  padding: 70px 0 65px;
  background-image: url("../img/bg_award.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.section-prize__title {
  margin: 0 auto;
  width: min(700px, 100%);
}

.section-prize__inner {
  margin-top: 30px;
  padding: 0 50px;
}

.section-prize__item + .section-prize__item {
  margin-top: 20px;
}

.section-prize__bg-area {
  margin-top: -10px;
  background-color: var(--c-base);
  padding: 35px 58px;
  font-size: 28px;
  line-height: 1.875;
  text-align: justify;
  color: var(--c-text);
}

.voice {
  --_padding-top: 120px;
  padding: var(--_padding-top) 0 72px;
}

.voice__title {
  text-align: center;
  position: relative;
}

.voice__title > * {
  position: relative;
  z-index: 1;
}

.voice__title::before {
  content: "";
  width: calc(100% + 100px);
  aspect-ratio: 750/200;
  background-image: url(../img/text_outline_voice.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(-1 * var(--_padding-top));
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.voice__movie {
  margin-top: 65px;
}

.voice__movie iframe {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 640/360;
}

.voice__list {
  background-color: rgba(140, 145, 150, 0.8);
}

.voice__item {
  padding: 55px 0;
  position: relative;
}

.voice__item:not(:first-of-type)::after {
  content: "";
  width: 100vw;
  height: 20px;
  background-color: var(--c-text);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.voice__item::before {
  content: "";
  width: 200px;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: -50px;
}

.voice__item--01::before {
  background-image: url(../img/text_vertical_voice_1.png);
}

.voice__item--02::before {
  background-image: url(../img/text_vertical_voice_2.png);
}

.voice__item-header {
  position: relative;
}

.voice__item-box {
  --_x: 12px;
  display: inline-block;
  background-color: var(--c-text);
  padding: 7px 32px;
  -webkit-clip-path: polygon(var(--_x) 0%, 100% 0%, calc(100% - var(--_x)) 100%, 0% 100%);
          clip-path: polygon(var(--_x) 0%, 100% 0%, calc(100% - var(--_x)) 100%, 0% 100%);
  position: absolute;
  bottom: 38px;
  left: 32px;
}

.voice__item-class {
  font-weight: 700;
  font-size: 20px;
  color: var(--c-accent);
  line-height: 1.5;
}

.voice__item-name {
  font-weight: 700;
  font-size: 30px;
  line-height: 1.38;
}

.voice__item-name span {
  font-size: 0.75em;
}

.voice__item-body {
  background-color: var(--c-base);
  color: var(--c-text);
  padding: 28px 36px;
}

.voice__item-title {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.5;
  padding-bottom: 25px;
  border-bottom: 1px solid;
}

.voice__item-text {
  margin-top: 10px;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.75;
  text-align: justify;
}

.voice__others {
  padding: 36px 0 42px;
  background-color: #8c9196;
  background-image: url("../img/bg_ diagonal_line.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.voice__others-title {
  --_x: 12px;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.5;
  background-color: var(--c-accent);
  color: var(--c-text);
  padding: 13px 30px;
  -webkit-clip-path: polygon(var(--_x) 0%, 100% 0%, calc(100% - var(--_x)) 100%, 0% 100%);
          clip-path: polygon(var(--_x) 0%, 100% 0%, calc(100% - var(--_x)) 100%, 0% 100%);
  letter-spacing: -0.04em;
  text-align: center;
}

.voice__others-list {
  margin-top: 20px;
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}

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

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

.u-dib {
  display: inline-block;
}

.u-ff-mincho {
  font-family: var(--second-font);
}

.u-fz16 {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .u-fz16 {
    font-size: 18px;
  }
}

.u-fz20 {
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .u-fz20 {
    font-size: 25px;
  }
}

.u-fw700 {
  font-weight: 700;
}

.u-fw500 {
  font-weight: 500;
}

.u-ls-small {
  letter-spacing: 0.02em;
}

.u-ls-middle {
  letter-spacing: 0.05em;
}

.u-ls-large {
  letter-spacing: 0.1em;
}

.u-cl-c {
  color: var(--c-corporate);
}

.u-cl-w {
  color: var(--c-text-white);
}

.u-palt {
  font-feature-settings: "palt";
}

.u-taj {
  text-align: justify;
}

.u-mt0 {
  margin-top: 0;
}

.u-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.u-focus-white *:focus-visible {
  outline: 1px solid var(--c-text-white);
}