@charset "UTF-8";
/* ----------------------------------------------------
 共有
---------------------------------------------------- */
/*--- ボタン ---*/
.btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 340px;
	height: 60px;
	border: 1px solid #CA931A;
	background: rgba(195, 146, 37, 0.1);
	color: #CA931A;
	text-align: center;
	font-size: min(1.8rem, 1.318vw);
	font-style: normal;
	font-weight: 500;
	line-height: 30px;
	margin: 0 18px;
	position: relative;
	cursor: pointer;
	transition: all 0.6s ease 0s;
}
.btn::after {
	content: '';
	background: url(../img/arrow01.svg) no-repeat;
	background-size: 100%;
	display: block;
	width: 10px;
	height: 5px;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.btn.typeB::after {
	background: url(../img/arrow01.svg) no-repeat;
	background-size: 100%;
	transform: rotate(-90deg);
	top: 45%;
	right: 15px;
}

.btn:hover {
	border: 1px solid #CA931A;
	background: rgba(195, 146, 37, 0.8);
	opacity: 1;
	color: #fff;
}
.btn:hover::after {
	background: url(../img/arrow02.svg) no-repeat;
	background-size: 100%;
}

@media screen and (max-width: 768px) {
	.btn {
		width: 100%;
		font-size: min(1.8rem, 4.8vw);
		margin: 0;
	}
}

.btnB {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	padding-bottom: 4px;
	cursor: pointer;
	margin: 30px 0;
}

.btn__arrow {
	width: 12px;
	height: auto;
	display: block;
}

.btnB::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 100%;
	background: linear-gradient(
		to right,
		rgba(202, 147, 26, 0.3) 0%,
		rgba(202, 147, 26, 0.3) 83%,
		rgba(202, 147, 26, 1) 83%,
		rgba(202, 147, 26, 1) 100%
	);
}

/* ホバー時のアニメーション線（右 → 左） */
.btnB::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 100%;
	background: rgba(202, 147, 26, 1);
	transform-origin: right center;
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.btnB:hover::before {
	transform: scaleX(1);
}

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

/*---end ボタン ---*/

/*--- モーダル ---*/
.modal {
	position: fixed;
	inset: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s ease;
	z-index: 1000;
}

.modal--active {
	opacity: 1;
	pointer-events: auto;
}

.modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.5);
}

.modal__content {
	position: relative;
	z-index: 2;
	background: #fff;
	border-radius: 10px;
	padding: 54px 30px 68px;
	max-width: 884px;
	width: 100%;
}

.modal__close {
	appearance: none;
	-webkit-appearance: none;
	border: none;
	background: none;
	padding: 0;
	margin: 0;
	outline: none;
	font: inherit;
	color: inherit;
	cursor: pointer;
}

.modal__content .area_logo {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.modal__content .area_logo a {
	display: block;
	width: 28.3333%;
	margin: 0 14px 28px;
}

@media screen and (max-width: 768px) {
	.modal__content {
		padding: 35px 15px 56px;
		width: 90%;
		max-height: 100vh;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
	.modal__content .area_logo a {
		width: 47%;
		margin: 0 4px 10px;
	}
}
/*---end モーダル ---*/

.note {
	font-size: min(1.2rem, 0.878vw);
}
.note::before {
	content: '※';
}

@media screen and (max-width: 768px) {
	.note {
		font-size: min(1.2rem, 3.2vw);
	}
}

/* ----------------------------------------------------
 lead
---------------------------------------------------- */
.lead {
	padding: 112px 0;
	text-align: center;
}

.lead h2 {
	font-size: min(3rem, 2.196vw);
	font-weight: 500;
	line-height: 60px;
	letter-spacing: 3px;
	margin-bottom: 47px;
}

.lead .txt01,
.lead .txt02,
.lead .txt03 {
	font-size: min(1.8rem, 1.318vw);
	font-weight: 500;
	line-height: 42px;
	letter-spacing: 1.8px;
}

.lead .txt01 {
	margin-bottom: 10px;
}

.lead .txt02 {
	margin-bottom: 30px;
}

.lead .txt03 {
	margin-bottom: 60px;
}

.lead .area_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 13px;
}

.lead .inner {
	max-width: 884px;
	margin: 84px auto 0;
	padding: 47px 0;
	border-radius: 10px;
	background: #F3F3F3;
}

.lead .inner h3 {
	font-size: min(2.3rem, 1.684vw);
	font-weight: 500;
	line-height: 52px;
	letter-spacing: 2.3px;
}

.lead .inner .txt2 {
	font-weight: 500;
	line-height: 32px;
	letter-spacing: 1.6px;
	margin-top: 12px;
}

.lead .inner .border {
	width: 84.3%;
	height: 1px;
	background: #1E1E1E;
	margin: 33px auto;
}

.lead .inner .data li {
	font-weight: 500;
	line-height: 32px;
	letter-spacing: 1.6px;
}

@media screen and (max-width: 768px) {
	.lead {
		padding: 60px 15px 102px;
	}
	.lead h2 {
		font-size: min(2.3rem, 6.133vw);
		line-height: 50px;
		letter-spacing: 2.3px;
		margin-bottom: 32px;
	}
	.lead .txt01,
	.lead .txt02,
	.lead .txt03 {
		font-size: min(1.5rem, 4vw);
		line-height: 33px;
		letter-spacing: 1.5px;
	}
	.lead .txt01 {
		margin-bottom: 10px;
	}
	.lead .txt02 {
		margin-bottom: 20px;
	}
	.lead .txt03 {
		margin-bottom: 50px;
	}
	.lead .area_btn {
		display: block;
		margin-top: 0;
	}
	.lead .area_btn .btn {
		margin-bottom: 22px;
	}
	.lead .area_btn .btn:last-child {
		margin-bottom: 0;
	}
	.lead .inner {
		margin: 60px auto 0;
		padding: 42px 19px;
	}
	.lead .inner h3 {
		font-size: min(2rem, 5.333vw);
	}
	.lead .inner .txt2 {
		font-size: min(1.5rem, 4vw);
		line-height: 33px;
		letter-spacing: 1.5px;
		margin-top: 12px;
	}
	.lead .inner .border {
		width: 100%;
		margin: 29px auto;
	}
	.lead .inner .data li {
		font-size: min(1.3rem, 3.467vw);
		line-height: 27.757px;
		letter-spacing: 1.332px;
	}
	.lead .inner .data li span {
		display: none;
	}
}

/* ----------------------------------------------------
 tax-payment
---------------------------------------------------- */
.tax-payment {
	background: rgba(202, 147, 26, 0.15);
	padding: 83px 0 89px;
	text-align: center;
}

.tax-payment h2 {
	color: #CA931A;
	font-size: min(2.7rem, 1.977vw);
	font-weight: 500;
	line-height: 52px;
	letter-spacing: 2.7px;
}

.tax-payment .txt {
	font-weight: 500;
	line-height: 32px;
	letter-spacing: 1.6px;
	margin-top: 23px;
}

.tax-payment .contents {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 35px;
}

.tax-payment .contents li {
	display: flex;
	justify-content: center;
	align-items: center;
	background: url(../img/frame.webp) no-repeat;
	background-size: 100%;
	width: 170px;
	height: 180px;
	margin: 0 13.5px;
	color: #CA931A;
	font-size: min(1.8rem, 1.318vw);
	font-weight: 500;
	line-height: 30px;
}

.tax-payment .contents li .number {
	color: #CA931A;
	font-family: var(--baskerville);
	font-size: min(3rem, 2.196vw);
	font-style: italic;
	font-weight: 400;
	line-height: 30px;
	margin: 0 auto 10px;
}

.tax-payment .inner {
	max-width: 884px;
	margin: 38px auto 0;
	border-radius: 10px;
	background: #FFF;
	padding: 70px 0;
}

.tax-payment .inner h3 {
	color: #CA931A;
	font-size: min(1.8rem, 1.318vw);
	font-weight: 500;
	line-height: 30px;
}

.tax-payment .inner .area_list {
	max-width: 659px;
	margin: 40px auto 0;
	display: flex;
	text-align: left;
}

.tax-payment .inner .area_list .number {
	color: #CA931A;
	font-family: var(--baskerville);
	font-size: min(4rem, 2.928vw);
	font-style: italic;
	font-weight: 400;
	line-height: 30px;
	padding-top: 9px;
}

.tax-payment .inner .area_list .txt2 {
	font-weight: 500;
	line-height: 32px;
	letter-spacing: 1.6px;
	margin-left: 45px;
}

.tax-payment .inner .area_list .txt2.typeB {
	line-height: 26px;
}

.tax-payment .inner .area_list .txt2 .note {
	font-weight: 500;
	line-height: 25px;
	letter-spacing: 1.2px;
}

.tax-payment .inner .area_list .txt2 .emphasis {
	color: #CA931A;
}
.tax-payment .inner .area_list .txt2 .emphasis::before {
	content: '◎';
}

.tax-payment .btnB {
	width: 180px;
	color: #CA931A;
	font-size: min(1.8rem, 1.318vw);
	font-weight: 500;
	line-height: 30px;
	margin-top: 36px;
}

/*--- accordion ---*/
.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height .6s ease;
	padding-left: 0;
}

