@charset "UTF-8";
/* ===============================
   共通スタイル
================================*/
body {
  font-family: "Noto Sans CJK JP", sans-serif;
  color: #000;
  line-height: 1.6;
  background: #fff;
}

h1, h2, h3, h4, h5, h6, dl, p {
  margin: 0;
}

ul, li, dd, figure {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

object,
img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.pc-none {
  display: none !important;
}

.sp-none {
  display: block !important;
}

@media screen and (max-width: 896px) {
  .pc-none {
    display: block !important;
  }
  .sp-none {
    display: none !important;
  }
}
/* ===============================
   ヘッダー固定（PCベース）
================================*/
.header {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  height: 70px;
  background: #fff;
  border-bottom: 4px solid #4169BB;
  z-index: 1000;
}
.header .header-inner {
  max-width: 1240px;
  width: 100%;
  height: 70px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6.6666666667vw;
  box-sizing: border-box;
}
.header .logo img {
  min-width: 180px;
  width: 100%;
  height: auto;
  display: block;
}
.header .nav {
  width: 100%;
  height: 100%;
}
.header .nav .nav__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header .nav .nav__list a {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 300;
  color: #000;
  list-style: none;
  flex-wrap: wrap;
  text-decoration: none;
}
.header .nav .nav__list a:hover {
  color: #4169BB;
}
.header .nav .nav__list .download {
  position: relative;
  display: inline-block;
  max-width: 300px;
  width: 100%;
  height: 100%;
  list-style: none;
}
.header .nav .nav__list .download__label {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 10px 16px;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
  box-sizing: border-box;
  background-color: #4169BB;
}
.header .nav .nav__list .download__label::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 9px;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  background: url("../img/icon_triangle.svg");
}
.header .nav .nav__list .download__label:hover {
  transition: 0.5s;
  opacity: 0.7;
}
.header .nav .nav__list .download__list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 300px;
  background: #fff;
  border: 1px solid #4169BB;
  list-style: none;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 10;
  box-sizing: border-box;
}
.header .nav .nav__list .download__list li a {
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 300;
  color: #000;
  text-decoration: none;
  padding: 18px 44px 18px 20px;
}
.header .nav .nav__list .download__list li a::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background-image: url("../img/icon_download.svg");
}
.header .nav .nav__list .download__list li a:hover {
  color: #4169bb;
  background: #f0f8ff;
  text-decoration: underline;
}
@media screen and (max-width: 896px) {
  .header .nav .nav__list .download__list li a:hover {
    color: #000;
    background: none;
    text-decoration: none;
  }
}
.header .nav .nav__list .download:hover .download__list {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.header .nav .nav__list .hamburger {
  display: none;
}

/* ============================================================
   SP レイアウト（オーバーレイモーダル）
============================================================ */
@media screen and (max-width: 896px) {
  .header {
    /* ----- オーバーレイ本体 ----- */
  }
  .header .header-inner {
    padding: 0 0 0 25px;
  }
  .header .logo img {
    width: 200px;
    height: 33px;
  }
  .header .hamburger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: #4169BB;
    cursor: pointer;
    z-index: 2001;
    box-sizing: border-box;
  }
  .header .hamburger span {
    position: absolute;
    left: 50%;
    width: 40px;
    height: 3px;
    background: #fff;
    transform: translateX(-50%);
    transition: transform 0.35s ease, top 0.35s ease, opacity 0.2s ease, bottom 0.35s ease;
    border-radius: 3px;
  }
  .header .hamburger span:nth-of-type(1) {
    top: 22px;
  }
  .header .hamburger span:nth-of-type(2) {
    top: 34px;
  }
  .header .hamburger span:nth-of-type(3) {
    top: 46px;
  }
  .header .hamburger.active span:nth-of-type(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .header .hamburger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .header .hamburger.active span:nth-of-type(3) {
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .header .nav, .header .nav__list {
    display: none;
  }
  .header.is-open .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    z-index: 2000;
    background: #fff;
    opacity: 0.95;
    animation: slideFadeDown 0.28s ease forwards;
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 0;
    overflow-y: auto;
  }
  .header.is-open .nav .nav__list {
    display: block;
    list-style: none;
    margin: 0;
    padding: 40px 20px 0;
  }
  .header.is-open .nav .nav__list > li:not(.download) {
    display: block;
  }
  .header.is-open .nav .nav__list > li:not(.download) a {
    display: block;
    padding: 15px 24px;
    text-decoration: none;
    color: #0a0a0a;
    font-weight: 400;
    font-size: 22px;
  }
  .header.is-open .nav .nav__list > li:not(.download) a:nth-child(1) {
    padding: 0 24px 15px;
  }
  .header.is-open .nav .nav__list > li.download {
    display: block;
    height: auto;
    margin-top: 20px;
  }
  .header.is-open .nav .download {
    max-width: 100%;
    width: 100%;
  }
  .header.is-open .nav .download__label {
    display: block;
    height: auto;
    padding: 16px 20px;
    margin: 0;
    background: #4169BB;
    color: #fff;
    border-radius: 0;
    cursor: default;
    font-weight: 700;
    font-size: 26px;
    letter-spacing: 0.02em;
    text-align: left;
  }
  .header.is-open .nav .download__list {
    position: static;
    width: 100%;
    border: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    margin: 0;
    padding: 60px 40px;
    background: #E7EEFB;
  }
  .header.is-open .nav .download__list li + li {
    margin-top: 16px;
  }
  .header.is-open .nav .download__list a {
    display: block;
    padding: 0;
    text-decoration: none;
    color: #0a0a0a;
    font-size: 26px;
    font-weight: 500;
  }
  .header.is-open .nav .divider {
    display: none;
  }
  .header .nav .nav__list .download__list li a {
    padding: 0;
    font-size: 26px;
  }
  .header .nav .nav__list .download__label::after {
    background: none;
  }
  .header .nav .nav__list .download__label:hover {
    transition: 0;
    opacity: 1;
  }
  .header .nav .nav__list .download__list li a::after {
    right: 0;
  }
  /* ====== 開く：上から下へフェードイン ====== */
  @keyframes slideFadeDown {
    0% {
      opacity: 0;
      transform: translateY(-12px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  /* ====== 閉じる：下から上へフェードアウト ====== */
  @keyframes slideFadeUp {
    0% {
      opacity: 1;
      transform: translateY(0);
    }
    100% {
      opacity: 0;
      transform: translateY(-12px);
    }
  }
  /* is-open 中のオーバーレイ本体（開くとき用） */
  .header.is-open .nav {
    animation: slideFadeDown 0.28s ease forwards;
    -webkit-overflow-scrolling: touch;
    touch-action: auto;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    padding-bottom: 20px;
  }
  .header.is-open .nav__list::after {
    content: "";
    display: block;
    height: 70px;
  }
  /* 閉じるときのクラスは JS が付ける */
  .header.is-closing .nav {
    animation: slideFadeUp 0.24s ease forwards;
  }
}
@media screen and (max-width: 700px) {
  .header.is-open .nav .nav__list > li:not(.download) a {
    font-size: 18px;
  }
  .header.is-open .nav .download__label {
    font-size: 18px;
  }
  .header.is-open .nav .download__list {
    padding: 30px 20px;
  }
  .header.is-open .nav .download__list a {
    font-size: 22px;
  }
  .header .nav .nav__list .download__list li a {
    font-size: 18px;
  }
}
body.no-scroll {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

/* ===============================
   メインビジュアル（動画）
================================*/
.mainvisual {
  margin-top: 70px;
  /* スクリーンリーダー専用の非表示クラス */
}
.mainvisual video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mainvisual .visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.mainvisual .mv-lead {
  margin-top: 80px;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  color: #4169BB;
}
@media screen and (max-width: 896px) {
  .mainvisual .mv-lead {
    font-size: 20px;
    margin-top: 40px;
  }
}
.mainvisual .unker-link {
  display: flex;
  margin-top: 80px;
}
.mainvisual .unker-link .unker-link_btn {
  position: relative;
  width: 400px;
  height: 100px;
  padding: 24px 0 46px;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  border: 1px solid #4169BB;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}
.mainvisual .unker-link .unker-link_btn:nth-child(n+2) {
  border-left: none;
}
.mainvisual .unker-link .unker-link_btn::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  background-image: url("../img/icon_arrow_down.svg");
}
.mainvisual .unker-link .unker-link_btn:hover {
  background: #4169BB;
  color: #FFF;
  transition: all 0.5s;
}
.mainvisual .unker-link .unker-link_btn:hover::after {
  filter: brightness(0) invert(1);
  transition: all 0.5s;
}

@media screen and (max-width: 896px) {
  .mainvisual {
    height: auto;
  }
  .mainvisual .unker-link {
    flex-direction: column;
    margin-top: 50px;
  }
  .mainvisual .unker-link .unker-link_btn {
    display: block;
    max-width: 100%;
    width: 100%;
    font-size: 20px;
    padding: 32px 0;
  }
  .mainvisual .unker-link .unker-link_btn:nth-child(n+2) {
    border-left: 1px solid #4169BB;
    border-top: none;
  }
  .mainvisual .unker-link .unker-link_btn::after {
    width: 28px;
    height: 28px;
    top: 50%;
    left: auto;
    bottom: 0;
    right: 23px;
    transform: translateY(-50%);
    background-image: url("../img/icon_arrow_down.svg");
  }
}
/* ===============================
   各セクション
================================*/
section {
  max-width: 100%;
  margin: 100px auto;
  /* 内部リンク用 */
  /* 外部リンク用 */
}
section h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  padding: 31px calc((100% - 1200px) / 2);
  color: #fff;
  background-image: linear-gradient(90deg, rgb(65, 105, 187) 70%, rgb(64, 156, 167));
}
section h3 {
  position: relative;
  margin-top: 96px;
  padding: 0 0 6px 20px;
  font-size: 30px;
  font-weight: 700;
  color: #4169BB;
}
section h3 + p {
  margin-top: 66px;
  font-weight: 400;
}
section h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 70px solid #E7EEFB;
  border-bottom: 70px solid transparent;
  z-index: -1;
}
section h4 {
  margin-top: 40px;
  font-size: 22px;
  color: #4169BB;
}
section h5 {
  margin-top: 20px;
  padding-left: 16px;
  font-size: 22px;
  font-weight: 700;
  color: #4169BB;
  border-left: 4px solid #4169BB;
}
section h5 + p {
  margin-top: 20px;
}
section .inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
section p {
  margin-bottom: 20px;
}
section p + h5,
section div + h5 {
  margin-top: 64px;
}
section .lead {
  margin-top: 40px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
section .lead.align-left {
  text-align: left;
}
section .lead-text {
  text-align: left;
}
section .btn-lead {
  margin-top: 30px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
section .btn-lead.align-left {
  text-align: left;
}
section .btn-lead span {
  margin: 0 5px;
  padding: 0 5px;
  font-size: 24px;
  color: #4169BB;
  background: #E7EEFB;
}
section .btn {
  position: relative;
  display: block;
  max-width: 500px;
  margin: 30px auto 0;
  padding: 26px 0;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  border-radius: 40px;
  background-image: linear-gradient(90deg, rgb(65, 105, 187) 50%, rgb(64, 156, 167));
  text-align: center;
  text-decoration: none;
}
section .btn:hover {
  transition: 0.5s;
  opacity: 0.7;
}
section .btn.btn--anchor::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  background-image: url("../img/icon_arrow_right.svg");
}
section .btn.btn--external::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  background-image: url("../img/icon_external-circle.svg");
}
section .tax-block {
  margin-top: 40px;
}
section .tax-block .tax-wrap {
  display: block;
  margin: 0 auto;
  max-width: 1000px;
}
section .tax-block .tax-wrap dl {
  display: flex;
  gap: 0 20px;
  margin-top: 20px;
  margin-bottom: 0;
}
section .tax-block .tax-wrap dl .tax-title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  background: #4169BB;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}
section .tax-block .tax-wrap dl .tax-lead {
  font-size: 20px;
  font-weight: 500;
}
section .tax-block .tax-wrap dl .tax-lead span {
  font-size: 16px;
  font-weight: 400;
}
section .industry {
  max-width: 1000px;
  margin: 30px auto 0;
  padding: 24px;
  background: #E7EEFB;
  box-sizing: border-box;
}
section .industry ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 70px;
  max-width: 771px;
  height: auto;
  margin: 0 auto;
}
section .industry ul li {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 2.4;
}
section .industry ul li:nth-child(5) {
  width: 140px;
}
section .industry ul li:nth-child(6) {
  width: 180px;
}

@media screen and (max-width: 1240px) {
  h2 {
    padding-left: 20px;
  }
}
@media screen and (max-width: 896px) {
  section {
    margin: 80px auto;
  }
  section h2 {
    font-size: 22px;
    padding: 24px 0 24px 20px;
  }
  section h3 {
    margin-top: 71px;
    padding: 0 0 14px 20px;
    font-size: 20px;
  }
  section h3 + p {
    margin-top: 26px;
  }
  section h3::before {
    top: -14px;
    border-left: 60px solid #E7EEFB;
    border-bottom: 60px solid transparent;
  }
  section h4 {
    font-size: 20px;
  }
  section h4 + .btn-lead {
    margin-top: 20px;
    margin-bottom: 0;
  }
  section h5 {
    font-size: 18px;
  }
  section h5 + p {
    margin-top: 32px;
  }
  section .inner {
    padding: 0 10px;
  }
  section p {
    font-size: 16px;
  }
  section p + h5,
  section div + h5 {
    margin-top: 50px;
  }
  section .map {
    margin-top: 40px;
  }
  section .map img {
    text-align: center;
  }
  section .map-unker-link {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
  }
  section .map-unker-link .unker-link_btn {
    position: relative;
    width: 50%;
    padding: 32px 0;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    color: #000;
    border: 1px solid #4169BB;
    text-decoration: none;
    border-collapse: collapse;
    box-sizing: border-box;
  }
  section .map-unker-link .unker-link_btn:nth-child(2n) {
    border-left: none;
  }
  section .map-unker-link .unker-link_btn:nth-child(n+3) {
    border-top: none;
  }
  section .map-unker-link .unker-link_btn::after {
    content: "";
    position: absolute;
    width: 31px;
    height: 31px;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background-image: url("../img/icon_arrow_right-blue.svg");
  }
  section .map + .btn-lead {
    margin: 60px 0 40px;
  }
  section .lead {
    font-size: 18px;
    margin-top: 30px;
    text-align: left;
  }
  section .btn-lead {
    font-size: 18px;
  }
  section .btn-lead span {
    font-size: 20px;
  }
  section .btn {
    max-width: 580px;
    margin: 20px auto 0;
    font-size: 24px;
  }
  section .btn + h4 {
    margin-top: 40px;
  }
  section .tax-block .lead {
    margin-bottom: 0;
    text-align: center;
  }
  section .tax-block .tax-wrap dl {
    flex-wrap: wrap;
    margin-top: 10px;
  }
  section .tax-block .tax-wrap dl .tax-title {
    width: 100%;
    font-size: 18px;
    padding: 6px 0;
  }
  section .tax-block .tax-wrap dl .tax-lead {
    margin-top: 10px;
    font-size: 18px;
  }
  section .industry {
    padding: 40px 34px;
  }
  section .industry ul {
    gap: 10px 40px;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  section .industry ul li {
    width: 100%;
    font-size: 16px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 700px) {
  section .map-unker-link .unker-link_btn {
    font-size: 14px;
    line-height: 20px;
    box-sizing: border-box;
  }
  section .map-unker-link .unker-link_btn:nth-child(1) {
    padding: 32px 30px 32px 5px;
  }
  section .map-unker-link .unker-link_btn::after {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
  }
  section .btn {
    font-size: 16px;
    padding-right: 35px;
    padding-left: 35px;
  }
  section .btn.btn--anchor::after,
  section .btn.btn--external::after {
    width: 20px;
    height: 20px;
    right: 10px;
    background-size: 20px 20px;
  }
}
/* ===============================
   固定ボタン
================================*/
/* お問い合わせ */
.btn-contact {
  position: fixed;
  right: 0;
  top: 40%;
  transform: translateY(-50%);
  background-image: linear-gradient(180deg, rgb(65, 105, 187) 50%, rgb(64, 156, 167));
  color: #fff;
  padding: 10px 10px;
  border-radius: 10px 0 0 10px;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  writing-mode: vertical-rl;
  padding: 50px 30px;
  font-size: 18px;
  line-height: 20px;
  height: 220px;
  box-sizing: border-box;
}
.btn-contact.show {
  opacity: 1;
  pointer-events: all;
}
.btn-contact:hover {
  transition: 0.5s;
  opacity: 0.7;
}
@media screen and (max-width: 896px) {
  .btn-contact {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    height: 80px;
    border-radius: 0;
    text-align: center;
    writing-mode: horizontal-tb;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 100;
  }
}

/* TOPボタン: 画像で見た目が完結するため最小スタイル */
.btn-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: auto;
  height: auto;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, bottom 0.18s ease;
}
.btn-top img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  transition: opacity 0.5s ease;
}
.btn-top .icon-default {
  opacity: 1;
}
.btn-top .icon-hover {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.btn-top:hover .icon-default {
  opacity: 0;
}
.btn-top:hover .icon-hover {
  opacity: 1;
}
.btn-top.show {
  opacity: 1;
  pointer-events: all;
}
.btn-top.stop {
  bottom: 120px; /* フッター手前で停止 */
}

@media screen and (max-width: 896px) {
  .btn-top {
    width: 60px;
    height: 60px;
    bottom: 120px;
  }
  .btn-top img {
    width: 60px;
    height: 60px;
  }
  .btn-top:active {
    opacity: 1;
  }
  .btn-top:active .icon-default {
    opacity: 1;
  }
  .btn-top:active .icon-hover {
    opacity: 0;
  }
  .btn-top.stop {
    bottom: 160px; /* フッター手前で停止 */
  }
}
@media screen and (max-width: 700px) {
  .btn-top.stop {
    bottom: 180px;
  }
}
/* 画像中央寄せユーティリティ */
.img-center {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  margin: 20px auto 0;
}

.img-lead {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 40px;
}

@media screen and (max-width: 896px) {
  .img-lead {
    margin-top: 30px;
    font-size: 18px;
  }
}
.highlight-box {
  max-width: 1000px;
  margin: 20px auto 0;
  padding: 24px 23px 24px 35px;
  background: #E7EEFB;
}

.highlight-box ul {
  margin: 0;
  padding-left: 18px;
}

.highlight-box ul li {
  color: #000;
  font-size: 16px;
  line-height: 30px;
  list-style: disc;
}

@media screen and (max-width: 896px) {
  .highlight-box {
    margin: 40px auto 0;
    padding: 30px 20px;
  }
  .highlight-box ul li {
    font-size: 16px;
    line-height: 1.6;
  }
  .highlight-box ul li + li {
    margin-top: 1em;
  }
}
.activity-list {
  max-width: 1000px;
  margin: 24px auto 0;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.activity-list .activity-item {
  display: flex;
  align-items: center;
}
.activity-list .activity-item:nth-child(1) {
  margin-bottom: 53px;
}
.activity-list .activity-item:nth-child(2) {
  margin-bottom: 58px;
}
.activity-list .activity-item figure {
  flex: 0 0 109px;
  width: 109px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.activity-list .activity-item figure img {
  width: 109px;
  display: block;
}
.activity-list .activity-item .activity-content {
  padding-left: 20px;
}
.activity-list .activity-item .activity-content .activity-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #1e66c1;
}
.activity-list .activity-item .activity-content ul {
  margin: 0;
  list-style: disc;
}
.activity-list .activity-item .activity-content ul li {
  margin: 0;
  color: #000;
  font-size: 16px;
  line-height: 30px;
  text-indent: -1em;
  padding-left: 1em;
}
.activity-list .activity-item .activity-content ul li span {
  color: #4169BB;
}

@media screen and (max-width: 896px) {
  .activity-list {
    margin: 40px auto 0;
  }
  .activity-list .activity-item {
    gap: 12px;
    align-items: center;
  }
  .activity-list .activity-item:nth-child(1), .activity-list .activity-item:nth-child(2) {
    margin-bottom: 60px;
  }
  .activity-list .activity-item figure {
    flex: 0 0 129px;
    width: 129px;
  }
  .activity-list .activity-item figure img {
    width: 129px;
  }
  .activity-list .activity-item .activity-content {
    padding-left: 16px;
  }
  .activity-list .activity-item .activity-content .activity-title {
    font-size: 18px;
  }
  .activity-list .activity-item .activity-content ul li {
    margin-top: 0.5em;
    line-height: 32px;
  }
}
@media screen and (max-width: 700px) {
  .activity-list .activity-item {
    gap: 20px;
    align-items: center;
    flex-direction: column;
  }
  .activity-list .activity-item:nth-child(1), .activity-list .activity-item:nth-child(2) {
    margin-bottom: 60px;
  }
  .activity-list .activity-item figure {
    flex: 0 0 100px;
    width: 100px;
    height: 100px;
  }
  .activity-list .activity-item figure img {
    width: 100px;
    height: 100px;
  }
  .activity-list .activity-item .activity-content {
    width: 100%;
    padding-left: 16px;
  }
  .activity-list .activity-item .activity-content ul li {
    margin-top: 0.5em;
    line-height: 24px;
  }
}
.merit-section {
  max-width: 1000px;
  margin: 60px auto 0;
  padding: 30px 37px 36px;
  border: 4px solid #4169BB;
  background: #E7EEFB;
  box-sizing: border-box;
}

.merit-title {
  font-size: 20px;
  font-weight: 700;
  color: #4169BB;
}

.merit-list {
  margin: 0;
}
.merit-list li {
  margin: 11px 0;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  list-style: none;
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.merit-list li span {
  margin-right: 0.5em;
}

@media screen and (max-width: 896px) {
  .merit-section {
    padding: 18px 20px;
  }
  .merit-title {
    font-size: 18px;
  }
  .merit-list li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
  }
  .merit-list li + li {
    margin-top: 1em;
  }
}
.info-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 32px;
}

.info-card {
  flex: 0 0 460px;
  box-sizing: border-box;
  border: 2px solid #4169BB;
  padding: 0;
  background: #fff;
}

.info-card dt {
  background: #4169BB;
  color: #fff;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  padding: 14px 20px;
  text-align: center;
}

.info-card dd {
  padding: 20px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 34px;
}

.info-card dd ul {
  margin: 12px 0 0 0;
  padding-left: 22px;
  list-style: disc;
  list-style-position: outside;
}

.info-card dd ul li {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #1f63b8;
  line-height: 34px;
  list-style-type: disc;
}
.info-card dd ul li span {
  padding-left: 1em;
  color: #000;
  font-weight: 400;
}

.info-card dd ul li:last-child {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  text-align: right;
  list-style: none;
  margin-top: 6px;
}

@media screen and (max-width: 896px) {
  .info-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
  }
  .info-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }
  .info-card dt {
    padding: 12px;
    font-size: 26px;
    line-height: 30px;
  }
  .info-card dd {
    padding: 26px 20px 16px;
    font-size: 24px;
  }
  .info-card dd ul {
    margin: 22px 0 0 0;
  }
  .info-card dd ul li {
    margin-bottom: 0;
    font-size: 24px;
    line-height: 40px;
  }
  .info-card dd ul li:last-child {
    font-size: 24px;
    margin-top: 1em;
  }
}
@media screen and (max-width: 896px) {
  .info-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
  }
  .info-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }
  .info-card dt {
    padding: 12px;
    font-size: 20px;
    line-height: 30px;
  }
  .info-card dd {
    padding: 26px 20px 16px;
    font-size: 16px;
  }
  .info-card dd ul {
    margin: 22px 0 0 0;
  }
  .info-card dd ul li {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 40px;
  }
  .info-card dd ul li:last-child {
    font-size: 16px;
    margin-top: 1em;
  }
}
.image-links {
  margin: 100px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 46px;
  text-align: center;
}
.image-links figure {
  flex: 1 1 calc(33.333% - 2rem);
  max-width: 370px;
  margin: 0;
}
.image-links figure img {
  width: 100%;
  height: auto;
  display: block;
}
.image-links figure figcaption {
  margin-top: 13px;
  font-size: 18px;
  font-weight: 700;
}
.image-links figure figcaption a {
  position: relative;
  display: inline-block;
  color: #0078d7;
  text-decoration: none;
  transition: color 0.2s ease;
  text-decoration: underline;
}
.image-links figure figcaption a::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  right: -29px;
  transform: translateY(-50%);
  background-image: url("../img/icon_external.svg");
}

