@charset "UTF-8";
:root {
  --font_base: "Noto Sans JP", "游ゴシック体", YuGothic , メイリオ , Meiryo , "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Ｐゴシック", "MS PGothic", sans-serif;
  --container_size: 900px;
  --padding: 16px;
  --color_theme: #005DBF;
  --color_navy: #16499B;
  --color_lightblue: #EDF6FF;
  --color_white: #fff;
  --color_black: #212121;
  --color_gray: #F2F2F2;
  --color_text-base: var(--color_black);
  --color_text-white: var(--color_white);
  --color_text-link: var(--color_theme);
  --color_text-link-hover: #64ADF9;
  --color_bg-white: var(--color_white);
  --color_bg-lightblue: var(--color_lightblue);
  --color_bg-gray: var(--color_gray);
  --color_bg-cta-area: #174A9D;
}

html {
  -webkit-text-size-adjust: 100%;
}

:where(body) {
  font-family: var(--font_base);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color_text-base);
}

a {
  color: var(--color_text-link);
  text-decoration: underline;
}
@media (any-hover: hover) {
  a {
    transition: 0.2s ease;
  }
  a:hover {
    color: var(--color_text-link-hover);
  }
}

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

/**
* uaplus.css version 0.0.1
*/
*,
*::after,
*::before {
  box-sizing: border-box;
}

:focus-visible {
  outline-offset: 3px;
}

:where(*) {
  margin: 0;
  padding: 0;
}

:where(html) {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

:where(html) {
  line-height: 1.5;
}

:where(html) {
  scrollbar-gutter: stable;
}

:where(h1) {
  font-size: 2em;
  margin-block: 0.67em;
}

:where(abbr[title]) {
  cursor: help;
  text-decoration-line: underline;
  text-decoration-style: dotted;
}

@media (forced-colors: active) {
  mark {
    color: HighlightText;
    background-color: Highlight;
  }
}
:where(del, ins, s)::before,
:where(del, ins, s)::after {
  clip-path: inset(100%);
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  content: "test";
}

:where(s)::before {
  content: "stricken text start ";
}

:where(s)::after {
  content: " stricken text end";
}

:where(del)::before {
  content: "deletion start ";
}

:where(del)::after {
  content: " deletion end";
}

:where(ins)::before {
  content: "insertion start ";
}

:where(ins)::after {
  content: " insertion end";
}

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

:where(fieldset) {
  min-inline-size: 0;
}

:where(label):has(+ :where(textarea, input, select)) {
  display: block;
}

:where(textarea:not([rows])) {
  min-block-size: 6em;
}

:where(button, input, select, textarea) {
  font-family: inherit;
  font-size: inherit;
}

:where([type=search]) {
  -webkit-appearance: textfield;
}

@supports (-webkit-touch-callout: none) {
  :where([type=search]) {
    border: 1px solid -apple-system-secondary-label;
    background-color: canvas;
  }
}
:where([type=tel], [type=url], [type=email], [type=number]):not(:placeholder-shown) {
  direction: ltr;
}

:where(table) {
  border-collapse: collapse;
  border: 1px solid;
}

:where(th, td) {
  border: 1px solid;
  padding: 0.25em 0.5em;
}

:where(dialog)::backdrop {
  background: oklch(0% 0 0deg / 0.3);
}

:where(dialog),
:where(dialog)::backdrop {
  opacity: 0;
  transition: opacity 300ms ease-out, display 300ms allow-discrete, overlay 300ms allow-discrete;
}

:where(dialog[open]),
:where(dialog[open])::backdrop {
  opacity: 1;
}

@starting-style {
  :where(dialog[open]),
  :where(dialog[open])::backdrop {
    opacity: 0;
  }
}
[hidden]:not([hidden=until-found]) {
  display: none !important;
}

.l-section {
  position: relative;
  background: var(--color_bg-white);
}

.l-section--cta {
  padding: 21px 0;
  background: var(--color_bg-cta-area);
}

.l-section--voice {
  padding: 24px 0;
}
@media screen and (min-width: 768px) {
  .l-section--voice {
    padding: 40px 0;
  }
}

.l-inner {
  padding: 0 var(--padding);
  margin-inline: auto;
  position: relative;
}

.l-contents {
  margin-inline: auto;
  background: var(--color_bg-white);
}

.l-block {
  max-width: 460px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-block {
    max-width: 800px;
  }
}
.l-block.full-width {
  max-width: unset;
}
.l-block.wide-width {
  max-width: 1200px;
}
.l-block.bg-primary {
  background: var(--color_navy);
}

.c-button {
  display: block;
  overflow: hidden;
  position: relative;
  max-width: 60%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-button {
    max-width: 420px;
  }
}
.c-button * {
  pointer-events: none;
}
.c-button img {
  width: 100%;
  height: auto;
}

.c-button--shine::before {
  position: absolute;
  content: "";
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.85) 45%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-45deg);
  animation: shine-btn 5s cubic-bezier(0.55, 0.085, 0.68, 0.53) infinite;
}

