* {
	margin: 0;
	padding: 0;
	font-size: 100%;
}
body {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    text-align: center;
}

/* ヘッダーの調整 */
header {
    background-color: white;
    color: #475A6D;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 0 40px;
    position: relative;
    margin-bottom: 0; /* ヘッダー下部の隙間をなくす */
}



/* ヘッダーコンテナ */
header .container {
    display: flex;
    align-items: center;
    width: 90%;
    height: 100%;
    justify-content: center; /* メニューを中央寄せ */
}

/* ロゴを左端に配置 */
.logo {
    position: absolute;
    left: 20px; /* 左端へ固定 */
}

.logo img {
    height: 26px;
}

/* メニューの配置 */
nav {
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
}

nav ul li a {
    padding: 30px 30px;
    color: #475A6D;
    text-decoration: none;
    font-weight: normal;
    transition:0.9s;
}

/* ナビゲーションリンクの hover 時の背景色変更 */
nav ul li a:hover {
    background-color: #F9F6EC;
    transition:0.9s;
}

/* 申し込むボタンとEnglishリンクを右端へ配置 */
.header-actions {
    position: absolute;
    right: 40px; /* 右端へ固定 */
    display: flex;
    align-items: center;
}

/* 「申し込む」ボタン */
.apply-btn {
    background-color: #CF7F0F;
    color: white;
    padding: 5px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    margin-right: 20px;
    transition:0.9s;
}
.apply-btn:hover {
    filter:alpha(opacity=60);
    -moz-opacity: 0.6;
    opacity: 0.6;
    transition:0.9s;
}

/* 言語リンク */
.lang-switch {
    display: flex;
    align-items: center; /* 垂直方向の中央揃え */
    text-decoration: none;
    transition:0.9s;
}

.lang-switch:hover {
    filter:alpha(opacity=60);
    -moz-opacity: 0.6;
    opacity: 0.6;
    transition:0.9s;
}
/* SVGアイコンのスタイル */
.svg-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px; /* テキストとの間隔 */
}

/* テキストのスタイル */
.lang-text {
    font-size: 16px;
    color: #333;
    font-weight: bolder;
}


/* メインビジュアルのセクション */
.main-visual {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('./img/main-visual.webp'); /* 背景画像 */
    background-size: cover;
    background-position: center;
    margin: 0; /* 余計なスペースを削除 */
    padding: 0; /* パディングによる不要な余白を防ぐ */
}

/* メインビジュアルの半透明白背景 */
.overlay-box {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 60px 50px; /* 開催概要と同じpaddingに調整 */
    width: 1200px;
    max-width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}


/* テキストのスタイル */
.title {
    font-size: 50px;
    color: #00A186;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: "Source Serif 4", 'Arial', sans-serif;

}

.description {
    font-size: 20px;
    color: #475A6D;
    margin-bottom: 20px;
}

.date {
    font-size: 28px;
    color: #00A186;
    font-family: "Source Serif 4", 'Arial', sans-serif;
    font-weight: bold;
}

/* メインビジュアル直下のコンテンツ */
.content-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to right, #3E91C4, #124AA1);
    margin: 0; /* さらに不要なスペースを削除 */
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.content-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 2400px;
    height: 1344px;
    background: url(./img/overlay.webp) no-repeat center;
    mix-blend-mode: screen;
    opacity: 0.4;
}

.content-section-inner{
    position: relative;
    z-index: 1;
    width: 1200px;
    max-width: 90%;
}


/* テキストのスタイル */
.content-text {
    font-size: 20px; /* テキストサイズを20pxに変更 */
    color: #fff;
    line-height: 1.8;
}

/* 開催概要セクションの背景 */
.overview {
    width: 100%;
    background-color: #F9F6EC; /* 背景色を指定 */
    padding: 70px 0;
    margin-top: 0; /* 上のコンテンツとの余白をなくす */
    text-align: center;
    background: url(./img/overview.webp) #F9F6EC;
}

/* セクションタイトル（開催概要・プログラム用） */
.section-title {
    font-size: 28px;
    color: #475A6D;
    position: relative;
    width: 16%; /* 横幅をタイトルより長めに */
    margin: 0 auto 50px;
    padding-bottom: 15px;
}

/* タイトルの下線（少し横幅を長く） */
.section-title::after {
    content: "";
    position: absolute;
    bottom: -2px; /* 三角形の配置を考慮し調整 */
    left: 50%;
    transform: translateX(-50%);
    width: 120%; /* 横幅をタイトルより長めに */
    height: 3px; /* 下線の太さ */
    background-color: #475A6D;
    z-index: 1; /* 下線を前面に */
}