/* スマホでは1列表示 */
@media screen and (max-width: 896px) {
  .image-links {
    margin: 80px auto 0;
  }
  .image-links figure {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
/* ===============================
   税制表（scheme table）
================================*/
.scheme-table-wrap {
  max-width: 1000px;
  margin: 24px auto 60px;
  padding: 0 16px;
  overflow-x: auto; /* 小さい画面は横スクロールで崩れを防ぐ */
}

@media screen and (max-width: 896px) {
  .scheme-table-wrap {
    padding: 0;
  }
}
.scheme-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
  font-size: 15px;
}

.scheme-table th,
.scheme-table td {
  border: 1px solid #cfdff2;
  padding: 18px 20px;
  vertical-align: middle;
}

.scheme-table thead th {
  background: #4169BB;
  color: #fff;
  font-weight: 700;
  text-align: left;
}

.scheme-table thead th:nth-child(1) {
  width: 200px;
}

.scheme-table thead th:nth-child(2) {
  width: 240px;
}

.scheme-table thead th:nth-child(3) {
  width: 560px;
}

.scheme-table tbody td {
  background: #fff;
  color: #222;
}

/* 左側の縦セル（カテゴリ列） */
.scheme-table .category-cell {
  background: #E7EEFB; /* 淡い水色 */
  text-align: center;
  font-weight: 700;
  width: 160px;
  position: relative;
  vertical-align: middle;
}

.scheme-table .category-cell .note-box {
  display: inline-block;
  width: 140px;
  background: #fff;
  padding: 10px;
  margin-top: 12px;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04) inset;
  box-sizing: border-box;
}

