@charset "utf-8";
/* CSS Document */
@font-face {
  font-family: "NotoSansJP-wght400";
  font-style: normal;
  font-weight: 400;
  src: url("/font/NotoSansJP-wght400.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP-wght900";
  font-style: normal;
  font-weight: 900;
  src: url("/font/NotoSansJP-wght900.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "NotoSerifJP-wght700";
  font-style: normal;
  font-weight: 700;
  src: url("/font/NotoSerifJP-wght700.woff2") format("woff2");
  font-display: swap;
}
/* スマホから開始 */
/*___________ 基本設定 ___________ */
body {
  margin: 0;
  font-size: 1rem;
  position: relative;
  background-color: #faf5ef;
}
strong {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 900;
}
ol, ul {
  padding: 0;
  list-style-type: none;
}
p, li {
  font-size: 4.5vw;
}
img {
  width: 100%;
  height: auto;
}
picture {
  display: block;
}
.pc_view {
  display: none;
}
span.pc_view {
  display: none;
}
.smp_view {
  display: block;
}
span.smp_view {
  display: inline;
}
.pc_block {
  display: inline;
}
.smp_block {
  display: block;
}
.txt_block {
  display: block;
}
/* ____ リンクテキスト ____ */
a {
  color: #3a3a30;
  text-decoration: underline;
}
a:visited {
  color: #3a3a30;
  text-decoration: underline;
}
a:hover, a:active, /* for IE (Keyboard) */ a:focus { /* for Netscape (Keyboard) */
  color: #CC0000;
  text-decoration: none;
  transition: 0s;
  opacity: 0.8;
}
a:hover img {
  opacity: 0.8;
}
/* ____ フロート設定 ____ */
.flo-l {
  float: left;
  margin-right: 3vw;
}
.flo-r {
  float: right;
  margin-left: 3vw;
}
/* ____ フロートボックス解除用 ____ */
.clear {
  clear: both;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
/* ____ テキストカラー ____ */
.red {
  color: #CC0000;
}
.blue {
  color: #0066CC;
}
.grn {
  color: #008000;
}
.ora {
  color: #d14400;
}
.gry {
  color: #999999;
}
.wht {
  color: #FFFFFF;
}
.gray {
  color: #B8B8B8;
}
.red2 {
  color: #5F0001;
}
/* ____ テキスト設定 ____ */
.txt_sm {
  font-size: 80%;
}
em {
  font-style: normal;
  font-weight: bold;
  font-size: 1.4em;
}
.b {
  font-weight: bold;
}
.s {
  text-decoration: line-through;
}
.u {
  text-decoration: underline;
}
.f11 {
  font-size: 11px;
  line-height: 130%;
}
.f12 {
  font-size: 12px;
  line-height: 140%;
}
.f13 {
  font-size: 13px;
  line-height: 18px;
}
.f14 {
  font-size: 14px;
  line-height: 140%;
}
.f16 {
  font-size: 16px;
  line-height: 140%;
}
.f18 {
  font-size: 18px;
  line-height: 140%;
}
.f24 {
  font-size: 24px;
  line-height: 140%;
}
/* 文字揃え */
.txt_r {
  text-align: right;
}
.txt_l {
  text-align: left;
}
.txt_c, .center {
  text-align: center;
}
/* ____ 余白設定 ____ */
.ma20 {
  margin: 20px 0;
}
.mt10 {
  margin-top: 10px;
}
.mt20 {
  margin-top: 20px;
}
.mt40 {
  margin-top: 40px;
}
.mt80 {
  margin-top: 80px;
}
.ml20 {
  margin-left: 20px;
}
.mb0 {
  margin-bottom: 0;
}
.mb1em {
  margin-bottom: 1em;
}
.mb2em {
  margin-bottom: 2em;
}
.mtb2em {
  margin: 2em 0;
}
.pd5 {
  padding-left: 2vw;
}
/* ____ ボックス設定 ____ */
/* フレキシブルボックス */
.flexbox {
  display: block;
}
/* 大枠ボックス */
main.wrapper {
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
  z-index: 0;
}
section {
  overflow: hidden;
  margin-bottom: 2em;
}
.wrapper {
  width: 100%;
  margin: 0 auto 2em auto;
  position: relative;
}
.inner {
  padding: 0 0.5em;
}
.inner.wrapper {
  width: 96vw;
  padding: 0 2vw 0 2vw;
}
.notice_box {
  width: 92vw;
  margin: 0 auto;
}
/* ボックス内共通設定 */
h2 {
  margin-bottom: 0.5em;
  font-size: 1.4em;
  line-height: 1.2;
  color: #3a3a30;
}
h3 {
  margin-bottom: 0.5em;
  font-size: 1.2em;
  color: #380000;
}
h4 {
  margin-bottom: 0.5em;
  color: #32210c;
  font-size: 1.2em;
}
h5 {
  margin-bottom: 0.5em;
  font-size: 1em;
}
.green {
  color: #93a400;
}
section p {
  margin-bottom: 1em;
}
picture {
  margin-bottom: 1em;
}
.v_hdn {
  visibility: hidden;
}
/*___________ ヘッダー開始 ___________ */
.border {
  border-bottom: dotted #3a3a30 1px;
  padding: 0.2vw;
}
.border p {
  margin: 2vw 5vw 0 5vw;
  color: #949494;
  font-weight: bold;
  font-size: 3vw;
}
h1.logo {
  font-family: "NotoSansJP-wght400", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 7vw;
  line-height: 1.2;
  color: #3a3a30;
  margin: 2vw 5vw;
}
nav ul.flexbox {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto 2vw auto;
}
nav ul li {
  margin: 2vw auto 2vw auto;
  font-size: 4.5vw;
  border-right: dotted #3a3a30 2px;
  border-left: dotted #3a3a30 2px;
}
nav ul li a {
  width: 40vw;
  display: block;
  text-align: center;
}
nav ul li:last-of-type::after {
  content: none;
}
nav ul li a {
  color: #3a3a30;
  text-decoration: none;
}
/*___________ 動画開始 ___________ */
.yt_movie {
  padding: 1vw 0;
  text-align: center;
  background-color: #000000;
  overflow: hidden;
}
.yt_movie a {
  display: block;
  position: relative;
}
.yt_movie a::after {
  content: "";
  display: block;
  margin: -30px 0 0 -50px;
  width: 100px;
  height: 60px;
  border-radius: 10px;
  background-image: url("/lesson/images/play3kaku.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50px 30px;
  background-color: rgba(0, 0, 0, 0.80);
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 999;
}
.yt_movie a:hover::after {
  background-color: rgba(227, 14, 0, 1.00);
}
.yt_movie + p {
  font-size: 0.8em;
  font-weight: bold;
  margin: 0.5em 0 1em;
}
.movie p:last-of-type img {
  width: 70%;
}
/*___________ 魅力開始 ___________ */
.miryoku .flexbox {
  align-items: flex-start;
}
.miryoku .flexbox .flexitem {
  width: 100%;
}
/*___________ 料金プラン開始 ___________ */
.ryoukin h2 {
  margin-top: 2em;
}
.ryoukin .flexbox .flexitem {
  width: 100%;
  padding: 5vw;
  border: 3px solid #b35490;
  background-color: #FFFFFF;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 1em;
}
.ryoukin .flexbox .flexitem:last-of-type {
  border: 3px solid #FF6E00;
}
.ryoukin .flexbox .flexitem p {
  margin: 0 auto;
}
.ryoukin .flexbox .flexitem h3 {
  color: #b35490;
}
.ryoukin .flexbox .flexitem:last-of-type h3 {
  color: #FF6E00;
}
/*___________ お支払方法開始 ___________ */
.nakami {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 3vw;
}
/*___________ ご利用方法開始 ___________ */
.goriyou.inner.wrapper {
  margin: 0 auto;
}
.goriyou h2 {
  color: #FFFFFF;
  background-image: url("/lesson/images/modasi_border02_smp.png");
  background-repeat: no-repeat;
  background-size: 100%;
  padding: 3vw 4vw 6vw 4vw;
  font-size: 5vw;
  margin-bottom: 0;
}
.goriyou .nakami p {
  padding-top: 1em;
}
.goriyou .nakami p:first-of-type {
  padding-top: 1em;
}
.goriyou .nakami .flexbox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.goriyou .nakami .flexbox .flexitem {
  width: 50%;
  padding: 0 1em;
  text-align: center;
}
.goriyou .nakami .flexbox .flexitem:nth-of-type(1) {
  width: 100%;
}
.goriyou .nakami .flexbox .flexitem:nth-of-type(2) {
  width: 100%;
}
.goriyou .nakami .flexbox .flexitem h3 {
  font-size: 3vw;
  line-height: 1.6;
}
.goriyou .nakami .flexbox .flexitem p {
  font-size: 2.8vw;
  line-height: 1.6;
}
.goriyou .nakami .flexbox .flexitem img {
  width: 65%;
  height: auto;
}
.goriyou .nakami .flexbox .flexitem:nth-of-type(1) img {
  width: 30%;
  height: auto;
}
.goriyou .nakami .flexbox .flexitem:nth-of-type(2) img {
  width: 40%;
  height: auto;
}
.goriyou .nakami .flexbox .flexitem img.skype-img {
  width: 60%;
  height: auto;
}
.goriyou .smpflex {
  margin-bottom: 1em;
  /*  display: flex;
  justify-content: center;
  align-items: center;*/
}
.goriyou .flexbox .flexitem:first-of-type .smpflex h3 {
  width: 70%;
  margin: 0 auto;
}
.goriyou .flexbox .flexitem:nth-of-type(2) .smpflex h3 {
  width: 70%;
  margin: 0 auto;
}
.goriyou .flexbox .flexitem:nth-of-type(2) .smpflex p:last-of-type {
  width: 70%;
  margin: 0 auto 1em;
}
/*___________ ステップ開始 ___________ */
.step.inner.wrapper {
  margin: 0 auto;
}
.step h2 {
  color: #FFFFFF;
  background-image: url("/lesson/images/modasi_border01_smp.png");
  background-repeat: no-repeat;
  background-size: 100%;
  padding: 7vw 4vw;
  font-size: 5vw;
  margin-bottom: 0;
}
.step h3 {
  font-size: 5vw;
  padding-left: 2em;
  text-indent: -2em;
}
.step .no {
  display: inline-block;
  width: 2em;
  text-indent: 0;
}
.step .nakami p {
  padding-top: 1em;
}
.step .nakami p:first-of-type {
  padding-top: 1em;
}
.step .nakami .flexbox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.step .nakami .flexbox .flexitem {
  width: 50%;
  padding: 0 1em;
  text-align: center;
}
.step .nakami .flexbox .flexitem {
  width: 100%;
}
.step .nakami .flexbox .flexitem h3 {
  font-size: 3vw;
  line-height: 1.6;
}
.step .nakami .flexbox .flexitem p {
  /*  font-size: 2.8vw;
  line-height: 1.6;*/
  text-align: left;
}
.goriyou .nakami .flexbox .flexitem img {
  width: 65%;
  height: auto;
}
.step .nakami .flexbox .flexitem img {
  width: 30%;
  height: auto;
}
.step .nakami .flexbox .flexitem img.skype-img {
  width: 60%;
  height: auto;
}
.step .smpflex {
  margin-bottom: 1em;
  /*  display: flex;
  justify-content: center;
  align-items: center;*/
}
.step .flexbox .flexitem .smpflex h3 {
  /*  width: 70%;*/
  margin: 0 auto;
}
/*___________ 仮申込開始 ___________ */
.pay_botan {
  background-image: linear-gradient(180deg, rgba(255, 127, 129, 1.00) 0%, rgba(255, 113, 115, 1.00) 100%);
  border-radius: 10px;
  margin: 9vw 4vw;
  text-align: center;
}
.pay_botan a {
  color: #FFFFFF;
  text-shadow: 0 2px 0 #8B3839;
  /*box-shadow: 0 5px 0 0 #B16A6B;*/
  border-radius: 10px;
  text-decoration: none;
  font-size: 6vw;
  font-weight: bold;
  display: block;
  padding: 4vw;
  transition: .4s;
}
.pay_botan a:hover {
  background-image: linear-gradient(180deg, rgba(255, 113, 115, 1.00) 0%, rgba(255, 127, 129, 1.00) 100%);
  box-shadow: 0 5px 0 0 #B16A6B inset;
  text-shadow: none;
  transition: .4s;
}
.pay_botan p {
  margin-bottom: 0;
}
/*___________ プロフィール開始 ___________ */
.profile .smp_nakami {
  background-color: #FFFFFF;
  border-radius: 10px;
  margin: 1em auto;
  padding: 1em;
}
/*___________ フッター開始 ___________ */
footer {
  padding: 2em 0;
  color: #FFFFFF;
  background-color: #93a400;
}
footer .center a {
  color: #FFFFFF;
}
footer .center p {
  font-size: 0.9em;
  margin-bottom: 0;
}
footer .center p:first-of-type {
  margin-bottom: 1em;
}
/*___________ 特商法開始 ___________ */
#law table {
  background-color: #FFFFFF;
  display: block;
  padding: 5vw;
  width: 98%;
  margin: 0 auto;
  border-radius: 20px;
  line-height: 1.1;
}
#law table th {
  padding: 1.5em 1em;
}
#law table tr {
  border-bottom: dotted #3a3a30 1px;
}
#law table tr:last-of-type {
  border-bottom: none;
}
#law table tbody {
  display: block;
  margin: 0 auto;
}
/* パソコン開始 */
/*___________ 基本設定 ___________ */
@media screen and (min-width: 481px) {
  body {
    font-size: 1.125rem;
  }
  p, li {
    font-size: 1em;
  }
  img {
    width: auto;
    height: auto;
  }
  picture {
    text-align: center;
  }
  .pc_view {
    display: block;
  }
  span.pc_view {
    display: inline;
  }
  .smp_view {
    display: none;
  }
  span.smp_view {
    display: none;
  }
  .pc_block {
    display: block;
  }
  .smp_block {
    display: inline;
  }
  /* ____ ボックス設定 ____ */
  /* フレキシブルボックス */
  .flexbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  /* 大枠ボックス */
  main.wrapper {
    margin: 1em auto;
    padding: 0;
    width: 980px;
    box-sizing: content-box;
  }
  .wrapper {
    width: 980px;
    margin: 0 auto 2em auto;
  }
  .inner {
    padding: 0 1.5em;
  }
  .inner.wrapper {
    width: 940px;
    padding: 0;
  }
  .notice_box {
    width: 650px;
  }
  /* ボックス内共通設定 */
  section p {
    margin-bottom: 1em;
  }
  /*___________ ヘッダー開始 ___________ */
  header {
    width: 980px;
    margin: 0 auto;
  }
  .border {
    padding: 0.5em 0.5em 0.5em 0.5em;
  }
  .border p {
    margin: 0;
    font-size: 0.7em;
  }
  h1.logo {
    font-size: 1.5em;
    line-height: 1.2;
    margin: 0.5em 0;
  }
  nav ul.flexbox {
    width: 980px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 1em auto;
  }
  nav ul li {
    margin: 0 auto 0.5em auto;
    font-size: 1em;
    border-right: dotted #3a3a30 2px;
    border-left: dotted #3a3a30 2px;
  }
  nav ul li a {
    width: 200px;
  }
  nav ul li:last-of-type::after {
    content: none;
  }
  nav ul li a {
    color: #3a3a30;
    text-decoration: none;
  }
  /*___________ 動画開始 ___________ */
  .yt_movie {
    width: 560px;
    padding: 0;
    text-align: left;
  }
  .yt_movie a:hover {
    opacity: 1;
  }
  .yt_movie img {
    width: 560px;
    height: auto;
  }
  .yt_movie a:hover img {
    opacity: 1;
  }
  .yt_movie + p {
    font-size: 0.8em;
    font-weight: bold;
    margin: 0.5em 0 2em;
  }
  .yt_movie a::after {
    margin: -30px 0 0 -60px;
  }
  .movie p:last-of-type img {
    width: 100%;
  }
  /*___________ 魅力開始 ___________ */
  .miryoku .flexbox .flexitem {
    width: 230px;
  }
  .miryoku .flexbox .flexitem img {
    width: 230px;
  }
  .miryoku h2 {
    margin: 1.5em auto;
  }
  .miryoku h3 {
    font-size: 1em;
  }
  /*___________ 料金プラン開始 ___________ */
  .ryoukin .flexbox {
    align-items: flex-start;
  }
  .ryoukin .flexbox .flexitem {
    width: 460px;
    padding: 20px;
  }
  .ryoukin .flexbox .flexitem:first-of-type {
    padding: 20px 33px 47px 33px;
  }
  .ryoukin .flexbox .flexitem:last-of-type {
    border: 3px solid #FF6E00;
  }
  /*___________ お支払方法開始 ___________ */
  .pay .nakami {
    margin: 0 auto;
    padding: 3em;
  }
  .pay .nakami p {
    width: 400px;
    margin: 0 auto;
  }
  .nakami {
    padding: 1em;
  }
  /*___________ ご利用方法開始 ___________ */
  .goriyou h2 {
    background-image: url("/lesson/images/modasi_border02.png");
    padding: 1.3em 1em 1.1em 1em;
    font-size: 1.4em;
  }
  .goriyou .nakami .flexbox {
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .goriyou .nakami .flexbox .flexitem {
    width: 300px;
  }
  .goriyou .nakami .flexbox .flexitem h3 {
    font-size: 1.1em;
    line-height: 1.2;
  }
  .goriyou .nakami .flexbox .flexitem p {
    font-size: 1em;
    line-height: 1.2;
  }
  .goriyou .nakami .flexbox .flexitem img {
    width: auto;
    height: auto;
  }
  .goriyou .nakami .flexbox .flexitem:nth-of-type(1) {
    width: 50%;
  }
  .goriyou .nakami .flexbox .flexitem:nth-of-type(2) {
    width: 50%;
  }
  .goriyou .nakami .flexbox .flexitem:nth-of-type(1) img {
    width: auto;
    height: auto;
  }
  .goriyou .nakami .flexbox .flexitem:nth-of-type(2) img {
    width: auto;
    height: auto;
    margin-bottom: 1em;
  }
  .goriyou .nakami .flexbox .flexitem img.skype-img {
    width: 150px;
    height: 150px;
    margin: 10px;
  }
  .goriyou .smpflex {
    display: block;
    justify-content: flex-start;
    align-items: stretch;
  }
  /*___________ ステップ開始 ___________ */
  .step h2 {
    background-image: url("/lesson/images/modasi_border01.png");
    padding: 1.2em 1em 1.2em 1em;
    font-size: 1.4em;
  }
  .step h3 {
    font-size: 1.4em;
    padding-left: 4em;
    text-indent: -2em;
  }
  .step .no {
    display: inline-block;
    width: 2em;
    text-indent: 0;
  }
  .step .nakami {
    padding: 1em 2.5em;
  }
  .step .nakami p {
    padding: 0 0 0 5.5em;
  }
  .step .nakami .flexbox {
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .step .nakami .flexbox .flexitem {
    width: 300px;
  }
  .step .nakami .flexbox .flexitem h3 {
    font-size: 1.1em;
    line-height: 1.2;
  }
  .step .nakami .flexbox .flexitem .skype p {
    font-size: 1em;
    line-height: 1.2;
  }
  .step .nakami .flexbox .flexitem img {
    width: auto;
    height: auto;
  }
  .step .nakami .flexbox .flexitem:nth-of-type(1) {
    width: 60%;
  }
  .step .nakami .flexbox .flexitem:nth-of-type(2) {
    width: 40%;
  }
  .step .nakami .flexbox .flexitem:nth-of-type(1) img {
    width: auto;
    height: auto;
  }
  .step .nakami .flexbox .flexitem:nth-of-type(2) img {
    width: auto;
    height: auto;
    margin-bottom: 1em;
  }
  .step .nakami .flexbox .flexitem img.skype-img {
    width: 150px;
    height: 150px;
    margin: 10px;
  }
  .step .smpflex {
    display: block;
    justify-content: flex-start;
    align-items: stretch;
  }
  /*___________ 仮申込開始 ___________ */
  .pay_botan {
    width: 660px;
    height: 88px;
    margin: 3em auto;
    border-radius: 40px;
  }
  .pay_botan a {
    font-size: 1.4em;
    padding: 0.9em;
    border-radius: 40px;
  }
  .pay_botan:last-of-type {
    width: 505px;
    height: 88px;
  }
  /*___________ プロフィール開始 ___________ */
  .profile .flexbox {
    align-items: flex-start;
    justify-content: space-around;
  }
  .profile .smp_nakami {
    background-color: transparent;
    border-radius: 0;
    margin: 0;
    padding: 0;
    width: 420px;
    font-size: 0.8em;
  }
  .profile .flexbox .flexitem:first-of-type {
    width: 255px;
  }
  /*___________ フッター開始 ___________ */
  /*___________ 特商法開始 ___________ */
  #law table {
    padding: 1em 1em 2em 1em;
    width: 980px;
  }
  #law table tbody {
    display: block;
    width: 740px;
    margin: 0 auto;
  }
}