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

/* ========================================
   1. 基本設定
======================================== */

/* フォント設定 */
// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900

.noto-sans jp-<uniquifier> {
    font-family: 'Noto Sans JP', sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}

/* 全体設定 */
body {
    margin-right: auto;
    margin-left: auto;
    padding: 0;
    /* background-color: white; */
    font-family: 'Noto Sans JP', sans-serif;
}

article {
    letter-spacing: 0;
}

/* ユーティリティクラス - 改行オフ */
.br-nopc {
    display: none !important;
}

/* ========================================
   2. ヘッダーセクション
======================================== */

/* ヘッダー全体 */
header {
    width: 100%;
    margin: auto;
}

/* ヘッダーバー */
.header-bar {
    display: flex;
    margin-top: 16px;
    margin-bottom: 16px;
}

/* ロゴコンテナ */
.logo-container {
    width: 50%;
    padding-left: 50px;
    padding-top: 6px;
}

/* ロゴ */
.logo {
    width: 140px;
}

/* お問い合わせボタンコンテナ */
.inquiry-container {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    padding-right: 50px;
}

/* お問い合わせボタン - 通常状態 */
.inquiry {
    width: 160px;
    height: 38px;
    line-height: 33px;
    background-color: #ffffff;
    border: 2px solid #be1a20;
    border-radius: 30px;
    color: #be1a20;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
}

/* お問い合わせボタン - ホバー状態 */
.inquiry:hover {
    width: 160px;
    height: 38px;
    line-height: 33px;
    background-color: #be1a20;
    border: 2px solid #be1a20;
    border-radius: 30px;
    color: #ffffff;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
}

/* お問い合わせリンク */
.top-inquiry {
    text-decoration: none;
}

/* ヘッダー下部の赤いライン */
.hr-main {
    border-top: 24px solid #be1a20;
}

/* ナビゲーションコンテナ */
.nav-container {
    width: 46%;
    margin: 0 auto;
}

/* ナビゲーションバー */
.navbar {
    display: flex;
    list-style-type: none;
}

/* ナビゲーション項目 */
.navbar li {
    flex: 1 1 auto;
    text-align: center;
    padding-right: 40px;
}

