@charset "UTF-8";
:root {
  --main-width: 750px;
}

/* ================================
			Common
================================ */
html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	overflow-y: scroll;
	font-size: 62.5%;
}
/*
100	Thin
300	Light
400	Regular
500	Medium
700	Bold
900	Black */

body {
	position: relative;
	font-family: "M PLUS Rounded 1c", sans-serif;
	width: 100%;
	word-wrap: break-word;
	overflow-wrap: break-word;
	/* font-size: 1.6rem; */
	line-height: 1.8;
	font-weight: 500;
	color: rgba(35, 24, 21, 1);
	margin: 0;
	-webkit-font-smoothing: antialiased;
}
@media print {
  body {
    display: none;
  }
}

a {
	text-decoration: none;
	transition: all .2s ease-out;
	text-decoration: none;
}

a:hover {
	transition: all .2s ease-out;
	cursor: pointer;
}

ol,
ul,
li {
	list-style: none;
	padding: 0;
}

img {
	display: block;
	max-width: 100%;
	height: auto;

	/* コピーガード */
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

._pc {
	display: block;
}

.s ._pc {
	display: none;
}

._sp {
	display: none;
}

.s ._sp {
	display: block;
}

.HiddenText {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ================================
        Layout
================================ */
.Center {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
	max-width: 1020px;
	position: relative;
}

.s .Center {
	padding-left: 4vw;
	padding-right: 4vw;
}

/* ================================
			Header
================================ */
.top_header_wrap {
	/* ヘッダーの横幅が足りない部分に白背景を追加 */
	width: 100%;
	background: white;
}
#Content {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
}
#Content::before {
  content: "";
  width: calc(50% - (var(--main-width)/2));
  height: 100dvh;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: -1;
  background: url(../img/bg_left.png) no-repeat top / cover;
  transform: translate3d(0, 0, -1px);
}
#Content::after {
  content: "";
  width: calc(50% - (var(--main-width)/2));
  height: 100dvh;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: url(../img/bg_right.png) no-repeat top / cover;
  transform: translate3d(0, 0, -1px);
}
#Content .attention_box {
	position: relative;
	font-family: YuGothic, "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-weight: 200;
	font-size: 1.2rem;
	line-height: 1.5;
	width: 100%;
	margin: 0 auto;
	color: rgba(0, 0, 0, 1);
	background-color: rgba(255, 255, 255, 1);
	padding: 1vw;
	z-index: 2;
}
#Content .attention_wrap {
	width: 100%;
	max-width: 1150px;
	margin: 0 auto;
}
#Content .attention_box a {
	color: rgba(0, 0, 0, 1);
	text-decoration: underline;
}

@media screen and (max-width:1000px) {
	#Content .attention_box {
		padding: 20px 2vw;
	}

	#Content .attention_box p {
		width: fit-content;
		margin: 0 auto;
	}
}

.sr-only {
	border: 0 !important;
	clip: rect(0, 0, 0, 0) !important;
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	white-space: nowrap !important;
	width: 1px !important;
}

/* ================================
       common
================================ */

.Inner{
	max-width: 1200px;
	padding-left: 50px;
	padding-right: 50px;
	margin: 0 auto;
	position: relative;

	padding-bottom: 160px;
}

.s .Inner{
	padding-left: 4vw;
	padding-right: 4vw;
  padding-bottom: 26.66vw;
}

#Content .wrap_main {
	position: relative;
	width: 100%;
	max-width: var(--main-width);
	margin: 0 auto;
	overflow: hidden;
	font-size: 2rem;
	line-height: 1.5;
	font-weight: 700;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.4);
	z-index: 2;
}
#Content .wrap_main img {
	width: 100%;
}
#Content .wrap_right {
	position: fixed;
  width: calc(50% - (var(--main-width)/2));
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	z-index: 2;
}
#Content .wrap_right img {
	width: 70%;
	max-width: 301px;
	margin: 0 auto;
}

#Content .wrap_main h2 {
	margin: 0 auto;
	position: relative;
	/* padding-bottom: 5%; */
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
	font-size: 5rem;
	text-align: center;
}

.s #Content .wrap_main h2 {
	font-size: 7vw;
}

#Content .wrap_main h2 img {
	width: 65%;
	margin: 0 auto;
}

/* ================================
       mv
================================ */
#Content .mv {
	position: relative;
}
#Content .mv::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	padding-top: 5%;
	background: url(../img/mv_bottom.png) no-repeat bottom / contain;
}

