:root {
  --link-color: #0C8346;
  --kasen-color: #0a660a;
  --basic-gray: #333;
  --middle-gray: #555;
  --light-gray: #999;
  --balloon-abe: #d7ebfe;
  --ballon-seito: #fdecf4;
}

.profile-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.profile-box__item {
  padding: 0 2rem;
}

/* Landing Page用 */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.8em;
  line-height: 1.8;
  font-weight: 400;
  font-family: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, Arial, sans-serif;
  color: #333;
  -webkit-font-smoothing: antialiased;
  /* カーニング palt,pwid,pkna */
  font-feature-settings: "palt";
}

h1,
h2,
h3 {
  font-weight: 400;
}

h1 {
  font-size: 2.0rem;
  line-height: 1.2;
  letter-spacing: 0rem;
}

h2 {
  font-size: 2.0rem;
  line-height: 1.25;
  letter-spacing: 0rem;
}

h3 {
  font-size: 2.0rem;
  line-height: 1.3;
  letter-spacing: 0rem;
}

h4 {
  font-size: 2.0rem;
  line-height: 1.35;
  letter-spacing: 0rem;
}

a {
  color: var(--link-color);
  /* text-decoration: none; */
}

li {
  margin: .5rem 1rem;
}

details {
  padding: 15px;
  margin-bottom: 5px;
  border: solid 1px var(--light-gray);
}

details[open]>summary {
  padding-bottom: 1.5rem;
}

summary {
  cursor: pointer;
  outline: none;
}

details p {
  padding: .5rem 0;
}

img {
  max-width: 100%;
  height: auto;
  margin: 0;
  border: 1px solid #e7e7e7;
}

/* thankyouページ専用 */
.img_noborder {
  border: none;

}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

/* セミナー・執筆実績 */
.experience {
  font-size: 1.6rem;
}

/* 数字リストの装飾
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.lp__ol__blue {
  counter-reset: number;
  /*数字をリセット*/
  list-style-type: none !important;
  /*数字を一旦消す*/
  padding: 2em;
  background: #eff6ff;
  /* border: 1px solid var(--light-gray); */
  border-radius: 0.75rem;
}

.lp__ol__blue li {
  position: relative;
  padding-left: 30px;
  line-height: 1.5em;
  padding: 0.5em 0.5em 0.5em 60px;
}

.lp__ol__blue li:before {
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*以下数字のデザイン変える*/
  display: inline-block;
  background: #a19be4;
  color: white;
  font-family: 'Avenir', 'Arial Black', 'Arial', sans-serif;
  font-weight: bold;
  /* font-size: 15px; */
  border-radius: 50%;
  left: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  /*以下 上下中央寄せのため*/
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* チェックリストの装飾
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.lp__ul_check {
  background: #eff6ff;
  border-radius: 0.75rem;
  /* border: solid 2px #5c9ee7; */
  padding: 2em;
  /* padding: 0.5em 1em 0.5em 2.3em; */
  position: relative;
}

.lp__ul_check li {
  line-height: 1.5;
  padding: 0.5em 0;
  list-style-type: none !important;
  position: relative;
}

.lp__ul_check li:before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 0.7rem;
  border-left: 3px solid #5c9ee7;
  border-bottom: 3px solid #5c9ee7;
  transform: rotate(-45deg);
  position: absolute;
  top: 2.1rem;
  left: -3rem;
}

/* 三角矢印・下向き
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.triangle {
  margin-top: 1rem;
  display: inline-block;
  width: 60px;
  height: 60px;
  border-top: 30px solid var(--light-gray);
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 30px solid transparent;
  margin-bottom: -4rem;
}

/* カウントダウン部分
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.countdown_bar {
  position: fixed;
  width: 100%;
  color: white;
  background: #FF0000;
  margin-bottom: 1rem;
  padding: 1rem;
  z-index: 10;
}

.countdown_item {
  margin-top: .5rem;
  margin-bottom: .5rem;
}

.timechar {
  font-size: 1.2rem;
  /* font-weight: 300; */
  margin-top: 1rem;
}

.timebox {
  padding: .5rem;
  background-color: white;
  color: #FF0000;
  border-radius: .5rem;
}

#day,
#hour,
#min,
#sec,
#millisec {
  font-size: 3rem;
}

table {
  margin: 0 auto;
  border-collapse: collapse;
}

td {
  text-align: center;
}

/* 価格フォント設定 
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.kakaku {
  color: var(--link-color);
  font-size: 4rem;
  font-weight: bold;
  padding: 5px;
}

/* 残り人数・申込期限フォント
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.caution {
  color: #ea352d;
  font-size: x-large;
  font-weight: bold;
  padding: 5px;
}

/* 赤色フォント
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.red {
  color: #ea352d;
}


/* 記事が少なくてもフッターを最下段に設定
–––––––––––––––––––––––––––––––––––––––––––––––––– */
body,
#wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  color: #FFF;
  background-color: #0C8346;
  border-color: #0C8346;
  display: inline-block;
  position: relative;
  font-size: x-large;
  font-weight: bold;
  width: 100%;
  padding: 1rem;
  margin: 1rem 0;
  text-align: center;
  line-height: 38px;
  letter-spacing: .1rem;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 0.25rem;
  cursor: pointer;
  box-sizing: border-box;
}