/* ナビゲーションリンク - 通常状態 */
.navbar a {
    display: block;
    padding: 1rem 0;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

/* ナビゲーションリンク - ホバー状態 */
.navbar a:hover {
    font-weight: bold;
    color: #be1a20;
    text-decoration: underline;
}

/* ========================================
   3. メインビジュアルセクション
======================================== */

/* メインビジュアル全体 */
.mainvisual {
    position: relative;
}

/* タイトル赤背景コンテナ */
.title-red-container {
    position: absolute;
    width: 400px;
    height: 70px;
    background-color: #be1a20;
    color: white;
    text-align: center;
    z-index: 2;
}

/* 研修タイトル */
.kenshu-title {
    font-size: 20px;
    font-weight: 700;
}

/* 研修サブタイトル */
.kenshu-subtitle {
    font-size: 18px;
    font-weight: 700;
}

/* メインPC画像コンテナ */
.main-pc-container {
    z-index: 1;
}

/* ========================================
   4. コンテンツセクション
======================================== */

/* プランタイトルコンテナ */
.plan-title-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* タイトル用水平線 */
.hr-title {
    border-top: 18px solid #be1a20;
    width: 32%;
}

/* プランタイトル */
.plan-title {
    width: 320px;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 40px;
    margin-right: 40px;
}

/* サブタイトルコンテナ */
.subtitle-container {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* サブタイトル */
.subtitle {
    text-align: center;
    font-size: 24px;
    font-weight: 400;
}

/* メニューコンテナ */
.menu-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* メニュー項目 */
.menu {
    width: 306px;
    margin-left: 16px;
    margin-right: 16px;
}

/* 価格表示1コンテナ */
.price01-container {
    width: 982px;
    margin: 0 auto;
    margin-top: 30px;
}

/* 価格表示1 */
.price01 {
    width: 642px;
    margin-right: 0;
    margin-left: auto;
}

/* 価格表示2コンテナ */
.price02-container {
    width: 982px;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 60px;
}

/* コース目的セクション */
.course-purpose {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

/* 目的タイトル */
.purpose-title {
    font-size: 32px;
    font-weight: 600;
}

/* PDFドキュメントコンテナ */
.document-container {
    width: 900px;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 20px;
}

/* ========================================
   5. フォームセクション
======================================== */

/* フォーム全体スタイル */
#form-style {
    width: 100%;
    height: 100%;
    margin: auto;
    background-color: #ffffff;
}

/* フォーム本体 */
#form {
    /* PDF対応時コメントアウト  */
    width: 100%;
    height: 100%;
    margin: auto;
    text-align: center;
    background-color: #ffffff;

    /* width: 100%;
    height: 100%; */
}

/* フォーム代替フレーズ */
.form--alternative-phrase {
    font-size: 24px;
    color: #333333;
}

/* フォーム代替フレーズ強調 */
.form--alternative-phrase__emphasis {
    font-size: 32px;
    color: #333333;
}

/* フォームフレーズ */
.form--phrase {
    font-size: 14px;
    text-align: left;
    margin-bottom: 5px;
}

/* 確認画面全体 */
.confirmation {
    width: 1100px;
    background-color: #ffffff;
    margin: auto;
    padding: 30px;
}

/* 確認画面行 */
.confirmation-box--tr {
    width: 100%;
    margin-bottom: 10px;
    min-height: 24px;
    display: flex;
}

/* 確認画面行 - 偶数行背景 */
.confirmation-box--tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* 確認画面行 - 奇数行背景 */
.confirmation-box--tr:nth-child(odd) {
    background-color: white;
}

/* 確認画面ラベル */
.confirmation-box--tr--label {
    padding-left: 5px;
    flex: 30%;
    max-width: 30%;
    line-height: 60px;
}

/* 確認画面定義 */
.confirmation-box--tr--define {
    flex: 40%;
    max-width: 40%;
    line-height: 60px;
    word-break: break-all;
}

/* 確認画面定義 - 改行対応 */
.confirmation-box--tr--define__wordbreak {
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 20px;
}

/* 確認画面テキストタイトル */
.confirmation--text__title {
    font-size: 28px;
}

/* 確認画面テキストコンテキスト */
.confirmation--text__context {
    font-size: 16px;
}

/* 確認画面ラベル */
.confirmation--label {
    font-size: 14px;
    font-weight: bold;
}

/* 戻るボタン - 通常状態 */
#back--button {
    width: 380px;
    height: 82px;
    background-color: #ffffff;
    border: 2px solid #be1a20;
    border-radius: 60px;
    color: #be1a20;
    box-sizing: border-box;
    display: block;
    margin: auto;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
}

/* 戻るボタン - ホバー状態 */
#back--button:hover {
    width: 380px;
    height: 82px;
    background-color: #be1a20;
    border: 2px solid #be1a20;
    border-radius: 60px;
    color: #ffffff;
    box-sizing: border-box;
    display: block;
    margin: auto;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
}

/* 送信ボタン - 無効状態 */
#submit--application {
    width: 380px;
    height: 82px;
    background-color: #c9caca;
    border: 2px solid #898989;
    border-radius: 60px;
    color: #ffffff;
    box-sizing: border-box;
    display: block;
    margin: auto;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
}

/* 送信ボタン - 有効状態 */
#submit--application.verified {
    width: 380px;
    height: 82px;
    background-color: #ffffff;
    border: 2px solid #be1a20;
    border-radius: 60px;
    color: #be1a20;
    box-sizing: border-box;
    display: block;
    margin: auto;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
}

/* 送信ボタン - 有効状態ホバー */
#submit--application.verified:hover {
    width: 380px;
    height: 82px;
    background-color: #be1a20;
    border: 2px solid #be1a20;
    border-radius: 60px;
    color: #ffffff;
    box-sizing: border-box;
    display: block;
    margin: auto;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
}

