fieldset,
legend,
button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	border: none;
	border-radius: 0;
	margin: 0;
	outline: none;
	padding: 0;
}

input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="time"] {
	border: 1px solid #ccc;
	font-size: 16px;
	margin: 0;
	outline: none;
	padding: 4px;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="number"],
input[type="datetime"],
input[type="week"],
textarea,
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	border: 1px solid #ccc;
	border-radius: 0;
	font-size: 16px;
	margin-left: 0;
	margin-right: 0;
	outline: none;
	padding: 4px;
}

textarea {
	height: 100px;
	overflow: auto;
	width: 100%;
}

select {
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALJJREFUeNrslssNgCAQRCmB0ijBEuyEEijBEijBEizBEnAPy0UBWVj8JDvJJB5w3gsXVUoikXwsBrpAPdRCNcOmxi2P2yZ3cIKGU9dOCY0b590pdXhPHOyRyMEDsi4JhVIlSvBYTRGgSNTAQ+pFyyBRC7e5AdchUQt3d1fYIsEGb5Fgh1MktlFwisQwOIeE4/pGuDfhLRLscIrEMHiNxHB4SeIxeMyMPxkenyUSyT9zCDAAj5btZ4c3zaUAAAAASUVORK5CYII=");
	background-position: right 8px center;
	background-repeat: no-repeat;
	background-size: 12px 12px;
	padding-right: 30px;
}

.select {
	background: #fff;
	display: inline-block;
	overflow: hidden;
	position: relative;
}

.select select {
	background: none;
	border: 1px solid #ccc;
	cursor: pointer;
	padding-right: 24px;
	text-overflow: "";
	width: 100%;
}

.select::before {
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #666;
	content: "";
	height: 0;
	padding: 0;
	pointer-events: none;
	position: absolute;
	right: 8px;
	top: 13px;
	width: 0;
}

/* radio & checkbox */

input[type="radio"],
input[type="checkbox"] {
	display: none;
}

input[type="radio"] + span,
input[type="checkbox"] + span {
	color: #555;
	cursor: pointer;
	display: inline-block;
	font-size: 1.4rem;
	line-height: 1;
	margin-left: 8px;
	padding: 10px 20px;
	position: relative;
	text-align: center;
}

input[type="radio"] + span::before,
input[type="checkbox"] + span::before {
	background: #fff;
	border: 1px solid #ccc;
	content: "";
	height: 16px;
	left: -8px;
	margin-top: -8px;
	position: absolute;
	top: 50%;
	width: 16px;
}

/* fieldset */

fieldset {
	border: 1px solid #ccc;
	padding: 8px 16px;
}

legend {
	padding: 0 8px;
}

/* button */

input[type="submit"],
input[type="reset"],
input[type="button"],
button {
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
	background: #efefef;
	border: 1px solid #999;
	border-radius: 0;
	color: #000;
	cursor: pointer;
	display: inline-block;
	font-size: 20px;
	margin: 0;
	padding: 10px 30px;
}

/* ブラウザ対策
---------------------------------------------------------------------------- */

/* Firefox */

/* IE */

select::-ms-expand {
	display: none;
}

/* webkit */

/* iOS */

input[type="submit"]::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-decoration {
	display: none;
}

::-webkit-search-cancel-button {
	-webkit-appearance: none;
}

input[type="search"]::-webkit-search-decoration {
	-moz-appearance: none;
	-webkit-appearance: textfield;
	-webkit-box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
	background: none;
	border: 0;
	border-radius: 0;
	font-size: 16px;
	margin: 0;
	outline: none;
	padding: 0;
}

/* 挙動
---------------------------------------------------------------------------- */

/* hover */

input:hover,
textarea:hover,
select:hover {
	border-color: #666;
}

input[type="radio"] + span:hover,
input[type="checkbox"] + span:hover {
	color: #000;
}

input[type="radio"] + span:hover::before,
input[type="checkbox"] + span:hover::before {
	border-color: #000;
}

input[type="radio"] + span:hover::after,
input[type="checkbox"] + span:hover::after {
	background: #ccc;
	content: "";
	height: 8px;
	left: -4px;
	margin-top: -4px;
	position: absolute;
	top: 50%;
	width: 8px;
}

/* checked */

input[type="radio"]:checked + span,
input[type="checkbox"]:checked + span {
	color: #3498db;
}

