


@charset "utf-8";
*{
	box-sizing:border-box
}

img{
	width:100%
}
p{
	margin:0
}
.sp{
  display:none
}
@media screen and (max-width:768px){
.pc{
  display:none
}
.sp{
  display:block
}
}
main{
	z-index:100
}
#smartorder{
	margin:0 auto 50px;
	font-size: clamp(14px,1.8vw,16px);
	max-width:1000px;
	line-height: 1.8;
}
#smartorder header{
	/* margin:0 auto 50px; */
	max-width:1000px;
	width: 100%;
	text-align: center;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	height: 37vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
#smartorder header figure{
	margin-bottom: 20px;
}
#smartorder header h1{
	margin-bottom: 15px;
	font-size: clamp(22px,4vw,42px);
	font-weight: 600;
	color: #c2511d;
}
#smartorder header p{
	line-height: 1.8;
	width: 90%;
	margin: 0 auto;
	font-size: clamp(17px, 2.3vw, 22px);
}
#smartorder main .smartorder-section{
	margin: 22vh auto;
	width:90%;
	display: block;
}
#smartorder main .smartorder-section h2{
	margin: 0 0 30px;
	font-size: clamp(19px,2.3vw,28px);
	text-align: center;
}
#smartorder main .smartorder-section h2 span{
	font-size: clamp(15px,1.9vw,17px);
	display: block;
	color: #c2511d;
	letter-spacing: 0.1em;
	line-height: 1.0;
}
#smartorder main .smartorder-section.about{
	margin-top:0;
}
#smartorder main .smartorder-section.about p{
  text-align:center;
}
#smartorder main .smartorder-section.about p span{
  font-weight:600;
  font-size: clamp(19px,2.3vw,28px);
  margin: 0 0 11px;
  display: block;
}
.howto-wrap{
	margin: 0 auto;
	display: grid;
	gap:50px;
	grid-template-columns: 1fr;
	list-style: none;
	max-width: 1500px;
}
.howto-wrap::after{
	display:none
}
.howto-wrap > li{
	border: 3px solid #c2511d;
	padding: 39px 20px;
	position: relative;
	width: 100%;
	display: grid;
	grid-template-columns: 37% 1fr;
	gap:15px;
	justify-content: center;
	align-items: center;
	border-radius: 20px;
}
@media screen and (max-width:768px){
	.howto-wrap > li{
	grid-template-columns: 27% 1fr;
	}
}
.howto-wrap li::after{
	content:"";
	display: block;
	width:10px;
	height: 10px;
	border-top:2px solid;
	border-left: 2px solid;
	position: absolute;
	bottom: -25px;
	left:50%;
	transform: translateX(50%) rotate(-135deg);
}
.howto-wrap > li .icon{
	display:flex;
	justify-content: flex-end;
	align-items:center;
	height: 73px;
}
@media screen and (max-width:768px){
	.howto-wrap > li .icon{
		justify-content: center;
	}
}
.howto-wrap > li .icon img{
	max-width: 45%;
	height: 100%;
	object-fit: contain;
}
.howto-wrap > li.last{
	padding-bottom: 50px;
	font-weight:600;
	font-size: clamp(16px, 1.8vw, 22px);
}
.howto-wrap > li.last .how-title{
	color: #000;
}
.howto-wrap li .how-title{
	font-size: clamp(18px,1.8vw,22px);
	color: #c2511d;
	font-weight: 600;
}
.howto-wrap li p.maintext{
	grid-column: 1/3;
}
.howto-wrap li:nth-of-type(1) .maintext{
	grid-column: 1/2;
}
.howto-wrap li:nth-of-type(2) p.maintext{
	text-align:center;
}
@media screen and (max-width:768px){
	.howto-wrap li:nth-of-type(1) .maintext{
	grid-column: 1/3;
}
	.howto-wrap li:nth-of-type(1) .maintext + figure{
	grid-column: 1/3;
	height:70vh;
}
}
.howto-wrap li:nth-of-type(1) .maintext + figure img,.howto-wrap li:nth-of-type(2) ul li figure img,.howto-wrap > li.last .how-title + figure img{
	width:100%;
	height: 100%;
	object-fit:contain
}
.payment {
    margin: 20px 0 0;
    padding: 20px 15px;
    border: 2px solid;
    border-radius: 15px;
}
@media screen and (max-width:768px){
	.payment {
    margin: 10px 0 0;
  }
}
.payment h3{
    font-size:clamp(16px,2.0vw,18px)
}
.howto-wrap li p.maintext + figure{
	grid-column:2/3
}
.howto-wrap > li.last .how-title + figure{
  grid-column:1/3;
	height:70vh
}
.howto-wrap > li.last  figcaption{
  width:10vw;
  aspect-ratio:1/1;
  border-radius:50%;
  background:#c2511d;
  color:#fff;
  display:flex;
  justify-content:center;
  align-items:center;
  margin: 18px auto 0;
}
@media screen and (max-width:768px){
	.howto-wrap > li.last  figcaption{
  width:30vw;
  max-width: 117px;
}
}
.howto-wrap li:nth-of-type(2) ul{
	margin-top:20px;
	grid-column: 1/3;
	display: grid;
	gap:15vh;
}
.howto-wrap li:nth-of-type(2) ul li{
	position:relative
}
.howto-wrap li:nth-of-type(2) ul li::after{
	content:"";
	display: block;
	width:0;
	height:0;
	border-style:solid;
	border-width: 30px 30px 0 30px; 
	border-color: #C2511D transparent transparent transparent;
	position: absolute;
	bottom: -9vh;
	right: 50%;
	left: auto;
	transform: translateX(50%);
}
.howto-wrap li:nth-of-type(2) ul h3{
	text-align:center;
	margin-bottom:10px;
	font-weight:600
}
.howto-wrap li:nth-of-type(2) ul li figure,.howto-wrap li.last ul li .how-title + figure{
	height:70vh
}
.howto-wrap li.last::after,.howto-wrap li:nth-of-type(2) ul li:last-of-type::after{
	display:none
}

