<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&amp;display=swap);
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&amp;display=swap);
@font-face {
  font-family: ProductSans;
  src: url("./ProductSans-Regular.ttf") format("truetype");
}
/* ベース
=================================== */
* {
  box-sizing: border-box;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #1C1D1F;
  font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
}

a {
  text-decoration: none;
  color: #1C1D1F;
}

button {
  border: none;
  outline: none;
}

@media (max-width: 768px) {
  .p-pc_view {
    display: none;
  }
}

@media (min-width: 769px) {
  .p-sp_view {
    display: none;
  }
}

.container {
  max-width: 1112px;
  margin: 0 auto;
  padding: 4.375rem 3rem 4.6875rem;
}
@media (max-width: 768px) {
  .container {
    padding: 2.5rem 4rem 3.125rem;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 2.5rem 1rem 3.125rem;
  }
}

.contentWrap {
  max-width: 892px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .contentWrap {
    padding: 0;
  }
}

.note li {
  padding-left: 1em;
  text-indent: -1em;
  color: #393939;
}

.p-note {
  padding-left: 1em;
  text-indent: -1em;
  color: #393939;
}

[data-bg=dot] {
  background-color: #FFFCDE;
  background-image: url(../images/bg_circles.png);
}

[data-bg=yellow] {
  background-color: #fdf9ac;
}

@media (min-width: 769px) {
  a {
    transition: all 250ms ease;
  }

  a:hover {
    opacity: 0.7;
  }
}
/* ヘッダー
=================================== */
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 72px;
  background-color: #fff;
  z-index: 1000;
}
@media (max-width: 768px) {
  .header {
    height: 60px;
    background-color: #fff;
  }
  .header__logo {
    max-width: 121px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .header__logo {
    display: flex;
    align-items: center;
  }
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .header .container {
    padding: 0 1rem 0 3.3125rem;
    width: 100%;
  }
}
.header__navi ul {
  display: flex;
  align-items: center;
}
.header__naviItem {
  font-size: 1rem;
  font-weight: bold;
}
@media (max-width: 910px) {
  .header__naviItem {
    font-size: 0.875rem;
  }
}
.header__naviItem:not(:last-child) {
  margin-right: 1rem;
}
@media (max-width: 910px) {
  .header__naviItem:not(:last-child) {
    margin-right: 5px;
  }
}
@media (max-width: 768px) {
  .header__naviItem:not(:last-child) {
    margin-right: 0;
  }
}

/* ハンバーガーメニュー
=================================== */
@media (max-width: 768px) {
  .header__navi {
    width: 300px;
    height: calc(100vh - 60px);
    position: absolute;
    bottom: 0;
    right: 0;
    top: 60px;
    padding: 2.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
  }
  .header__navi.active {
    opacity: 1;
    visibility: visible;
    background-color: #EB3414;
  }
  .header__navi ul {
    flex-direction: column;
    margin: 0 auto;
    padding: 0 3rem;
  }
  .header__navi ul li {
    width: 100%;
  }
  .header__navi ul li:last-child a {
    border-bottom: 1px solid #fff;
  }
  .header__navi ul li a {
    display: inline-block;
    font-size: 1rem;
    color: #fff;
    padding: 1rem;
    width: 100%;
    border-top: 1px solid #fff;
  }
}
@media (max-width: 375px) {
  .header__navi {
    width: 100vw;
    left: 0;
  }
  .header__navi ul {
    max-width: 200px;
    padding: 0;
  }
}
.openbtn {
  position: relative;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
}

.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #1C1D1F;
  width: 50%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
  background: #eb3414;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
  background: #eb3414;
}

