@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');



/* --- 基本設定 & 変数 --- */
:root {
    --color-pink: #ef4444;
    --color-text: #333;
}

/* --- ページ全体レイアウト --- */
body {
    margin: 0;
    font-family: 'Noto Sans JP', 'Helvetica Neue', 'Arial', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', sans-serif;
    color: var(--color-text);
    /* 背景にグラデーションを指定 */
    background: linear-gradient(90deg, #F1698C 0%, #F69679 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center; /* コンテンツを中央揃え */
    align-items: center;
    padding: 40px 20px;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sp_br{
    display: none;
}
.nowrap{
    display: inline-block;

}
@media (max-width: 768px) {
    .sp_br{
    display: block;
}
}

/* --- 白いコンテンツエリア --- */
.page-wrapper {
    width: 100%;
    max-width: 1700px; /* 白いエリアの最大幅 */
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 20px 0 60px; /* 内側の余白（上下）*/
    overflow: hidden; /* 角丸を適用するため */
}


/* --- ヒーローセクション --- */
.hero {
    padding: 1rem 0;
    text-align: center;
}
.hero_container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- プログラム紹介セクション --- */
.programs-container {
    display: flex;
    justify-content: center; /* カードを中央に配置 */
    gap: 30px;
    align-items: stretch;
}

.bg-dot{background-color: #ffffff;background-image: radial-gradient(#e5e7eb 1.5px, transparent 1.5px);background-size: 20px 20px;padding: 3.2rem 0 2rem;margin-bottom:3.2rem;}

.program-card {
    flex: 0 1 420px; /* カードの横幅を固定 */
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #E0D4F3 0%, #FFFFFF 100%);
    padding: 24px;
    border-radius: 24px;
    text-align: center;
}

/* 上部の白い丸ボタン */
.card-pill {
    display: inline-block;
    background-color: #fff;
    color: #59499C;
    padding: 0.5rem;
    border-radius: 9999px;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-title {
    color: #59499C;
    font-size: 1.78rem;
    font-weight: 800;
    margin: 0 0 20px;
}

.card-image {
    margin-bottom: 10px;
}
.card-image img{
    max-width:180px;
}

/* 説明文エリア */
.card-description {
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: bold;
}
.card-description p {
    margin: 0;
}
.card-description strong {
    display: block;
    font-size: 1.8em;
    font-weight: 800;
}
.description-sub {
    font-weight: bold;
}


/* 日付エリア */
.card-date-box {
    background-color: #584C9E;
    color: #fff;
    border-radius: 16px;
    padding: 20px;
    margin-top: auto; /* カード下部に配置 */
    margin-bottom: 25px;
    min-height: 95px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.date-text {
    font-size: 1.1em;
    font-weight: 500;
}
.date-text strong {
    font-size: 1.5em;
    font-weight: 800;
}
.online-tag {
    display: inline-block;
    background-color: #fff;
    color: #584C9E;
    padding: 8px 20px;
    border-radius: 9999px;
    margin-top: 8px;
    font-size: 0.9em;
    font-weight: bold;
}
.venue{
    font-size: 0.8rem;
    margin-top:0.5rem
}
/* --- 伴走支援プログラムカード（青色）の追加スタイル --- */

.program-card.support-card {
    background: linear-gradient(180deg, #C5E5FF 0%, #FFFFFF 100%);
}

/* 上部の白い丸ボタン（文字色のみ変更） */
.support-card .card-pill {
    color: #2563eb;
}

/* メインタイトル（文字色のみ変更） */
.support-card .card-title {
    color: #1d4ed8;
}

/* 説明文エリア */
.support-card .support-description {
    margin: auto 0; /* 上下の余白を自動でとり、垂直方向に中央寄せ */
    font-size: 1.1em;
    font-weight: bold;
    color: #374151;
}
.support-card .support-description strong {
    font-size: 1.5em;
}

/* 日付エリア */
.support-card .card-date-box {
    background-color: #1d4ed8; /* 濃い青 */
    padding: 25px 20px;
}
.date-text-support span {
    display: block; /* 改行させる */
    font-size: 1.1em;
    line-height: 1.6;
}
.date-text-support span:first-child {
    font-weight: 500;
}
.date-text-support strong {
    font-size: 1.5em;
    font-weight: 800;
    margin: 0 5px;
}
/* 3D風のCTAボタン */
.cta-button-3d {
    display: inline-block;
    background-color: #FFF02D; /* 黄色 */
    color: #422006;
    font-weight: bold;
    font-size: 1.1em;
    padding: 18px 40px;
    border-radius: 9999px;
    text-decoration: none;
    border: none;
    /* 影で立体感を表現 */
    box-shadow: 0 6px 0 0 #9D9200;
    transition: transform 0.1s ease-out, box-shadow 0.1s ease-out;
}
.cta-button-3d:hover {
    transform: translateY(2px);
    box-shadow: 0 4px 0 0 #9D9200;
}
.cta-button-3d:active {
    transform: translateY(6px);
    box-shadow: 0 0px 0 0 #f59e0b;
}



/* --- 事業目的セクション --- */
.purpose {
    padding-top: 60px;
    padding-bottom: 60px; /* ここも余白を追加 */
}
.purpose-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 980px;
}
.purpose-text { flex: 1.2; }
.purpose-image { flex: 0.8; text-align: center; }

.purpose-title-wrapper {
    margin-bottom: 25px;
}
.purpose-title-wrapper h3 {
    font-size: 1.6rem;
    margin: 0;
    display: inline-block;
    
}
.purpose-text p {
    margin: 0 0 1em;
    line-height: 1.8;
}


/* --- レスポンシブ調整 --- */
@media (max-width: 980px) {
    .content-area { margin: 20px auto; } /* スマホでの外側余白 */
    .programs-container,
    .purpose-container { flex-direction: column; }
    .purpose-text { order: 2; }
    .purpose-image {order: 1;}
    .purpose-image img{
        max-height:200px
    }
    .purpose {
    padding-top: 20px;
    padding-bottom: 0px;
    }
    .card-title {
        font-size: 1.4rem;
        margin: 0 0 20px;
    }
    .card-date-box{
        min-height:auto;
        margin-top:1rem
    }


}
@media (max-width: 540px) {
.card-pill{
    font-size: 1rem;
}
.card-description strong{
    font-size:1.4rem
}
.description-sub{
    font-size: 0.85rem;
}
.support-card .support-description{
    font-size: 0.85rem;
}
.support-card .support-description strong {
    font-size: 1.2rem;
}
.date-text-support span {
    display: block;
    font-size: 0.85em;
    line-height: 1.6;
}
.date-text-support strong{
    font-size: 1.2em;
}
}
/* --- セミナー詳細：ヘッダー --- */
.seminar-wrapper {
    background: linear-gradient(180deg, #FEFDFF 0%, #FAF6FF 100%);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(100, 116, 139, 0.1);
    position: relative; /* 重なりのために指定 */
    z-index: 2;
}


/* --- セミナー詳細：ヘッダー --- */
.seminar-header {
    background-color: #59499C;
    text-align: center;
    padding: 2rem;
    color: #fff;
    border-radius: 45px 45px 0 0;
}
/* 白い丸ボタンに変更 */
.header-pill {
    display: inline-block;
    background-color: #fff;
    color: #59499C; /* 文字色を紫に */
    padding: 12px 30px;
    border-radius: 9999px;
    font-size: 1.35em;
    font-weight: bold;
    margin-bottom: 0.4rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* 影を調整 */
}
/* 文字色を白に変更 */
.seminar-header h1 {
    font-size: 2.8rem;
    margin: 0;
    color: #fff;
    font-weight: 800;
}

/* --- セミナー詳細ページ：セミナーについて --- */
.seminar-about {
    margin-bottom: 50px;
}
.section-title {
    text-align: center;
    margin-bottom: 25px;
}
.section-title h2 {
    font-size: 1.8em;
    margin: 0;
    font-weight: 700;
}
.section-title p {
    color: #59499C; /* グレー */
    font-weight: bold;
    margin: 8px 0 0;
    letter-spacing: 6px; /* 文字間隔を追加 */
    text-transform: uppercase; /* 大文字に */
    font-size: 0.65rem;
}
.about-description {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
    line-height: 1.9;
    color: #374151;
}
.seminar-details-table {
    max-width: 820px;
    margin: auto;
    border: 1px solid #c0b0db;
}
.table-row {
    display: flex;
    border-bottom: 1px solid #c0b0db; /* 区切り線を薄く */
    background-color: #fff; /* 背景を白に */
}
.table-row:last-child {
    border-bottom: none;
}
.table-label {
    background-color: #E0D5F3; /* 薄い紫 */
    font-weight: bold;
    padding: 20px;
    flex: 0 0 160px; /* 幅を固定 */
    display: flex;
    align-items: center;
    justify-content: center; /* 文字を中央揃え */
    font-size: 0.95em;
    color: #59499C; /* やや濃い紫 */
}
.table-data {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column; /* 箇条書きと注釈を縦に並べる */
    justify-content: center;
    color: #111827;
}
.table-data .date_lg{
 font-size: 1.15rem;
 display: contents;
font-weight: bold;
}
/* 箇条書きのスタイル */
.table-data ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.table-data li {
    position: relative;
    padding-left: 1.4em; /* 点のためのスペース */
    margin-bottom: 0.5em;
}
.table-data li:last-child {
    margin-bottom: 0;
}
/* リストの黒い点をCSSで作成 */
.table-data li::before {
    content: '•';
    position: absolute;
    left: 0.4em;
    top: 0;
    color: #374151;
    font-size: 1.2em;
}

.table-data small {
    display: block;
    color: #6b7280;
    margin-top: 10px;
    font-size: 0.85em;
    line-height: 1.6;
}

/* --- セミナー内容 --- */
.seminar-contents {
    margin: 50px 0;
    max-width: 900px;
    margin: auto;
}
.contents-header {
    background-color: #43368D; /* 濃い紫 */
    color: #fff;
    padding: 1rem 0 1rem 2.5rem; /* 左側にアイコン用の余白を確保 */
    border-radius: 8px;
    position: relative; /* アイコンを配置するための基準 */
}
.contents-header::before {
    content: '';
    position: absolute;
    top: 1em;
    left: 1em;
    border-width: 16px 16px 0 0; /* 右上方向の三角形 */
    border-style: solid;
    border-color: #facc15 transparent transparent; /* 黄色い三角形 */
}
.contents-header h2 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: bold;
}

.contents-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-item {
    display: flex;
    align-items: center;
    gap: 0px;
    padding: 1.8rem;
     /* 薄い区切り線 */
    background: #fff;
    margin: 2rem 0;
}
.content-item:last-child {
    border-bottom: none;
}

.item-text { flex: 1; }
.item-image { flex-shrink: 0; }

.item-image img{
   max-width: 275px;
}
/* --- 数字付き見出しのスタイル --- */
.item-heading {
    display: flex; /* 番号とタイトルを横並びにする */
    align-items: center; /* 上下中央揃え */
    gap: 20px; /* 番号とタイトルの間の余白 */
    position: relative; /* 下線を入れるための基準 */
    padding-bottom: 15px; /* 下線のためのスペース */
    margin-bottom: 32px; /* 見出しとリストの間の余白 */
}

/* 下のボーダー（2色） */
.item-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px; /* ボーダーの太さ */
    border-radius: 4px;
    /* グラデーションで2色のボーダーを作成 */
    background: linear-gradient(to right, #43368D 15%, #e5e7eb 0%);
}

/* 番号のスタイル */
.item-number {
    font-size: 2.6em;
    font-weight: 800;
    color: #43368D;
    line-height: 1;
    margin: 0;
}

/* タイトルとサブタイトルをまとめるグループ */
.item-title-group {
    flex: 1;
}

/* サブタイトルのスタイル */
.item-subtitle {
    font-size: 1.1em;
    font-weight: bold;
    color: #4338ca;
    margin: 0;
}

/* メインタイトルのスタイル */
.item-title {
    font-size: 1.9em;
    font-weight: 800;
    color: #4338ca;
    margin: 5px 0 0;
    line-height: 1.4;
}

.item-text h3 {
    font-size: 1.48em;
    font-weight: 800;
    color: #43368D; /* 濃いグレー */
    line-height: 1.6;
    margin: 0;
}

.item-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.item-text li {
    position: relative;
    padding-left: 1.4em;
    margin-bottom: 0.8em;
    line-height: 1.8;
}
/* リストの青い点をCSSで作成 */
.item-text li::before {
    content: '';
    position: absolute;
    left: 0.3em;
    top: 0.7em;
    width: 8px;
    height: 8px;
    background-color: #43368D; /* 明るい青 */
    border-radius: 50%;
}
/*Instagram伴走支援プログラムについて*/
#seminar02 {
    margin-top:6.4rem
}
#seminar02 .seminar-wrapper{
background: linear-gradient(180deg, #C8E6FF 0%, #F8FCFF 100%);
}
#seminar02 .seminar-header {
    background-color: #0058A7;
}
#seminar02 .seminar-contents{
    max-width: 1000px;
    margin-bottom: 64px;
}
#seminar02 .header-pill {
    color: #0058a7;
}
#seminar02 .section-title p{
     color: #0058A7;
}
#seminar02 .table-label{
    background-color: #B7E3FF;
    color: #0058A7;
}
#seminar02 .seminar-details-table ,#seminar02 .table-row{
  border-color:#91c8eb;
}
#seminar02 .img_wrap{
    max-width: 1000px;
    margin:auto;
    margin-bottom: 4rem;
}

