@charset "UTF-8";

/* 共通 */
body {
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN',
    'Hiragino Sans', Meiryo, sans-serif;
}
h1 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffffff;
}
h2 {
  color: #000000;
  text-align: center;
  margin-bottom: 80px;
  font-size: 32px;
  letter-spacing: 0.05em;
}
h3 {
  color: #4aa7ff;
  margin-bottom: 10px;
  font-size: 24px;
  letter-spacing: 0.05em;
}
p,
dl,
li {
  line-height: 1.8;
  color: #000000;
}
a {
  color: #074ab9;
}
section {
  max-width: 1080px;
  width: calc(100% - 40px);
  margin: 100px auto 0;
}
.content {
  margin-top: 60px;
}

/* マウスオーバー */
a:hover {
  opacity: 0.7;
  transition: all 500ms;
}

/* ボタン */
.button a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 360px;
  width: 100%;
  height: 60px;
  box-sizing: border-box;
  margin-top: 40px;
  padding: 25px 35px;
  border-radius: 30px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.1em;
  box-shadow: 0px 0px 20px 0px rgba(74, 167, 255, 0.15);
}
.button__main a {
  background: rgb(108, 99, 255);
  background: linear-gradient(
    90deg,
    rgba(55, 213, 214, 1) 0%,
    rgba(108, 99, 255, 1) 100%
  );
}
.button__border a {
  border: 2px solid #ffffff;
}

/* メインビジュアル */
.mainvisual {
  background-image: url(../images/mainvisual-bg_pc.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  max-width: initial;
  width: 100%;
  height: 100vh;
  position: relative;
  margin: 0;
}
.mainvisual .wrapper {
  max-width: 1080px;
  width: calc(100% - 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mainvisual .catchcopy {
  width: 100%;
}
.mainvisual p {
  color: #ffffff;
  font-size: 22px;
}

/* フッター */
.footer {
  position: relative;
  background: transparent linear-gradient(90deg, #5d55e8 0%, #37d5d6 100%) 0% 0%;
}
.footer .wrapper {
  padding: 80px 0;
}
.footer h2 {
  color: #ffffff;
  text-align: left;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}
.footer p {
  color: #ffffff;
}
.footer__link {
  margin-bottom: 0;
  border-top: 1px solid #ffffff;
}
.footer__link a {
  display: block;
  width: 100%;
  padding: 20px 0;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  font-size: 18px;
}

/* トップへ戻るボタン */
.button__to-top {
  position: absolute;
  right: 20px;
  bottom: 30px;
  text-align: center;
}
.button__to-top a {
  display: inline-block;
  padding: 20px;
  border-radius: 50% 50%;
  text-decoration: none;
  background: transparent linear-gradient(230deg, #37d5d6 0%, #5d55e8 100%) 0%
    0%;
  box-shadow: 0px 0px 30px #4aa7ff80;
}
.button__to-top span {
  color: #ffffff;
  display: block;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

/* WP-LOADについて */
.about .content {
  display: flex;
  align-items: center;
}
.about img {
  margin-right: 60px;
}

/* このLPについて */
.attention {
  padding: 80px;
  box-shadow: 0px 0px 20px 0px rgba(74, 167, 255, 0.15);
}
.attention h2 {
  margin-bottom: 40px;
}
.attention h3 {
  margin-top: 40px;
}

/* ライターさん募集中 */
.writer .wrapper {
  display: flex;
  align-items: center;
}
.writer img {
  margin-right: 60px;
}
.writer p,
.writer dl {
  margin-bottom: 1em;
}
.writer dl {
  font-weight: bold;
}

/* WEBサイト作成依頼について */
.contact .wrapper {
  display: flex;
  align-items: center;
}
.contact img {
  margin-left: 60px;
}

/* じわっとフェードイン（jQuery用） */
.mainvisual .wrapper {
  opacity: 0;
  transition: all 1000ms;
  filter: blur(10px);
}
.mainvisual .wrapper.blur {
  opacity: 1;
  filter: blur(0);
}

/* フェードイン（jQuery用） */
.fade-in {
  opacity: 0;
  transform: translateY(100px);
  /* 上に動くに動く */
  transition: all 1500ms;
  /* アニメーションの時間 */
}
.scroll {
  opacity: 1;
  transform: translateY(0);
}

/* レスポンシブ（スマホサイズ） */
@media screen and (max-width: 768px) {
  /* 共通 */
  section {
    margin: 80px auto 0;
  }
  h1 {
    font-size: 32px;
  }
  h2 {
    margin-bottom: 40px;
    font-size: 22px;
  }
  h3 {
    font-size: 16px;
  }
  p,
  li,
  dt,
  dd {
    font-size: 14px;
  }
  p {
    margin-bottom: 1em;
  }
  img {
    width: 100%;
  }

  /* フッター */
  .footer__link a {
    font-size: 16px;
  }
  .button__to-top a {
    padding: 12px;
  }
  .button__to-top img {
    width: 20px;
  }

  /* ボタン */
  .button {
    max-width: 360px;
    margin: auto;
  }

  .button a {
    font-size: 15px;
  }

  /* メインビジュアル */
  .mainvisual {
    background-image: url(../images/mainvisual-bg_sp.jpg);
  }
  .mainvisual .wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }
  .mainvisual img {
    margin-bottom: 40px;
  }
  .mainvisual p {
    font-size: 18px;
  }

  /* WP-LOADについて */
  .about .content {
    display: block;
  }
  .about img {
    display: block;
    max-width: 234px;
    margin: 0 auto 20px;
  }

  /* このLPについて */
  .attention {
    padding: 60px 20px;
  }
  .attention h3 {
    margin-top: 40px;
  }

  /* ライターさん募集中 */
  .writer .wrapper {
    display: block;
  }
  .writer img {
    display: block;
    max-width: 234px;
    margin: 0 auto 30px;
  }

  /* WEBサイト作成依頼について */
  .contact {
    margin-top: 80px;
  }
  .contact .wrapper {
    padding: 60px 0;
    flex-direction: column-reverse;
  }
  .contact img {
    max-width: 234px;
    margin: 0 0 30px 0;
  }
  .contact h2 {
    margin-bottom: 10px;
    font-size: 22px;
  }
}
