@charset "UTF-8";
/* CSS Document */
 *{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    body{
      font-family:
      "Yu Gothic",
      "Hiragino Kaku Gothic ProN",
      sans-serif;
      color:#222;
      line-height:1.7;
      background:#fff;
    }

    a{
      text-decoration:none;
      color:inherit;
    }

    img{
      width:100%;
      display:block;
    }

    ul{
      list-style:none;
    }

    .container{
      width:min(1200px, 92%);
      margin:auto;
    }

    /* ======================
      HEADER
    ====================== */

    header{
      width:100%;
      background:#fff;
      border-bottom:1px solid #e5e5e5;
      position:sticky;
      top:0;
      z-index:100;
    }

    .header-inner{
  height:90px;
  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:0 clamp(20px,3vw,40px);
}

    .logo{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  line-height:1;
}

.logo img{
  width:190px;
  height:auto;
  display:block;
}

.logo span{
  display:block;
  font-size:12px;
  margin-top:8px;
  color:#444;
  letter-spacing:0;
  font-weight:700;
}

    .nav{
      display:flex;
      align-items:center;
      gap:38px;
    }

    .nav ul{
      display:flex;
      gap:34px;
    }

    .nav a{
      font-size:14px;
      font-weight:500;
    }

    .contact-btn{
      background:#0d2a5c;
      color:#fff;
      padding:14px 28px;
      font-size:14px;
      transition:.3s;
    }

    .contact-btn:hover{
      opacity:.8;
    }

    /* ======================
   HERO
====================== */

.hero{
  position:relative;
  height:650px;
  overflow:hidden;
  display:flex;
  align-items:center;
}

.slide01{
  background-image:url("../images/mv.png");
}

.slide02{
  background-image:url("../images/mv1.jpg");
}

.slide03{
  background-image:url("../images/mv2.jpg");
}

.hero-slider,
.hero-slider .slick-list,
.hero-slider .slick-track,
.hero-slide{
  height:100%;
}

.hero-slider{
  position:absolute;
  inset:0;
  z-index:0;
}

.hero-slide{
  background-size:cover;
  background-position:center right;
  background-repeat:no-repeat;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;

  background:linear-gradient(
    90deg,
    rgba(255,255,255,.95) 0%,
    rgba(255,255,255,.85) 20%,
    rgba(255,255,255,.25) 45%,
    rgba(255,255,255,0) 100%
  );
}

.hero-content{
  position:relative;
  z-index:2;
  width:min(1200px, 92%);
  margin:0 auto;

  padding-left:0;
}

/* 3dots */
.hero .slick-dots{
  position:absolute;
  bottom:28px;
  left:50%;
  transform:translateX(-50%);
  z-index:3;
}

/* label */

.hero-label{
  display:inline-block;

  background:#0c234d;
  color:#fff;

  font-size:14px;
  font-weight:700;

  padding:8px 22px;

  margin-bottom:24px;
}

/* title */

.hero h1{
  font-size:55px;
  line-height:1.3;

  color:#111;

  margin-bottom:30px;

  font-weight:700;
}

/* text */

.hero p{
  font-size:18px;
  line-height:2;

  color:#555;

  margin-bottom:40px;
}

/* button */

.hero-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  gap:24px;

  width:240px;
  height:60px;

  background:#102d63;
  color:#fff;

  font-size:15px;
  font-weight:700;

  transition:.3s;
}

.hero-btn:hover{
  opacity:.85;
}

.hero-btn span{
  font-size:18px;
}
/* ======================
   HERO responsive
====================== */

/* tablet */
@media(max-width:1024px){

  .hero{
    height:560px;
  }

  .hero-content{
    padding-left:30px;
  }

  .hero h1{
    font-size:48px;
  }

}

/* mobile */
@media(max-width:768px){

  .slide01{
    background-image:url("../images/mv-sp.png");
  }

  .slide02{
    background-image:url("../images/mv1-sp.jpg");
  }

  .slide03{
    background-image:url("../images/mv2-sp.jpg");
  }

  .hero{
    height:550px;
  }

  .hero-slide{
    background-size:98% auto;
    background-position:center top;
    background-repeat:no-repeat;
    background-color:#f5f7fa;
  }

  .hero::before{
    background:rgba(255,255,255,.72);
  }

  .hero-content{
    padding-left:0;
  }

  .hero-label{
    font-size:12px;
    padding:7px 18px;
  }

  .hero h1{
    font-size:34px;
    line-height:1.45;
    margin-bottom:24px;
  }

  .hero p{
    font-size:15px;
    line-height:2;
    margin-bottom:32px;
  }

  .hero-btn{
    width:220px;
    height:56px;
    font-size:14px;
  }

}

/* small mobile */
@media(max-width:480px){

  .hero{
    height:480px;
  }

  .hero h1{
    font-size:30px;
  }

  .hero p{
    font-size:14px;
  }

  .hero-btn{
    width:200px;
    height:52px;
  }

}

    /* ======================
      SECTION COMMON
    ====================== */

    section{
      padding:30px 0;
    }

    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      margin-bottom:40px;
    }

    .section-title{
      font-size:38px;
      font-weight:700;
      line-height:1.4;
    }

    .section-title span{
      display:block;
      font-size:13px;
      color:#777;
      letter-spacing:1px;
      margin-top:8px;
    }

    .more-link{
      font-size:14px;
      color:#102d63;
    }

    /* ======================
      NEWS
    ====================== */

  .news-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  border-top:1px solid #ddd;
  padding-top:22px;
}