/* セル内の番号や強調（① ② ③） */
.scheme-table .bullet {
  display: inline-block;
  font-weight: 800;
  margin-right: 8px;
}

/* レスポンシブ: 小画面ではテーブルを横スクロールさせ、読みやすくする */
@media screen and (max-width: 896px) {
  .scheme-table {
    min-width: 720px; /* 多少小さくしてスクロール幅を縮める */
    font-size: 14px;
  }
  .scheme-table .category-cell {
    width: 140px;
    padding: 14px 8px;
  }
}
/* ===============================
   スタッフ・コメントブロック
   左右交互、吹き出し風（線で枠上をかぶせ）
================================= */
.staff-block {
  max-width: 1200px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding: 0 16px;
  box-sizing: border-box;
}

.comment {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1000px;
  /* 1段目：左寄せ */
  /* 2段目：右寄せ */
  /* 3段目：左寄せ */
}
.comment:nth-child(1) {
  flex-direction: row;
}
.comment:nth-child(1) .comment-profile {
  order: 1;
  flex: 0 0 auto;
}
.comment:nth-child(1) .comment-bubble {
  order: 2;
  flex: 1 1 auto;
}
.comment:nth-child(1) img {
  width: 125px;
  height: auto;
}
@media screen and (width: 897px) {
  .comment:nth-child(1) img {
    width: 62.5px;
  }
}
.comment:nth-child(2) {
  flex-direction: row-reverse;
}
.comment:nth-child(2) .comment-profile {
  flex: 0 0 auto;
}
.comment:nth-child(2) .comment-bubble {
  flex: 1 1 auto;
}
.comment:nth-child(2) img {
  width: 130px;
  height: auto;
}
@media screen and (width: 897px) {
  .comment:nth-child(2) img {
    width: 65px;
  }
}
.comment:nth-child(3) {
  flex-direction: row;
}
.comment:nth-child(3) .comment-profile {
  order: 1;
  flex: 0 0 auto;
}
.comment:nth-child(3) .comment-bubble {
  order: 2;
  flex: 1 1 auto;
}
.comment:nth-child(3) img {
  width: 120px;
  height: auto;
}
@media screen and (width: 897px) {
  .comment:nth-child(3) img {
    width: 60px;
  }
}

