﻿@charset "UTF-8";



.hero {
    position: relative;
    height: 50vh;  
    background-size: cover;
    background-position: center;
    color: #fff;
}


.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3); 
    display: flex;
    justify-content: center;
    align-items: flex-start;  
    padding-top: 6vh; 
}


.hero-text {
    text-align: center;
    max-width: 1020px;
}

.hero-text h1 {
    font-size: 2.5rem;
    /*! margin-bottom: 20px; */
    font-weight: bold;
    color: #fff; 
    text-shadow: 0 0 7px #001f59;
}

.hero-text h2 {
    font-size: 1rem;
    color: #fff;  
    text-shadow: 0 0 7px #001f59;
    padding: 0;
    margin: -7px 0 0 0;
}

.hero-text p {
    font-size: 1.2rem;
    margin: 0;
    color: #fff;  
	text-shadow: 0 0 10px #0f0f0f;
    text-align: left;
    padding: 1em 0 0 0;
}


@media screen and (max-width: 768px) {
    .hero {
        height: 50vh; 
    }
.hero-text {
    max-width: 90%;
}
    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero .overlay {
        padding-top: 5vh;
    }
}



/* Table */
.company-table {
    width: 100%;
    border-collapse: collapse;
}

.company-table th, .company-table td {
    border-bottom: 1px solid #ccc;
    padding: 10px;
}


.company-table td ul {
padding: 0 0 0 1em;
}

@media screen and (max-width: 600px) {
    .company-table,
    .company-table tr,
    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
    }

    .company-table th {
  font-weight: bold;
    background: #036;
    color: #fff;
    }


    .company-table td {
   
    }
}


.news-list {
    list-style: none;
    padding: 0;
}

.news-list li {
    margin-bottom: 10px;
	border-bottom:1px solid #ccc;
	    padding: 10px 15px;
}

.news-list span {
    font-weight: bold;
    color: #0077CC;
    margin-right: 20px;
}

.news-list li a {
    color:#333;
}





.link{
}

ul.link li {
    position: relative;
    list-style: none; /* デフォルトの点を消す */
    padding-left: 15px; /* 三角の分だけ余白を作る */
	margin:0 0 0 1em;
}

ul.link li a {
    color:#333;
	
}


ul.link li::before {
    content: '';
    position: absolute;
    top: 11px;
    left: 0;
    display: inline-block;
    border-style: solid;
    border-width: 6px 0 6px 9px;
    border-color: transparent transparent transparent #066FC7;
}

ul.link li::after {
    content: "\f08e";                /* 外部リンクアイコン */
    font-family: "Font Awesome 6 Free"; /* 重要 */
    font-weight: 900;                /* solid を使う場合 */
    font-size: 0.85em;
    margin-left: 4px;
    color: #333;
}


/* ===== CONTACT ===== */
.contact{
    padding: 2em;
    background: #dbe1e1;
}

.contact__inner{
  max-width: 1100px;
  margin: 0 auto;
}

.contact__eyebrow{
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: rgba(15,47,74,0.7);
}

.contact__head{
text-align:center;
}

.contact__title{
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  color: #0f2f4a;
}

.contact__lead{
  margin: 0;
  font-size: 14px;
  color: #2a3b47;
}

.contact__card{
  margin-top: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 1em;
  border: 1px solid #e6edf3;
  box-shadow: 0 10px 30px rgba(15,47,74,0.08);
  width: 50%;
    margin: 1em auto;
}

.contact__list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact__item{
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid #edf2f7;
}

.contact__item:first-child{
  border-top: none;
  padding-top: 0;
}

.contact__icon{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0f2f4a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact__label{
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #5a6b77;
}

.contact__value{
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1f2e38;
}

.contact__value a{
  color: #0f5fa6;
  text-decoration: none;
  border-bottom: 1px solid rgba(15,95,166,0.4);
  padding-bottom: 2px;
  transition: all .2s ease;
}

.contact__value a:hover{
  border-bottom-color: rgba(15,95,166,0.9);
}

/* SP */
@media (max-width: 600px){
  .contact{
    padding: 32px 14px;
  }

  .contact__card{
    padding: 18px 18px;
	width:100%;
  }

  .contact__item{
    gap: 14px;
  }

  .contact__icon{
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .contact__value{
    font-size: 16px;
  }
}

/* 横並び2カラム */
.contact__list--horizontal{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* gap: 24px; */
}

/* 罫線は横並び時は消す */
.contact__list--horizontal .contact__item{
  border-top: none;
  padding-top: 0;
}

/* 各項目に軽い区切りラインを入れたい場合 */
.contact__list--horizontal .contact__item{
  padding: 0;
}

/* SPは縦並び */
@media (max-width: 700px){
  .contact__list--horizontal{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact__list--horizontal .contact__item{
    border-top: 1px solid #edf2f7;
  }

  .contact__list--horizontal .contact__item:first-child{
    border-top: none;
  }
}

.memo{
  font-size:0.9em;
}