@charset "UTF-8";
:root {
  --a_bl: #2d2d2d;
  --a_ore: #ff6e01;
  --a_o_bg: #fff8f3;
  --a_gray: #f7f8f3;
  --a_navy: #053657;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

.wrapper {
  max-width: 2000px;
  overflow: hidden;
}

#pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

#pagetop img {
  width: auto;
}
@media print, screen and (max-width: 1399px) {
  #pagetop img {
    width: 40px;
  }
}

.header {
  position: fixed;
  width: 100%;
  z-index: 900;
  transition: 0.2s;
  margin-top: -8%;
  transition: margin-top 0.4s;
}

.header.show {
  margin-top: 0;
}

/* コンテンツセクション
------------------------------------------------------------------*/
.logo-section img {
  max-width: 400px;
}
@media print, screen and (max-width: 767px) {
  .logo-section img {
    max-width: 300px;
  }
}
@media screen and (max-width: 575px) {
  .logo-section img {
    max-width: 250px;
  }
}

.hero-section h1 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.topics-section h2 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 2em;
}
@media print, screen and (max-width: 767px) {
  .topics-section h2 {
    font-size: 2rem;
  }
}
.topics-section .topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media print, screen and (max-width: 767px) {
  .topics-section .topics-grid {
    grid-template-columns: 1fr;
  }
}
.topics-section .btn {
  font-size: 1.8rem;
  transition: all 0.3s;
  justify-content: flex-start;
  align-items: center;
}
.topics-section .btn i {
  margin-right: 1em;
}
@media print, screen and (max-width: 767px) {
  .topics-section .btn i {
    margin-right: 0.5em;
  }
}
.topics-section .btn:hover {
  background-color: var(--a_bl);
  color: #fff;
  border-color: var(--a_bl);
}
.topics-section .btn:hover i {
  color: #fff !important;
}

.network-section h2 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 2em;
}
@media print, screen and (max-width: 767px) {
  .network-section h2 {
    font-size: 2rem;
  }
}
.network-section img {
  max-width: 800px;
}
@media print, screen and (max-width: 1199px) {
  .network-section img {
    max-width: 700px;
  }
}
@media print, screen and (max-width: 991px) {
  .network-section img {
    max-width: 100%;
  }
}

.company-info h2 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 2em;
}
@media print, screen and (max-width: 767px) {
  .company-info h2 {
    font-size: 2rem;
  }
}
.company-info table th {
  width: 30%;
}
@media print, screen and (max-width: 767px) {
  .company-info table tr,
  .company-info table th,
  .company-info table td {
    display: block;
    width: 100%;
  }
  .company-info table th {
    border-bottom: none;
  }
  .company-info table td {
    border-top: none;
  }
}
.company-info table a {
  color: #0d6efd;
  text-decoration: none;
}
.company-info table a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 575px) {
  .company-info table span[data-action=call] {
    color: #0d6efd;
    cursor: pointer;
  }
}
.company-info table .contact-item {
  margin-bottom: 0.5em;
}
.company-info table .contact-item:last-child {
  margin-bottom: 0;
}
.company-info table .contact-item .contact-name {
  margin-right: 0.5em;
}
@media print, screen and (max-width: 767px) {
  .company-info table .contact-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 1em;
  }
  .company-info table .contact-item .contact-name {
    margin-right: 0;
    margin-bottom: 0.25em;
  }
  .company-info table .contact-item .contact-tel {
    font-weight: bold;
  }
}
.company-info table .ins-heading {
  font-weight: bold;
  margin-bottom: 0.3em;
}
.company-info table .ins-subheading {
  text-decoration: underline;
  margin-bottom: 0.3em;
}

.bottom-buttons .btn {
  font-weight: 600;
  transition: all 0.3s;
  font-size: 1.6rem;
  margin-bottom: 0.5em;
}
.bottom-buttons .btn:hover {
  background-color: var(--a_bl);
  color: #fff;
  border-color: var(--a_bl);
}

/* 個別印刷設定
------------------------------------------------------------------*/
@media print {
  @page {
    size: A4;
    margin: 15mm;
  }
  body {
    width: 100%; /* A4の幅に合わせる */
    max-width: 210mm; /* A4の幅に合わせる */
    zoom: 0.9;
    margin: 0 auto;
  }
  .container,
  .container-fluid {
    width: 100%; /* フルサイズ表示 */
    max-width: 210mm; /* A4の幅に合わせる */
  }
  /* 改ページをいれる場合 */
  section {
    page-break-before: always; /* 各セクションで改ページが行われるようにしています */
  }
  section + section.new-none:not(:root) {
    page-break-before: avoid; /* 特定のセクションでは改ページを入れない場合の指定 */
  }
  .new-page {
    page-break-before: always; /* 特定の場所で改ページを入れたいときの指定 */
  }
  header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }
  .wrapper {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  *::before,
  *::after {
    -webkit-print-color-adjust: exact !important;
    color-adjust: exact !important;
    background-image: block !important;
    box-shadow: none !important;
  }
}/*# sourceMappingURL=style.css.map */