.shiny-btn {
  position: relative;
  display: block;
  height: 40px;
  overflow: hidden;
}

.button:hover,
button:hover,
.button:focus,
button:focus {
  color: #FFF;
  background-color: #096636;
  border-color: #096636;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  outline: 0;
}

@keyframes shiny {
  0% {
    left: -20%;
  }

  10% {
    left: 120%;
  }

  100% {
    left: 120%;
  }
}

/* ボタンの上の表示 */
.above_btn {
  padding-bottom: 0 !important;
  font-weight: 700;
  font-size: large;
  color: var(--light-gray);
}

/* Footer
–––––––––––––––––––––––––––––––––––––––––––––––––– */
footer {
  background-color: #202020;
  color: white;
  font-size: small;
  text-align: center;
  padding: 10px 0;
  margin-top: auto;
  /* margin-bottom: 6rem; */
}

footer a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  color: #999;
  border-bottom: 0;
  text-decoration: none;
}

.footer__box {
  margin: 2rem 0;
}

.footer__item {
  margin: 1rem 0;
}

/* Landing Page用
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* 画像を横幅いっぱいにしたときのスクロールを消去 */
.forimage {
  overflow-x: hidden;
}

.top_guidance {
  font-size: 3rem;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: .5rem 1rem;
}

.top_title {
  font-size: 2.6rem;
}

.lp__container {
  width: 90%;
  position: relative;
  margin: 0 auto;
  padding: 170px 1rem 5rem 1rem;
  box-sizing: border-box;
}

.lp__container__finish {
  width: 90%;
  position: relative;
  margin: 0 auto;
  padding: 5rem 1rem 5rem 1rem;
  box-sizing: border-box;
}


.lp__entry p {
  padding: 2rem 0;
}

.lp__entry ul ul {
  padding: 0;
}

.lp__entry ul {
  /* padding-left: 1rem; */
}

.lp__entry ol ul {
  margin-left: 1rem;
}


.lp__entry h1 {
  text-align: center;
  font-weight: 800;
  margin: 0rem 0 .5rem 0;
}

.lp__entry h2 {
  font-weight: 800;
  margin: 5rem 0 1rem 0;
}

.lp__entry h3 {
  font-weight: 800;
  /* margin: 5rem 0 2rem 0; */
  margin: 2rem 0 2rem 0;
  padding: .5rem 0;
  color: #4338ca;
  /* border-bottom: 1px solid gray; */
}

.lp__entry h4 {
  margin: 4rem 0 0 0;
  padding: .5rem 0;
  text-align: center;
}

.lp-margin {
  margin: 0;
}