input[type="radio"]:checked + span::before,
input[type="checkbox"]:checked + span::before {
	border-color: #3498db;
}

input[type="radio"]:checked + span::after,
input[type="checkbox"]:checked + span::after {
	background: #3498db;
	content: "";
	height: 8px;
	left: -4px;
	margin-top: -4px;
	position: absolute;
	top: 50%;
	width: 8px;
}

/* radio */

input[type="radio"] + span::before,
input[type="radio"] + span:hover::after,
input[type="radio"]:checked + span::after {
	border-radius: 50%;
}

/* button */

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover {
	background: #3498db;
	border-color: #3498db;
	color: #fff;
}

/* focus */

input:focus,
textarea:focus {
	border-color: #3498db;
}

input[type="submit"]:focus,
input[type=reset]:focus,
input[type="button"]:focus,
input[type="search"]:focus {
	outline-offset: -2px;
}

/* disabled */

input:disabled,
input:disabled:hover,
textarea:disabled,
textarea:disabled:hover {
	background: #eee;
	border-color: #ccc;
	cursor: not-allowed;
}

input[type="radio"]:disabled + span,
input[type="checkbox"]:disabled + span {
	color: #ccc;
	cursor: not-allowed;
}

input[type="radio"]:disabled + span::before,
input[type="checkbox"]:disabled + span::before {
	border-color: #ccc;
	cursor: not-allowed;
}

/* バリデーション */

/* placeholder */

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* リキッドレイアウト対応 */

html {
	font-size: 4.26667vw;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background: #fff;
	color: #323333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	min-height: 100vh;
	min-height: -webkit-fill-available;
	overflow-wrap: break-word;
	position: relative;
	z-index: -9999;
}

/* Box sizing rules */

*,
*::before,
*::after {
	box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	border: 0;
	margin: 0;
	padding: 0;
}

a {
	color: inherit;
	cursor: pointer;
	text-decoration: none;
}

img {
	border: none;
	height: auto;
	max-width: 100%;
	vertical-align: top;
}

video,
iframe,
object {
	border: none;
	height: auto;
	max-width: 100%;
}

ul,
ol {
	list-style: none;
}

table {
	border: 1px solid;
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: fixed;
	width: 100%;
}

th,
td {
	border: 1px solid;
	padding: 4px 6px;
	text-align: left;
	vertical-align: top;
}

blockquote,
q {
	quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
	content: "";
	content: none;
}

address {
	font-style: normal;
}

b,
strong {
	font-weight: 700;
}

form {
	margin: 0;
	padding: 0;
}

label {
	display: inline-block;
}

a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
	touch-action: manipulation;
}

input,
button,
select,
optgroup,
textarea {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	margin: 0;
}

button,
select {
	text-transform: none;
}

select {
	cursor: pointer;
}

textarea {
	-ms-overflow-style: scrollbar;
	overflow: auto;
	resize: vertical;
}

