@charset "UTF-8";
/* ---------------------------
  CSS Reset
----------------------------- */
* {
  min-inline-size: 0;
}

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

:where(html) {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

:where(body) {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

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

:where(ul, ol) {
  list-style-type: "";
  padding: unset;
}

:where(a:not([class])) {
  text-decoration-skip-ink: auto;
}

:where(a) {
  text-decoration: none;
}

:where(img, picture) {
  max-width: 100%;
  height: auto;
  display: block;
}

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

:where(input[type=text], textarea) {
  font-size: 16px;
}

:where(textarea) {
  field-sizing: content;
}

:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}

:where(:any-link,
button,
[type=button],
[type=reset],
[type=submit],
label[for],
select,
summary,
[role=tab],
[role=button]) {
  cursor: pointer;
}

:focus:not(:focus-visible) {
  outline: none;
}

:where(address) {
  font-style: normal;
}

:where(table) {
  border-collapse: collapse;
}

@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after,
  ::backdrop {
    background-attachment: scroll !important;
    transition-delay: 0s !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
/* ---------------------------
  variable
----------------------------- */
:root {
  --black: #000000;
  --red: #FF0000;
  --orange: #ffac00;
  --indigo: #0A51A1;
  --pink: #EF047B;
  --yellow: #FFE73F;
  --blue: #009FE8;
  --lightBlue: #E5F5FD;
  --fontMainColor: var(--black);
  --fontSubColor: #777777;
  --borderMainColor: #eeeeee;
  --borderSubColor: #cccccc;
  --fontMainFamily: "Noto Sans JP", sans-serif;
}

/* ---------------------------
  mixin
----------------------------- */
/* ---------------------------
  base
----------------------------- */
html {
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  hyphens: auto;
}

body {
  line-height: 1.75;
  color: var(--fontMainColor);
  font-family: var(--fontMainFamily);
  font-weight: 400;
  font-feature-settings: "pkna";
  letter-spacing: 0.04em;
  overflow-x: clip;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

a {
  color: var(--fontMainColor);
}

button {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
  margin: 0;
  padding: 0;
}

/* ---------------------------
  utility
----------------------------- */
.wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 90px;
  padding-right: 90px;
}
@media screen and (max-width: 896px) {
  .wrapper {
    max-width: 720px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 640px) {
  .wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.br-tab {
  display: none;
}
@media screen and (max-width: 896px) {
  .br-tab {
    display: inline;
  }
}

.br-tab-none {
  display: inline;
}
@media screen and (max-width: 896px) {
  .br-tab-none {
    display: none;
  }
}

.br-sp {
  display: none;
}
@media screen and (max-width: 640px) {
  .br-sp {
    display: inline;
  }
}

.br-sp-none {
  display: inline;
}
@media screen and (max-width: 640px) {
  .br-sp-none {
    display: none;
  }
}

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

.forced-wide {
  margin-inline: calc(50% - 50vi);
}

.forced-wide-bg {
  border-image: linear-gradient(var(--_background) 0 0) fill 0//0 100vi;
}

/* ---------------------------
  header
----------------------------- */
.header {
  background-color: #fff;
}

.header__logo {
  padding: 30px 30px 12px;
}
@media screen and (max-width: 896px) {
  .header__logo {
    padding: 16px;
  }
}

.hero img, .hero picture {
  width: 100%;
}
.hero .swiper-pagination {
  bottom: 16px !important;
}
@media screen and (max-width: 896px) {
  .hero .swiper-pagination {
    bottom: 2px !important;
  }
}
.hero .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #DCDCDC;
  margin: 0 13px !important;
  opacity: 1;
}
@media screen and (max-width: 896px) {
  .hero .swiper-pagination-bullet {
    margin: 0 5px !important;
  }
}
.hero .swiper-pagination-bullet-active {
  background-color: var(--orange);
}

.action-fixed {
  display: block;
  position: fixed;
  top: 100px;
  right: 0;
  z-index: 100;
}
@media screen and (max-width: 896px) {
  .action-fixed {
    display: none;
  }
}

/* ---------------------------
  footer
----------------------------- */
.footer {
  background-color: #F3F2F2;
}
@media screen and (max-width: 896px) {
  .footer {
    padding-bottom: 48px;
  }
}

.footer-copyright {
  background-color: #fff;
  text-align: center;
}
.footer-copyright small {
  display: inline-block;
  font-size: clamp(10px, 8.97px + 0.276vw, 12px);
  padding: 1em 1em 1.1em;
}

.footer-info {
  padding: 24px 0;
  font-size: clamp(13px, 9.38px + 0.966vw, 20px);
}

.footer-info__head {
  font-weight: 700;
}

.footer-info__link a {
  color: #497BB3;
  display: inline-block;
  margin-right: 1em;
}

.footer-info__action {
  color: #497BB3;
  padding-left: 1.5em;
  background-image: url(../img/mail.png);
  background-position: left center;
  background-size: 1.2em;
  background-repeat: no-repeat;
}

.pagetop {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 100;
}
@media screen and (max-width: 896px) {
  .pagetop {
    display: none;
  }
}

.sp-fixed-menu {
  display: none;
  grid-template-columns: 1fr 1fr 48px;
  gap: 1px;
  background-color: #ffffff;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}
@media screen and (max-width: 896px) {
  .sp-fixed-menu {
    display: grid;
  }
}

.sp-fixed-menu__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--red);
  height: 48px;
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 640px) {
  .sp-fixed-menu__item {
    font-size: 12px;
  }
}
.sp-fixed-menu__item br {
  display: none;
}
@media screen and (max-width: 640px) {
  .sp-fixed-menu__item br {
    display: inline;
  }
}

/* ---------------------------
  top
----------------------------- */
.common-head {
  background-image: url(../img/head_bg_bottom_white.svg), url(../img/head_bg.jpg);
  background-size: 100%, cover;
  background-position: bottom -1px center, center;
  background-repeat: no-repeat;
  padding-top: 40px;
  padding-bottom: 56px;
  min-height: 14vw;
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  .common-head {
    margin-bottom: 24px;
    padding-bottom: 32px;
  }
}
.common-head--secondary {
  background-image: url(../img/head_bg_bottom_orange.svg), url(../img/head_bg.jpg);
}
.common-head h2 {
  margin-bottom: 20px;
}
.common-head h2 img {
  margin-inline: auto;
}
@media screen and (max-width: 896px) {
  .common-head h2 img {
    width: auto;
    height: 64px;
  }
}
@media screen and (max-width: 640px) {
  .common-head h2 picture img {
    width: auto;
    height: 100px;
  }
}
.common-head p {
  font-size: clamp(15px, 12.41px + 0.69vw, 20px);
  color: #ffffff;
  text-align: center;
  margin-top: 1em;
  padding-bottom: 32px;
}
@media screen and (max-width: 640px) {
  .common-head p {
    text-align: left;
  }
}

.active-section {
  padding-bottom: 80px;
}
@media screen and (max-width: 640px) {
  .active-section {
    padding-bottom: 40px;
  }
}

.active-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 48px;
}
@media screen and (max-width: 896px) {
  .active-grid {
    grid-template-columns: 1fr;
  }
}
.active-grid + .active-grid {
  margin-top: 72px;
}
@media screen and (max-width: 640px) {
  .active-grid + .active-grid {
    margin-top: 32px;
  }
}

.active-grid__text {
  display: flex;
  flex-direction: column;
}
.active-grid__text h3 {
  font-size: clamp(20px, 13.79px + 1.655vw, 32px);
  font-weight: 700;
  color: var(--indigo);
  border-bottom: 2px solid #000000;
  margin-bottom: 0.5em;
}
.active-grid__text p {
  font-size: clamp(14px, 11.93px + 0.552vw, 18px);
  text-align: justify;
  margin-bottom: 1em;
}
.active-grid__text ul {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 8px 12px;
}
@media screen and (max-width: 640px) {
  .active-grid__text ul {
    gap: 6px;
  }
}
.active-grid__text ul::after {
  content: "など";
  font-size: clamp(14px, 10.9px + 0.828vw, 20px);
  font-weight: 700;
  white-space: nowrap;
}
.active-grid__text li {
  padding: 0 0.5em 0.1em;
  background-color: var(--orange);
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  border-radius: 2em;
  font-size: clamp(14px, 7.79px + 1.655vw, 26px);
  letter-spacing: 0.08em;
  white-space: nowrap;
  min-width: 4em;
}

.active-grid__img {
  width: 100%;
  padding-top: 10px;
}
@media screen and (max-width: 896px) {
  .active-grid__img {
    padding-top: 0;
  }
}

.active-grid--reverse .active-grid__text {
  order: 1;
}
@media screen and (max-width: 896px) {
  .active-grid--reverse .active-grid__text {
    order: 2;
  }
}
.active-grid--reverse .active-grid__img {
  order: 2;
}
@media screen and (max-width: 896px) {
  .active-grid--reverse .active-grid__img {
    order: 1;
  }
}

.point-section {
  background-color: var(--orange);
  padding-bottom: 80px;
}
@media screen and (max-width: 640px) {
  .point-section {
    padding-bottom: 40px;
  }
}

.point-box {
  background-color: #fff;
  padding: 44px 48px 40px;
}
@media screen and (max-width: 640px) {
  .point-box {
    padding: 32px 20px;
  }
}
.point-box + .point-box {
  margin-top: 40px;
}
@media screen and (max-width: 640px) {
  .point-box + .point-box {
    margin-top: 20px;
  }
}

.point-head {
  margin-bottom: 24px;
}
@media screen and (max-width: 640px) {
  .point-head {
    margin-bottom: 16px;
  }
}
.point-head img {
  margin-inline: auto;
}

.point-capacity {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 20px 40px;
}
@media screen and (max-width: 896px) {
  .point-capacity {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 896px) {
  .point-capacity__primary {
    max-width: 400px;
    margin-inline: auto;
  }
}
.point-capacity__primary img {
  width: 100%;
}
.point-capacity__primary figcaption {
  font-size: clamp(11px, 9.97px + 0.276vw, 13px);
  margin-top: 1.5em;
}
@media screen and (max-width: 640px) {
  .point-capacity__primary figcaption {
    margin-top: 1em;
  }
}

.point-capacity__secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #9BE3FA;
  padding: 12px;
  border-radius: 30px;
}
@media screen and (max-width: 896px) {
  .point-capacity__secondary {
    max-width: 400px;
    width: 100%;
    margin-inline: auto;
    padding: 20px;
  }
}
.point-capacity__secondary img {
  width: 100%;
}

.point-average-lead {
  text-align: center;
  font-weight: 700;
  font-size: clamp(16px, 10.83px + 1.379vw, 26px);
  margin-top: 1.2em;
  margin-bottom: 1em;
}

.point-average-chart figcaption {
  text-align: right;
  font-size: clamp(11px, 9.97px + 0.276vw, 13px);
  max-width: 674px;
  margin-inline: auto;
  margin-top: 1em;
}
@media screen and (max-width: 640px) {
  .point-average-chart figcaption {
    text-align: left;
  }
}
.point-average-chart img {
  margin-inline: auto;
}

.point-quality {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 20px 32px;
  align-items: center;
}
@media screen and (max-width: 896px) {
  .point-quality {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 896px) {
  .point-quality img {
    margin-inline: auto;
  }
}

.point-quality__text {
  font-weight: 700;
  color: #009ee9;
  font-size: clamp(22px, 13.72px + 2.207vw, 38px);
  line-height: 1.5;
}
@media screen and (max-width: 896px) {
  .point-quality__text {
    text-align: center;
  }
}
.point-quality__text strong {
  font-size: clamp(32px, 22.69px + 2.483vw, 50px);
  font-weight: 700;
}
.point-quality__text span {
  color: var(--black);
}

.point-source-lead {
  font-size: clamp(14px, 11.93px + 0.552vw, 18px);
  margin-bottom: 1.5em;
}

.point-source-map {
  position: relative;
  width: calc(100% + 96px);
  margin-left: -48px;
  margin-right: -48px;
}
@media screen and (max-width: 640px) {
  .point-source-map {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }
}

.point-source-map__head {
  position: absolute;
  top: 40px;
  right: 0;
  z-index: 10;
}
@media screen and (max-width: 640px) {
  .point-source-map__head {
    position: inherit;
    top: auto;
    right: auto;
    padding-left: 16px;
  }
}
@media screen and (max-width: 640px) {
  .point-source-map__head img {
    margin-left: auto;
  }
}

.point-source-map__notice {
  display: none;
  margin-top: 10px;
  padding: 0 16px;
}
@media screen and (max-width: 640px) {
  .point-source-map__notice {
    display: block;
  }
}
.point-source-map__notice img {
  width: 100%;
}

@media screen and (max-width: 640px) {
  .point-source__overflow {
    overflow-x: auto;
    width: 100%;
  }
}

.point-source-map__img {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .point-source-map__img, .point-source-map__img > img {
    max-width: inherit;
    width: 920px;
    height: 500px;
  }
}

.point-source-notice {
  font-size: clamp(14px, 11.93px + 0.552vw, 18px);
  margin-top: 1.5em;
  margin-bottom: 1em;
}

.point-source-table__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
}
@media screen and (max-width: 896px) {
  .point-source-table__grid {
    grid-template-columns: 1fr;
  }
}
.point-source-table__grid table {
  width: 100%;
  border-collapse: collapse;
}
.point-source-table__grid th, .point-source-table__grid td {
  text-align: center;
  vertical-align: middle;
  padding: 0.2em;
  line-height: 1.2;
  height: 74px;
  border: 1px solid #000000;
}
@media screen and (max-width: 640px) {
  .point-source-table__grid th, .point-source-table__grid td {
    height: auto;
    padding: 0.8em 0.5em;
  }
}
.point-source-table__grid thead th {
  background-color: var(--indigo);
  color: #ffffff;
  font-size: clamp(14px, 10.9px + 0.828vw, 20px);
  font-weight: 700;
}
.point-source-table__grid tbody th {
  background-color: #42d0f5;
  color: var(--indigo);
  font-size: clamp(14px, 10.9px + 0.828vw, 20px);
  font-weight: 500;
  width: 80px;
}
.point-source-table__grid tbody td {
  font-size: clamp(14px, 9.86px + 1.103vw, 22px);
  font-weight: 500;
}
.point-source-table__grid tbody tr:nth-of-type(even) td {
  background-color: #dff7ff;
}

.point-source-table__caption {
  text-align: right;
  font-weight: 500;
  font-size: clamp(12px, 9.93px + 0.552vw, 16px);
}

.point-source-table__notice {
  font-size: clamp(11px, 9.97px + 0.276vw, 13px);
  margin-top: 0.6em;
}

.point-support-lead {
  text-align: center;
  font-weight: 700;
  font-size: clamp(16px, 12.9px + 0.828vw, 22px);
  margin-bottom: 1.5em;
}

.point-support {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 24px;
}
@media screen and (max-width: 896px) {
  .point-support {
    grid-template-columns: 1fr;
  }
}

.point-support__item {
  border: 2px solid #00a0eb;
}
.point-support__item h3 {
  background-color: #00a0eb;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  padding: 1.2em 0.5em;
  font-size: clamp(18px, 13.86px + 1.103vw, 26px);
}
@media screen and (max-width: 896px) {
  .point-support__item h3 {
    padding: 0.8em 0.5em;
  }
}
.point-support__item h3 span {
  color: var(--yellow);
}
.point-support__item p {
  font-size: clamp(18px, 13.86px + 1.103vw, 26px);
  color: var(--red);
  font-weight: 700;
  text-align: center;
  padding: 1em 0.5em;
  text-indent: 1em;
}
@media screen and (max-width: 896px) {
  .point-support__item p {
    padding: 0.6em 0.5em;
  }
}

.voice-section {
  padding-bottom: 56px;
}
@media screen and (max-width: 640px) {
  .voice-section {
    padding-bottom: 40px;
  }
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 48px;
}
@media screen and (max-width: 896px) {
  .voice-grid {
    grid-template-columns: 1fr;
  }
}
.voice-grid img {
  width: 100%;
}

.voice-grid-text {
  background-color: #dff6fd;
  padding: 24px 40px 40px;
}
@media screen and (max-width: 640px) {
  .voice-grid-text {
    padding: 20px 20px 24px;
  }
}
.voice-grid-text h3 {
  font-size: clamp(18px, 14.9px + 0.828vw, 24px);
  font-weight: 700;
  margin-bottom: 0.5em;
}
.voice-grid-text p {
  font-size: clamp(12px, 10.97px + 0.276vw, 14px);
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .voice-grid-text p {
    line-height: 1.75;
  }
}

.voice-movie {
  max-width: 580px;
  margin-inline: auto;
  margin-top: 40px;
}
.voice-movie iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 580/345;
}

