@charset "UTF-8";
/*----------------------------------------
css -> page -> cap.css
 モバイルファースト
----------------------------------------*/

.contentsWrapper {
	padding-bottom: calc(50 / 14 * 1em);
}

.pageMainTitle picture > * {
	width: 100%;
}

/* 3つの加工法 */
.processList {
	margin-top: 2em;
}

.processList > li {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.processList > li + li {
	margin-top: 2em;
}

.processList > li.recommend {
	position: relative;
	margin-top: 7em;
}

.processList > li.recommend .processItem {
	background-color: #fff;
}

.processList > li.recommend .processItem::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 10px;
	width: 100%;
	height: 100%;
	background-color: #fff84b;
	border-radius: inherit;
	z-index: -1;
}

.processItem {
	display: flex;
	flex-direction: column;
	border-radius: 4px;
	box-shadow: 0px 1px 3px #00000030;
	padding: 10px;
	height: 100%;
}

.processBody {
	display: flex;
	flex-direction: column;
	flex: 1;
	margin-top: calc(12 / 16 * 1em);
}

.processTitle {
	display: flex;
	flex-direction: column;
	border-bottom: 1px solid #b0b0b0;
	padding-bottom: 0.6em;
}

.processTitle > h3 {
	font-size: calc(18 / 16 * 1rem);
	font-family: "Zen Kaku Gothic Antique", serif;
	font-weight: 700;
	color: #1464c2;
}

.processTitle > span {
	font-size: calc(10 / 16 * 1rem);
	font-weight: 700;
	font-family: "Zen Kaku Gothic Antique", serif;
	color: #a1c1e7;
	letter-spacing: 0.06em;
}

.processTitle > h3 + span {
	margin-top: 0.3em;
}

.processDetail {
	padding-top: 1em;
}

.processDetail > li {
	line-height: calc(24 / 16);
	padding-left: 1em;
	text-indent: -1em;
}

.processDetail > li::before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: var(--mainBgColor);
	margin-right: 0.5em;
	display: inline-block;
}

.processDetail > li + li {
	margin-top: 0.75em;
}

.processDetail > li > span {
	font-weight: 700;
	color: var(--mainBgColor);
}

.printNote {
	font-size: calc(12 / 16 * 1rem);
	font-weight: 700;
	color: #f54d47;
	line-height: calc(16 / 12);
	margin-top: 1em;
}

.printButton {
	margin-top: calc(20 / 16 * 1em);
	display: flex;
	justify-content: center;
}

.processImg {
	order: -1;
}

.processImg > img {
	width: 100%;
}

.recommendArea {
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.016em;
	text-align: center;
	background-color: var(--mainBgColor);
	padding: calc(10 / 16 * 1em);
	border-radius: 4px;
	order: -1;
	position: absolute;
	bottom: 100%;
	left: 0;
	right: 0;
	margin-bottom: 10px;
}

.recommendArea::before {
	content: "";
	clip-path: polygon(100% 0, 0 0, 50% 100%);
	background-color: inherit;
	width: 10px;
	height: 10px;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
}

.recommendArea::after {
	content: "";
	background-image: url("../../images/cap/crown.png");
	background-repeat: no-repeat;
	background-size: contain;
	width: 50px;
	height: 41px;
	position: absolute;
	top: -23px;
	left: 0;
}

/* 型代 */
.tableBox {
	width: 100%;
	border-radius: 4px;
	border-top: 1px solid #b0b0b0;
	border-left: 1px solid #b0b0b0;
	border-spacing: 0;
}

.tableBox :is(th, td) {
	border-bottom: 1px solid #b0b0b0;
	border-right: 1px solid #b0b0b0;
	padding: calc(10 / 20 * 1em);
	white-space: nowrap;
}

.tableBox thead th {
	font-size: calc(14 / 16 * 1rem);
	font-weight: 700;
	color: #fff;
	background-color: var(--mainBgColor);
	text-align: center;
}

.tableBox.col3 thead th {
	width: calc(100% / 3);
}

.tableBox.col4 thead th {
	width: calc(100% / 4);
}

.tableBox.col5 thead th {
	width: calc(100% / 5);
}

.tableBox tbody :is(th, td) {
	font-weight: 700;
	text-align: center;
}