.news-column{
  display:grid;
  gap:14px;
  align-content:start;
}

.news-item{
  display:grid;
  grid-template-columns:100px 78px 1fr;
  gap:16px;
  align-items:center;

  color:inherit;
  text-decoration:none;
}

.news-item:hover{
  opacity:.8;
}

.news-item p{
  margin:0;
  font-size:13px;
  line-height:1.7;
  color:#333;
}

.news-date{
  font-size:13px;
  color:#333;
}

.news-category{
  width:78px;
  background:#102d63;
  color:#fff;
  text-align:center;
  font-size:11px;
  line-height:1;
  padding:5px 0;
}

.news-category-light{
  background:#fff;
  color:#102d63;
  border:1px solid #102d63;
}

.news-page-item{
  scroll-margin-top:120px;
}

@media(max-width:768px){

  .news-list{
    grid-template-columns:1fr;
    gap:18px;
  }

  .news-item{
    grid-template-columns:90px 72px 1fr;
    gap:12px;
  }

}
    /* ======================
      BRAND
    ====================== */

    .brand-grid{
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:20px;
    }

    .brand-card{
      border:1px solid #ddd;
      height:130px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:#fff;
      transition:.3s;
    }

    .brand-card:hover{
      transform:translateY(-4px);
      box-shadow:0 10px 30px rgba(0,0,0,.08);
    }

    .brand-card img{
      width:65%;
      object-fit:contain;
    }
	/* ======================
   BRAND responsive
====================== */

/* tablet */
@media(max-width:1024px){

  .brand-grid{
    grid-template-columns:repeat(3,1fr);
    gap:16px;
  }

}

/* mobile */
@media(max-width:768px){

  .brand-grid{
    grid-template-columns:repeat(2,1fr);
    gap:14px;
  }

  .brand-card{
    height:110px;
    padding:16px;
  }

  .brand-card img{
    width:70%;
  }

}

/* small mobile */
@media(max-width:480px){

  .brand-grid{
    grid-template-columns:1fr;
  }

  .brand-card{
    height:100px;
  }

  .brand-card img{
    width:55%;
  }

}

    /* ======================
      ONLINE STORE
    ====================== */

    .store-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:20px;
    }

    .store-card{
      border:1px solid #ddd;
      background:#fff;
      padding:40px 20px;
      text-align:center;
      transition:.3s;
    }

    .store-card:hover{
      transform:translateY(-4px);
      box-shadow:0 10px 30px rgba(0,0,0,.08);
    }

    .store-card img{
      height:85px;
      object-fit:contain;
      margin-bottom:20px;
    }

    .store-card p{
      font-size:14px;
    }
/* ======================
   ONLINE STORE responsive
====================== */

/* tablet */
@media(max-width:1024px){

  .store-grid{
    grid-template-columns:repeat(3,1fr);
    gap:16px;
  }

}

/* mobile */
@media(max-width:768px){

  .store-grid{
    grid-template-columns:repeat(2,1fr);
    gap:14px;
  }

  .store-card{
    padding:30px 16px;
  }

  .store-card img{
    height:60px;
    margin-bottom:16px;
  }

  .store-card p{
    font-size:13px;
  }

}

/* small mobile */
@media(max-width:480px){

  .store-grid{
    grid-template-columns:1fr;
  }

  .store-card{
    padding:22px 16px;
  }

  .store-card img{
    height:32px;
  }

}
/* ======================
      OPEN SOON
    ====================== */

.store-card{
  position:relative;
}

.coming-badge{
  position:absolute;
  top:14px;
  right:14px;

  background:#0c234d;
  color:#fff;

  font-size:9px;
  font-weight:600;
  letter-spacing:.08em;

  padding:4px 10px;
  border-radius:20px;
}

.store-card.is-coming{
  opacity:.75;
  pointer-events:none;
}

@media(max-width:768px){

  .coming-badge{
    top:10px;
    right:10px;
    font-size:7px;
    padding:3px 8px;
  }

}

    /* ======================
      BUSINESS
    ====================== */

    .business-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  border:1px solid #e4e4e4;
}

.business-card{
  padding:28px 24px;
  background:#fff;
  text-align:center;
  transition:.3s;
  border-right:1px solid #e4e4e4;
}

.business-card:last-child{
  border-right:none;
}

.business-icon{
  width:55px;
  height:55px;
  margin:0 auto 18px;
}

.business-icon img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.business-card h3{
  font-size:15px;
  margin-bottom:12px;
  color:#102d63;
  font-weight:700;
}

.business-card p{
  font-size:12px;
  line-height:1.8;
  color:#555;
}
/* business responsive */

@media(max-width:1024px){

  .business-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){

  .business-grid{
    grid-template-columns:1fr;
  }

  .business-card{
    border-right:none;
    border-bottom:1px solid #e4e4e4;
    padding:36px 24px;
  }

  .business-card:last-child{
    border-bottom:none;
  }

}

   /* ======================
   CONCEPT MESSAGE
====================== */

