<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
body {
  font-size: 1.6rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-style: normal;
  text-size-adjust: 100%;
  font-feature-settings: "palt";
}
img {
  max-width: 100%;
  height: auto;
}
#container {
  overflow-x: hidden;
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 4.27vw;
  }
  .pc {
    display: none !important;
  }
}
@media only screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

/*====================================================================
 * フォント
====================================================================*/
.font-bold {
  font-weight: 700;
}
.font-black {
  font-weight: 900;
}

/*====================================================================
 * パーツ
====================================================================*/
.inner {
  position: relative;
  margin: 0 auto;
  padding: 35px 50px;
  width: 900px;
  max-width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-radius: 20px;
  box-sizing: border-box;
}
.inner + .inner {
  margin-top: 60px;
}
.title_section {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 162px;
}
/* ボタン */
.button_apply {
  position: relative;
  margin: 0 auto 50px;
  max-width: 539px;
}
.button_apply a {
  display: block;
}
.button_apply img {
  transition: .4s ease;
}
.button_apply img.on {
  opacity: 0;
}
.button_apply img.off {
  position: absolute;
  top: 0;
  left: 0;
}
.button_apply a:hover img.on {
  opacity: 1;
}
.button_apply a:hover img.off {
  opacity: 0;
}
/* アコーディオン */
.accordionIcon {
  position: absolute;
  top: 16px;
  right: 22px;
  display: inline-block;
  width: 16px;
  height: 16px;
  transition-duration: 0.3s;
}
.accordionIcon:before,
.accordionIcon:after {
  content: '';
  position: absolute;
  background-color: #fff;
}
.accordionIcon:before {
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
}
.accordionIcon:after {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
}
.accordionHeader.open .accordionIcon:before,
.faqQ.open .accordionIcon:before {
  animation-name: accordionIcon;
  animation-duration: .6s;
  animation-fill-mode: forwards;
}
@keyframes accordionIcon {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.accordion .accordionHeader {
  position: relative;
  margin-top: 34px;
  padding: 16px 0;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  background-color: #1D67BF;
  transition-duration: 2s;
  z-index: 1;
}
.accordion .accordionBody {
  display: none;
}
@media only screen and (max-width: 768px) {
  .accordion .accordionHeader {
    margin-top: 4vw;
    padding: 4.27vw 0;
    font-size: 4.8vw;
  }
}
/* マーカー */
.marker {
  background: -webkit-linear-gradient(left, rgb(255,233,50) 50%, transparent 50%);
  background: linear-gradient(left, rgb(255,233,50) 50%, transparent 50%);
  background-repeat: no-repeat;
  background-size: 200% .4em; 
  background-position: 100% 1em;
  transition: 1s;
}
.marker.active {
  background-position: 0% 1em;
}
.transition-delay-500 {
  transition-delay: 500ms;
}
.transition-delay-1000 {
  transition-delay: 1000ms;
}
.transition-delay-1500 {
  transition-delay: 1500ms;
}
.transition-delay-2000 {
  transition-delay: 2000ms;
}
.transition-delay-2500 {
  transition-delay: 2500ms;
}
.transition-delay-3000 {
  transition-delay: 3000ms;
}
.transition-delay-3500 {
  transition-delay: 3500ms;
}
.transition-delay-4000 {
  transition-delay: 4000ms;
}
/* アニメーション */
.fuwafuwa {
  animation-name: fuwafuwa;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@keyframes fuwafuwa {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
.yurayura {
  animation-name: yurayura;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}
@keyframes yurayura {
  0%,
  100% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(5deg);
  }
}
.yurayura-s {
  animation-name: yurayura-s;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}
@keyframes yurayura-s {
  0%,
  100% {
    transform: rotate(-1deg);
  }
  50% {
    transform: rotate(2deg);
  }
}
.animation-delay-500 {
  animation-delay: 500ms;
}

/*====================================================================
 * ヘッダー
====================================================================*/
header{
	width: 100%;
    box-shadow: 1px 0px 20px 0 rgba(0, 0, 0, .2);
	position: fixed;
	top: 0;
	background: #FFF;
	z-index: 999;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}
header .logo{
	width: 120px;
	margin: 20px;
}
.menu{
	margin:20px 0px auto auto;
}
.menu ul{
    display: -webkit-flex;
    display: flex;
	margin: 10px;
}
.menu ul li{
	margin-right:30px;
	letter-spacing: 2px;
}
.menu ul li a{
	text-decoration: none;
	color: #333;
	  padding-bottom: 5px;
	  position: relative;
}
.menu ul li a::before {
  background: #D3003B;
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.menu ul li a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.btn_apply{
	width: 170px;
	margin:3px 10px auto 0;
}
/*====================================================================
 * MV
====================================================================*/
.mv{
  width: 100%;
  margin-top:80px;
}
/*====================================================================
 * 背景
====================================================================*/
.bg_01 {
  background-image: url("../../img/front/bg_01.png");
  background-size: 100%;
  padding: 30px 0 60px;
}
.bg_02 {
  background-image: url("../../img/front/bg_02.png");
  background-size: 100%;
  padding: 90px 0;
}
.bg_03 {
  background-image: url("../../img/front/bg_03.png");
  background-size: 100%;
  padding: 90px 0;
}

/*====================================================================
 * イントロダクション
====================================================================*/
#introduction .title_introduction {
  display: flex;
  width: 750px;
  margin: 0 auto;
}
#introduction .title_introduction .title_introduction_01 {
  width: 48.666%;
}
#introduction .title_introduction .title_introduction_02 {
  width: 51.333%;
}
#introduction .img_introduction {
  display: block;
  width: 750px;
  margin: 20px auto 0;
}

