<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tahighlight-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;
  margin: 0;
}

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

dd {
  margin-left: 0;
}

small {
  font-size: inherit;
}

a {
  display: inline-block;
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  word-wrap: break-word;
}

abbr[title] {
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

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

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

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

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

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

textarea {
  overflow: auto;
  resize: none;
}

[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;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

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

picture {
  display: -block;
}

img {
  max-width: 100%;
  object-fit: cover;
}

span {
  display: inline-block;
}

html {
  font-size: 15px;
}

._pc {
  display: block;
}

._sp {
  display: none;
}

@media screen and (max-width: 768px) {
  ._pc {
    display: none;
  }
  ._sp {
    display: block;
  }
  
}
@media screen and (max-width: 600px) {
  html {
    font-size: 13px;
  }
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  color: #000000;
  font-feature-settings: "palt";
}
@media screen and (max-width: 600px) {
  body {
    line-height: 1.3;
  }
}

/* text */
.sentence + .sentence {
  margin-top: 5px;
}

.note {
  display: block;
  font-size: 15px;
  text-align: left;
  font-weight: 500;
  text-indent: -1em;
  padding-left: 1em;
}
.note + .note {
  margin-top: 5px;
}
.sentence + .note {
  margin-top: 5px;
}
@media screen and (max-width: 600px) {
  .note {
    font-size: 13px;
  }
}

/* CTA */
.cta {
  display: flex;
  align-items: flex-end;
  gap: 30px 40px;
}
.cta__btnWrap {
  width: calc(50% - 20px);
  text-align: center;
}
.cta__btn {
  width: 100%;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  background-color: #1E5EDA;
  padding: 1em;
  border: 2px solid #1E5EDA;
  border-radius: 9999px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in;
}
.cta__btn:hover {
  box-shadow: none;
  color: #1E5EDA;
  background-color: #fff;
}
.cta__btn.-password {
  color: #1E5EDA;
  background-color: #fff;
}
.cta__btn.-password:hover {
  color: #fff;
  background-color: #1E5EDA;
}
.cta__note {
  position: relative;
  display: block;
  width: 100%;
  font-size: 16px;
  text-align: center;
  margin-bottom: 10px;
}
.cta__note::before, .cta__note::after {
  position: absolute;
  bottom: 0;
  content: "";
  height: 1em;
  aspect-ratio: 12/16;
  background: url(../img/bubble_line.svg) no-repeat center center/contain;
}
.cta__note::before {
  left: 0;
}
.cta__note::after {
  right: 0;
  transform: scale(1, -1);
}
@media screen and (max-width: 768px) {
  .cta {
    flex-direction: column;
    align-items: center;
  }
  .cta__btnWrap {
    max-width: 310px;
    width: 100%;
  }
  .cta__btn {
    font-size: 15px;
  }
  .cta__note {
    font-size: 14px;
  }
}

/* footer */
footer {
  border-top: 1px solid #f4f4f4;
  background: #fff;
}

footer .footer-middle {
  padding: 65px 20px;
}

footer .footer-middle .inner {
  max-width: 1120px;
  margin: 0 auto;
  /* display: flex; */
  /* justify-content: space-between; */
  position: relative;
  /* text-align: left; */
}

/* footer .footer-middle .inner:before {
  background-color: #c2cad6;
  content: "";
  height: 100%;
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 1px;
} */

footer .footer-middle .inner .pagetop {
  cursor: pointer;
  font-size: 75%;
  position: absolute;
  bottom: -115px;
  right: 0px;
  text-align: center;
  z-index: 5;
}

footer .footer-middle .inner .pagetop img {
  display: block;
  margin-bottom: 5px;
}

footer .footer-middle .footer-sitemap {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  /* width: 45%; */
}

footer .footer-middle .footer-sitemap .footer-sitemap__main{
  display: flex;
  width: 40%;
}
footer .footer-middle .footer-sitemap .footer-sitemap__sub {
  display: flex;
  justify-content: space-between;
  width: 60%;
}

.footer-sitemap .item a[target="_blank"]:after {
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	margin-left: 5px;
	background-image: url(/img/common/icon_blank-black.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	vertical-align: 0.24em;
}

footer .footer-middle .footer-sitemap ul:nth-of-type(2) {
  margin: 0 20px;
}

footer .footer-middle .footer-sitemap ul li {
  font-size: 75%;
  margin-bottom: 10px;
}

footer .footer-middle .footer-sitemap ul li:last-child {
  margin-bottom: 0;
}

footer .footer-middle .footer-sitemap ul li a {
  color: #666;
  text-decoration: none;
  transition: opacity 0.6s;
  text-decoration: none;
}

footer .footer-middle .footer-sitemap ul li a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 960px) {
  footer .footer-middle .footer-sitemap ul li a:hover {
    opacity: 1;
  }
}
footer .footer-middle .footer-misc {
  display: flex;
  margin: 0 60px 0 0;
  padding: 20px 0;
  /* width: 37%; */
}

footer .footer-middle .footer-misc .footer-misc__column {
  width: 50%;
}

footer .footer-middle .footer-misc dt {
  font-weight: 700;
  font-size: 87.5%;
  margin-top: 20px;
  letter-spacing: -0.01em;
}

footer .footer-middle .footer-misc dt:first-of-type {
  margin-top: 0;
}

footer .footer-middle .footer-misc dd {
  font-size: 75%;
  margin-top: 15px;
  letter-spacing: -0.01em;
}

footer .footer-lower {
  background: url("../img/bg_walk-stop.png") repeat-x 50% 100% #f4f4f4;
  background-size: auto 80px;
  padding: 75px 20px 120px;
  position: relative;
  text-align: center;
}

footer .footer-lower .footer-logo {
  margin: 0 auto 15px;
}

footer .footer-lower .copyright {
  font-size: 75%;
}

@media screen and (max-width: 768px) {
  footer .footer-middle {
    padding: 45px 30px;
  }
  footer .footer-middle .inner {
    display: block;
  }
  footer .footer-middle .inner:before {
    display: none;
  }
  footer .footer-middle .inner .pagetop {
    font-size: 80%;
    bottom: -100px;
    right: -20px;
  }
  footer .footer-middle .footer-sitemap {
    display: block;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 35px;
    padding: 0 0 35px;
    width: 100%;
  }
  footer .footer-middle .footer-sitemap .footer-sitemap__main {
    width: 100%;
    font-size: 120%;
  }
  footer .footer-middle .footer-sitemap .footer-sitemap__sub {
    width: 100%;
  }
  footer .footer-middle .footer-sitemap .footer-sitemap__sub .sitemap-list {
    width: 100%;
  }
  footer .footer-middle .footer-sitemap ul {
    margin: 0 0 35px;
    width: 48%;
  }
  footer .footer-middle .footer-sitemap ul:nth-of-type(2) {
    margin: 0 0 35px 4%;
  }
  footer .footer-middle .footer-sitemap ul:nth-of-type(3) {
    margin: 0;
    width: 100%;
  }
  footer .footer-middle .footer-sitemap ul li {
    font-size: 80%;
  }
  footer .footer-middle .footer-misc {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  footer .footer-middle .footer-misc dt {
    font-size: 95%;
  }
  footer .footer-middle .footer-misc dd {
    font-size: 80%;
    margin-top: 10px;
  }
  footer .footer-middle .footer-misc .footer-misc__column {
    width: 100%;
  }
  footer .footer-middle .footer-misc .footer-misc__column.-association {
    margin-top: 30px;
  }
  footer .footer-lower .copyright {
    font-size: 85%;
  }
}
/* root container */
.wrapper {
  overflow-x: clip;
  background-color: #F2F6FD;
}

/*--- main visual ---*/
.mv {
  position: relative;
  width: 100%;
  aspect-ratio: 1400/750;
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: cover;
  background-image: url(../img/mv_bg.jpg);
  background-image: image-set(url(../img/mv_bg.jpg) 1x, url(../img/mv_bg@2x.jpg) 2x);
}
.mv__logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 96px;
  aspect-ratio: 96/30;
}
.mv__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 50px;
  width: 760px;
  width: 59.375vw;
  min-width: 705px;
  height: 100%;
  padding: 60px 8.8vw 70px 0;
  margin-left: auto;
}
.mv__catch {
  width: 100%;
}
.mv__presentList {
  display: inline-flex;
  align-items: center;
  column-gap: 40px;
  width: 73%;
}
.mv__presentItem {
  flex: 1;
}
@media screen and (max-width: 1279px) {
  .mv__content {
    min-width: initial;
    width: 760px;
    width: 59.375vw;
  }
}
@media screen and (max-width: 768px) {
  .mv {
    aspect-ratio: 375/300;
    background-image: url(../img/mv_bg_sp.jpg);
    background-image: image-set(url(../img/mv_bg_sp.jpg) 1x, url(../img/mv_bg_sp@2x.jpg) 2x);
  }
  .mv__logo {
    top: 15px;
  }
  .mv__content {
    width: 500px;
    width: 65.1041666667vw;
    row-gap: 15px;
    padding: 15px 15px 30px 0;
  }
  .mv__presentList {
    width: 92%;
    column-gap: 5px;
  }
}
@media screen and (max-width: 600px) {
  .mv__logo {
    width: 64px;
  }
}

/*--- about ---*/
.about {
  background-color: #f6fffc;
  padding: 90px 0 130px;
}
.about__inner {
  max-width: 980px;
  text-align: center;
  padding: 0 50px;
  margin: 0 auto;
}
.about__heading {
  margin-bottom: 1em;
}
.about__desc {
  margin-bottom: 2.1em;
}
.about__btnWrap {
  position: relative;
  display: inline-block;
  max-width: 600px;
  width: calc(100% - 20px);
  color: #fff;
  background-color: #2A262C;
  border-radius: 10px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: 100px;
  overflow: hidden;
  transition: 0.2s ease-in all;
}
.about__btnWrap::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 10px;
  margin: auto;
  width: 58%;
  height: 74%;
  background-color: #1E5EDA;
  opacity: 0;
  transition: opacity 0.1s ease-in, transform 0.2s 0.1s ease-in;
}
.about__btnWrap:hover {
  box-shadow: none;
}
.about__btnWrap:hover::before {
  opacity: 1;
  transform: scale(2);
}
.about__btn {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  padding: 1em;
  z-index: 10;
}
.about__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  width: 1.3em;
  aspect-ratio: 1/1;
  background: url(../img/circle_arrow_bk.svg) no-repeat center center/contain;
  transition: 0.2s 0.1s ease-in all;
}
.about__btnWrap:hover .about__btn::after {
  background: url(../img/circle_arrow.svg) no-repeat center center/contain;
}
.about__movie {
  position: relative;
  width: 80%;
  aspect-ratio: 16/9;
  margin: 0 auto 110px;
}
.about__movie &gt; iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about__footer {
  width: calc(100% - 20px);
  max-width: 700px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .about {
    padding: 30px 0 60px;
  }
  .about__inner {
    padding: 0 25px;
  }
  .about__desc {
    text-align: left;
  }
  .about__btnWrap {
    max-width: 310px;
    margin-bottom: 60px;
  }
  .about__btn {
    font-size: 15px;
  }
  .about__movie {
    width: 100%;
    margin-bottom: 60px;
  }
}