/* --- スケジュールセクション --- */
#seminar02 .section-title {
    text-align: center;
}

/* 全体レイアウト（左右2カラム） */
.schedule-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.schedule-visual {
    flex: 0 0 280px; /* 左側イラストの幅を固定 */
    text-align: center;
}
.schedule-timeline {
    flex: 1; /* 右側タイムラインが残りの幅をすべて使う */
}

/* --- プロセスフロー --- */
.process-flow {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    gap: 28px; /* アイテム間の余白 */
    justify-content: space-between;
}

.flow-item {
    position: relative;
    padding: 20px 31px;
    text-align: center;
    background: #fff;
}

/* 矢印の作成 */
.flow-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -24px; /* アイテムの外側に配置 */
    transform: translateY(-50%);
    width: 0;
    height: 0;
    /* borderを使って三角形を作成 */
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 12px solid #0058A7; /* 参考サイトの濃い青 */
    z-index: 2;
}

.flow-item strong {
    display: block;
    color: #0097D3; /* 参考サイトのアクセントカラー */
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 8px;
}

.flow-item span {
    display: block;
    font-size: 0.85em;
    color: #333;
}

/* ドッグイヤーのスタイル */
.dog-ear {
    background: #fff;
    position: relative;
    border-radius: 0 8px 8px 8px; /* 左上以外の角を丸める */
}
.dog-ear::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    /* borderを使って三角形を作成 */
    border-width: 15px 15px 0 0;
    border-style: solid;
    border-color: #e0f2fe transparent transparent; /* 明るい水色 */
}