/*====================================================================
 * ハイライト
====================================================================*/
#highlights {
  margin-top: 70px;
}
#highlights .nav_highlights {
  display: flex;
  justify-content: center;
  gap: 65px;
  width: 740px;
  margin: 0 auto 50px;
}
#highlights .nav_highlights li {
  position: relative;
  width: 336px;
}
#highlights .nav_highlights li .img_btn {
  position: absolute;
  top: -58%;
  width: 40.47619%;
}
#highlights .nav_highlights li a {
  display: block;
}
#highlights .nav_highlights li a .img_btn.pc {
  transition: all .3s;
}
#highlights .nav_highlights li a:hover .img_btn.pc {
  transform: scale(1.05) translateY(-5px);
  filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.2));
}
#highlights .nav_highlights li.btn_prize .img_btn {
  left: -3%;
}
#highlights .nav_highlights li.btn_pioneer .img_btn {
  left: 4%;
}
#highlights .box {
  width: 820px;
  max-width: calc(100% - 20px);
  background-color: #fff;
  margin: 0 auto;
  padding: 50px 0 100px;
  border-radius: 20px;
  box-shadow: 1px 0px 20px 0 rgba(0, 0, 0, .2);
}
#highlights #prize {
  padding-bottom: 150px;
}
#highlights .title_highlights {
  width: 314px;
  margin: 0 auto;
}
#highlights .copy {
  margin: 0 auto;
}
#highlights #prize .copy {
  width: 560px;
}
#highlights #pioneer .copy {
  width: 700px;
}
#highlights .copy .column {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 30px;
}
#highlights #pioneer .copy .column {
  flex-direction: row;
  gap: 0;
}
#highlights .copy .row {
  display: flex;
}
#highlights #prize .copy .row {
  margin-left: -30px;
}
#highlights .copy .copy_prize_01 {
  display: block;
  width: 314px;
  margin: 0 auto;
}
#highlights .copy .copy_prize_02 {
  width: 200px;
}
#highlights .copy .copy_prize_03 {
  width: 360px;
}
#highlights .copy .copy_pioneer_01 {
  width: 330px;
}
#highlights .copy .copy_pioneer_02 {
  width: 200px;
}
#highlights .copy .copy_pioneer_03 {
  width: 170px;
}
#highlights .bag_main .image {
  position: relative;
  width: 640px;
  margin: 15px auto 0;
}
#highlights .bag_main .image .balloon_bag {
  position: absolute;
  top: -50px;
  right: -30px;
  width: 130px;
}
#highlights .bag_main .text {
  width: 610px;
  font-size: 1.9rem;
  line-height: 1.6;
  letter-spacing: .1em;
  text-align: justify;
  margin: 1em auto 0;
}
#highlights .bag_type {
  position: relative;
  display: flex;
  gap: 30px;
  width: 650px;
  margin: 70px auto 0;
}
#highlights .bag_type img {
  width: 310px;
}
#highlights .bag_type .img_decoration_01 {
  position: absolute;
  left: -42px;
  bottom: 106px;
  width: 70px;
}
#highlights .feature {
  background-image: url("../../img/front/bg_feature_top@2x.png"), url("../../img/front/bg_feature_bottom@2x.png");
  background-size: 100%, 100%;
  background-repeat: no-repeat, no-repeat;
  background-position: left top, left bottom;
  background-color: #FFFAEC;
  margin-top: 90px;
  padding: 105px 0 50px;
}
#highlights .feature .list_feature {
  width: 820px;
  max-width: 100%;
}
#highlights .feature .list_feature li {
  position: relative;
}
#highlights .feature .list_feature img {
  position: absolute;
  top: 0;
  left: 0;
}
#highlights .feature .list_feature .img_feature_01_00,
#highlights .feature .list_feature .img_feature_02_00,
#highlights .feature .list_feature .img_feature_03_00 {
  z-index: 0;
}
#highlights .feature .list_feature .img_feature_01_01,
#highlights .feature .list_feature .img_feature_02_01,
#highlights .feature .list_feature .img_feature_03_01,
#highlights .feature .list_feature .img_feature_04_01 {
  position: relative;
}
#highlights .leisure {
  position: relative;
  margin-top: 65px;
}
#highlights .leisure .img_decoration_02 {
  position: absolute;
  top: -138px;
  left: 104px;
  width: 12.68292%;
  z-index: 1;
}
#highlights .leisure .list_leisure li {
  position: relative;
}
#highlights .leisure .list_leisure img {
  position: absolute;
  top: 0;
  left: 0;
}
#highlights .leisure .list_leisure .img_leisure_01_00 {
  z-index: 0;
}
#highlights .leisure .list_leisure .img_leisure_01_01 {
  position: relative;
}
#highlights .point .list_point {
  width: 670px;
  margin: 70px auto 0;
}
#highlights .point .list_point li {
  position: relative;
}
#highlights .point .list_point li + li {
  margin-top: 90px;
}
#highlights .point .list_point li .img_decoration_03 {
  position: absolute;
  top: 0;
  right: 40px;
  width: 46px;
}
#highlights .point .list_point li .img_decoration_01 {
  position: absolute;
  bottom: -150px;
  right: 40px;
  width: 70px;
}
#highlights .point h3 {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
#highlights .point h3 img {
  width: 140px;
  margin: 0 25px 0 15px;
}
#highlights .point h3 span {
  flex: 1;
  font-size: 3.0rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .1em;
  color: #C23C1E;
}
#highlights .point .flex {
  display: flex;
  gap: 20px;
}
#highlights .point .flex .image {
  position: relative;
  width: 360px;
}
#highlights .point .flex .image img {
  border-radius: 20px;
}
#highlights .point .flex .image .img_point_02_01 {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 130px;
}
#highlights .point .flex .text {
  flex: 1;
  font-size: 1.8rem;
  line-height: 1.7;
  text-align: justify;
}
#highlights .point .flex .text a {
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  color: #174287;
  border-bottom: solid 2px #fff;
  transition: all .3s;
}
#highlights .point .flex .text a:hover {
  border-bottom: solid 2px #174287;
}
#highlights .slider {
  width: 750px;
  margin: 50px auto 0;
}
.slick-track {
  display: flex;
}
.slick-slide {
  height: auto !important;
}
.slick-prev,
.slick-next {
  width: 38px;
  height: 38px;
  z-index: 1;
}
.slick-prev {
  left: 0;
  transform: translateX(-50%);
}
.slick-next {
  right: 0;
  transform: translateX(50%);
}
.slick-prev:before,
.slick-next:before {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  background-size: 100%;
  opacity: 1;
}
.slick-prev:before {
  background-image: url("../../img/front/btn_prev.svg");
}
.slick-next:before {
  background-image: url("../../img/front/btn_next.svg");
}
.slick-dots {
  bottom: -35px;
}
.slick-dots li button:before {
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border: solid 2px #C23C1E;
  box-sizing: border-box;
  border-radius: 50%;
  opacity: 1;
}
.slick-dots li.slick-active button:before {
  background-color: #C23C1E;
  opacity: 1;
}
.slick-dotted.slick-slider {
  margin-bottom: 50px;
}
#highlights .slider .box_slider {
  position: relative;
  width: 750px;
  height: 100%;
  background-color: #FFFAEC;
  padding: 40px;
  border-radius: 30px;
  box-sizing: border-box;
}
#highlights .slider h3 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: #174287;
  margin-bottom: 40px;
}
#highlights .slider .flex {
  display: flex;
  gap: 30px;
}
#highlights .slider .flex .image {
  width: 235px;
}
#highlights .slider .flex .image img {
  display: block;
  width: 220px;
  margin: 0 auto;
}
#highlights .slider .flex .btn_website {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  background-color: #C23C1E;
  margin-top: 20px;
  border-radius: 20px;
  transition: all .3s;
}
#highlights .slider .flex .btn_website:hover {
  transform: scale(1.02) translateY(-3px);
  filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.2));
}
#highlights .slider .flex .btn_website img {
  width: 120px;
}
#highlights .slider .flex .text {
  position: relative;
  flex: 1;
}
#highlights .slider .flex .text h4 span {
  display: inline;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: .1em;
	padding: .1em .4em .2em;
  color: #fff;
	background-color: #174287;
  box-decoration-break: clone;	
	-webkit-box-decoration-break: clone;
}
#highlights .slider .flex .text .list_merit {
  font-size: 1.7rem;
  line-height: 1.4;
  letter-spacing: .08em;
  text-align: justify;
  margin-top: 20px;
}
#highlights .slider .flex .text .list_merit li {
  position: relative;
  padding-left: 1.2em;
}
#highlights .slider .flex .text .list_merit li + li {
  margin-top: .5em;
}
#highlights .slider .flex .text .list_merit li::before {
  content: "";
  position: absolute;
  top: .4em;
  left: 0;
  width: .6em;
  height: .6em;
  background-color: #FEE000;
}
#highlights .slider .flex .text .list_merit li sup {
  font-size: .5em;
  vertical-align: super;
}
#highlights .slider .flex .text .list_icon {
  display: flex;
  gap: 10px;
  margin: 14px 0 10px;
}
#highlights .slider .flex .text .list_icon img,
#highlights .slider .icon_slider_01 {
  width: 80px;
}
#highlights .slider .slider_01 .icon_slider_01 {
  position: absolute;
  right: 40px;
  bottom: 40px;
}
#highlights .slider .flex .text .list_note {
  font-size: 1.4rem;
  line-height: 1.5;
}
#highlights .slider .slider_01 .flex .text .list_note {
  position: absolute;
  left: 0;
  bottom: 0;
}
#highlights .slider .flex .text .list_note li {
  position: relative;
  padding-left: 1em;
}
#highlights .slider .flex .text .list_note li::before {
  content: "＊";
  position: absolute;
  top: 0;
  left: 0;
}
#highlights .useful {
  margin-top: 95px;
}
#highlights .useful h3 {
  margin-bottom: 50px;
}
#highlights .useful h3 img {
  display: block;
  width: 484px;
  margin: 0 auto;
}
#highlights .useful .list_useful {
  display: flex;
  gap: 30px;
  width: 780px;
  margin: 0 auto;
}
#highlights .useful .list_useful li {
  position: relative;
  width: 240px;
}
#highlights .useful .list_useful h4 {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 148px;
}
#highlights .useful .list_useful .img_useful {
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
}
#highlights .useful .list_useful .text p {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.5;
  margin-top: .5em;
}
#highlights .arrange {
  width: 730px;
  margin: 80px auto 0;
}
#highlights .arrange .flex {
  display: flex;
  gap: 20px;
  background-image: url("../../img/front/bg_arrange_pc@2x.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: left bottom;
  padding: 30px 40px 50px;
}
#highlights .arrange .flex .image {
  width: 340px;
}
#highlights .arrange .flex .text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
#highlights .arrange .flex .text p {
  font-size: 1.9rem;
  line-height: 1.6;
  letter-spacing: .05em;
  text-align: justify;
}
#highlights .arrange .flex .text .nav_arrange li + li {
  margin-top: 8px;
}
#highlights .arrange .flex .text .nav_arrange li a {
  transition: .3s;
}
#highlights .arrange .flex .text .nav_arrange li a:hover {
  opacity: .7;
}
#highlights .waiting {
  margin-top: 70px;
}
#highlights .waiting .list_waiting li {
  position: relative;
}
#highlights .waiting .list_waiting img {
  position: absolute;
  top: 0;
  left: 0;
}
#highlights .waiting .list_waiting .img_waiting_01_00 {
  z-index: 0;
}
#highlights .waiting .list_waiting .img_waiting_01_01 {
  position: relative;
}
#highlights .message {
  position: relative;
  width: 740px;
  border-image: url("../../img/front/bg_message.png") round;
  border-image-repeat: round;
  border-image-slice: 20 fill;
  border-image-width: 20px;
  margin: 100px auto 0;
  padding: 40px 0;
  box-sizing: border-box;
}
#highlights .message h3 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 154px;
}
#highlights .message .copy {
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: .1em;
}
#highlights .message .flex {
  display: flex;
  margin-top: 40px;
}
#highlights .message .flex p {
  width: 363px;
  font-size: 1.8rem;
  line-height: 1.7;
  letter-spacing: .07em;
  text-align: justify;
  margin: 0 23px 0 35px;
}
#highlights .message .flex .profile {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  background-image: url("../../img/front/line_message_vertical.svg");
  background-repeat: repeat-y;
  background-size: 5px;
  background-position: left top;
  padding: 0 25px 0 24px;
}
#highlights .message .flex .profile .image img {
  display: block;
  width: 160px;
  margin: 0 auto;
}
#highlights .message .flex .profile .text {
  font-size: 1.4rem;
  line-height: 1.7;
  letter-spacing: .05em;
  text-align: justify;
}