/* hero
=================================== */
.hero {
  position: relative;
}
.hero__image {
  border-top: 3px solid #F82F00;
  text-align: center;
  margin-top: 75px;
}
@media (max-width: 768px) {
  .hero__image {
    margin-top: 60px;
    border-top: none;
  }
}
.hero__image img {
  vertical-align: bottom;
}
@media (max-width: 768px) {
  .hero__image img {
    width: 100%;
  }
}
.hero .end-message {
  background: rgba(255, 255, 255, 0.95);
  border: 10px solid #F82F00;
  border-radius: 20px;
  color: #F82F00;
  font-weight: 800;
  left: 50%;
  line-height: 1.7;
  padding: 2.5em 0.5em;
  position: absolute;
  font-size: 2.25rem;
  text-align: center;
  top: 40%;
  transform: translate(-50%, -50%);
  width: 95%;
  max-width: 900px;
  z-index: 1;
}
@media (max-width: 959px) {
  .hero .end-message {
    padding: 2em 0.5em;
    font-size: 1.875rem;
  }
}
@media (max-width: 768px) {
  .hero .end-message {
    top: 32%;
    max-width: 480px;
    padding: 2.2em 0.25em;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 10px;
    border: 5px solid #F82F00;
  }
}
.hero__period {
  padding: 2.5rem 0 2.375rem;
  background-color: #FFF795;
  border-top: 4px solid #FFD93C;
  border-bottom: 4px solid #FFD93C;
  text-align: center;
}
@media (max-width: 768px) {
  .hero__period {
    padding: 0.5rem 0;
  }
}
.hero__text {
  letter-spacing: 0.5px;
  font-weight: bold;
  font-size: 2.25rem;
}
@media (max-width: 768px) {
  .hero__text {
    font-size: 1.4375rem;
  }
}
.hero__text span.heroTitle {
  margin-right: 1.875rem;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .hero__text span.heroTitle {
    font-size: 1.25rem;
  }
}
@media (max-width: 768px) {
  .hero__text span.number {
    font-size: 1.875rem;
  }
}
.hero__text small {
  font-size: 1.75rem;
}
@media (max-width: 768px) {
  .hero__text small {
    font-size: 1.4375rem;
    margin-right: 1rem;
  }
}
.hero__text small span {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .hero__text small span {
    font-size: 1.4375rem;
  }
}
.hero__text span.weekday {
  margin: 0 0.25rem;
  font-size: 1.5rem;
  color: #fff;
  background-color: #1C1D1F;
  display: inline-block;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  text-align: center;
  line-height: 2.25rem;
}
@media (max-width: 768px) {
  .hero__text span.weekday {
    width: 1.875rem;
    height: 1.875rem;
    line-height: 1.875rem;
    font-size: 1.25rem;
  }
}

/* section共通項目
=================================== */
.section__title {
  max-width: 860px;
  margin: 0 auto 2.5rem;
  padding: 0.3125rem 0 0.75rem;
  background-color: #F82F00;
  border-radius: 50px;
  color: #fff;
  font-size: 2rem;
  text-align: center;
}
@media (max-width: 768px) {
  .section__title {
    padding: 0.25rem 0;
    margin-bottom: 1.875rem;
    font-size: 1.5rem;
  }
}
.section__box {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  padding: 2.5rem;
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: 5px 5px 0 #FF7F00;
}
@media (max-width: 768px) {
  .section__box {
    padding: 1.875rem 1.25rem 2.5rem;
  }
}
.section__box:not(:last-child) {
  margin-bottom: 2.5rem;
}
.section__subTitle {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0.4375rem;
  padding-bottom: 0.5625rem;
  background-image: url(../images/bg_title.png);
  background-repeat: repeat-x;
  font-size: 2.5rem;
  text-align: center;
}
@media (max-width: 959px) {
  .section__subTitle {
    font-size: 2.25rem;
  }
}
@media (max-width: 768px) {
  .section__subTitle {
    padding: 0.25rem 0;
    font-size: 1.5rem;
  }
}
@media (max-width: 374px) {
  .section__subTitle {
    font-size: 1.25rem;
  }
}