/* 最後の丸い要素のスタイル */
.flow-item.is-final {
    background-color: #0097D3; /* 明るい青 */
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 25px;
    font-weight: bold;
    line-height: 1.5;
}
.flow-item.is-final strong {
    color: #fff;
    font-size: 1.1em;
    margin: 0;
}
/* --- 各月のタイムラインブロック --- */
.timeline-block {
    margin-bottom: 40px;
}

/* 吹き出し風ヘッダー */
.timeline-header {
    background-color: #0058A7; /* 参考サイトの濃い青 */
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    position: relative; /* 吹き出しの矢印を配置するための基準 */
    margin: 0;
}
/* 吹き出しの矢印部分 */
.timeline-header::after {
    content: '';
    position: absolute;
    bottom: -10px; /* ヘッダーの下に配置 */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    /* borderを使って下向きの三角形を作成 */
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #0058A7; /* ヘッダーと同じ色 */
}

/* 白いボックスのグリッドエリア */
.timeline-items {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2カラムグリッド */
     /* ヘッダーとの余白 */
    gap: 1rem;
    margin-top: 2rem;
}
.timeline-items p {
    background-color: #fff;
    color: #111827;
    padding: 20px 16px;
    min-height: 50px;
    line-height: 1.7;
    font-weight: 500;

    /* テキストを上下左右中央揃えにする */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0;
}

