@charset "UTF-8";
/* =====================
  パンくず
===================== */
.breadcrumb{
    background-color: var(--white);
    padding-top: .825em;
    padding-bottom: .825em;
}
.breadcrumb ul{
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    font-size: var(--fz-xsmall);
}
.breadcrumb ul li{
    font-weight: bold;
}
.breadcrumb ul li + li::before{
    display: inline-block;
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--darkblue);
    border-top: 2px solid var(--darkblue);
    transform: rotate(45deg);
    vertical-align: middle;
    margin-left: 1.1em;
    margin-right: 1.1em;
}
.breadcrumb ul li a{
    font-weight: normal;
}

/* =====================
  カテゴリ内専用ナビゲーション
===================== */
/* ==== 要素style ==== */
.local-nav{
    border: 1px solid #dae5eb;
    border-radius: 10px;
    background-color: var(--white);
    font-size: var(--fz-xsmall);
    font-weight: bold;
    margin-bottom: 40px;
}
.local-nav li{
    position: relative;
}
.local-nav li + li::before{
    position: absolute;
    content: "";
    width: 1px;
    height: 70%;
    left: 0;
    top: 15%;
    background-color: #dae5eb;
}
.local-nav li a{
    display: block;
    text-align: center;
    padding-top: 1.3em;
    padding-bottom: 1.3em;
}
.local-nav li a.on{
    color: var(--sky);
}

/* ==== Grid処理 ==== */
.local-nav{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

/* =====================
  共通
===================== */
.article .wrapper{
    width: min(1120px);
}
.second-bg{
    background-repeat: no-repeat;
    background-position: 148px top;
    background-size: 100% auto;
    background-image: url(../../img/common/02.png);
}

/* =====================
  MV
===================== */
.mv{
    height: 400px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
}
.mv .wrapper{
    width: 1180px;
}
.mv h1{
    font-size: 40px;
    font-weight: bold;
    color: var(--white);
}

/* ==== プロジェクトページ ==== */
.project-contents main .mv{
    background-image: url("../../img/project/mv.png");
}

/* ==== 情報開示 ==== */
.disclosure-contents main .mv{
    background-image: url("../../img/disclosure/mv.png");
}

/* =====================
  article
===================== */
.article[data-id="1"]{
    padding-top: 60px;
    padding-bottom: 130px;
}

/* =====================
  特設サイトリンク
===================== */
.special-link-unit{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 27px;
    margin-bottom: 70px;
}
.special-link-unit a{
    background-color: var(--white);
    border: 1px solid #d6d6d6;
    border-radius: 10px;
    padding: 17px 18px 0px;
    transition: var(--all-animation);
}
.special-link-unit a picture{
    display: block;
}
.special-link-unit a .h2{
    font-size: 20px;
    color: var(--sky);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    padding: .7em 0;
    line-height: 1.3;
}
.special-link-unit a .body{
    font-size: var(--fz-xsmall);
    line-height: 1.8;
}
.special-link-unit a [data-icon="b-more"]{
    flex: none;
}