@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;
}
.keyword span {
    background: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    color: rgba(0, 0, 0, 1);
	margin: 0 3px;
}
.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 {
    position: relative;
    display: inline-block;
    margin-bottom: 1em;
}
#lead h1::before, #overview 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: #004280;
    border-radius: 2px;
}
/* --- セッション表示スタイル（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: #F5F8FA;
    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 {
    padding: 10px 100px; /*上下の余白100px*/
    width: 900px;
    margin: 1.0em auto;
    padding: 1.0em;
    color: #444655;
}
#caution p {
    margin: 0 auto 10px;
    font-size: 12px;
}
#caution span {
    font-size: 0.6em;
}
#caution dl {
    margin: 10px auto;
}
#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: 1.0em 0 2.0em;
    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.4rem;
    }
    #tagline h1 {
        font-size: 1.8rem;
    }
    .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;
    }
    #caution {
        width: 90%;
    }
    #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;
    }
}