dialog {
	background-color: inherit;
	border: solid;
	color: inherit;
	display: block;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	left: 0;
	margin: auto;
	padding: 1em;
	position: absolute;
	right: 0;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

dialog:not([is-open]) {
	display: none;
}

summary {
	cursor: pointer;
	display: list-item;
}

/* Remove all animations and transitions for people that prefer not to see them */

.l-footer {
	background-color: #000;
}

.l-footer__content {
	color: #fff;
	margin: 0 auto;
	padding: 1.8125rem 4.0625rem 2.3125rem;
	text-align: center;
	width: 100%;
}

.l-footer__logo-wrapper,
.l-footer__app-wrapper {
	display: flex;
}

.l-footer__logo-wrapper {
	align-items: center;
	justify-content: center;
}

.l-footer__logo {
	height: 2.8125rem;
	max-width: 18.75rem;
	padding-left: 0.1875rem;
	width: 100%;
}
.l-footer__logo:hover{opacity:0.6;}
.l-footer__app {
	margin-top: 1.3125rem;
}

.l-footer__app-text {
	font-size: 0.84375rem;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.l-footer__app-wrapper {
	height: 2.3125rem;
	justify-content: center;
	margin-top: 0.75rem;
}

.l-footer__app-apple {
	margin-right: 0.625rem;
	max-width: 6.4375rem;
	width: 100%;
}

.l-footer__app-google {
	max-width: 8rem;
	width: 100%;
}

.l-footer__nav {
	margin-top: 0.9375rem;
}

.l-footer__nav-item {
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 2;
}

.l-footer__app-apple,
.l-footer__app-google,
.l-footer__nav-item-wrapper {

}
.l-footer__app-apple:hover,
.l-footer__app-google:hover,
.l-footer__nav-item-wrapper:hover {
opacity: 0.7;}
.l-inner {
	height: inherit;
	margin: 0 auto;
	max-width: 21.875rem;
	padding-left: 12.5px;
	padding-right: 12.5px;
	width: 100%;
}

.fadeIn {
	-webkit-animation-name: fadeInAnime;
	-webkit-animation-duration: 0.8s;
	-webkit-animation-fill-mode: forwards;
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
	animation-name: fadeInAnime;
	opacity: 0;
}

.u-main-color {
	color: #57937d;
}

.u-font-bold {
	font-weight: 700;
}

.u-fontsize48 {
	font-size: 1.5rem;
}

.p-top-apply {
	background-color: #57937d;
}

.p-top-apply__container {
	color: #fff;
	padding: 2.5625rem 1.875rem 3.4375rem;
}

.p-top-apply__title {
	font-size: 1.6875rem;
	text-align: center;
}

.p-top-apply__media {
	margin: 0 auto;
	max-width: 23.4375rem;
	width: 100%;
}

.p-top-apply__media:nth-of-type(1) {
	margin-top: 2rem;
}

.p-top-apply__media:nth-of-type(n + 2) {
	margin-top: 0.8125rem;
}

.p-top-apply__step {
	border: 0.0625rem solid #fff;
	border-radius: 50%;
	font-weight: 700;
	height: 3.75rem;
	margin: 0 auto;
	max-width: 3.75rem;
	padding-top: 0.375rem;
	text-align: center;
	vertical-align: middle;
	width: 100%;
}

.p-top-apply__step-text {
	font-size: 0.75rem;
	line-height: 1;
}

.p-top-apply__step-number {
	font-size: 1.8125rem;
	line-height: 1;
}

.p-top-apply__image-wrapper {
	margin-top: 1.5625rem;
	text-align: center;
}

.p-top-apply__image {
	border-radius: 1.875rem;
	height: 15rem;
	max-width: 15rem;
	width: 100%;
}

.p-top-apply__description {
	font-size: 0.9375rem;
	letter-spacing: 0.1em;
	margin-top: 1.3125rem;
	padding-left: 1rem;
	padding-right: 0.625rem;
}

.p-top-apply__alert {
	font-size: 0.9375rem;
	letter-spacing: 0.1em;
	margin: 1.8125rem auto 0;
	padding-left: 1rem;
	padding-right: 0.625rem;
}

.p-top-info__container {
	padding: 2.375rem 3.125rem 3.4375rem;
}

.p-top-info__item:nth-child(n + 2) {
	margin-top: 2.375rem;
}

.p-top-info__item-title {
	background-color: #57937d;
	border-radius: 1.25rem;
	color: #fff;
	display: block;
	font-size: 1.125rem;
	font-weight: 700;
	height: 2.1875rem;
	line-height: 1.8;
	margin: 0 auto;
	max-width: 7.5625rem;
	text-align: center;
	width: 100%;
}

.p-top-info__item-description {
	font-size: 1.125rem;
	text-align: center;
}

.p-top-info__item-description01 {
	letter-spacing: 0.06em;
	margin-top: 1.1875rem;
	padding-left: 0.25rem;
	padding-right: 0.25rem;
}

.p-top-info__item-description02 {
	letter-spacing: 0.06em;
	line-height: 1.3;
	margin-top: 1.25rem;
}

.p-top-mv__container {
	background-color: #54876d;
}

.p-top-mv__image-wrapper {
	height: 26.5625rem;
	margin: 0 auto;
	max-width: 23.4375rem;
	width: 100%;
}

.p-top-mv__image {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	text-align: center;
	width: 100%;
}

.p-top-prize__container {
	padding: 3rem 1.5625rem 3.3125rem;
}

.p-top-prize__lead {
	font-size: 0.9375rem;
	letter-spacing: 0.04em;
	padding-left: 0.625rem;
}

.p-top-prize__lead:nth-child(n + 2) {
	margin-top: 1.4375rem;
}

.p-top-prize__item {
	margin-top: 1.75rem;
}

.p-top-prize__item-title {
	color: #57937d;
	font-size: 1.6875rem;
	text-align: center;
}

.p-top-prize__item-image-wrapper {
	margin-top: 0.9375rem;
	text-align: center;
}

.p-top-prize__item-image {
	height: 17.6875rem;
	max-width: 17.6875rem;
	width: 100%;
}

.p-top-prize__item-name {
	font-size: 0.9375rem;
	letter-spacing: 0.07em;
	margin-top: 1.25rem;
	text-align: center;
}

.p-top-prize__item-description {
	font-size: 0.9375rem;
	letter-spacing: 0.01em;
	margin-top: 1.1875rem;
	padding-left: 0.625rem;
	padding-right: 0.25rem;
	text-align: left;
}

.p-top-prize__item-button-wrapper {
	margin: 1.4375rem auto 0;
	padding-left: 0.625rem;
}

.p-top-prize__item-button {
	background-color: #ae7f46;
	border-radius: 2.5rem;
	color: #fff;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: 2.8125rem;
	line-height: 3;
	margin: 0 auto;
	max-width: 17.5rem;
	text-align: center;
	width: 100%;
}

.p-top-prize__item-button:hover {
	opacity: 0.7;
}

.p-top-prize__text {
	font-size: 0.9375rem;
	letter-spacing: 0.1em;
	padding-left: 0.9375rem;
}

.p-top-prize__text-wrapper {
	margin-top: 3rem;
}

.p-top-prize__text:last-child {
	margin-top: 1.25rem;
}

.p-top-theme__container {
	background-color: #fff799;
	padding: 1.375rem 1.875rem 1.375rem 3.125rem;
}

.p-top-theme__text {
	color: #57937d;
	font-size: 1.6875rem;
	font-weight: 700;
	line-height: 1.37;
	padding-left: 0.625rem;
	text-align: center;
}

@media (prefers-reduced-motion: reduce) {

html:focus-within {
	scroll-behavior: auto;
}

*,
*::before,
*::after {
	-webkit-animation-duration: 0.01ms !important;
	-webkit-animation-iteration-count: 1 !important;
	animation-duration: 0.01ms !important;
	animation-iteration-count: 1 !important;
	scroll-behavior: auto !important;
	transition-duration: 0.01ms !important;
}

}

@media screen and (min-width: 375px) {

html {
	font-size: 16px;
}

.u-appear-sp {
	display: inline;
}

}

@media screen and (min-width: 550px) {

.u-hidden-tab {
	display: none;
}

.u-appear-pc {
	display: none;
}

.u-appear-tab {
	display: inline;
}

}

@media (min-width: 664px) {

html {
	font-size: 16px;
}

}

@media screen and (min-width: 964px) {

.l-footer__logo {
	margin-right: 0;
}

.l-footer__app {
	margin-top: 0.75rem;
}

.l-footer__app-text {
	letter-spacing: 0.05em;
}

.l-footer__app-wrapper {
	margin-top: 1.25rem;
}

.l-footer__app-apple {
	margin-right: 0.5625rem;
	max-width: 7.0625rem;
}

.l-footer__app-google {
	max-width:8.65rem;
}

.l-footer__nav {
	margin-top: 1rem;
}

.l-footer__nav-item {
	letter-spacing: 0.2em;
}

.l-footer__nav-list {
	display: flex;
	justify-content: center;
}

.l-footer__nav-item-wrapper:not(:last-child) {
	margin-right: 1.25rem;
}

.l-inner {
	max-width: 964px;
	padding-left: 150px;
	padding-right: 150px;
}

.fadeUp {
	-webkit-animation-name: fadeUpAnime;
	-webkit-animation-duration: 0.8s;
	-webkit-animation-fill-mode: forwards;
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
	animation-name: fadeUpAnime;
	opacity: 0;
}

.u-hidden-pc {
	display: none;
}

.u-appear-pc {
	display: inline;
}

.p-top-apply__container {
	padding: 2.8125rem 13.125rem 3.4375rem;
}

.p-top-apply__title {
	letter-spacing: 0.2em;
	text-indent: 0.25rem;
}

.p-top-apply__media {
	align-items: center;
	display: flex;
	margin: 0.625rem auto 0;
	max-width: 34.375rem;
}

.p-top-apply__step {
	left: -0.625rem;
	margin-right: 1.125rem;
	order: 1;
	position: relative;
	top: 0.875rem;
}

.p-top-apply__image-wrapper {
	order: 3;
}

.p-top-apply__image {
	border-radius: 1.25rem;
	height: 9.375rem;
	left: -0.625rem;
	max-width: 9.375rem;
	position: relative;
	width: 110%;
}

.p-top-apply__description {
	line-height: 1.45;
	margin-right: 0.8125rem;
	max-width: 17.625rem;
	order: 2;
	padding-left: 0;
	width: 100%;
}

.p-top-apply__alert {
	letter-spacing: -0.01em;
	line-height: 1.4;
	margin: 0.8125rem auto 0;
	max-width: 34.375rem;
	padding-left: 0.625rem;
	width: 100%;
}

.p-top-info__container {
	padding: 2.5rem 3.125rem 2.5rem;
}

.p-top-info__item-title {
	border-radius: 2.5rem;
	font-size: 1.875rem;
	height: 3.75rem;
	max-width: 13.125rem;
}

.p-top-info__item-description {
	font-size: 1.375rem;
}

.p-top-info__item-description01 {
	letter-spacing: 0.08em;
	margin-top: 1.25rem;
}

.p-top-info__item-description02 {
	letter-spacing: 0em;
	margin-top: 1.25rem;
}

.p-top-mv__container {
	background-color: #58937d;
}

.p-top-mv__image-wrapper {
	height: 31.625rem;
	max-width: 60.25rem;
}

.p-top-prize__lead {
	padding-left: 4.375rem;
	padding-right: 3.125rem;
}

.p-top-prize__lead:nth-child(n + 2) {
	margin-top: 1.25rem;
}

.p-top-prize__item {
	display: flex;
	justify-content: space-around;
	padding-left: 1.25rem;
	padding-right: 0.625rem;
}

.p-top-prize__item-title {
	font-size: 1.875rem;
}

.p-top-prize__item-detail {
	max-width: 17.6875rem;
	width: 100%;
}

.p-top-prize__item-image-wrapper {
	margin-top: 0;
}

.p-top-prize__item-image {
	height: 18.4375rem;
	margin-right: 0.625rem;
	margin-top: 1.0625rem;
	max-width: 18.4375rem;
}

.p-top-prize__item-name {
	margin-top: 1rem;
}

.p-top-prize__item-description {
	letter-spacing: -0.01em;
	line-height: 1.4;
	margin-top: 1rem;
	padding-left: 2.125rem;
	padding-right: 1.25rem;
}

.p-top-prize__item-button-wrapper {
	margin-top: 1.5rem;
	padding-left: 0;
	width: calc(100% + 30px);
}

.p-top-prize__item-button {
	height: 2.875rem;
	letter-spacing: 0.1em;
	margin: 0 -0.9375rem;
	max-width: calc(100% + 30px);
	text-indent: 0.375rem;
}

.p-top-prize__text {
	letter-spacing: 0em;
	padding-left: 4.375rem;
	padding-right: 3.75rem;
}

.p-top-prize__text-wrapper {
	margin-top: 2.1875rem;
}

.p-top-theme__container {
	padding: 2.4375rem 2.5rem;
}

.p-top-theme__text {
	font-size: 1.875rem;
	letter-spacing: 0.055em;
}

}

@media screen and (max-width: 549px) {

.u-appear-pc {
	display: none;
}

.u-appear-tab {
	display: none;
}

}

@media screen and (max-width: 374px) {

.u-appear-sp {
	display: none;
}

}

@-webkit-keyframes fadeInAnime {

from {
	opacity: 0;
}

to {
	opacity: 1;
}

}

@keyframes fadeInAnime {

from {
	opacity: 0;
}

to {
	opacity: 1;
}

}

@-webkit-keyframes fadeUpAnime {

from {
	opacity: 0;
	transform: translateY(100px);
}

to {
	opacity: 1;
	transform: translateY(0);
}

}

@keyframes fadeUpAnime {

from {
	opacity: 0;
	transform: translateY(100px);
}

to {
	opacity: 1;
	transform: translateY(0);
}

}