.tableBox tbody th {
	font-size: clamp(0.75rem, 0.529rem + 0.98vw, 1rem);
	background-color: #fff;
}

.tableBox tbody td {
	font-size: calc(18 / 16 * 1rem);
}

.tableBox tbody td > span {
	font-size: calc(12 / 20 * 1em);
}

.tableSection + .tableSection {
	margin-top: calc(24 / 14 * 1em);
}

/* 左固定テーブル */
.tableWrapper {
	overflow: auto;
}

.tableLarge {
	position: relative;
	border-top: 1px solid var(--tableBorderColor);
	white-space: nowrap;
	width: 100%;
	border-spacing: 0;
	border-collapse: separate;
}

.sticky {
	position: -webkit-sticky;
	position: sticky;
	left: 0;
}

.sticky:first-child::before {
	content: "";
	width: 1px;
	height: 100%;
	background-color: var(--tableBorderColor);
	position: absolute;
	top: 0;
	left: 0;
}

.tableLarge :is(th, td) {
	border-right: 1px solid var(--tableBorderColor);
	border-bottom: 1px solid var(--tableBorderColor);
	min-height: 45px;
	white-space: nowrap;
}

.tableLarge thead th {
	font-weight: 700;
	color: #fff;
	background-color: var(--mainBgColor);
	padding: 0.5em;
}

.tableLarge thead th:first-child {
	font-size: calc(12 / 16 * 1rem);
	background-image: linear-gradient(to right top, transparent calc(50% - 0.5px), var(--tableBorderColor) 50%, var(--tableBorderColor) calc(50% + 0.5px), transparent calc(50% + 1px));
	padding: 0 0.5em;
}

.tableLarge .width {
	position: absolute;
	top: 0.15em;
	right: 0.15em;
}

.tableLarge .height {
	position: absolute;
	bottom: 0.15em;
	left: 0.15em;
}

.tableLarge thead th:not(:first-child) {
	font-size: 1rem;
}

.tableLarge tbody th {
	font-size: 1rem;
	font-weight: 700;
	background-color: #fff;
	padding: calc(12 / 20 * 1em);
}

.tableLarge td {
	font-size: calc(18 / 16 * 1rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	text-align: center;
	padding: 0.5em;
}

.tableLarge td > span {
	font-size: calc(12 / 18 * 1em);
}

/* リピート注文 */
.repeatSection {
	display: flex;
	flex-direction: column;
	margin-top: calc(24 / 14 * 1em);
}

.repeatTitle {
	font-size: calc(20 / 16 * 1rem);
	font-weight: 700;
	font-family: "Zen Kaku Gothic Antique", serif;
}

.repeatTitle::before {
	content: "";
	background-image: url("../../images/cap/repeat.svg");
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-right: 0.5em;
}

.repeatText {
	line-height: calc(26 / 16);
}

.repeatBlowBox {
	display: flex;
	align-items: flex-end;
	margin-top: 1em;
}

.repeatBlow01 > p:first-child {
	font-size: calc(12 / 16 * 1rem);
	font-weight: 700;
	display: flex;
	align-items: center;
}

.repeatBlow01 > p:nth-child(2) {
	font-size: calc(12 / 16 * 1rem);
	font-weight: 500;
	border: 1px solid #b0b0b0;
	border-radius: 4px;
	padding: 8px;
	min-height: 92px;
	margin-top: 0.2em;
}

.repeatBlow02 {
	border: 1px solid var(--mainBgColor);
	border-radius: 4px;
	display: flex;
	align-items: center;
	min-height: 92px;
	position: relative;
	margin-left: 20px;
	padding: calc(14 / 16 * 1em);
}

.repeatBlow02::before,
.repeatBlow02::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 16px;
	height: 10px;
	clip-path: polygon(100% 0, 0 50%, 100% 100%);
	margin: auto 0;
}

.repeatBlow02::before {
	right: 100%;
	background-color: var(--mainBgColor);
}

.repeatBlow02::after {
	right: calc(100% - 2px);
	background-color: #fff;
}

.repeatBlow02 > p {
	font-size: calc(12 / 16 * 1rem);
	font-family: "Zen Kaku Gothic Antique", serif;
	color: var(--mainBgColor);
	letter-spacing: 0.02em;
	line-height: calc(20 / 14);
}