#faq dl dt{
	background: #ededed;
	padding: 10px 15px 10px 55px;
	font-weight: 600;
	display: flex;
	gap: 15px;
	align-items: center;
	position:relative
}
#faq dl dt::before{
	content:"Q";
	color: #fff;
	background:#000;
	width: 40px;
	display: inline-flex;
	aspect-ratio: 1/1;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 0;
}
#faq dl dd{
	background: #fff;
	padding: 10px 15px 10px 55px;
	position:relative;
	margin: 0;
}
#faq dl dd::before{
	content:"A";
	color: #000000;
	background: #ededed;
	width: 40px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 0;
	top:0;
	height: 100%;
	font-weight: 600;
}

/* 応募規約 */
.modal {
	position: relative;
	z-index: 100;
}
div#modal-wrap.active .modal-content{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background: #fff;
	color: #000;
	height: 76vh;
	width: 94vw;
	z-index: 1000;
	padding: 59px 30px 30px;
	box-sizing: border-box;
	max-width: 600px;
}
.modal .modal-bt{
	margin: 20px auto 0;
	border-radius: 100vh;
	max-width: 300px;
	cursor: pointer;
	padding: 9px 8px 8px;
	background: #6b6b6b;
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	z-index: 0;
	position: relative;
	font-size: 1.2rem;
}
div#modal-wrap {
	opacity: 0;
	display: none;
}
div#modal-wrap.active {
	animation: fade 0.3s forwards;
	opacity: 1;
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	height:100vh;
	width: 100vw;
	background: #00000078;
	z-index: 10000000;
}
@keyframes fade{
	0%{
			opacity:0
	}
	100%{
			opacity:1;
			display:block
	}
}
button.js-modal-close {
    background: transparent;
    border: none;
    position: relative;
    width: 36px;
    height: 31px;
    position: absolute;
    top: 10px;
    left: 10px;
}
button.js-modal-close::before,button.js-modal-close::after {
    content: "";
    display: block;
    width: 100%;
    transform: rotate(45deg);
    height: 2px;
    background: #000;
}
button.js-modal-close::after{
    transform: rotate(135deg) translateY(1px);
}
.p-top-terms__inner {
  -webkit-overflow-scrolling: touch;
  height: 100%;
  overflow-y: scroll;
  padding: 50px 30px;
  position: relative;
  z-index: 11;
}
@media print, screen and (min-width: 768px) {
  .p-top-terms__inner {
    margin: 0 auto;
    padding: 100px 50px;
    width: 820px;
  }
}
.p-top-terms__content {
  margin: 0;
  padding: 0;
  overflow-y: scroll;
  height: 100%;
  width: 100%;
  text-align: left;
}
.p-top-terms__content h2 {
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin: 0;
  text-align: center;
  position:relative;
  padding: 20px 0 0;
}
.p-top-terms__content h2 span{
	position:absolute;
	font-size:11px;
	letter-spacing:0rem;
	top: 14px;
	right: 24px;
	transform:translateY(-100%)
}
@media print, screen and (min-width: 768px) {
  .p-top-terms__content h2 {
    font-size: 18px;
    letter-spacing: 0.3em;
  }
}
.p-top-terms__content h3 {
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin: 20px 0 40px 0;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .p-top-terms__content h3 {
    font-size: 18px;
    letter-spacing: 0.3em;
  }
}
.p-top-terms__content h4 {
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin: 30px 0 0 0;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .p-top-terms__content h4 {
    font-size: 15px;
    letter-spacing: 0.3em;
  }
}
.p-top-terms__content p {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin: 20px 0 0 0;
}
@media print, screen and (min-width: 768px) {
  .p-top-terms__content p {
    letter-spacing: 0.3em;
  }
}
.p-top-terms__content ul {
  margin: 20px 0 0 0;
}
.p-top-terms__content ul li {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  list-style-type: none;
  margin-bottom: 5px;
  margin-left: 1.5em;
}
@media print, screen and (min-width: 768px) {
  .p-top-terms__content ul li {
    letter-spacing: 0.3em;
  }
}
.p-top-terms__content ol {
  margin: 20px 0 0 0;
}
.p-top-terms__content ol li {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  list-style-type: none;
  margin-bottom: 5px;
  margin-left: 1.5em;
}
@media print, screen and (min-width: 768px) {
  .p-top-terms__content ol li {
    letter-spacing: 0.3em;
  }
}
.p-top-terms__content ol li::first-letter {
  margin-left: -1em;
}
.p-top-terms__content a {
  text-decoration: underline;
}
@media print, screen and (max-width: 767px) {
  .wrap_column .box_col2 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
  }

    
.store-wrap .box_button .button{
    max-width: 300px;
    margin: 10px auto;
}


.box_button .button_small,.box_button .button {
	border-color: #c2511d;
	background-color: #c2511d;
	color:#fff;
	padding:15px 10px;
	margin: 0;
	font-size:18px;
	font-weight: 600;
	display:block;
	width: 100%;
	max-width: 100%;
	border-radius:5px;
}

@media print, screen and (min-width: 768px) {
    .box_button {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 10px;
    }
}

.box_button {
    margin: 30px auto;
    text-align: center;
}
.box_button .button {
    display: inline-block;
    margin: 0 10px;
}



