/* 230926 */

@charset "utf-8";

html {
  overflow: auto;
}

body {
  overflow: hidden;
}

html {
  overflow-y: scroll;
}

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

body {
  font-family: sans-serif;
  line-height: 1.75;
  color: #212222;
  background-color: #f9f6f5;
}

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

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

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

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

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

strong {
  font-weight: bolder;
}

ins {
  text-decoration: none;
}

table {
  border-collapse: collapse;
}

address {
  font-style: normal;
}

figure {
  border: 0;
  margin: 0;
}

fieldset {
  border: 0;
}

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

a,
a:hover {
  color: #1a0dab;
  text-decoration: underline;
}

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

a:active {
  color: #1a0dab;
  text-decoration: none;
}

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

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

.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: 800px;
}

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

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

/* 間隔 */

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

.l-margin-s {
  margin: 20px auto;
}

.l-padding {
  padding: 40px;
}

.l-padding-s {
  padding: 1.5em;
}

.l-padding>.l-margin:first-child {
  margin-top: 0;
}

.l-padding>.l-margin:last-child {
  margin-bottom: 0;
}

/* 二段組 */

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

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

/* 三段組 */

.l-columns-3 {
  columns: 3;
  column-gap: 20px;
}

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

/* 画像の大きさ */

.l-max-width-90 {
  max-width: 90%;
}

.l-max-width-80 {
  max-width: 80%;
}

.l-max-width-70 {
  max-width: 70%;
}

.l-max-width-60 {
  max-width: 60%;
}

.l-max-width-50 {
  max-width: 50%;
}

.l-max-width-40 {
  max-width: 40%;
}

.l-max-width-30 {
  max-width: 30%;
}

.l-max-width-20 {
  max-width: 20%;
}

.l-max-width-10 {
  max-width: 10%;
}

/* 文字揃え */

.l-txt-center,
p.l-txt-center {
  text-align: center;
}

.l-txt-right,
p.l-txt-right {
  text-align: right;
}

.l-txt-left,
p.l-txt-left {
  text-align: left;
}

@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);
    gap: 10px;
  }

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

  /* 画像の大きさ */

  .l-sp-max-width-90 {
    max-width: 90%;
  }

  .l-sp-max-width-80 {
    max-width: 80%;
  }

  .l-sp-max-width-70 {
    max-width: 70%;
  }

  .l-sp-max-width-60 {
    max-width: 60%;
  }

  .l-sp-max-width-50 {
    max-width: 50%;
  }

  .l-sp-max-width-40 {
    max-width: 40%;
  }

  .l-sp-max-width-30 {
    max-width: 30%;
  }

  .l-sp-max-width-20 {
    max-width: 20%;
  }

  .l-sp-max-width-10 {
    max-width: 10%;
  }
}

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

.header {
  line-height: 1;
  background: #f7f5f0 url("img/header-bg.jpg") no-repeat center top;

  margin: 0 auto;
  padding: 0 20px;
}

.header {
  padding-top: 40px;
}

.header h1 {
  margin-bottom: 40px;
  position: relative;
  left: -4%;
}

.header-bottom {
  background-color: #e72121;
  background-size: 100vw auto;

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

  padding-bottom: 30px;
  margin-bottom: 20px;
}

.header__txt-2 {
  position: relative;
  top: -7px;
}

.header__megaphone {
  position: absolute;
  top: 140px;
  left: 99%;
  width: 100%;
}

@media(max-width: 599px) {
  .header {
    background: #f7f5f0;
    padding: 0;
  }

  .header h1 {
    margin-bottom: 10px;
    position: static;
  }
}

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

.main {
  padding-bottom: 40px;
}

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

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

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

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

.main>p:not([class]) {
  font-size: 1.1em;
}

@media(max-width: 599px) {
  .main>p:not([class]) {
    font-size: 1em;
  }
}

/* タイトル
======================================================================= */
.title {
  text-align: center;
  margin-bottom: 40px;
}

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