.concept-section{
  position:relative;
  overflow:hidden;
  height:480px;

  background:
    linear-gradient(
      90deg,
      #eef4fb 0%,
      rgba(238,244,251,.98) 22%,
      rgba(238,244,251,.85) 36%,
      rgba(238,244,251,.55) 50%,
      rgba(238,244,251,.22) 66%,
      rgba(238,244,251,0) 82%
    ),
    url("../images/concept-bg2.png");

  background-repeat:no-repeat;
  background-size:100% auto;
  background-position:right center;
}

/* Tablet */
@media (max-width:1024px){

  .concept-section{
    height:420px;

    background-size:140% auto;
    background-position:center center;
  }

}
/* Mobile */
@media(max-width:768px){

  .concept-section{
    background:
      linear-gradient(
        180deg,
        rgba(238,244,251,.70) 0%,
        rgba(238,244,251,.68) 45%,
        rgba(238,244,251,.62) 100%
      ),
      url("../images/concept-bg2.png");

    background-size:cover;
    background-position:right top;
  }

}
/* 背景画像

.concept-bg{
transform:scale(1.03);
  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  object-fit:contain;
  object-position:right center;
}

.concept-overlay{
  background:linear-gradient(
    90deg,
    rgba(238,244,251,1) 0%,
    rgba(238,244,251,.95) 25%,
    rgba(238,244,251,.75) 45%,
    rgba(238,244,251,.35) 65%,
    rgba(238,244,251,.08) 85%,
    rgba(238,244,251,0) 100%
  );
} */ 

/* 中身 */

.concept-inner{
  position:relative;
  z-index:2;

  height:100%;

  display:flex;
  align-items:center;
}

.concept-content{
  max-width:620px;
}

/* タイトル */

.concept-content h2{
  font-size:32px;
  line-height:1.35;
  margin-bottom:16px;

  color:#111;
  font-weight:700;
}

/* テキスト */

.concept-subtitle{
  font-size:16px;
  font-weight:700;
  color:#111;
  margin-bottom:8px;
}

.concept-content h2{
  font-size:32px;
  line-height:1.35;
  margin-bottom:18px;
  color:#111;
  font-weight:700;
}

.concept-text{
  font-size:16px;
  line-height:2;
  color:#444;
  margin-bottom:28px;
}

/* ボタン */

.concept-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  gap:24px;

  width:220px;
  height:56px;

  background:#0c234d;
  color:#fff;

  font-size:14px;
  font-weight:700;
}

.concept-btn span{
  transition:.3s;
}

.concept-btn:hover span{
  transform:translateX(4px);
}

/* concept responsive */

@media(max-width:768px){

  .concept-section{
    height:auto;
    min-height:520px;
    padding:70px 0;
  }

  .concept-bg{
    object-fit:cover;
    object-position:center right;
    opacity:.55;
  }

  .concept-overlay{
    background:rgba(255,255,255,.58);
  }

  .concept-inner{
    height:auto;
    min-height:420px;
    display:flex;
    align-items:center;
  }

  .concept-content{
    max-width:100%;
  }

  .concept-content h2{
    font-size:32px;
    line-height:1.45;
  }

  .concept-content p{
    font-size:15px;
    line-height:2;
  }

}

@media(max-width:420px){

  .concept-section{
    min-height:500px;
  }

  .concept-bg{
    opacity:.62;
    object-position:center right;
  }

  .concept-overlay{
    background:rgba(255,255,255,.5);
  }

  .concept-content h2{
    font-size:24px;
  }

  .concept-content p{
    font-size:12px;
  }

}
/* ======================
   CTA BANNER
====================== */

.cta-inner{
  position:relative;

  width:92%;
  max-width:1200px;
  min-height:220px;
  margin:0 auto;

  padding:0 clamp(30px,6vw,90px);

  display:flex;
  align-items:center;
  justify-content:space-between;

  overflow:hidden;

  background-image:url("../images/cta-bg.png");
  background-repeat:no-repeat;
  background-size:60% auto;
  background-position:right;

  color:#fff;
}

.cta-inner::before{
  content:"";
  position:absolute;
  inset:0;

  background:linear-gradient(
    90deg,
    #0c234d 0%,
    #0c234d 38%,
    rgba(12,35,77,.92) 48%,
    rgba(12,35,77,.65) 62%,
    rgba(12,35,77,.32) 78%,
    rgba(12,35,77,0) 100%
  );
}

.cta-text,
.cta-btn{
  position:relative;
  z-index:2;
}

.cta-btn{
  display:inline-flex;
  align-items:center;
  gap:18px;

  height:64px;
  padding:0 38px;

  background:#0c234d;
  color:#fff;

  font-size:18px;
  font-weight:700;
}
/* ======================
   CTA responsive
====================== */