.flow-section {
  padding-bottom: 56px;
}
@media screen and (max-width: 640px) {
  .flow-section {
    padding-bottom: 40px;
  }
}

.flow-list {
  display: flex;
  justify-content: space-between;
  list-style: none;
}
@media screen and (max-width: 896px) {
  .flow-list {
    display: block;
  }
}

.flow-list__item:not(:first-of-type) {
  padding-left: calc((100% - 462px) / 6);
  background-image: url(../img/flow_chevron.svg);
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: left 22% center;
}
@media screen and (max-width: 896px) {
  .flow-list__item:not(:first-of-type) {
    padding-left: 0;
    padding-top: 32px;
    background-size: 18px;
    background-image: url(../img/flow_chevron_down.svg);
    background-position: top 10px center;
  }
}
.flow-list__item span {
  display: block;
  width: 66px;
  height: 274px;
  writing-mode: vertical-rl;
  white-space: nowrap;
  font-size: clamp(16px, 11.86px + 1.103vw, 24px);
  font-weight: 700;
  padding: 1.5em 0.5em;
  background-color: #42d0f5;
}
@media screen and (max-width: 896px) {
  .flow-list__item span {
    writing-mode: inherit;
    padding: 0.5em;
    text-align: center;
    width: 100%;
    height: auto;
  }
}
.flow-list__item:nth-child(2n) span {
  background-color: #bfecfb;
}

