   @charset "utf-8";



  #lp_page{
    background: #fff url(../images/bkg-all.webp) no-repeat top center / cover;
    background-attachment: fixed;
  }
  #pagetop {
    opacity: 1;
    position: fixed;
    bottom: 20px;
    right: 20px;
    transition: opacity .5s;
    z-index: 2;
  }
  #pagetop a {
    background-color: rgba(51, 51, 51, .8);
    border-radius: 5px;
    color: #fff;
    display: block;
    font-size: 12px;
    line-height: 1.5em;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
  }
  .hero-image{
    position:relative;
    width:100%;
    text-align:center;
  }
  .hero-image_inner{
    width:100%;
    max-width:1140px;
    margin:auto;
  }
  .hero-image_inner img{
    width:100%;
    margin:auto;
  }

  .model-card-wrapper .model-card-list > li {
    justify-content: flex-start;
  }
  .section-block{
    width:100%;
    padding:0 0 100px 0;
    text-align:center;
  }
  .section-block .contents-inner{
    width:calc(100% - 30px);
    max-width:1140px;
    margin:auto;
  }
  .section-block section + section{
    margin-top:clamp(50px, 1.989rem + 5.68vw, 100px);
  }
  .section-subtitle {
    margin-top: 1em;
    margin-bottom: 0.5em;
    color: #fff;
    font-size: clamp(18px, 0.443rem + 3.41vw, 48px);
    font-weight: 700;
    text-align: center;
    border-radius: 1em;
    padding-top: 0.1em;
    padding-bottom: 0.1em;
    background:#001e60;
  }

  .other-title{
    font-size: clamp(16px, 0.545rem + 2.27vw, 36px);
    font-weight: 700;
    color:#001e60;
    margin-bottom:20px;
  }
  .other-link-list{
    display:grid;
    gap:40px;
    grid-template-columns: repeat(3,1fr);
  }
  .other-link-list li{
    border: 1px solid #ececec;
    box-shadow: 3.5px 3.5px 0 0 rgba(72, 72, 72, .1);
    transition: transform .2s;
    background:#fff;
  }
  .other-link-list li:hover{
    transform: translateY(-2px);
    box-shadow: 0 0 4px 0 rgb(0 162 230 / 70%);
    cursor: pointer;
  }
  .other-link-list a{
    display:block;
    background:#fff;
    padding:20px;
    display:flex;
    flex-direction: column;
    gap:20px;
  }
  .other-link-list a img{
    width:70%;
    margin:auto;
  }
  .other-link-list a .link-txt-block{
    display:flex;
    flex-direction: column;
    gap:10px;
  }
  .other-link-list a .link-ttl{
    font-size:clamp(14px 0.784rem + 0.45vw, 18px);
    font-weight:700;
    color:#001e60;
    line-height:1.2;
  }
  .other-link-list a .link-txt{
    font-size:clamp(12px, 0.659rem + 0.45vw, 16px);
    line-height:1.2;
  }
  @media screen and (max-width: 767px) {
    .other-link-list{
      gap:20px;
      grid-template-columns: repeat(1,1fr);
    }
    .other-link-list a img{
      width:30%;
    }
    .other-link-list a{
      padding:15px 10px;
      display:flex;
      flex-direction: row;
      gap:10px;
    }
    .other-link-list a .link-txt-block{
      width: calc(70% - 10px);
      text-align:left;
    }
  }