@charset "UTF-8";
/* ===== add-on vars ===== */
/***** header *****/
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: clamp(8px, 2vw, 16px) clamp(10px, 3vw, 24px);
  gap: clamp(8px, 2vw, 16px);
}
header img {
  width: clamp(110px, 16vw, 180px);
  height: auto;
  display: block;
}
header .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(8px, 2vw, 14px);
  white-space: nowrap;
  min-width: 0;
}
header .btn {
  color: #1762a2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(6px, 1.2vw, 8px);
  text-decoration: none;
  width: clamp(120px, 16vw, 190px);
  height: clamp(34px, 4.5vw, 40px);
  font-size: clamp(12px, 1.8vw, 20px);
  font-weight: 700;
  letter-spacing: -0.1em;
  border: clamp(1px, 0.2vw, 1.5px) solid #1762a2;
  border-radius: 50px;
  padding: clamp(6px, 1.2vw, 8px) clamp(10px, 2vw, 12px);
}
header .btn .btn__label {
  white-space: nowrap;
}
header .btn.contact {
  background-color: #1762a2;
  color: #fff;
}
header .btn .arrow {
  position: relative;
  display: inline-block;
  width: 0.9em;
  height: 0.12em;
  margin-top: 0.15em;
  border-radius: 9999px;
  background-color: currentColor;
}
header .btn .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.7em;
  height: 0.12em;
  border-radius: 9999px;
  background-color: currentColor;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transform-origin: calc(100% - 1px) 50%;
          transform-origin: calc(100% - 1px) 50%;
}
header .button .btn--arrow:not(.contact),
header .button .btn--arrow:not(.contact):link,
header .button .btn--arrow:not(.contact):visited,
header .button .btn--arrow:not(.contact):hover,
header .button .btn--arrow:not(.contact):active {
  color: #1762a2;
  border-color: #1762a2;
  background: transparent;
}
header .button .btn--arrow.contact,
header .button .btn--arrow.contact:link,
header .button .btn--arrow.contact:visited,
header .button .btn--arrow.contact:hover,
header .button .btn--arrow.contact:active {
  color: #fff;
  background-color: #1762a2;
  border-color: #1762a2;
}
@media (max-width: 640px) {
  header .btn {
    width: clamp(112px, 28vw, 160px);
    height: clamp(32px, 5vw, 36px);
    font-size: clamp(12px, 2.6vw, 16px);
    padding: clamp(5px, 1.4vw, 7px) clamp(8px, 2.4vw, 10px);
    gap: 6px;
  }
  header img {
    width: clamp(100px, 22vw, 150px);
  }
}
@media (max-width: 380px) {
  header .btn {
    width: clamp(100px, 30vw, 140px);
    height: clamp(30px, 7vw, 34px);
    font-size: clamp(11px, 3.4vw, 14px);
    padding: 4px 8px;
    gap: 6px;
  }
  header .button {
    gap: 8px;
  }
  header img {
    width: clamp(90px, 24vw, 130px);
  }
}