/* 下線中央の外枠三角（#475A6D） */
.title-decoration {
    position: absolute;
    bottom: -13px; /* 下線の上に配置 */
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 14px;
    background-color: #475A6D;
    clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
    z-index: 2; /* 三角形を前面に配置 */
}

/* 内側の背景三角（#F9F6EC） */
.title-decoration::before {
    content: "";
    position: absolute;
    bottom: 6px; /* 外枠三角の内側に配置 */
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 12px;
    background-color: #fff;
    clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
    z-index: 3; /* 背景三角をさらに前面に配置 */
}
/* 開催概要用　※▼を白から色付きに */
.overview .title-decoration::before ,
.contact .title-decoration::before {
    background-color: #F9F6EC;
}
/* セクションタイトル（海外講演者用） */
.speakers .section-title {
    color: white; /* 海外講演者のみ白抜き */
}

.speakers .section-title::after {
    background-color: white;
}

/* 下線中央の外枠三角（#475A6D） */
.speakers .title-decoration {
    background-color: white;
}

/* 内側の背景三角（#F9F6EC） */
.speakers .title-decoration::before {
    background-color: #286EB3;
}

/* 開催概要の白背景 */
.content-box {
    background: white;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    width: 1200px;
    max-width: 90%;
    padding: 50px 50px; /* メインビジュアルのpaddingと統一 */
    margin: 30px auto;
    border-radius: 10px;
    box-sizing: border-box;
}


/* テーブルの基本スタイル */
.overview-table {
    border-collapse: collapse;
    margin: 0 auto;
    color: #3C3C3C; /* 基本のテキストカラー */
    font-size: 22px;
}

/* th のスタイル */
.overview-table th {
    padding: 15px;
    width: 20%; /* 幅を調整 */
    font-weight: bold;
    text-align: left;
}
    .overview-table th.vt{
        vertical-align: top;
    }
/* td のスタイル */
.overview-table td {
    padding: 15px;
    text-align: left;
}
    .overview-table td p{
        margin-top: 10px;
        font-size: 20px;
    }
/* アクセスボタン */

/* アクセスボタンのスタイル */
.access-btn {
    display: inline-flex; /* inline要素のように扱う */
    align-items: center; /* アイコンとテキストを中央揃え */
    margin-left: 20px;
    padding: 3px 16px 5px;
    border: 2px solid #5EB6D7;
    color: #5EB6D7;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    white-space: nowrap; /* テキストの折り返し防止 */
    font-size: 18px;
    transition:0.9s;
}

/* 外部SVGアイコンのスタイル */
.access-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px; /* テキストとの間隔 */
    vertical-align: middle; /* 垂直方向の揃え */
    transition:0.9s;
}
.access-btn:hover .access-icon {
    filter: invert(100%) brightness(1000%);
    transition:0.9s;
}

/* hover時のスタイル */
.access-btn:hover {
    background-color: #5EB6D7;
    color: white;
    transition:0.9s;
}

/* 参加登録ボタン */
.register-btn {
    display: inline-block;
    padding: 7px 15px 9px;
    background-color: #CF7F0F;
    color: white;
    text-decoration: none;
    border-radius: 25px; /* 丸みを帯びたボタン */
    font-weight: 500;
    font-size: 22px;
    letter-spacing: 0.1em;
    transition:0.9s;
}
.register-btn:hover {
    background-color: #b56a0c;
    transition:0.9s;
}

/* 締切のテキスト */
.deadline {
    color: #F44444;
    font-weight: normal;
    font-size: 20px;
    margin-left: 10px;
}

/* 申込締切のスタイル */
.bold-text {
    font-weight: bolder;
}

/* プログラムセクションの背景 */
.program {
    width: 100%;
    background-color: white; /* 背景を白に設定 */
    padding: 70px 0;
    text-align: center;
}

/* ボタンのスタイル */
.program-btn {
    display: inline-flex; /* ブロック化せず自然な配置 */
    align-items: center; /* アイコンとテキストを中央揃え */
    padding: 12px 70px;
    background-color: #5EB6D7;
    border: solid 3px #5EB6D7;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 18px;
    white-space: nowrap; /* ボタン内のテキストが折り返されないように */
    max-width: fit-content; /* コンテンツサイズに応じた幅を適用 */
    transition:0.9s;
}
/* hover時のスタイル */
.program-btn:hover {
    background-color: #fff;
    color: #5EB6D7;
    transition:0.9s;
}