/* --- レスポンシブ調整 --- */
@media screen and (min-width: 768px) and (max-width: 900px)  {
    .item-heading{
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 900px) {
    .schedule-container {
        flex-direction: column;
    }
    .schedule-visual {
        display: none; /* スマホではイラストを非表示に */
    }
    .contents-header{
        margin-top:2rem
    }
    .process-flow {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    .process-flow li:not(:last-child)::after {
        /* スマホでは矢印を下に変更 */
        right: 0;
        left: 0;
        margin: auto;
        top: auto;
        bottom: -23px;
        transform: translateX(50%) rotate(90deg);
    }
    .process-flow li.is-final {
        align-self: center;
        width: 100%;
    }
    .timeline-items {
        grid-template-columns: 1fr; /* 1カラムに */
    }
    .seminar-header{
        padding:1rem
    }
    .header-pill{
        font-size: 0.95rem;
        padding: 8px 21px;
    }
    .seminar-header h1{
        font-size: 1.5rem;
    }
    .section-title h2 {
    font-size: 1.3em;
    }
    .item-heading{
        flex-direction: column;
    }
    .item-heading::after{
        background: #e5e7eb;
    }
    .seminar-about {
    margin-bottom: 0px;
    }
    .schedule-timeline {
    width:100%
}
    .dog-ear {
    width:100%;
    padding: 20px 0;
    background: #fff;
    position: relative;
    border-radius: 0 8px 8px 8px; /* 左上以外の角を丸める */
}
.dog-ear::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    /* borderを使って三角形を作成 */
    border-width: 15px 15px 0 0;
    border-style: solid;
    border-color: #e0f2fe transparent transparent; /* 明るい水色 */
}

}
/* --- 充実コンテンツセクション --- */
.extra-content-section {
    margin-top: 40px; /* 上のセクションとの余白 */
}

.extra-content-header {
    background-color: #0ca5e9; /* 明るい青 */
    color: #fff;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    padding: 18px 30px;
    border-radius: 9999px; /* 丸い形 */
    margin: auto;
    margin-bottom: 50px;
    max-width: 80%;
}
.extra-content-header .highlight {
  color: #FFF462; /* 黄色 */
}
.extra-content-body {
    display: flex;
    align-items: center;
    gap: 40px;
}

.extra-content-visual {
    flex: 0 0 300px; /* イラストエリアの幅を固定 */
    text-align: center;
}

.extra-content-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2カラム */
    gap: 20px; /* 行と列の間の余白 */
}
.grid-item {
    background:#fff;
    padding:1rem
}
.grid-item .item-title {
    font-size: 1.3em;
    font-weight: bold;
    color: #0097D3; /* 濃い青 */
    margin: 0 0 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #0097D3; /* 青い下線 */
    line-height: 1.6;
    min-height: 66px;
    display: flex;
    align-items: center;
}

