@charset "UTF-8";
.mainVisual {
  position: relative;
  background: -webkit-linear-gradient(285deg, #E96A6A 20%, #FF2A2A 60%);
  background: linear-gradient(165deg, #E96A6A 20%, #FF2A2A 60%);
}
.mainVisual__container {
  max-width: 950px;
  margin: 0 auto;
  padding: 16px 16px 0;
}
.mainVisual__title {
  max-width: 618px;
  margin: 0 auto;
}
.mainVisual__btnArea {
  width: 100%;
  position: absolute;
  bottom: 16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.mainVisual__balloon {
  position: relative;
  max-width: 460px;
  margin: 0 auto 0;
  padding: 8px;
  background: #FFF7F2;
  border-radius: 30px;
  color: #FF954C;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .mainVisual__balloon {
    max-width: 350px;
    padding: 4px;
    font-size: 1.4rem;
  }
}
.mainVisual__balloon::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 50%;
  width: 12px;
  height: 10px;
  background-color: #fff7f2;
  -webkit-clip-path: polygon(50% 10px, 0% 0%, 12px 0%);
          clip-path: polygon(50% 10px, 0% 0%, 12px 0%);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.mainVisual__button {
  margin: 0 8px;
}
.mainVisual__link {
  position: relative;
  display: block;
  max-width: 380px;
  background: #F2BF30;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin: 12px auto 0;
  padding: 16px 8px;
  border-radius: 8px;
  color: #242323;
}
.mainVisual__link:visited {
  color: #242323;
}
.mainVisual__link:hover {
  text-decoration: none;
  opacity: 0.7;
}
.mainVisual__link::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 16px;
  display: block;
  margin-left: 8px;
  border-top: 2px solid #242323;
  border-right: 2px solid #242323;
  color: #242323;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.mainVisual__link.end {
  color: #fff;
  background: #B0B0B0;
  pointer-events: none;
}
.mainVisual__link.end::after {
  content: none;
}

.menu.navFixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  margin-top: 0;
  padding: 0;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 750px) {
  .menu.navFixed {
    position: static;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.menu.navFixed .menu__container {
  border-top: none;
}
.menu__container {
  background: #EFF5FF;
}
@media screen and (max-width: 750px) {
  .menu__container {
    padding: 16px;
  }
}
.menu__nav {
  margin: 0 auto;
}
.menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  padding: 0 8px;
}
@media screen and (max-width: 750px) {
  .menu__list {
    display: block;
    padding: 0 16px;
  }
}
.menu__item {
  position: relative;
}
.menu__item + .menu__item {
  margin-left: 60px;
}
@media screen and (max-width: 750px) {
  .menu__item + .menu__item {
    margin: 4px 0 0;
  }
}
.menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #3895ff;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  .menu__link {
    padding: 8px 0;
  }
}
.menu__link:visited {
  color: #3895ff;
}
.menu__link::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #3895ff;
  border-right: 2px solid #3895ff;
  display: block;
  color: #3895ff;
  -webkit-transform: translateY(-25%) rotate(135deg);
          transform: translateY(-25%) rotate(135deg);
  margin-left: 8px;
}
.menu__link--main {
  display: block;
}
@media screen and (max-width: 750px) {
  .menu__link--main {
    text-align: center;
  }
}

.about {
  padding: 88px 0;
}
@media screen and (max-width: 750px) {
  .about {
    padding: 64px 0;
  }
}
.about__container {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (max-width: 750px) {
  .about__container {
    max-width: 375px;
  }
}
.about__heading {
  position: relative;
  font-size: 2rem;
  text-align: center;
}
.about__heading::before, .about__heading::after {
  content: "";
  display: inline-block;
  background: #242323;
  width: 2px;
  height: 2rem;
  margin: -6px 16px 0;
  vertical-align: middle;
}
@media screen and (max-width: 750px) {
  .about__heading::before, .about__heading::after {
    width: 2px;
    height: 1.6rem;
  }
}
.about__heading::before {
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
}
.about__heading::after {
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
}
.about__title {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  color: #002970;
}
@media screen and (max-width: 750px) {
  .about__title {
    font-size: 2.4rem;
  }
}
.about__title + * {
  margin-top: 40px;
}
.about__title {
  margin-top: 24px;
}
@media screen and (max-width: 750px) {
  .about__title {
    margin-top: 16px;
  }
}
.about__list {
  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;
}
@media screen and (max-width: 750px) {
  .about__list {
    display: block;
  }
}
.about__item {
  width: calc((100% - 42px) / 3);
  padding: 24px;
  border: solid 1px #E1E1E1;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 750px) {
  .about__item {
    width: auto;
  }
}
@media screen and (max-width: 750px) {
  .about__item + .about__item {
    margin-top: 24px;
  }
}
.about__photo {
  max-width: 182px;
  margin: 0 auto;
}
.about__lead {
  min-height: 83px;
  margin-top: 16px;
  color: #002970;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .about__lead {
    min-height: auto;
  }
}
.about__text {
  margin-top: 16px;
}
.about__text--annotation {
  margin-top: 16px;
  line-height: 1.1;
}
.about__text--annotation + .about__text--annotation {
  margin-top: 0;
}
.about__annotation {
  color: #606060;
  font-size: 1.2rem;
}

.campaign {
  background: #EFF5FF;
  padding: 88px 0 16px;
}
.campaign__container {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (max-width: 750px) {
  .campaign__container {
    max-width: 375px;
  }
}
.campaign__title {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  color: #002970;
}
@media screen and (max-width: 750px) {
  .campaign__title {
    font-size: 2.4rem;
  }
}
.campaign__title + * {
  margin-top: 40px;
}
.campaign__content {
  padding: 64px;
  background: #ffffff;
  border: solid 1px #E1E1E1;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 750px) {
  .campaign__content {
    padding: 24px;
  }
}
.campaign__inner {
  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;
}
@media screen and (max-width: 750px) {
  .campaign__inner {
    display: block;
  }
}
.campaign__inner + .campaign__inner {
  margin-top: 48px;
}
.campaign__term {
  width: 173px;
  margin-right: 32px;
  padding: 16px;
  background: #ffffff;
  border: solid 2px #E1E1E1;
  border-radius: 8px;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .campaign__term {
    width: auto;
    margin: 0 auto;
    padding: 8px;
  }
}
.campaign__description {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 750px) {
  .campaign__description {
    margin-top: 16px;
  }
}
.campaign__balloon {
  position: relative;
  max-width: 460px;
  margin: 40px auto 0;
  padding: 8px;
  background: #FFF7F2;
  border-radius: 30px;
  color: #FF954C;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .campaign__balloon {
    max-width: 350px;
    padding: 4px;
    font-size: 1.4rem;
  }
}
.campaign__balloon::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 50%;
  width: 12px;
  height: 10px;
  background-color: #fff7f2;
  -webkit-clip-path: polygon(50% 10px, 0% 0%, 12px 0%);
          clip-path: polygon(50% 10px, 0% 0%, 12px 0%);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.campaign__button--end {
  margin-top: 16px;
}
.campaign__text--end, .agreement__text--end, .flow__text--end {
  display: block;
  color: #FF0033;
  font-weight: 700;
  text-align: center;
}
.campaign__link {
  position: relative;
  display: block;
  max-width: 380px;
  background: #F2BF30;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin: 12px auto 0;
  padding: 16px 8px;
  border-radius: 8px;
  color: #242323;
}
.campaign__link:visited {
  color: #242323;
}
.campaign__link:hover {
  text-decoration: none;
  opacity: 0.7;
}
.campaign__link::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 16px;
  display: block;
  margin-left: 8px;
  border-top: 2px solid #242323;
  border-right: 2px solid #242323;
  color: #242323;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.campaign__link.end {
  color: #fff;
  background: #B0B0B0;
  pointer-events: none;
}
.campaign__link.end::after {
  content: none;
}
.campaign__annotation {
  color: #606060;
  font-size: 1.2rem;
}

.flow {
  background: #EFF5FF;
  padding: 88px 0;
}
@media screen and (max-width: 750px) {
  .flow {
    padding: 64px 0;
  }
}
.flow__container {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (max-width: 750px) {
  .flow__container {
    max-width: 375px;
  }
}
.flow__title {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  color: #002970;
}
@media screen and (max-width: 750px) {
  .flow__title {
    font-size: 2.4rem;
  }
}
.flow__title + * {
  margin-top: 40px;
}
.flow__list {
  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;
}
@media screen and (max-width: 750px) {
  .flow__list {
    display: block;
  }
}
.flow__item {
  position: relative;
  width: calc((100% - 96px) / 4);
  padding: 24px 8px;
  background: #ffffff;
  border: solid 1px #E1E1E1;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 750px) {
  .flow__item {
    width: auto;
  }
}
@media screen and (max-width: 750px) {
  .flow__item:not(:first-child) {
    margin-top: 40px;
  }
}
.flow__item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 15px;
  height: 41px;
  background-color: #002970;
  -webkit-clip-path: polygon(15px 50%, 0% 0%, 0% 41px);
          clip-path: polygon(15px 50%, 0% 0%, 0% 41px);
}
@media screen and (max-width: 750px) {
  .flow__item:not(:first-child)::before {
    top: -26px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 41px;
    height: 15px;
    background-color: #002970;
    -webkit-clip-path: polygon(50% 15px, 0% 0%, 41px 0%);
            clip-path: polygon(50% 15px, 0% 0%, 41px 0%);
  }
}
.flow__photo {
  max-width: 132px;
  margin: 0 auto;
}
.flow__text {
  margin-top: 16px;
  font-weight: 700;
  text-align: center;
}
.flow__annotation {
  display: block;
  margin-top: 4px;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.3;
}
.flow__balloon {
  position: relative;
  max-width: 460px;
  margin: 40px auto 0;
  padding: 8px;
  background: #FFF7F2;
  border-radius: 30px;
  color: #FF954C;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .flow__balloon {
    max-width: 350px;
    padding: 4px;
    font-size: 1.4rem;
  }
}
.flow__balloon::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 50%;
  width: 12px;
  height: 10px;
  background-color: #fff7f2;
  -webkit-clip-path: polygon(50% 10px, 0% 0%, 12px 0%);
          clip-path: polygon(50% 10px, 0% 0%, 12px 0%);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.flow__button--end {
  margin-top: 16px;
}
.flow__link {
  position: relative;
  display: block;
  max-width: 380px;
  background: #F2BF30;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin: 12px auto 0;
  padding: 16px 8px;
  border-radius: 8px;
  color: #242323;
}
.flow__link:visited {
  color: #242323;
}
.flow__link:hover {
  text-decoration: none;
  opacity: 0.7;
}
.flow__link::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 16px;
  display: block;
  margin-left: 8px;
  border-top: 2px solid #242323;
  border-right: 2px solid #242323;
  color: #242323;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.flow__link.end {
  color: #fff;
  background: #B0B0B0;
  pointer-events: none;
}
.flow__link.end::after {
  content: none;
}
.flow__annotation {
  color: #606060;
  font-size: 1.2rem;
}