/*====================================================================
 * 応募方法
====================================================================*/
#flow {
  position: relative;
  box-shadow: 1px 0px 20px 0 rgba(0, 0, 0, .2);
}
#flow .title {
  margin: 0 auto 20px;
  max-width: 204px;
}
#flow .flowDescription {
  margin-bottom: 40px;
  line-height: 1.7;
  text-align: center;
  font-size: 1.7rem;
}
#flow .flowDescription .blue {
  color: #1D67BF;
}
#flow .flowDescription .small {
  font-size: 1.4rem;
}
#flow .flowList {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 40px;
  max-width: 660px;
}
#flow .flowImg {
  width: 194px;
  margin-bottom: 16px;
}
#flow .imgFlow1 {
  max-width: 203px;
}
#flow .imgFlow2 {
  max-width: 194px;
}
#flow .imgFlow3 {
  max-width: 195px;
}
#flow .imgFlow3 .flowText {
  letter-spacing: -0.005em;
}
#flow .flowText {
  text-align: center;
  line-height: 1.3;
}
/* レシート撮影時の注意事項 */
#flow .l-flowNote {
  margin-bottom: 30px;
  padding: 24px 30px;
  border: 3px solid #1D67BF;
}
#flow .flowNoteTitle {
  margin-bottom: 54px;
  font-size: 2.7rem;
  text-align: center;
  color: #1D67BF;
}
#flow .flowNote1 {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
#flow .imgReceipt {
  margin-right: 28px;
  max-width: 182px;
}
#flow .textReceiptTitle {
  margin-bottom: 20px;
  font-size: 2.1rem;
  line-height: 1;
}
#flow .textReceiptAbout {
  margin-bottom: 20px;
  line-height: 1.7;
}
#flow .textReceiptAbout span {
  color: #C33C1E;
}
#flow .textReceiptStep {
  color: #C33C1E;
  font-size: 2.0rem;
}
#flow .textReceiptStep .step {
  display: flex;
}
#flow .textReceiptStep .step + .step {
  margin-top: 8px;
}
#flow .textReceiptStep .step::before {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  width: 24px;
  height: 24px;
  color: #ffffff;
  border-radius: 50%;
  background-color: #C33C1E;
}
#flow .textReceiptStep .step1::before {
  content: "1";
}
#flow .textReceiptStep .step2::before {
  content: "2";
}
#flow .textReceiptStep .step3::before {
  content: "3";
}
#flow .textReceiptStep .step4::before {
  content: "4";
}
#flow .flowNote2 {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
  padding: 20px 20px 20px 60px;
  background-color: #eaf1f4;
}
#flow .flowNote2 p {
  font-size: 1.3rem;
  line-height: 1.7;
}
#flow .imgReceiptSample {
  margin-bottom: 10px;
}
#flow .flowNote2-NG {
  max-width: 270px;
}
#flow .flowNote2-OK {
  max-width: 270px;
}
#flow .flowNote3 {
  display: flex;
  justify-content: center;
}
#flow .receiptCard {
  margin: 24px 70px 0 0;
  max-width: 400px;
}
#flow .receiptCardTitle {
  margin-bottom: 26px;
  font-size: 2.1rem;
}
#flow .receiptCardText {
  line-height: 1.7;
  text-align: justify;
}
#flow .imgReceiptCard {
  max-width: 132px;
}
/* 利用規約 */
.terms {
  margin-top: 30px;
  padding: 24px 30px;
  max-height: 300px;
  overflow: scroll;
  line-height: 1.7;
  border: 3px solid #999999;
}
.terms p {
  margin: 1em 0;
}
.terms p:first-of-type {
  margin: 0 0 1em;
}
.terms ol {
  margin-left: 1.5em;
  list-style-type: decimal;
}
/* 個人情報の取扱について */
.privacyModal {
  position: fixed;
  box-sizing: border-box;
  width: calc(100vw - 32px);
  max-width: 640px;
  max-height: calc(100vw - 32px);
  padding: 30px 20px 20px;
  border: 0;
  opacity: 0;
  transform: scale(.9);
  transition: opacity .3s, transform .3s;
  overflow: auto;
}
.privacyModal.-opening {
  opacity: 1;
  transform: scale(1);
}
.privacyModal::backdrop,
.privacyModal + .backdrop {
  opacity: 0;
  transition: opacity .3s;
}
.privacyModal.-opening::backdrop,
.privacyModal.-opening + .backdrop {
  opacity: .8;
}
.privacyModalTitle {
  margin-bottom: 1em;
  font-size: 2.0rem;
  text-align: center;
}
.privacyModalText {
  line-height: 1.7;
}
.privacyModalText + .privacyModalText {
  margin-top: 1em;
}
.privacyModalText .privacyLink {
  display: block;
  text-align: center;
  color: #000000;
}
.privacyButton {
  display: block;
  margin: 1em auto 0;
  font-size: 2.0rem;
  text-align: center;
  text-decoration: underline;
  cursor: pointer;
  border: none;
  background: none;
}
.privacyModal .privacyButton {
  margin: 0.5em 0 0 auto;
  font-size: 1.6rem;
}