.grid-item .item-description {
    margin: 0;
    font-size: 0.95em;
    line-height: 1.8;
    color: #333;
}

/* --- レスポンシブ調整 --- */
@media (max-width: 900px) {
    .extra-content-body {
        flex-direction: column-reverse;
        gap: 20px;
    }
    .extra-content-grid {
        grid-template-columns: 1fr; /* 1カラムに */
    }
    .extra-content-header{
        font-size:1.4rem;
        padding:1rem;
        margin-bottom: 1.5rem;
    }
    .extra-content-visual img{
        max-height:400px;
    }
}

/* --- CTAボタン --- */
.seminar-cta {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}
.cta-button-large {
    display: inline-block;
    background-color: #FFF02D; /* 黄色 */
    color: #422006;
    font-weight: bold;
    font-size: 1.6em;
    padding: 20px 60px;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 6px 0 0 #9D9200, 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.1s ease-out, box-shadow 0.1s ease-out;
}
.cta-button-large:hover {
    transform: translateY(2px);
    box-shadow: 0 4px 0 0  #9D9200, 0 6px 15px rgba(0,0,0,0.15);
}
.cta-button-large:active {
    transform: translateY(6px);
    box-shadow: 0 0px 0 0  #9D9200, 0 2px 5px rgba(0,0,0,0.15);
}




/* --- レスポンシブ調整 --- */
@media (max-width: 768px) {
    .content-item {
        flex-direction: column;
    }
    .item-image {
        order: -1; /* 画像を上にする */
        margin-bottom: 20px;
    }
    .item-text {
        text-align: center;
        flex: 1;
        width: 100%;
    }
    .item-text ul {
        text-align: left; /* リストは左揃えの方が見やすい */
    }
}

