@charset "UTF-8";

.order-page .common-top,
.order-page .common-top .en-title {
	color: var(--akamaru-color-white);
}

.order-page .section-title .title {
	font-size: var(--fz-32);
}

@media screen and (max-width: 500px) {
	.order-page .section-title .title {
		font-size: 22px;
	}
}

/* order-nav */

.order-nav {
	margin: 0 auto;
	width: 80%;
	margin-top: var(--space-xl);
	margin-bottom: var(--space-xl);
}

.order-nav_menu-list {
	justify-content: center;
	gap: var(--space-md);
	padding-bottom: var(--space-xs);
	border-bottom: 0.5px solid var(--akamaru-color-gray_main);
}
.order-nav_menu a {
	position: relative;
	display: inline-block;
	padding: 6px 4px;
	color: var(--akamaru-color-navy_main);
}

.order-nav_menu a::before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 100%;
	height: 0.5px;
	background: var(--akamaru-color-gray_light);
	transform: translateX(-50%);
}

.order-nav_menu a::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: var(--akamaru-color-navy_main);
	transform: translateX(-50%) scaleX(0);
	transform-origin: center;
	transition: transform 0.3s ease;
}

.order-nav_menu a:hover::after {
	transform: translateX(-50%) scaleX(1);
}

@media screen and (max-width: 1024px) {
	.order-nav {
		width: 90%;
	}

	.order-nav_menu-list {
		gap: var(--space-sm);
	}
}

@media screen and (max-width: 768px) {
	.order-nav {
		width: 100%;
		padding-inline: var(--space-md);
	}

	.order-nav_menu-list {
		flex-wrap: wrap;
		justify-content: center;
		column-gap: var(--space-lg);
		row-gap: var(--space-sm);
		border-bottom: none;
	}

	.order-nav_menu {
		width: auto;
	}

	.order-nav_menu a {
		padding: 8px 12px;
	}

	/* スマホでは下線は常時うっすら */
	.order-nav_menu a::after {
		transform: translateX(-50%) scaleX(1);
		opacity: 0.25;
	}

	.order-nav_menu a::before {
		display: none;
	}
}

/* order-process */

.order-process .section-title {
	margin-bottom: var(--space-lg);
	padding: 0 1em;
}

.order-process .section-title .title {
	margin-bottom: var(--space-sm);
}

.order-process_content {
	background-image: url('../../images/order-derivary_bg.webp');
	background-repeat: repeat-y;
	background-size: 100%;
	padding: var(--space-sm) 0;
}
.order-process_content .container {
	width: 80%;
	justify-content: space-between;
	gap: var(--space-sm);
	margin: 0 auto;
}

.order-process_content .wrapper {
	flex: 1 1 45%;
	background-color: var(--akamaru-color-white);
	padding: var(--space-sm);
}

.order-process_content .title {
	font-size: var(--fz-28);
	padding-bottom: var(--space-xs);
	border-bottom: 0.5px solid var(--akamaru-color-gray_main);
	line-height: 1;
	margin-bottom: var(--space-xs);
	letter-spacing: 0.1em;
}

.order-process_content .text {
	margin-bottom: var(--space-xs);
	text-align: left;
}

.order-process_content .phone-wrapper {
	margin-bottom: var(--space-xxs);
}

.order-process_content .phone-wrapper .text {
	display: block;
	line-height: 1;
	margin-bottom: 5px;
	font-size: var(--fz-16);
}

.order-process_content .phone-wrapper .number {
	font-size: var(--fz-36);
	line-height: 1;
}

.order-process_content .note-wrapper {
	margin-bottom: var(--space-xs);
}

.order-process_content .note-text {
	font-size: var(--fz-14);
	line-height: 1.6;
}

.order-process_content .note-week {
	font-size: var(--fz-16);
	margin-bottom: 5px;
}

.order-process_content .wrapper .btn:first-of-type:nth-last-of-type(n + 2) {
	margin-bottom: 20px;
}

@media screen and (max-width: 1280px) {
	.order-process_content .container {
		width: 90%;
	}
}