/***** hero *****/
.hero {
  position: relative;
  height: clamp(750px, 44vw, 800px);
  margin: 0;
  text-align: center;
}
.hero .main-message {
  background-image: url("../img/main_pc.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  height: 530px;
  padding: 40px 0;
}
@media (max-width: 860px) {
  .hero .main-message {
    background-image: url("../img/main_sp.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
    height: 530px;
    padding: 40px 0;
    height: clamp(563px, 80vh, 760px);
  }
}
.hero .bubble {
  position: relative;
  display: inline-block;
  margin-bottom: clamp(12px, 2vw, 20px);
  padding: 4px 16px;
  border-radius: 9999px;
  background: -webkit-gradient(linear, left top, right top, from(#1762a2), to(#07949c));
  background: linear-gradient(to right, #1762a2, #07949c);
  text-align: left;
  color: #d8e3e9;
  font-weight: 700;
  line-height: 1.5;
  font-size: clamp(18px, 2.4vw, 40px);
}
.hero .bubble::before, .hero .bubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 100%;
  border-style: solid;
}
.hero .bubble::after {
  border-width: 8px 7.8px 0 7.8px;
  border-color: #0f7c9f transparent transparent;
}
.hero .message {
  color: #005484;
  font-size: clamp(28px, 10vw, 68px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1.2;
  margin-bottom: clamp(12px, 2vw, 20px);
  text-shadow: 0px 3px 10px #fff;
}
.hero .sub-message {
  position: absolute;
  top: clamp(280px, 44vw, 200px);
  right: 0;
  left: 0;
  /* ラッパー：横幅だけ管理（ボタン自体は a に持たせる） */
}
.hero .sub-message .download {
  position: absolute;
  right: clamp(16px, 12vw, 400px);
  top: clamp(150px, 42vw, 150px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 5;
  /* さらに小さい端末 */
}
@media (max-width: 860px) {
  .hero .sub-message .download {
    position: absolute;
    right: 10px;
    top: 0;
    -webkit-transform: none;
            transform: none;
    z-index: 1000; /* ヘッダー等より上に */
  }
  .hero .sub-message .download__title {
    font-size: clamp(12px, 1vw, 20px);
    background: #07949c;
  }
}
.hero .sub-message .download .dl-badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 縦方向の中央揃え */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 横方向は真ん中にギュッと */
  gap: 10px; /* アイコンと文字の間 */
  width: 100%;
  padding: 8px 24px;
  border-radius: 9999px;
  background: #f58220;
  color: #fff;
  text-decoration: none;
  -webkit-box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
          box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  margin-bottom: 20px;
  border: 2px solid #fff;
  /* タイトル */
  /* アイコン */
}
.hero .sub-message .download .dl-badge__title {
  font-weight: 900;
  line-height: 1.15;
  font-size: 24px;
  letter-spacing: 0.02em;
}
.hero .sub-message .download .dl-badge__icon {
  width: 32px;
  height: auto;
  display: block;
}
@media (max-width: 860px) {
  .hero .sub-message .download .hero .sub-message .download {
    position: fixed;
    right: 16px;
    bottom: 10px;
    top: auto;
    -webkit-transform: none;
            transform: none;
    z-index: 1000; /* ヘッダー等より上に */
  }
  .hero .sub-message .download .hero .sub-message .download__title {
    font-size: clamp(12px, 1vw, 20px);
    background: #07949c;
  }
  .hero .sub-message .download .dl-badge {
    --size: 150px;
  }
}
@media (max-width: 480px) {
  .hero .sub-message .download .hero .sub-message .download {
    position: absolute;
    top: 30;
  }
  .hero .sub-message .download .dl-badge {
    --size: 96px;
    height: 96px;
  }
  .hero .sub-message .download .dl-badge__title {
    font-size: clamp(12px, 1vw, 20px);
  }
  .hero .sub-message .download .dl-badge__icon {
    width: 20px;
  }
}
.hero .sub-message .download-sp {
  width: 70%;
  max-width: 520px;
  margin: 12px auto 0;
  /* ボタン本体（a） */
  /* アイコン */
  /* テキスト */
}
.hero .sub-message .download-sp .dl-badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 縦方向の中央揃え */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 横方向は真ん中にギュッと */
  gap: 10px; /* アイコンと文字の間 */
  width: 100%;
  height: clamp(44px, 12vw, 50px);
  padding: 0 16px;
  border-radius: 9999px;
  background: #f58220;
  color: #fff;
  text-decoration: none;
  -webkit-box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
          box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  margin-bottom: 20px;
}
.hero .sub-message .download-sp .dl-badge__icon {
  width: 22px;
  height: auto;
  display: block;
}
.hero .sub-message .download-sp .dl-badge__title {
  font-weight: 800;
  font-size: clamp(14px, 4vw, 16px);
  line-height: 1; /* 行高での縦合わせは使わない */
}
.hero .sub-message img.pc {
  width: 530px;
  margin: 0 auto 20px;
}
.hero .sub-message p {
  display: inline-block;
  font-size: clamp(14px, 1.8vw, 26px);
  line-height: 1.8;
  margin-bottom: 20px;
}
.hero .sub-message p span {
  border-bottom: 2px solid #1762a2;
}
@media (max-width: 860px) {
  .hero {
    height: clamp(750px, 44vw, 800px);
  }
  .hero .sub-message {
    top: clamp(195px, 30vw, 230px);
  }
  .hero .sub-message img.pc {
    width: min(520px, 86%);
  }
}
@media (max-width: 550px) {
  .hero {
    height: clamp(700px, 44vw, 800px);
  }
}
@media (max-width: 480px) {
  .hero {
    height: clamp(650px, 44vw, 680px);
  }
  .hero .main-message {
    height: clamp(290px, 44vw, 260px);
  }
  .hero .sub-message {
    top: clamp(175px, 45vw, 260px);
  }
  .hero .sub-message img.pc {
    width: min(380px, 80%);
  }
}
@media (max-width: 390px) {
  .hero {
    height: clamp(580px, 1vw, 580px);
  }
}

/***** problem *****/
.problem {
  padding-block: clamp(24px, 5vw, 64px);
}
.problem .message {
  --h: clamp(240px, 30vw, 430px);
  max-width: min(1250px, 95vw);
  height: clamp(240px, 30vw, 430px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(16px, 4vw, 40px);
  padding: clamp(12px, 2vw, 16px) clamp(16px, 3vw, 24px) clamp(12px, 2vw, 16px) clamp(24px, 6vw, 150px);
  background: -webkit-gradient(linear, left top, right top, from(#1762a2), to(#07949c));
  background: linear-gradient(90deg, #1762a2, #07949c);
  border-radius: 0 130px 0 0;
  color: #fff;
}
.problem .message img {
  position: relative;
  height: calc(var(--h) + 30px);
  top: -15px;
  width: auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: block;
}
.problem .message p {
  margin: 0;
  max-width: 52ch;
  font-size: clamp(13px, 1.6vw, 21px);
  line-height: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
}
@media (max-width: 860px) {
  .problem .message {
    --h: clamp(220px, 36vw, 260px);
    padding-left: clamp(16px, 5vw, 40px);
  }
  .problem .message img {
    top: -6px;
    height: calc(var(--h) - 8px);
  }
}
@media (max-width: 720px) {
  .problem .message {
    --h: auto;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    text-align: left;
    padding: clamp(16px, 5vw, 24px) clamp(16px, 8vw, 50px);
    border-radius: 0 45px 45px 0;
  }
  .problem .message img {
    position: relative;
    height: clamp(180px, 45vw, 260px);
    margin-bottom: -35px;
    border-radius: 16px;
    top: -35px;
  }
  .problem .message p {
    max-width: 60ch;
    font-size: clamp(14px, 3.5vw, 16px);
  }
}

/***** solution-lead *****/
.solution-lead {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(24px, 6vw, 64px) 0;
  text-align: center;
}
.solution-lead .main-message {
  max-width: 1120px;
  margin-inline: auto;
}
.solution-lead .sub {
  color: #1762a2;
  font-weight: 700;
  font-size: clamp(14px, 1.8vw, 33px);
  margin-bottom: 6px;
}
.solution-lead .main {
  color: #1762a2;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-size: clamp(32px, 6vw, 87px);
  margin-bottom: clamp(16px, 3vw, 25px);
}
.solution-lead .main span {
  display: inline-block;
  margin-left: 20px;
  padding: 4px 10px;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#f24827), to(#fbb03b));
  background: linear-gradient(to right, #f24827, #fbb03b);
  font-style: italic;
  line-height: 1;
  vertical-align: baseline;
}
.solution-lead .sub-message1 {
  max-width: 72ch;
  margin: 0 auto clamp(16px, 3vw, 25px);
  font-size: clamp(14px, 1.6vw, 21px);
  line-height: 1.9;
  color: #0d223a;
}
.solution-lead .solution-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 310px));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(12px, 3vw, 30px);
  margin: 0 auto;
  max-width: 980px;
}
.solution-lead .solution-list > img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 860px) {
  .solution-lead .solution-list {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    max-width: 720px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .solution-lead .solution-list > img {
    width: 150px;
  }
}
@media (max-width: 640px) {
  .solution-lead .solution-list {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    max-width: 560px;
  }
}
@media (max-width: 420px) {
  .solution-lead .solution-list {
    grid-template-columns: 1fr;
  }
}

/***** features *****/
.features {
  text-align: center;
  font-weight: 700;
  font-size: clamp(16px, 3.6vw, 37px);
  line-height: 1.5;
  margin: 0 auto clamp(32px, 10vw, 100px);
  padding: 0 12px;
  letter-spacing: -0.05em;
}
.features span {
  display: inline-block;
  color: #1762a2;
  border-bottom-style: solid;
  border-bottom-width: clamp(3px, 0.9vw, 8px);
  -o-border-image: linear-gradient(to right, rgba(242, 72, 39, 0.51), rgba(251, 176, 59, 0.52)) 1;
     border-image: -webkit-gradient(linear, left top, right top, from(rgba(242, 72, 39, 0.51)), to(rgba(251, 176, 59, 0.52))) 1;
     border-image: linear-gradient(to right, rgba(242, 72, 39, 0.51), rgba(251, 176, 59, 0.52)) 1;
  padding-bottom: clamp(2px, 0.6vw, 4px);
}
@media (max-width: 640px) {
  .features {
    line-height: 1.45;
  }
}
@media (max-width: 420px) {
  .features {
    line-height: 1.4;
  }
}

/***** industries *****/
.industries {
  text-align: center;
}
.industries .main-message {
  display: inline-block;
  color: #fff;
  font-size: clamp(16px, 3.6vw, 37px);
  font-weight: bold;
  padding: 6px 10px;
  background: #000;
  border-radius: 6px;
}
.industries .list {
  margin-top: -20px;
  background: -webkit-gradient(linear, left top, right top, from(#1762a2), to(#07949c));
  background: linear-gradient(to right, #1762a2, #07949c);
  padding: 80px 40px;
}
.industries .list .industries-list {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.industries .list .industries-list img {
  height: 30px;
  margin-right: 10px;
}
@media (max-width: 480px) {
  .industries .list .industries-list img {
    height: 25px;
  }
}
.industries .list .industries-list span {
  margin: 0;
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 56px;
  padding: 10px 16px;
  border-radius: 10px;
  background: #fff;
  color: #1762a2;
  font-size: clamp(16px, 3.6vw, 33px);
  font-weight: bold;
  white-space: nowrap;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}
@media (max-width: 860px) {
  .industries .main-message {
    font-size: clamp(18px, 3vw, 22px);
    padding: 6px 10px;
  }
  .industries .list {
    padding: 40px 0 28px;
  }
  .industries .list .industries-list {
    width: min(640px, 94vw);
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
  .industries .list .industries-list span {
    font-size: clamp(16px, 2.8vw, 25px);
    min-height: 52px;
    padding: 10px 14px;
  }
}
@media (max-width: 640px) {
  .industries .list {
    padding: 32px 0 24px;
  }
  .industries .list .industries-list {
    gap: 12px;
  }
  .industries .list .industries-list span {
    font-size: clamp(20px, 3.6vw, 18px);
    min-height: 48px;
    padding: 8px 12px;
  }
}
@media (max-width: 480px) {
  .industries .list {
    padding: 60px 20px 40px 20px;
  }
  .industries .list .industries-list {
    width: min(340px, 92vw);
    grid-template-columns: 1fr;
  }
}

/***** clients *****/
.clients {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding-block: clamp(24px, 6vw, 80px);
}
.clients .sub-message {
  display: inline-block;
  background: #1762a2;
  color: #fff;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  font-size: clamp(20px, 2.2vw, 32px);
  line-height: 1;
}
.clients .main-message {
  margin: 0 0 clamp(16px, 3vw, 24px);
  font-weight: 800;
  font-size: clamp(18px, 3.2vw, 59px);
  letter-spacing: 0.01em;
}
.clients .main-message span {
  display: inline-block;
  color: #1762a2;
  font-weight: 900;
  font-size: clamp(24px, 4.4vw, 59px);
  line-height: 1.1;
  margin-inline: 0.15em;
}
.clients .clients-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px 42px;
  padding: 4px 0;
}
.clients .clients-list img {
  width: 305px;
  height: 116px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0;
  background: #fff;
  border: 3px solid #1762a2;
  border-radius: 10px;
  padding: 10px 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 860px) {
  .clients .clients-list {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }
}
@media (max-width: 640px) {
  .clients {
    padding-block: clamp(20px, 6vw, 28px);
  }
  .clients .sub-message {
    padding: 5px 10px;
  }
  .clients .clients-list {
    gap: 12px;
  }
  .clients .clients-list img {
    width: 150px;
    height: 70px;
    padding: 16px;
    border-width: 2px;
  }
}
@media (max-width: 480px) {
  .clients {
    padding: 40px 0 20px 0;
  }
  .clients .clients-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/***** cases *****/
.cases {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  color: #0d223a;
  padding: 80px 40px;
}
@media (max-width: 480px) {
  .cases {
    padding: 60px 20px;
  }
}
.cases .container {
  margin-inline: auto;
}

.brand-logos {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: clamp(12px, 3vw, 24px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
}
.brand-logos li {
  width: 100%;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 16px 24px;
}
.brand-logos img {
  max-width: 100%;
  height: auto;
  display: block;
}

.case-card {
  position: relative;
  border: 2px solid #4d4d4d;
  border-radius: 0 80px;
  background: #fff;
  margin-bottom: 100px;
}
@media (max-width: 860px) {
  .case-card {
    border-radius: 0 40px;
    margin-bottom: 20px;
  }
}
.case-card__label {
  position: absolute;
  top: -22px;
  left: 24px;
  background: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: clamp(18px, 4.4vw, 33px);
  font-weight: 700;
  color: #000;
}
.case-card__brand {
  max-width: 420px;
  height: auto;
  display: block;
  margin: 0 auto;
  padding: 90px 20px 10px 20px;
}
@media (max-width: 860px) {
  .case-card__brand {
    max-width: 280px;
    padding: 50px 20px 10px 20px;
  }
}
.case-card__company {
  margin: 0 0 50px;
  color: #000;
  font-size: clamp(15px, 2.2vw, 28px);
  font-weight: 700;
  text-align: center;
}
.case-card__leadband {
  padding: 40px 0 0 0;
  background: #e9f1f6;
}
@media (max-width: 860px) {
  .case-card__leadband {
    padding-bottom: 20px;
  }
}
.case-card__lead {
  margin: 0;
  text-align: center;
  line-height: 1.7;
  font-weight: 700;
  text-align: center;
  font-size: clamp(20px, 2.2vw, 36px);
}
.case-card__lead strong {
  color: #1762a2;
  font-weight: 800;
}
.case-card .case-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #e9f1f6;
  padding: 60px 100px;
}
@media (max-width: 860px) {
  .case-card .case-row {
    padding: 20px;
  }
}
.case-card .case-row__media img {
  width: 100%;
  height: auto;
  display: block;
}
.case-card .case-row__text h3 {
  color: #0a50a6;
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 22px);
  line-height: 1.5;
}
.case-card .case-row__text p {
  margin: 0;
  font-size: clamp(18px, 2.4vw, 17px);
  line-height: 1.9;
  color: #0d223a;
  padding: clamp(0px, 2.2vw, 16px) clamp(0px, 2.2vw, 50px);
}
@media (max-width: 860px) {
  .case-card .case-row__text p {
    padding: 20px;
  }
}
.case-card .case-row .with-rule h3 {
  border-bottom: 2px solid #4d4d4d;
  padding: clamp(0px, 2vw, 35px) clamp(0px, 2.2vw, 50px);
}
@media (max-width: 480px) {
  .case-card .case-row .with-rule h3 {
    padding: 20px;
  }
}
.case-card .case-row--swap {
  grid-template-columns: 1fr 1fr;
  background: #fff;
}
.case-card .case-row--swap .case-row__media {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.case-card .case-row--swap .case-row__text {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (max-width: 860px) {
  .case-card .case-row {
    grid-template-columns: 1fr;
  }
  .case-card .case-row--swap .case-row__media {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .case-card .case-row--swap .case-row__text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.case-card__summary {
  padding: clamp(16px, 4vw, 28px) 0;
  background: #e9f1f6;
  line-height: 1.7;
  font-weight: 700;
  text-align: center;
  font-size: clamp(20px, 2.2vw, 36px);
}
.case-card__actions {
  text-align: center;
  padding: 20px 0 60px 0;
  background: #e9f1f6;
  border-radius: 0 0 0 80px;
}
@media (max-width: 860px) {
  .case-card__actions {
    border-radius: 0 0 0 40px;
  }
}
.case-card .btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 220px;
  padding: 12px 70px;
  border-radius: 9999px;
  text-decoration: none;
  background: -webkit-gradient(linear, left top, right top, from(#1762a2), to(#07949c));
  background: linear-gradient(to right, #1762a2, #07949c);
  color: #fff;
  font-size: clamp(15px, 3vw, 30px);
  font-weight: 700;
  -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
          box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
  -webkit-transition: -webkit-transform 0.06s ease, -webkit-filter 0.2s ease;
  transition: -webkit-transform 0.06s ease, -webkit-filter 0.2s ease;
  transition: transform 0.06s ease, filter 0.2s ease;
  transition: transform 0.06s ease, filter 0.2s ease, -webkit-transform 0.06s ease, -webkit-filter 0.2s ease;
}
.case-card .btn:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-filter: brightness(1.05);
          filter: brightness(1.05);
}
.case-card .btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.case-card .btn.btn--primary {
  position: relative;
  padding-right: 70px;
}
.case-card .btn.btn--primary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent #fff;
  pointer-events: none;
}

/* ===== CTA ===== */
.cta-band {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, -webkit-max-content);
  grid-template-columns: repeat(2, max-content);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
  gap: clamp(16px, 3vw, 24px);
}
@media (max-width: 860px) {
  .cta-band {
    grid-template-columns: 1fr;
  }
}

.cta-pill {
  --arrow-size: clamp(44px, 6vw, 45px);
  --pad-y: clamp(14px, 2.2vw, 22px);
  --pad-x: clamp(18px, 3vw, 28px);
  width: min(470px, 100%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: clamp(12px, 2.2vw, 16px);
     -moz-column-gap: clamp(12px, 2.2vw, 16px);
          column-gap: clamp(12px, 2.2vw, 16px);
  padding: var(--pad-y) var(--pad-x);
  border-radius: 9999px;
  text-decoration: none;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  -webkit-transition: -webkit-transform 0.06s ease, -webkit-filter 0.2s ease;
  transition: -webkit-transform 0.06s ease, -webkit-filter 0.2s ease;
  transition: transform 0.06s ease, filter 0.2s ease;
  transition: transform 0.06s ease, filter 0.2s ease, -webkit-transform 0.06s ease, -webkit-filter 0.2s ease;
  position: relative;
}
.cta-pill:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-filter: brightness(1.03);
          filter: brightness(1.03);
}
.cta-pill:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.cta-pill__icon {
  display: grid;
  place-items: center;
  width: clamp(42px, 5vw, 56px);
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.cta-pill__icon img {
  width: 80%;
  height: auto;
  display: block;
}
.cta-pill__text {
  text-align: left;
  line-height: 1.2;
}
.cta-pill__text small {
  display: block;
  font-size: clamp(12px, 1.6vw, 14px);
  font-weight: 700;
  opacity: 0.85;
  margin-bottom: 6px;
}
.cta-pill__text strong {
  display: block;
  font-size: clamp(20px, 3.2vw, 28px);
  font-weight: 900;
  letter-spacing: 0.01em;
}
.cta-pill__arrow {
  width: var(--arrow-size);
  height: var(--arrow-size);
  border-radius: 50%;
  background: #fff;
  -webkit-box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
          box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  position: relative;
}
.cta-pill__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-42%, -50%);
          transform: translate(-42%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: calc(var(--arrow-size) * 0.22) 0 calc(var(--arrow-size) * 0.22) calc(var(--arrow-size) * 0.32);
  border-color: transparent transparent transparent #165c9b;
}
.cta-pill.cta-pill--outline {
  background: #fff;
  color: #165c9b;
  border: 4px solid #165c9b;
}
.cta-pill.cta-pill--outline .cta-pill__icon img {
  -webkit-filter: none;
          filter: none;
}
.cta-pill.cta-pill--outline .cta-pill__arrow {
  background: #165c9b;
  border: 0;
}
.cta-pill.cta-pill--outline .cta-pill__arrow::after {
  border-color: transparent transparent transparent #fff;
}
.cta-pill.cta-pill--outline:hover .cta-pill__arrow {
  background: #165c9b, 4%;
}
.cta-pill.cta-pill--fill {
  background: -webkit-gradient(linear, left top, right top, from(#165c9b), to(#0b6fb4));
  background: linear-gradient(90deg, #165c9b, #0b6fb4);
  color: #fff;
  border: none;
}
.cta-pill.cta-pill--fill .cta-pill__icon img {
  -webkit-filter: brightness(1.05);
          filter: brightness(1.05);
}
.cta-pill.cta-pill--fill .cta-pill__arrow {
  background: #fff;
  border: 0;
}
.cta-pill.cta-pill--fill .cta-pill__arrow::after {
  border-color: transparent transparent transparent #165c9b;
}

.cta-pill {
  width: min(470px, 100%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: clamp(12px, 2.2vw, 16px);
     -moz-column-gap: clamp(12px, 2.2vw, 16px);
          column-gap: clamp(12px, 2.2vw, 16px);
  padding: var(--pad-y) var(--pad-x);
  border-radius: 9999px;
  text-decoration: none;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  -webkit-transition: -webkit-transform 0.06s ease, -webkit-filter 0.2s ease;
  transition: -webkit-transform 0.06s ease, -webkit-filter 0.2s ease;
  transition: transform 0.06s ease, filter 0.2s ease;
  transition: transform 0.06s ease, filter 0.2s ease, -webkit-transform 0.06s ease, -webkit-filter 0.2s ease;
  position: relative;
}
.cta-pill:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-filter: brightness(1.03);
          filter: brightness(1.03);
}
.cta-pill:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.cta-pill__icon {
  display: grid;
  place-items: center;
  width: clamp(42px, 5vw, 56px);
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.cta-pill__icon img {
  width: 80%;
  height: auto;
  display: block;
}
.cta-pill__text {
  text-align: left;
  line-height: 1.2;
}
.cta-pill__text small {
  display: block;
  font-size: clamp(12px, 1.6vw, 16px);
  font-weight: bold;
  opacity: 0.85;
  margin-bottom: 6px;
}
@media (max-width: 860px) {
  .cta-pill__text small {
    font-size: 10px;
  }
}
.cta-pill__text strong {
  display: block;
  font-size: clamp(20px, 3.2vw, 31px);
  font-weight: 900;
  letter-spacing: 0.01em;
}
@media (max-width: 860px) {
  .cta-pill__text strong {
    font-size: clamp(23px, 3.2vw, 31px);
  }
}
.cta-pill__arrow {
  width: var(--arrow-size);
  height: var(--arrow-size);
  border-radius: 50%;
  -webkit-box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
          box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  position: relative;
  background: #165c9b;
  border: 0;
}
.cta-pill__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-42%, -50%);
          transform: translate(-42%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: calc(var(--arrow-size) * 0.22) 0 calc(var(--arrow-size) * 0.22) calc(var(--arrow-size) * 0.32);
  border-color: transparent transparent transparent #165c9b;
}
.cta-pill.cta-pill--outline {
  width: 100%;
  background: #fff;
  color: #165c9b;
  border: 4px solid #165c9b;
}
.cta-pill.cta-pill--outline .cta-pill__icon img {
  -webkit-filter: none;
          filter: none;
}
.cta-pill.cta-pill--outline .cta-pill__arrow {
  background: #0d6bae;
}
.cta-pill.cta-pill--fill {
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#165c9b), to(#0b6fb4));
  background: linear-gradient(90deg, #165c9b, #0b6fb4);
  color: #fff;
  border: none;
}
.cta-pill.cta-pill--fill .cta-pill__icon img {
  -webkit-filter: brightness(1.05);
          filter: brightness(1.05);
}
.cta-pill.cta-pill--fill .cta-pill__arrow {
  background: #fff;
  border: 0;
}

/***** samples *****/
.samples {
  background: linear-gradient(135deg, #155b9a 0%, #0e98a0 100%);
  color: #fff;
  padding: 80px 40px;
  /* すべての直下要素を縮められるように */
  /* 画像や文章がはみ出す場合の追加ケア */
}
@media (max-width: 480px) {
  .samples {
    padding: 60px 20px;
  }
}
.samples .samples__container {
  max-width: 1000px;
  margin: 0 auto;
}
.samples .samples__title {
  margin: 0;
  text-align: center;
  font-weight: 800;
  font-size: clamp(22px, 4.6vw, 45px);
  color: #ffe37a;
  letter-spacing: 0.02em;
}
.samples .samples__subtitle {
  margin: 6px 0 clamp(20px, 4vw, 32px);
  text-align: center;
  font-weight: 800;
  font-size: clamp(22px, 3.6vw, 45px);
  color: #fff;
}
.samples .samples__list {
  display: grid;
  gap: clamp(45px, 4.2vw, 50px);
}
.samples .sample {
  display: grid;
  grid-template-columns: 1fr 74px 1fr;
  gap: clamp(16px, 3vw, 24px);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding-bottom: clamp(45px, 3vw, 50px);
  border-bottom: 2px solid #fff;
}
.samples .sample > * {
  min-width: 0;
}
.samples .sample img {
  max-width: 100%;
  height: auto;
}
.samples .sample p {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.samples .chip {
  position: absolute;
  top: 0;
  left: 0;
  padding: 4px 8px;
  font-weight: 800;
  font-size: clamp(13px, 1.8vw, 18px);
  letter-spacing: 0.04em;
  color: #fff;
}
.samples .chip--source {
  background: #fff;
  color: #1762a2;
}
.samples .chip--t4oo {
  background: #1762a2;
}
.samples .chip--ai {
  background: #999;
}
.samples .card {
  position: relative;
  padding: clamp(45px, 2.2vw, 30px) clamp(16px, 2.6vw, 22px) clamp(30px, 2.2vw, 30px);
  border-radius: 35px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
}
.samples .card p {
  margin: 0;
  line-height: 1.9;
  font-size: clamp(13px, 1.8vw, 18px);
}
.samples .card .em {
  color: #f7931e;
  font-weight: 700;
}
.samples .card--source {
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
}
.samples .card--t4oo {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f2f8ff));
  background: linear-gradient(180deg, #fff 0%, #f2f8ff 100%);
  color: #0d223a;
}
.samples .card--ai {
  background: #bed4e1;
  color: #2b3b50;
}
.samples .sample__right {
  display: grid;
  gap: clamp(10px, 2.2vw, 16px);
}
@media (max-width: 480px) {
  .samples .sample__right {
    gap: 20px;
  }
}
.samples .sample__arrow {
  position: relative;
  min-height: 90px;
}
.samples .sample__arrow::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 17px;
  right: 14px;
  height: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  clip-path: polygon(0% 25%, calc(100% - 18px) 25%, calc(100% - 18px) 0%, 100% 50%, calc(100% - 18px) 100%, calc(100% - 18px) 75%, 0% 75%);
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.samples .samples__notes {
  margin: clamp(18px, 4vw, 28px);
  padding: 0 8px;
  list-style: none;
  color: #fff;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: bold;
  line-height: 1.9;
}
.samples .samples__notes li {
  position: relative;
  padding-left: 1.4em;
  margin: 0.35em 0;
}
.samples .samples__notes li::before {
  content: "◎";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  opacity: 0.9;
}
.samples .samples__action {
  text-align: center;
  margin-top: clamp(20px, 5vw, 36px);
}
.samples .samples-btn {
  display: inline-grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  padding: 10px 35px 10px 40px;
  min-width: 330px;
  background: #fff;
  color: #0a4984;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 800;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  -webkit-transition: -webkit-transform 0.06s ease, -webkit-filter 0.2s ease;
  transition: -webkit-transform 0.06s ease, -webkit-filter 0.2s ease;
  transition: transform 0.06s ease, filter 0.2s ease;
  transition: transform 0.06s ease, filter 0.2s ease, -webkit-transform 0.06s ease, -webkit-filter 0.2s ease;
}
.samples .samples-btn:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-filter: brightness(1.02);
          filter: brightness(1.02);
}
.samples .samples-btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.samples .samples-btn__label {
  font-size: clamp(18px, 2.2vw, 30px);
  letter-spacing: 0.02em;
}
.samples .samples-btn__arrow {
  width: 40px;
  height: 40px;
  background: #fff;
  position: relative;
}
.samples .samples-btn__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-40%, -50%);
          transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #165c9b;
}
@media (max-width: 860px) {
  .samples .card--source {
    width: 100%;
  }
  .samples .card--t4oo {
    width: 100%;
  }
  .samples .card--ai {
    width: 100%;
  }
  .samples .sample {
    grid-template-columns: 1fr;
  }
  .samples .sample__right {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .samples .sample__arrow {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    min-height: 56px;
  }
  .samples .sample__arrow::before {
    top: 6px;
    bottom: 6px;
    left: 50%;
    right: auto;
    width: 16px;
    height: auto;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background: #fff;
    clip-path: polygon(25% 0, 75% 0, 75% calc(100% - 22px), 100% calc(100% - 22px), 50% 100%, 0 calc(100% - 22px), 25% calc(100% - 22px));
  }
}
@media (max-width: 480px) {
  .samples .card--source {
    width: 100%;
  }
  .samples .card--t4oo {
    width: 100%;
  }
  .samples .card--ai {
    width: 100%;
  }
  .samples .samples__notes {
    max-width: 100%;
    font-size: clamp(12.5px, 3.6vw, 14px);
    margin-bottom: 30px;
  }
  .samples .samples-btn {
    width: 100%;
    padding: 12px 14px 12px 18px;
  }
  .samples .samples-btn__arrow {
    width: 36px;
    height: 36px;
  }
}

/***** compare *****/
.compare {
  padding: 80px 40px;
}
@media (max-width: 480px) {
  .compare {
    padding: 60px 20px;
  }
}
.compare .compare__container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.compare .compare__title {
  font-weight: 900;
  color: #1d6eae;
  font-size: clamp(30px, 4.2vw, 45px);
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}
.compare .compare__lead {
  margin: 0 auto clamp(18px, 4vw, 28px);
  color: #3b4c62;
  font-size: clamp(14px, 1.8vw, 19px);
  line-height: 1.8;
}
.compare .compare__tablewrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.compare .compare__tablewrap img {
  display: block;
  width: 1000px;
  max-width: none;
  height: auto;
}
@media (max-width: 860px) {
  .compare .compare__tablewrap img {
    width: 800px;
  }
}
.compare .compare__note {
  margin: clamp(16px, 4vw, 24px) clamp(16px, 4vw, 24px) clamp(16px, 10vw, 45px) clamp(16px, 4vw, 40px);
  color: #2b3b50;
  font-weight: 700;
  line-height: 1.8;
  font-size: clamp(20px, 4vw, 29px);
}
.compare .compare__cta {
  text-align: center;
  margin: clamp(12px, 3vw, 20px) 0;
}
.compare .compare__cta .btn.btn--primary {
  display: inline-block;
  width: min(100%, 800px);
  position: relative;
  border-radius: 9999px;
  background: -webkit-gradient(linear, left top, right top, from(#1a63a1), to(#07949c)) !important;
  background: linear-gradient(90deg, #1a63a1 0%, #07949c 100%) !important;
  color: #fff !important;
  text-decoration: none;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  --circle: clamp(28px, 3vw, 40px);
  --pad-r: clamp(10px, 2vw, 14px);
  --tri-h: clamp(7px, 1vw, 8px);
  --tri-w: clamp(11px, 1.5vw, 12px);
  padding: clamp(10px, 1.6vw, 12px) calc(var(--pad-r) + var(--circle) + 16px) clamp(14px, 2.4vw, 12px) clamp(18px, 3vw, 24px);
  -webkit-transition: -webkit-transform 0.06s ease, -webkit-filter 0.2s ease;
  transition: -webkit-transform 0.06s ease, -webkit-filter 0.2s ease;
  transition: transform 0.06s ease, filter 0.2s ease;
  transition: transform 0.06s ease, filter 0.2s ease, -webkit-transform 0.06s ease, -webkit-filter 0.2s ease;
}
.compare .compare__cta .btn.btn--primary .btn__label {
  display: block;
  font-weight: 900;
  font-size: clamp(20px, 2.4vw, 29px);
  line-height: 1.1;
}
.compare .compare__cta .btn.btn--primary .btn__sub {
  display: block;
  margin-top: 6px;
  font-weight: 800;
  font-size: clamp(12px, 1.4vw, 16px);
  line-height: 1.1;
  opacity: 0.98;
}
.compare .compare__cta .btn.btn--primary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: var(--pad-r);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: var(--circle);
  height: var(--circle);
  border-radius: 50%;
  background: #fff;
  z-index: 1;
  pointer-events: none;
}
.compare .compare__cta .btn.btn--primary::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(var(--pad-r) + var(--circle) / 2 - var(--tri-w) / 2);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: var(--tri-h) solid transparent;
  border-bottom: var(--tri-h) solid transparent;
  border-left: var(--tri-w) solid #07949c;
  z-index: 2;
  pointer-events: none;
}
.compare .compare__cta .btn.btn--primary:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-filter: brightness(1.02);
          filter: brightness(1.02);
}
.compare .compare__cta .btn.btn--primary:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media (max-width: 420px) {
  .compare .compare__cta .btn.btn--primary {
    padding-right: calc(var(--pad-r) + var(--circle) + 12px);
  }
}
.compare .compare__ctaband {
  margin-top: clamp(14px, 3.6vw, 24px);
}

/***** FAQ *****/
.faq {
  background: #efefef;
  padding: 80px 40px;
}
@media (max-width: 480px) {
  .faq {
    padding: 60px 20px;
  }
}
.faq .faq__container {
  max-width: 1000px;
  margin: 0 auto;
}
.faq .faq__title {
  text-align: center;
  color: #1660a0;
  font-weight: 900;
  font-size: clamp(35px, 4vw, 40px);
  margin: 0 0 clamp(16px, 4vw, 28px);
  letter-spacing: 0.02em;
}
.faq .faq__item {
  background: transparent;
  margin: 0 0 40px;
  overflow: hidden;
  border: 0;
}
@media (max-width: 480px) {
  .faq .faq__item {
    margin: 0 0 20px;
  }
}
.faq .faq__item > summary::-webkit-details-marker {
  display: none;
}
.faq .faq__q {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background: #1762a2;
  color: #fff;
  font-size: clamp(18px, 4.2vw, 23px);
  font-weight: bold;
  padding: 10px 14px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.faq .faq__qicon {
  font-weight: bold;
  font-size: clamp(18px, 4vw, 23px);
}
.faq .faq__toggle {
  position: relative;
  width: 18px;
  height: 18px;
}
.faq .faq__toggle::before,
.faq .faq__toggle::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: #fff;
  border-radius: 1px;
}
.faq .faq__toggle::before {
  width: 14px;
  height: 2px;
}
.faq .faq__toggle::after {
  width: 2px;
  height: 14px;
}
.faq .faq__item[open] .faq__toggle::after {
  opacity: 0;
}
.faq .faq__a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  background: #fff;
  border-top: 0;
  padding: 12px 14px;
}
.faq .faq__aicon {
  color: #1762a2;
  font-weight: bold;
  font-size: clamp(18px, 4vw, 23px);
}
.faq .faq__acontent {
  color: #1762a2;
  line-height: 1.9;
  font-size: clamp(13px, 4.2vw, 18px);
}
.faq .faq__item--highlight[open] .faq__q {
  background: #8bb0d0;
}
@media (max-width: 480px) {
  .faq .faq__q {
    padding: 10px 12px;
  }
  .faq .faq__a {
    padding: 10px 12px;
  }
}

/***** company *****/
.company {
  padding: clamp(36px, 7vw, 64px) 16px 70px;
}
@media (max-width: 480px) {
  .company {
    padding: 60px 20px;
  }
}
.company .company__container {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.company .company__title {
  color: #1762a2;
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 33px);
  margin: 0 0 clamp(16px, 4vw, 24px);
}
.company .company__table {
  font-size: clamp(19px, 3.6vw, 24px);
  text-align: left;
  margin: 0 auto clamp(20px, 4vw, 60px);
  display: grid;
  gap: 10px;
  max-width: 700px;
}
@media (max-width: 480px) {
  .company .company__table {
    font-size: 14px;
  }
}
.company .company__table > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 60px;
  padding: 10px 0;
}
@media (max-width: 480px) {
  .company .company__table > div {
    grid-template-columns: 90px 1fr;
    gap: 10px;
  }
}
.company .company__table dt {
  color: #1762a2;
  font-weight: 700;
  text-align: right;
}
.company .company__table dd {
  margin: 0;
  color: #2b3b50;
  text-align: left;
}
.company .company__brand img {
  max-width: 120px;
  margin: 0 auto;
}
.company .company__copy {
  margin: 6px 0 0 0;
  padding-top: 8px;
  border-top: 1px solid #e4ecf5;
  color: #8fa1b3;
  font-size: 11px;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
@media (max-width: 420px) {
  .company .company__row dt {
    text-align: left;
  }
}

.compare .btn {
  font-size: 16px;
}

.company__copy {
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#1762a2), to(#07949c));
  background: linear-gradient(to right, #1762a2, #07949c);
  padding: 8px;
  color: #fff;
  font-size: clamp(9px, 2vw, 14px);
  font-weight: bold;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

/***** pc/spの表示・非表示 *****/
.display__sp {
  display: none;
}

.display__pc {
  display: block;
}

@media (max-width: 860px) {
  .display__sp {
    display: block;
  }
  .display__pc {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */