@charset "utf-8";

/* accordion common */
.accordionPanel {
	display: block;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
	visibility: hidden;
}
.accordionItem.open .accordionPanel {
	max-height: 100rem;/* 大きめに設定。実際の高さはjsで取得 */
	visibility: visible;
}
.accordionPanel:focus {
	outline: none;
}
@media (max-width: 768px) {
}

main .inner {
	max-width: 76.5rem;
}
@media (max-width: 768px) {
	main .inner {
		max-width: 100%;
	}
}

/* anchor */
.anchor {
	display: flex;
	justify-content: center;
	gap: 0 3.5rem;
}
.anchor li {
	width: 36rem;
}
.anchor li a {
	display: block;
	padding: 1.5rem 2rem 3.5rem;
	border: solid 0.3rem;
	border-radius: 1rem;
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 3.2rem;
	text-align: center;
	position: relative;
}
.anchor li a::after {
	display: block;
	content: '';
	width: 1.3rem;
	height: 1.3rem;
	border-bottom: solid 0.3rem;
	border-right: solid 0.3rem;
	transform: rotate(45deg);
	position: absolute;
	bottom: 1.5rem;
	left: calc(50% - 0.6rem);
}
.anchor li.jidou a {
	border-color: #8267ab;
	color: #8267ab;
}
.anchor li.jidou a::after {
	border-color: #8267ab;
}
.anchor li.raiten a {
	border-color: #ee6e76;
	color: #ee6e76;
}
.anchor li.raiten a::after {
	border-color: #ee6e76;
}
@media (max-width: 768px) {
	.anchor {
		gap: 0 3rem;
	}
	.anchor li {
		width: 33rem;
	}
	.anchor li a {
		padding: 2rem 1rem 5rem 1rem;
		border-width: 0.5rem;
		border-radius: 2rem;
		font-size: 3.3rem;
		line-height: 4.3rem;
	}
	.anchor li a::after {
		width: 2rem;
		height: 2rem;
		border-width: 0.4rem;
		bottom: 2rem;
		left: calc(50% - 1rem);
	}
}