/* キャンペーンについて
=================================== */
.campaign .container {
  padding-top: 2.8125rem;
  padding-bottom: 4.5625rem;
}
@media (max-width: 768px) {
  .campaign .container {
    padding-bottom: 3.125rem;
  }
}
.campaign .present {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-bottom: 5rem;
}
@media (max-width: 768px) {
  .campaign .present {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
.campaign .present__lead {
  margin: 1.3125rem 0 4rem;
  font-size: 1.5rem;
  text-align: center;
}
@media (max-width: 768px) {
  .campaign .present__lead {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }
}
.campaign .present__lead b {
  font-size: 1.875rem;
}
@media (max-width: 768px) {
  .campaign .present__lead b {
    font-size: 1.125rem;
  }
}
.campaign .present__lead b span {
  color: #F82F00;
}
.campaign .present__apply {
  position: relative;
}
.campaign .present__apply--card .present__applyTitle {
  color: #0063B4;
}
.campaign .present__apply--card .present__applyTitle::before, .campaign .present__apply--card .present__applyTitle::after {
  background-color: #0063B4;
}
@media (max-width: 768px) {
  .campaign .present__apply--card .present__img {
    padding: 0 1rem;
  }
}
@media (max-width: 768px) {
  .campaign .present__apply--line {
    position: relative;
    margin-bottom: 1.625rem;
  }
}
.campaign .present__applyTitle {
  margin-bottom: 1.875rem;
  font-size: 1.5rem;
  color: #06C755;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .campaign .present__applyTitle {
    margin-bottom: 1.25rem;
  }
}
.campaign .present__applyTitle::before, .campaign .present__applyTitle::after {
  content: "";
  height: 4px;
  flex-grow: 1;
  background-color: #06C755;
}
@media (max-width: 768px) {
  .campaign .present__applyTitle::before, .campaign .present__applyTitle::after {
    height: 3px;
  }
}
.campaign .present__applyTitle::before {
  margin-right: 1.5rem;
}
@media (max-width: 768px) {
  .campaign .present__applyTitle::before {
    margin-right: 0.5rem;
  }
}
.campaign .present__applyTitle::after {
  margin-left: 1.5rem;
}
@media (max-width: 768px) {
  .campaign .present__applyTitle::after {
    margin-left: 0.5rem;
  }
}
.campaign .present h6 {
  margin-bottom: 1.1875rem;
  font-size: 1.5rem;
  text-align: center;
}
@media (max-width: 768px) {
  .campaign .present h6 {
    margin-bottom: 0.625rem;
    font-size: 1.125rem;
  }
}
.campaign .present p {
  margin-bottom: 0.625rem;
  text-align: center;
  font-weight: bold;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .campaign .present p {
    font-size: 1rem;
    margin-bottom: 0;
  }
}
.campaign .present__img {
  text-align: center;
}
.campaign .present__note {
  max-width: 860px;
  margin: 2.5rem auto 7.375rem;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .campaign .present__note {
    margin: 1.25rem auto 0;
    overflow: hidden;
    transition: all 0.3s ease-in;
  }
}
.campaign .present__note li {
  font-family: "Noto Sans", "Noto Sans JP", sans-serif;
}
.campaign .present__note li span.font {
  font-family: "ProductSans", "Noto Sans", "Noto Sans JP", sans-serif;
}
@media (max-width: 768px) {
  .campaign .present_toggle {
    width: 100%;
    position: absolute;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 70%);
    background-color: transparent;
    text-align: center;
    padding-top: 2rem;
  }
  .campaign .present_toggle.close_area {
    position: static;
    background: none;
  }
  .campaign .present_toggle a.open_link:before {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline;
    color: #5f5f5f;
    font-size: 1rem;
  }
  .campaign .present_toggle a.open_link:after {
    content: "詳しく見る";
    display: inline;
    color: #5f5f5f;
    font-weight: 500;
    font-size: 1rem;
    margin-left: 0.5rem;
    text-decoration: underline;
  }
  .campaign .present_toggle a.close_link:before {
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline;
    color: #5f5f5f;
    font-size: 1rem;
  }
  .campaign .present_toggle a.close_link:after {
    content: "折りたたむ";
    display: inline;
    color: #5f5f5f;
    font-weight: 500;
    font-size: 1rem;
    margin-left: 0.5rem;
    text-decoration: underline;
  }
}
.campaign .targetItems__lead {
  margin-top: 1.6875rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  text-align: center;
}
@media (max-width: 768px) {
  .campaign .targetItems__lead {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
  }
}
.campaign .targetItems__lead span {
  color: #F82F00;
}
.campaign .targetItems__lead b {
  font-size: 1.75rem;
}
@media (max-width: 768px) {
  .campaign .targetItems__lead b {
    font-size: 1.25rem;
  }
}
.campaign .targetItems__lead small {
  font-size: 0.875rem;
  font-weight: normal;
}
.campaign .targetItems__row {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .campaign .targetItems__row {
    flex-direction: column;
  }
}
.campaign .targetItems__row &gt; *:first-child {
  margin-right: 4.375rem;
}
@media (max-width: 768px) {
  .campaign .targetItems__row &gt; *:first-child {
    margin-right: 0;
    margin-bottom: 1.25rem;
  }
}
.campaign .targetItems__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.campaign .targetItems__item::before {
  content: "";
  position: absolute;
  top: 40px;
  width: 256px;
  height: 256px;
  border-radius: 50%;
  background-color: #fdfcdc;
}
.campaign .targetItems__item--img {
  position: relative;
}
.campaign .targetItems__item--text {
  position: relative;
  margin-top: 0.625rem;
  font-weight: bold;
  font-size: 0.875rem;
  text-align: center;
}
.campaign .targetItems__item--text b {
  font-size: 1.125rem;
}
.campaign .targetItems__item--text small {
  font-weight: normal;
}
.campaign .targetItems__note {
  max-width: 500px;
  margin: 3.3125rem auto 0;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .campaign .targetItems__note {
    margin-top: 2rem;
  }
}