.flow-notice {
  margin-top: 2em;
  font-size: clamp(11px, 9.97px + 0.276vw, 13px);
}

.location-flex {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 896px) {
  .location-flex {
    display: block;
  }
}
.location-flex + .location-flex {
  margin-top: 32px;
}
@media screen and (max-width: 640px) {
  .location-flex + .location-flex {
    margin-top: 16px;
  }
}

.location-flex__img {
  width: 55%;
  margin-right: -5%;
}
@media screen and (max-width: 896px) {
  .location-flex__img {
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 896px) {
  .location-flex__img img {
    width: 100%;
  }
}

.location-flex__text {
  width: 50%;
  background-color: rgba(191, 236, 251, 0.8);
  padding: 48px 40px 48px;
  position: relative;
}
@media screen and (max-width: 896px) {
  .location-flex__text {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .location-flex__text {
    padding: 48px 24px 32px;
  }
}
.location-flex__text img {
  position: absolute;
  top: -20px;
  right: 30px;
  z-index: 1;
}
@media screen and (max-width: 896px) {
  .location-flex__text img {
    right: auto;
    left: 30px;
  }
}
@media screen and (max-width: 640px) {
  .location-flex__text img {
    left: 24px;
  }
}
.location-flex__text h3 {
  font-weight: 700;
  font-size: clamp(18px, 11.79px + 1.655vw, 30px);
  margin-bottom: 0.2em;
}
.location-flex__text p {
  font-size: clamp(14px, 11.93px + 0.552vw, 18px);
}

.location-flex--reverse {
  flex-direction: row-reverse;
}
.location-flex--reverse .location-flex__img {
  margin-right: 0;
  margin-left: -5%;
}
@media screen and (max-width: 896px) {
  .location-flex--reverse .location-flex__img {
    margin-left: 0;
  }
}
.location-flex--reverse .location-flex__text {
  padding-top: 56px;
}
@media screen and (max-width: 640px) {
  .location-flex--reverse .location-flex__text {
    padding-top: 48px;
  }
}
.location-flex--reverse .location-flex__text img {
  right: auto;
  left: 30px;
}
@media screen and (max-width: 640px) {
  .location-flex--reverse .location-flex__text img {
    left: 24px;
  }
}

.location-flex--half .location-flex__img {
  width: 50%;
  margin-right: 0;
}
@media screen and (max-width: 896px) {
  .location-flex--half .location-flex__img {
    width: 100%;
  }
}

.action-aside {
  padding-top: 120px;
  padding-bottom: 80px;
}
@media screen and (max-width: 896px) {
  .action-aside {
    padding-top: 80px;
  }
}
@media screen and (max-width: 640px) {
  .action-aside {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.action-head {
  width: fit-content;
  margin-inline: auto;
  padding: 0 44px;
  background-image: url(../img/action_head_bg_left.svg), url(../img/action_head_bg_right.svg);
  background-position: left center, right center;
  background-repeat: no-repeat;
  background-size: 25px;
  font-size: clamp(18px, 7.14px + 2.897vw, 39px);
  font-weight: 700;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 640px) {
  .action-head {
    background-size: 20px;
    padding: 0 32px;
  }
}

.action-tel {
  padding: 0 16px;
}
.action-tel img {
  margin-inline: auto;
}

.action-mail {
  display: block;
  margin-inline: auto;
  margin-top: 40px;
  max-width: 600px;
  background-color: var(--red);
  border-radius: 10px;
  text-align: center;
  padding: 16px;
}
@media screen and (max-width: 640px) {
  .action-mail {
    margin-top: 24px;
  }
}
.action-mail span {
  display: inline-block;
  font-size: clamp(18px, 10.76px + 1.931vw, 32px);
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  padding-right: 1em;
  background-image: url(../img/action_chevron.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 0.6em;
  padding-bottom: 0.1em;
}