/* 表
======================================================================= */
.table {
  width: 100%;
}

.table th,
.table td {
  padding: .75em 1em;
  vertical-align: top;
  text-align: left;
}

.table tbody {
  line-height: 1.5;
  border-top: 2px solid #7e5253;
  border-bottom: 2px solid #7e5253;
}

.table tr {
  line-height: 1.5;
  border-bottom: 2px dashed #7e5253;
}

.table tbody th {
  background: #f8e6e6;
}

@media(max-width: 599px) {

  .table th,
  .table td {
    padding: .5em .5em;
    font-size: 15px;
  }
}

/* 注意書きリスト
======================================================================= */
.list__notes {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.list__notes li {
  padding-left: 1.5em;
  text-indent: -1.5em;
  margin-bottom: .25em;
  font-size: 16px;
}

.list__notes li:last-child {
  margin-bottom: 0;
}

.list__notes li:before {
  content: "\f069";
  font-family: FontAwesome;
  margin-right: 0.55em;
}

@media(max-width: 599px) {
  .list__notes li {
    font-size: 14px;
  }
}

/* cta
======================================================================= */
.cta {
  margin-top: 20px;
}

.cta__txt {
  margin-top: 20px;
}

@media(max-width: 599px) {
  .cta {
    margin-top: 10px;
  }

  .cta__txt {
    margin-top: 12px;
  }
}

/* =======================================================================
  セミナーで分かる!!3つのイイコト♪
======================================================================= */
.learn__list {
  list-style: none;
  padding-left: 0;
}

.learn__item {
  border: solid 5px #e72121;
  border-radius: 15px;

  position: relative;
  margin-top: 65px;
}

.learn__item:last-child {
  margin-bottom: 0;
}

.learn__num {
  position: absolute;
  left: calc(50% - 50px);
  top: -50px;
}

.learn__img {
  margin: -40px -40px 40px;
}

.learn__img img {
  border-radius: 10px 10px 0 0;
}

.learn__head {
  text-align: center;
  font-size: 40px;
  line-height: 1.3;

  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 4px dotted #7e5253;
}

.learn__item p {
  font-size: 25px;
}

@media(max-width: 599px) {
  .learn__item {
    margin-top: 45px;
  }

  .learn__num {
    left: calc(50% - 35px);
    top: -35px;
    width: 70px;
  }

  .learn__img {
    margin: -20px -20px 20px;
  }

  .learn__head {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .learn__item p {
    font-size: 18px;
  }
}

/* =======================================================================
  メルカリ副業オンライン勉強会
======================================================================= */
.about {
  background-color: #fbf4ca;
  background-size: 100vw auto;

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

.about__box {
  position: relative;
  padding: 40px;
  margin-top: 90px;
  background-color: #f7f5f0;
  border: solid 5px #e72121;
  border-radius: 0 15px 15px 15px;
}

.about__title {
  position: absolute;
  display: inline-block;
  top: -60px;
  left: -5px;
  padding: 5px 40px;
  width: 420px;
  height: 60px;
  font-size: 30px;
  background: #e72121;
  color: #f7f5f0;
  font-weight: bold;
  border-radius: 15px 15px 0 0;
}

.about__box p {
  margin: 0;
  padding: 0;
}

@media(max-width: 599px) {
  .about__box {
    padding: 20px;
    margin-top: 60px;
  }

  .about__title {
    top: -40px;
    left: -5px;
    padding: 3px 20px;
    width: 280px;
    height: 40px;
    font-size: 20px;
  }
}

/* 会場・日時
======================================================================= */
.schedule p {
  font-size: 26px;
  font-weight: bold;
}

@media(max-width: 599px) {
  .schedule p {
    font-size: 22px;
  }
}

/* 参加方法
======================================================================= */
.flow__list {
  list-style: none;
  padding-left: 0;
}

.flow__arrow {
  text-align: center;
}

.flow__item {
  position: relative;
}

.flow__item:first-child {
  margin-top: 20px;
}

.flow__item:last-child {
  margin-bottom: 0;
}

.flow__num {
  position: absolute;
  left: -8%;
  top: -40px;
}

.flow__item h5 {
  font-size: 26px;
  margin-left: 35px;
  margin-bottom: 20px;
}

.flow__img {
  text-align: center;
}

.flow__img img {
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .1);
}

@media(max-width: 599px) {
  .flow__num {
    left: -12%;
    top: -22px;
    width: 50px;
  }

  .flow__item h5 {
    font-size: 17px;
    margin-left: 20px;
    margin-bottom: 1em;
  }
}

/* オンライン開催について
======================================================================= */
.notes p {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
}

.notes__img {
  margin: -40px -40px 40px;
}

.notes__img img {
  border-radius: 0 10px 0 0;
}

@media(max-width: 599px) {
  .notes p {
    font-size: 22px;
    line-height: 1.333;
  }

  .notes__img {
    margin: -20px -20px 20px;
  }
}

/* 参加費
======================================================================= */
.price__img {
  position: relative;
}

.price__megaphone {
  position: absolute;
  top: 140px;
  left: 87%;
  width: 100%;
}

@media(max-width: 599px) {
  .price__megaphone {
    top: 68px;
    left: 86%;
    width: 55px;
  }
}

/* =======================================================================
  勉強会に参加した実績者の声
======================================================================= */
.voc__list {
  list-style: none;
  padding-left: 0;
}

.voc__item {
  background-color: #f8e6e6;
  border-radius: 15px;
}

.voc__item:last-child {
  margin-bottom: 0;
}

.voc__voice {
  font-size: 34px;
  line-height: 1.5;

  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 4px dotted #7e5253;
}

.voc__customer {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.voc__img {
  margin-right: 40px;
  min-width: 100px;
}

.voc__img img {
  border-radius: 50px;
}

.voc__name {
  font-size: 24px;
  line-height: 1.3;
  margin-right: 40px;
}

.voc__achieve {
  font-size: 24px;
  line-height: 1.3;
}

.voc__name p:not(:last-child),
.voc__achieve p:not(:last-child) {
  margin-bottom: .25em;
}

@media(max-width: 599px) {
  .voc__voice {
    font-size: 20px;
  }

  .voc__customer {
    display: block;
    text-align: center;
  }

  .voc__img {
    margin-right: 0;

    margin-bottom: 20px;
  }

  .voc__name {
    font-size: 18px;
    margin-right: 0;

    margin-bottom: 20px;
  }

  .voc__achieve {
    font-size: 18px;
  }
}

/* =======================================================================
  こんな方におすすめ
======================================================================= */
.target {
  background-color: #e72121;
  background-size: 100vw auto;

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

  position: relative;
}

.check {
  list-style: none;
  padding: 40px;
  background-color: #f7f5f0;
  border-radius: 15px;
}

.check li {
  padding-left: 35px;
  line-height: 1.5em;
  padding-bottom: 40px;
  margin-bottom: 40px;
  background: url(img/check.png) left 0px top 5px no-repeat;
  background-size: 25px auto;

  border-bottom: 2px solid #7e5253;
}

.check li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.check li h4 {
  font-size: 30px;
  line-height: 1.5;
  margin-bottom: .25em;
}

.check li p {
  font-size: 20px;
}

.target__img-1 {
  position: absolute;
  top: 27%;
  left: 59%;
}

.target__img-2 {
  position: absolute;
  top: 48.3%;
  left: 55.5%;
}

.target__img-3 {
  position: absolute;
  top: 74%;
  left: 55.5%;
}

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

  .check li {
    padding-left: 30px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    background: url(img/check.png) left 0px top 7px no-repeat;
    background-size: 20px auto;
  }

  .check li h4 {
    font-size: 23px;
  }

  .check li p {
    font-size: 16px;
  }

  .target__img-1 {
    position: relative;
    top: 0;
    left: 0;

    text-align: center;
  }

  .target__img-2 {
    position: relative;
    top: 0;
    left: 0;

    text-align: center;
  }

  .target__img-3 {
    position: relative;
    top: 0;
    left: 0;

    text-align: center;
  }
}

/* =======================================================================
  よくあるご質問
======================================================================= */
.faq {
  margin-bottom: 0;
}

.faq__list {
  list-style: none;
  padding-left: 0;
}

.faq__item {
  margin: 20px auto;
}

.faq__item:last-child {
  margin-bottom: 0;
}

/* Q */
.faq__q {
  padding: 30px 30px 27px;
  border: 3px solid #e72121;
  border-radius: 15px 15px 0 0;
  background: #fbf4ca;
  font-size: 28px;
  line-height: 1.333;

  display: flex;
  align-items: center;
}

.faq__q::before {
  content: "";
  display: inline-block;
  width: 65px;
  height: 65px;
  min-width: 65px;
  min-height: 65px;
  background: url(img/question.png) no-repeat;
  background-size: contain;
  margin-right: 20px;
}

/* A */
.faq__a {
  padding: 20px 30px;
  border: 3px solid #e72121;
  border-top-width: 0;
  border-radius: 0 0 15px 15px;
  background: #f7f5f0;

  font-size: 20px;
  line-height: 1.333;
}

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

@media(max-width: 599px) {
  .faq__q {
    font-size: 18px;
    padding: 20px;
  }

  .faq__q br {
    display: none;
  }

  .faq__q::before {
    content: "";
    display: inline-block;
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
    background: url(img/question.png) no-repeat;
    background-size: contain;
    margin-right: 10px;
  }

  .faq__a {
    margin: 0 auto 20px;
    padding: 20px 20px;

    font-size: 15px;
  }
}

/* =======================================================================
  フッター
======================================================================= */
.footer {
  margin: 0;
  padding: 40px 0;
  font-size: .8em;
  text-align: center;
  background-color: #e72121;
  color: #f9f6f5;
}

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

.footer__logo {
  margin-bottom: 30px;
}

.footer__nav {
  text-align: right;
}

.footer__nav 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;
    font-size: .7em;
  }

  .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;
  }
}