/* --- レスポンシブ --- */
@media (max-width: 768px) {
    .seminar-wrapper { padding: 20px;background: #FAF6FF;}
    .table-row { flex-direction: column; }
    .table-label { border-bottom: 1px solid #ddd; flex: 0;}
    .content-item { flex-direction: column; text-align: center; }
    .item-image { order: -1; margin-bottom: 20px; } /* 画像を上にする */
    .content-item::before { font-size: 5em; left: 10px; top: 10px; transform: none; }
    .item-text ul { text-align: left; }
    
}
@media (max-width: 500px) {
.cta-button-large {
    font-size: 1.35em;
    padding: 20px 20px;
    width: calc(100% - 40px);
}
}

/* --- フッター --- */
.footer {
    background-color: #fff;
    padding: 60px 0 0;
}

.info-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.info-box {
    flex: 1;
    text-align: center;
}

.info-box-header {
    display: inline-block;
    background-color: #f08080; /* コーラルピンク */
    color: #fff;
    font-size: 0.8em;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    min-width: 80%;
}

.info-box:last-child {
    border-left: 1px solid #f08080; /* 縦線の色と太さ */
    padding-left: 2rem;
}

.organizer-name {
    font-size: 1em;
    font-weight: bold;
    color: #333;
}

.company-name {
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 0;
}
.company-name a {
    color: #0d6efd;
    text-decoration: underline;
}

.disclaimer {
    font-size: 0.85em;
    color: #666;
    margin: 15px 0 30px;
     /* 長すぎる場合に改行させる */
    margin-left: auto;
    margin-right: auto;
}

.contact-details {
    display: inline-flex; /* 要素を中央に配置しつつ中身は左揃え */
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-weight: 500;
    width: 100%;
}
.contact-item .label {
    background-color: #868e96; /* グレー */
    color: #fff;
    font-size: 0.8em;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 4px;
    flex-shrink: 0; /* ラベルが縮まないようにする */
    display: block;
    width: 100;
}
.contact-item a {
    color: #333;
    text-decoration: none;
}
.contact-item small {
    font-size: 0.85em;
    color: #666;
    margin-left: 5px;
    display: block;
}

.copyright {
    text-align: center;
    padding-top: 50px;
    font-size: 0.8em;
    color: #333;
}
.copyright p {
    margin: 0;
}

/* ページTOPに戻るボタンのスタイル */
#back-to-top {
  /* 見た目 */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #333; /* ボタンの背景色 */
  color: #fff; /* アイコンの色 */
  border-radius: 50%; /* 円形にする */
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);

  /* 配置 */
  position: fixed; /* 画面に固定 */
  right: 20px; /* 右から20pxの位置 */
  bottom: 20px; /* 下から20pxの位置 */
  z-index: 1000; /* 他の要素より手前に表示 */

  /* 表示/非表示のアニメーション */
  opacity: 0; /* 最初は透明 */
  visibility: hidden; /* 最初は非表示 */
  transition: opacity 0.3s, visibility 0.3s;
}

/* 表示時のスタイル */
#back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* ホバー時のスタイル */
#back-to-top:hover {
  background-color: #555; /* ホバー時の背景色 */
}

@media (max-width: 1050px) {
        .info-box{
        width: 100%;
    }
    .info-container {
        flex-direction: column;
    }
        .info-box:last-child {
            border:none;
            padding-left: 0;
        }
    .contact-item {
      display:block
    }

}

/* --- レスポンシブ調整 --- */
@media (max-width: 768px) {

    .info-container {
        flex-direction: column;
    }
        .info-box:last-child {
            border:none;
            padding-left: 0;
        }
    .contact-item {
      display:block
    }
}

/* --- レスポンシブ対応 (スマートフォン) --- */
@media (max-width: 768px) {
    body {
        padding: 20px 10px;
    }
    .page-wrapper {
        padding: 10px 0 40px;
    }
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    .hero-title {
        font-size: 2.5em;
    }
    .hero-tags {
        flex-direction: column;
        border: none;
        gap: 10px;
    }
    .tag-free, .tag-target {
        border-radius: 8px;
    }
    .tag-target {
        border: 2px solid #f3f4f6;
    }
}
.seminar_attention{
    background: #f3f2bf;
    font-weight: bold;
    text-align: center;
    max-width: 800px;
    margin: 3rem auto;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
}