@charset "UTF-8";
:root {
  --viewport-width: min(100vw, 2000px);
  --b: calc(var(--viewport-width) / 160);
}

html {
  background: #ffffff;
}

main {
  position: relative;
  overflow-x: hidden;
  z-index: 0;
}

* {
  color: #000000;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: max(1.5rem, 13px);
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.1em;
}

a > *,
button > * {
  pointer-events: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

a,
button {
  display: block;
}

span {
  display: inline-block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

span.attention {
  font-size: max(1.6rem, 14px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}

span.attention > * {
  display: block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
span.attention > * > * {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

h2 {
  font-size: max(3.9rem, 20px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  h2 {
    text-align: left;
  }
}

.btnBox .btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: max(62.5rem, 300px);
  padding: max(2rem, 20px) 5%;
  background: var(--baseColor);
  border-radius: max(0.6rem, 6px);
  border: max(0.2rem, 2px) solid #fff;
  box-shadow: 6px 6px 0px rgba(var(--baseColorRgb), 0.22);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  z-index: 0;
}
@media screen and (max-width: 1000px) {
  .btnBox .btn {
    max-width: 100%;
  }
}
.btnBox .btn__bg {
  position: absolute;
  inset: 0;
  filter: drop-shadow(0px 3px 60px rgba(0, 0, 0, 0.22));
  mix-blend-mode: soft-light;
  opacity: 0.7;
  z-index: 10;
  transform: translateZ(0);
}
.btnBox .btn__bg__inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 45%;
  background: linear-gradient(45deg, var(--subColor), rgba(255, 255, 255, 0.5));
  clip-path: polygon(35% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.btnBox .btn__text {
  color: #fff;
  font-size: max(2.3rem, 16px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.btnBox .btn__arrow {
  width: max(2rem, 15px);
  height: auto;
}
.btnBox .btn:hover {
  transform: translate(6px, 6px);
  box-shadow: 0 0 0 rgba(var(--baseColorRgb), 0.22);
}
.btnBox .btn--primary {
  --baseColor: #2592dc;
  --baseColorRgb: 15, 130, 209;
  --subColor: #1082d1;
}
.btnBox .btn--secondary {
  --baseColor: #f6ac19;
  --baseColorRgb: 246, 172, 25;
  --subColor: #f6ac19;
}

/*
 * .scrollAnnounce
 * 横スクロール可能な表ラッパーに付与する共通ユーティリティクラス。
 * --scrollAnnounceColor    : ラベル・ボーダーに使うアクセントカラー（HEX またはキーワード）
 * --scrollAnnounceColorRgb : 同色の R,G,B 値（rgba() 用）
 * JS が is-scrollable / is-scroll-hint-visible を付与することでアニメーションが発動する。
 */
@keyframes scrollAnnounceMask {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-0.8rem);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes scrollAnnounceLabel {
  0% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(calc(-50% - 0.5rem), -50%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}
.scrollAnnounce {
  position: relative;
  --baseColor: #2592dc;
  --baseColorRgb: 37, 146, 220;
  --scrollAnnounceColor: var(--baseColor);
  --scrollAnnounceColorRgb: var(--baseColorRgb);
  /* 半透明オーバーレイ */
  /* 案内ラベル */
  /* スクロール可能かつ案内表示中の状態 */
}
.scrollAnnounce::before, .scrollAnnounce::after {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.scrollAnnounce::before {
  content: "";
  inset: 0;
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(0);
}
.scrollAnnounce::after {
  content: "左右にスクロールできます";
  top: 50%;
  left: 50%;
  color: var(--scrollAnnounceColor, #333);
  font-size: max(1.4rem, 12px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding: 1em 1.4em;
  background: linear-gradient(to right, rgba(var(--scrollAnnounceColorRgb, 51, 51, 51), 0.06), rgba(var(--scrollAnnounceColorRgb, 51, 51, 51), 0.16), rgba(var(--scrollAnnounceColorRgb, 51, 51, 51), 0.06)), #fff;
  border: 1px solid rgba(var(--scrollAnnounceColorRgb, 51, 51, 51), 0.32);
  border-radius: max(999rem, 999px);
  box-shadow: 0 0.8rem 2rem rgba(var(--scrollAnnounceColorRgb, 51, 51, 51), 0.12);
  transform: translate(-50%, -50%);
}
.scrollAnnounce.is-scrollable.is-scroll-hint-visible::before, .scrollAnnounce.is-scrollable.is-scroll-hint-visible::after {
  opacity: 1;
}
.scrollAnnounce.is-scrollable.is-scroll-hint-visible::before {
  animation: scrollAnnounceMask 1.4s ease-in-out infinite;
}
.scrollAnnounce.is-scrollable.is-scroll-hint-visible::after {
  animation: scrollAnnounceLabel 1.4s ease-in-out infinite;
}

/** 吹き出しの上下浮遊アニメーション */
@keyframes bubbleFloatPc {
  0% {
    transform: translate(-20%, 15%);
  }
  50% {
    transform: translate(-20%, 5%);
  }
  100% {
    transform: translate(-20%, 15%);
  }
}
@keyframes bubbleFloatSp {
  0% {
    transform: translate(-5%, 15%);
  }
  50% {
    transform: translate(-5%, 5%);
  }
  100% {
    transform: translate(-5%, 15%);
  }
}
.cta {
  background: #FCEED1;
}
.cta__wrapper {
  padding-top: max(10rem, 50px);
  padding-bottom: max(10rem, 50px);
}
.cta .btnBox .btn {
  margin: 0 auto;
}
.cta .btnBox .btn__bubble {
  position: absolute;
  bottom: 100%;
  left: 0;
  text-align: center;
  padding: 0 max(2rem, 10px);
  transform: translate(-20%, 15%);
  background: #fff;
  border-radius: 9999px;
  border: max(0.2rem, 2px) solid #F6AC19;
  box-shadow: 0 3px 13px rgba(0, 0, 0, 0.11);
  animation: bubbleFloatPc 2s ease-in-out infinite;
}
@media screen and (max-width: 550px) {
  .cta .btnBox .btn__bubble {
    animation: bubbleFloatSp 2s ease-in-out infinite;
    transform: translate(-5%, 15%);
  }
}
.cta .btnBox .btn__bubble::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border-width: max(0.9rem, 9px) max(1.1rem, 11px) 0 max(1.1rem, 11px);
  border-style: solid;
  border-color: #F6AC19 transparent transparent transparent;
  width: 0;
  height: 0;
  display: block;
}
.cta .btnBox .btn__bubble::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% - max(0.2rem, 2px));
  transform: translateX(-50%);
  border-width: max(0.8rem, 8px) max(1rem, 10px) 0 max(1rem, 10px);
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  width: 0;
  height: 0;
  display: block;
}
.cta .btnBox .btn__bubble span {
  color: #F6AC19;
  font-size: max(1.6rem, 13px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: max(2.5rem, 15px);
  width: 100%;
  background-color: #ffffff;
}
.header__logo {
  width: max(18.8rem, 125px);
}
.header__logo:hover {
  opacity: 0.6;
}
.header__contact {
  color: #ffffff;
  background-color: #F6AC19;
  font-size: max(1.5rem, 12px);
  padding: max(1rem, 5px) max(2.7rem, 20px);
  border-radius: max(0.6rem, 6px);
}
.header__contact:hover {
  opacity: 0.6;
}

.footer {
  background: #fff;
}
.footer__wrapper {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: max(5rem, 30px);
  padding-top: max(5rem, 50px);
  padding-bottom: max(5rem, 30px);
  background: #fff;
}
@media screen and (max-width: 768px) {
  .footer__wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.footer__textbox {
  flex: 1;
}
.footer__logo {
  width: max(25rem, 200px);
}
.footer__text {
  padding-top: max(1rem, 10px);
}
.footer__text p {
  font-size: max(1.2rem, 10px);
  padding-top: max(0.5rem, 5px);
}
.footer__text p a {
  font-size: inherit;
  display: inline;
}
.footer__copy {
  font-size: max(1.2rem, 9.5px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.footer__pagetop {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  right: 0;
  width: max(7rem, 50px);
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: max(0.2rem, 2px) solid #fff;
  background: #0F82D1;
  transform: translateY(-50%);
}
.footer__pagetop svg {
  width: 25%;
  height: auto;
  transform: translateY(15%);
}
.footer__pagetop:hover {
  opacity: 0.6;
}

.hero {
  position: relative;
  padding-top: 5%;
  z-index: 0;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero__bg img {
  width: 100%;
  height: 100%;
}
.hero__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
  min-height: 700px;
  aspect-ratio: 16/9;
}
.hero__people {
  position: absolute;
  bottom: 0;
  right: 10%;
  width: max(20rem, 135px);
}
@media screen and (max-width: 768px) {
  .hero__people {
    right: 0;
    transform: translateX(75%);
  }
}
@media screen and (max-width: 550px) {
  .hero__people {
    transform: translateX(50%);
  }
}
.hero__content {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .hero__content {
    width: 100%;
  }
}
.hero__title__sub {
  display: flex;
  align-items: center;
  gap: max(1.5rem, 10px);
  margin-bottom: max(1rem, 10px);
}
.hero__title__sub__text {
  display: inline-block;
  color: #fff;
  font-size: max(4.9rem, 24px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .hero__title__sub__text {
    font-size: 4.4vw;
  }
}
.hero__title__sub__icon {
  width: max(10rem, 55px);
}
@media screen and (max-width: 550px) {
  .hero__title__sub__icon {
    width: 9vw;
    line-height: 1;
  }
}
.hero__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: max(1.5rem, 10px);
  width: max(85%, 480px);
  margin-top: max(3rem, 20px);
}
@media screen and (max-width: 768px) {
  .hero__list {
    width: 100%;
    grid-template-columns: 1fr;
  }
}
.hero__list__item {
  padding: max(5rem, 30px) 5%;
  text-align: center;
  background: #fff;
  border-radius: max(0.6rem, 6px);
  box-shadow: 6px 6px 0 rgba(6, 104, 172, 0.55);
}
.hero__list__item p {
  color: #2592DC;
  font-size: max(2.3rem, 16px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.hero__list__item p b {
  color: #F6AC19;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
@media screen and (max-width: 768px) {
  .hero__list__item p br {
    display: none;
  }
}
.hero__supplement {
  margin-right: 10%;
  color: #fff;
  font-size: max(1.5rem, 12px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-top: max(3rem, 15px);
}
@media screen and (max-width: 768px) {
  .hero__supplement br {
    display: none;
  }
}

.internal {
  background: #fff;
  padding: max(10rem, 50px) 0;
}
.internal .btnBox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: max(2rem, 15px);
}
@media screen and (max-width: 768px) {
  .internal .btnBox {
    grid-template-columns: 1fr;
  }
}

.service {
  background: #2592DC;
  background-image: url(../images/service-bg.svg);
  background-size: cover;
  background-position: center;
}
.service__wrapper {
  padding-top: max(11rem, 70px);
  padding-bottom: max(11rem, 70px);
}
.service__preface {
  position: relative;
  width: 70%;
  text-align: center;
  margin: 0 auto;
  z-index: 10;
}
@media screen and (max-width: 1000px) {
  .service__preface {
    width: 100%;
  }
}
.service__preface h2 {
  color: #fff;
  padding-bottom: max(2.5rem, 20px);
}
.service__preface p {
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .service__preface p {
    text-align: left;
  }
  .service__preface p span {
    display: inline;
  }
}
.service__flow {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  gap: 20px max(1rem, 10px);
  padding: max(8.5rem, 50px) 5%;
  border-radius: max(0.6rem, 6px);
  box-shadow: 6px 6px 0 rgba(6, 104, 172, 0.55);
  margin-top: max(6rem, 50px);
}
@media screen and (max-width: 1000px) {
  .service__flow {
    flex-direction: column;
  }
}
.service__flow__people {
  position: absolute;
  bottom: 100%;
  right: 2.5%;
  width: max(17.5rem, 100px);
}
@media screen and (max-width: 1000px) {
  .service__flow__people {
    display: none;
  }
}
.service__flow__customer {
  flex-shrink: 0;
  width: max(13rem, 70px);
}
@media screen and (max-width: 1000px) {
  .service__flow__customer {
    width: max(30%, 150px);
  }
}
.service__flow__user {
  flex-shrink: 0;
  width: max(9.5rem, 50px);
}
@media screen and (max-width: 1000px) {
  .service__flow__user {
    width: max(20%, 100px);
  }
}
.service__flow__process {
  position: relative;
  display: grid;
  gap: max(2rem, 10px);
  width: 100%;
  padding: 0 3%;
  grid-template-columns: repeat(5, 1fr);
  border-radius: max(0.6rem, 6px);
  z-index: 0;
}
@media screen and (max-width: 1300px) {
  .service__flow__process {
    padding: 0 2%;
    gap: max(1rem, 10px);
  }
}
@media screen and (max-width: 1000px) {
  .service__flow__process {
    padding: 5% 0;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 1fr);
  }
}
.service__flow__process::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  height: max(0.4rem, 4px);
  transform: translateY(-50%);
  background: #2592DC;
  z-index: -1;
}
@media screen and (max-width: 1000px) {
  .service__flow__process::before {
    top: 0;
    left: 50%;
    right: auto;
    bottom: 0;
    width: max(0.4rem, 4px);
    height: 100%;
    transform: translateX(-50%);
  }
}
.service__flow__process::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: flex;
  align-items: center;
  width: max(1.6rem, 16px);
  height: max(1.5rem, 18px);
  background: #2592DC;
  transform: translate(50%, -50%);
  clip-path: path("M 5 2.732 L 12.856 7.268 Q 15.856 9 12.856 10.732 L 5 15.268 Q 2 17 2 13.536 L 2 4.464 Q 2 1 5 2.732 Z");
  z-index: -1;
}
@media screen and (max-width: 1000px) {
  .service__flow__process::after {
    top: auto;
    left: 50%;
    right: auto;
    bottom: 0;
    transform: translate(-50%, 50%) rotate(90deg);
  }
}
.service__flow__process__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10%;
  text-align: center;
  background: #d6e9f7;
  border-radius: max(0.6rem, 6px);
  font-size: max(1.5rem, 12px);
}
@media screen and (max-width: 1000px) {
  .service__flow__process__item {
    padding: 2.5% 5%;
    font-size: max(3rem, 16px);
  }
}
.service__flow__process__item > span {
  color: #0F82D1;
  font-size: 1em;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.service__flow__process__item small {
  color: #0F82D1;
  text-align: left;
  line-height: 1.2;
  font-size: 0.8em;
}
@media screen and (max-width: 1000px) {
  .service__flow__process__item small {
    text-align: center;
  }
}
.service__flow__process__item .attention {
  text-align: left;
  font-size: 0.8em;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
  .service__flow__process__item .attention {
    text-align: center;
  }
}
.service__method {
  margin-top: max(4rem, 30px);
}
.service__method h3 {
  color: #fff;
  font-size: max(2.3rem, 18px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: max(2.5rem, 20px);
}
.service__method h4 {
  color: #fff;
  font-size: max(1.8rem, 15px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: max(2rem, 15px);
}
.service__method p {
  color: #fff;
  font-size: max(1.5rem, 12px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .service__method p br {
    display: none;
  }
}
.service__method .attention {
  color: #fff;
  font-size: max(1.5rem, 12px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.service__method__kind {
  margin-top: max(5rem, 30px);
}
.service__method__kind__list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: max(0.5rem, 5px);
}
.service__method__kind__list dl {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
}
.service__method__kind__list dl dt,
.service__method__kind__list dl dd {
  color: #fff;
  font-size: max(1.5rem, 12px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}
.service__method__kind__list dl dd {
  position: relative;
  padding-left: 1em;
}
.service__method__kind__list dl dd::before {
  position: absolute;
  left: 0;
  content: "：";
}
.service__method__kind__table {
  position: relative;
  width: 100%;
  margin-top: max(6rem, 35px);
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.service__method__kind__table::-webkit-scrollbar {
  display: none;
}
.service__method__kind__table .tableBox {
  min-width: 800px;
}

.delivery {
  background: #fff;
}
.delivery__wrapper {
  padding-top: max(11.5rem, 70px);
  padding-bottom: max(11.5rem, 70px);
}
.delivery h3 {
  font-size: max(2.3rem, 18px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: max(2.5rem, 20px);
}
.delivery h4 {
  font-size: max(1.8rem, 15px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: max(2rem, 15px);
}
.delivery h4 b {
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.delivery__method {
  display: grid;
  gap: 50px max(3rem, 10px);
  grid-template-columns: repeat(4, 1fr);
  margin-top: max(10rem, 80px);
}
@media screen and (max-width: 1000px) {
  .delivery__method {
    grid-template-columns: repeat(2, 1fr);
  }
}
.delivery__method__item {
  position: relative;
  padding: max(4rem, 20px) max(3rem, 15px);
  background: #0F82D1;
  border-radius: max(0.6rem, 6px);
  box-shadow: 6px 6px 0 rgba(15, 130, 209, 0.22);
  z-index: 0;
}
.delivery__method__item__bubble {
  position: absolute;
  text-align: center;
  left: 5%;
  right: 5%;
  bottom: 100%;
  padding: max(0.5rem, 5px) 0;
  background: #fff;
  border-radius: max(0.6rem, 6px);
  border: max(0.2rem, 2px) solid #F6AC19;
  box-shadow: 0 3px 13px rgba(0, 0, 0, 0.11);
  transform: translateY(20%);
}
.delivery__method__item__bubble::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border-width: max(0.9rem, 9px) max(1.1rem, 11px) 0 max(1.1rem, 11px);
  border-style: solid;
  border-color: #F6AC19 transparent transparent transparent;
  width: 0;
  height: 0;
  display: block;
}
.delivery__method__item__bubble::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% - max(0.2rem, 2px));
  transform: translateX(-50%);
  border-width: max(0.8rem, 8px) max(1rem, 10px) 0 max(1rem, 10px);
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  width: 0;
  height: 0;
  display: block;
}
.delivery__method__item__bubble span {
  color: #F6AC19;
  font-size: max(2.7rem, 15px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.delivery__method__item p {
  color: #fff;
  font-size: max(1.5rem, 13px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}

.network {
  background: #2592DC;
  background-image: url(../images/service-bg.svg);
  background-size: cover;
  background-position: center;
}
.network__wrapper {
  padding-top: max(11rem, 70px);
  padding-bottom: max(11rem, 70px);
}
.network__preface {
  position: relative;
  width: 70%;
  text-align: center;
  margin: 0 auto;
  z-index: 10;
}
@media screen and (max-width: 1000px) {
  .network__preface {
    width: 100%;
  }
}
.network__preface h2 {
  color: #fff;
  padding-bottom: max(2.5rem, 20px);
}
.network__preface p {
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .network__preface p {
    text-align: left;
  }
  .network__preface p span {
    display: inline;
  }
}
@media screen and (max-width: 768px) {
  .network__preface p br {
    display: none;
  }
}
.network__range {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: max(8.5rem, 50px) 5%;
  border-radius: max(0.6rem, 6px);
  box-shadow: 6px 6px 0 rgba(6, 104, 172, 0.55);
  margin-top: max(6rem, 50px);
}
.network__range__people {
  position: absolute;
  bottom: 100%;
  right: 2.5%;
  width: max(17.5rem, 100px);
}
@media screen and (max-width: 1000px) {
  .network__range__people {
    display: none;
  }
}
.network__range__map {
  text-align: center;
}
.network__range__map h3 {
  color: #2592DC;
  font-size: max(2rem, 16px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: max(5rem, 30px);
}

.support__wrapper {
  padding-top: max(11rem, 70px);
  padding-bottom: max(11rem, 70px);
}
.support__preface {
  position: relative;
  width: 70%;
  text-align: center;
  margin: 0 auto;
  z-index: 10;
}
@media screen and (max-width: 1000px) {
  .support__preface {
    width: 100%;
  }
}
.support__preface h2 {
  color: #F6AC19;
  padding-bottom: max(2.5rem, 20px);
}
.support__preface p {
  color: #F6AC19;
}
@media screen and (max-width: 1000px) {
  .support__preface p {
    text-align: left;
  }
  .support__preface p span {
    display: inline;
  }
}
@media screen and (max-width: 768px) {
  .support__preface p br {
    display: none;
  }
}
.support__method {
  position: relative;
  background: #FCEED1;
  text-align: center;
  margin-top: max(6rem, 50px);
  padding: max(8.5rem, 50px) 5%;
  border-radius: max(0.6rem, 6px);
  box-shadow: 6px 6px 0 rgba(246, 172, 25, 0.55);
}
.support__method__people {
  position: absolute;
  bottom: 100%;
  right: 2.5%;
  width: max(17.5rem, 100px);
}
@media screen and (max-width: 1000px) {
  .support__method__people {
    display: none;
  }
}
.support__method__title {
  color: #F6AC19;
  font-size: max(2rem, 16px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: max(5rem, 30px);
}
.support__method__grid__inner {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr;
  gap: max(10rem, 30px) max(2rem, 10px);
}
@media screen and (max-width: 1000px) {
  .support__method__grid__inner {
    grid-template-columns: 1fr 1fr;
  }
}
.support__method__grid__content {
  display: grid;
}
@media screen and (max-width: 1000px) {
  .support__method__grid__content--column1 {
    grid-column: 1/3;
    grid-template-columns: repeat(2, 1fr);
  }
  .support__method__grid__content--column1 .support__method__grid__content__header {
    grid-column: 1/3;
  }
  .support__method__grid__content--column1 .support__method__grid__content__body {
    grid-column: 1/2;
  }
  .support__method__grid__content--column1 .support__method__grid__content__footer {
    grid-column: 1/2;
  }
}
.support__method__grid__content--column2 {
  grid-template-columns: repeat(2, 1fr);
  column-gap: max(1.5rem, 5px);
}
@media screen and (max-width: 1000px) {
  .support__method__grid__content--column2 {
    grid-column: 1/3;
  }
}
.support__method__grid__content--column2 .support__method__grid__content__header {
  grid-column: 1/3;
}
.support__method__grid__content--column2 .support__method__grid__content__footer {
  grid-column: 1/3;
}
.support__method__grid__content__header {
  position: relative;
  text-align: center;
  margin-bottom: max(2.5rem, 15px);
  padding: max(1rem, 10px) 10px;
  background: #F6AC19;
  border-radius: max(0.6rem, 6px);
}
.support__method__grid__content__header::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 18px;
  height: 10px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: #F6AC19;
}
.support__method__grid__content__header span {
  color: #fff;
  font-size: max(2rem, 14px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.support__method__grid__content__body {
  background: #fff;
  border-radius: max(0.6rem, 6px);
  overflow: hidden;
}
.support__method__grid__content__body .imageBox {
  width: 100%;
  height: auto;
  aspect-ratio: 5/4;
}
.support__method__grid__content__body .textBox {
  text-align: center;
  padding: max(1.5rem, 10px) 5%;
}
.support__method__grid__content__body .textBox h4 {
  color: #F6AC19;
  font-size: max(2rem, 14px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: max(2.5rem, 20px);
}
.support__method__grid__content__body .textBox p {
  font-size: max(1.8rem, 14px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}
.support__method__grid__content__body .textBox p small {
  color: inherit;
  font-size: 0.9em;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: 0.1em;
}
.support__method__grid__content__footer {
  text-align: center;
  margin-top: max(1.5rem, 5px);
  padding: max(0.5rem, 5px) 5%;
  background: #fff;
  border-radius: max(0.6rem, 6px);
}
.support__method__grid__content__footer span {
  font-size: max(1.8rem, 14px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}
.support__method > .attention {
  display: block;
  text-align: right;
  font-size: max(1.2rem, 10px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-top: max(2rem, 15px);
}