/* present */
.present {
	margin: 6rem auto 0;
	padding: 3rem 2.8rem;
	max-width: 70rem;
	border: solid 0.2rem #e84f96;
}
.present h2 {
	font-size: 2.6rem;
	font-weight: bold;
	color: #e84f96;
	text-align: center;
}
.present h2 span {
	background: linear-gradient(transparent 60%, #ffe1ef 60%);
}
.present .lead {
	margin-top: 1rem;
	font-size: 1.5rem;
}
.present .wrap {
	margin-top: 1rem;
	display: flex;
	gap: 0 3rem;
}
.present .wrap .txt {
	font-size: 2.2rem;
	font-weight: bold;
}
.present .wrap .txt span {
	font-size: 2.5rem;
	color: #e84f96;
}
.present .wrap .pic {
	width: 9.8rem;
	flex-shrink: 0;
}
.present .notice {
	margin-top: 2rem;
}
.present .notice button {
	width: 100%;
	padding: 1rem;
	background: #f0f0f0;
	border-radius: 0.5rem;
	font-weight: bold;
	text-align: center;
	color: inherit;
}
.present .notice button span {
	position: relative;
}
.present .notice button .accordionIcon {
	position: absolute;
	top: 0;
	right: -2rem;
	bottom: 0;
	width: 1rem;
	height: 1rem;
	margin: auto;
	border-top: solid 0.2rem #000;
	border-right: solid 0.2rem #000;
	transform: rotate(135deg);
	transition: transform 0.3s ease;
}
.present .notice button[aria-expanded="true"] .accordionIcon {
	transform: rotate(-45deg);
	top: 0.5rem;
}
.present .notice ul {
	margin-top: 1rem;
	font-size: 1.3rem;
	padding-left: 1em;
	text-indent: -1em;
}
@media (max-width: 768px) {
	.present {
		padding: 4rem;
		border-width: 0.4rem;
	}
	.present h2 {
		font-size: 4.2rem;
	}
	.present .lead {
		margin-top: 2rem;
		font-size: 2.8rem;
	}
	.present .wrap {
		gap: 0 2rem;
	}
	.present .wrap .txt {
		font-size: 3rem;
		line-height: 4.5rem;
	}
	.present .wrap .txt span {
		font-size: 4rem;
	}
	.present .wrap .pic {
		width: 17.5rem;
	}
	.present .notice {
		margin-top: 3rem;
	}
	.present .notice button {
		font-size: 2.8rem;
		border-radius: 1rem;
	}
	.present .notice button .accordionIcon {
		right: -3.5rem;
		width: 1.8rem;
		height: 1.8rem;
		border-width: 0.4rem;
	}
	.present .notice button[aria-expanded="true"] .accordionIcon {
		transform: rotate(-45deg);
		top: 0.5rem;
	}
	.present .notice ul {
		margin-top: 3rem;
		font-size: 2.4rem;
	}
}

/* flow */
.flow {
	margin-top: 6rem;
}
.flow h2 {
	font-size: 2.5rem;
	font-weight: bold;
	text-align: center;
	line-height: 3.7rem;
}
.flow .lead {
	margin-top: 1.5rem;
	font-size: 1.5rem;
	line-height: 2.2rem;
	text-align: center;
}
.flow .note {
	margin-top: 0.5rem;
	padding-left: 1em;
	text-indent: -1em;
	font-size: 1.3rem;
	line-height: 1.9rem;
}
.flow .lead + .note {
	text-align: center;
}
.flowType > div {
	margin-top: 2.5rem;
}
.flowType button {
	padding: 1.5rem 4.5rem 1.5rem 3rem;
	font-size: 2rem;
	font-weight: bold;
	color: #fff;
	border-radius: 0.6rem;
	width: 100%;
	text-align: left;
	position: relative;
}
.flowType button::after,
.flowType button::before {
	content: "";
	position: absolute;
	right: 2.8rem;
	top: calc(50% - 1.1rem);
	width: 0.2rem;
	height: 2.2rem;
	background: #fff;
	transition: all 0.3s;
}
.flowType button::after {
	transform: rotate(90deg);
}
.flowType button[aria-expanded="true"]::before {
	transform: rotate(90deg);
}
.flowType .flowDetail {
	margin-top: 2.5rem;
	margin-bottom: 3rem;
}
.flowType .flowDetail .period {
	font-weight: bold;
	text-align: center;
}
.flowType .flowDetail .send {
	margin-top: 1rem;
	text-align: center;
}
.flowType .step {
	margin: 2.5rem auto 0;
	max-width: 70rem;
	display: flex;
	align-items: center;
	gap: 0 2rem;
	padding: 1rem 1.5rem;
	border-radius: 0.5rem;
	position: relative;
}
.flowType .step + .step {
	margin-top: 4rem;
}
.flowType .step + .step::before {
	display: block;
	content: "";
	width: 5.6rem;
	height: 1.8rem;
	position: absolute;
	top: -2.8rem;
	left: calc(50% - 2.8rem);
	background-size: contain;
	background-repeat: no-repeat;
}
.flowType .step .icon {
	flex-shrink: 0;
	width: 5.6rem;
	height: 5.6rem;
	font-size: 1.3rem;
	font-weight: bold;
	color: #fff;
	line-height: 2rem;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.flowType .step .icon span {
	font-size: 1.8rem;
}
.flowType .step .txt {
	font-weight: bold;
}
.flowType .step .txt a {
	text-decoration: underline;
}
.flowType .bring {
	margin: 2.5rem auto 0;
	max-width: 70rem;
}
.flowType .bring > p {
	font-size: 1.6rem;
	font-weight: bold;
}
.flowType .bring .wrap {
	margin-top: 1rem;
	display: flex;
	gap: 0 1.4rem;
}
.flowType .bring .box {
	padding: 1.2rem 1.5rem;
	width: 22.4rem;
	font-size: 1.5rem;
	font-weight: bold;
	background-color: #faf3f8;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	gap: 0 0.7rem;
}
.flowType .bring .box .icon {
	width: 2.6rem;
	height: 2.6rem;
	background-color: #ee6e76;
	border-radius: 50%;
	font-size: 1.4rem;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.flowType .bring + .note {
	margin-top: 3rem;
}
.flowType .btn {
	margin: 3rem auto 0;
	width: 42rem;
}
.flowType .btn a {
	display: block;
	padding: 0.8rem;
	border-radius: 1rem;
	border: solid 0.2rem;
	font-weight: bold;
	text-align: center;
	position: relative;
}
.flowType .btn a::before {
	display: block;
	content: '';
	width: 1rem;
	height: 1rem;
	border-right: solid 0.2rem;
	border-bottom: solid 0.2rem;
	transform: rotate(-45deg);
	position: absolute;
	right: 1.5rem;
	top: calc(50% - 0.5rem);
}
.flowType .btn + .note {
	margin-top: 2rem;
}
.flowType .charge {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 0.1rem solid;
	display: flex;
	align-items: center;
	gap: 0 1.5rem;
}
.flowType .step + .charge {
	margin-top: 4rem;
}
.flowType .charge .lastMonth {
	flex-shrink: 0;
	width: 17rem;
	padding: 0.5rem 0rem 0.5rem 1rem;
	font-size: 1.4rem;
	line-height: 1.9rem;
	color: #fff;
	text-align: center;
	border-radius: 0.5rem;
	background-color: #8267ab;
}
.flowType .charge .txt {
	font-weight: bold;
}
.flowType .charge + .note {
	margin-top: 2rem;
}
.jidou h2 {
	color: #8267ab;
}
.jidou .flowType button {
	background-color: #8267ab;
}
.jidou .step {
	background-color: #f3f1f8;
}
.jidou .flowType .step + .step::before {
	background-image: url('/member/info/expiration/top/img/flow_icon_arrow01.png');
}
.jidou .step .icon {
	background-color: #8267ab;
}
.jidou .flowType .btn a {
	border-color: #8267ab;
	color: #8267ab;
}
.jidou .flowType .btn a::before {
	border-color: #8267ab;
}
.jidou .flowType .charge {
	border-color: #8267ab;
}
.jidou .flowType .charge .lastMonth {
	background-color: #8267ab;
}
.raiten h2 {
	color: #ee6e76;
}
.raiten .flowType button {
	background-color: #ee6e76;
}
.raiten .step {
	background-color: #faf3f8;
}
.raiten .flowType .step + .step::before {
	background-image: url('/member/info/expiration/top/img/flow_icon_arrow02.png');
}
.raiten .step .icon {
	background-color: #ee6e76;
}
.raiten .flowType .btn a {
	border-color: #ee6e76;
	color: #ee6e76;
}
.raiten .flowType .btn a::before {
	border-color: #ee6e76;
}
.raiten .flowType .charge {
	border-color: #ee6e76;
}
.raiten .flowType .charge .lastMonth {
	background-color: #ee6e76;
}
@media (max-width: 768px) {
	.flow {
		margin-top: 9rem;
	}
	.flow h2 {
		font-size: 4rem;
		line-height: 5.6rem;
	}
	.flow .lead {
		margin-top: 2rem;
		font-size: 2.8rem;
		line-height: 4.2rem;
		text-align: left;
	}
	.flow .note {
		margin-top: 1rem;
		font-size: 2.4rem;
		line-height: 3.6rem;
	}
	.flow .lead + .note {
		text-align: left;
	}
	.flowType > div {
		margin-top: 3.5rem;
	}
	.flowType button {
		padding: 2rem 7rem 2rem 5rem;
		font-size: 3rem;
		line-height: 3.9rem;
		border-radius: 1.5rem;
	}
	.flowType button::after,
	.flowType button::before {
		right: 4.2rem;
		top: calc(50% - 1.8rem);
		width: 0.4rem;
		height: 3.6rem;
	}
	.flowType .flowDetail {
		margin-top: 3.5rem;
		margin-bottom: 4rem;
		font-size: 2.8rem;
	}
	.flowType .flowDetail .period {
		padding-left: 1em;
		text-indent: -1em;
		text-align: left;
	}
	.flowType .flowDetail .send {
		text-align: left;
	}
	.flowType .step {
		margin-top: 4rem;
		padding: 2rem;
		border-radius: 1.5rem;
	}
	.flowType .step + .step {
		margin-top: 7.5rem;
	}
	.flowType .step + .step::before {
		width: 10rem;
		height: 3.2rem;
		top: -5.2rem;
		left: calc(50% - 5rem);
	}
	.flowType .step .icon {
		width: 9.2rem;
		height: 9.2rem;
		font-size: 2.1rem;
		line-height: 3rem;
	}
	.flowType .step .icon span {
		font-size: 3rem;
	}
	.flowType .bring {
		margin: 4rem auto 0;
	}
	.flowType .bring > p {
		font-size: 2.8rem;
	}
	.flowType .bring .wrap {
		margin-top: 2rem;
		flex-direction: column;
		gap: 3rem 0;
	}
	.flowType .bring .box {
		padding: 2rem;
		width: 100%;
		font-size: 2.8rem;
		border-radius: 1.5rem;
		gap: 0 1.8rem;
	}
	.flowType .bring .box .icon {
		width: 5.6rem;
		height: 5.6rem;
		font-size: 2.6rem;
	}
	.flowType .bring + .note {
		margin-top: 4rem;
	}
	.flowType .btn {
		margin: 5rem auto 0;
		width: 90%;
	}
	.flowType .btn a {
		padding: 1.5rem 5rem 1.5rem 1.5rem;
		border-radius: 1.5rem;
		border-width: 0.4rem;
	}
	.flowType .btn a::before {
		width: 1.5rem;
		height: 1.5rem;
		border-width: 0.3rem;
		right: 2rem;
		top: calc(50% - 0.7rem);
	}
	.flowType .btn + .note {
		margin-top: 3rem;
	}
	.flowType .charge {
		margin-top: 3.5rem;
		padding-top: 4rem;
		border-width: 0.2rem;
		align-items: flex-start;
	}
	.flowType .step + .charge {
		margin-top: 6rem;
	}
	.flowType .charge .lastMonth {
		width: 20rem;
		padding: 1rem 0rem 1rem 1rem;
		font-size: 2.6rem;
		line-height: 3.3rem;
	}
	.flowType .charge .txt {
		font-size: 2.8rem;
		line-height: 4.2rem;
	}
}

/* points */
.mainContents .points {
	margin-top: 7rem;
}
.mainContents .points h3 {
	font-size: 2.5rem;
	padding-bottom: 1.3rem;
	border-bottom: 2px solid #eb50a0;
	color: #eb50a0;
	text-align: center;
	line-height: 1.52;
}
.mainContents .points .txt {
	margin-top: 2rem;
	font-size: 1.5rem;
	line-height: 1.6;
}
.mainContents .points .txt li + li {
	margin-top: 2.5rem;
}
.mainContents .points .txt li span {
	font-size: 1.3rem;
	line-height: 1.38;
}
.mainContents .points .txt li a {
	text-decoration: underline;
}
.mainContents .points .btn {
	margin: 3rem auto 0;
	width: 24rem;
}
.mainContents .points .btn a {
	display: block;
	border: solid 3px #ef8bb6;
	border-radius: 0.8rem;
}
.mainContents .points .btn a span {
	display: block;
	padding: 3rem 1rem;
	border: solid 2px #fff;
	border-radius: 0.5rem;
	background: #ef8bb6;
	font-size: 1.9rem;
	color: #fff;
	text-align: center;
	position: relative;
}
.mainContents .points .btn a span::after {
	content: "";
	border-style: solid;
	border-width: 1rem 1.2rem 0 1.2rem;
	border-color: #fff transparent transparent transparent;
	position: absolute;
	bottom: 0.8rem;
	left: calc(50% - 1.2rem);
}
.mainContents .points .note {
	margin-top: 6rem;
	padding-top: 1rem;
	border-top: 2px solid #eb50a0;
	font-size: 1.3rem;
	line-height: 1.38;
}
.mainContents .points .note a {
	color: #d31176;
	text-decoration: underline;
}
@media (max-width: 768px) {
	.mainContents .points {
		margin-top: 5rem;
	}
	.mainContents .points h3 {
		font-size: 4rem;
	}
	.mainContents .points .txt {
		margin-top: 3rem;
		font-size: 2.8rem;
		line-height: 1.38;
	}
	.mainContents .points .txt li + li {
		margin-top: 3rem;
	}
	.mainContents .points .txt li span {
		font-size: 2.6rem;
		line-height: 1.33;
	}
	.mainContents .points .btn {
		margin: 6rem auto 0;
	}
	.mainContents .points .btn a span {
		font-size: 2.2rem;
	}
	.mainContents .points .note {
		margin-top: 6rem;
		padding-top: 2rem;
		font-size: 2.6rem;
		line-height: 1.33;
	}
}