/*====================================================================
 * 対象商品
====================================================================*/
#target {
  margin-bottom: 30px;
  box-shadow: 1px 0px 20px 0 rgba(0, 0, 0, .2);
}
#target .title {
  margin: 0 auto 14px;
  max-width: 204px;
}
#target .targetList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 800px;
  justify-content: flex-start;
}
#target .targetItem {
  margin-bottom: 16px;
  max-width: 200px;
}
#target .targetItem img {
  margin-bottom: 10px;
}
#target .targetName {
  text-align: center;
  line-height: 1.3;
}
#target .itemText {
	border: solid 2px #1D67BF;
	padding: 20px;
	margin-top: 30px;
}
#target .itemText h3 {
	font-size: 1.8rem;
  font-weight: 500;
	color: #1D67BF;
	margin-bottom: 20px;
	text-align: center;
}
#target .itemText p {
	line-height: 1.7;
  letter-spacing: .1em;
  text-align: justify;
}

/*====================================================================
 * 応募要項
====================================================================*/
#about {
  margin-top: 28px;
  box-shadow: 1px 0px 20px 0 rgba(0, 0, 0, .2);
}
#about .title {
  margin: 0 auto 40px;
  max-width: 204px;
}
#about .aboutItem {
  padding-bottom: 20px;
}
#about .aboutItem + .aboutItem,
#about .accordionBody .aboutItem:first-of-type {
  padding-top: 20px;
  border-top: 1px solid #1D67BF;
}
#about .aboutTitle {
  margin-bottom: 16px;
  font-size: 2.2rem;
  color: #1D67BF;
  text-align: center;
}
#about .aboutText {
  text-align: center;
  line-height: 1.7;
}
#about .aboutPeriod {
  font-size: 2.2rem;
  letter-spacing: 0.05em;
}

