/* 230703 */

@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: #112131;
  background-color: #f5f5f5;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  margin: 0;
  padding: 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: .5em;
}

@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: #2e4d90;
  text-decoration: underline;
}

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

a:active {
  color: #2e4d90;
  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: #f0f1f3 url("img/header-bg.jpg") no-repeat left top;
}

.header {
  padding-top: 40px;
}

.header h1 {
  margin-bottom: 40px;
}

.header__txt-2 {
  background-color: #2e4d90;
  padding-bottom: 0;
}

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

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

  .header h1 {
    margin-bottom: 0;
  }
}

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

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

/* =======================================================================
  CTA
======================================================================= */
.cta__btn img {
  border-radius: 5px;
}

/* 小見出し 上下線
======================================================================= */

.h__border-1 {
  margin: 40px 0;
  padding: 20px 20px;
  border-top: 1px solid #2e4d90;
  border-bottom: 1px solid #2e4d90;

  text-align: center;
  font-size: 32px;
  line-height: 1.333;
  color: #2e4d90;
}

.h__border-1:first-child {
  margin-top: 0;
}

@media(max-width: 599px) {
  .h__border-1 {
    margin: 20px 0px;
    padding: 15px 20px;
    font-size: 20px;
  }
}

/* 小見出し 左右線
======================================================================= */

.h__border-2 {
  position: relative;
  padding: 0 65px;
  text-align: center;

  font-size: 40px;
}

.h__border-2:before,
.h__border-2:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 40%;
  height: 2px;
  background-color: #112131;
}

.h__border-2:before {
  left: 0;
}

.h__border-2:after {
  right: 0;
}

@media(max-width: 599px) {
  .h__border-2 {
    font-size: 21px;
  }
}

/* 小見出し 小下線
======================================================================= */

.h__border-3 {
  position: relative;
  text-align: center;

  line-height: 1em;
  font-size: 30px;
}

.h__border-3:before {
  position: absolute;
  bottom: -0.4em;
  left: calc(50% - 25px);
  width: 50px;
  height: 2px;
  content: '';
  background: #112131;
}

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

  .h__border-3:before {
    left: calc(50% - 15px);
    width: 30px;
  }
}

/* UL
======================================================================= */

.check-blue {
  list-style: none;
  padding: 40px;
  background-color: #f5f5f5;
  font-size: 22px;
  font-weight: bold;

  border-radius: 3px;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
}

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

.check-blue li:last-child {
  padding-bottom: 0;
}

.check-red {
  list-style: none;
  padding: 40px;
  background-color: #f5f5f5;
  font-size: 22px;
  font-weight: bold;

  border-radius: 3px;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
}

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

.check-red li:last-child {
  padding-bottom: 0;
}

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

  .check-blue li {
    padding-left: 25px;
    background: url(img/check__blue.png) left 0px top 4px no-repeat;
    background-size: 17px auto;
  }

  .check-red {
    padding: 20px;
    font-size: 16px;
  }

  .check-red li {
    padding-left: 25px;
    background: url(img/check__red.png) left 0px top 4px no-repeat;
    background-size: 17px auto;
  }
}

/* =======================================================================
  チェックリスト
======================================================================= */

ul.checklist {
  list-style-type: none;
  font-size: 1.1em;
  font-weight: bolder;
}

ul.checklist>li {
  margin: 0;
  padding: .5em;
  border-top: 1px solid #ddd;
  padding-left: 1.5em;
  text-indent: -1.5em;
}

ul.checklist>li::before {
  margin-right: 12px;
  color: #2e4d90;
  content: '\f14a';
  font-family: FontAwesome;
  font-size: 1.2em;
}

ul.checklist>li:last-child {
  border-bottom: 1px solid #ddd;
}

ul.checklist>li.caption {
  padding-left: 1.5em;
  text-indent: -1em;
  font-weight: normal;
  font-size: 17px;
  line-height: 1.75em;
}

ul.checklist>li.caption::before {
  content: none;
}

@media(max-width: 599px) {
  ul.checklist {
    line-height: 1.4em;
    font-size: 1em;
  }

  ul.checklist>li {
    padding: .5em;
    padding-left: 1.5em;
  }

  ul.checklist>li::before {
    margin-right: 6px;
  }
}

/* =======================================================================
  こんなお悩みありませんか？
======================================================================= */
.problem {
  background-image: linear-gradient(180deg, rgba(67, 67, 67, 1), rgba(120, 120, 120, 1));
  background-size: 100vw auto;

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

  padding-top: 20px;
  padding-bottom: 1px;
}

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

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

/* =======================================================================
  動画講座で学ぶことができること
======================================================================= */
.learn {
  background-color: #2e4d90;
  background: #2e4d90 url("img/problem__bg.jpg") no-repeat center top;
  background-size: 100vw auto;

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

  padding-top: 120px;
}

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

@media(max-width: 599px) {
  .learn {
    padding-top: 40px;
  }
}

/* =======================================================================
  講座概要
======================================================================= */
.intro,
.attention,
.solution {
  font-size: 20px;
}

@media(max-width: 599px) {

  .intro,
  .attention,
  .solution {
    font-size: 15px;
  }
}

/* =======================================================================
  プレゼント
======================================================================= */
.gift {
  background-color: #de3232;
  background-size: 100vw auto;

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

.gift__title {
  text-align: center;
}

.gift__list {
  list-style: none;
}

.gift__item {
  background-color: #f5f5f5;
  border-radius: 3px;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);

  padding-bottom: 0;
}

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