/* 送信ボタン無効状態（コメントアウト）
#submit--application:disabled{
    width: 380px;
    height: 82px;
    border: none;
    box-shadow: 0px 4px gray;
    color: white;
    font-size: 28px;
    background-color: gray;
    box-sizing: border-box;
    display: block;
    margin: auto;
    margin: 0 auto 20px;
} */

/* reCAPTCHAフォーム */
.recaptha-form {
    width: 100%;
    margin: auto;
}

/* reCAPTCHA */
#recaptcha {
    width: 304px;
    margin: auto;
}

/* 警告（コメントアウト）
#warning{
    text-align: center;
} */

/* 警告フォーム */
.warning-form {
    text-align: center;
    min-height: 40px;
    max-height: 40px;
    font-size: 14px;
    line-height: 1.5;
    padding-bottom: 20px;
    box-sizing: border-box;
}

/* 警告フォーム段落 */
.warning-form p {
    padding: 0;
    margin: auto;
}

/* 警告検証済み */
.warning__verified {
    visibility: hidden;
}

/* お問い合わせフォーム全体 */
#contact {
    width: 982px;
    height: 100%;
    margin: auto;
    margin-bottom: 20px;
    background-color: #ffffff;
}

/* お問い合わせフォーム水平線 */
#contact hr {
    width: 982px;
    height: 2px;
    background-color: #e6e6e6;
    border: none;
    color: #e6e6e6;
}

/* お問い合わせドメインエリア */
.contact--domain-area {
    display: flex;
    align-items: stretch;
    justify-content: center;
    margin: auto;
    font-size: 14px;
    line-height: 1.5;
    padding-left: 60px;
}

/* お問い合わせドメインエリア - 備考 */
.contact--domain-area--remark {
    display: flex;
    align-items: stretch;
    justify-content: center;
    margin: auto;
    font-size: 14px;
    height: 180px;
}

/* 必須項目ラベル */
.mandatory {
    background-color: #be1a20;
    border: 2px solid #be1a20;
    border-radius: 30px;
    width: 42px;
    height: 23px;
    padding: 2px 8px;
    font-size: 14px;
    font-weight: 700px;
    color: #ffffff;
    line-height: 1.5;
}

/* 任意項目ラベル */
.un-mandatory {
    background-color: #ffffff;
    width: 42px;
    height: 23px;
    padding: 2px 8px;
    font-size: 16px;
    color: #ffffff;
    line-height: 1.5;
}

/* お問い合わせドメインエリア上部 */
.contact--domain-area__top {
    display: flex;
    align-items: stretch;
    justify-content: center;
    margin: auto;
    padding-top: 20px;
    padding-left: 60px;
    font-size: 14px;
    line-height: 1.5;
}

/* お問い合わせドメイン */
.contact--domain {
    width: 200px;
    text-align: left;
    margin: auto;
}

/* お問い合わせドメイン - 備考 */
.contact--domain__remark {
    width: 200px;
    text-align: left;
    vertical-align: top;
    margin: 15px auto;
}

/* お問い合わせドメイン識別 */
.contact--domain-identity {
    width: 600px;
    text-align: left;
    margin: auto;
    padding-left: 0px;
}

/* お問い合わせドメイン識別 - テキストエリア */
.contact--domain-identity--textarea {
    width: 600px;
    text-align: left;
    margin-top: 15px;
}

/* お問い合わせドメイン識別 - チェックボックス */
.contact--domain-identity input[type='checkbox'] {
    font-size: 14px;
}

/* お問い合わせドメイン識別 - 入力フィールド */
.contact--domain-identity--input {
    width: 400px;
    height: 40px;
}

/* お問い合わせドメイン識別 - テキストエリア入力 */
.contact--domain-identity--input__textarea {
    width: 400px;
}