/* ================================
       lead
================================ */
#Content .lead {
	color: #28832a;
	background-image: url(../img/lead_bg_deco.png), url(../img/lead_bg_deco.png), url(../img/lead_bg.jpg);
	background-size: contain, contain, cover;
	background-repeat: no-repeat, no-repeat, no-repeat;
	background-position: top 8% center, bottom 8% center, center;
	padding: 35% 3.5%;
}
#Content .lead h2 {
	color: #28832a;
}
.s #Content .lead h2 {
	margin-bottom: 3%;
}
#Content .wrap_main .lead h2 img {
	width: 95%;
	margin: 0 auto 2%;
}
#Content .lead p {
	font-size: 3rem;
	text-align: center;
}
.s #Content .lead p {
	font-size: 4vw;
}
#Content .lead p .og_txt {
	color: #ff7200;
}
#Content .lead p .large_txt {
	font-size: 4.8rem;
}
.s #Content .lead p .large_txt {
	font-size: 6.5vw;
}
#Content .lead p .small_txt {
	font-size: 2.5rem;
}
.s #Content .lead p .small_txt {
	font-size: 3.5vw;
}

/* ================================
       prize
================================ */
#Content .prize {
	position: relative;
	background: url(../img/prize_bg.jpg) no-repeat top / cover;
	padding: 15% 5%;
}
#Content .prize::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding-top: 4%;
	background: url(../img/application_bg_head.png) no-repeat bottom / contain;
}
#Content .wrap_main .prize h2 {
	margin: 0 auto 7%;
}
#Content .wrap_main .prize .ttl_02 {
	width: 65%;
	margin: 0 auto 7%;
}
#Content .wrap_main .prize .main_ttl {
	width: 100%;
	margin: 0 auto 10%;
}
#Content .wrap_main h2.main_ttl img {
	width: 100%;
}
#Content .bulletin_board_wrap {
	width: 100%;
	background: url(../img/prize_board_bg_01.png) repeat-y top / 100%;
	margin: 0 auto;
	padding: 5%;
	filter: drop-shadow(10px 10px 10px rgba(0,0,0,0.25));
}
#Content .bulletin_board_box {
	position: relative;
	width: 100%;
	background-image: url(../img/prize_pin.png), url(../img/prize_board_bg_02.png);
	background-repeat: no-repeat, no-repeat;
	background-position: top 0.8% center, top;
	background-size: 90%, 100% 100%;
	margin: 0 auto;
}
#Content .prize .bulletin_board_box {
	padding: 36% 3% 0;
}
#Content .bulletin_board_box .ribbon {
	position: absolute;
	width: 100%;
	top: 4.5%;
	left: -9%;
}
#Content .bulletin_board_box .item_ttl {
	display: flex;
	align-items: center;
}
#Content .bulletin_board_box .item_ttl .beans {
	width: 20%;
	color: white;
	font-size: 3rem;
	background: url(../img/prize_miino_icon.png)no-repeat center / contain;
	line-height: 0.9;
	text-align: center;
	text-shadow:
	2px 0   #28832a,
 -2px 0   #28832a,
	0   2px #28832a,
	0  -2px #28832a,
	1.5px 1.5px #28832a,
	1.5px -1.5px #28832a,
 -1.5px 1.5px #28832a,
 -1.5px -1.5px #28832a;
 letter-spacing: -0.5rem;
 aspect-ratio: 115 / 80;
}
.s #Content .bulletin_board_box .item_ttl .beans {
	font-size: 3.5vw;
	letter-spacing: -0.1rem;
}
#Content .bulletin_board_box .item_ttl .beans._01 {
	padding: 3.5% 2% 3.5% 0%;
}
#Content .bulletin_board_box .item_ttl .beans._01.mb2 {
	margin-bottom: 2%;
}
#Content .bulletin_board_box .item_ttl .beans._02 {
	padding: 1%  0 3%;
}
#Content .bulletin_board_box .item_ttl .beans._01 span {
	font-size: 6rem;
}
.s #Content .bulletin_board_box .item_ttl .beans._01 span {
	font-size: 6vw;
}
#Content .bulletin_board_box .item_ttl .beans._02 span {
	font-size: 5.5rem;
}
.s #Content .bulletin_board_box .item_ttl .beans._02 span {
	font-size: 6vw;
}
#Content .bulletin_board_box .item_ttl .item_txt {
	width: 80%;
	font-size: 3.4rem;
	color: #28832a;
	line-height: 1.2;
	font-weight: 800;
	margin-bottom: 1.5%;
}
.s #Content .bulletin_board_box .item_ttl .item_txt {
	font-size: 4.6vw;
}
#Content .bulletin_board_box ._deco {
	position: relative;
	padding-bottom: 2%;
	margin-bottom: 6%;
}
#Content .bulletin_board_box ._deco._01 {
	border-bottom: 3px dashed #ccf2af;
}
.s #Content .bulletin_board_box ._deco._01 {
	border-bottom: 2px dashed #ccf2af;
}
#Content .bulletin_board_box .abs {
	position: absolute;
}
#Content .bulletin_board_box ._deco._01 .prize_img {
	width: 97%;
	margin: 0 auto;
}
#Content .bulletin_board_box .img_deco_01 {
	bottom: 5%;
	left: 0;
	width: 9%;
}
#Content .bulletin_board_box .img_deco_02 {
	top: 2%;
	right: -4%;
	width: 13%;
}
#Content .bulletin_board_box ._deco._02 {
	margin-top: 4%;
	padding-bottom: 5%;
}
#Content .bulletin_board_box ._deco._02 .prize_img {
	transform: translateX(2%);
}
#Content .bulletin_board_box .img_deco_03 {
	top: -13%;
	right: -4%;
	width: 7%;
}
#Content .bulletin_board_box .img_deco_04 {
	bottom: 10%;
	left: -5%;
	width: 16%;
}
#Content .bulletin_board_box .img_deco_05 {
	bottom: -2%;
	right: 33%;
	width: 7%;
}