.accordion-content.is-open {
	max-height: 1100px;
}

.accordion-trigger.is-open .btn__arrow {
	transform: rotate(180deg);
	transition: transform .3s ease;
}

.accordion-content .inner {
	max-width: 884px;
	margin: 38px auto 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	border-radius: 10px;
	background: #FFF;
	padding: 70px 62px;
	text-align: left;
}

.accordion-content .inner .box {
	width: 46%;
	margin-bottom: 50px;
}

.accordion-content .inner .box h3 {
	border-bottom: 1px dotted #CA931A;
	padding-bottom: 10px;
}

.accordion-content .inner .box p {
	font-size: min(1.4rem, 1.025vw);
	font-weight: 500;
	line-height: 26px;
	padding-top: 10px;
}
/*---end accordion ---*/


@media screen and (max-width: 768px) {
	.tax-payment {
		padding: 50px 15px 54px;
	}
	.tax-payment h2 {
		font-size: min(2.3rem, 6.133vw);
	}
	.tax-payment .txt {
		line-height: 33px;
		letter-spacing: 1.5px;
		margin-top: 12px;
		text-align: left;
	}
	.tax-payment .contents {
		justify-content: space-between;
		flex-wrap: wrap;
		margin-top: 35px;
	}
	.tax-payment .contents li {
		width: 48%;
		height: 47vw;
		margin: 0 0 12px;
		font-size: min(1.7rem, 4.533vw);
		line-height: 28.635px;
	}
	.tax-payment .contents li .number {
		font-size: min(2.8rem, 7.467vw);
		line-height: 28.635px;
	}
	.tax-payment .inner {
		margin: 34px auto 0;
		padding: 39px 20px 45px;
	}
	.tax-payment .inner h3 {
		font-size: min(1.8rem, 4.8vw);
	}
	.tax-payment .inner .area_list {
		margin: 33px auto 0;
		display: flex;
		text-align: left;
	}
	.tax-payment .inner .area_list .number {
		font-size: min(4rem, 10.667vw);
		padding-top: 9px;
	}
	.tax-payment .inner .area_list .txt2 {
		line-height: 25px;
		letter-spacing: 1.5px;
		margin-left: 20px;
	}
	.tax-payment .inner .area_list .txt2.typeB {
		line-height: 25px;
	}
	.tax-payment .inner .area_list .txt2 .note {
		line-height: 20px;
		letter-spacing: 1.5px;
	}
	.tax-payment .btnB {
		font-size: min(1.8rem, 4.8vw);
		margin-top: 35px;
	}

	/*--- accordion ---*/
	.accordion-content.is-open {
		max-height: 1650px;
	}
	.accordion-content .inner {
		margin: 10px auto 0;
		padding: 39px 20px;
	}
	.accordion-content .inner .box {
		width: 100%;
		margin-bottom: 30px;
	}
	.accordion-content .inner .box p {
		font-size: min(1.4rem, 3.733vw);
		font-weight: 500;
		line-height: 26px;
		padding-top: 10px;
	}
	/*---end accordion ---*/
}

/* ----------------------------------------------------
 return-gift
---------------------------------------------------- */
.return-gift {
	padding: 121px 0 127px;
}

.return-gift h2 {
	color: #CA931A;
	text-align: center;
	font-size: min(2.7rem, 1.977vw);
	font-weight: 500;
	line-height: 52px;
	letter-spacing: 2.7px;
	margin-bottom: 45px;
}

.return-gift h2 .icon {
	width: 88.209px;
	margin: 0 auto 18px;
}

.return-gift .contents {
	max-width: 1140px;
	margin: 0 auto;
	padding-bottom: 100px;
	text-align: center;
}

.return-gift .contents h3 {
	color: #CA931A;
	font-size: min(2.3rem, 1.684vw);
	font-weight: 500;
	line-height: 30px;
	letter-spacing: 2.3px;
	margin-top: 22px;
}

.return-gift .contents h3 .en {
	display: block;
	font-family: var(--baskerville);
	font-size: min(1.6rem, 1.171vw);
	font-weight: 400;
	letter-spacing: 1.6px;
}