@media(max-width:768px){

  .cta-banner{
    padding-top:30px;
    padding-bottom:40px;
  }

  .cta-inner{
    min-height:180px;
    padding:30px 24px;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    gap:24px;

    background-size:cover;
    background-position:center;
  }

  .cta-inner::before{
    background:linear-gradient(
      90deg,
      rgba(12,35,77,.95) 0%,
      rgba(12,35,77,.82) 40%,
      rgba(12,35,77,.30) 90%
    );
  }

  .cta-text h2{
    font-size:18px;
    line-height:1.5;
  }

  .cta-text p{
    font-size:12px;
  }

  .cta-btn{
    width:220px;
    height:56px;
    font-size:14px;
    padding:0 28px;
  }

}
    /* ======================
      FOOTER
    ====================== */

    footer{
      background:#0c234d;
      color:#fff;
      padding:80px 0 40px;
    }

    .footer-inner{
      display:grid;
      grid-template-columns:1.4fr 1fr 1fr 1fr;
      gap:50px;
      margin-bottom:50px;
    }

    .footer-logo img{
  width:180px;
  height:auto;
  display:block;
  margin-bottom:24px;
}

    .footer-title{
      font-size:18px;
      margin-bottom:20px;
      font-weight:700;
    }

    .footer-menu li{
      margin-bottom:12px;
      color:rgba(255,255,255,.8);
      font-size:14px;
    }

    .copyright{
      text-align:center;
      font-size:13px;
      color:rgba(255,255,255,.6);
      border-top:1px solid rgba(255,255,255,.1);
      padding-top:30px;
    }
	
	.copy-mark{
  font-size:1.4em;
  line-height:1;
  position:relative;
  top:2px;
}
	
	/* ======================
   footer sns
====================== */

.footer-sns{
  display:flex;
  align-items:center;
  gap:18px;
}

.footer-sns img{
  width:48px;
  height:48px;
  object-fit:contain;
  transition:.3s;
}

.footer-sns a:hover img{
  opacity:.7;
  transform:translateY(-2px);
}
/* ======================
   FOOTER responsive
====================== */

/* tablet */
@media(max-width:1024px){

  .footer-inner{
    grid-template-columns:1fr 1fr;
    gap:40px;
  }

}

/* mobile */
@media(max-width:768px){

  footer{
    padding:60px 0 30px;
  }

  .footer-inner{
    grid-template-columns:1fr;
    gap:36px;
    margin-bottom:40px;
  }

  .footer-logo{
    font-size:34px;
    margin-bottom:16px;
  }

  .footer-title{
    font-size:16px;
    margin-bottom:16px;
  }

  .footer-menu li{
    font-size:13px;
    margin-bottom:10px;
  }

  .copyright{
    font-size:12px;
    padding-top:24px;
  }

}

/* small mobile */
@media(max-width:480px){

  .footer-logo{
    font-size:30px;
  }

  .footer-title{
    font-size:15px;
  }

}
/* ======================
   CONTACT PAGE
====================== */

.sub-section{
  padding:80px 0;
}

.contact-layout{
  display:grid;
  grid-template-columns:1fr;
  gap:50px;
}

/* 左テキスト */

.contact-lead h2{
  font-size:34px;
  line-height:1.6;
  color:#111;
  margin-bottom:20px;
  font-weight:700;
}

.contact-lead p{
  font-size:15px;
  line-height:2;
  color:#555;
}

/* フォーム */

.contact-form{
  display:grid;
  gap:24px;
}

.contact-form label{
  display:grid;
  gap:10px;
  font-size:14px;
  font-weight:700;
  color:#0c234d;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  padding:16px;
  border:1px solid #ddd;
  background:#fff;
  font-size:14px;
  font-family:inherit;
  transition:.3s;
}

/* フォーカス */

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:#0c234d;
  box-shadow:0 0 0 3px rgba(12,35,77,.08);
}

.contact-form textarea{
  min-height:220px;
  resize:vertical;
}

/* select */

.contact-form select{
  appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230c234d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 16px center;
  background-size:14px;
}

/* ボタン */

.contact-form button{
  width:240px;
  height:56px;
  border:none;
  background:#0c234d;
  color:#fff;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  transition:.3s;
}

.contact-form button:hover{
  opacity:.85;
}

/* ======================
   RESPONSIVE
====================== */

@media(max-width:900px){

  .contact-layout{
    grid-template-columns:1fr;
    gap:50px;
  }

}