/* ================================
        application
================================ */
#Content .application {
	position: relative;
	background: url(../img/application_bg.png) no-repeat center / cover;
	padding: 15% 0;
}
#Content .wrap_main .application h2 {
	margin: 0 auto 7%;
}
#Content .wrap_main .ttl_03 img {
  width: 65%;
  margin: 0 auto 7%;
}
#Content .application_wrap {
	width: 90%;
	border-radius: 20px;
	background-color: #e3f5dc;
	padding: 5%;
	margin: 0 auto 10%;
}
.s #Content .application_wrap {
	border-radius: 2vw;
}
#Content .download_box {
	display: flex;
	align-items: center;
	margin-bottom: 7%;
}
#Content .download_left {
	width: 65%;
}
#Content .download_txt {
	position: relative;
	font-size: 2.5rem;
	color: #28832a;
	font-weight: 800;
	background-color: white;
	border-radius: 20px;
	padding: 5%;
}
.s #Content .download_txt {
	border-radius: 4vw;
	font-size: 3.3vw;
}
#Content .download_right {
	width: 35%;
	padding-left: 3%;
}
#Content ._btn {
	position: relative;
	display: block;
	color: #ffff00;
	text-align: center;
	background-color: #eb6100;
	border-radius: 50vw;
	border: 5px solid white;
	margin: 0 auto;
	font-weight: 800;
	padding: 2% 0 3%;
	box-shadow: 10px 10px 0px 0px rgba(113, 198, 143, 1);
	transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.s #Content ._btn {
	border: 2px solid white;
	box-shadow: 3px 5px 0px 0px rgba(113, 198, 143, 1);
}
#Content ._btn:hover {
	box-shadow: none;
	transform: translate(10px, 10px);
}
.s #Content ._btn:hover {
	transform: none;
}
/* #Content ._btn::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 5%;
	transform: translateY(-50%);
	width: 1%;
	padding: 2.5%;
	background: url(../img/icon_arrow_right.png) no-repeat center / contain;
} */
#Content ._btn .icon_url {
	position: absolute;
	top: 50%;
	right: 5%;
	transform: translateY(-50%);
	width: 5%;
}
#Content ._btn._download {
	width: 95%;
	font-size: 4rem;
	line-height: 1.1;
	margin-bottom: 10%;
}
.s #Content ._btn._download {
	font-size: 5.5vw;
}
#Content ._btn._download span {
	font-size: 2.5rem;
}
.s #Content ._btn._download span {
	font-size: 3.8vw;
}
#Content ._btn._x {
	width: 95%;
	line-height: 1.1;
	margin-bottom: 5%;
	padding: 3% 0 3.5%;
	font-size: 6rem;
}
.s #Content ._btn._x {
	font-size: 9vw;
}
#Content ._btn._x span {
	font-size: 4rem;
	vertical-align: baseline;
	display: inline-block;
	transform: translateY(-0.2rem);
}
.s #Content ._btn._x span {
	font-size: 5.8vw;
}
#Content .download_step {
	color: #28832a;
	margin-bottom: 7%;
}
#Content .download_step li {
	display: flex;
	align-items: center;
}
#Content .download_step.flex_start li {
	display: flex;
	align-items: flex-start;
}
#Content .download_step li:not(:last-of-type) {
	margin-bottom: 5%;
}
#Content .download_step li .step_number {
	color: white;
	font-size: 3rem;
	text-align: center;
	width: 10%;
	padding: 1% 0;
	background: url(../img/download_step_bg.png) no-repeat center / contain;
}
#Content .download_step.flex_start li .step_number {
	margin-top: 3%;
}
.s #Content .download_step li .step_number {
	font-size: 5vw;
	padding: 0;
}
#Content .download_step li .step_text {
	width: 90%;
	font-size: 3rem;
	font-weight: 800;
	padding-left: 2%;
}
.s #Content .download_step li .step_text {
	font-size: 4vw;
}
#Content .application .note {
	color: #28832a;
	font-size: 2.2rem;
	padding-left: 2.2rem;
	text-indent: -2.2rem;
	font-weight: 500;
}
.s #Content .application .note {
	font-size: 3vw;
	padding-left: 3vw;
	text-indent: -3vw;
}
#Content .application .note li:not(:last-of-type) {
	margin-bottom: 1.5%;
}