.gift__head {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.gift__head-num {
  margin-right: 15px;
  min-width: 90px;
}

.gift__head-txt {
  font-size: 28px;
}

.gift__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.gift__txt {
  min-width: 80%;
  font-size: 20px;

  padding-bottom: 40px;
}

.gift__img {
  position: relative;
  left: 15px;
  bottom: 40px;
  min-width: 100%;
}

@media(max-width: 839px) {
  .gift__txt {
    min-width: 75%;
    font-size: 20px;

    padding-bottom: 40px;
  }

  .gift__img {
    position: relative;
    left: 10px;
    bottom: 20px;
    min-width: 100%;
  }

  .gift__img img {
    width: 200px;
  }
}

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

  .gift__head-num {
    margin-right: 10px;
    width: 40px;
    min-width: 40px;
  }

  .gift__head-txt {
    font-size: 20px;
  }

  .gift__container {
    display: block;
  }

  .gift__txt {
    min-width: initial;
    font-size: 16px;
    padding-bottom: 10px;
  }

  .gift__img {
    position: static;
    min-width: initial;

    text-align: center;
  }

  .gift__img img {
    width: 180px;
  }
}

/* =======================================================================
  voc
======================================================================= */
.voc {
  background-color: #e2e2e2;
  background-size: 100vw auto;

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

  margin-top: -40px;
  margin-bottom: -40px;
}

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

/* 成果報告画面 */
.voc__img {
  padding: 0;
  margin-top: 20px;
  margin-bottom: 40px;
  list-style-type: none;

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

.voc__img img {
  width: 100%;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .1);
}

.voc__arrow {
  text-align: center;
}

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

  .voc__img {
    margin-top: 10px;
    margin-bottom: 20px;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .voc__arrow img {
    width: 140px;
  }
}

/* =======================================================================
  広告で集客ができるようになると
======================================================================= */
.benefit {
  background-color: #e2e2e2;
  background-size: 100vw auto;

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

  margin-top: -40px;
}

.benefit__title {
  text-align: center;
  background-color: #2e4d90;
  font-size: 40px;
  color: #f5f5f5;
  border-radius: 3px 3px 0 0;

  padding: 10px;
  margin-bottom: -15px;
}

.benefit__check-red {
  list-style: none;
  padding: 40px;
  background-color: #f5f5f5;
  font-size: 22px;
  font-weight: bold;

  border: solid 15px #2e4d90;
  border-radius: 0 0 3px 3px;
}

.benefit__check-red li {
  padding-left: 35px;
  line-height: 1.5em;
  padding-bottom: 0.5em;
  background: url(img/check__red.png) left 0px top 5px no-repeat;
  background-size: 25px auto;
}

.benefit__check-red li:last-child {
  padding-bottom: 0;
}

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

  .benefit__title {
    font-size: 24px;
    line-height: 1.4em;
    padding: 15px;
    margin-bottom: -20px;
  }

  .benefit__check-red {
    padding: 20px;
    font-size: 16px;
  }

  .benefit__check-red li {
    padding-left: 25px;
    background: url(img/check__red.png) left 0px top 4px no-repeat;
    background-size: 17px auto;
  }
}

/* =======================================================================
  動画講座の一部
======================================================================= */

.content {
  background-color: #2e4d90;
  background-size: 100vw auto;

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

  margin-top: -40px;
}

.content__title {
  text-align: center;
}

.content__item {
  background-color: #f5f5f5;
  border-radius: 3px;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .1);
}

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

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

.content__head {
  display: flex;
  align-items: start;
  margin-bottom: 20px;
}

.content__head-num {
  margin-right: 15px;
  min-width: 100px;
}

.content__head-txt {
  font-size: 27px;
  color: #2e4d90;
}

@media(max-width: 599px) {
  .content {
    background-attachment: scroll;
    margin-right: -20px;
    margin-left: -20px;
    padding-right: 20px;
    padding-left: 20px;

    margin-top: -20px;
  }

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

  .content__head {
    display: block;
    margin-bottom: 10px;
  }

  .content__head-num {
    margin-right: 0;
    margin-bottom: 5px;
    min-width: 60px;
    width: 60px;
  }

  .content__head-txt {
    font-size: 19px;
    line-height: 1.5em;
  }
}

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

.profile {
  background: #f2efe6;
  border-radius: 3px;
  font-size: 1rem;
}

ul.profile__title {
  margin-bottom: 1em;
  padding: 0 0 0 1.25em;
}

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

  color: #112131;
  font-weight: bold;
}

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

.profile__photo {
  float: right;
  margin: 0 0 40px 40px;
  width: 150px;
  border-radius: 999px;
}

.main .profile h4 {
  margin: 1.5em 0 1em;
  padding-top: 1em;
  border-top: 1px solid #112131;
  font-size: 18px;
}

/* サムネイル */
.work__img {
  padding: 0;
  margin-bottom: 20px;
  list-style-type: none;

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

.work__img img {
  width: 100%;
  aspect-ratio: 16 / 9;
}

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

  .profile__photo {
    display: block;
    float: none;
    margin: 1em auto;
    width: 40%;
  }

  .profile__name-j {
    text-align: center;
    font-size: 18px;
  }

  .profile__name-e {
    text-align: center;
    font-size: 15px;
  }

  .main .profile p,
  .main .profile li {
    font-size: 15px;
  }

  .main .profile h4 {
    font-size: 18px;
  }

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

/* =======================================================================
  追伸
======================================================================= */
.ps {
  font-size: 20px;
}

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

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

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

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

  .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: #fae257;
  background: linear-gradient(transparent 33%, #fae257 33%) repeat scroll 0% 0% transparent;
}

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

.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 20px 15px 0px rgba(0, 0, 0, 0.15)
}

@media(max-width: 599px) {
  .shadow {
    box-shadow: 0px 10px 10px 0px 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;
}