/* キャンペーン詳細 */
.detail {
  padding: 120px 0 100px;
}
.detail__heading {
  font-size: 44px;
  text-align: center;
  margin-bottom: 1.2em;
}
.detail__body {
  max-width: 1020px;
  width: calc(100% - 20px);
  background-color: #fff;
  border-radius: 20px;
  padding: 55px 60px;
  margin: 0 auto;
}
.detail__footer {
  max-width: 760px;
  width: calc(100% - 60px);
  margin: 90px auto 0;
}
@media screen and (max-width: 768px) {
  .detail {
    padding: 65px 0 60px;
  }
  .detail__body {
    padding: 25px 20px 30px;
  }
  .detail__footer {
    margin-top: 60px;
  }
}
@media screen and (max-width: 600px) {
  .detail__heading {
    font-size: 26px;
  }
}

.detail-section + .detail-section {
  margin-top: 75px;
}
.detail-section__title {
  margin-bottom: 1em;
}

.detail-period__text01 {
  margin-bottom: 10px;
}
.detail-period__text02 {
  margin: 45px 0 20px;
}
.detail-period__graph {
  width: 100%;
}

.detail-present__list {
  display: flex;
}
.detail-present__item {
  width: 50%;
  text-align: center;
  padding: 24px 30px;
  background-color: #f2f6fd;
}
.detail-present__item:nth-child(1) {
  border-right: 1px solid #cfdffc;
  border-radius: 20px 0 0 20px;
}
.detail-present__item:nth-child(2) {
  border-radius: 0 20px 20px 0;
}
.detail-present__number {
  height: 40px;
  margin-bottom: 20px;
}
.detail-present__title {
  color: #1E5EDA;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
.detail-present__table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  border: 1px solid #dddddd;
  overflow: hidden;
}
.detail-present__table th,
.detail-present__table td {
  vertical-align: middle;
  text-align: center;
  border-right: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
}
.detail-present__table th:last-child,
.detail-present__table td:last-child {
  border-right: none;
}
.detail-present__table th {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  background-color: #1E5EDA;
  padding: 0.5em 0;
}
.detail-present__table td {
  font-size: 15px;
  font-weight: 600;
  background-color: #fff;
  padding: 1em 0;
}
.detail-present__table tr:last-child th,
.detail-present__table tr:last-child td {
  border-bottom: none;
}
@media screen and (max-width: 1023px) {
  .detail-present__list {
    flex-direction: column;
  }
  .detail-present__item {
    width: 100%;
    padding: 20px 20px 40px;
  }
  .detail-present__item:nth-child(1) {
    border-right: none;
    border-bottom: 1px solid #cfdffc;
    border-radius: 20px 20px 0 0;
  }
  .detail-present__item:nth-child(2) {
    border-radius: 0 0 20px 20px;
  }
}
@media screen and (max-width: 600px) {
  .detail-present__number {
    height: 30px;
  }
  .detail-present__title {
    font-size: 16px;
  }
  .detail-present__table {
    width: calc(100% + 30px);
    margin-left: -15px;
  }
  .detail-present__table th {
    font-size: 15px;
  }
  .detail-present__table td {
    font-size: 13px;
  }
}