/* ================================
    PresentInnerItem scroll
================================ */
#Content .terms {
	width: 90%;
	font-size: 3rem;
	color: white;
	text-align: center;
	margin: 0 auto;
	background-color: #96c300;
	padding: 3%;
	border-radius: 20px 20px 0 0;
}
.s #Content .terms {
	font-size: 5vw;
	border-radius: 2vw 2vw 0 0;
}
.PresentInnerItem {
	width: 90%;
	position: relative;
	z-index: 1;
	margin: 0 auto;
	color: #28832a;
}

.PresentRuleScroll {
	width: 70%;
	text-align: center;
	background-color: #cfe78e;
	margin: 0 auto 5%;
	padding: 1%;
	border-radius: 10px;
}

.s .PresentRuleScroll {
	margin-bottom: 3.125vw;
	border-radius: 1vw;
	padding: 1% 1% 2%;
}

.PresentRuleScroll span{
	font-size: 2.0rem;
  font-weight: 700;
}

.s .PresentRuleScroll span{
	font-size: 3vw;
}

.PresentWhiteBox {
	background-position: center;
	padding: 100px 40px 70px 100px;
	background-size: cover;
	background-repeat: no-repeat;
	font-size: 1.6rem;
	font-weight: 600;
	border: solid 5px rgba(255, 255, 255, 1);
	margin-bottom: 90px;
	position: relative;
	text-align: center;
	z-index: 2;
	/* box-shadow: 0px 6px 0px rgba(248, 234, 235); */
}

@media screen and (min-width:769px) and (max-width:980px) {
	.PresentWhiteBox {
		padding: 12vw 3vw 9vw 3vw;
	}
}

.PresentWhiteBox._third {
	position: relative;
	background-color: #f5ffed;
	padding: 52px 35px 40px 50px;
	margin-bottom: 0;
	border-radius: 0 0 20px 20px;
}
.s .PresentWhiteBox._third {
	padding: 3vw 3.9vw 4vw 3.9vw;
	border-radius: 0 0 2vw 2vw;
}
.PresentWhiteBox._third::after {
	content: "";
	position: absolute;
	bottom: 40px;
	left: 50px;
	width: calc(100% - 130px);
	height: 60px;
	pointer-events: none;
	z-index: 10;

	background: linear-gradient(
			to bottom,
			rgba(245,255,237,0),
			rgba(245,255,237,1)
	);
}
.s .PresentWhiteBox._third::after {
	height: 35px;
	bottom: 4vw;
	left: 3.9vw;
	width: calc(100% - 9.8vw);
}
.PresentWhiteBox._third a {
	color: inherit;
}

.PresentWhiteBox .PresentFlowList li {
	line-height: 1.4;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-align: left;
	gap: 20px;
}

.s .PresentWhiteBox .PresentFlowList li {
	gap: 2.8vw;
}

.PresentWhiteBox .PresentFlowList li div:nth-of-type(1) {
	max-width: 52px;
}