/* プロフィール（figure + img + figcaption/p） */
.comment-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.comment-profile img {
  width: 125px;
  height: auto;
  display: block;
}

.comment-name {
  font-size: 16px;
  font-weight: 600;
  color: #4169BB;
  text-align: center;
  margin: 0;
}

.comment-bubble {
  padding: 25px 45px 31px;
  background: #fff;
  border: 3px solid #4169BB;
  border-radius: 12px;
  position: relative;
}
.comment-bubble p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  margin: 0;
  color: #000;
  font-size: 16px;
  line-height: 1.8;
}
.comment-bubble.left::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 50%;
  width: 2px;
  height: 30px;
  background: #4169BB;
  transform: translateY(-50%) rotate(69deg);
}
.comment-bubble.right::before {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  width: 2px;
  height: 30px;
  background: #4169BB;
  transform: translateY(-50%) rotate(69deg);
}

@media screen and (max-width: 896px) {
  .staff-block {
    gap: 60px;
    margin: 32px auto 0;
    padding: 0;
  }
  .comment {
    gap: 32px;
  }
  .comment-profile img {
    width: 64px;
    height: 64px;
  }
  .comment-name {
    font-size: 16px;
  }
  .comment-bubble {
    padding: 16px;
  }
}
@media screen and (max-width: 700px) {
  .comment {
    gap: 15px;
  }
  .comment:nth-child(1) img {
    width: 62.5px;
  }
  .comment:nth-child(2) img {
    width: 65px;
  }
  .comment:nth-child(3) img {
    width: 60px;
  }
  .comment-name {
    font-size: 16px;
  }
  .comment-bubble {
    padding: 16px;
  }
}
.btn-small {
  position: relative;
  display: block;
  max-width: 320px;
  width: 100%;
  margin: 30px auto 0;
  padding: 26px 0;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  border-radius: 40px;
  background-image: linear-gradient(90deg, rgb(65, 105, 187) 50%, rgb(64, 156, 167));
  text-align: center;
  text-decoration: none;
}
.btn-small:hover {
  transition: 0.5s;
  opacity: 0.7;
}

.btn-small.btn--anchor::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background-image: url("../img/icon_arrow_right.svg");
}

.anchor-links-bottom {
  display: flex;
  gap: 20px;
  max-width: 1000px;
  margin: 80px auto 0;
}

@media screen and (max-width: 896px) {
  .anchor-links-bottom {
    flex-direction: column;
    gap: 40px;
    margin: 80px auto 0;
  }
  .btn-small {
    max-width: 580px;
    width: 100%;
    margin: 0 auto;
    font-size: 16px;
  }
}
/* ===============================
   フッター
================================*/
.footer {
  margin-top: 189px;
  text-align: center;
}
.footer img {
  width: 200px;
  height: auto;
}
.footer .footer-inner {
  background: #4169BB;
  color: #fff;
  text-align: center;
  margin-top: 16px;
  padding: 5px 0;
  position: relative;
}

@media screen and (max-width: 896px) {
  .footer {
    margin-top: 120px;
    padding-bottom: 83px;
  }
  .footer img {
    max-width: 320px;
    width: 45vw;
    height: auto;
  }
  .footer .footer-inner {
    margin-top: 0;
    font-size: 13px;
  }
}/*# sourceMappingURL=lp.css.map */