.agreement {
  padding: 88px 16px;
}
.agreement__container {
  max-width: 950px;
  margin: 0 auto;
  padding: 40px 48px 48px;
  border-radius: 8px;
  background: #eeeeee;
}
@media screen and (max-width: 750px) {
  .agreement__container {
    max-width: 375px;
    padding: 24px;
  }
}
.agreement__title {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .agreement__title {
    font-size: 2rem;
  }
}
.agreement__detail {
  margin-top: 32px;
  padding: 48px;
  border-radius: 8px;
  background: #ffffff;
}
@media screen and (max-width: 750px) {
  .agreement__detail {
    margin-top: 24px;
    padding: 16px;
    font-size: 1.4rem;
  }
}
.agreement__conditions {
  line-height: 170%;
}
.agreement__term {
  font-weight: 700;
}
.agreement__term:not(:first-child) {
  margin-top: 16px;
  padding-top: 16px;
}
.agreement__description {
  font-size: 1.4rem;
  margin-top: 8px;
  word-break: break-all;
}
.agreement__description + .agreement__description {
  margin-top: 32px;
}
.agreement__description:last-child {
  margin-bottom: 8px;
}
.agreement__item {
  padding-left: 1em;
  text-indent: -1em;
}
.agreement__item::before {
  content: "・";
}
.agreement__text--bold {
  font-weight: 700;
}
.agreement__annotation {
  color: #606060;
  font-size: 1.2rem;
}
.agreement__balloon {
  position: relative;
  max-width: 460px;
  margin: 40px auto 0;
  padding: 8px;
  background: #FFF7F2;
  border-radius: 30px;
  color: #FF954C;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .agreement__balloon {
    max-width: 350px;
    padding: 4px;
    font-size: 1.4rem;
  }
}
.agreement__balloon::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 50%;
  width: 12px;
  height: 10px;
  background-color: #fff7f2;
  -webkit-clip-path: polygon(50% 10px, 0% 0%, 12px 0%);
          clip-path: polygon(50% 10px, 0% 0%, 12px 0%);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.agreement__button--end {
  margin-top: 16px;
}
.agreement__link {
  color: #3895ff;
}
.agreement__link:visited {
  color: #3895ff;
}
.agreement__button > .agreement__link {
  position: relative;
  display: block;
  max-width: 380px;
  background: #F2BF30;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin: 12px auto 0;
  padding: 16px 8px;
  border-radius: 8px;
  color: #242323;
}
.agreement__button > .agreement__link:visited {
  color: #242323;
}
.agreement__button > .agreement__link:hover {
  text-decoration: none;
  opacity: 0.7;
}
.agreement__button > .agreement__link::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 16px;
  display: block;
  margin-left: 8px;
  border-top: 2px solid #242323;
  border-right: 2px solid #242323;
  color: #242323;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.agreement__button > .agreement__link.end {
  color: #fff;
  background: #B0B0B0;
  pointer-events: none;
}
.agreement__button > .agreement__link.end::after {
  content: none;
}
.agreement__button--end > .agreement__link {
  position: relative;
  display: block;
  max-width: 380px;
  background: #F2BF30;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin: 12px auto 0;
  padding: 16px 8px;
  border-radius: 8px;
  color: #242323;
}
.agreement__button--end > .agreement__link:visited {
  color: #242323;
}
.agreement__button--end > .agreement__link:hover {
  text-decoration: none;
  opacity: 0.7;
}
.agreement__button--end > .agreement__link::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 16px;
  display: block;
  margin-left: 8px;
  border-top: 2px solid #242323;
  border-right: 2px solid #242323;
  color: #242323;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.agreement__button--end > .agreement__link.end {
  color: #fff;
  background: #B0B0B0;
  pointer-events: none;
}
.agreement__button--end > .agreement__link.end::after {
  content: none;
}