/*====================================================================
 * よくある質問
====================================================================*/
#faq {
	margin-top:60px;
  box-shadow: 1px 0px 20px 0 rgba(0, 0, 0, .2);
}
#faq .title {
  margin: 0 auto;
  max-width: 205px;
}
#faq .subTitle {
  margin: 30px auto 20px;
  padding: 6px 0 8px;
  color: #1D67BF;
  font-size: 2.2rem;
  text-align: center;
  border: 2px #1D67BF solid;
}
#faq .faqItem {
  border-bottom: 1px solid #1D67BF;
  transition-duration: .3s;
}
#faq .faqQ {
  position: relative;
  padding: 12px 30px 12px 52px;
  color: #1D67BF;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1.5;
  text-align: justify;
}
#faq .faqQ::before {
  content: "Q";
  display: inline-block;
  margin: 0 20px 0 -52px;
  color: #ffffff;
  text-align: center;
  font-size: 2.0rem;
  width: 32px;
  height: 32px;
  background-color: #1D67BF;
  border-radius: 50%;
}
#faq .faqQ::after {
  content: "";
  display: inline-block;
}
#faq .faqA {
  margin: 0 20px 0 52px;
  padding: 0 0 1em;
  line-height: 1.7;
  text-align: justify;
}
#faq .accordionIcon {
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
}
#faq .accordionIcon:before,
#faq .accordionIcon:after {
  background-color: #1D67BF;
}

/*====================================================================
 * 問い合わせ
====================================================================*/
#contact {
  padding: 150px 0 0;
}
#contact .linkMail {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}
#contact .linkMail::before {
  content: "";
  margin-right: 14px;
  width: 32px;
  height: 32px;
  background-image: url(../../img/front/iconMail.svg);
  background-size: 32px 32px;
}
#contact .linkMail a {
  font-size: 3.2rem;
  color: #000000;
  text-decoration: none;
}

/*====================================================================
 * フッター
====================================================================*/
#back-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    margin-bottom: 0;
    display: block;
    width: 80px;
    line-height: 1;
    letter-spacing: 0.1em;
    z-index: 10;
}
.footer {
  padding: 23px 0;
  color: #ffffff;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.025em;
  background-color: #1D67BF;
}</pre></body></html>