/* ==========================
   Header
========================== */
header {
    display: flex;
    justify-content: space-between;
    /* 左右に配置 */
    align-items: center;
    padding: 24px 24px 40px 32px;
    min-width: 960px;
    min-height: 108px;
}

header>.logo {
    width: 240px;
}

.language {
    position: relative;
    /* 画像の重なり用の基準 */
    width: 44px;
    height: 44px;
}

.language img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    transition: 0.5s;
}

/* 2枚目だけ回転 */
.language img:nth-child(2):hover {
    transform: rotate(45deg);
}

/* ==========================
   BreadCrumb & Containers
========================== */
.breadCrumb {
    width: 920px;
    margin: 0 auto 32px auto;
    display: flex;
    /* 子要素を横並びに */
    align-items: center;
    /* 高さ方向を中央に揃える */
}

.breadCrumb img {
    vertical-align: middle;
    /* 文字の中央に揃える */
}

.breadCrumb span {
    display: flex;
    /* アイコン用 span も flex で中央揃え */
    align-items: center;
}

.breadCrumb img {
    display: block;
    /* inline-block より安定 */
    width: 8px;
    /* アイコンサイズ */
    height: auto;
}


.solid {
    width: 100%;
    margin: 0 auto;
    margin-top: 16px;
}

.article {
    width: 920px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.article a {
    color: #fff;
}

.article a:hover {
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.5s ease 0s;
}

.article>.main,
.article>.sub {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
}

.article>.main {
    padding: 40px 40px 0 40px;
}

.article>.sub {
    padding: 32px 40px 40px 40px;
}

/* ==========================
   Links & Text
========================== */
a {
    color: #009999;
}

a:hover {
    text-decoration: underline;
}

.lead {
    background-color: rgba(0, 0, 0, 0.5);
    font-size: 20px;
    padding: 24px;
    width: 100%;
    text-align: center;
    border-radius: 8px;
}

/* ==========================
   SNS Share Block
========================== */
.sns {
    display: inline-flex;
    /* 自分の幅に合わせて横並び */
    align-items: center;
    /* 縦中央揃え */
    justify-content: center;
    /* 子要素の横並びを中央 */
    gap: 8px;
    /* 子要素間の間隔 */
    margin: 0 auto;
    /* ページ中央に配置 */
}

.sns>div {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sns>div>p {
    margin: 0;
}

.sns>div>a>img {
    width: 36px;
    height: auto;
    transition: all 0.5s ease 0s;
}

.sns>div>a>img:hover {
    opacity: 0.5;
    transition: all 0.5s ease 0s;
}

/* ==========================
   Headings
========================== */
h1 {
    font-size: 32px;
    margin: 0 0 40px 0;
    line-height: 44px;
    display: flex;
    align-items: center;
    /* テキストとラインを縦位置中央に */
    gap: 32px;
    /* テキストとラインの間の余白 */
}


h1::after {
    content: "";
    flex: 1;
    height: 5px;
    /* 線の本体高さ */
    /* 右/左の丸は SVG、中央は線（linear-gradient） */
    background:
        url("../img/cycle.svg") left center no-repeat,
        url("../img/cycle.svg") right center no-repeat,
        linear-gradient(to right, #fff 0%, #fff 100%);
    background-repeat: no-repeat, no-repeat, no-repeat;
    /* 丸のサイズ、線の幅を調整（丸2つ分を差し引く） */
    background-size: 5px 5px, 5px 5px, calc(100% - 10px) 1px;
    background-position: left center, right center, center;
}

h2 {

    font-size: 20px;
    line-height: 32px;
}

/* ==========================
   Lists
========================== */
.newsHero {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    backdrop-filter: blur(8px);

}

.newsHero li img {
    width: 420px;
}

.labelWrap {
    margin-bottom: 16px;
}

.newsHero li a {
    display: flex;
    align-items: center;
}

.newsHero li div {
    padding: 0 36px;
    gap: 8px;
}

.newsHero li div span {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 24px;

}

.newsHero p {
    font-size: 16px;
}

.newsHero h3 {
    font-size: 32px;
    line-height: 44px;
}

.newsList {
    display: flex;
    flex-wrap: wrap;
    column-gap: 16px;
    /* 横の余白 */
    row-gap: 32px;
    /* 縦の余白 */
    list-style: none;


}

.newsList li {
    width: 296px;
    backdrop-filter: blur(8px);
    line-height: normal;
}

.newsList li div {
    padding: 16px 16px 24px 16px;
}

ul.newsList li .labelWrap {
    margin-bottom: 8px !important;
}


.newsList li div span {
    display: flex;
    gap: 8px;
}

.tag {
    background-color: #009999;
    display: inline;
    padding: 0 6px 0 7px;
    height: 30px;
}











/* 時間の li の特殊処理 */
.time>p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #009999;
}

ul li.time::before {
    content: none;
    /* 共通マーカーを消す */
}

/* ==========================
   Images & HR
========================== */
img {
    width: 100%;
}

hr {
    color: #ccc;
    width: 100%;
}

/* ==========================
   Day Label
========================== */
/* ==========================
   Label Wrap（TAG + DAY）
========================== */
.labelWrap {
    display: flex;
    align-items: center;
    /* ← 子を縦方向で正確に揃える */
    gap: 8px;
    padding: 0 !important;
}

/* TAG（画像なし） */
.labelWrap .tag {
    display: flex;
    /* ← テキスト基準のズレをなくす */
    align-items: center;
    /* ← これで高さ揃う */
    padding: 0 7px;
    height: 30px;
    background-color: #009999;
    font-size: 16px;
    line-height: 1;
    /* ← ボックス高さと基準を一致させる */
    color: #fff;
    font-weight: bold;
    margin: 0;
}

/* DAY（アイコン＋日付） */
.labelWrap .day {
    display: flex;
    /* ← 擬似要素との上下ズレ解消 */
    align-items: center;
    /* ← 完全に中央揃え */
    gap: 4px;
    font-size: 16px;
    font-weight: bold;
    color: #ccc;
    margin: 0;
}

/* DAY アイコン */
.labelWrap .day::before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    background: url("../img/Icon_day.svg") no-repeat center / contain;
    padding-top: 2px;
}


/* ==========================
   Paragraph & Body
========================== */
p {
    font-size: 16px;
    line-height: 28px;
}

small {
    font-size: 14px;
    color: #ccc;
    margin-top: 8px;
    line-height: 18px;
    display: inline-block;

}

body {
    margin: 0;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    position: relative;
}

/* 共通：固定背景用 */
.bg-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* コンテンツより奥に配置 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    /* 背景を必ず画面いっぱいに */
}

/* PC用背景 */
.bg-fixed {
    background-image: url("../img/01.jpg");
}

/* ==========================
   Footer
========================== */
footer {
    background: none;
}

/* ==========================
   Buttons
========================== */
button {
    border-color: #fff;
    margin: 0 auto;
    background: none;
}

.button-wrapper {
    text-align: center;
    /* 親要素で中央揃え */
}

.button-wrapper button {
    display: inline-block;
    /* ブロック扱いを回避 */
}