@charset "utf-8";
/* ===========================================
  
  リセットCSS
  
=========================================== */
body {
  margin: 0;
  padding: 0;
}
body * {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  list-style: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #1a2d51;
  font-weight: normal;
  text-decoration: none;
  line-height: 1.6;
  line-break: strict;
  font-family: "Noto Sans JP", "Quicksand", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt";
}

/* ===========================================
  
  共通設定
  PCレスポンシブ対応 (800px以上)

=========================================== */
@media (min-width: 801px) {
  main {
    margin-top: 104px;
  }
  body {
    min-width: 1120px;
    overflow-x: auto;
  }
  .sp-only {
    display: none;
  }

  /* Navigation Header */
  .g-header {
    height: 104px;
    background: white;
    border-bottom: 1px solid #d1d5db;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }

  .g-header-content {
    width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
  }

  .g-header-logo {
    display: flex;
    align-items: center;
  }

  a:hover {
    opacity: 0.8;
  }

  .g-header-logo__image {
    height: 63px;
  }

  .g-header-contact-btn {
    background: #1a2d51;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 32px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    display: inline-block;
  }

  /* breadcrumb */
  .g-breadcrumb {
    padding: 12px 0;
    font-size: 14px;
  }
  .g-breadcrumb-container {
    width: 1120px;
    margin: 0 auto;
  }

  .g-breadcrumb a {
    color: #666;
  }

  .g-breadcrumb i.fas.fa-chevron-right {
    width: 6px;
    height: 10px;
    font-size: 10px;
    margin: 0 16px;
    color: #666;
    transform: translateY(-2px);
  }

  .g-breadcrumb span {
    color: #666;
    font-weight: bold;
  }

  /* ブログ */
  .g-blog {
    padding: 80px 0 130px;
    width: 100%;
  }

  .g-blog-container {
    width: 100%;
    width: 1120px;
    margin: 0 auto;
  }

  .g-blog__title {
    text-align: center;
    color: #1a2d51;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .g-blog__icon {
    width: 77px;
    height: 68px;
  }

  .g-blog__subtitle {
    font-size: 24px;
    color: #1a2d51;
  }

  .g-blog__hd {
    font-size: 40px;
    color: #1a2d51;
    line-height: 1;
  }

  .g-blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }

  .g-blog__image {
    img {
    width: 332px;
    height: 253px;
    border-radius: 30px;
    }
  }

  .g-blog__date {
    font-size: 14px;
    color: #6a6a6a;
    margin: 4px 0;
  }

  .g-blog_text {
    font-size: 18px;
    color: #1a2d51;
    line-height: 1.44;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 332px;
  }

  /* More Button */
  .g-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 350px;
    height: 60px;
    margin: 40px auto;
    background: #1a2d51;
    text-align: center;
    border-radius: 30px;
    font-weight: bold;
    padding: 0 30px;
    color: #fff;
    font-feature-settings: normal;
  }

  .g-more-btn i {
    position: absolute;
    right: 30px;
    width: 6px;
    height: 10px;
    font-size: 10px;
    color: #fff;
  }

  /* footer */
  .g-footer {
    color: #333;
    text-align: center;
    padding: 40px 0;
  }

  .g-footer-container {
    min-width: 1120px;
    margin: 0 auto;
  }

  .g-footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }

  .g-footer__link {
    color: #333;
    font-size: 14px;
    font-weight: 400;
  }

  .g-footer__image {
    height: 63px;
    margin-top: 60px;
    margin-bottom: 20px;
  }

  .g-footer-copyright {
    margin-top: 20px;
    font-size: 12px;
  }
}

/* ===========================================
  SPレスポンシブ対応 (800px以下)
=========================================== */
@media (max-width: 800px) {
  :root {
    font-size: 16px; /* 1rem = 16px */
  }
  
  /* 横スクロールバーの色設定 */
  ::-webkit-scrollbar {
    height: 2px;
    width: 4px;
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #1a2d51;
    border-radius: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background-color: #f1f1f1;
  }
  
  .pc-only {
    display: none!important;
  }

  main {
    margin-top: 3.625625rem;
  }

  .g-header {
    background: white;
    border-bottom: 1px solid #d1d5db;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }

  .g-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0.75rem 1rem;
  }

  .g-header-logo__image {
    height: 2.09375rem;
  }

  .g-header-hamburger {
    width: 1.5rem;
    height: 1.5rem;
  }

  .g-header-contact-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
    text-align: center;
    padding: 16px 24px;
    background: #1a2d51;
    color: white;
  }

  /* パンくず */
  .g-breadcrumb {
    background-color: #f3f4f6;
  }
  .g-breadcrumb-container {
    display: flex;
    align-items: center;
    overflow-x: scroll;
    padding: 0.6rem 0 0.5rem 1rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
    list-style-type: none;
    font-size: 0.75rem;
    i {
      flex-shrink: 0;
      margin: 0 0.6rem;
      display: inline-block;
      content: "";
      height: 0.5rem;
      color: #666;
    }
    a {
      color: #666;
      text-decoration: none;
    }
    span {
      color: #666;
      font-weight: bold;
    }
  }
/* Global More Button */
  .g-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 2.9375rem;
    background: #1a2d51;
    color: white;
    text-align: center;
    border-radius: 47px;
    font-weight: bold;
    font-size: 0.875rem;
    letter-spacing: 0.2ex;
  }

  .g-more-btn i {
    position: absolute;
    right: 30px;
    width: 6px;
    height: 10px;
    font-size: 10px;
    color: #fff;
  }

  /* ブログ */
  .g-blog {
    padding: 4rem 0;
    .g-more-btn {
      margin: 0 1rem;
    }
  }

  .g-blog__title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    text-align: center;
    flex-wrap: wrap;
    color: #1a2d51;
    flex-direction: column;
  }

  .g-blog__icon {
    margin-bottom: 0.5rem;
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
  }

  .g-blog__subtitle {
    font-size: 0.875rem;
  }

  .g-blog__hd {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.1em;
  }

  .g-blog__grid {
    display: flex;
    gap: 1rem;
    padding: 0 1rem 1rem;
    margin-bottom: 1.5rem;
    overflow-x: scroll;
  }

  .g-blog__image {
    img {
      width: 14.375rem;
      height: 10.9375rem;
      border-radius: 30px;
    }
  }

  .g-blog__date {
    font-size: 0.75rem;
    color: #6a6a6a;
    margin: 0.3125rem 0;
    text-align: left;
  }

  .g-blog_text {
    width: 14.375rem;
    font-size: 0.875rem;
    color: #1a2d51;
    line-height: 1.44;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* footer */
  .g-footer {
    color: #333;
    text-align: center;
    padding: 2rem 0 5rem;
  }
  
  .g-footer-container {
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .g-footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.9375rem 0.75rem;
    margin-bottom: 2.5rem;
  }
  
  .g-footer__link {
    color: #333;
    font-size: 0.875rem;
    font-weight: 400;
  }
  
  .g-footer__image {
    height: 2.8125rem;
  }
  
  .g-footer-copyright {
    margin-top: 2.625em;
    font-size: 0.625rem;
  }
}