.repeatBlow02 > p > span {
	background-image: linear-gradient(transparent calc(100% - 6px), #fff84b 6px);
}

/* デザイン入稿 */
.processWrapper {
	padding: 20px;
	background-color: #f2f2f2;
	border-radius: 4px;
}

.sectionTab + .processWrapper {
	margin-top: 8px;
}

.processWrapper p {
	line-height: calc(30 / 16);
}

.processWrapper p > span {
	font-weight: 700;
}

.designSection + .designSection {
	margin-top: calc(24 / 16 * 1em);
}

.process01 {
	display: flex;
	column-gap: 1em;
}

.process01Text > p:first-child {
	font-size: 1rem;
	font-weight: 700;
}

.process01Text > p:nth-child(2) {
	font-size: calc(12 / 16 * 1rem);
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #88878a;
}

.process02Wrapper {
	display: flex;
	flex-direction: column;
	margin-top: calc(21 / 16 * 1em);
}

.process02Wrapper::after {
	content: "";
	background-color: var(--mainBgColor);
	clip-path: polygon(100% 0, 0 0, 50% 100%);
	width: 36px;
	height: 18px;
	display: inline-block;
	align-self: center;
	margin: 16px 0 5px;
	order: -1;
}

.process02:first-child {
	order: -1;
}

.process02 > dt {
	font-size: calc(13 / 16 * 1rem);
	font-weight: 700;
	color: #88878a;
}

.process02 > dd {
	margin-top: 11px;
}

.process02 > dd > img {
	width: 100%;
}

.process03Wrapper {
	display: flex;
	align-items: center;
	margin-top: calc(20 / 16 * 1em);
}

.process03 {
	background-color: #fff;
	padding: 1em;
	border-radius: 4px;
	border: 1px solid #7cb9ff;
	position: relative;
	margin-right: calc(30 / 16 * 1em);
}

.process03::before,
.process03::after {
	content: "";
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	width: 19px;
	height: 36px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
}

.process03::before {
	background-color: #7cb9ff;
	left: 100%;
}

.process03::after {
	background-color: #fff;
	left: calc(100% - 2px);
}

p.proccess03Text {
	font-size: calc(12 / 16 * 1rem);
	font-weight: 700;
	color: var(--mainBgColor);
	background-image: linear-gradient(transparent calc(100% - 10px), #fff84b 10px);
	width: fit-content;
	margin-bottom: 0.5em;
}

p.zipText {
	font-size: calc(14 / 16 * 1rem);
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #88878a;
	white-space: nowrap;
}

.iconGroup {
	display: flex;
	align-items: center;
}

.iconGroup::after {
	content: "";
	background-image: radial-gradient(circle farthest-side, #88878a, #88878a 60%, transparent 60%, transparent);
	background-size: 10px;
	background-repeat: repeat;
	width: 30px;
	height: 5px;
	margin-bottom: 2em;
	margin-left: 0.25em;
}

.iconGroup > * + * {
	margin-left: 1em;
}

.iconItem {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.iconItem > p {
	font-size: calc(10 / 16 * 1rem);
	font-weight: 700;
	letter-spacing: 0.05em;
	white-space: nowrap;
}

.buttons {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
	margin-top: calc(40 / 14 * 1em);
}

.buttonWrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	border-radius: 4px;
	box-shadow: 0 1px 3px rgb(0 0 0 / 0.19);
	padding: calc(20 / 16 * 1em) 1em;
}

.buttonWrapper > p {
	font-size: calc(14 / 16 * 1rem);
	font-weight: 700;
	letter-spacing: 0.05em;
	text-align: center;
	margin-top: calc(7 / 14 * 1em);
	margin-bottom: calc(18 / 14 * 1em);
}

.buttonWrapper {
	justify-content: flex-end;
}

.linkWrapper {
	display: flex;
	justify-content: center;
	margin-top: calc(40 / 16 * 1em);
}

/*===============================================
●画面の横幅が770px以上(PC)
===============================================*/
@media not all and (max-width: 770px) {
	/* 刺繍・プリント各ページ共通にできるもの
	---------------------------------------- */
	.contentsWrapper {
		padding-bottom: calc(100 / 16 * 1em);
	}

	/* 選べる3つの加工法 */
	.processList {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
		gap: 21px;
		align-items: flex-end;
	}

	.processList > li + li {
		margin-top: 0;
	}

	.processItem {
		padding: 20px 20px 24px;
	}

	.processTitle > h3 {
		font-size: calc(24 / 16 * 1rem);
		line-height: 1;
	}

	.processTitle > span {
		font-size: calc(14 / 16 * 1rem);
	}

	/* 型代 */
	.tableBox :is(th, td) {
		padding: 12px;
	}

	.tableBox thead th {
		font-size: calc(20 / 16 * 1rem);
	}

	.tableBox.tableColorHead thead th {
		font-size: 1rem;
	}

	.tableBox tbody th {
		font-size: calc(20 / 16 * 1rem);
	}

	.tableBox tbody td {
		font-size: calc(24 / 16 * 1rem);
	}

	/* 左固定テーブル */
	.tableLarge {
		width: calc(94px * 11);
	}

	.tableLarge thead th {
		padding: 0.75em;
		min-width: 94px;
	}

	.tableLarge :is(th, td) {
		min-height: 60px;
	}

	.tableLarge thead th:first-child {
		font-size: calc(14 / 16 * 1rem);
	}

	.tableLarge thead th:not(:first-child) {
		font-size: calc(20 / 16 * 1rem);
	}

	.tableLarge .width {
		top: 0.5em;
		right: 1em;
	}

	.tableLarge .height {
		bottom: 0.5em;
		left: 1em;
	}

	.tableLarge tbody th {
		font-size: calc(20 / 16 * 1rem);
		padding: calc(15 / 20 * 1em);
	}

	.tableLarge td {
		font-size: calc(22 / 16 * 1rem);
	}

	.tableLarge td > span {
		font-size: calc(16 / 22 * 1em);
	}

	/* 注文の流れ */
	.repeatTitle {
		font-size: calc(24 / 16 * 1rem);
	}

	.repeatText {
		max-width: 418px;
	}

	.repeatBlowBox {
		flex: 0 0 calc(468 / 1040 * 100%);
		margin-left: calc(32 / 16 * 1em);
		margin-top: 0.65em;
	}

	/* リピート注文 */
	.repeatSection {
		flex-direction: row;
	}

	.repeatBody {
		flex: 0 0 calc(418 / 1040 * 100%);
	}

	.repeatBlow01 {
		flex: 1;
	}

	.repeatBlow01 > p:first-child {
		font-size: calc(14 / 16 * 1rem);
	}

	/* .repeatBlow01 > p:first-child > span {
		font-size: calc(10 / 14 * 1em);
	} */

	.repeatBlow02 {
		max-width: 208px;
	}

	.repeatBlow02 > p {
		font-size: calc(14 / 16 * 1rem);
	}

	/* デザイン入稿について */
	.process01 {
		flex-direction: row;
	}

	.process01Text > p:first-child {
		font-size: calc(22 / 16 * 1rem);
	}

	.process01Text > p:nth-child(2) {
		font-size: calc(14 / 16 * 1rem);
	}

	.process02Wrapper {
		flex-direction: row;
	}

	.process02Wrapper::after {
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		width: calc(18 / 1000 * 100%);
		height: clamp(0.938rem, -0.748rem + 3.51vw, 2.25rem);
		align-self: flex-end;
		flex-shrink: 0;
		margin: 0 4% clamp(0.313rem, -0.249rem + 1.17vw, 0.75rem);
	}

	.process02 > dd > img {
		max-width: 386px;
	}

	.process03 {
		padding: calc(18 / 16 * 1em) calc(32 / 16 * 1em) calc(14 / 16 * 1em) calc(45 / 16 * 1em);
	}

	p.proccess03Text {
		font-size: calc(14 / 16 * 1rem);
	}

	.iconItem > p {
		font-size: calc(12 / 16 * 1rem);
	}

	.buttons {
		grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
		gap: 20px;
		margin-top: calc(56 / 16 * 1em);
	}

	/* ネーム刺繍
	---------------------------------------- */
	.fontSection + .fontSection {
		margin-top: calc(56 / 16 * 1em);
	}

	.fontList {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
		gap: 32px 20px;
		align-items: flex-end;
	}

	.fontName {
		font-size: calc(17 / 16 * 1rem);
	}

	/* オリジナル刺繍
	---------------------------------------- */
	.tablecontainer {
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
		gap: 20px;
		margin-top: 1em;
	}

	.priceList caption {
		font-size: calc(20 / 16 * 1rem);
	}

	.priceList :is(th, td) {
		padding: 10px;
	}

	.priceList thead th {
		font-size: calc(18 / 16 * 1rem);
	}

	.priceList tbody th {
		font-size: calc(18 / 16 * 1rem);
	}

	.priceList tbody td {
		font-size: calc(22 / 16 * 1rem);
	}

	.priceList tbody td > span {
		font-size: calc(16 / 22 * 1em);
	}

	.priceList tbody td.priceEstimate {
		font-size: calc(18 / 16 * 1rem);
	}

	.specialProcess {
		flex-direction: row;
		max-width: 900px;
	}

	.specialProcessImg {
		margin-left: 2em;
		margin-top: 0;
	}

	/* ワッペン刺繍
	---------------------------------------- */
	.badgeList {
		grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	}

	.badgeMerit > li {
		font-size: calc(12 / 16 * 1rem);
		width: calc(100 / 12 * 1em);
		height: calc(100 / 12 * 1em);
	}

	.tag > span {
		font-size: calc(22 / 16 * 1rem);
	}

	.tag::before {
		top: -32px;
		left: -27px;
		width: 50px;
		height: 48px;
	}

	.figureWrapper {
		padding: 20px;
	}

	.processFigure figcaption {
		font-size: 1rem;
	}

	.prcessBody {
		margin-top: calc(19 / 16 * 1em);
	}

	.frameProcessWrapper {
		flex-direction: row;
		margin-top: -2em;
		padding-top: 2em;
	}

	.frameProcessBody + .frameProcessImg {
		margin-left: 2em;
		margin-top: 0;
	}

	/* 転写プリント
	---------------------------------------- */
	.iconImgs {
		margin-top: 0;
	}

	.transparentWrapper {
		flex-direction: row;
		justify-content: space-between;
		max-width: 878px;
	}

	.transparent01 {
		flex: 1;
	}

	.transparent01 + .transparent01 {
		margin-left: 2em;
		margin-top: 0;
	}

	.transparentImgs::before {
		margin: 0 calc(35 / 423 * 100%);
	}

	.thSize {
		font-size: calc(16 / 20 * 1em);
		line-height: inherit;
		display: inline;
	}

	/* シルクスクリーンプリント
	---------------------------------------- */
	.sectionTitleBar {
		font-size: calc(26 / 16 * 1rem);
	}

	.courseTitle {
		font-size: calc(28 / 16 * 1rem);
	}

	.courseSize {
		font-size: 1rem;
	}

	.coursePrice01 {
		font-size: calc(18 / 16 * 1rem);
	}

	.coursePrice02 {
		font-size: calc(42 / 16 * 1rem);
	}

	.coursePrice03 {
		font-size: calc(24 / 16 * 1rem);
	}

	.coursePrice04 {
		font-size: calc(24 / 16 * 1rem);
	}

	.courseNum02 {
		font-size: calc(58 / 16 * 1rem);
	}

	/* プリント加工
	---------------------------------------- */
	.tableLarge.printTable thead th {
		min-width: 148px;
	}

	.tableLarge.printTable thead th:not(:first-child) {
		font-size: calc(18 / 16 * 1rem);
	}

	.tableLarge.printTable tbody th {
		font-size: 1rem;
	}

	.tableLarge.printTable td {
		font-size: calc(26 / 16 * 1rem);
	}
}

/*===============================================
●画面の横幅が771以上1024x以下(タブレット)
===============================================*/
@media screen and (min-width: 771px) and (max-width: 1024px) {
	/* .processList {
		gap: 80px;
	} */

	.process01Text {
		margin-right: 0;
	}

	.tableBox thead th {
		font-size: 0.875rem;
		font-size: clamp(0.875rem, 0.393rem + 1vw, 1.25rem);
	}

	.tableBox tbody th {
		font-size: 1rem;
		font-size: clamp(1rem, 0.679rem + 0.67vw, 1.25rem);
	}

	.tableBox tbody td {
		font-size: 1rem;
		font-size: clamp(1rem, 0.358rem + 1.34vw, 1.5rem);
	}

	.repeatSection {
		flex-direction: column;
	}

	.repeatBlowBox {
		margin-left: 0;
	}
}