@media(max-width:600px){

  .sub-section{
    padding:60px 0;
  }

  .contact-lead h2{
    font-size:28px;
    line-height:1.5;
  }

  .contact-lead p{
    font-size:14px;
  }

  .contact-form{
    gap:20px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea{
    padding:14px;
    font-size:14px;
  }

  .contact-form textarea{
    min-height:180px;
  }

  .contact-form button{
    width:100%;
    height:54px;
  }

}
/* ======================
   CONTACT TYPE
====================== */

.contact-type-section{
  margin-bottom:70px;
  text-align:center;
}

.contact-type-title{
  font-size:22px;
  color:#0c234d;
  margin-bottom:32px;
  position:relative;
}

.contact-type-title::after{
  content:"";
  display:block;
  width:34px;
  height:2px;
  background:#0c234d;
  margin:12px auto 0;
}

.contact-type-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.contact-type-card{
  position:relative;
  border:1px solid #ddd;
  padding:34px 20px;
  background:#fff;
  cursor:pointer;
  transition:.3s;
  text-align:center;
}

.contact-type-card input{
  position:absolute;
  top:18px;
  left:18px;
}

.contact-type-card.active{
  background:#0c234d;
  color:#fff;
  border-color:#0c234d;
}

.contact-type-card.active h3,
.contact-type-card.active p{
  color:#fff;
}
.contact-type-card:hover h3,
.contact-type-card:hover p{
  color:#fff;
}

.contact-type-card h3{
  font-size:18px;
  color:#0c234d;
  margin-bottom:10px;
}

.contact-type-card p{
  font-size:13px;
  color:#555;
  line-height:1.7;
}

/* アイコンサイズ統一 */

.contact-type-icon{
  height:80px;
  margin:0 auto 24px;

  display:flex;
  align-items:center;
  justify-content:center;
}

.contact-type-icon img{
  height:60px;
  width:auto;
  display:block;
}

.contact-type-note{
  margin-top:22px;
  font-size:13px;
  color:#555;
}

.contact-type-card img{
  filter:none;
}

.contact-type-card:hover img,
.contact-type-card.is-active img{
  filter:brightness(0) invert(1);
}


@media(max-width:900px){

  .contact-type-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:600px){

  .contact-type-grid{
    grid-template-columns:1fr;
  }

  .contact-type-card{
    padding:28px 20px;
  }

}
.contact-form-title{
  font-size:24px;
  color:#0c234d;
  margin-bottom:28px;
  position:relative;
}

.contact-form-title::after{
  content:"";
  display:block;
  width:40px;
  height:2px;
  background:#0c234d;
  margin-top:10px;
}

.privacy-check{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  margin-top:30px;
}

.contact-submit{
  display:flex;
  justify-content:center;
  margin-top:25px;
}

.contact-submit button{
  width:360px;
  height:58px;

  background:#0c234d;
  color:#fff;

  border:none;
  cursor:pointer;

  font-size:15px;
  font-weight:700;
}

.contact-tel-box{
  margin:50px auto 0;
  width:100%;
  border:1px solid #ddd;
  padding:28px 70px;

  display:grid;
  grid-template-columns:1fr 1px 1fr;
  align-items:center;
  gap:50px;
}

.tel-info{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
}

.tel-icon{
  width:50px;
  height:50px;
  object-fit:contain;
}

.tel-title{
  font-size:16px;
  font-weight:700;
  color:#0c234d;
  margin-bottom:6px;
  white-space:nowrap;
}

.tel-time{
  font-size:13px;
  color:#555;
  white-space:nowrap;
}

.tel-divider{
  width:1px;
  height:64px;
  background:#ddd;
}

.tel-number{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;

  font-size:32px;
  font-weight:700;
  color:#0c234d;
  white-space:nowrap;
}

.tel-number-icon{
  width:50px;
  height:50px;
  object-fit:contain;
}

/* responsive */

@media(max-width:768px){

  .contact-tel-box{
    grid-template-columns:1fr;
    gap:24px;
    padding:28px 24px;
    text-align:center;
  }

  .tel-info{
    flex-direction:column;
    gap:14px;
  }

  .tel-divider{
    width:100%;
    height:1px;
  }

  .tel-number{
    font-size:24px;
  }

}


    
/* =========================
   下層ページ共通
========================= */

.page-visual{
  height:280px;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,.95) 0%,
      rgba(255,255,255,.75) 45%,
      rgba(255,255,255,.2) 100%
    ),
    #eef2f6;
  display:flex;
  align-items:center;
}

.page-visual-inner{
  height:100%;
  display:flex;
  align-items:center;
}

.page-visual h1{
  font-size:42px;
  color:#0c234d;
  margin-bottom:8px;
}

.page-visual p{
  font-size:13px;
  letter-spacing:.08em;
  color:#0c234d;
}

.breadcrumb{
  padding:18px 0;
  border-bottom:1px solid #e5e5e5;
  font-size:13px;
  color:#777;
}

.breadcrumb a{
  color:#0c234d;
}

.breadcrumb span{
  margin-left:10px;
}



/* =========================
   会社概要ページ
========================= */

.company-message,
.philosophy,
.company-profile,
.group-company{
  padding:70px 0;
}

.company-section-title{
  font-size:26px;
  color:#0c234d;
  margin-bottom:35px;
  font-weight:700;
}

.message-layout{
  display:grid;
  grid-template-columns:330px 1fr;
  gap:60px;
  align-items:start;
}

.message-photo{
  background:#f1f3f5;
  min-height:360px;
}

.message-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.message-body h3{
  font-size:30px;
  line-height:1.7;
  color:#0c234d;
  margin-bottom:25px;
}

.message-body p{
  margin-bottom:18px;
  color:#333;
  line-height:2;
}

.president-name{
  margin-top:30px;
  font-weight:700;
}

/* 理念 */

.philosophy{
  background:#fafafa;
}

.philosophy-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.philosophy-card{
  background:#fff;
  padding:45px 35px;
  text-align:center;
  border:1px solid #e5e5e5;
}

.philosophy-icon{
  font-size:38px;
  color:#0c234d;
  margin-bottom:20px;
}

.philosophy-card h3{
  font-size:20px;
  color:#0c234d;
  margin-bottom:15px;
}

.philosophy-card p{
  font-size:14px;
  line-height:2;
}

/* 会社概要テーブル */

.company-table{
  width:100%;
  border-collapse:collapse;
  border:1px solid #ddd;
}

.company-table th,
.company-table td{
  border:1px solid #ddd;
  padding:22px 26px;
  text-align:left;
  vertical-align:top;
  font-size:15px;
}

.company-table th{
  width:230px;
  background:#f7f8fa;
  color:#0c234d;
  font-weight:700;
}

.company-map-link{
  display:inline-block;
  margin-top:8px;

  color:#0c234d;
  font-size:14px;
  font-weight:600;

  text-decoration:none;
}

