@charset "UTF-8";

/* reset */
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  display: block;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  vertical-align: bottom;
  max-width: 100%;
  width: 100%;
  height: 100%;
}

embed,
object,
iframe {
  border: 0;
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  border: 1px solid #aeb0b6;
  background: #fff;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
}

th {
  text-align: left;
  font-weight: bold;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/* style */
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: .1rem;
}

.sp-show {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-show {
    display: block;
  }
}

header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 0 0 4px rgba(0, 0, 0, .15);
}

.header-inner {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
}

@media screen and (max-width: 768px) {
  .header-inner {
    padding: 8px 16px;
  }
}

.header-logo {
  width: 184px;
  height: 48px;
  background: url(/img/lp/facebook/header-logo.png) no-repeat center / contain;
  margin: -2px 0 0;
}

@media screen and (max-width: 768px) {
  .header-logo {
    width: 168px;
    margin: 0;
  }
}

.header-button {
  border: 1px solid #ED3E59;
  border-radius: 40px;
  color: #ED3E59;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 16px;
  transition: .5s;
}

.header-button:hover {
  opacity: .6;
}

@media screen and (max-width: 768px) {
  .header-button {
    font-size: 13px;
    padding: 6px 14px;
  }
}

#fv {
  background: -moz-linear-gradient(top, #0074B4, #34BB9A);
  background: -webkit-linear-gradient(top, #0074B4, #34BB9A);
  background: linear-gradient(to bottom, #0074B4, #34BB9A);
}

.fv-inner {
  max-width: 990px;
  margin: auto;
  padding: 72px 20px 80px 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .fv-inner {
    padding: 40px 16px 48px;
    max-width: 540px;
    margin: auto;
  }
}

.fv-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fv-copy {
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.fv-copy h2 {
  font-size: 46px;
}

.fv-copy span {
  font-size: 62px;
  margin: 0px 0px 0 4px;

}

.fv-copy small {
  font-size: 36px;
  margin: 0 2px 0 0;
}

.fv-copy p {
  font-size: 24px;
}

@media screen and (max-width: 960px) {
  .fv-copy h2 {
    font-size: 38px;
  }

  .fv-copy span {
    font-size: 52px;
  }

  .fv-copy small {
    font-size: 30px;
  }

  .fv-copy p {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .fv-copy h2 {
    font-size: 34px;
  }

  .fv-copy span {
    font-size: 46px;
  }

  .fv-copy small {
    font-size: 28px;
  }

  .fv-copy p {
    font-size: 17px;
  }
}

.fv-image-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .fv-image-sp {
    display: block;
    margin: 8px auto 0;
  }
}

.fv-image-pc {
  width: 48%;
  margin: 0 0 0 40px;
}

@media screen and (max-width: 960px) {
  .fv-image-pc {
    width: 46%;
    margin: 0 0 0 24px;
  }
}

@media screen and (max-width: 768px) {
  .fv-image-pc {
    display: none;
  }
}

.main-content {
  background: #0074B4;
  padding: 0 0 96px;
}

@media screen and (max-width: 768px) {
  .main-content {
    padding: 0 0 64px;
  }
}

.problem {
  background: -moz-linear-gradient(top, #efefef, #0074B4);
  background: -webkit-linear-gradient(top, #efefef, #0074B4);
  background: linear-gradient(to bottom, #efefef, #0074B4);
  padding: 72px 0 112px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .problem {
    padding: 56px 0 72px;
  }
}

.problem::after {
  content: "";
  width: 80px;
  height: 53px;
  background: url(/img/lp/facebook/arrow.svg) no-repeat center / contain;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 24px;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .problem::after {
    bottom: -8px;
  }
}

.problem-heading {
  color: #004463;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .problem-heading {
    font-size: 18px;
    position: relative;
    z-index: 1;
    padding: 0 0 0 80px;
  }
}

.problem-body {
  display: flex;
  gap: 40px;
  justify-content: center;
  width: fit-content;
  max-width: 720px;
  margin: 24px auto 0;
}

@media screen and (max-width: 768px) {
  .problem-body {
    margin: 20px auto 0;
    padding: 0 24px;
    position: relative;
  }
}

.problem-image {
  width: 256px;
  height: 256px;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .problem-image {
    width: 184px;
    height: 184px;
    position: absolute;
    top: -128px;
    left: -48px;
  }
}

.problem-example {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.problem-example-content {
  background: #fff;
  color: #004463;
  padding: 12px 24px 12px 80px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .problem-example-content {
    padding: 12px 24px 12px 64px;
  }
}

.problem-example-content::before {
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: url(./assets/check.svg) no-repeat center / contain;
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .problem-example-content::before {
    left: 12px;
  }
}

.problem-example-content span {
  font-size: 14px;
}

.problem-example-content p {
  font-size: 20px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .problem-example-content p {
    font-size: 18px;
  }
}

.merit {
  padding: 24px 16px 0;
}

@media screen and (max-width: 768px) {
  .merit {
    padding: 32px 24px 0;
    max-width: 540px;
    margin: auto;
  }
}

.merit-heading {
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .merit-heading {
    font-size: 27px;
  }
}

.merit-body {
  margin: 32px auto 0;
}

@media screen and (max-width: 768px) {
  .merit-body {
    margin: 24px auto 0;
  }
}

.merit-example {
  max-width: 1080px;
  display: flex;
  gap: 12px;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .merit-example {
    flex-direction: column;
  }
}

.merit-example-content {
  background: #fff;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  padding: 12px 20px 20px;
}

.merit-example-content img {
  width: 120px;
  height: auto;
}

.merit-example-title {
  color: #004463;
  font-size: 18px;
  font-weight: bold;
  height: 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin: 4px auto 0;
}

@media screen and (max-width: 768px) {
  .merit-example-title {
    height: auto;
  }
}

.merit-example-text {
  color: #002133;
  font-size: 14px;
  text-align: justify;
  margin: 8px auto 0;
}

.merit-example-text span {
  font-weight: bold;
}

.merit-entry {
  margin: 48px 0 0;
}

@media screen and (max-width: 768px) {
  .merit-entry {
    margin: 40px 0 0;
  }
}

.merit-entry p {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  margin: auto;
  position: relative;
  text-align: center;
  width: fit-content;
}

@media screen and (max-width: 768px) {
  .merit-entry p {
    font-size: 14px;
  }
}

.merit-entry p::before {
  content: "";
  width: 36px;
  height: 50px;
  background: url(./assets/decoration-left.svg) no-repeat center / contain;
  position: absolute;
  left: -74px;
  bottom: -2px;
}

@media screen and (max-width: 768px) {
  .merit-entry p::before {
    width: 24px;
    height: 32px;
    left: -36px;
    bottom: -2px;
  }
}

.merit-entry p::after {
  content: "";
  width: 36px;
  height: 50px;
  background: url(./assets/decoration-right.svg) no-repeat center / contain;
  position: absolute;
  right: -60px;
  bottom: 0;
}

@media screen and (max-width: 768px) {
  .merit-entry p::after {
    width: 24px;
    height: 32px;
    right: -28px;
    bottom: -1px;
  }
}

.achievement {
  padding: 72px 0 96px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .achievement {
    padding: 56px 0 64px;
  }
}

.achievement-heading {
  color: #004463;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0;
  position: relative;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .achievement-heading {
    font-size: 26px;
    line-height: 1.2;
  }
}

.achievement-heading::before {
  content: "";
  width: 148px;
  height: 135px;
  background: url('/img/lp/facebook/archivement-heading.svg') no-repeat center / contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 60px;
  margin: auto;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .achievement-heading::before {
    left: 4px;
  }
}

.achievement-heading span {
  font-family: 'Roboto', sans-serif;
  font-size: 52px;
  padding: 0 4px;
}

.achievement-heading small {
  font-size: 34px;
}

@media screen and (max-width: 768px) {
  .achievement-heading span {
    font-size: 46px;
    padding: 0 3px;
  }

  .achievement-heading small {
    font-size: 24px;
  }
}

.achievement-slider {
  margin: 32px 0 0;
}

.achievement-slider-image {
  width: 104px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #efefef;
  margin: 0 8px;
}

.project {
  margin: 32px 0 0;
}

.project-jeading {
  border: 1px solid #004463;
  border-radius: 20px;
  color: #004463;
  font-size: 12px;
  font-weight: bold;
  width: 200px;
  text-align: center;
  margin: 0 auto 0;
  padding: 2px 0;
}

.project-list {
  margin: 24px 0 0;
  align-items: stretch;
  height: 100%;
}

.project-card {
  width: 320px!important;/* slickのデフォルトスタイル打ち消しのため */
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, .15);
  margin: 0 6px 0;
}

.project-thumbnail {
  width: 100%;
  height: 180px;
  background: #ccc;
  position: relative;
}

.project-thumbnail img {
  object-fit: cover;
}

.project-tag {
  position: absolute;
  top: 10px;
  display: flex;
  gap: 4px;
}

.project-tag span {
  background: #004463;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
}

.project-info {
  background: #fff;
  padding: 16px 24px 20px;
}

.project-info h3 {
  color: #002133;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  height: 72px;
}

.project-chip {
  display: flex;
  gap: 4px;
  margin: 8px 0 0;
}

.project-chip span {
  background: #efefef;
  border: 1px solid #ccc;
  border-radius: 20px;
  color: #bbb;
  font-size: 12px;
  padding: 1px 10px 2px;
}

.project-reward {
  color: #0074B4;
  font-size: 16px;
  margin: 16px 0 0;
  padding: 0 0 0 32px;
  position: relative;
}

.project-reward::before {
  content: "";
  background: url(/img/lp/facebook/project-reward.png) no-repeat center / contain;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.entry {
  background: url(/img/lp/facebook/entry-bg.jpg) no-repeat center / cover;
}

.entry-inner {
  padding: 48px 0 80px;
}

.entry-copy {
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.entry-copy h2 {
  font-size: 34px;
}

.entry-copy span {
  font-size: 46px;
  margin: 0px 0px 0 3px;

}

.entry-copy small {
  font-size: 28px;
}

.entry-copy p {
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .entry-copy h2 {
    font-size: 32px;
  }

  .entry-copy span {
    font-size: 44px;
  }

  .entry-copy p {
    font-size: 17px;
  }
}

footer {
  background: #323232;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  padding: 48px 40px;
}

@media screen and (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    padding: 48px 40px;
  }
}

.footer-logo {
  width: 300px;
  height: 40px;
  background: url(/img/lp/facebook/footer-logo.png) no-repeat center / contain;
}

.footer-text {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: end;
}

@media screen and (max-width: 768px) {
  .footer-text {
    margin: 40px 0 0;
    gap: 24px;
    align-items: center;
  }
}

.footer-link {
  display: flex;
  gap: 24px;
  font-size: 13px;
}

.footer-link a {
  transition: .5s;
}

.footer-link a:hover {
  opacity: .6;
}

.footer-link li:not(:first-child) {
  border-left: 1px solid #fff;
  padding: 0 0 0 24px;
}

.copyright {
  font-size: 12px;
}


/* form */
.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px auto 0;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .form {
    margin: 24px auto 0;
  }
}

.form-text {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 12px;
}

@media screen and (max-width: 768px) {
  .form-text {
    font-size: 15px;
    gap: 10px;
  }
}

.form-text-small {
  font-size: 14px;
  gap: 10px;
}

.form-text::before,.form-text::after {
  content: "";
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: #fff transparent transparent transparent;
}

.form-input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 14px;
  margin: 12px auto 0;
}

@media screen and (max-width: 768px) {
  .form-input {
    margin: 8px auto 0;
  }
}

.form-input-small {
  max-width: 320px;
}

.form-input::placeholder {
  color: #ccc;
}

.form-button {
  background: #ED3E59;
  border: 1px solid #ED3E59;
  border-radius: 40px;
  color: #fff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 20px;
  font-weight: bold;
  padding: 12px 32px 12px 38px;
  text-align: center;
  margin: 5px auto 0;
  width: fit-content;
  transition: .5s;
}

.form-button:hover {
  background: #fff;
  color: #ED3E59;
}

/* modal */
#modal-terms {
  display: none;
}

.modaal-content-container {
  font-size: 13px;
}

.modaal-content-container h2 {
  font-size: 16px;
  font-weight: bold;
}

.modaal-content-container span {
  font-size: 14px;
  font-weight: bold;
  display: block;
  margin: 16px 0 0;
}

.modaal-content-container p {
  margin: 4px 0 0;
}

ol.numbering-main {
  counter-reset: count 0;
}
.numbering-main li:before {
  content: counter(count) ". ";
  counter-increment: count 1;
}

ol.numbering-sub {
  counter-reset: count 0;
  font-size: 13px;
}

.numbering-sub li:before {
  content: counter(count) "：";
  counter-increment: count 1;
}

p.terms-date {
  font-size: 12px;
  display: block;
  margin: 24px 0 0;
  text-align: right;
}

.modaal-container {
  width: 80%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .modaal-container {
    width: 90%;
    max-width: 540px;
  }
}

.modaal-close {
  position: absolute;
  top: -56px;
  right: -16px;
}

@media screen and (max-width: 768px) {
  .modaal-close {
    top: -44px;
  }
}

.modaal-close:after,
.modaal-close:before {
  background: #fff;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #004463;
}

.modaal-inner-wrapper {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .modaal-inner-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.modaal-close:after, .modaal-close:before {
  width: 2px;
}

/* animation */
.fadein {
  animation-name: fadeDownAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity:0;
  }

  @keyframes fadeDownAnime{
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

.scroll-fadein {
  transform: translateY(-10px);
  opacity: 0;
  transition: 2s;
}

.scroll-fadein.on {
  transform: translateY(0);
  opacity: 1;
}


/* utility */
.slick-list {
  overflow: inherit;
}

.slick-track {
  display: flex;
}

.slick-slide {
  height: auto !important;/* スライドの高さを揃えるため */
}