.s .PresentWhiteBox .PresentFlowList li div:nth-of-type(1) {
	max-width: 8.85vw;
}

.PresentRuleText {
	font-size: 2.5rem;
	text-align: left;
	height: 450px;
	padding-right: 80px;
	font-weight: 500;
	position: relative;
}
.s .PresentRuleText {
	font-size: 4.5vw;
	height: 250px;
	line-height: 1.4;
	letter-spacing: -0.3px;
	padding-right: 4.5vw;
}

.PresentRuleText div {
	padding-bottom: 40px;
}

.s .PresentRuleText div {
	padding-bottom: 6vw;
}

.PresentRuleText li {
	text-indent: -1em;
	padding-left: 1em;
	list-style: none;
}

.PresentRuleText a {
	text-decoration: underline;
}

.PresentRuleText a:hover {
	text-decoration: none;
}

.scrollbar {
	overflow-y: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.scrollbar::-webkit-scrollbar {
	display: none;
}

.custom-scrollbar-track {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	height: 80%;
	right: 35px;
	width: 7px;
	border-radius: 50vw;
	z-index: 5;
}

.s .custom-scrollbar-track {
	height: 80%;
	right: 3.6vw;
	width: 5px;
}

.custom-scrollbar-thumb {
	width: 100%;
	background: rgba(150, 195, 0, 1);
	border-radius: 50vw;
	position: absolute;
	top: 0;
}

/* ================================
        campaign
================================ */
#Content .wrap_main .campaign {
	width: 100%;
	background: url(../img/campaign_bg.jpg) no-repeat top / cover;
	padding: 15% 0;
	overflow: hidden;
}
#Content .wrap_main .campaign h2 {
	margin: 0 auto 10%;
}
#Content .wrap_main .campaign h2 img {
	width: 80%;
}
#Content .bg_green {
	position: relative;
	width: 90%;
	margin: 0 auto;
	background-color: #ccf2af;
	border-radius: 20px;
}
.s #Content .bg_green {
	border-radius: 2vw;
}
#Content .prize .bg_green {
	width: 100%;
}
#Content .bg_green._day {
	padding: 5.5% 1% 2%;
	margin: 0 auto 6%;
}
#Content .bg_green._howto {
	padding: 8% 5% 2%;
	margin: 0 auto 6%;
}
#Content .bg_green .h3_ttl {
	position: absolute;
	text-align: center;
	background-color: #28832a;
	padding: 2% 8%;
	border-radius: 50vw;
	left: 50%;
	transform: translateX(-50%);
}
#Content .bg_green .h3_ttl._01 {
	width: 30%;
	top: -26%;
}
.s #Content .bg_green .h3_ttl._01 {
	top: -28%;
}
#Content .bg_green .h3_ttl._02 {
	width: 44%;
	top: -7.5%;
}
.s #Content .bg_green .h3_ttl._02 {
	top: -7%;
}
#Content .bg_green .day_text {
	font-size: 2.5rem;
	color: #28832a;
	text-align: center;
	letter-spacing: -0.1rem;
	font-weight: 800;
}
.s #Content .bg_green .day_text {
	font-size: 3.4vw;
}
#Content .bg_green .day_text span {
	font-size: 4.2rem;
}
.s #Content .bg_green .day_text span {
	font-size: 5.3vw;
}
#Content .campaign .bulletin_board_wrap {
	width: 90%;
	margin: 0 auto 15%;
}
#Content .campaign .bulletin_board_box {
	padding: 10% 2%;
}
#Content .campaign_txt {
	font-size: 3.5rem;
	font-weight: 800;
	color: #28832a;
	text-align: center;
	margin-bottom: 3%;
}
.s #Content .campaign_txt {
	font-size: 4.5vw;
}
#Content .campaign_txt span {
	font-size: 4.5rem;
}
.s #Content .campaign_txt span {
	font-size: 6vw;
}
#Content .campaign_img_wrap {
	width: 119%;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	margin-bottom: 5%;
}
#Content img.campaign_ribbon {
	width: 90%;
	margin-left: -2%;
}
#Content .highlight {
	background: linear-gradient(
			to bottom,
			transparent 70%,
			yellow 70%
	);
}

/* fade-in */
#Content .fadein {
  opacity: 0;
  transform : translate(0, 50px);
  transition : all 1500ms;
}
#Content .fadein.scrollin{
  opacity: 1;
  transform: translate(0, 0);
}