.return-gift .contents .txt {
	font-weight: 500;
	line-height: 32px;
	letter-spacing: 1.6px;
	margin-top: 20px;
}

.return-gift .contents .price {
	font-size: min(1.8rem, 1.318vw);
	font-weight: 500;
	line-height: 42px;
	letter-spacing: 1.8px;
	margin-top: 20px;
}

.return-gift .contents .btn {
	background: rgba(195, 146, 37, 0.8);
	color: #fff;
	height: 50px;
	margin: 7px auto 0;
}
.return-gift .contents .btn::after {
	background: url(../img/arrow04.svg) no-repeat;
	background-size: 100%;
	width: 8.333px;
	height: 12px;
}
.return-gift .contents .btn:hover {
	background: rgba(195, 146, 37, 1);
}

.return-gift .contents .txt2 {
	font-size: min(1.2rem, 0.878vw);
	font-weight: 500;
	line-height: 25px;
	letter-spacing: 1.2px;
	margin: 22px 0;
}

.return-gift .contents .inner {
	max-width: 884px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 10px;
	background: #F3F3F3;
	padding: 31px 54px 25px;
}

.return-gift .contents .inner .txt3 {
	text-align: left;
	font-size: min(1.4rem, 1.025vw);
	font-weight: 500;
	line-height: 26px;
}

.return-gift .contents .inner .btnB,
.modal__content .btnB {
	color: #1E1E1E;
	width: 180px;
	font-size: min(1.8rem, 1.318vw);
	font-weight: 500;
	line-height: 30px;
	gap: 60px;
}
.return-gift .contents .inner .btnB::after,
.modal__content .btnB::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 100%;
	background: linear-gradient(
		to right,
		rgba(30, 30, 30, 0.3) 0%,
		rgba(30, 30, 30, 0.3) 83%,
		rgba(30, 30, 30, 1) 83%,
		rgba(30, 30, 30, 1) 100%
	);
}
.return-gift .contents .inner .btnB::before,
.modal__content .btnB::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 100%;
	background: rgba(30, 30, 30, 1);
	transform-origin: right center;
	transform: scaleX(0);
	transition: transform 0.4s ease;
}
.return-gift .contents .inner .btnB:hover::before,
.modal__content .btnB:hover::before {
	transform: scaleX(1);
}

.return-gift .contents .inner .btnB .btn__arrow,
.modal__content .btnB .btn__arrow {
	width: 8px;
	height: auto;
	display: block;
	transform: rotate(0deg);
}

.modal__content h2 {
	color: #CA931A;
	font-size: min(2.3rem, 1.684vw);
	font-weight: 500;
	line-height: 30px;
	letter-spacing: 2.3px;
	margin-bottom: 18px;
}

.modal__content h2 .en {
	display: block;
	font-family: var(--baskerville);
	font-size: min(1.6rem, 1.171vw);
	font-weight: 400;
	letter-spacing: 1.6px;
}

.modal__content .txt4 {
	font-weight: 500;
	line-height: 32px;
	letter-spacing: 1.6px;
	margin-bottom: 40px;
}

.modal__content .btnB {
	margin-top: 20px;
	gap: 100px;
	padding-bottom: 6px;
}

@media screen and (max-width: 768px) {
	.return-gift {
		padding: 63px 15px 20px;
	}
	.return-gift h2 {
		font-size: min(2.3rem, 6.133vw);
		letter-spacing: 2.3px;
		margin-bottom: 45px;
	}
	.return-gift h2 .icon {
		width: 67.791px;
		margin: 0 auto 10px;
	}
	.return-gift .contents {
		padding-bottom: 60px;
	}
	.return-gift .contents h3 {
		font-size: min(2rem, 5.333vw);
	}
	.return-gift .contents h3 .en {
		font-size: min(1.3rem, 3.467vw);
	}
	.return-gift .contents .txt {
		line-height: 28px;
		letter-spacing: 1.5px;
		margin-top: 13px;
	}
	.return-gift .contents .price {
		font-size: min(1.5rem, 4vw);
		line-height: 33px;
		letter-spacing: 1.5px;
		margin-top: 13px;
	}
	.return-gift .contents .btn {
		margin: 13px auto 0;
	}
	.return-gift .contents .txt2 {
		font-size: min(1.2rem, 3.2vw);
		line-height: 23px;
		margin: 13px 0;
		text-align: left;
	}
	.return-gift .contents .inner {
		display: block;
		padding: 29px 24px;
	}
	.return-gift .contents .inner .txt3 {
		font-size: min(1.4rem, 3.733vw);
	}
	.return-gift .contents .inner .btnB {
		display: flex;
		width: 150px;
		font-size: min(1.3rem, 3.467vw);
		margin-bottom: 0;
		margin-left: auto;
	}
	.modal__content .btnB {
		width: 150px;
		gap: 90px;
		font-size: min(1.5rem, 4vw);
		margin-bottom: 0;
	}
	.modal__content h2 {
		font-size: min(2rem, 5.333vw);
		margin-bottom: 18px;
	}
	.modal__content h2 .en {
		font-size: min(1.3rem, 3.467vw);
	}
	.modal__content .txt4 {
		line-height: 28px;
		letter-spacing: 1.5px;
		margin-bottom: 20px;
	}
}

