/* 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: #333;
  background-color: #f5f9fc;
}

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: #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: #f5f9fc url("img/header-bg.jpg") no-repeat center top;
}

.header {
  padding: 40px 0;
}

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

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

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

/* =======================================================================
  lead
======================================================================= */
.lead {
  position: relative;

  color: #f5f9fc;
  background: #1673d1;
  background-size: 100vw auto;

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

.lead::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 25px 0 25px;
  border-color: #1673d1 transparent transparent transparent;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
}

.lead__img {
  position: absolute;
  top: -12%;
  left: 54%;
}

@media(max-width: 599px) {
  .lead::before {
    border-width: 15px 15px 0 15px;
  }

  .lead-sp {
    padding-top: 5px;
  }
}

/* =======================================================================
  この無料講座で学べること
======================================================================= */

.point {
  background-color: #deebf7;
  background-size: 100vw auto;

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

.point__title {
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 40px;
  line-height: 1.333;
}

.point__title::before,
.point__title::after {
  content: '';
  width: 5px;
  height: 45px;
  border-radius: 2.5px;
  background-color: #1673d1;
}

.point__title::before {
  margin-right: 30px;
  transform: rotate(-30deg)
}

.point__title::after {
  margin-left: 30px;
  transform: rotate(30deg)
}

.point__list {
  list-style: none;
}

.point__item {
  border: #1673d1 solid 5px;
  border-radius: 10px;

  background-color: #f5f9fc;
  background-repeat: no-repeat;
  background-position: right 40px bottom 40px;
}

.point__item:first-child {
  background-image: url("img/point__bg-1.png");
}

.point__item:nth-child(2) {
  background-image: url("img/point__bg-2.png");
}

.point__item:last-child {
  margin-bottom: 0;
  background-image: url("img/point__bg-3.png");
}

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

.point__img img {
  border-radius: 5px 5px 0 0;
}

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

.point__head-num {
  margin-right: 15px;
  width: 70px;
}

.point__head-txt {
  color: #0957a5;
  font-size: 28px;
  line-height: 1.5;
}

.point__item>p {
  font-size: 20px;
}

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

  .point__title {
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 20px;
    line-height: 1.333;
  }

  .point__title::before,
  .point__title::after {
    content: '';
    width: 3px;
    height: 24px;
    border-radius: 2.5px;
    background-color: #1673d1;
  }

  .point__title::before {
    margin-right: 15px;
    transform: rotate(-30deg)
  }

  .point__title::after {
    margin-left: 15px;
    transform: rotate(30deg)
  }

  .point__item {
    border: #1673d1 solid 3px;
    background-size: 50%;
  }

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

  .point__head {
    align-items: flex-start;
    margin-bottom: 10px;
  }

  .point__head-num {
    margin-right: 8px;
    width: 26px;
    min-width: 26px;
  }

  .point__head-txt {
    font-size: 18px;
  }

  .point__item>p {
    font-size: 15px;
  }
}

/* =======================================================================
  この内容を実践した結果
======================================================================= */
.voc {
  margin-right: -100%;
  margin-left: -100%;
  padding-right: 100%;
  padding-left: 100%;
}

.voc__title {
  text-align: center;
  font-size: 40px;
  line-height: 1.333;
}

.voc__title::before {
  content: '';
  display: inline-block;
  width: 80px;
  height: 80px;
  background-image: url(img/voc__deco.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}

.voc__title-line {
  border-bottom: #f34724 solid 10px;
}

.voc__list {
  list-style: none;
}

.voc__item {
  background-color: #f2efe6;
  border-radius: 10px;
}

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

.voc__head {
  text-align: center;
  border-bottom: #a9a9a9 solid 1px;
  padding-bottom: 20px;
  line-height: 1.5;
}

.voc__before {
  font-size: 28px;
  font-weight: 400;
}

.voc__after {
  position: relative;
  padding-top: 40px;
  font-size: 30px;

}

.voc__after::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 47%;
  border: 15px solid transparent;
  border-top: 20px solid #f34724;
}

.voc__content {
  padding-top: 20px;
  display: flex;
  justify-content: start;
}

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

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

.voc__voice {
  position: relative;
  font-size: 22px;
  line-height: 1.5;
  padding: .25em .5em;
}

.voc__voice::before,
.voc__voice::after {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
}

.voc__voice::before {
  border-left: solid 1px #333;
  border-top: solid 1px #333;
  top: 0;
  left: 0;
}

.voc__voice::after {
  border-right: solid 1px #333;
  border-bottom: solid 1px #333;
  bottom: 0;
  right: 0;
}

.voc__name {
  font-size: 16px;
  margin-top: 10px;
}

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

  .voc__title {
    font-size: 20px;
  }

  .voc__title::before {
    width: 40px;
    height: 40px;
  }

  .voc__title-line {
    border-bottom: #f34724 solid 5px;
  }

  .voc__before {
    font-size: 16px;
  }

  .voc__after {
    padding-top: 25px;
    font-size: 19px;
  }

  .voc__after::before {
    top: 5px;
    border: 10px solid transparent;
    border-top: 15px solid #f34724;
  }

  .voc__content {
    padding-top: 20px;
    display: block;
    text-align: center;
  }

  .voc__img {
    text-align: center;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .voc__img img {
    width: 80px;
  }

  .voc__voice {
    font-size: 15px;
  }

  .voc__name {
    font-size: 14px;
  }
}

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

.footer {
  margin: 0;
  padding: 40px 0;
  font-size: .8em;
  text-align: center;

  border-top: solid #a9a9a9 1px;
}

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

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

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