@charset "UTF-8";
.mainVisual {
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(124, 0, 26)), color-stop(40%, rgb(182, 0, 52)), color-stop(8%, rgb(185, 0, 58)));
  background: -webkit-linear-gradient(bottom, rgb(124, 0, 26) 0%, rgb(182, 0, 52) 40%, rgb(185, 0, 58) 8%);
  background: linear-gradient(0deg, rgb(124, 0, 26) 0%, rgb(182, 0, 52) 40%, rgb(185, 0, 58) 8%);
}
.mainVisual__container {
  max-width: 950px;
  margin: 0 auto;
}

.flow {
  padding-top: 88px;
}
@media screen and (max-width: 750px) {
  .flow {
    padding-top: 64px;
  }
}
.flow__container {
  max-width: 950px;
  margin: 0 auto;
}
.flow__title {
  font-size: 3.1rem;
  font-weight: 700;
  text-align: center;
  color: #242323;
  padding-bottom: 16px;
}
.flow__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  background: #E83534;
  margin: 13px auto 0;
}
@media screen and (max-width: 750px) {
  .flow__title {
    font-size: 2.4rem;
  }
}
.flow__title + .flow__text {
  margin-top: 32px;
  padding: 0 16px;
  text-align: center;
}
.flow__canvas {
  max-width: 260px;
  margin: 48px auto 0;
}
.flow__tabList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 48px auto 0;
  border-bottom: solid 4px #ff5c5c;
}
.flow__tabItem {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc((100% - 1px) / 2);
  padding: 24px 8px;
  background: #eeeeee;
  border-radius: 8px 8px 0 0;
  color: #606060;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .flow__tabItem {
    padding: 16px 8px;
    font-size: 1.4rem;
  }
}
.flow__tabItem.active {
  background: #ff5c5c;
  color: #ffffff;
}
.flow__tabContents {
  display: none;
  padding: 64px 24px;
  background: #fff7f2;
}
.flow__tabContents.active {
  display: block;
}
@media screen and (max-width: 750px) {
  .flow__tabContents {
    padding: 24px 16px;
  }
}

.step__item {
  max-width: 610px;
  margin: 0 auto;
  padding: 24px;
  background: #ffffff;
  border-radius: 16px;
}
.step__item:not(:first-child) {
  margin-top: 32px;
}
.step__item:last-child {
  position: relative;
  margin-top: 112px;
}
@media screen and (max-width: 750px) {
  .step__item:last-child {
    margin-top: 80px;
  }
}
.step__item:last-child::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  display: block;
  width: 78px;
  height: 47px;
  background-color: #ff954c;
  -webkit-clip-path: polygon(50% 47px, 0% 0%, 78px 0%);
          clip-path: polygon(50% 47px, 0% 0%, 78px 0%);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 750px) {
  .step__item:last-child::before {
    top: -62px;
  }
}
.step__number {
  width: 92px;
  margin: 0 auto;
  padding: 4px 24px;
  background: #ff954c;
  border-radius: 50px;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
}
.step__heading {
  margin-top: 16px;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .step__heading {
    font-size: 1.6rem;
  }
}
.step__canvas, .step__canvas--sp, .step__canvas--wide, .step__canvas--icon {
  max-width: 260px;
  margin: 24px auto;
}
.step__canvas--icon {
  max-width: 100px;
}
.step__canvas--wide {
  max-width: 550px;
}
@media screen and (max-width: 750px) {
  .step__canvas--sp {
    max-width: 145px;
  }
}
.step__button {
  margin-top: 32px;
}
.step__link {
  position: relative;
  display: block;
  max-width: 260px;
  margin: 0 auto;
  padding: 8px;
  background: #3895ff;
  border-radius: 8px;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}
.step__link:visited {
  color: #ffffff;
}
.step__link::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.step__copy {
  max-width: 435px;
  margin: 24px auto 0;
  padding: 16px;
  background: #f7f7f7;
  border: solid 1px #cccccc;
  border-radius: 8px;
}
.step__column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .step__column {
    display: block;
  }
}
.step__textBox {
  max-width: 306px;
  text-align: center;
}
.step__imgBox {
  max-width: 166px;
}
@media screen and (max-width: 750px) {
  .step__imgBox {
    max-width: 93px;
    margin: 32px auto 0;
  }
}
@media screen and (max-width: 750px) {
  .step__text {
    font-size: 1.4rem;
  }
}
.step__text--accent {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .step__text--accent {
    font-size: 1.6rem;
  }
}
.step__text--redAccent {
  color: #ff5c5c;
}
.step__text--blueAccent {
  color: #2455aa;
}

.copy__text {
  font-size: 1.2rem;
  overflow-wrap: anywhere;
  word-break: break-all;
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text; /* 手動でも選択できるように */
}