/* 左側の三角アイコン */
.triangle-icon {
    width: 12px;
    height: 12px;
    display: inline-block;
    background-color: white; /* 白抜き */
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
    margin-right: 12px; /* テキストとの間隔 */
    transition:0.9s;
}
.program-btn:hover .triangle-icon {
    background-color: #5EB6D7;
    transition:0.9s;
}

/* ボタンテキスト */
.btn-text {
    text-align: center;
}

/* 右側の外部SVGアイコン */
.program-icon {
    width: 18px;
    height: 18px;
    margin-left: 12px; /* テキストとの間隔 */
    transition:0.9s;
}

/* hover時のアイコン変更（白） */
.program-btn:hover .program-icon {
    filter: brightness(0%) invert(40%) sepia(100%) saturate(500%) hue-rotate(165deg);
    transition:0.9s;
}



/* 懇親会のセクション */
.reception {
    width: 40%; /* 横幅を小さめに */
    background-color: #F6F6F6;
    border-radius: 20px; /* 角丸を適用 */
    margin: 30px auto;
    padding: 20px 15px;
    text-align: center;
}

/* 懇親会のタイトル */
.reception-title {
    font-size: 22px;
    font-weight: bolder;
    color: #3C3C3C;
    margin-bottom: 10px;
}

/* 懇親会のテキスト */
.reception-text {
    font-size: 18px;
    color: #3C3C3C;
    line-height: 1.6;
}

/* 海外講演者セクションの背景 */
.speakers {
    width: 100%;
    background: linear-gradient(to right, #3E91C4, #124AA1); /* グラデーション背景 */
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.speakers::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 2400px;
    height: 1344px;
    background: url(./img/overlay.webp) no-repeat center;
    mix-blend-mode: plus-lighter;
    opacity: 0.5;
}

.speakers-inner{
    position: relative;
    z-index: 1;
}
/* グリッド配置（2列×2行・幅を70%に調整） */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px; /* 余白を抑える */
    justify-content: center;
    width: 70%; /* 横幅を抑える */
    box-sizing: border-box;
    margin: 30px auto;
}


/* 講演者カード */
.speaker-card {
    background: white;
    display: flex;
    align-items: flex-start; /* コンテンツを上揃え */
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
}

/* 画像のサイズ調整 */
.speaker-card img {
    width: 175px;
    height: 175px;
    object-fit: cover;
    margin-right: 20px;
}


/* 講演者情報 */
.speaker-info {
    padding-top: 10px;
    text-align: left;
}


/* 講演者名 */
.speaker-name {
    font-size: 20px;
    font-weight: bolder;
    color: #3C3C3C;
    margin-bottom: 10px;
}


/* テキストスタイル */
.speaker-info p {
    font-size: 18px;
    color: #3C3C3C;
    line-height: 1.6;
}


/* お問い合わせセクションの背景 */
.contact {
    width: 100%;
    background-color: #F9F6EC;
    padding: 70px 0;
    text-align: center;
}

/* テキストのスタイル */
.contact-text {
    font-size: 18px;
    color: #3C3C3C;
    line-height: 1.6;
    width: 80%;
    margin: 40px auto 0;
}

/* フッターのスタイル */
.footer {
    background-color: #798897;
    padding: 40px 0;
    text-align: center;
}

/* フッターリンクの配置 */
.footer-links {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* リンクのスタイル */
.footer-links li {
    display: flex;
    align-items: center;
    margin: 0 25px; /* 余白を増やしてバランスを調整 */
}

/* 矢印のスタイル（サイズを小さく） */
.arrow {
    color: #F0DB83;
    font-size: 14px; /* サイズを小さめに変更 */
    margin-right: 14px; /* 余白を微調整 */
}

/* リンクのスタイル（boldを削除） */
.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.pagetop{
    position: fixed;
    right: 40px;
    bottom: 120px;
    width: 80px;
    height: 80px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.5s;
}
.pagetop a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    box-sizing: border-box;
    border:2px solid #5EB6D7;
    color: #5EB6D7;
    background: rgba(249,246,236,0.1);
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    position: relative;
    border-radius: 50%;
    text-decoration: none;
}
    .pagetop a::before{
        content: "";
        border-left: 2px solid #5EB6D7;
        border-top: 2px solid #5EB6D7;
        width: 16px;
        height: 16px;
        transform: rotate(45deg);
        position: absolute;
        top: calc(50% - 18px);
        left: calc(50% - 9px);
    }
    .pagetop a span{
        padding-top: 14px;
    }


.strikethrough {
    text-decoration: line-through;
}
.tc-r{
    color: #F44444;
}