@charset "UTF-8";
.main {
  background: #fff;
}
.campaign-label {
  padding: 10px 10px 8px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px 10px;
  background: #fff;
}
.campaign-label .label {
  height: 28px;
  background: #ebebeb;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 700;
  color: #000;
  line-height: 2;
}
.campaign-label .label-text {
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.campaign-mv {
  position: relative;
  height: 100vw;
}
.campaign-mv .heading img {
  width: 100%;
  height: auto;
}
.campaign-mv .subtext {
  position: absolute;
  margin: 0 auto;
  bottom: calc((30 / 375) * 100vw);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
}
.campaign-mv .subtext p, .campaign-mv .subtext a {
  color: #fff;
  font-size: calc((12 / 375) * 100vw);
  line-height: 1.43;
  font-weight: 500;
  letter-spacing: -0.05em;
}
.campaign-schedule {
  display: flex;
  background: #00B900;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 50px;
  padding: 10px;
}
.campaign-schedule p {
  color: #fff;
}
.entry-text {
  padding: 0 10px;
  line-height: 1.7;
  text-align: justify;
}
.entry-history {
  text-align: center;
}
.entry-history a {
  font-size: 14px;
  color: #333;
}
.entry-history a::after {
  content: url('../icon/arrow-r.svg');
  margin-left: 8px;
  vertical-align: middle;
}
.entry-plugin {
  margin-bottom: 30px;
}
.f-step {
  max-width: 630px;
  margin: 0 auto;
}
.f-table.f-table--2column.f-table--vertical td {
  text-align: justify;
  font-feature-settings: "palt";
}
.finish {
  border-bottom: 1px #fff solid;
  color: #CCC;
  text-decoration: line-through;
}
.css-dkm91a {
  margin-top: 0;
}
.f-imagelink {
  display: block;
}
.f-imagelink.f-imagelink--3column .f-imagelink-item {
  width: 100%;
  padding-bottom: 20px;
}
.f-imagelink.f-imagelink--3column .f-imagelink-item:last-of-type {
  padding-bottom: 0;
}

@media screen and (min-width: 768px) {
  .campaign-label {
    max-width: 960px;
    margin: 0 auto;
    padding: 10px;
  }
  .campaign-label .label-text {
    font-size: 12px;
  }
  .campaign-mv {
    height: 560px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../img/mv01-pc.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .css-dkm91a {
    margin-top: 25px;
  }
  .f-imagelink {
    display: flex;
  }
  .f-imagelink.f-imagelink--3column .f-imagelink-item {
    width: calc((100% - 40px) / 3);
    padding-bottom: 0;
  }

  @media only screen and (-webkit-min-device-pixel-ratio: 2) {
    .campaign-mv {
      background-image: url('../img/mv01-pc@2x.jpg');
    }
  }
  .campaign-mv .inner {
    display: flex;
    flex-wrap: wrap;
    padding: 0 20px 16px;
  }
  .campaign-mv .heading {
    width: 100%;
    margin-bottom: 25px;
    padding-left: 40px;
  }
  .campaign-mv .heading img {
    width: 824px;
    height: auto;
    margin: 0 auto;
  }
  .campaign-mv .subtext {
    position: static;
    bottom: 0;
    display: block;
  }
  .campaign-mv .subtext p, .campaign-mv .subtext a {
    font-size: 13px;
    line-height: 22px;
  }
  .campaign-schedule {
    padding: 8px;
  }
  .campaign-schedule p {
    font-size: 20px;
  }
  .entry-text {
    text-align: center;
    padding: 0;
  }
  .css-dkm91a {
    margin-top: 25px;
  }
  .f-imagelink {
    display: flex;
  }
  .f-imagelink.f-imagelink--3column .f-imagelink-item {
    width: calc((100% - 40px) / 3);
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  #static-header{
      height: 56px;
  }
}
.f-alert {
  background: #fef0dd;
  border:none;
}
.f-alert-message {
  background-image: url(../icon/info.png);
  background-size: 24px auto;
  background-position: 0 0;
  color: #a35e04;
  font-size: 16px;
  padding-left: 40px;
}

/* to camp top */
.fixed-bg {
  background-image: url('../img/fixed-img.jpg');
  background-size: cover;
  background-position: calc(50% - 40px) bottom;
  background-attachment: fixed;
}

.fixed-bg .f-text{
  font-size: 23px;
  line-height: calc(27 / 23);
  text-align: center;
  color: #fff;
  font-weight: bold;
  text-shadow: 0 10px 25px 0 rgba(0, 0, 0, .5);
}

@media screen and (min-width: 768px) {
  .fixed-bg .f-text{
    font-size: 28px;
    line-height: calc(35 / 30);
    text-shadow: 0px 1px 0 #333 ;
  }

  .fixed-bg {
    background-image: url('../img/fixed-img.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center bottom;
    animation: parallax linear both;
    animation-timeline: view();
    background-color: #e5e5e5;
  }
  
  @keyframes parallax {
    from {
      background-position: center 100px;
    }
  
    to {
      background-position: center -40px;
    }
  }
}

/* ======================
  Footer
====================== */
/* SP only */
@media screen and (max-width: 768px) {
  footer.css-1lz307y {
    background-color: rgb(247, 247, 247);
    font-family: "Noto Sans JP", "Helvetica Neue", Helvetica, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Arial, "Yu Gothic", Meiryo, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
  }

  .css-1qsxih2 {
    padding: 0px 16px;
  }

  .css-1b1jvye {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .css-1iwffko {
    max-width: 100%;
  }

  .css-vlytje {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 16px 0px;
  }

  .css-1b6n4o1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .css-t8ievl {
    display: flex;
    flex-direction: column;
  }

  .css-1hp9awp {
    margin: 0px 16px 0px 0px;
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    line-height: 1.8;
    text-decoration: none;
  }

  .css-1cuszyt {
    font-size: 12px;
    line-height: 19.2px;
    width: 343px;
  }

  .css-1skx14k {
    display: flex;
    margin: 24px 0px 0px;
    height: 32px;
  }

  .css-1ch8mmj {
    display: flex;
    align-items: center;
    margin: 0px 16px 0px 0px;
    color: rgb(71, 133, 71);
    font-size: 32px;
    text-decoration: underline;
    text-decoration-color: rgba(71, 133, 71, 0.4);
    width: 32px;
    height: 32px;
  }

  .css-1cw4hi4 {
    color: rgb(71, 133, 71);
    font-size: 32px; 
    overflow: hidden;
    width: 32px;
    height: 32px;
  }

  .css-11oik9z {
    padding: 16px 0px;
    background-color: rgb(255, 255, 255);
  }

  .css-1wxaqej {
    height: 47.9844px;
  }

  .css-1hwq7ra {
    display: inline;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
  }
}

/* PC only */
@media screen and (min-width: 768px) {
  footer.css-1lz307y {
    background-color: rgb(247, 247, 247);
    font-family: "Noto Sans JP", "Helvetica Neue", Helvetica, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Arial, "Yu Gothic", Meiryo, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
  }

  .css-1qsxih2 {
    padding: 0px 24px;
  }

  .css-1bvrkkj {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -32px 0px 0px -32px;
  }

  .css-1iwffko {
    max-width: 100%;
    padding: 32px 0px;
  }

  .css-j4ei8v {
    display: flex;
    justify-content: space-between;
    margin: 32px 0px;
  }

  .css-1b6n4o1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 14px;
    line-height: 1.8;
  }

  .css-11qglyv {
    display: flex;
  }

  .css-1hp9awp {
    margin-right: 16px;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
  }

  .css-1cuszyt {
    font-size: 12px;
    line-height: 19.2px;
  }

  .css-vmzjxx {
    display: flex;
  }

  .css-1o6kxsn {
    display: flex;
    align-items: center;
    margin-right: 16px;
    color: rgb(71, 133, 71);
    font-size: 24px;
    text-decoration: underline;
    text-decoration-color: rgba(71, 133, 71, 0.4);
  }

  .css-1cw4hi4 {
    color: rgb(71, 133, 71);
    font-size: 24px;
    overflow: hidden;
    width: 24px; 
    height: 24px;
  }

  .css-11oik9z {
    padding: 16px 0px;
    background-color: rgb(255, 255, 255);
  }

  .css-1hwq7ra {
    display: inline;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
  }
}