.benefit {
  padding: 88px 16px 0;
}
@media screen and (max-width: 750px) {
  .benefit {
    padding-top: 64px;
  }
}
.benefit__container {
  max-width: 950px;
  margin: 0 auto;
}
.benefit__title {
  font-size: 3.1rem;
  font-weight: 700;
  text-align: center;
  color: #242323;
  padding-bottom: 16px;
}
.benefit__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  background: #E83534;
  margin: 13px auto 0;
}
@media screen and (max-width: 750px) {
  .benefit__title {
    font-size: 2.4rem;
  }
}
.benefit__canvas {
  margin-top: 32px;
}

.schedule {
  padding: 88px 16px 0;
}
@media screen and (max-width: 750px) {
  .schedule {
    padding-top: 64px;
  }
}
.schedule__container {
  max-width: 950px;
  margin: 0 auto;
}
.schedule__title {
  font-size: 3.1rem;
  font-weight: 700;
  text-align: center;
  color: #242323;
  padding-bottom: 16px;
}
.schedule__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  background: #E83534;
  margin: 13px auto 0;
}
@media screen and (max-width: 750px) {
  .schedule__title {
    font-size: 2.4rem;
  }
}
.schedule__canvas {
  margin-top: 32px;
}
.schedule__button {
  margin-top: 56px;
}
.schedule__link {
  max-width: 335px;
  display: block;
  margin: 0 auto;
  padding: 16px 8px;
  background: #ff5c5c;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
}
.schedule__link:visited {
  color: #ffffff;
}
.schedule__link:hover {
  text-decoration: none;
  opacity: 0.7;
}

.campaign {
  padding: 88px 16px 0;
  padding-bottom: 88px;
}
@media screen and (max-width: 750px) {
  .campaign {
    padding-top: 64px;
  }
}
.campaign__container {
  max-width: 950px;
  margin: 0 auto;
}
.campaign__inner {
  max-width: 920px;
  background: #eeeeee;
  padding: 32px;
  border-radius: 8px;
}
@media screen and (max-width: 750px) {
  .campaign__inner {
    padding: 16px;
  }
}
.campaign__title {
  font-size: 3.1rem;
  font-weight: 700;
  text-align: center;
  color: #242323;
  padding-bottom: 16px;
  color: #242323;
}
.campaign__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  background: #E83534;
  margin: 13px auto 0;
}
@media screen and (max-width: 750px) {
  .campaign__title {
    font-size: 2.4rem;
  }
}
.campaign__title::after {
  content: none;
}
.campaign__detail {
  background: #ffffff;
  padding: 48px 24px;
  margin-top: 24px;
  border-radius: 8px;
}
@media screen and (max-width: 750px) {
  .campaign__detail {
    margin-top: 0;
    padding: 16px;
  }
}
.campaign__conditions > .campaign__heading {
  font-size: 1.8rem;
  font-weight: 700;
}
.campaign__conditions > .campaign__heading:not(:first-child) {
  margin-top: 24px;
  padding-top: 24px;
}
.campaign__conditions > .campaign__subHeading {
  padding-top: 24px;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  .campaign__conditions > .campaign__subHeading {
    font-size: 1.5rem;
  }
}
.campaign__conditions > .campaign__desc {
  line-height: 1.7;
  margin-top: 8px;
}
.campaign__conditions > .campaign__subDesc {
  line-height: 1.7;
  margin-top: 8px;
}
@media screen and (max-width: 750px) {
  .campaign__conditions > .campaign__subDesc {
    font-size: 1.4rem;
  }
}
.campaign__conditions > .campaign__subDesc > .campaign__annotation {
  font-size: 1.4rem;
  line-height: 1.7;
  padding-left: 50px;
}
@media screen and (max-width: 750px) {
  .campaign__conditions > .campaign__subDesc > .campaign__annotation {
    font-size: 1.2rem;
    padding-left: 20px;
  }
}
.campaign__list {
  display: inline-block;
  margin-left: 32px;
}
@media screen and (max-width: 750px) {
  .campaign__list {
    margin-left: 8px;
  }
}
.campaign__list > .campaign__item {
  position: relative;
  padding-left: 20px;
}
.campaign__list > .campaign__item::before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
}
.campaign__list > .campaign__item:not(:first-child) {
  margin: 8px 0;
}
.campaign__list > .campaign__item > .campaign__superior {
  font-size: 0.8em;
  vertical-align: top;
}
@media screen and (max-width: 750px) {
  .campaign__list > .campaign__item {
    padding-left: 10px;
  }
}
.campaign__link {
  color: #0091ff;
}
.campaign__link:visited {
  color: #0091ff;
}
.campaign__btnArea {
  max-width: 920px;
  margin: 48px auto 0;
}
@media screen and (max-width: 750px) {
  .campaign__btnArea {
    margin: 56px 0 0;
  }
}
.campaign__banner {
  width: 327px;
  max-width: 327px;
  margin: 0 auto;
}
.campaign__linkBnr {
  border: solid 2px #D0D0D0;
  display: inline-block;
}
.campaign__linkBnr:hover {
  border: solid 2px #3895ff;
}