/* お問い合わせ注意事項 */
.contact--precautions {
    width: 982px;
    height: 250px;
    margin: auto auto 30px;
    overflow-y: scroll;
    border: solid 3px #e6e6e6;
}

/* プライバシー */
#privacy {
    padding: 0px;
    text-align: left;
}

/* フォーム送信ボタン - 通常状態 */
#form input[type='submit'] {
    width: 380px;
    height: 82px;
    background-color: #ffffff;
    border: 2px solid #be1a20;
    border-radius: 60px;
    color: #be1a20;
    box-sizing: border-box;
    display: block;
    margin: auto;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

/* フォーム送信ボタン - ホバー状態 */
#form input[type='submit']:hover {
    width: 380px;
    height: 82px;
    box-sizing: border-box;
    display: block;
    margin: auto;
    font-size: 20px;
    text-align: center;
    border: none;
    color: #ffffff;
    background-color: #be1a20;
    margin-top: 30px;
    margin-bottom: 30px;
}

/* 送信後エリア */
#post--submit-area {
    display: flex;
}

/* 電話番号セクション */
#tel {
    width: 100%;
    margin: auto;
    box-sizing: border-box;
    background-color: #ffffff;
    font-size: 20px;
    color: #000000;
    text-align: center;
    padding: 20px;
}

/* 電話番号強調 */
.tel__emphasis {
    font-size: 34px;
}

/* PMコンテナ */
.pm-container {
    width: 120px;
    margin: 0 auto;
    padding-top: 24px;
    padding-left: 20px;
}

/* 電話番号リンク */
#tel a {
    color: #000000;
}

/* ========================================
   6. フッターセクション
======================================== */

/* フッター全体 */
footer {
    width: 100%;
    margin: auto;
    background-color: #be1a20;
}

/* 会社情報 */
#company-info {
    display: flex;
    padding-bottom: 20px;
}

/* 白ロゴコンテナ */
.logo-white-container {
    width: 40%;
    padding-right: 20px;
    padding-top: 10px;
    display: flex;
    justify-content: flex-end;
}

/* 白ロゴ */
.logo-white {
    width: 140px;
    margin-top: 16px;
    margin-bottom: 16px;
}

/* 住所コンテナ */
.address-container {
    width: 60%;
    display: flex;
    justify-content: flex-start;
    padding-top: 24px;
    padding-left: 20px;
}

/* 住所 */
.address {
    width: 440px;
    color: #fff;
    font-size: 14px;
}

/* 会社情報リンク */
#company-info a {
    color: #ffffff;
}

/* 白ロゴホバー */
.logo-white:hover {
    opacity: 0.5;
}

/* コピーライト */
#copyright {
    text-align: center;
    margin: auto;
    padding: auto;
    height: 40px;
    background-color: #be1a20;
    color: #ffffff;
    line-height: 40px;
    font-size: 12px;
    font-weight: 400;
}

/* ========================================
   7. その他・ユーティリティ
======================================== */

/* プロセス完了ラップ */
.process-finished-wrap {
    width: 100%;
    text-align: center;
}

/* プロセス完了フィールド */
.process-finished-field {
    width: 1100px;
    margin: auto;
    text-align: center;
}

/* プロセス完了ラップ段落 */
.process-finished-wrap p {
    font-size: 24px;
    margin-bottom: 10px;
}

/* プロセス完了時間 */
.process-finished--time {
    background-color: #f68d11;
}

/* ボタンマージン調整 */
.button--adjust-margin {
    display: inline-block;
}

/* 下線なしリンク */
a.non-underlined {
    text-decoration: none;
}

/* オレンジポイント */
.orange-point {
    margin: 0 auto 20px;
}

/* クリアフィックス */
.clearfix::after {
    content: '';
    display: block;
    clear: both;
}

/* バリデーション用エラーラベル */
label.error {
    background-color: red;
    color: white;
    line-height: 2;
    margin-left: 48px;
    border-radius: 5px;
    font-size: 12px;
    padding-left: 2px;
    padding-right: 2px;
}