@keyframes shine-btn {
  0% {
    left: -100%;
  }
  10% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
.c-button--balloon {
  animation: balloon 2.5s ease-in-out infinite;
}

@keyframes balloon {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.1);
  }
  20% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.1);
  }
  40% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.c-label {
  background: var(--color_navy);
  color: var(--color_text-white);
  padding: 0.7em 16px;
}
@media screen and (min-width: 768px) {
  .c-label {
    padding: 0.7em 40px;
  }
}

.c-text {
  color: var(--color_text-base);
}
.c-text--medium {
  line-height: 1.40625;
  font-weight: 600;
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .c-text--medium {
    font-size: 32px;
  }
}
.c-text--small {
  line-height: 1.6071428571;
  font-size: 15px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .c-text--small {
    font-size: 28px;
  }
}
.c-text--center {
  text-align: center;
}
.c-text.-right {
  text-align: right;
}

.c-list {
  padding: 1.5rem var(--padding);
  counter-reset: list-counter;
  position: relative;
  background: var(--color_bg-gray);
  margin: 0 16px;
}
@media screen and (min-width: 768px) {
  .c-list {
    padding: 30px 60px;
    margin: 0;
  }
}

.c-list-item {
  list-style: none;
  counter-increment: list-counter;
  display: flex;
  align-items: baseline;
  font-weight: 600;
  font-size: 14px;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .c-list-item {
    font-size: 28px;
    gap: 16px;
  }
}
.c-list-item:nth-of-type(n + 2) {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .c-list-item:nth-of-type(n + 2) {
    margin-top: 16px;
  }
}
.c-list-item::before {
  --_icon-size: 24px;
  width: var(--_icon-size);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  content: counter(list-counter);
  color: var(--color_text-white);
  background: var(--color_theme);
  border-radius: calc(infinity * 1px);
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  .c-list-item::before {
    --_icon-size: 52px;
    font-size: 32px;
  }
}
.c-list-item span {
  flex: 1;
  display: block;
}

.c-list-item__cap {
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .c-list-item__cap {
    font-size: 18px;
  }
}

.c-contact__wrap {
  padding: 24px 16px;
}
@media screen and (min-width: 768px) {
  .c-contact__wrap {
    padding: 32px 16px;
  }
}

/******************************************************************
component - contact
******************************************************************/
.c-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-contact > *:not(:last-child) {
  margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
  .c-contact > *:not(:last-child) {
    margin-bottom: 8px;
  }
}
.c-contact__title {
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .c-contact__title {
    font-size: 18px;
  }
}

.c-contact__main {
  line-height: 1.4;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 32px;
}

.c-contact__main > *:not(:last-child) {
  margin-right: 4px;
}

.c-contact__main img {
  vertical-align: baseline;
}

.c-contact__main a {
  color: #181a24;
  text-decoration: none;
}

