@charset "UTF-8";

/* ============================================ */
/* 全体 */
/* ============================================ */
/* リンクホバー */
.opacity-hover:hover {
 transition: opacity 0.3s ease, color 0.3s ease;
 opacity: 0.5;
}

/* ============================================ */
/* レイアウト */
/* ============================================ */

.wrapper {
 display: grid;
 grid-template-rows: auto 1fr auto;
 grid-template-columns: 100%;
 min-height: 100vh;
}

/* ============================================ */
/* 見出し */
/* ============================================ */
.title-container {
 text-align: center;
}

.title-wrapper {
 text-align: center;
 margin-bottom: 50px;
}

.individual_title {
 color: #123269;
 font-size: 26px;
 display: inline;
 padding: 0.1em 0;
 line-height: 1.7;
 background: linear-gradient(transparent 60%, #EAF0F3 60%);
 -webkit-box-decoration-break: clone;
 box-decoration-break: clone;
}

h3 {
 margin: 80px 0 20px;
 font-size: 20px;
 color: #123269;
}

h4 {
 color: #123269;
 margin: 30px 0 10px;
 font-weight: bold;
}

/* ============================================ */
/* 共通ボタン */
/* ============================================ */
.link-btn {
 display: inline-block;
 margin: 30px auto;
 padding: 20px 30px;
 min-width: 300px;
 text-align: center;
 background-color: #0C0C0C;
 color: #fff;
 line-height: 1.5;
 border: none;
 border-radius: 6px;
 cursor: pointer;
 position: relative;
 left: 50%;
 transform: translateX(-50%);
}

.link-btn.opacity-hover:hover {
 opacity: 0.5;
}

.list-btn {
 display: block;
 width: 100%;
 max-width: 700px;
 margin: 20px auto;
 padding: 14px 20px;
 text-align: center;
 background-color: #969696;
 color: #fff;
 line-height: 1.5;
 border: none;
 border-radius: 6px;
 cursor: pointer;
}

.list-btn.opacity-hover:hover {
 opacity: 0.5;
}

/* ============================================ */
/* パンくずリスト */
/* ============================================ */
.breadcrumb {
 display: flex;
 flex-wrap: wrap;
 list-style: none;
 padding: 70px 0;
 gap: 0.6em;
}

.breadcrumb a:hover {
 opacity: 0.5;
}

/* --- レスポンシブ対応 (767px以下) --- */
@media (max-width: 767px) {
 .breadcrumb {
  padding: 30px 0 60px;
 }
}

/* ============================================ */
/* ファーストビュー */
/* ============================================ */
.individual-mv {
 height: 320px;
 width: 100%;
 position: relative;
 background-size: cover;
 background-repeat: no-repeat;
 background-position: center center;
 z-index: -1;
}

.about-mv {
 background-image: url(../img/about__mv.jpg);
}

.policy-mv {
 background-image: url(../img/policy__mv.jpg);
}

.recruit-mv {
 background-image: url(../img/recruit__mv.jpg);
}

.construction-system-mv {
 background-image: url(../img/policy__mv.jpg);
}

.individual-mv__title {
 text-align: center;
 padding-top: 140px;
 color: #fff;
 font-size: 32px;
}

@media (max-width: 767px) {
 .individual-mv {
  height: 160px;
 }

 .individual-mv__title {
  padding-top: 80px;
  font-size: 24px;
 }

 .individual_content {
  top: 0;
 }
}

/* ============================================ */
/* コンテンツ幅 */
/* ============================================ */
.individual_content {
 max-width: 1300px;
 margin: 0 auto;
 background-color: #fff;
 position: relative;
 top: -80px;
 z-index: 100;
 padding: 0 20px;
 margin-bottom: 80px;
}

.individual_content__wrapper {
 max-width: 900px;
 margin: 0 auto;
}

@media (max-width: 767px) {
 .individual_content {
  top: 0;
 }
}

/* ============================================ */
/* リスト*/
/* ============================================ */
li {
 line-height: 2;
}

.list-1 {
 list-style-type: disc;
 list-style-position: inside;
}

.list-1 li {
 padding: .3em .3em .3em 1.5em;
 text-indent: -1.5em;
}

.list-1 li::marker {
 color: #123269;
 font-size: 1.1em;
}

.list-2 {
 position: relative;
 margin: 0;
 padding: 0;
}

.list-2 li {
 list-style: none;
 padding-left: 1.5em;
}

.list-2 li span {
 position: absolute;
 left: 0;
 margin: 0;
}

/* ============================================ */
/* アコーディオンメニュー */
/* ============================================ */
.accordion {
 width: 100%;
 max-width: 900px;
 margin: 0 auto;
 border: 1px solid #e2e8f0;
 border-radius: 6px;
 overflow: hidden;
}

.accordion-trigger {
 width: 100%;
 padding: 20px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 background: white;
 border: none;
 cursor: pointer;
 transition: background-color 0.2s;
}

.accordion-trigger__title {
 font-size: 20px;
 font-weight: bold;
 margin: 0 auto;
}

.accordion01 {
 background-color: #123269;
 color: #fff;
}

.accordion-trigger:hover {
 opacity: 0.5;
}

.accordion-icon {
 transition: transform 0.2s;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
 transform: rotate(180deg);
}

.accordion-content {
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.2s ease-in-out;
}

.accordion-content.open {
 max-height: 100%;
}

.accordion-body {
 padding: 1rem;
 max-width: 834px;
 margin: 0 auto;
}

.background-color {
 padding: 10px 20px;
 background: #e2e8f0;
 font-weight: bold;
 font-size: 18px;
}

.accordion-body img {
 max-width: 100%;
 height: auto;
}

.accordion02 {
 padding: 8px;
 font-size: 16px;
}

.close-btn {
 display: block;
 margin: 30px auto;
 padding: 16px 80px;
 background-color: #969696;
 color: #fff;
 border: none;
 border-radius: 6px;
 cursor: pointer;
}

.close-btn.opacity-hover:hover {
 opacity: 0.5;
}

/* ============================================ */
/* 表*/
/* ============================================ */
table {
 padding: 0;
 margin: 0;
 border-collapse: collapse;
 width: 100%;
}

td,
th {
 border: solid #435068 1px;
 padding: 20px;
 text-align: center;
 vertical-align: middle;
}

.column-heading {
 background-color: #123269;
 color: #fff;
}

.row-heading {
 background-color: #EAF0F3;
}

/* ============================================ */
/* お問い合わせ欄*/
/* ============================================ */
.individual-contact {
 padding: 50px 20px;
 background-color: #EAF0F3;
}

.contact__wrapper {
 background-color: #D4E0EB;
 padding: 30px 0;
}

.card-container {
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
}

.contact-content {
 padding: 30px;
 text-align: center;
 flex: 1;
 max-width: 400px;
 box-sizing: border-box;
 margin: 0 auto;
}

.vertical-divider {
 width: 1px;
 background-color: #fff;
 margin: 20px 0;
 align-self: stretch;
}

.contact-icon {
 display: block;
 margin: 0 auto 15px;
 width: 27px;
 height: 27px;
 color: #fff;
}

.contact-icon svg {
 width: 100%;
 height: 100%;
 fill: currentColor;
}

.contact-content h3 {
 color: #123269;
 font-size: 20px;
 margin: 0 0 10px;
}

.contact-info {
 text-align: left;
 margin: 0 auto;
 margin-top: 30px;
}

@media (max-width: 768px) {
 .card-container {
  flex-direction: column;
  align-items: center;
 }

 .vertical-divider {
  width: 80%;
  height: 1px;
  margin: 20px auto;
 }
}

/* ============================================ */
/* 個別レイアウト*/
/* ============================================ */
.m60 {
 margin-top: 60px;
}

.m30 {
 margin-top: 30px;
}

.m20 {
 margin-top: 20px;
}

.mb20 {
 margin-bottom: 20px;
}

.bold {
 font-weight: bold;
}

.blue {
 color: #123269;
}

.b-black {
 background-color: #0C0C0C;
}

.letter-spacing {
 letter-spacing: 2em;
 text-indent: 2em;
}

.sentence-box {
 background-color: #EAF0F3;
 padding: 20px 30px;
 margin: 20px 0;
}

.dotted-line {
 border-top: 1px dashed #C8C8C8;
 width: 100%;
 margin-top: 20px;
 margin-bottom: 20px;
}

.mt80 {
 margin-top: 80px;
}

/* ============================================ */
/* 改行*/
/* ============================================ */
@media screen and (min-width: 768px) {
 .br-sp {
  display: none;
 }
}

/* ============================================ */
/* 職員用メニュー */
/* ============================================ */
.menu-content li {
 line-height: 1;
}
