@charset "utf-8";

/*
------------------------------------------------------------------------------------------------------------
全体のCSS設定
------------------------------------------------------------------------------------------------------------
*/

body {
  background: #ffffff;
  /*全体の背景色*/
  color: #292929;
  /*全体の文字色*/
  font: 20px/1.6 "Hiragino Kaku GothicProN", "Helvetica Neue";
  /* 全体のフォント設定 */
}

html {
  scroll-behavior: smooth;
  /* ブラウザネイティブのスムーズスクロールを有効化 */
}


/*
------------------------------------------------------------------------------------------------------------
リンク（全般）設定のCSS
------------------------------------------------------------------------------------------------------------
*/

a {
  color: #555;
  /*リンクテキストの色*/
  text-decoration: none;
  /* テキストの下線の非表示 */
}


a:hover .btn {
  position: relative;
  /*要素の位置をずらす(相対関係)*/
  top: 3pt;
  /*要素の位置を下に3ptずらす*/
  left: 3pt;
  /* 要素の位置を右に3ptずらす */
}


/*
------------------------------------------------------------------------------------------------------------
コンテナー（HPを囲むブロック）のCSS
------------------------------------------------------------------------------------------------------------
*/

#container {
  width: 750px;
  /*コンテナー幅*/
  background-color: #fff;
  /*背景色設定*/
  border-left: 1px solid #ccc;
  /*左外枠の設定*/
  border-right: 1px solid #ccc;
  /*右外枠の設定*/
  text-align: center;
  margin: 0 auto;
  /*外側の余白設定*/
  overflow: hidden;
}

/*
------------------------------------------------------------------------------------------------------------
開催日程詳細について
------------------------------------------------------------------------------------------------------------
*/

.boshu-all {
  width: 100%;
  padding-top: 70px;
  padding-left: 30px;
  padding-right: 20px;
}

.boshu-bg {
  background-image: url(../images/kaisai-bg.png);
  min-height: 731px;
  margin-bottom: 10px;
}

.midashi {
  text-align: left;
  padding: 11px;
  color: #194493;
  font-size: 23px;
  font-weight: 600;
  width: 15%;
  border-top: #194493 3px solid;
}

.detail {
  text-align: left;
  line-height: 1.3em;
  padding: 10px;
  width: 73%;
  border-top: #f7f7f7 3px solid;
  font-size: 26px;
}

.list_check {
  list-style-position: inside;
  /* list-style-image: url(../images/triangle-sp-detail.png); */
  width: auto
}

.list_item {
  display: list-item;
  font-size: 23px;
  text-align: left;
  padding-left: 5px;
}

.under-btn {
  margin-top: 45px;
}

.under-btn:hover {
  position: relative;
  top: 3pt;
  left: 3pt;
}

/*
------------------------------------------------------------------------------------------------------------
講師紹介セクションCSS
------------------------------------------------------------------------------------------------------------
*/
.koshi {
  width: 700px;
  margin: 0 auto;
  padding: 30px 0 40px 0;
}

.koshi-text {
  text-align: justify;
  text-align-last: left;
  font-size: 20px;
  font-weight: 400;
  color: #333;
  line-height: 32px;
}

@media (max-width: 768px) {
  .koshi-text {
    text-align: justify;
    text-align-last: left;
    font-size: 28px;
    font-weight: 400;
    color: #333;
    line-height: 46px;
  }
}

/*
------------------------------------------------------------------------------------------------------------
講師メッセージセクションCSS
------------------------------------------------------------------------------------------------------------
*/

/* 悩み事例を背景配置にするCSS */
.nayami {
  background-image: url(../images/nayami3.png);
  height: 553px;
  width: 100%;
}

/* 樺木講師のプロフィール写真を配置 */
.profile {
  float: right;
  margin-top: 20px;
}

.koshi-message {
  width: 700px;
  margin: 0 auto;
  padding: 30px 0 40px 0;
}