.company-map-link:hover{
  text-decoration:underline;
}

/* グループ会社 */

/* ======================
   GROUP COMPANY
====================== */

.group-company{
  padding:100px 0;
}

.group-list{
  border-top:1px solid #ddd;
  border-left:1px solid #ddd;
  border-right:1px solid #ddd;
}

.group-row{
  display:grid;
  grid-template-columns:1fr 220px;

  align-items:center;

  border-bottom:1px solid #ddd;

  min-height:110px;

  padding:25px 35px;
}

.group-info h3{
  font-size:16px;
  font-weight:700;
  margin-bottom:10px;
  color:#222;
}

.group-info p{
  font-size:14px;
  line-height:1.9;
  color:#555;
}

.group-map{
  font-size:14px;
  color:#0c234d;
  text-decoration:underline;
  justify-self:end;
  transition:.3s;
}

.group-map:hover{
  opacity:.7;
}

/* active nav */

.nav .is-active{
  color:#0c234d;
  font-weight:700;
  border-bottom:2px solid #0c234d;
  padding-bottom:8px;
}

/* =========================
   responsive
========================= */

@media(max-width:900px){

  .message-layout{
    grid-template-columns:1fr;
  }

  .company-table th,
  .company-table td{
    display:block;
    width:100%;
  }

  .company-table th{
    border-bottom:none;
  }

}
/* ======================
   philosophy responsive
====================== */

@media(max-width:768px){

  .philosophy-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .philosophy-card{
    padding:35px 25px;
  }

}

/* 理念 */

.philosophy{
  background:#fafafa;
}

.philosophy-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.philosophy-card{
  background:#fff;
  padding:45px 35px;
  text-align:center;
  border:1px solid #e5e5e5;
}

.philosophy-icon{
  margin-bottom:24px;
}

.philosophy-icon img{
  width:72px;
  height:72px;
  object-fit:contain;
  margin:auto;
}

.philosophy-card h3{
  font-size:20px;
  color:#0c234d;
  margin-bottom:15px;
}

.philosophy-card p{
  font-size:14px;
  line-height:2;
}

/* responsive */

@media(max-width:768px){

  .philosophy-grid{
    grid-template-columns:1fr;
  }

}
/* ======================
   GROUP RESPONSIVE
====================== */

@media(max-width:768px){

  .group-row{
    grid-template-columns:1fr;
    gap:18px;

    padding:24px 20px;
  }

  .group-info h3{
    font-size:18px;
    line-height:1.5;
  }

  .group-info p{
    font-size:14px;
  }

  .group-map{
    justify-self:start;
  }

}

@media(max-width:768px){

  .page-visual{
    height:220px;
  }

  .page-visual h1{
    font-size:34px;
  }

  .message-body h3{
    font-size:24px;
  }

  .company-message,
  .philosophy,
  .company-profile,
  .group-company{
    padding:50px 0;
  }

}

/* =========================
   下層ページ追加
========================= */

.sub-section{
  padding:70px 0;
}

/* business */
/* 下層ページ メインビジュアル */

.page-visual{
  position:relative;
  height:260px;

  background-image:url("../images/page_bg.png");
  background-repeat:no-repeat;
  background-size:cover;
  background-position:center right;

  display:flex;
  align-items:center;
  overflow:hidden;
}

.page-visual-inner{
  position:relative;
  z-index:1;
}

.page-visual h1{
  font-size:42px;
  color:#0c234d;
  margin-bottom:8px;
  font-weight:700;
}

.page-visual p{
  font-size:14px;
  color:#0c234d;
  letter-spacing:.08em;
}

.business-page-list{
  display:grid;
  gap:30px;
}

.business-page-card{
  display:grid;
  grid-template-columns:360px 1fr;
  gap:40px;
  align-items:center;
  padding:35px;
  border:1px solid #e5e5e5;
  background:#fff;
}

.business-page-img{
  overflow:hidden;
  border-radius:4px;
}

.business-page-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.business-page-card h3{
  font-size:24px;
  color:#0c234d;
  margin-bottom:15px;
}

.business-page-card p{
  line-height:2;
}

/* business page responsive */

@media(max-width:768px){

  .business-page-card{
    grid-template-columns:1fr;
    gap:24px;
    padding:28px;
  }

  .business-page-img{
    width:100%;
  }

}

@media(max-width:480px){

  .business-page-card{
    padding:22px;
  }

  .business-page-img{
    min-height:180px;
  }

  .business-page-card h3{
    font-size:20px;
  }

  .business-page-card p{
    font-size:14px;
    line-height:1.9;
  }

}

/* ======================
   business responsive
====================== */

@media(max-width:768px){

  .business-page-card{
    grid-template-columns:1fr;
    gap:24px;
  }

  .business-page-img{
    width:100%;
    min-height:220px;
  }

}

/* ======================
   page visual responsive
====================== */

@media(max-width:768px){

  .page-visual{
    height:220px;

    /* 背景位置 */
    background-position:center right;
    background-size:cover;
  }
   /* 白グラデ追加 */

  .page-visual::before{
    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(
      90deg,
      rgba(255,255,255,.82) 0%,
      rgba(255,255,255,.55) 28%,
      rgba(255,255,255,.18) 55%,
      rgba(255,255,255,0) 100%
    );
  }


  .page-visual h1{
    font-size:34px;
    line-height:1.35;
    margin-bottom:6px;
  }

  .page-visual p{
    font-size:12px;
    letter-spacing:.06em;
  }

}