.lp__marker {
  font-weight: 800;
  background: linear-gradient(transparent 64%, #fcf69f 0%);
}

.lp__red {
  color: red;
}

strong,
.strong {
  text-decoration: underline dotted;
  font-weight: bold;
}

.lp__small {
  font-size: small;
}

.lp__medium {
  font-size: medium;
}

.lp__mincho {
  font-family: 'Noto Serif JP', serif;
}

.lp_sign {
  font-size: xx-large;
}

.lp__wideimage img {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  max-width: none;
  height: 200px;
  object-fit: cover;
  display: block;
}

.lp__widetitleimg {
  margin: 0em calc(50% - 50vw);
  /* ネガティブマージンで指定した幅と同じ幅だけ指定して相殺 */
  padding: 2em calc(50vw - 50%);
  font-size: 1.8em;
  font-weight: 600;
  color: #fff;
  background-image: url(./img/question_mark_1280_black.jpg);
  /* 画像がない場合のフォールバック */
  /* background-color: #000; */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp__widebackimg {
  margin: 1em calc(50% - 50vw);
  /* ネガティブマージンで指定した幅と同じ幅だけ指定して相殺 */
  padding: 2em calc(50vw - 50%);
  font-size: 1.8em;
  font-weight: 600;
  color: #fff;
  /* background-image: url(/images/main2.jpg); */
  /* 画像がない場合のフォールバック */
  background-color: #4338ca;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ガラス本体 */
.glass {
  width: 100%;
  /* max-width              : 600px; */
  padding: 2rem;
  /* 背景色 */
  background-color: rgba(255, 255, 255, 0.1);
  /* ボーダー */
  /* border                 : 1px solid rgba(255, 255, 255, 0.4);
  border-right-color        : rgba(255, 255, 255, 0.2);
  border-bottom-color       : rgba(255, 255, 255, 0.2);
  border-radius             : 10px; */
  /* ぼかしエフェクト */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  /* 薄い影 */
  /* box-shadow             : 0 5px 20px rgba(255, 152, 79, 0.5); */
  line-height: normal;
}

.lp__wide_back_skill {
  background-image: url(/images/lp/skills_1280.jpg);
}

.lp__wide_back_lietruth {
  background-image: url(/images/lp/lie_truth_1280.jpg);
}

.lp__wide_back_question {
  background-image: url(/images/lp/question_mark_1280_black.jpg);
}

.lp__wide_back_training {
  background-image: url(/images/lp/man_1280.jpg);
  backdrop-filter: blur(5px);
}

.lp__wide_back_merit {
  background-image: url(/images/lp/chart_1280.jpg);
}

.lp__wide_back_danger {
  background-image: url(/images/lp/danger_1280.jpg);
}

.lp__wide_back_trouble {
  background-image: url(/images/lp/traffic_signs_1280.jpg);
}

.lp__wide_back_board {
  background-image: url(/images/lp/board_1280.jpg);
}

.border {
  border: 1px solid gray;
}

/* 文字の左右に水平線 */
.centerline {
  display: flex;
  align-items: center;
  padding: 1rem 0 2rem;
}

.centerline::before,
.centerline::after {
  display: block;
  flex: 1;
  content: '';
  border-top: 1px solid #000;
}

.centerline::before {
  margin-right: 10px;
}

.centerline::after {
  margin-left: 10px;
}

.lp__point__waku {
  margin: 1rem 0 1rem 0;
  padding: 1rem .5rem 1rem 3.5rem;
  border: 1px solid var(--light-gray);
}

.lp__ps {
  margin-top: 5rem;
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
}

/* タイトル付　枠　*/
.memo-box {
  position: relative;
  margin: 2em auto;
  padding: 1.2em;
  color: #555555;
  background-color: #fff;
  border: 1px solid #555555;
  border-radius: 5px;
  width: 90%;
}

/* .title-box { */
.memo-box:after {
  position: absolute;
  content: "メモ";
  padding: 0 .5em;
  left: 20px;
  top: -15px;
  font-weight: bold;
  background-color: #fff;
  color: #555555;
}

/* フッター申込バナー */
.footer_apply {
  width: 100%;
  position: fixed;
  background-color: white;
  box-shadow: 0 -4px 8px -4px rgba(0, 0, 0, .2);
  bottom: 0;
  text-align: center;
  z-index: 999;
}

.footer_apply__content {
  padding: 1.5rem 1rem 1rem .5rem;
  height: 130px;
}

/* ボタンに光 */
.footer_apply button::after {
  content: '';
  position: absolute;
  top: -10%;
  left: -20%;
  width: 40px;
  height: 100%;
  transform: scale(2) rotate(20deg);
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, .5) 100%, rgba(255, 255, 255, 0) 0%);
  /* アニメーション */
  animation-name: shiny;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.for_mobile {
  display: block;
}

.for_desktop {
  display: none;
}

.for_mobile_centerline {
  display: flex;
}

.for_desktop_centerline {
  display: none;
}

.for_mobile_table {
  display: table;
}

.for_desktop_table {
  display: none;
}

/* 特典 */
.present {
  /* display: flex; */
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
}

.present_item {
  margin: -1.5rem;
}

.present_sentence {
  font-size: 4rem;
  font-weight: bold;
  color: #a88f00;
  padding-bottom: 1rem;
}

/* Larger than phablet */
@media(min-width: 550px) {
  body {
    font-size: 2em;
  }

  .top_title {
    font-size: 5rem;
  }

  h1 {
    font-size: 3.0rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  h3 {
    font-size: 2.4rem;
  }

  h4 {
    font-size: 2.4rem;
  }

  .for_mobile {
    display: none;
  }

  .for_desktop {
    display: block;
  }

  .for_mobile_centerline {
    display: none;
  }

  .for_desktop_centerline {
    display: flex;
  }

  .for_mobile_table {
    display: none;
  }

  .for_desktop_table {
    display: table;
  }

  .footer__box {
    display: flex;
    justify-content: space-around;
    margin: 1rem 0;
  }

  .lp__container {
    width: 80%;
    max-width: 680px;
    padding: 140px 1rem 5rem 1rem;
  }

  .lp__container__finish {
    width: 60%;
  }

  .centerline {
    padding: 1rem 0 5rem;
  }

  .footer_apply {
    display: flex;
    justify-content: center;
  }

  .footer_apply__content {
    max-width: 550px;
    width: 90%;
  }

  /* カウントダウン部分
–––––––––––––––––––––––––––––––––––––––––––––––––– */
  .countdown_box {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .countdown_item {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  #day,
  #hour,
  #min,
  #sec,
  #millisec {
    font-size: 3rem;
  }

  .countdown-container {
    margin: 5rem;
  }

}

@media(min-width: 800px) {
  .lp__wideimage img {
    height: 400px;
  }

  .footer_apply__content {
    max-width: 680px;
    width: 90%;
  }
}
