/* ==========================
   Header
========================== */
header {
    display: flex;
    justify-content: space-between;
    /* 左右に配置 */
    align-items: center;
    padding: 24px 24px 40px 32px;
    min-width: 960px;
    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;
    backdrop-filter: blur(8px);
    margin-bottom: 40px;
}

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

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

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

.copyright {
    width: 100%;
    text-align: right;
    font-size: 12px;
    color: #ccc;
    padding-right: 8px;
}

.annotation {
    font-size: 12px;
    color: #ccc;
}

/* ==========================
   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;
    /* ページ中央に配置 */
    margin-top: 40px;
}

.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;
    line-height: 44px;
}

h2 {

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



h3 {
    display: inline-block;
    /* ブロック幅を文字に合わせる */
    position: relative;
    font-size: 24px;
    padding-left: 16px;
    margin-top: 16px;

}


h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.1em;
    /* 調整可能 */
    width: 4px;
    /* 線の太さ */
    height: 100%;
    /* 文字高さに合わせる */
    background-color: #009999;
}

/* ==========================
   Lists
========================== */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li {
    position: relative;
    margin-bottom: 8px;
}

ul li span.box {
    display: inline-flex;
    /* 横並び */
    align-items: center;
    /* BOXを縦中央 */
    vertical-align: middle;
    /* 行内でも中央揃え */
}

ul li span.box::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #009999;
    margin-right: 8px;
    flex-shrink: 0;
}

ul li p {
    margin: 4px 0 0 16px;
    /* BOXとの隙間 */
}











/* 時間の 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
========================== */
.day {
    font-size: 16px;
    font-weight: bold;
    color: #ccc;
}

.day::before {
    content: url("../img/Icon_day.svg");
    position: relative;
    top: 6px;
    /* 上下の微調整 */
    margin-right: 4px;
}

/* ==========================
   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;
    /* ブロック扱いを回避 */
}