@charset "UTF-8";
@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure,
strong {
  border: 0;
  font: inherit;
  font-size: 100%;
  padding: 0;
  margin: 0;
  vertical-align: baseline;
  font-family: "Noto Sans JP", sans-serif;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

[type=text],
[type=email],
[type=tel] {
  margin: 0;
  padding: 0;
  background: none;
  box-shadow: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  box-shadow: none;
}

button,
[type=submit],
input[type=button i] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}

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

select,
[type=date] {
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  padding: 0;
  border: 0;
  background-color: inherit;
  color: inherit;
}

html {
  font-size: 100%;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 14px;
  }
}

body {
  font-size: 17px;
  text-align: justify;
  font-feature-settings: "palt";
  color: #4c4c4c;
  font-family: "Noto Sans JP", sans-serif;
  background: #ffffff;
  scroll-padding-top: calc(70px + 0.625rem);
  margin: 0;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    scroll-padding-top: calc(70px + 0.625rem);
  }
}
body.no-scroll {
  overflow: hidden;
}

body.js-modal-open {
  overflow: hidden;
}

body.js-modal-open .l-main,
body.js-modal-open .l-header,
body.no-scroll .l-header {
  scrollbar-gutter: stable;
  overflow: auto;
}

a {
  text-decoration: none;
  transition: all 0.2s;
  color: #636569;
	cursor: pointer;
}
@media (hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

.ttl {
	text-align: center;
	margin: 0 auto;
}

picture {
  display: block;
	width: fit-content;
}

small {
	font-size: 0.5em;
  letter-spacing: 0;
}

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

.accordion {
	margin: 0 auto;
	width: 100%;
	max-width: 1000px;
	box-shadow: inset 0 0 0 3px #d70029;
	border-radius: 40px;
	background: #FFF;
}
.accordion .accordion_ttl {
	background: #FFF;
	border-radius: 40px;
	border: 3px solid #d70029;
	color: #d70029;
	font-size: 30px;
	font-weight: 700;
	padding: 20px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
	transition: all 0.2s;
	cursor: pointer;
}
.accordion .accordion_ttl:hover {
	background: #d7002713;
}
.accordion .accordion_ttl::before,
.accordion .accordion_ttl::after {
	content: "";
	display: block;
	width: 30px;
	height: 4px;
	background: #d70029;
	border-radius: 100px;
	position: absolute;
	right: 30px;
}
.accordion .accordion_ttl::after {
	transform: rotate(90deg);
	transition: all 0.2s;
}
.accordion.is_open .accordion_ttl::after {
	opacity: 0;
}
.accordion .accordion_content {
	background: transparent;
	border-radius: 40px 40px 40px 40px;
	margin-top: 0px;
	color: #636569;
	font-weight: 700;
}
.accordion .accordion_content_scroll {
	padding: 30px 4%;
	max-height: 400px;
	width: 100%;
	height:fit-content;
}
.accordion .accordion_content .simplebar-scrollbar {
	border-radius: 10px;
	background: #cccdcf !important;
}
.simplebar-scrollbar:before { 
	background: #cccdcf !important;
}
.accordion .accordion_content .simplebar-track {
	background: transparent !important;
	height: calc(100% - 40px);
	margin-right: 10px;
}
.accordion .accordion_content_scroll p {
	line-height: 1.5;
}
.accordion .accordion_content_scroll p + p {
	margin-top: 70px;
}
.accordion.target .accordion_content p {
	color: #636569;
	font-weight: 700;
	font-size: 22px;
}
.accordion.chain .accordion_content p {
	font-size: 30px;
	text-align: center;
	font-weight: 700;
	color: #636569;
}
.accordion.chain .accordion_content p br {
	display: none;
}
.accordion.chain .accordion_content p small {
	display: block;
	font-size: 18px;
	text-align: left;
	font-weight: 500;
}
.accordion.role .accordion_content p {
	font-weight: 500;
	font-size: 18px;
	line-height: 1.75;
}
.accordion.chain picture {
	margin-top: 20px;
	margin-bottom: 20px;
}
@media (max-width: 767px){
	 .accordion {
		box-shadow: inset 0 0 0 2px #d70029;
		border-radius: 21px;
	}
	.accordion .accordion_ttl {
		font-size: 15px;
		padding: 5px;
		height: 42px;
		border-width: 2px;
	}
	.accordion .accordion_ttl::before,
	.accordion .accordion_ttl::after {
		width: 15px;
		height: 2px;
    right: 15px;
	}
	.accordion.target .accordion_content p {
		font-size: 10px;
	}
	.accordion .accordion_content_scroll {
	padding: 10px 4% 15px;
	max-height: 180px;
}
	.accordion.chain .accordion_content p {
		font-size: 16px;
	}
	.accordion.chain .accordion_content p br {
		display: block;
	}
	.accordion.chain .accordion_content p small {
		font-size: 10px;
		zoom: 0.9;
	}
	.accordion.role .accordion_content p {
		font-size: 10px;
	}
	.accordion .accordion_content_scroll p + p {
	margin-top: 25px;
}
	.accordion .accordion_content .simplebar-track {
width: 5px;
	}

}
.header {
	padding: 5px 8%;
	width: 100%;
}
.header .header_collabo {
	background: #FFF;
	margin: 0 auto;
	width: fit-content;
}
@media (max-width: 767px){
	.header .header_collabo {
		width: 320px;
	}
}
.kv {
	background: #e83833;
}
.kv picture {
	margin: 0 auto 5px;
  width: 92%;
	text-align: center;
}
.kv .kv_time {
	background: #FFF;
	padding-bottom: 20px;
	padding-left: 8%;
	padding-right: 8%;
}
.kv .kv_campaign {
	margin: 0 auto;
	width: fit-content;
	padding-top: 20px;
}
.kv .kv_period {
	margin: 0 auto;
	width: fit-content;
	margin-top: 20px;
	background: #fdefe9;
	border-radius: 100px;
	width: 100%;
	text-align: center;
	padding: 7px 0;
	text-align: center;
	max-width: 1130px;
}
@media (max-width: 767px){
	.kv .kv_campaign {
		padding-top: 10px;
	}
	.kv .kv_period {
		margin-top: 10px;
		padding: 2px;
		line-height: 1;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.kv .kv_period img {
		zoom: 0.5;
	}
	.kv .kv_time {
		padding-bottom:10px;
	}
}
.nav {
	background: #fdefe9;
	width: 100%;
	padding-top: 50px;
	padding-left: 8%;
	padding-right: 8%;
}
.nav ul {
	max-width: 1200px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 25px;
	margin: 0 auto;
}
.nav ul li {
	width: calc(25% - (25px / 2));
}
.nav ul li a {
	background: #e83833;
	border: 4px solid #ee7e65;
	border-radius: 100px;
	color: #FFF;
	display: block;
	filter: drop-shadow(0px 8px 0px #d70029);
	font-size: 30px;
	font-weight: 700;
	width: 100%;
	padding: 20px;
	text-align: center;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.nav ul li a:hover {
	background: #f3504e;
}
.nav ul li a::before {
	content: "";
	position: absolute;
	background: url(../img/nav_arrow.svg) 0 0 / contain no-repeat;
	width: 25px;
	height: 12px;
	right: 20px;
}
.nav_btn {
	display: none;
}
.nav ul + a {
	display: none;
}
@media (max-width: 767px){
	.nav {
		position: fixed;
		right :-100%;
		top: 0;
		z-index: 50;
		height: 100dvh;
		width: 100%;
		transition: all 0.2s;
		padding: 80px 8% 0;
		background: #FFF;
	}
	.nav.is_open {
		right :0%;
	}
	.nav_btn {
		display: block;
		position: fixed;
		top: 20px;
		right: 4%;
		z-index: 55;
	}
	.nav_btn img:first-child {
		display: block;
	}
	.nav_btn img:last-child {
		display: none;
	}
	.nav_btn.is_open img:first-child {
		display: none;
	}
	.nav_btn.is_open img:last-child {
		display: block;
	}
	.nav ul {
		flex-direction: column;
		gap: 0;
	}
	.nav ul li {
		width: 100%;
		border-top: 2px solid #d70029;
	}
	.nav ul li:last-child {
		border-bottom: 2px solid #d70029;
	}
	.nav ul li a {
		border: none;
		border-radius: 0;
		background: transparent;
		color: #d70029;
		filter: none;
		font-size: 20px;
	}
	.nav ul li a:hover {
		background: #FFF;
	}
	.nav ul li a::before {
		background: url(../img/orize_arrow.svg) 0 0 / contain no-repeat;
		width: 10px;
		height: 23px;
	}
	.nav ul li a::before {
		background: url(../img/orize_arrow.svg) 0 0 / contain no-repeat;
		width: 10px;
		height: 23px;
	}
	.nav ul + a {
		margin: 40px auto 0;
		display: block;
		width: fit-content;
	}
}
.about {
	background: #fdefe9;
	padding-top: 80px;
	padding-bottom: 80px;
	text-align: center;
	padding-left: 8%;
	padding-right: 8%;
}
.about .about_text {
	font-size: 30px;
	font-weight: 600;
	line-height: 2.5;
	margin-top: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.about .about_text::before {
	background: url(../img/about_star_left.svg) 0 0 / contain no-repeat;
	content: "";
	width: 164px;
	height: 429px;
}
.about .about_text::after {
	background: url(../img/about_star_right.svg) 0 0 / contain no-repeat;
	content: "";
	width: 153px;
	height: 405px;
}
.about .about_chara {
	margin-top: 70px;
}
.about .about_chara + .ttl {
	margin-top: 80px;
}
.about .ttl + .about_period {
	margin-top: 10px;
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 767px){
	.about {
		padding-top: 40px;
		padding-bottom: 60px;
	}
	.about .about_text {
		position: relative;
		font-size: 15px;
	}
	.about .about_text::before {
		background: url(../img/about_star_left_sp.svg) 0 0 / contain no-repeat;
		content: "";
		width: 70px;
		height: 230px;
		left: -4%;
		position: absolute;
		top: 20px;
	}
	.about .about_text::after {
		background: url(../img/about_star_right_sp.svg) 0 0 / contain no-repeat;
		content: "";
		width: 56px;
		height: 252px;
		right: -4%;
		position: absolute;
		top: 20px;
	}
	.about .about_chara {
		width: 167px;
		height: auto;
		margin-top: 30px;
		padding-right: 15px;
	}
	.about .about_chara + .ttl {
    margin-top: 40px;
	}
	.about .ttl + .about_period {
		margin-top: 10px;
	}
}
.product {
	padding-top: 80px;
	padding-left: 8%;
	padding-right: 8%;
}
.product .product_text {
	color: #e83833;
	font-weight: 700;
	font-size: 40px;
	text-align: center;
	margin-top: 60px;
}
.product ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1100px;
	margin: 70px auto 0;
}
.product ul li {
	background: #5dbde320;
	border-radius: 200px;
	color: #5dbce3;
	font-size: 21px;
	font-weight: 700;
	width: calc((100% - 131px)/3);
	height: 437px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.product ul li p {
	margin-top: 25px;
}
.product .accordion {
	margin-top: 70px;
}
.product .accordion + .accordion {
	margin-top: 30px;
}
@media (max-width: 767px){
	.product {
		padding-top: 50px;
	}
	.product .product_text {
		font-size: 20px;
		margin-top: 10px;
	}
	.product ul {
		margin-top: 20px;
	}
	.product .accordion {
		margin-top: 30px;
	}
	.product .accordion + .accordion {
		margin-top: 15px;
	}
}
.prize {
	background: #e83833;
	margin-top: 80px;
	padding: 80px 0;
	padding-left: 8%;
	padding-right: 8%;
	overflow: hidden;
}
.prize .prize_item {
	margin: 70px auto 0;
	max-width: 1200px;
	position: relative;
}
.prize .prize_item_inner {
	background: #FFF;
	outline: 11px dotted #f6b9a4;
	outline-offset: -25px;
	border-radius: 1000px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 45px;
	font-weight: 900;
	color: #e83833;
	text-align: center;
	line-height: 1.25;
	padding: 60px 40px;
	flex-wrap: wrap;
	filter: drop-shadow(0px 15px 0px rgba(0, 0, 0, 0.1));
}
.prize .prize_item + .prize_item {
	margin-top: 40px;
}
.prize .prize_mark {
	background: #ffffb4;
	display: block;
	width: fit-content;
	margin: 0 auto;
	padding: 5px 10px;
}
.prize .prize_item_text {
	width: 45%;
}
.prize .prize_item p {
	position: relative;
}
.prize .prize_item .prize_item_img {
	width: 45%;
	text-align: center;
	position: sticky;
	z-index: 3;
}
.prize .prize_item p + p {
	margin-top: 60px;
}
.prize .prize_item p + p::before {
	background: url(../img/prize_icon.svg) 0 0 / contain no-repeat;
	content: "";
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	top: -50px;
	left: calc(50% - 20px);
}
.prize .prize_item .is_star {
	width: 100%;
	text-align: center;
	font-size: 60px;
}
.prize .prize_item .is_star span {
	display: block;
	position: relative;
	width: fit-content;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}
.prize .prize_item .is_star span::before,
.prize .prize_item .is_star span::after {
	content: "";
	position: absolute;
	right: -60px;
	background: url(../img/prize_star.svg) 0 0 / contain no-repeat;
	width: 40px;
	height: 40px;
}
.prize .prize_item .is_star span::after {
	left: -60px;
	right: auto;
}
.prize .prize_text {
	font-size: 18px;
	text-align: center;
	margin-top: 30px;
	color: #FFF;
}
.prize .prize_star {
	position: absolute;
	font-size: 60px;
}
.prize .prize_star_01 {
	left:-50px;
	top: 0px;
}
.prize .prize_star_02 {
	right:-50px;
	top: -50px;
}
.prize .prize_star_03 {
	left:-50px;
	top: 0px;
}
.prize .prize_star_04 {
	left:-50px;
	bottom: 0px;
}
.prize .prize_star_05 {
	right:-50px;
	bottom: -50px;
}
.prize_item_num50,
.prize_item_num150 {
	display: none;
}
@media (max-width: 767px){
	.prize {
		margin-top: 40px;
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.product ul li {
		width: 29%;
		height: 142px;
	}
	.product ul li img {
		height: 84px;
		width: auto;
	}
	.product ul li p {
		font-size: 10px;
		zoom: 0.8;
		text-align: center;
		white-space: nowrap;
		margin-top: 10px;
	}
	.prize .prize_item {
		margin-top: 15px;
	}
	.prize .prize_item_inner {
    /* outline: 5px dotted #f6b9a4;
    outline-offset: -10px;
    padding: 20px 10px; */
		outline: none;
		padding: 0;
    font-size: 45px;
		font-size: 16px;
		filter: drop-shadow(0px 7px 0px rgba(0, 0, 0, 0.1));
		background: transparent;
	}
	.prize .prize_item .is_star {
		display: none;
	}
	.prize .prize_item .is_star span {
		font-size: 23px;
	}
	.prize .prize_item p + p {
		margin-top: 30px;
	}
	.prize .prize_item p + p::before {
		width: 16px;
		height: 16px;
		top: -24px;
		left: calc(50% - 8px);
	}
	.prize .prize_item_text {
		width: 50%;
		display: none;
	}
	.prize .prize_item .prize_item_img {
		width: 40%;
		margin-right: -6%;
		text-align: center;
		display: none;
	}
	.prize .prize_item.num150 .prize_item_img img {
		max-width: 62px;
		height: auto;
	}
	.prize .prize_item .is_star span::before,
	.prize .prize_item .is_star span::after {
		width: 20px;
    height: 20px;
		right: -30px;
	}
	.prize .prize_item .is_star span::after {
		left: -30px;
		right: auto;
	}
	.prize .prize_item + .prize_item {
		margin-top: 20px;
	}
	.prize .prize_star {
		zoom: 0.4;
	}
	.prize .prize_star_01 {
		left:-50px;
		top: 0px;
	}
	.prize .prize_star_02 {
		right:-50px;
		top: -20px;
	}
	.prize .prize_star_03 {
		left:-50px;
		top: 0px;
	}
	.prize .prize_star_04 {
		left:-50px;
		bottom: -40px;
	}
	.prize .prize_star_05 {
		right:-50px;
		bottom: -50px;
	}
	.prize .prize_text {
		font-size: 10px;
		zoom: 0.9;
	}
	.prize_item_num50,
	.prize_item_num150 {
		display: block;
	}
}
.howto {
	background: #fdefe9;
	padding: 60px 0;
	padding-left: 8%;
	padding-right: 8%;
}
.howto .ttl {
	text-align: center;
}
.howto .howto_text {
	color: #e83833;
	font-size: 40px;
	font-weight: 700;
	text-align: center;
	margin-top: 40px;
	line-height: 1.5;
}
.howto .howto_text br {
	display: none;
}
.howto ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1040px;
	margin: 70px auto 0;
}
.howto ul li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	width: 26.25%;
	position: relative;
}
.howto ul li + li::before {
	background: url(../img/orize_arrow.svg) 0 0 / contain no-repeat;
	content:"";
	display: block;
	width: 14px;
	height: 30px;
	position: absolute;
	left: -20%;
	top: calc(50% - 30px);
}
.howto ul li .how_to_circle {
	width: 100%;
	padding-top: 100%;
	position: relative;
}
.howto ul li .how_to_circle span {
	border-radius: 1000px;
	background: #FFF;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	gap: 20px;
	padding: 25px 20px 0;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}
.howto ul li .how_to_circle + p {
	font-size: 22px;
	color: #636569;
	line-height: 1.5;
	font-weight: 700;
	margin-top: 20px;
	text-align: center;
	margin: 20px auto 0;
}
.howto ul li .how_to_circle + p strong {
	color: #d70029;
}
.howto .also {
	border-top: 5px solid #d70029;
	border-bottom: 5px solid #d70029;
	color: #d70029;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 40px;
	margin-top: 70px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 42px;
	text-align: center;
	font-weight: 900;
}
.howto .also .also_slash {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 0 30px;
	margin: 0 auto;
	width: fit-content;
	line-height: 2;
}
.howto .also .also_slash::before,
.howto .also .also_slash::after {
	background: url(../img/also_slash.svg) 0 0 / contain no-repeat;
	width: 5px;
	height: 40px;
	content: "";
	display: block;
	position: absolute;
}
.howto .also .also_slash::before{
	transform: rotate(-15deg);
	left: 0;
}
.howto .also .also_slash::after {
	transform: rotate(15deg);
	right: 0;
}
.howto .also .also_mark {
	background: linear-gradient(transparent 70%, #ffe100 70%);
	font-size: 62px;
	line-height: 1.2;
	display: inline-block;
	font-weight: 900;
}
.howto .also .also_mark strong {
	font-size: 77px;
	font-weight: 900;
}
.howto .btn {
	background: #e83833;
	border: 10px solid #ee7e65;
	border-radius: 100px;
	color: #FFF;
	display: block;
	filter: drop-shadow(0px 8px 0px #d70029);
	font-size: 36px;
	font-weight: 700;
	width: 100%;
	padding: 20px;
	text-align: center;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 1000px;
	margin: 70px auto 0;
}
.howto .btn:hover {
	background: #f3504e;
}
.howto .btn span {
	display: block;
	position: relative;
	width: fit-content;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}
.howto .btn span::before,
.howto .btn span::after {
	content: "";
	position: absolute;
	right: -60px;
	background: url(../img/howto_kirakira.svg) 0 0 / contain no-repeat;
	width: 35px;
	height: 40px;
}
.howto .btn span::after {
	left: -60px;
	right: auto;
}
.howto .btn + .accordion {
	margin: 40px auto 0;
}
@media (max-width: 767px){
	.howto {
		padding-top: 40px;
	}
	.howto .also_chara {
		width: 70px;
		height: auto;
	}
	.howto .also_haburashi {
		width: 52px;
		height: auto;
	}
	.howto .howto_text {
		font-size: 20px;
		margin-top: 15px;
	}
	.howto .howto_text br {
		display: block;
	}
	.howto ul {
		flex-wrap: wrap;
		justify-content: center;
		margin-top: 20px;
	}
	.howto ul li {
		width: 177px;
	}
	.howto ul li + li {
		margin-top: 40px;
	}
	.howto ul li + li {
		margin-top: 40px;
	}
	.howto ul li .how_to_circle + p {
		font-size: 14px;
	}
	.howto ul li + li::before {
		transform: rotate(90deg);
		width: 7px;
		height: 15px;
		top: -30px;
		left: calc(50% - 7px);
	}
	.howto ul li .how_to_circle span img {
		zoom: 0.55;
	}
	.howto .also {
    font-size: 17px;
    padding: 10px;
    border-width: 2px;
    margin-top: 30px;
 }
	.howto .also .also_slash::before,
	.howto .also .also_slash::after {
    width: 3px;
    height: 20px;
	}
	.howto .also .also_slash {
		padding: 0 15px;
	}
	.howto .also .also_mark,
	.howto .also .also_mark strong {
		font-size: 26px;
	}
	.howto .btn {
		font-size: 19px;
		border-width: 3px;
		padding: 10px;
		margin-top: 30px;
	}
	.howto .btn span::before, .howto .btn span::after {
    right: -30px;
    width: 16px;
    height: 20px;
	}
	.howto .btn span::after {
		right: auto;
		left: -30px;
	}
	.howto .btn + .accordion {
		margin: 30px auto 0;
	}
}
.qa {
	padding: 80px 0;
	padding-left: 8%;
	padding-right: 8%;
}
.qa dl {
	margin-top: 70px;
}
.qa .qa_item {
	position: relative;
}
.qa .qa_item::before {
	position: absolute;
	width: 64px;
	height: 64px;
	display: block;
	content: "";
	background: url(../img/qa_q.svg) 0 0 / contain no-repeat;
	z-index: 10;
	top: 8px;
	left: 8px;
}
.qa .qa_item + .qa_item {
	margin-top: 30px;
}
.qa .qa_item span {
	font-size: 20px;
	font-weight: 700;
	text-align: left;
	width: 100%;
	display: block;
	padding: 0 80px;
}
.qa .qa_item p {
	font-size: 18px;
	line-height: 2;
}
@media (max-width: 767px){ 
	.qa {
	padding: 40px 8%;
}
.qa dl {
	margin-top: 35px;
}
	.qa .qa_item {
		border-radius: 25px;
	}
	.qa .qa_item::before {
		width: 32px;
    height: 32px;
		top: 9px;
		left: 9px;
	}
	.qa .qa_item span {
		font-size: 10px;
		padding: 0 40px;
	}
	.qa .qa_ttl {
		height: 50px;
	}
	.qa .qa_item + .qa_item {
		margin-top: 15px;
	}
	.qa .qa_item p {
	font-size: 10px;
	line-height: 1.75;
} 
}
.btn_brand {
	color: #FFF;
	border: 4px solid #e83833;
	background: #FFF;
	border-radius: 10px;
	color: #d70029;
	filter: drop-shadow(0px 8px 0px #d70029);
	max-width: 800px;
	width: 100%;
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 30px;
	margin: 70px auto 0;
}
.btn_brand:hover {
	background: #fbecee;
}
@media (max-width: 767px){
	.btn_brand {
		padding: 10px;
		margin-top: 40px;
		border-radius: 5px;
		filter: drop-shadow(0px 4px 0px #d70029);
		border: 2px solid #e83833;
	}
}
.sns {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 25px;
	margin-top: 70px;
}
.sns li {
	display: flex;
	justify-content: center;
	align-items: center;
}
.sns li a:hover {
	opacity: 0.7;
}
@media (max-width: 767px){
	.sns {
		gap: 10px;
		margin-top: 35px;
	}
	.sns li a img {
		zoom: 0.5;
	}
}
.footer {
	background: #e83833;
	padding: 70px 0 0;
}
.footer .inner{
	padding-left: 8%;
	padding-right: 8%;
}
.footer .inner > *{
	max-width: 960px;
	margin: 0 auto;
}
.footer .footer_ttl {
	color: #FFF;
	border: 2px solid #FFF;
	border-radius: 100px;
	width: 100%;
	padding: 10px;
	text-align: center;
	margin: 0 auto;
}
.footer .footer_text {
	color: #FFF;
	font-size: 20px;
	font-weight: 500;
	margin: 20px auto 0;
}
.footer .footer_text br {
	display: none;
}
.footer .footer_free_tel {
	width: fit-content;
	margin: 20px auto 0;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 15px;
}
.footer .footer_free_tel + picture {
	margin: 10px auto 0;
	text-align: center;
}
.footer .footer_ttl:nth-child(n+2) {
	margin: 70px auto 0;
}
.footer .footer_free_tel span {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 5px;
}
.footer a {
	display: block;
	transition: all 0.2s;
}
.footer a:hover {
	opacity: 0.5;
}
.footer_sunstar {
	background: #FFF;
	margin-top: 70px;
	padding: 40px;
}
.footer_sunstar .inner {
	max-width: 1400px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	gap: 10px;
	flex-wrap: wrap;
}
.footer_sunstar .footer_sunstar_list {
	display: flex;
	align-items: center;
	justify-content: left;
	gap: 40px;
	max-width: 100%;
	margin: 0;
}
.footer_sunstar .footer_sunstar_list ul {
	display: flex;
	align-items: center;
	justify-content: left;
	flex-wrap: wrap;
}
.footer_sunstar .footer_sunstar_list ul li {
	font-size: 12px;
	padding-right: 5px;
	display: flex;
	align-items: center;
}
.footer_sunstar .footer_sunstar_list ul li + li a {
	padding-left: 5px;
}
.footer_sunstar .footer_sunstar_list ul li + li::before {
	content: "|";
	display: block;
}
.footer_sunstar .footer_sunstar_list + p {
	font-size: 12px;
	max-width: fit-content;
	margin: 0;
}
@media (max-width: 767px){ 
	.footer {
		padding-top: 30px;
	}
	.footer .footer_text {
		font-size: 10px;
		line-height: 1.5;
		text-align: center;
		margin-top: 5px;
	}
	.footer .footer_text br {
		display: block;
	}
	.footer .footer_free_tel {
		flex-wrap: wrap;
		margin-top: 10px;
		gap: 10px;
	}
	.footer .footer_free_tel img {
		zoom: 0.5;
	}
	.footer .footer_ttl {
	font-size: 10px;
		padding:5px;
		border:1px solid;
	}
	.footer .footer_ttl:nth-child(n+2) {
		margin-top: 40px;
	}
	.footer_sunstar {
		padding: 10px 0;
		margin-top: 20px;
	}
	.footer_sunstar .inner {
		flex-wrap: wrap;
		width: 100%;
	}
	.footer_sunstar .footer_sunstar_list {
		flex-direction: column-reverse;
		flex-wrap: wrap;
		width: 100%;
		gap: 10px;
	}
	.footer_sunstar .footer_sunstar_list img {
		zoom: 0.5;
	}
	.footer_sunstar .footer_sunstar_list ul {
		justify-content: center;
		width: 100%;
		gap: 5px 0;
	}
	.footer_sunstar .footer_sunstar_list ul li {
		font-size: 11px;
	}
	.footer_sunstar .footer_sunstar_list + p {
		margin: 0 auto 0;
		font-size:10px;
		text-align: center;
		width: fit-content;
		zoom: 0.9;
	}
}
.pagetop {
	background: #e83833;
	border: 1px solid #FFF;
	color: #FFF;
	font-weight: 700;
	font-size: 18px;
	border-radius: 100px;
	width: 120px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	bottom: 80px;
	right: 80px;
	z-index: 30;
}
.pagetop img {
	display: block;
	width: 100%;
	height: auto;
}
.pagetop:hover {
	opacity: 0.7;
}
@media screen and (max-width: 767px) {
	.pagetop {
		width: 60px;
		height: 60px;
		bottom: 20px;
		right: 20px;
	}
}