/* ----------------------------------------------------
 precautions
---------------------------------------------------- */
.precautions {
	background: rgba(202, 147, 26, 0.15);
	padding: 113px 0 112px;
}

.precautions .inner {
	max-width: 884px;
	margin: 0 auto;
}

.precautions .inner h2 {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: min(1.8rem, 1.318vw);
	font-weight: 500;
	line-height: 42px;
	letter-spacing: 1.8px;
}

.precautions .inner h2 img {
	display: block;
	width: 48px;
}

.precautions .inner .list {
	margin-top: 10px;
	margin: 10px auto 47px;
}

.precautions .inner .list li {
	display: flex;
	gap: 5px;
	font-size: min(1.4rem, 1.025vw);
	font-weight: 500;
	line-height: 26px;
}
.precautions .inner .list li::before {
	content: '・';
	font-size: 25px;
}

.precautions .inner.typeB {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	padding: 15px 0;
}

.precautions .inner.typeB .txt {
	font-size: min(1.8rem, 1.318vw);
	font-weight: 500;
	line-height: 42px;
	letter-spacing: 1.8px;
}


@media screen and (max-width: 768px) {
	.precautions {
		padding: 60px 15px;
	}
	.precautions .inner h2 {
		font-size: min(1.8rem, 4.8vw);
		justify-content: center;
	}
	.precautions .inner .list {
		margin-top: 20px;
	}
	.precautions .inner .list li {
		align-items: flex-start;
		font-size: min(1.4rem, 3.733vw);
		margin-bottom: 10px;
	}
	.precautions .inner.typeB {
		display: block;
		border-top: 1px solid #000;
		border-bottom: 1px solid #000;
		padding: 15px 0;
	}
	.precautions .inner.typeB .txt {
		font-size: min(1.8rem, 4.8vw);
		line-height: 30px;
		text-align: center;
		margin-top: 10px;
	}
}


/* ----------------------------------------------------
 footer
---------------------------------------------------- */
.footer {
	background: #1E1E1E;
	padding: 80px 114px 50px;
	font-family: var(--gothic);
}

.footer .wrap {
	display: flex;
	justify-content: space-between;
}

.footer .wrap .logo {
	font-weight: normal;
	padding-left: 0;
}

.footer .wrap .sns {
	display: flex;
	justify-content: center;
	margin-top: 15px;
}

.footer .wrap .sns a {
	display: block;
	width: 29px;
	height: 29px;
	margin-right: 20px;
}

.footer .wrap ul {
	display: flex;
	justify-content: space-between;
}

.footer .wrap ul li {
	color: #fff;
	width: 140px;
	margin: 0 10px;
	font-size: 12px;
	font-style: normal;
	font-weight: 500;
	line-height: 28px;
	text-align: center;
}

.footer .wrap ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60px;
	color: #fff;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 28px;
	border: 1px solid #FFF;
}

footer #copyright {
    margin: 1em 0;
    text-align: center;
    font-size: 12px;
    color: #413c3c;
}

@media screen and (max-width: 768px) {
	.footer {
		padding: 2em 0;
	}
	.footer .wrap {
		display: block;
	}
	.footer .wrap .logo {
		width: 50%;
		margin: 10px auto 25px;
	}
	.footer .wrap ul {
		margin: 0 20px;
	}
	.footer .wrap ul li {
		width: 50%;
		font-size: min(1.2rem, 3.2vw);
	}
	.footer .wrap ul li a {
		height: 50px;
		color: #fff;
		font-size: min(1.6rem, 4.267vw);
	}
	.footer .wrap .sns {
		margin: 30px 0;
	}
	.footer .wrap .sns a {
		margin: 0 15px;
	}

}