@media screen and (max-width: 768px) {
	.order-process_content .wrapper {
		flex: 1 1 100%;
	}
	.order-process_content .text {
		margin-bottom: 30px;
	}
}
@media screen and (max-width: 500px) {
	.order-process_content .wrapper {
		padding: 30px 1em;
	}
	.order-process_content .title {
		font-size: 20px;
		margin-bottom: 15px;
	}
	.order-process .text {
		text-align: justify;
	}
	.order-process .section-title {
		margin-bottom: 20px;
	}
	.order-process .section-title .title {
		margin-bottom: 30px;
		font-size: 22px;
	}
}

/*  order-payment */

.order-payment {
	margin: 0 auto;
	width: 80%;
	margin-top: var(--space-xl);
	margin-bottom: var(--space-xl);
}

.order-payment .section-title {
	margin-bottom: var(--space-md);
}

.order-payment_content dl {
	display: flex;
	align-items: center;
	gap: 15px;
	width: 100%;
	padding-bottom: clamp(20px, 2.777777vw, 40px);
	padding-top: clamp(20px, 2.777777vw, 40px);
	border-bottom: 0.5px solid var(--akamaru-color-gray_main);
}

.order-payment_content dl:first-of-type {
	padding-top: 0;
}

.order-payment_content dt {
	flex: 1 1 25%;
}

.order-payment_content dd {
	flex: 1 1 75%;
}

@media screen and (max-width: 768px) {
	.order-payment {
		width: 90%;
	}
}

@media screen and (max-width: 500px) {
	.order-payment .section-title {
		margin-bottom: 20px;
	}
	.order-payment_content dt {
		flex: 1 1 40%;
	}

	.order-payment_content dd {
		flex: 1 1 60%;
		font-size: 13px;
		line-height: 1.8;
	}
}

/* order-delivary */
.order-delivary {
	background-image: url('../../images/order-derivary_bg.webp');
	background-repeat: repeat-y;
	background-size: 100%;
	padding: var(--space-xl) 0;
}

.order-delivary_container {
	background-color: var(--akamaru-color-white);
	padding: var(--space-md);
	padding-left: auto;
	padding-right: auto;
	width: 90%;
	margin: 0 auto;
}

.order-delivary .section-title {
	margin-bottom: var(--space-sm);
}
.order-delivary_content dl {
	margin-bottom: clamp(20px, 2.777777vw, 40px);
}

.order-delivary_content dl:last-of-type {
	margin-bottom: 0;
}

.order-delivary_content dt {
	font-size: var(--fz-20);
}

@media screen and (max-width: 500px) {
	.order-delivary .section-title {
		margin-bottom: 30px;
	}
	.order-delivary_container {
		width: 95%;
		padding-left: 10px;
		padding-right: 10px;
	}
	.order-delivary_content dt {
		font-size: 15px;
	}
	.order-delivary_content dd {
		font-size: 13px;
	}
}

/*  order-shipping */

.order-shipping {
	margin-bottom: var(--space-2xl);
}

.order-shipping_background {
	background-image: url('../../images/order-postage_bg.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: clamp(40px, 8vw, 120px) clamp(20px, 6vw, 80px);
	width: 100%;
	display: flex;
	justify-content: center;
}

.order-shipping_container {
	padding: clamp(20px, 4vw, 40px);
	background-color: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(4px);
	width: clamp(280px, 70%, 960px);
	margin: 0 auto;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.order-shipping .section-title .title {
	margin-bottom: var(--space-xxs);
}

.order-shipping .section-title .text {
	margin-bottom: var(--space-xs);
	text-align: center;
}

.order-shipping .btn {
	margin: 0 auto;
}

.order-page .cm-cv {
	margin-bottom: var(--space-md);
}

@media screen and (min-width: 1620px) {
	.order-shipping_background {
		padding: var(--space-2xl) var(--space-md);
	}
}

@media screen and (max-width: 767px) {
	.order-shipping_background {
		padding: var(--space-lg) var(--space-sm);
	}
	.order-shipping_container {
		width: 100%;
	}
}
