.inner {
	max-width: 880px;
}
.pageHeader_title {
	margin-bottom: 1.4em;
    margin-top: .5em;
}
.bg_gray {
	background-color: #eff1f3;
	margin-bottom: 3rem;
	padding-bottom: 3rem;
}
section+section {
	margin-top: 3.5rem;
    border-top: 1px solid #dddedf;
}
.under:nth-of-type(1) {
	margin-bottom: 2.5rem;
}
.bg_gray:nth-of-type(2) h2 {
	padding-top: 6rem;
} 
h2 {
	font-size: 2.4rem;
	padding-top: 3rem;
	margin-bottom: 2rem;
	text-align: center;
}
h3 {
	font-size: 2rem;
	margin-bottom: .5em;
    padding-top: 3.5rem;
}
.inquiry-box {
	width: 90%;
}
.inquiry-box h3 {
	text-align: left;
	padding-top: 0;
}
section .subtitle {
	font-weight: bold;
    margin-bottom: .5rem;
	font-size: 1.6rem;
}
section .subtitle:nth-last-of-type(2) {
    margin-top: 2.5rem;
}
.flex-wrapper.store_logo {
	align-items: baseline;
   flex-wrap: wrap;
}
.flex-wrapper.store_logo li {
	text-align: center;
    width: calc(100%/3);
}
.flex-wrapper.store_logo li p:nth-of-type(2) {
	margin-top: -1.5rem;
}

.btn-secondary {
	border: solid 1px;
	border-radius: 5px;
	padding: 1.2em 0;
   text-align: center;
   display: block;
	position: relative;
}
.btn-secondary::before {
	content: "";
  position: absolute;
  top: 50%;
  left: 93%;
  width: 7px;
  height: 7px;
  border-top: 3px solid #eb2f4c;
  border-right: 3px solid #eb2f4c;
  transform: rotate(45deg);
  margin-top: -4px;
}



/*sp*/
@media screen and (max-width:659px) {
	.bg_gray:nth-of-type(2) h2 {
	  padding-top: 3rem;
	}
	.bg_gray {
		margin-bottom: 0;
	}
	h2+section {
		margin-top: -2.5rem;
	}
	h2 {
		font-size: 2rem;
		text-align: center;
	}
	section .subtitle {
		font-size: 1.3rem;
		text-align: center;
	}
	h3 {
		font-size: 1.6rem;
		text-align: center;
	}
	.flex-wrapper.store_logo {
		flex-direction: inherit;
		justify-content: space-between;
	}
	.flex-wrapper.store_logo li {
		width: calc(90%/2);
	}
	.inquiry-box {
		width: 100%;
	}
	.btn-secondary {
		padding: 1em 0;
	}
}
/*END===sp*/

.accordion dt {
	text-align: center;
	background-color: #ed1b25;
	color: #fff;
	padding: .5rem;
	font-size: 1.8rem;
    position: relative;
}

.accordion dt::before {
  content: "";
  position: absolute;
  top: 25%;
  right: 2.5rem;  
  width: 8px;
  height: 7px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  transform: rotate(135deg);
	transition: .2s;
}
.accordion dt.active::before {
  content: "";
  position: absolute;
  top: 35%;
  width: 8px;
  height: 7px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  transform: rotate(-45deg);
	transition: .2s;
}

.accordion dd {
    display: none;
    border: 2px solid #ed1b25;
}

.register ol {
  padding: 2rem 3rem 1rem 1rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.register ol > li {
  width: calc(88%/4);
  text-align: center;
  background-color: revert;
  position: relative;
  display: flex;
  flex-direction: column;
}
.register ol li p {
  text-align: left;
  margin-top: 1rem;
}
.register ol > li::after {
  content: "";
  background-image: url(/common/images/icon/ic_arrow-r-rd03.png);
  background-size: contain;
  position: absolute;
  display: inline-block;
  width: 10px;
  height: 25px;
  background-repeat: no-repeat;
  right: -12%;
  bottom: 70%;
}
.register ol > li.last::after {
  content: none;
}

@media screen and (max-width:659px) {
    .accordion dt::before {
	content: "";
  position: absolute;
  top: 25%;
  right: 2rem;  
  width: 8px;
  height: 7px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  transform: rotate(135deg);
	transition: .2s;
}
    
	.accordion dt {
	font-size: 1.3rem;
}
.register ol {
    padding: 1.5rem 2.5rem 1.5rem 1rem;
  }
.register ol li {
    width: calc(90%/2);
    flex-direction: column;
    margin: 0;
  }
.register ol li p {
  margin-top: 0;
}
.register ol li::after {
    right: -15%;
  }
}