@media(max-width:480px){

  .page-visual{
    height:190px;

    /* スマホで背景を少し右寄せ */
    background-position:80% center;
  }

  .page-visual h1{
    font-size:28px;
    line-height:1.4;
  }

  .page-visual p{
    font-size:11px;
  }

}

/* brands */

.brand-page-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.brand-page-card{
  border:1px solid #e5e5e5;
  background:#fff;
  padding:40px 30px;
  min-height:210px;
  text-align:center;
}

.brand-page-logo{
  height:70px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid #e5e5e5;
  margin-bottom:25px;
  padding:12px 20px;
}

.brand-page-logo img{
  max-width:160px;
  max-height:42px;
  width:auto;
  height:auto;
  object-fit:contain;
}

.brand-page-card p{
  font-size:14px;
  line-height:2;
  text-align:left;
}
.brand-catch{
  font-size:20px;
  font-weight:700;
  color:#0c234d;

  border-left:3px solid #0c234d;
  padding-left:12px;

  margin-bottom:16px;
  line-height:1.5;
}

.brand-page-card{
  scroll-margin-top:120px;
  padding-top:50px;
}

/* responsive */

@media(max-width:768px){

  .brand-page-grid{
    grid-template-columns:1fr;
  }

}

/* news */

.news-page-list{
  display:grid;
  gap:32px;
}

.news-page-item{
  display:grid;
  grid-template-columns:300px 1fr;
  gap:32px;
  align-items:center;

  padding:28px;
  border:1px solid #e5e5e5;
  background:#fff;
}

.news-page-img{
  overflow:hidden;
  background:#eef2f6;
}

.news-page-img img{
  width:100%;
  aspect-ratio:16 / 9;
  object-fit:cover;
  display:block;
}

.news-meta{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:14px;
}

.news-date{
  color:#333;
  font-size:14px;
}

.news-label{
  background:#0c234d;
  color:#fff;
  font-size:12px;
  padding:4px 12px;
}

.news-title{
  font-size:22px;
  color:#0c234d;
  margin-bottom:12px;
}

.news-page-body p{
  font-size:14px;
  line-height:2;
  color:#555;
}

.news-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:12px;

  color:#0c234d;
  font-weight:700;
  text-decoration:none;
}

.news-link span{
  transition:.3s;
}

.news-link:hover span{
  transform:translateX(4px);
}

@media(max-width:768px){

  .news-page-item{
    grid-template-columns:1fr;
    gap:20px;
    padding:22px;
  }

  .news-title{
    font-size:20px;
  }

}
/* recruit */

.company-section-title.center{
  text-align:center;
  position:relative;
  margin-bottom:36px;
}

.company-section-title.center::after{
  content:"";
  display:block;
  width:34px;
  height:2px;
  background:#0c234d;
  margin:12px auto 0;
}

.recruitpage-visual{
  position:relative;
  height:260px;

  background-image:url("../images/recruit_bg.png");
  background-repeat:no-repeat;
  background-size:cover;
  background-position:center right;

  display:flex;
  align-items:center;
  overflow:hidden;
}

.recruitpage-visual-inner{
  position:relative;
  z-index:1;
}

.recruitpage-visual h1{
  font-size:42px;
  color:#0c234d;
  margin-bottom:8px;
  font-weight:700;
}

.recruitpage-visual h2{
font-size: 14px;
color: #0c234d;
margin-bottom:8px;
}

.recruitpage-visual p{
  font-size:14px;
  color:#0c234d;
  letter-spacing:.08em;
}

/* recruit page visual responsive */

@media(max-width:768px){

  .recruitpage-visual{
    height:360px;

    /* 人物を右側に寄せて見せる */
    background-position:68% center;
    background-size:cover;
  }

  .recruitpage-visual::before{
    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(
      90deg,
      rgba(255,255,255,.88) 0%,
      rgba(255,255,255,.62) 38%,
      rgba(255,255,255,.22) 65%,
      rgba(255,255,255,0) 100%
    );
  }

  .recruitpage-visual h1{
    font-size:34px;
  }

  .recruitpage-visual p{
    font-size:12px;
  }

  .recruitpage-visual h2{
    font-size:16px;
    line-height:1.8;
  }

}

@media(max-width:480px){

  .recruitpage-visual{
    height:420px;

    /* 数字を大きくすると右側が見える */
    background-position:75% center;
  }

  .recruitpage-visual h1{
    font-size:30px;
  }

  .recruitpage-visual h2{
    font-size:15px;
  }

}

/* 働く環境 */

.recruit-point{
  padding:40px 0 70px;
}

.recruit-point-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.recruit-point-card{
  border:1px solid #ddd;
  background:#fff;
  text-align:center;
  padding:38px 24px;
}

.recruit-icon{
  width:90px;
  height:90px;

  display:flex;
  align-items:center;
  justify-content:center;

  margin:0 auto 24px;
}

.recruit-icon img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}

.recruit-point-card h3{
  font-size:18px;
  color:#0c234d;
  margin-bottom:14px;
}

.recruit-point-card p{
  font-size:14px;
  line-height:1.9;
}