.detail-rule__title {
  margin-bottom: 10px;
}
.detail-rule__list &gt; li {
  position: relative;
  counter-increment: table-ol;
  font-size: 20px;
  font-weight: 700;
  padding-left: 1.5em;
}
.detail-rule__list &gt; li::before {
  content: counter(table-ol) ")";
  position: absolute;
  left: 0;
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
}
.detail-rule__list &gt; li:not(:last-child) {
  margin-bottom: 1.2em;
}
.detail-rule__list + .detail-rule__title {
  margin-top: 45px;
}
@media screen and (max-width: 600px) {
  .detail-rule__list &gt; li {
    font-size: 16px;
  }
}

.detail-method__list {
  margin-bottom: 35px;
}
.detail-method__list &gt; li {
  position: relative;
  color: #1E5EDA;
  font-size: 18px;
  font-weight: 700;
  padding-left: 0.5em;
}
.detail-method__list &gt; li::before {
  content: "・";
  position: absolute;
  left: 0;
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
}
.detail-method__list a {
  text-decoration: underline;
}
@media screen and (max-width: 600px) {
  .detail-method__list &gt; li {
    font-size: 15px;
  }
}

.detail-attention__title {
  margin: 35px 0 10px;
}
.detail-attention__text02 {
  margin-bottom: 10px;
}