/* 応募方法
=================================== */
.about__anchor {
  display: flex;
}
@media (max-width: 768px) {
  .about__anchor {
    margin: 0 1.25rem 1.25rem;
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 769px) {
  .about__anchor &gt; a:hover {
    opacity: 0.9;
  }
}
.about__anchor &gt; *:first-child {
  margin-right: 3.75rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 768px) {
  .about__anchor &gt; *:first-child {
    margin-right: 0;
    margin-bottom: 0.625rem;
  }
}
@media (max-width: 768px) {
  .about .lineapply__friend {
    margin-bottom: 3.75rem;
  }
}
.about .lineapply__friend--lead {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 1.5rem;
  text-align: center;
  margin: 0.75rem 0 1rem 0;
}
@media (max-width: 768px) {
  .about .lineapply__friend--lead {
    font-size: 1.125rem;
    margin-top: 1.25rem;
    margin-bottom: 1.875rem;
  }
}
.about .lineapply__friend--lead::before {
  content: "";
  width: 44px;
  height: 44px;
  margin-right: 1rem;
  background-image: url(../images/apply_lineIcon.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.about .lineapply__friend--img {
  text-align: center;
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .about .lineapply__friend--img {
    width: 100%;
  }
}
.about .lineapply__friend .note {
  max-width: 670px;
  margin: 0 auto;
  font-size: 0.875rem;
}
.about .lineapply__step {
  display: flex;
  justify-content: space-between;
  padding: 0 0 2.5rem;
  margin-top: 3.75rem;
}
@media (max-width: 768px) {
  .about .lineapply__step {
    flex-direction: column;
    padding-bottom: 2rem;
    margin-top: 1.5rem;
  }
}
.about .lineapply__step:not(:last-child) {
  position: relative;
}
.about .lineapply__step:not(:last-child)::after {
  content: "";
  height: 28px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  background-image: url(../images/step_line.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 424px) {
  .about .lineapply__step:not(:last-child)::after {
    background-image: url(../images/step_line_sp.png);
  }
}
.about .lineapply__step--box:nth-of-type(2) {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about .lineapply__step--title {
  display: flex;
  align-items: center;
  color: #F82F00;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .about .lineapply__step--title {
    font-size: 1.5rem;
  }
}
.about .lineapply__step--title img {
  margin-right: 1rem;
}
.about .lineapply__step--lead {
  margin: 0.5rem 0 0.875rem;
  font-weight: bold;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .about .lineapply__step--lead {
    font-weight: 500;
    margin: 0.75rem 0 1.25rem;
  }
}
.about .lineapply__step--caution {
  padding: 1rem 1.125rem;
  border-radius: 1rem;
  background-color: #efefef;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .about .lineapply__step--caution {
    padding: 1.25rem 1.125rem;
  }
}
.about .lineapply__step--caution p {
  margin-bottom: 0.5rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .about .lineapply__step--caution p {
    font-weight: 500;
  }
}
.about .lineapply__step--caution .note {
  color: #1C1D1F;
}
.about .lineapply__step--btn {
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .about .lineapply__step--btn {
    margin-top: 0.75rem;
    display: block;
  }
}
.about .lineapply__step.step2 {
  position: relative;
}
@media (max-width: 768px) {
  .about .lineapply__step.step2 .lineapply__step--img {
    padding: 0 2rem;
  }
}
.about .lineapply__step.step2 .lineapply__step--period {
  position: absolute;
  left: 0;
  top: 200px;
  font-size: 1rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .about .lineapply__step.step2 .lineapply__step--period {
    text-align: center;
    margin-top: 1.875rem;
  }
}
.about .lineapply__step.step2 .lineapply__step--period u {
  position: relative;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .about .lineapply__step.step2 .lineapply__step--period u {
    font-size: 1.25rem;
    text-decoration: none;
    position: relative;
  }
  .about .lineapply__step.step2 .lineapply__step--period u::after {
    content: "";
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, #1C1D1F 0%, #1C1D1F 27%, #F82F00 27%, #F82F00 100%);
  }
}
.about .lineapply__step.step2 .lineapply__step--period u br.xs {
  display: none;
}
@media (max-width: 360px) {
  .about .lineapply__step.step2 .lineapply__step--period u br.xs {
    display: block;
  }
  .about .lineapply__step.step2 .lineapply__step--period u::after {
    display: none;
  }
  .about .lineapply__step.step2 .lineapply__step--period u span.top {
    position: relative;
  }
  .about .lineapply__step.step2 .lineapply__step--period u span.top::after {
    content: "";
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, #1C1D1F 0%, #1C1D1F 40%, #F82F00 40%, #F82F00 100%);
  }
  .about .lineapply__step.step2 .lineapply__step--period u span.bottom {
    position: relative;
  }
  .about .lineapply__step.step2 .lineapply__step--period u span.bottom::after {
    content: "";
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #F82F00;
  }
}
@media (max-width: 768px) {
  .about .lineapply__step.step2 .lineapply__step--period {
    position: inherit;
  }
  .about .lineapply__step.step2 .lineapply__step--period span.red {
    color: #F82F00;
  }
  .about .lineapply__step.step2 .lineapply__step--period span.number {
    font-size: 1.5rem;
  }
}
@media (max-width: 413px) {
  .about .lineapply__step.step2 .lineapply__step--period span.number {
    font-size: 1.375rem;
  }
}
.about .lineapply__step.step3 {
  position: relative;
}
@media (max-width: 768px) {
  .about .lineapply__step.step3 {
    padding-bottom: 0;
  }
}
@media (max-width: 768px) {
  .about .lineapply__step.step3 .lineapply__step--img {
    padding: 0 2rem;
    margin-top: 1.875rem;
  }
}
.about .lineapply__step.step3 .note {
  position: absolute;
  left: 0;
  top: 120px;
  left: 0;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .about .lineapply__step.step3 .note {
    position: inherit;
    margin-top: 1.25rem;
  }
}
.about .cardapply {
  padding-bottom: 3.125rem;
}
.about .cardapply--lead {
  margin-top: 1.25rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .about .cardapply--lead {
    font-weight: 500;
  }
}
.about .cardapply b {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .about .cardapply b {
    font-size: 1.125rem;
  }
  .about .cardapply b span.red {
    color: #F82F00;
  }
}
.about .cardapply--choice {
  margin: 1.25rem 0;
}
@media (max-width: 768px) {
  .about .cardapply--choice b {
    font-weight: 500;
    font-size: 1rem;
  }
}
.about .cardapply .note {
  margin: 0.875rem 0;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .about .cardapply .note li {
    color: #4D0F00;
  }
}
.about .cardapply--pdf {
  margin: 1.875rem auto 0;
  padding: 1.5rem 1rem;
  display: block;
  max-width: 600px;
  border-radius: 1rem;
  background-color: #0063B4;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
}
@media (max-width: 768px) {
  .about .cardapply--pdf {
    margin-top: 2.5rem;
    padding: 0.5rem;
    font-size: 1.125rem;
    font-weight: bold;
  }
  .about .cardapply--pdf span {
    font-size: 0.875rem;
  }
}
.about .announce .section__subTitle span.red {
  color: #F82F00;
}
.about .announce__row {
  display: flex;
}
@media (max-width: 768px) {
  .about .announce__row {
    flex-direction: column;
  }
}
.about .announce .announce__box {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
  padding: 2.3125rem 1.25rem 1rem;
  width: 50%;
  position: relative;
  border: 3px solid #06C755;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  .about .announce .announce__box {
    width: 100%;
    display: block;
    padding: 0;
    border: none;
  }
}
.about .announce .announce__box--card {
  border-color: #0063B4;
  margin-left: 3.75rem;
}
@media (max-width: 768px) {
  .about .announce .announce__box--card {
    margin-left: 0;
  }
}
.about .announce .announce__box--card .announce__box--title {
  color: #0063B4;
  border-color: #0063B4;
}
@media (max-width: 768px) {
  .about .announce .announce__box--card .announce__box--title::before, .about .announce .announce__box--card .announce__box--title::after {
    background-color: #0063B4;
  }
}
.about .announce .announce__box--title {
  display: inline-block;
  padding: 0.125rem 1.5rem;
  position: absolute;
  top: 0;
  transform: translate(0, -50%);
  background-color: #fff;
  border: 3px solid #06C755;
  border-radius: 50px;
  font-size: 1.25rem;
  color: #06C755;
}
@media (max-width: 768px) {
  .about .announce .announce__box--title {
    position: inherit;
    border: none;
    padding: 0;
    transform: translate(0, 0);
    display: flex;
    align-items: center;
    text-align: center;
  }
  .about .announce .announce__box--title::before, .about .announce .announce__box--title::after {
    content: "";
    height: 3px;
    flex-grow: 1;
    background-color: #06C755;
  }
  .about .announce .announce__box--title::before {
    margin-right: 0.5rem;
  }
  .about .announce .announce__box--title::after {
    margin-left: 0.5rem;
  }
}
.about .announce .note {
  font-weight: 500;
}
@media (max-width: 768px) {
  .about .announce .note {
    margin-top: 1.25rem;
  }
}
.about .announce .note.gray {
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .about .announce .note.gray {
    padding: 1rem;
    border-radius: 1rem;
    background-color: #EFEFEF;
  }
}

.cardapply__table,
.ryosyusyo__table {
  font-weight: bold;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .cardapply__table,
.ryosyusyo__table {
    font-size: 1.125rem;
    line-height: 1.5;
  }
  .cardapply__table tr,
.ryosyusyo__table tr {
    vertical-align: baseline !important;
  }
  .cardapply__table th,
.ryosyusyo__table th {
    display: block;
    margin-top: 1.25rem;
  }
  .cardapply__table td,
.ryosyusyo__table td {
    display: inline;
  }
}
.cardapply__table .red,
.ryosyusyo__table .red {
  color: #F82F00;
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .cardapply__table .red th,
.ryosyusyo__table .red th {
    font-size: 1.125rem;
    display: inline-block;
  }
  .cardapply__table .red td,
.ryosyusyo__table .red td {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .cardapply__table .red td span,
.ryosyusyo__table .red td span {
    font-size: 1.125rem;
    color: #1C1D1F;
  }
}
@media (max-width: 375px) {
  .cardapply__table .red td,
.ryosyusyo__table .red td {
    font-size: 1.375rem;
  }
}
.cardapply__table tr,
.ryosyusyo__table tr {
  vertical-align: top;
  text-align: left;
}
.cardapply__table th,
.ryosyusyo__table th {
  min-width: 6.25rem;
}
@media (max-width: 768px) {
  .cardapply__table th,
.ryosyusyo__table th {
    min-width: 5em;
  }
}

/* レシート以外の領収書をお持ちの方
=================================== */
.ryosyusyo__lead {
  margin-top: 1.25rem;
  font-weight: 500;
}
.ryosyusyo__list {
  padding: 2rem 3.375rem;
  position: relative;
  font-weight: 500;
}
@media (max-width: 768px) {
  .ryosyusyo__list {
    padding: 1.5rem 0 2.1875rem;
  }
}
.ryosyusyo__list::before {
  content: "";
  display: block;
  position: absolute;
  width: 75px;
  height: 50px;
  background-image: url(../images/ryosyusyo_good.png);
  background-size: contain;
  background-repeat: no-repeat;
  left: -18px;
  top: 5px;
}
@media (max-width: 768px) {
  .ryosyusyo__list::before {
    display: none;
  }
}
.ryosyusyo__list__item h4 {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .ryosyusyo__list__item h4 {
    font-size: 1rem;
  }
}
.ryosyusyo__list__item p {
  padding-left: 1.25rem;
}
@media (max-width: 768px) {
  .ryosyusyo__list__item p {
    padding-left: 0;
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .ryosyusyo__list__item:first-child h4 {
    position: relative;
    display: inline-block;
  }
  .ryosyusyo__list__item:first-child h4::before {
    content: "";
    display: block;
    position: absolute;
    width: 75px;
    height: 50px;
    background-image: url(../images/ryosyusyo_good.png);
    background-size: contain;
    background-repeat: no-repeat;
    right: -80px;
    top: -25px;
  }
}
.ryosyusyo__list__item:last-child {
  margin-top: 1.25rem;
}
.ryosyusyo__write {
  margin-bottom: 1.25rem;
}
.ryosyusyo__write h5 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .ryosyusyo__write h5 {
    font-size: 1.125rem;
  }
}
@media (max-width: 768px) {
  .ryosyusyo__write h5 .red {
    color: #F82F00;
  }
}
.ryosyusyo__write ul li {
  line-height: 1.7;
  font-size: 0.875rem;
}
.ryosyusyo .row {
  position: relative;
}
.ryosyusyo .row &gt; *:not(.ryosyusyo__img) {
  width: calc(100% - 243px);
}
@media (max-width: 959px) {
  .ryosyusyo .row &gt; *:not(.ryosyusyo__img) {
    width: 100%;
  }
}
.ryosyusyo__img {
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 959px) {
  .ryosyusyo__img {
    position: static;
    transform: none;
    margin-bottom: 0.625rem;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .ryosyusyo__img img {
    max-width: 197px;
  }
}

/* レシート撮影のコツ
=================================== */
.receipt .okreceipt__title {
  display: flex;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .receipt .okreceipt__title {
    flex-direction: column;
  }
}
.receipt .okreceipt__title--text h3 {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .receipt .okreceipt__title--text h3 {
    font-size: 1.125rem;
  }
}
.receipt .okreceipt__title--img {
  margin-right: 1rem;
}
@media (max-width: 768px) {
  .receipt .okreceipt__title--img {
    margin: 0 auto;
    max-width: 50px;
  }
}
.receipt .okreceipt__title .p-note {
  margin-top: 0.5rem;
  font-size: 0.875rem;
}
.receipt .okreceipt__howto {
  display: flex;
}
@media (max-width: 768px) {
  .receipt .okreceipt__howto {
    flex-direction: column;
  }
}
.receipt .okreceipt__howto--img {
  margin-right: 2.125rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .receipt .okreceipt__howto--img {
    text-align: center;
    margin-right: 0;
  }
}
.receipt .okreceipt__howto--textArea .note {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1C1D1F;
}
@media (max-width: 768px) {
  .receipt .okreceipt__howto--textArea .note {
    font-size: 1rem;
    margin-top: 1.875rem;
  }
}
.receipt .okreceipt__howto--textArea .p-note {
  margin: 1.125rem 0;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .receipt .okreceipt__howto--textArea .p-note {
    margin: 0.625rem 0 1rem;
  }
}
.receipt .okreceipt__howto--textArea .gray {
  padding: 0.625rem 1rem;
  background-color: #EFEFEF;
  border-radius: 1rem;
  font-size: 0.875rem;
}
.receipt .okreceipt__block {
  display: flex;
  justify-content: space-between;
  margin-top: 2.25rem;
}
@media (max-width: 768px) {
  .receipt .okreceipt__block {
    flex-direction: column-reverse;
    margin-top: 2.5rem;
    position: relative;
  }
}
.receipt .okreceipt__block:last-of-type {
  margin-top: 1.625rem;
}
@media (max-width: 768px) {
  .receipt .okreceipt__block:last-of-type {
    margin-top: 2.5rem;
  }
  .receipt .okreceipt__block:last-of-type .okreceipt__block--img {
    padding-top: 4rem;
  }
}
.receipt .okreceipt__block--title {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .receipt .okreceipt__block--title {
    font-size: 1rem;
    position: absolute;
    top: 0;
  }
}
.receipt .okreceipt__block--title span {
  background: linear-gradient(transparent 60%, #D5EBFB 60%);
}
.receipt .okreceipt__block--img {
  flex-shrink: 0;
  margin-left: 1.875rem;
}
@media (max-width: 768px) {
  .receipt .okreceipt__block--img {
    margin-left: 0;
    text-align: center;
    padding-top: 3.125rem;
  }
}
.receipt .okreceipt__block--text {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .receipt .okreceipt__block--text {
    font-size: 1rem;
  }
}
.receipt .ngreceipt__title {
  display: flex;
  align-items: center;
  margin-bottom: 2.125rem;
}
@media (max-width: 768px) {
  .receipt .ngreceipt__title {
    flex-direction: column;
  }
}
.receipt .ngreceipt__title--img {
  margin-right: 1rem;
}
@media (max-width: 768px) {
  .receipt .ngreceipt__title--img {
    max-width: 50px;
    text-align: center;
  }
}
.receipt .ngreceipt__title--text {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .receipt .ngreceipt__title--text {
    font-size: 1.125rem;
    text-decoration: underline;
  }
}
.receipt .ngreceipt__img {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 768px) {
  .receipt .ngreceipt__img {
    gap: 1rem;
    align-items: center;
    justify-content: start;
  }
}
.receipt .ngreceipt__img--block + .ngreceipt__img--block {
  margin-left: 1rem;
}
@media (max-width: 768px) {
  .receipt .ngreceipt__img--block + .ngreceipt__img--block {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .receipt .ngreceipt__img--block {
    width: calc(33.3% - 1rem);
    text-align: center;
  }
}
@media (max-width: 425px) {
  .receipt .ngreceipt__img--block {
    width: calc(50% - 0.5rem);
  }
}
.receipt .ngreceipt__img--block p {
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
}

/* よくあるご質問
=================================== */
.faq__box {
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .faq__box {
    padding: 0 1.25rem;
  }
}
.faq__box dt.is-active:after {
  background-image: url(../images/close.png);
}
.faq__box dt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 3.375rem;
  font-weight: bold;
  font-size: 1.25rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .faq__box dt {
    padding: 0.625rem 0;
    font-size: 1rem;
  }
}
.faq__box dt span {
  flex-grow: 2;
}
.faq__box dt:before {
  content: "";
  width: 48px;
  height: 56px;
  margin-right: 1.25rem;
  display: inline-block;
  flex-shrink: 0;
  background-image: url(../images/question.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 768px) {
  .faq__box dt:before {
    margin-right: 1rem;
    width: 35px;
    height: 47px;
  }
}
.faq__box dt:after {
  content: "";
  width: 40px;
  height: 40px;
  display: inline-block;
  flex-shrink: 0;
  background-image: url(../images/open.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 768px) {
  .faq__box dt:after {
    width: 32px;
    height: 32px;
  }
}
.faq__box dd {
  display: none;
  font-weight: 500;
  border-top: 1px solid #E5E5E5;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .faq__box dd {
    font-size: 0.875rem;
  }
}
.faq__box dd .accordion-content {
  display: flex;
  padding: 1rem 3.375rem 1.875rem;
}
@media (max-width: 768px) {
  .faq__box dd .accordion-content {
    padding: 1rem 0 1.25rem;
  }
}
.faq__box dd .accordion-content:before {
  content: "";
  width: 48px;
  height: 56px;
  margin-right: 1.25rem;
  display: inline-block;
  flex-shrink: 0;
  background-image: url(../images/answer.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 768px) {
  .faq__box dd .accordion-content:before {
    margin-right: 1rem;
    width: 35px;
    height: 47px;
  }
}
.faq__box dd.align &gt; .accordion-content {
  align-items: center;
}
.faq__box dd a {
  color: #007ad3;
  text-decoration: underline;
}

/* 縦スクロールの設定
=================================== */
.scrollbox {
  overflow-y: scroll;
}
.scrollbox::-webkit-scrollbar {
  width: 7px;
}
.scrollbox::-webkit-scrollbar-track {
  background-color: #E3E3E3;
  border-radius: 50px;
}
.scrollbox::-webkit-scrollbar-thumb {
  background: #ACACAC;
  border-radius: 50px;
}

/* 注意事項 ご利用規約
=================================== */
@media (max-width: 768px) {
  .attention__box--titleArea h3 {
    text-align: center;
  }
}

.attention__box,
.terms__box {
  font-weight: 500;
}
@media (max-width: 768px) {
  .attention__box,
.terms__box {
    font-size: 0.875rem;
  }
}
.attention__box--titleArea,
.terms__box--titleArea {
  margin-bottom: 1.875rem;
  text-align: center;
}
@media (max-width: 768px) {
  .attention__box--titleArea,
.terms__box--titleArea {
    text-align: left;
  }
}
.attention__box--titleArea h3,
.attention__box--titleArea h4,
.terms__box--titleArea h3,
.terms__box--titleArea h4 {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .attention__box--titleArea h3,
.attention__box--titleArea h4,
.terms__box--titleArea h3,
.terms__box--titleArea h4 {
    font-size: 1.125rem;
  }
}
.attention__box--titleArea h4,
.terms__box--titleArea h4 {
  margin: 1em 0;
}
@media (max-width: 768px) {
  .attention__box--titleArea h4 span,
.terms__box--titleArea h4 span {
    display: inline-block;
    margin-left: 3.4em;
  }
}
.attention__box--titleArea table,
.terms__box--titleArea table {
  margin: 0 auto;
  text-align: left;
  font-weight: bold;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .attention__box--titleArea table,
.terms__box--titleArea table {
    margin: 0;
  }
  .attention__box--titleArea table tr,
.terms__box--titleArea table tr {
    display: flex;
    flex-direction: column;
  }
  .attention__box--titleArea table tr td,
.terms__box--titleArea table tr td {
    margin-left: 1em;
  }
  .attention__box--titleArea table tr:first-of-type,
.terms__box--titleArea table tr:first-of-type {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .attention__box--titleArea p,
.terms__box--titleArea p {
    font-size: 1rem;
  }
  .attention__box--titleArea p:first-of-type,
.terms__box--titleArea p:first-of-type {
    margin-bottom: 1rem;
  }
}
.attention__box .fw-regular,
.terms__box .fw-regular {
  font-weight: normal;
}
.attention__box .br,
.terms__box .br {
  margin-bottom: 1.5rem;
}
.attention__box .contentWrap,
.terms__box .contentWrap {
  max-height: 360px;
}
@media (max-width: 768px) {
  .attention__box .contentWrap,
.terms__box .contentWrap {
    max-height: 300px;
  }
}
.attention__box .contentWrap[data-height="215"],
.terms__box .contentWrap[data-height="215"] {
  max-height: 215px;
}
@media (max-width: 768px) {
  .attention__box .contentWrap[data-height="215"],
.terms__box .contentWrap[data-height="215"] {
    max-height: 300px;
  }
}
.attention .terms__box--title,
.terms .terms__box--title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1.875rem;
}
@media (max-width: 768px) {
  .attention .terms__box--title,
.terms .terms__box--title {
    font-size: 1.125rem;
  }
}
.attention a,
.terms a {
  word-wrap: break-word;
}

/* お問い合わせ
=================================== */
.contact .container {
  padding-bottom: 9.375rem;
}
@media (max-width: 768px) {
  .contact .container {
    padding-bottom: 8.75rem;
  }
}
.contact__box--title {
  margin-bottom: 1.875rem;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .contact__box--title {
    text-align: center;
    font-size: 1.125rem;
  }
}
.contact__box h4 {
  font-size: 1rem;
  margin-bottom: 0.625rem;
}
@media (max-width: 768px) {
  .contact__box h4 {
    font-size: 0.875rem;
    margin-bottom: 0;
    font-weight: 500;
  }
}
.contact__box p {
  font-weight: 500;
}
@media (max-width: 768px) {
  .contact__box p {
    font-size: 0.875rem;
  }
}
.contact__box--line {
  margin-bottom: 1.875rem;
}
@media (max-width: 768px) {
  .contact__box--line {
    margin-bottom: 2.5rem;
  }
}
.contact__box--line .img {
  margin-top: 1.875rem;
  text-align: center;
}

/* フッター
=================================== */
.footer {
  padding: 2.625rem 1rem 1.625rem;
  background-color: #1C1D1F;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 768px) {
  .footer {
    padding: 3.125rem 1rem 2.625rem;
  }
}
.footer h3 {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .footer h3 {
    font-size: 0.875rem;
  }
}
.footer ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.3125rem 0;
}
@media (max-width: 768px) {
  .footer ul {
    margin: 1.25rem 0 3.25rem;
  }
}
.footer ul li + li {
  margin-left: 2.1875rem;
}
@media (max-width: 768px) {
  .footer ul li {
    max-width: 42px;
  }
}
.footer small {
  font-weight: 0.875rem;
}
@media (max-width: 768px) {
  .footer small {
    font-size: 0.75rem;
  }
}/*# sourceMappingURL=style.css.map */</pre></body></html>