.koshi-message-text {
  text-align: justify;
  text-align-last: left;
  font-size: 20px;
  font-weight: 400;
  color: #333;
  line-height: 32px;
}

@media (max-width: 768px) {
  .koshi-message-text {
    text-align: justify;
    text-align-last: left;
    font-size: 28px;
    font-weight: 400;
    color: #333;
    line-height: 46px;
  }
}

.red {
  color: #d50738;
  font-weight: 600;
}

.bold {
  font-weight: 600;
  color: #111;
}

/*
------------------------------------------------------------------------------------------------------------
フォームCSS設定(PCとスマホで縦並びにする）
------------------------------------------------------------------------------------------------------------
*/

.input_unit {
  display: flex;
  flex-direction: column;
  /* 縦並びに設定 */
  align-items: flex-start;
  /* 左寄せ */
  margin-bottom: 1rem;
  /* 要素間のスペース */
}

.input_unit .my_column {
  width: 100%;
  /* 横幅を100%に設定 */
}

.input_unit .my_left {
  margin-bottom: 0.5rem;
  /* ラベルと入力欄の間にスペース */
}

.input_unit .form_input_label {
  display: block;
  font-weight: bold;
}

/* 入力欄のスタイル調整 */
.input_unit .my_right {
  width: 100%;
}

.input_unit .form_input_input,
.input_unit input[type="text"],
.input_unit select {
  width: 100%;
  padding: 0.5rem;
  box-sizing: border-box;
}

/* スマホ向けの調整 (必要に応じて追加) */
@media (max-width: 768px) {
  .input_unit {
    margin-bottom: 1.5rem;
    /* スペースを広めに調整 */
  }
}

/*
------------------------------------------------------------------------------------------------------------
フォームCSS設定（他）
------------------------------------------------------------------------------------------------------------
*/

/* フォームの幅を設定する */
.content_form {
  width: 700px;
  margin: 0 auto;
}

/* フォームラベルの文字設定 */
.form_input_label {
  font-size: 26px;
  color: #333;
  padding-top: 5px;
}

/* 入力欄のCSS */
.my_column input[type=text] {
  border-radius: 10px;
  border-color: #d50738;
  border-width: 2px;
}

/* 開催日時の選択欄について */
.select_frame select {
  border-style: solid;
  /* 枠線を実線に設定 */
  border-color: #d50738;
  /* 枠線の色を設定 */
  border-width: 2px;
  /* 枠線の幅を設定 */
  border-radius: 10px;
  /* 角を丸くする */
  box-sizing: border-box;
  /* 幅計算を含むように設定 */
  background-color: #fffeb3;
  /* 背景色を設定 */
  color: #000;
  /* 通常のテキストの色 */
  font-size: 26px;
  /* フォントサイズ調整 */
  text-align: left;
  /* 左寄せ */
  height: 80px;
  /* 高さ調整 */
  padding-left: 10px;
  /* 左側に10pxの余白を追加 */
}

/* プレースホルダー的な役割の最初のオプション */
.select_frame select option:disabled {
  color: #888;
  /* グレーで表示 */
  font-style: italic;
  /* イタリック体 */
  padding-left: 10px;
  /* プレースホルダーに左側の余白を追加 */
}

/* 選択された状態のオプションのテキスト色 */
.select_frame select option {
  color: #333;
  /* 通常の選択肢の色 */
}


/* 入力欄の中のCSS設定 */
input::placeholder {
  text-align: left;
  /* テキストを左寄せ */
  font-size: 26px;
  /* フォントサイズを26pxに設定 */
  color: #333;
  /* テキストの色を#333に設定 */
  padding-left: 10px;
}

input {
  text-align: left;
  font-size: 26px;
  color: #333;
  padding-left: 10px;
}

/*
------------------------------------------------------------------------------------------------------------
フォームCSS設定（ラジオボタン）
------------------------------------------------------------------------------------------------------------
*/

.radiobutton_frame {
  display: flex;
  /* 横並びに配置 */
  align-items: center;
  /* 縦位置を中央揃え */
  gap: 10px;
  /* ラジオボタンとラベルの間に適度な余白を設定 */
  margin: 10px 0;
}

.radiobutton_input {
  margin: 0;
  /* 余計な余白をリセット */
}

.form_input_radio_label {
  margin: 0;
  /* ラベルの余白をリセット */
  font-size: 26px;
  /* 必要に応じてラベルのフォントサイズを調整 */
  color: #333;
  /* テキスト色を変更（オプション） */
}

.radiobutton_input input[type="radio"] {
  transform: scale(1.8);
  /* サイズを1.5倍に拡大 */
  margin-right: 5px;
  /* 必要に応じてラジオボタンとラベル間の余白を調整 */
  margin-left: 15px;
}


/*
------------------------------------------------------------------------------------------------------------
フォームCSS設定(リンクstyleシート反映時）
------------------------------------------------------------------------------------------------------------
*/

/* 左行の見出しを左揃えに */
.label_frame {
  text-align: left;
}

/* 入力欄の大きさ変更 */
input[type=text] {
  height: 80px;
}

/* ボタンラベル項目を左揃えに */
.form_input_radio_label {
  text-align: left;
}

/*
------------------------------------------------------------------------------------------------------------
フォーム直下のインフォメーションのCSS
------------------------------------------------------------------------------------------------------------
*/

.information {
  width: 700px;
  margin: 0 auto;
  padding: 20px 0 40px 0;
}

.information-text {
  text-align: justify;
  text-align-last: left;
  color: #7d7d7d;
  font-size: 16px;
}

.information-text a {
  color: #194493;
  text-decoration: underline;
}

/*
------------------------------------------------------------------------------------------------------------
フォームボタンの設定
------------------------------------------------------------------------------------------------------------
*/


input[type=submit] {
  background: url(../images/under-btn.png) center top no-repeat;
  width: 100%;
  height: 141px;
  border: none;
}

input[type=submit]:hover {
  position: relative;
  top: 3pt;
  left: 3pt;
}

/*
------------------------------------------------------------------------------------------------------------
フッターの設定
------------------------------------------------------------------------------------------------------------
*/

footer {
  width: 100%;
  margin: 0 auto;
  font-size: 85%;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
  position: relative;
  background-color: #393939;
  font-size: 16px;
}

footer a {
  color: #fff;
  margin: 10px 0;
}

footer p {
  margin: 15px 0;
}

.copy {
  color: #fff;
  font-size: 80%;
  text-align: center;
}

.copy a {
  text-decoration: underline;
  color: #ffffd0;
}

@media only screen and (max-width: 768px) {
  .footer {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    height: auto;
    color: #fff;
    background-color: #3d3d3d;
  }

  .footer__inner {
    text-align: left;
  }

  .footer__inner p {
    font-size: 24px;
  }

  .footer__inner a {
    padding: 5px 30px;
    color: #fff;
    padding-left: 30px;
    display: block;
    width: 100%;
  }

  .footer__inner li {
    padding: 0 10px 0 10px;
    font-size: 100%;
    border-bottom: 1px solid #ffffff;
  }

  footer p.copy {
    text-align: center;
    /*ブロック要素を中央配置*/
    font-size: 14px;
    /*文字サイズ*/
  }

  .container {
    display: flex;
    justify-content: space-between;
  }

  footer {
    /*mobile*/
    width: 100%;
    /*横幅設定*/
    font-size: 16px;
    /*文字サイズ*/
    margin-bottom: 0px;
    /*外側下の余白設定*/
  }

  .footer__inner li {
    font-size: 14px;
  }
}


/*
------------------------------------------------------------------------------------------------------------
その他
------------------------------------------------------------------------------------------------------------
*/
.clear {
  clear: both;
}


/*
------------------------------------------------------------------------------------------------------------
魔法の言葉
------------------------------------------------------------------------------------------------------------
*/

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}