/*--- 注意事項 ---*/
.attention {
  margin-bottom: 120px;
}
.attention__inner {
  max-width: 1020px;
  width: calc(100% - 20px);
  background-color: #fff;
  border-radius: 20px;
  padding: 55px 60px;
  margin: 0 auto;
}
.attention__heading {
  margin-bottom: 1em;
}
.attention__list01 &gt; li {
  position: relative;
  padding-left: 1em;
}
.attention__list01 &gt; li::before {
  content: "・";
  position: absolute;
  left: 0;
  display: inline-block;
  width: 1em;
  height: 1em;
}
.attention__list01 &gt; li:not(:last-child) {
  margin-bottom: 5px;
}
.attention__list02 {
  margin: 10px 0 25px;
}
.attention__list02 &gt; li {
  position: relative;
  padding-left: 1.5em;
}
.attention__list02 &gt; li::before {
  content: "―";
  position: absolute;
  left: 0;
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
}
.attention__list02 &gt; li:not(:last-child) {
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .attention {
    margin-bottom: 45px;
  }
  .attention__inner {
    padding: 25px 20px;
  }
}

/* adjustment */
.-img_contain {
  text-align: center;
}
.-img_contain img,
.-img_contain source {
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: middle;
}
.-img_cover img,
.-img_cover source {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.-fz_lg {
  font-size: 28px;
}
@media screen and (max-width: 600px) {
  .-fz_lg {
    font-size: 20px;
  }
}
.-fz_md {
  font-size: 22px;
}
@media screen and (max-width: 600px) {
  .-fz_md {
    font-size: 16px;
  }
}
.-fz_sm {
  font-size: 20px;
}
@media screen and (max-width: 600px) {
  .-fz_sm {
    font-size: 16px;
  }
}
.-fz_xs {
  font-size: 18px;
}
@media screen and (max-width: 600px) {
  .-fz_xs {
    font-size: 14px;
  }
}

.-color_primary {
  color: #1E5EDA;
}
.-color_rd {
  color: #FF0000;
}

.-align_center {
  text-align: center;
}
.-align_right {
  text-align: right;
}
.-align_left {
  text-align: left;
}

.-weight_700 {
  font-weight: 700;
}
.-weight_500 {
  font-weight: 500;
}
.-weight_400 {
  font-weight: 400;
}

.-display_lg {
  display: none;
}
@media screen and (max-width: 1279px) {
  .-display_lg {
    display: block;
  }
}
.-display_md {
  display: none;
}
@media screen and (max-width: 1023px) {
  .-display_md {
    display: block;
  }
}
.-display_sm {
  display: none;
}
@media screen and (max-width: 768px) {
  .-display_sm {
    display: block;
  }
}
.-display_xs {
  display: none;
}
@media screen and (max-width: 600px) {
  .-display_xs {
    display: block;
  }
}

.-display_flex_md {
  display: none;
}
@media screen and (max-width: 1023px) {
  .-display_flex_md {
    display: flex;
  }
}
.-display_flex_xs {
  display: none;
}
@media screen and (max-width: 600px) {
  .-display_flex_xs {
    display: flex;
  }
}

.-hidden_lg {
  display: none;
}
@media screen and (max-width: 1279px) {
  .-hidden_lg {
    display: block;
  }
}
@media screen and (max-width: 1023px) {
  .-hidden_md {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .-hidden_sm {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .-hidden_xs {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */</pre></body></html>