@charset "utf-8";

html { overflow: auto; }
body { overflow: hidden; }

html {
  overflow-y: scroll;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-weight: 300;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Hiragino Sans", "Noto Sans JP", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Sans Emoji";
  line-height: 1.75;
}

h1,h2,h3,h4,h5,h6,p,ul,ol {
  margin: 0;
}

h1,h2,h3,h4,h5,h6 {
  letter-spacing: .05em;
  font-weight: 600;
  font-feature-settings: "palt";
}

p:not(:last-child) {
  margin-bottom: 1em;
}

@media(max-width: 599px) {
  p br {
    display: none;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

strong {
  font-weight: 600;
}

ins {
  text-decoration: none;
}

table {
  border-collapse: collapse;
}

address {
  font-style: normal;
}

figure {
  border: 0;
  margin: 0;
}

fieldset {
  border: 0;
}

/* リンク
   ========================================================================== */

a,
a:hover {
  color: #0085cc;
  text-decoration: underline;
}

a:hover, 
a:focus {
  text-decoration: none;
}

a:active {
  color: #0085cc;
  text-decoration: none;
}

a:hover > img {
  opacity: .8;
}

/* ==========================================================================
   メディアクエリによる表示／非表示
   ========================================================================== */

.pc {display: block;}
.sp {display: none;}

@media(max-width: 599px) {
  .pc {display: none;}
  .sp {display: block;}
}

/* ==========================================================================
   レイアウト
   ========================================================================== */

/* 幅 */

.l-width {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 760px;
}

/* バック横幅いっぱい */

body .l-wide {
  margin-right: -100%;
  margin-left: -100%;
  padding-right: 100%;
  padding-left: 100%;
}

/* 間隔 */

.l-margin {
  margin: 40px auto;
}

.l-padding {
  padding: 40px;
}

/* 二段組 */

.l-columns-2 {
  margin: 2em 0;
  columns: 2;
  column-gap: 20px;
}

.l-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}

/* 三段組 */

.l-columns-3 {
  margin: 2em 0;
  columns: 3;
  column-gap: 2em;
}

.l-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

@media(max-width: 599px) {
  .l-width {
    padding: 0 20px;
  }
  .l-margin {
    margin: 20px auto;
  }
  .l-padding {
    padding: 20px;
  }
  .l-columns-2,
  .l-columns-3 {
    margin: 2em 0;
    columns: 1;
    column-gap: 0;
  }
  .l-grid-2 {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ==========================================================================
   ヘッダー
   ========================================================================== */

.body {
  background: #fff url("../../img/thanks/header-bg2.jpg") no-repeat center top;
}

.header-txt-1 {
  background-color: rgba(255, 255, 255, .7);
  border-bottom: 1px solid #c00;

  padding: 20px;

  font-size: 24px;
  line-height: 1.25;
  color: #c00;
  text-align: center;
}

.header-txt-1__large {
  font-size: 1.2em;
}

.header__inner {
  padding-left: 0;
  padding-right: 0;
}

.header-txt-2 {
  margin-left: -15px;
  padding: 50px 0;
}


/* ビデオ */

.header-video {
  margin: 0 auto 40px;
  padding: 40px;
  background-color: #f1eee6;
}

.header-video__title {
  margin: -40px -40px 30px;
  padding: 15px;
  background-color: #006599;
  color: #fff;
	font-size: 24px;
  /* 水平方向の中央揃え */
  text-align: center;
}

.header-video__head {
  margin-bottom: 30px;
}

.header-video__video {
  margin: 0 auto;
  position: relative;
  display: block;
  overflow: hidden;
  padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
}

.header-video__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


@media(max-width: 599px) {
  .body {
    background-image: none;
  }
  .header-txt-1 {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 18px;
  }
  .header-txt-1__num {
    font-size: 1.2em;
  }
}

/* ==========================================================================
   メイン
   ========================================================================== */

.main {
  margin: 0 auto;
  padding: 20px 0 50px;
}

.main > *:first-child {
  margin-top: 0;
}
.main > *:last-child {
  margin-bottom: 0;
}

@media(max-width: 599px) {
  .main {
    padding: 20px;
  }
}

/* ==========================================================================
   タイポグラフィー
   ========================================================================== */

.main p,
.main li {
  line-height: 1.75;
}

.main p {
  margin: 0 0 1.5em;
}

@media(max-width: 599px) {
  .main p,
  .main li {
    line-height: 1.75;
  }
}

/* H3
   ========================================================================== */

.h3 {
  margin: 80px auto 40px;
  text-align: center;
  font-size: 33px;
  line-height: 1.5;
  letter-spacing: .1em;
  text-indent: -.1em;

  border-top: 1px solid #00aacc;
  border-bottom: 1px solid #00aacc;
  padding: .5em 0;
  color: #003540;
}

.h3 strong {
  color: #006699;
}

@media(max-width: 599px) {
  .h3 {
    margin: 40px auto 20px;
    font-size: 1.2em;

    letter-spacing: .05em;
    text-indent: .05em;
  }
}

/* H4
   ========================================================================== */

.h4 {
  margin: 80px auto 40px;
  font-size: 1.2em;
  line-height: 1.5;
  letter-spacing: .1em;
  text-indent: -.1em;

  color: #444;
}

@media(max-width: 599px) {
  .h4 {
    margin: 40px auto 20px;
    font-size: 1.2em;

    letter-spacing: .05em;
    text-indent: .05em;
  }
}

/* ==========================================================================
   表
   ========================================================================== */

.table {
  margin: 20px auto;
  width: 100%;
}

.table th,
.table td {
  padding: 1em 1em .75em;
  vertical-align: top;
  border: 1px solid #ccc;
  text-align: left;
}

.table th {
  background: #f8f8f8;
  font-weight: 500;

  white-space: nowrap;
}

.table .nowrap {
  white-space: nowrap;
}


/* ==========================================================================
   セミナー概要
   ========================================================================== */

.overview {

}

.overview__h4 {
  margin: 2em auto 1em;
  padding: .75em;
  border-top: 1px solid #006699;
  background-color: #f3efe5;
  color: #333;
  text-shadow: 0 1px 0 #fff;
  font-size: 1.1em;
  line-height: 1;
}

.overview__table {
  margin: 20px auto 20px;
  width: 100%;
}

.overview__table a {
  text-decoration: none;
  color: inherit;
}

.overview__table th,
.overview__table td {
  padding: 1em 1em .75em;
  border: 1px solid #ccc;
  vertical-align: top;
  text-align: left;
}

.overview__table tr[data-href]:hover {
  cursor: pointer;
}

.overview__table thead th {
  border: 1px solid #006699;
  border-bottom: none;
  background: #006699;
  color: #fff;
  text-align: center;
  font-weight: bold;
}

.overview__table th,
.overview__table td,
.overview__table p {
  font-size: 16px;
  line-height: 1.5;
}

.overview__table p {
  margin-bottom: .333em;
}
  .overview__table p:last-child {
    margin-bottom: 0;
  }

.overview__table tbody th {
  background: #f3efe5;
}

.overview__table del {
  color: #666;
}

.overview__table .nowrap {
  white-space: nowrap;
}

.overview__table .close {
  color: #666;
}

.overview__table .close th {
  background: #eee;
}

.overview__table .close td {
  background: #f8f8f8;
}

.overview__table .close,
.overview__table .close a {
  color: #999;
}

.main .overview ul {
  margin: 1em 0;
}

.new {
  display: inline-block;
  padding: .3em 1em;
  border-radius: 9999px;
  background-color: #c00;
  color: #fff;
  font-size: 11px;
  line-height: 1;

  float: right;
}

.full {
  display: inline-block;
  margin-right: 6px;
  padding: .3em 1em;
  border-radius: 9999px;
  background-color: #c00;
  color: #fff;
  font-size: 12px;
}

.map iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

@media(max-width: 599px) {
  .overview {
    margin: 20px auto;
  }
  .overview h4,
  .overview__h4 {
    margin: 20px auto 1em;
    padding: .75em;
    font-size: 1.05em;
  }
  .overview__table th,
  .overview__table td,
  .overview__table p {
    font-size: 12px;
  }
  .new {
    font-size: 10px;
    float: none;
    margin-top: .3em;
  }
  .full {
    margin-bottom: .3em;
    font-size: 10px;
  }
}

/* ==========================================================================
   価格
   ========================================================================== */

.price {
  margin: 50px auto;
  text-align: center;
  font-weight: 500;
  line-height: 1.5;
}

.price__1 {
  font-size: 30px;
  color: #666;
}

.price__arrow {
  font-size: 48px;
  color: #d90000;
  line-height: 1;
}

.price__date {
  font-size: 42px;
  color: #d90000;
}

.price__2 {
  font-size: 45px;
  color: #d90000;
}

@media(max-width: 599px) {
  .price {
    margin: 20px auto;
    line-height: 1.5;
  }
  .price__1 {
    font-size: 20px;
  }
  .price__arrow {
    font-size: 38px;
  }
  .price__date {
    font-size: 28px;
  }
  .price__2 {
    font-size: 28px;
  }
}

/* ==========================================================================
   ボタン
   ========================================================================== */

.btn {
  margin: 40px auto;
}

@media(max-width: 599px) {
  .btn {
    margin: 20px auto;
  }
}

/* ==========================================================================
   特典
   ========================================================================== */

.bonus {
  background: #fdf7dd url("../../img/thanks/bonus-bg.jpg") no-repeat center top fixed;
  background-size: 100vw auto;

  padding: 50px 0;

  margin-right: -100%;
  margin-left: -100%;
  padding-right: 100%;
  padding-left: 100%;
}

.bonus__head {
  margin-bottom: 50px;
  text-align: center;
}

.bonus__item {
  list-style-type: none;
  background-color: #fff;
  padding: 50px;
  box-shadow: 0 2px 10px 0 rgba(8, 7, 7, 0.3);
}

.bonus__item:not(:last-child) {
  margin-bottom: 40px;
}

.bonus__item li:not(:last-child) {
  margin-bottom: 20px;
}

@media(max-width: 599px) {
  .bonus {
    padding: 20px;
    margin-right: -20px;
    margin-left: -20px;
  }
  .bonus__head {
    margin-bottom: 20px;
  }
  .bonus__item {
    padding: 20px;
  }
  .bonus__item:not(:last-child) {
    margin-bottom: 20px;
  }
    .bonus__item li:not(:last-child) {
    margin-bottom: 10px;
  }
}

/* ==========================================================================
   ５つの特徴
   ========================================================================== */

.feature-a {
  background: #e7eff2 url("../../img/thanks/feature-a-bg.jpg") no-repeat center top fixed;
  background-size: 100vw auto;

  padding: 50px 0;

  margin-right: -100%;
  margin-left: -100%;
  padding-right: 100%;
  padding-left: 100%;
}

.feature-a__head {
  margin-bottom: 20px;
  text-align: center;
}

.feature-a__item {
  list-style-type: none;
  padding: 0;
}

.feature-a__item li:not(:last-child) {
  margin-bottom: 20px;
}

@media(max-width: 599px) {
  .feature-a {
    padding: 20px;
    margin-right: -20px;
    margin-left: -20px;
  }
  .feature-a__head {
    margin-bottom: 20px;
  }
  .feature-a__head img {
    max-width: 80%;
  }
  .feature-a__item {
    margin: 0 auto;
  }
  .feature-a__item li:not(:last-child) {
    margin-bottom: 10px;
  }
}

/* ==========================================================================
   不安
   ========================================================================== */

.anxiety {
  background: #fff url("../../img/thanks/anxiety-bg.jpg") no-repeat center top fixed;
  background-size: 100vw auto;

  padding: 50px 0;

  margin-right: -100%;
  margin-left: -100%;
  padding-right: 100%;
  padding-left: 100%;
}

.anxiety__head {
  margin-bottom: 50px;
  text-align: center;
}

.anxiety__item {
  padding: 0;
}

.anxiety__item img {
  box-shadow: 0 2px 10px 0 rgba(8, 7, 7, 0.3);
}

@media(max-width: 599px) {
  .anxiety {
    padding: 20px;
    margin-right: -20px;
    margin-left: -20px;
  }
  .anxiety__head {
    margin-bottom: 20px;
  }
  .anxiety__head img {
    max-width: 90%;
  }
  .anxiety__item {
    margin: 0 auto;
  }
}

/* ==========================================================================
   セミナータイトル
   ========================================================================== */

.head-title {
  background: #05286a url("../../img/thanks/head-title-bg.jpg") no-repeat center top;
  background-size: cover;

  margin: 50px auto;
  padding: 40px 0;

  margin-right: -100%;
  margin-left: -100%;
  padding-right: 100%;
  padding-left: 100%;
}

@media(max-width: 599px) {
  .head-title {
    margin: 20px auto;
    padding: 20px;
    margin-right: -20px;
    margin-left: -20px;
  }
}

/* ==========================================================================
   お伝えする3つのこと
   ========================================================================== */

.point {
  background: #fcf4f3 url("../../img/thanks/point-bg.jpg") no-repeat center top fixed;
  background-size: 100vw auto;

  padding: 50px 0;

  margin-right: -100%;
  margin-left: -100%;
  padding-right: 100%;
  padding-left: 100%;
}

.point__head {
  margin-bottom: 30px;
  text-align: center;
}

.point__item {
  list-style-type: none;
  padding: 0;
}

.point__item li:not(:last-child) {
  margin-bottom: 20px;
}

@media(max-width: 599px) {
  .point {
    padding: 20px;
    margin-right: -20px;
    margin-left: -20px;
  }
  .point__head {
    margin-bottom: 10px;
  }
  .point__head img {
    max-width: 80%;
  }
  .point__item {
    margin: 0 auto;
  }
  .point__item li:not(:last-child) {
    margin-bottom: 10px;
  }
}

/* ==========================================================================
   なぜ
   ========================================================================== */

.why {
  margin: 50px 0;
}

.why__head {
  margin-bottom: 50px;
  text-align: center;
}

.why__item {
  list-style-type: none;
  margin: 50px auto;
  padding: 0;
}

.why__item li:not(:last-child) {
  margin-bottom: 20px;
}

@media(max-width: 599px) {
  .why {
    margin: 20px 0;
  }
  .why__head {
    margin-bottom: 20px;
  }
  .why__item {
    margin: 0 auto;
  }
  .why__item li:not(:last-child) {
    margin-bottom: 10px;
  }
}

/* ==========================================================================
   3つの特徴
   ========================================================================== */

.feature-b {
  background: #e4f9fc url("../../img/thanks/feature-b-bg.jpg") no-repeat center top fixed;
  background-size: 100vw auto;

  padding: 50px 0;

  margin-right: -100%;
  margin-left: -100%;
  padding-right: 100%;
  padding-left: 100%;
}

.feature-b__head {
  margin-bottom: 50px;
  text-align: center;
}

.feature-b__item {
  list-style-type: none;
  margin: 50px auto;
  padding: 0;
}

.feature-b__item li:not(:last-child) {
  margin-bottom: 20px;
}
@media(max-width: 599px) {
  .feature-b {
    padding: 20px;
    margin-right: -20px;
    margin-left: -20px;
  }
  .feature-b__head {
    margin-bottom: 10px;
  }
  .feature-b__head img {
    max-width: 70%;
  }
  .feature-b__item {
    margin: 0 auto;
  }
  .feature-b__item li:not(:last-child) {
    margin-bottom: 10px;
  }
}

/* ==========================================================================
   声
   ========================================================================== */

.voc {
  background: #c0de9a url("../../img/thanks/voc-bg-1.jpg") no-repeat center top;
  background-size: contain;

  margin: 50px auto;
  padding: 50px;
}

.voc__head {
  margin: 0 auto;
  text-align: center;
}

.voc__item {
  list-style-type: none;
  padding: 0;
}

.voc__item li:not(:last-child) {
  margin: 50px auto;
}

.voc__item li img {
  box-shadow: 0 2px 10px 0 rgba(8, 7, 7, 0.3);
}

@media(max-width: 599px) {
  .voc {
    margin: 20px auto;
    padding: 20px;
  }
  .voc__head {
    margin: 0 30px 10px;
  }
  .voc__item {
    list-style-type: none;
    margin: 0 auto;
    padding: 0;
  }
  .voc__item li:not(:last-child) {
    margin-bottom: 20px;
  }
}


/* ==========================================================================
   プロフィール
   ========================================================================== */

.profile {
  margin: 2em auto;
  padding: 40px;
  background-color: #f7f5f0;
  font-size: 1rem;

  border-radius: 8px;
}

.profile > *:last-child {
  margin-bottom: -.4em;
}

.profile > p {
  margin-bottom: .75em;
  line-height: 1.75;
}

.profile__name-j {
  margin-bottom: .5em;
  letter-spacing: .5em;
  font-size: 1.4em;
  line-height: 1;
  font-feature-settings: "palt";
  font-weight: 500;
}

.profile__name-e {
  margin-bottom: 2em;
  color: #aaa;
  letter-spacing: .25em;
  font-size: 1em;
  font-weight: normal;
  line-height: 1;
  font-feature-settings: "palt";
  text-transform: uppercase;
}

.profile__title {
  margin-bottom: 1em;
  font-size: 1em;
}

.profile__photo {
  float: right;
  margin: 0 0 1em 1em;
  width: 25%;
}

.profile__photo img {
  border-radius: 50%;
}

.profile > h4 {
  margin-bottom: 1em;
}

@media(max-width: 599px) {
  .profile {
    margin: 30px auto;
    padding: 30px;
  }
  .profile__photo {
    display: block;
    float: none;
    margin: 0 auto 2em;
    width: 50%;
  }
  .profile__name-j {
    font-size: 1.5em;
    text-align: center;
  }
  .profile__name-e {
    text-align: center;
  }
}

/* ==========================================================================
   フッター
   ========================================================================== */

.footer {
  margin: 0;
  padding: 40px 0;
  font-size: .8em;
  text-align: center;
  background-color: #f7f5f0;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer__logo {
  margin-bottom: 30px;
}

.footer__navi {
  text-align: right;
}

.footer__navi p {
  margin-bottom: 0;
}

.footer__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display:flex;
  justify-content: flex-end;
}

.footer__nav ul li {
  font-size: .9em;
}

.footer__nav ul li:not(:last-child) {
  margin-right: 1em;
  padding-right: 1em;
  border-right: 1px solid #ccc;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer__copy {
  font-size: 1em;
  text-align: right;
}

@media(max-width: 599px) {
  .footer {
    padding: 20px 0;
  }
  .footer__inner {
    display: block;
  }
  .footer__logo {
    margin-bottom: 20px;
  }
  .footer__logo img {
    max-width: 50%;
  }
  .footer__nav ul {
    justify-content: center;
  }
  .footer__copy {
    text-align: center;
  }
}

/* ==========================================================================
   ページ下部常駐ボタン
   ========================================================================== */

.sticky-footer-btn {
  position: fixed;
  bottom: 0;
  left: 50%;
  z-index: 999;

  padding: 15px;
  width: 100%;
  height: auto;
  background: rgba(0,0,0,0.3);
  text-align: center;
  transform: translate(-50%);

  line-height: 1;
}

.sticky-footer-btn img {
  height: 80px;
}

.footer {
  padding-bottom: 130px;
}

@media(max-width: 599px) {
  .sticky-footer-btn img {
    height: auto;
  }
  .footer {
    padding-bottom: 100px;
  }
}

/* ==========================================================================
   強調文字
   ========================================================================== */

.a-bold ,
p.a-bold {
  font-weight: 500;
}

.a-center ,
p.a-center {
  text-align: center;
}

.a-right ,
p.a-right {
  text-align: right;
}

.a-marker ,
p.a-marker {
  background: #f4dc00;
   background: linear-gradient(transparent 70%, #f4dc00 30%); 
}

.a-red ,
p.a-red {
  color: #c00;
}