/* =======================================================================
  アクセント
======================================================================= */

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

.a-big,
p.a-big {
  font-size: 21px;
}

.a-big1,
p.a-big1 {
  font-size: 24px;
}

.a-big2,
p.a-big2 {
  font-size: 27px;
}

.a-big3,
p.a-big3 {
  font-size: 30px;
}

@media(max-width: 599px) {

  .a-big,
  p.a-big {
    font-size: 17px;
  }

  .a-big1,
  p.a-big1 {
    font-size: 19px;
  }

  .a-big2,
  p.a-big2 {
    font-size: 21px;
  }

  .a-big3,
  p.a-big3 {
    font-size: 23px;
  }
}

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

.a-marker,
p.a-marker {
  background: #fbe775;
  background: linear-gradient(transparent 33%, #fbe775 33%) repeat scroll 0% 0% transparent;
}

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

.a-orange,
p.a-orange {
  color: #e79a21;
}

.a-underline,
p.a-underline {
  text-decoration: underline;
}


/* 点滅 */
.a-blinking {
  -webkit-animation: blink .8s ease-in-out infinite alternate;
  -moz-animation: blink .8s ease-in-out infinite alternate;
  animation: blink .8s ease-in-out infinite alternate;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* フワフワ */
.a-fuwafuwa {
  animation: 2s fuwafuwa infinite;
}

@keyframes fuwafuwa {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(15px);
  }
}

.shadow {
  box-shadow: 0px 25px 10px -5px rgba(0, 0, 0, 0.15)
}

@media(max-width: 599px) {
  .shadow {
    box-shadow: 0px 15px 10px -5px rgba(0, 0, 0, 0.15)
  }
}

.is-shadow {
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.25));
}

.is-shadow:hover {
  filter: none;
}