/* 選考の流れ */

.recruit-flow{
  padding:40px 0 70px;
}

.flow-list{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:#f5f6f8;
  padding:30px;
  gap:20px;
}

.flow-item{
  text-align:center;
  position:relative;
}

/* ======================
   flow arrow
====================== */

.flow-item{
  position:relative;
}

.flow-item::after{
  content:"〉";

  position:absolute;
  top:50%;
  right:-16px;

  transform:translateY(-50%);

  font-size:34px;
  color:#0c234d;
  font-weight:300;
}

/* 最後だけ矢印なし */

.flow-item:last-child::after{
  display:none;
}

.flow-icon{
  width:70px;
  height:70px;
  border-radius:50%;
  background:#fff;
  margin:0 auto 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#0c234d;
  font-size:32px;
}

.flow-item h3{
  color:#0c234d;
  font-size:18px;
  margin-bottom:10px;
}

.flow-item p{
  font-size:13px;
  line-height:1.8;
}

@media(max-width:600px){

  .flow-item::after{
    display:none;
  }

}

/* CTA */

.entry-cta{
  padding:0 0 80px;
}

.entry-cta-inner{
  background:
    linear-gradient(
      90deg,
      rgba(12,35,77,.95) 0%,
      rgba(12,35,77,.8) 45%,
      rgba(12,35,77,.35) 100%
    ),
    url("../images/entry_bg.png") center / cover no-repeat;
  color:#fff;
  min-height:150px;
  padding:35px 55px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.entry-cta-inner h2{
  font-size:28px;
  margin-bottom:8px;
}

.entry-cta-inner p{
  font-size:15px;
}

.entry-btn{
  background:#0c234d;
  color:#fff;
  height:56px;
  padding:0 34px;
  display:inline-flex;
  align-items:center;
  gap:18px;
  font-weight:700;
}

/* responsive */

@media(max-width:900px){

  .recruit-point-grid,
  .flow-list{
    grid-template-columns:repeat(2,1fr);
  }

  .entry-cta-inner{
    flex-direction:column;
    align-items:flex-start;
    gap:24px;
  }

}

@media(max-width:600px){

  .recruit-point-grid,
  .flow-list{
    grid-template-columns:1fr;
  }

  .recruit-point-card{
    padding:32px 22px;
  }

  .entry-cta-inner{
    padding:32px 24px;
  }

  .entry-cta-inner h2{
    font-size:22px;
  }

  .entry-btn{
    width:100%;
    justify-content:center;
  }

}

/* entry form */

.entry-section{
  padding:50px 0;
}

.entry-head{
  margin-bottom:60px;
}

.entry-head h1{
  font-size:42px;
  color:#0c234d;
  margin-bottom:10px;
}

.entry-head p{
  color:#666;
}

.entry-form{
  display:flex;
  flex-direction:column;
  gap:28px;
}

.entry-form label{
  display:flex;
  flex-direction:column;
  gap:10px;

  font-weight:700;
}

.entry-form input,
.entry-form select,
.entry-form textarea{
  width:100%;
  padding:16px;
  border:1px solid #ddd;
  background:#fff;
  font-size:16px;
}

.entry-form textarea{
  min-height:220px;
  resize:vertical;
}

.check-area{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;

  font-size:16px;
  font-weight:700;

  margin-top:10px;
}

.check-area input{
  width:18px;
  height:18px;
}

.entry-form button{
  width:320px;
  height:64px;

  margin:24px auto 0;

  display:block;

  background:#0c234d;
  color:#fff;

  border:none;
  font-size:16px;
  font-weight:700;

  cursor:pointer;
}

@media(max-width:768px){

  .entry-section{
    padding:70px 0;
  }

  .entry-head h1{
    font-size:32px;
  }

  .entry-form button{
    width:100%;
  }

}
  .check-area{
    justify-content:flex-start;
  }

/* =========================
   hamburger
========================= */

.menu-btn{
  width:44px;
  height:44px;
  border:none;
  background:none;
  display:none;
  position:relative;
  cursor:pointer;
  z-index:9999;
}

.menu-btn span{
  width:28px;
  height:2px;
  background:#0c234d;
  position:absolute;
  left:8px;
  transition:.3s;
}

.menu-btn span:nth-child(1){
  top:13px;
}

.menu-btn span:nth-child(2){
  top:21px;
}

.menu-btn span:nth-child(3){
  top:29px;
}

/* open */

.menu-btn.is-open span:nth-child(1){
  transform:rotate(45deg);
  top:21px;
}

.menu-btn.is-open span:nth-child(2){
  opacity:0;
}

.menu-btn.is-open span:nth-child(3){
  transform:rotate(-45deg);
  top:21px;
}

/* =========================
   responsive nav
========================= */

@media(max-width:900px){

  .menu-btn{
    display:block;
  }

  .nav{
    position:fixed;
    top:0;
    right:-100%;
    width:320px;
    height:100vh;
    background:#fff;
    padding:120px 40px 40px;
    transition:.4s;
    z-index:999;
    box-shadow:-10px 0 30px rgba(0,0,0,.08);
  }

  .nav.is-open{
    right:0;
  }

  .nav ul{
    display:flex;
    flex-direction:column;
    gap:28px;
  }

  .nav a{
    font-size:16px;
  }

  .contact-btn{
    display:none;
  }

}