@media print, screen and (min-width: 768px) {
  .c-contact__main a {
    pointer-events: none;
  }
}
@media screen and (min-width: 768px) {
  .c-contact__copy {
    font-size: 18px;
  }
}

.p-point__wrap {
  margin-block-start: 40px;
}

.p-point__headline {
  font-size: 24px;
  line-height: 1;
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-point__headline {
    font-size: 42px;
  }
}

.p-point__text {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 24px auto;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-point__text {
    margin: 40px auto;
    gap: 30px;
  }
}
.p-point__text::after {
  content: "";
  display: block;
  width: 48px;
  height: 33px;
  background-color: var(--color_navy);
  clip-path: polygon(50% 33px, 0% 0%, 48px 0%);
}

.p-accident__text {
  margin: 16px auto;
}
@media screen and (min-width: 768px) {
  .p-accident__text {
    margin: 28px auto;
  }
}
.p-accident__text p:nth-of-type(n+2) {
  margin-top: 1.4em;
}

.p-cause__headline {
  font-weight: 700;
  font-size: 20px;
  margin-top: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-cause__headline {
    font-size: 28px;
    line-height: 1.2142857143;
  }
}

.p-cause__img {
  margin: 24px 0;
}
@media screen and (min-width: 768px) {
  .p-cause__img {
    margin: 45px 0 32px;
  }
}

.p-cause__text {
  text-align: right;
  line-height: 1.3;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .p-cause__text {
    margin-bottom: 40px;
  }
}
.p-cause__text small {
  display: block;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .p-cause__text small {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .p-cause__text small br {
    display: none;
  }
}

.p-merit__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .p-merit__list {
    gap: 60px;
    padding: 0;
  }
}

.p-merit__card {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .p-merit__card {
    gap: 16px;
  }
}

.p-merit__card-headline {
  color: var(--color_navy);
  font-weight: 700;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .p-merit__card-headline {
    font-size: 28px;
  }
}

.p-merit__card-text {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .p-merit__card-text {
    font-size: 28px;
  }
}

.p-section-title {
  text-align: center;
  font-size: 20px;
  margin: 16px 0;
}
@media screen and (min-width: 768px) {
  .p-section-title {
    font-size: 32px;
    margin: 37px 0;
  }
}

.p-application__headline {
  font-weight: 700;
  text-align: center;
  line-height: 1;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .p-application__headline {
    font-size: 40px;
    margin-top: 58px;
  }
}

.p-application__text {
  font-size: 14px;
  margin: 8px 0;
}
@media screen and (min-width: 768px) {
  .p-application__text {
    font-size: 28px;
    margin: 22px 0 28px;
  }
}

.p-voice__headline {
  border-radius: calc(infinity * 1px);
  background: var(--color_theme);
  color: var(--color_text-white);
  text-align: center;
  font-size: 18px;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .p-voice__headline {
    font-size: 24px;
  }
}

.p-voice__item-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .p-voice__item-wrap {
    gap: 32px;
    margin-top: 32px;
  }
}

.p-voice__item {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-voice__item {
    gap: 24px;
  }
}
.p-voice__item:nth-of-type(2n) {
  flex-direction: row-reverse;
}

.p-voice__item-balloon {
  border: 1px solid var(--color_theme);
  border-radius: 10px;
  padding: 8px;
  background: var(--color_lightblue);
  flex: 1;
}
@media screen and (min-width: 768px) {
  .p-voice__item-balloon {
    padding: 16px;
  }
}
.p-voice__item-balloon p {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-voice__item-balloon p {
    font-size: 20px;
  }
}

.p-voice__item-icons {
  width: 66px;
}
@media screen and (min-width: 768px) {
  .p-voice__item-icons {
    width: 90px;
  }
}
.p-voice__item-icons p {
  text-align: center;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .p-voice__item-icons p {
    font-weight: 700;
    font-size: 12px;
  }
}

.p-announce__text {
  margin: 1em 0;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .p-announce__text {
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */