@charset "UTF-8";
/* CSS Document */

/* ---------------------------------------------
PC用レイアウト(768px以上のスクリーン)
------------------------------------------------*/

/* body全体の初期スタイル調節 */

body {
  background-color: #f2f2f2;
  font-size: 62.5%;
  /*emの計算をしやすくするための定番設定 */
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-weight: normal;
  color: #000;
  font-weight: normal;
  color: #000;
}

/* リンク文字の設定 */
a {
  text-decoration: underline;
}

a:link,
a:visited {
  color: #39f;
}

a:hover,
a:active {
  color: #f60;
}

/*ブラウザのCSSをリセット*/
p {
  margin: 0 !important;
  padding: 0 !important;
}

/*セクションエリアの共通設定*/
section {
  clear: both;
  overflow: auto;
}


/*--------------------------------------------------
見出しタグ設定（PC）
-----------------------------------------------------*/

h2 {
  margin: 0.5em 0em;
  font-size: 2em;
  font-weight: bold;
  text-align: center;
}

h3 {
  margin: 0.5em 0em;
  padding: 0.3em 0.6em;
  font-size: 1.6em;
  font-weight: bold;
  border-left: 8px solid #10559A;
  border-bottom: 1px dotted #10559A;
}

h4 {
  margin: 0.5em 0em;
  padding: 0.3em 0.6em;
  font-size: 1.4em;
  border: 1px solid #ccc;
  font-weight: bold;
}

h5 {
  margin: 0.5em 0em;
  padding: 0.1em;
  font-size: 1.2em;
  font-weight: bold;
  border-bottom: 1px dotted #ccc;
}


/* ---------------------------------------------
全体レイアウト / 背景設定 (PC用)
------------------------------------------------*/

/*全体エリア（全体背景を設定するにはここ）*/
.main {
  background-color: #f2f2f2;
}

/*記事(ボディ)エリア*/
.article {
  background-color: #fff;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  font-size: 1.6em;
  /*=16px*/
}

/*記事(ボディ)エリアの行間*/
.article p {
  line-height: 1.6;
}

/*カラム全体の幅を変更する*/
.article,
.top_image_in {
  width: 750px;
  margin: 0 auto;
  /*真ん中に要素を置きたいときに使う*/
}


/*--------------------------------------------------
上部固定ヘッダー設定
-----------------------------------------------------*/

/*上部固定ヘッダー全体*/
.header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 5000;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  overflow: auto;
}

/*ヘッダー内部をカラム幅にする*/
.header_inr {
  max-width: 950px;
  margin: 0 auto;
  overflow: hidden;
}

/*ヘッダーのロゴ*/
.header_logo {
  width: 20%;
  float: left;
  margin: 0em;
}

/*ヘッダーの問い合わせボタン*/
.header_mail {
  width: 25%;
  float: right;
  margin: 0.8em 0em 0em;
}

/*ヘッダーの電話ボタン*/
.header_tel {
  width: 30%;
  float: right;
  margin: 0.8em 0em 0em;
}

/*ヘッダー内の画像が常に幅100%になるように*/
.header_logo img,
.header_mail img,
.header_tel img {
  width: 100%;
}

/*--------------------------------------------------
sectionの設定
-----------------------------------------------------*/
.section_01 {
  padding: 0;
}

.section_02 {
  background-color: #FFFEF0;
  padding: 1.5em 3em;
}

/*--------------------------------------------------
チェックリスト設定
-----------------------------------------------------*/
ul.checklist {
  border: 1px solid #ccc;
  list-style: none;
  padding: 1em;
}

ul.checklist li {
  background-image: url("../images/icon-check03-red.png");
  background-repeat: no-repeat;
  background-size: 3.5%;
  padding-left: 1.8em;
  margin-bottom: 0.8em;
}

ul.checklist li:last-child {
  margin-bottom: 0em;
}

/*--------------------------------------------------
テーブル設定
-----------------------------------------------------*/
table {
  width: 100%;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  margin: 1em 0em;
}

