@charset "UTF-8";
body {
    background: #fff;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: 500;
    font-size: 16px;
}
/* 段落 */
p {
    margin-top: 0;
    margin-bottom: 1em;
    font-size: 16px;
}
/* リンク */
a {
    color: #007bff;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
/* header */
header {}
header p {
    text-align: center;
    margin: 25px 0;
}
#main_image {
    background: url("../images/header_main.png") no-repeat scroll center top;
    background-size: cover;
    position: relative;
    align-content: center;
    padding: 2.0vh 0;
}
.keyword {
    text-align: center;
    padding: 1.0vh 0;
    max-width: 1000px;
    margin: 0 auto;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    align-items: baseline;
}
.keyword span {
    background: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    color: rgba(0, 0, 0, 1);
    margin: 3px 6px;
    display: inline-block;
    white-space: nowrap;
}
.header-text {
    max-width: 1200px;
    margin: 1.0em auto;
    padding: 0 1.0em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}
.header-text h1 {
    text-align: center;
    line-height: 1.0em;
    padding: 1vh 0 0 0;
    margin: 0 auto;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 2.4rem;
}
.header-text h2 {
    text-align: center;
    padding: 0 0 1vh 0;
    margin: 0 auto;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 3.0rem;
}
.header-text p {
    font-size: 1.1rem;
    line-height: 2.0rem;
    color: #fff;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.0rem 0;
}
.header-botton {
    margin: 1.0rem auto;
    text-align: center;
}
.header-botton-s {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: bold;
    border-radius: 5px;
    padding: 15px 40px;
    color: #003C88; /* テキスト色 */
    border: 3px solid #003C88; /* 枠線 */
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}
.header-botton-s p {
    margin-left: 1.0em;
    font-size: 1.6rem;
    margin-bottom: 0;
}
.header-botton-s:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border: 3px solid #ffffff; /* 枠線 */
    color: #ffffff;
}
.header-botton-s i {
    display: inline-block; /* transformを使うために必要 */
    transition: transform 0.3s ease; /* 移動にかける時間とアニメーションの速さ */
    margin-left: 0.8em;
}
.header-botton-s:hover i {
    transform: translateX(3px); /* X軸（横方向）に3ピクセル移動 */
}
/* キャッチコピー */
#tagline {
    max-width: 1100px;
    text-align: center;
    margin: 1.0em auto;
    padding: 1.0em;
}
#tagline h1 {
    font-size: 2.6rem;
    color: #001153;
    display: inline;
}
#tagline span {
    background: linear-gradient(transparent 60%, #F9F871 60%); /* (開始色 終了位置,終了色 開始位置) */
    margin: 0 0.2em;
}
/* 詳細 */
#lead {
    text-align: center;
    padding: 1.2em 1.0em;
    margin: 0 auto;
    font-size: 1.2rem;
}
#lead h1, #overview h1, #target_merit h1 {
    position: relative;
    display: inline-block;
    margin-bottom: 1em;
}
#lead h1::before, #overview h1::before, #target_merit h1::before {
    content: '';
    position: absolute;
    bottom: -15px;
    display: inline-block;
    width: 60px;
    height: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #003C88;
    border-radius: 2px;
}
/* 説明文（画像の上に配置） */
.l-txt {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 15px auto 30px;
    max-width: 900px;
    text-align: center;
    color: #333;
}
/* ==================================== */
/* 画像と特長リストの横並び配置（l-wrap）*/
/* ==================================== */
.l-wrap {
    max-width: 1000px;
    margin: 0 auto 4.0em;
    display: flex;
    align-items: center;
    gap: 40px;
}
.l-img-area {
    width: 45%;
    flex-shrink: 0;
}
.platform-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    vertical-align: middle;
}
.l-features-area {
    width: 55%;
    flex-grow: 1;
}
/* ==================================== */
/* 特長リストの装飾 (l-item, l-icon) */
/* ==================================== */
.features-list {
    list-style: none;
    padding-left: 0;
}
.l-item {
    font-size: 1.0rem;
    line-height: 1.6;
    padding: 10px 0 10px 25px;
    border-bottom: 1px dashed #ccc;
    position: relative;
    text-align: left;
}
.l-item:last-child {
    border-bottom: none;
}
.l-icon {
    color: #004b99;
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 1.0rem;
}
.features-list li strong {
    font-weight: bold;
    color: #004b99;
}
/* ==================================== */
/* #target_merit セクション全体の設定 */
/* ==================================== */
#target_merit {
    padding: 60px 20px;
    background: #F5F8FA;
    text-align: center;
    font-size: 1.2rem;
}
/* ==================================== */
/* コンテンツの横並び設定 (tm_wrap) */
/* ==================================== */
.tm_wrap {
    max-width: 1000px;
    margin: 1.0em auto 4.0em;
    display: flex; /* 参加対象者とメリットを横並びに */
    gap: 30px;
}
.tm_area {
    width: 50%; /* 左右均等に分割 */
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.tm_sub_ttl {
    font-size: 20px;
    font-weight: bold;
    color: #004b99;
    border-bottom: 2px solid #004b99;
    padding-bottom: 8px;
    margin-bottom: 20px;
}
/* メリット側の装飾を強調 */
.tm_merit_color {
    color: #cc0000; /* 赤色で強調 */
    border-bottom-color: #cc0000;
}
/* ==================================== */
/* リストアイテム (tm_list, tm_item) */
/* ==================================== */
.tm_list {
    list-style: none;
    padding-left: 0;
}
.tm_item {
    font-size: 15px;
    line-height: 1.6;
    text-align: left;
    padding: 12px 0;
    padding-left: 35px; /* アイコン分のスペースを確保 */
    border-bottom: 1px dashed #e0e0e0;
    position: relative;
}
.tm_item:last-child {
    border-bottom: none;
}
/* アイコンの装飾 */
.tm_icon {
    position: absolute;
    left: 0;
    top: 15px;
    font-size: 18px;
    color: #004b99; /* チェックアイコンの色 */
}
.tm_merit_icon {
    color: #ff9900; /* メリットアイコン（星）の色 */
}
/* 強調文字 */
.tm_strong {
    font-weight: bold;
    color: #cc0000; /* 赤色で強調 */
}
/* --- セッション表示スタイル（PC表示：3列横並び） --- */
.session-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 1.0em auto 2.0em;
}
.session-card {
    width: calc((100% - 60px) / 3);
    display: flex;
    flex-direction: column; /* カード内の要素を縦に配置 */
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px 15px;
    box-sizing: border-box;
}
.session-header {
    margin-bottom: 10px;
    min-height: 170px;
}
.session-header p {
    font-weight: bold;
    color: #ED338F;
    font-size: 1.0rem;
    margin-bottom: 5px;
}
.session-header h3 {
    font-size: 1.2rem; /* フォントサイズ */
    color: #004280; /* タイトル色 */
    font-weight: bold;
    line-height: normal;
    margin: 0;
}
.session-header span {
    font-size: 1.0rem; /* フォントサイズ */
    color: #004280; /* タイトル色 */
    font-weight: bold;
    margin: 0;
}
.session-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: flex-start;
}
.session-image {
    margin-bottom: 10px;
    flex-shrink: 0; /* 画像の高さが縮まらないように固定 */
}
.session-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}
.session-summary {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #444655;
    text-align: left;
}
/* セミナー概要 */
#overview {
    background: #ffffff;
    text-align: center;
    padding: 1.6em 1.0em;
    margin: 0 auto;
    font-size: 1.2rem;
}
.overview-text {
    max-width: 1000px;
    margin: 0 auto 2.0em;
    text-align: center;
}
.info-list {
    display: inline-block;
    text-align: left;
}
.item-row {
    display: flex;
    margin: 1.0em 0;
}
.item-label {
    width: 100px;
    font-weight: bold;
    margin-right: 15px;
    text-align: justify;
    text-align-last: justify;
}
.item-value {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding-left: 1.0em;
}
.note {
    font-size: 0.8rem;
    padding: 0;
    margin: 0;
}
/* ==================================== */
/* お客様注意事項 (#caution) のスタイル */
/* ==================================== */
#caution {
    background-color: #f7f7f7;
    width: 100%;
    margin: 0;
    padding: 30px 0;
    color: #444655;
}
.caution-content-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.0em;
}
#caution p {
    margin: 0 auto 10px;
    font-size: 12px;
}
#caution span {
    font-size: 0.6em;
}
#caution dt {
    font-size: 18px;
    font-weight: bold;
}
#caution dd {
    font-size: 12px;
    text-indent: -1.0em;
    padding-left: 1.0em;
}
#caution dd:before {
    content: "・";
}
/* リンクボタン */
.btn_set {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}
.btn_set ul {
    display: inline-block;
}
.btn_set li {
    display: inline;
    margin: 0 5px;
}
.btn a img {
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease 0s;
}
.btn a:hover img {
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.25);
    transform: translateY(-0.1875em);
}
/* 最下部ボタン */
#magazine {
    padding: 3.0em 0;
    text-align: center;
}
#magazine h3 {
    font-size: 2.6rem;
    font-weight: bold;
}
#magazine p {
    margin: 1.0em 0;
}
/* footer */
footer {
    background: #004280;
    text-align: center;
    color: #fff;
    font-weight: bold;
    padding: 50px 0;
}
.fixed-button {
    position: fixed; /* 要素をビューポートに固定する */
    right: 15px; /* 画面の右端からの位置 */
    bottom: 20px; /* 画面の下端からの位置 */
    transform: translateY(-50%); /* 自身の高さの半分だけ上にずらして真の垂直中央へ */
    z-index: 9999; /* 他の要素より手前に表示させる */
    background-color: #ED338F; /* ボタンの色 */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.fixed-button a {
    color: white;
    text-decoration: none;
    padding: 15px 25px 15px 35px; /* パディングでサイズ調整（左側を広めに） */
    display: block;
    font-size: 1.6rem;
    font-weight: bold;
}
.fixed-button span {
    margin-left: 2px;
}
.fixed-button:hover {
    background-color: #c42b74; /* 元の色 #ED338F より少し暗い色 */
    transform: translateY(-55%); /* 垂直方向の調整値を少し大きくする */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); /* 影を濃くする */
    cursor: pointer; /* マウスカーソルをポインターにする */
}
@media screen and (max-width: 1028px) {
    footer img {
        width: 100%;
    }
    footer p {
        margin: 0 20px;
    }
}
/* --- タブレット・スマホ表示 (768px以下で縦積み 1列表示) --- */
@media screen and (max-width: 768px) {
    .header-text h1 {
        font-size: 1.9rem;
    }
    .header-text h2 {
        font-size: 2.2rem;
    }
    .header-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    #tagline h1 {
        font-size: 1.8rem;
    }
    #lead {
        padding: 40px 15px;
    }
    #lead h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .l-txt {
        margin-bottom: 20px;
    }
    .l-wrap {
        flex-direction: column;
        gap: 20px;
    }
    .l-img-area, .l-features-area {
        width: 100%;
    }
	.features-list {
		padding: 1.0em 1.8em;
	}
    .platform-image {
        width: 80%;
    }
    #target_merit {
        padding: 40px 15px;
    }
    #target_merit h1 {
        font-size: 24px;
    }
    .tm_wrap {
        flex-direction: column; /* 縦並びに変更 */
        gap: 25px;
		padding: 1.0em 0.6em;
    }
    .tm_area {
        width: 100%;
        padding: 15px;
    }
    .tm_sub_ttl {
        font-size: 18px;
    }
    .tm_item {
        font-size: 14px;
        padding: 10px 0 10px 30px;
    }
    .tm_icon {
        top: 12px;
    }
    .session-container {
        padding: 0 15px;
    }
    .session-card {
        width: 100%; /* 1列表示 */
    }
    .session-header {
        min-height: 100px;
    }
    #overview {
        font-size: 1.0rem;
    }
    .overview-text {
        width: 90%;
    }
    .item-row {
        flex-direction: column;
        margin: 1.5em 0; /* 縦並びにしたときに上下の間隔を広げるなど調整 */
    }
    .item-label {
        position: relative;
        padding-left: 1.2em;
        width: auto;
        margin-right: 0;
        margin-bottom: 0.5em; /* ラベルと値の間に少し余白を追加 */
        text-align: left; /* justifyを解除し左寄せに */
        text-align-last: left;
    }
    .item-label:before {
        content: ""; /* 擬似要素に必ず必要なプロパティ */
        display: block;
        position: absolute;
        top: 50%; /* 垂直方向の中央に配置 */
        left: 0;
        transform: translateY(-50%); /* 垂直方向の中央揃えを微調整 */
        width: 10px; /* 四角の幅 */
        height: 10px; /* 四角の高さ */
        background-color: #66C3FF; /* 青色（例） */
    }
    .item-value {
        padding-left: 1.0em;
    }
    #magazine h3 {
        font-size: 1.8rem;
    }
}
@media screen and (max-width: 400px) {
    p {
        margin-top: 0;
        margin-bottom: 1em;
        font-size: 12px;
    }
    .keyword {
        font-size: 0.8rem;
    }
    .header-text p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    .header-botton-s {
        font-size: 1.8rem;
        padding: 10px 15px;
    }
    #tagline h1 {
        font-size: 1.0rem;
    }
    .session-header h3 {
        font-size: 1.1rem;
    }
    .btn_set {
        max-width: 90%;
    }
    .btn img {
        max-width: 100%;
    }
    #magazine h3 {
        font-size: 1.0rem;
    }
    #magazine p {
        margin: 0 auto;
        padding: 1.0em;
    }
}