th,
td {
  padding: 0.5em;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

th {
  background-color: #f0f0f0;
  font-weight: bold;
  text-align: center;
}

td {
  background-color: #fff;
  text-align: left;
}

/*スマホでは行が列になるテーブルタグに変更してある*/
.table_style_01 {
  text-align: left;
  vertical-align: middle;
}

/*--------------------------------------------------
フォーム設定
-----------------------------------------------------*/
.mailform {
  background-color: #fff;
  margin-bottom: 1em;
  padding: 1em 0em 1.5em;
  box-shadow: 0px 0px 1px #000;
}

.input {
  padding: 0 2em;
}

.input_style {
  background-color: #FFFBF0;
  width: 100%;
  height: 60px;
  margin-bottom: 0.5em;
  text-align: center;
  font-size: 1.4em;
}

input[type="image"] {
  width: 100%;
}

.caution {
  text-align: center;
  font-size: 0.8em;
  color: #F00;
}

/*--------------------------------------------------
よくある質問
-----------------------------------------------------*/
.box_qa {
  background-color: #efefef;
  padding: 1em;
}

.box_qa_q {
  background-color: #fff;
  padding: 1em 2em 1em 3em;
  border-bottom: 1px solid #ccc;
  font-size: 1.2em;
  font-weight: bold;
  color: #D10003;
}

.box_qa_a {
  background-color: #fff;
  padding: 1em 2em 1em 3em;
}

.box_qa_q p,
.box_qa_a p {
  text-indent: -1.1em;
}

/*--------------------------------------------------
CTAエリア
-----------------------------------------------------*/
/* 画像の上にCTAボタンを重ねる共通設定 */
.cta_image_box {
  position: relative;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.cta_base {
  width: 100%;
  height: auto;
  display: block;
}

.cta_btn {
  position: absolute;
  left: 50%;
  width: 78%;
  max-width: 590px;
  transform: translateX(-50%);
}

.cta_btn a {
  display: block;
}

.cta_btn img {
  width: 100%;
  height: auto;
  display: block;
}

/* FVのボタン位置 */
.fv_cta_btn {
  bottom: 4%;
}

/* プレセミナー */
.presenter_area {
  background-color: #fff;
}

/* プレセミナーのボタン位置 */
.preseminar_cta_btn {
  bottom: 6em;
}


/* 12期生募集1のボタン位置 */
.boshuu1_cta_btn {
  top: 23.5%;
}

/* 12期生募集2のボタン位置 */
.boshuu2_cta_btn {
  top: 66%;
}

/* 上品なCTAアニメーション */
.anim-box.soft-pulse {
  animation: softPulse 2.4s ease-in-out infinite;
  opacity: 1;
  transform-origin: center;
}

@keyframes softPulse {
  0%,
  35%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.035);
  }

  65% {
    transform: scale(1);
  }
}


/*--------------------------------------------------
スライド部分
-----------------------------------------------------*/

.nadeshiko_slider {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.nadeshiko_track {
  display: flex;
  gap: 20px;
  width: max-content;
  height: 180px;
  animation: nadeshikoSlideLeft 70s linear infinite;
}

.nadeshiko_track img {
  width: 270px;
  height: 180px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

/* 下のスライドだけ逆方向 */
.nadeshiko_slider_reverse .nadeshiko_track {
  animation: nadeshikoSlideRight 70s linear infinite;
}

/* 上：右から左へ */
@keyframes nadeshikoSlideLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* 下：左から右へ */
@keyframes nadeshikoSlideRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}


/*--------------------------------------------------
講師紹介部分
-----------------------------------------------------*/

.koushi_box {
  position: relative;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.koushi_base {
  width: 100%;
  height: auto;
  display: block;
}

.koushi_link {
  position: absolute;
  display: block;
  /* background-color: rgba(255, 0, 0, 0.25);
  border: 2px solid red;  */
}

/* 左上：大関さんの「詳しく見る」 */
.koushi_link01 {
  left: 6.1%;
  top: 30.5%;
  width: 26%;
  height: 25%;
}

/* 右上：長島さんの「詳しく見る」 */
.koushi_link02 {
  left: 67.8%;
  top: 30.5%;
  width: 26%;
  height: 25%;
}

/* 左下：有路さんの「詳しく見る」 */
.koushi_link03 {
  left: 6.1%;
  top: 59.2%;
  width: 26%;
  height: 25%;
}

/* 右上：中谷さんの「詳しく見る」 */
.koushi_link04 {
  left: 67.8%;
  top: 59.2%;
  width: 26%;
  height: 25%;
}



/*--------------------------------------------------
修了特典部分
-----------------------------------------------------*/

.tokuten {
  position: relative;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.tokuten img {
  width: 100%;
  height: auto;
  display: block;
}

.tokuten_note {
  position: absolute;
  left: 56%;
  bottom: 17%;
  transform: translateX(-50%);
  width: 83%;
  margin: 0;
  color: #231815;
  letter-spacing: 0.05em;
}

.tokuten_note a {
  color: #1a9ea0;
  text-decoration: underline;
}

/* スライダー下の白い余白 */
.white_space_100 {
  width: 100%;
  max-width: 750px;
  height: 100px;
  margin: 0 auto;
  background-color: #fff;
}


/*--------------------------------------------------
SNS部分
-----------------------------------------------------*/
.sns_box {
  position: relative;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.sns_base {
  width: 100%;
  height: auto;
  display: block;
}

.sns_link {
  position: absolute;
  display: block;
  /* background-color: rgba(255, 0, 0, 0.25);
  border: 2px solid red;  */
}

/* note */
.sns_note {
  left: 35%;
  top: 50%;
  width: 13%;
  height: 36%;
}

/* Instagram */
.sns_instagram {
  left: 50%;
  top: 50%;
  width: 12.5%;
  height: 36%;
}

/* LINE */
.sns_line {
  left: 67%;
  top: 50%;
  width: 29%;
  height: 36%;
}


/*--------------------------------------------------
フッター部分
-----------------------------------------------------*/
.footer {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  background-color: #1a9ea0;
  padding: 1em 0;
  text-align: center;
  font-size: 14px;
  color: #fff;
}

.footer a {
  color: #fff;
}