.guide-page{
    background-image: linear-gradient(to bottom, #f8fafd 0, #eef3f8 100%);
    padding-bottom: 50px;
}
.guide-page .link-btn{
	display: block;
	width: fit-content;
	background-color: var(--color-primary);
	color: #fff;
	margin: auto;
	padding: 15px 4%;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5em;
	text-align: center;
	border: 1px solid var(--color-primary);
	border-radius: 30px;
	transition: all .3s ease;
}
.guide-page .link-btn:hover{
	background-color: #fff;
	color: var(--color-primary);
}

/**/
.sub-title{
	color: var(--color-primary);
	margin-bottom: 20px;
	font-size: 20px;
	font-weight: 700;
	padding-left: 20px;
	border-left: 3px solid #97dce6;
}

@media screen and ( max-width: 810px ){
	.guide-page .link-btn{
		padding: 15px 3%;
		font-size: 17px;
	}
	/**/
	.sub-title{
		font-size: 20px;
	}
}

/*---------------------------------------------
	ヒーローセクション
---------------------------------------------*/
.hero-section{
    width: 100%;
}
.hero-section .section-title{
    display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 220px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.hero-section .section-title span{
	font-size: 28px;
}
.hero-section .section-title:after{
    content: "GUIDE";
    display: inline-block;
    background-image: linear-gradient(0deg, #e4ebf4 0, transparent 100%);
    font-family: 'Montserrat', sans-serif;
    font-size: 200px;
    font-weight: 900;
    line-height: 1.05em;
	letter-spacing: -0.05em;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(-50%);
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: -1;
}

@media screen and ( max-width: 810px ){
    .hero-section .section-title{
        min-height: 140px;
		letter-spacing: 0;
    }
	.hero-section .section-title span{
		font-size: 26px;
	}
    .hero-section .section-title:after{
        font-size: 110px;
        letter-spacing: -0.03em;
    }
}
@media screen and ( max-width: 480px ){
    .hero-section .section-title{
		font-size: 26px;
        min-height: 100px;
    }
	.hero-section .section-title span{
		font-size: 20px;
	}
    .hero-section .section-title:after{
        font-size: 80px;
    }
}


/* ===================================================
   アンカーリンク
=================================================== */
.anchor-list{
	display: flex;
	justify-content: center;
	gap: 15px;
	max-width: 1080px;
	margin: 0 auto 40px;
}
.anchor-list > li{
	width: calc((100% - 90px) / 4);
}
.anchor-list > li a{
	display: flex;
	align-items: center;
	background-color: rgba(252, 253, 254, 0.5);
	color: var(--color-primary);
	font-weight: 900;
	padding: 13px 30px;
	border: 1px solid var(--color-border);
	border-radius: 30px;
	transition: all .3s ease;
	position: relative;
}
.anchor-list > li a:after{
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-bottom: 2px solid var(--color-border);
	border-right: 2px solid var(--color-border);
	transform: rotate(45deg);
	transition: all .3s ease;
	position: absolute;
	right: 15px;
}

.anchor-list > li a:hover{
	background-color: rgba(252, 253, 254, 0.7);
	border-color: var(--color-accent);
}
.anchor-list > li a:hover:after{
	border-bottom: 2px solid var(--color-accent);
	border-right: 2px solid var(--color-accent);
}


@media screen and ( max-width: 810px ){
	.anchor-list{
		margin: 0 20px 40px;
	}
	.anchor-list > li{
		width: calc((100% - 60px) / 4);
	}
	.anchor-list > li a{
		height: 100%;
		padding: 13px 25px 13px 15px;
		font-size: 14px;
		border-radius: 15px;
	}
	.anchor-list > li a:after{
		right: 10px;
	}
}
@media screen and ( max-width: 480px ){
	.anchor-list{
		flex-wrap: wrap;
		gap: 10px;
		margin: 0 20px 40px;
	}
	.anchor-list > li{
		width: calc((100% - 15px) / 2);
	}
	.anchor-list > li a{
		padding: 8px 30px 8px 10px;
	}
	.anchor-list > li a:after{
		right: 10px;
	}
}


/* ===================================================
   納品までの流れ
=================================================== */
.flow-section{
	max-width: 1080px;
	margin: auto;
}
.flow-section .flow-step{
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin: 30px auto;
	counter-reset: flow;
}
.flow-section .flow-step > li{
	display: flex;
	gap: 40px;
	counter-increment: flow;
	position: relative;
}
.flow-section .flow-step > li .title{
	color: var(--color-primary);
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5em;
	position: relative;
}
.flow-section .flow-step > li .title:before {
	content: counter(flow,decimal-leading-zero)".";
	display: inline-flex;
	margin-right: 10px;
}
.flow-section .flow-step > li p{
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6em;
}

/**/
.flow-deadline {
	margin: 50px auto;
}
.flow-deadline div {
	display: block;
	background-color: #fff;
	margin: 30px auto 0;
	padding: 3%;
	border-radius: 20px;
	overflow-x: auto;
}

.flow-section img{
	height: auto;
}

@media screen and ( max-width: 810px ){
	.flow-section .flow-step{
		margin: 30px 20px;
	}
	.flow-section .flow-step > li{
		align-items: flex-start;
		gap: 30px;
	}
	.flow-section .flow-step > li .title{
		font-size: 19px;
	}
	.flow-section .flow-step > li > div{
		width: 60%;
	}
	.flow-section .flow-step > li img{
		width: 40%;
	}

	/**/
	.flow-deadline {
		margin: 50px 20px;
	}
	.flow-deadline div img{
		min-width: 700px;
	}
	.flow-deadline div {
		overflow-x: auto;
	}
}
@media screen and ( max-width: 480px ){
	.flow-section .stretch-title-wrap .stretch-title{
		font-size: 24px;
	}
	.flow-section .flow-step > li{
		flex-wrap: wrap;
		justify-content: center;
		gap: 15px;
	}
	.flow-section .flow-step > li .title{
		font-size: 19px;
	}
	.flow-section .flow-step > li img{
		width: 90%;
	}
	.flow-section .flow-step > li > div{
		width: 100%;
	}

	/**/
	.flow-deadline {
		margin: 40px 20px;
	}
	.flow-deadline div {
		overflow-x: auto;
	}
	.flow-deadline div img{
		min-width: 700px;
	}
}


/* ===================================================
   デザイン入稿
=================================================== */
.submission-section {
    max-width: 1080px;
    margin: 0 auto 80px;
}
.submission-section > section{
	margin: 0 auto 50px;
}

/**/
.submission-section .format-list{
	display: flex;
	gap: 20px;
}
.submission-section .format-list > li{
	width: calc((100% - 60px) / 4);
	background-color: #fff;
	padding: 50px 20px 20px;
	text-align: center;
	border: 1px solid var(--color-border);
	border-radius: 20px;
	box-shadow: var(--shadow-sm);
	position: relative;
}
.submission-section .format-list > li:before{
	content: "対 応";
	display: block;
	padding: 3px 12px;
	background-color: #fafbfc;
	border: 1px solid var(--color-border);
	border-radius: 30px;
	position: absolute;
	left: 10px;
	top: 10px;
}
.submission-section .format-list > li.ai:before{
	content: "推 奨";
	background-color: #ffd95a;
	border: 1px solid #ffd95a;
}
.submission-section .format-list > li img{
	width: auto;
	height: 90px;
}
.submission-section .format-list > li .title{
	color: var(--color-primary);
	font-weight: 900;
}

/**/
.submission-section .handwritten-box{
	background-color: #e4ebf6;
	margin: 30px auto;
	padding: 20px 40px;
}
.submission-section .handwritten-box .title{
	margin-bottom: 10px;
	color: var(--color-primary);
	font-size: 20px;
	font-weight: 700;
}
.submission-section .handwritten-box p{
	font-size: 13px;
}

/**/
.submission-section .template-about{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 80px;
	margin: 30px auto;
}
.submission-section .template-about > li{
	background-color: #fff;
	padding: 20px;
	border-radius: 20px;
	position: relative;
}
.submission-section .template-about > li .title{
	color: var(--color-primary);
	margin: 0 auto 10px;
	font-size: 18px;
	text-align: center;
}
.submission-section .template-about > li:nth-of-type(1):before{
	content: "";
	display: block;
	width: 40px;
	height: 40px;
	background: url(../../_images/common/icon-arrow.webp) no-repeat center;
	background-size: 100% auto;
	filter: brightness(0) saturate(100%) invert(81%) sepia(18%) saturate(360%) hue-rotate(155deg) brightness(84%) contrast(84%);
	transform: translateY(-50%);
	position: absolute;
	right: -60px;
	top: 50%;
}

/**/
.submission-section .link-btn{
	width: 80%;
	max-width: 480px;
	position: relative;
}
.submission-section .link-btn:before,
.submission-section .link-btn:after{
	content: "";
	display: block;
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
}
.submission-section .link-btn:before{
	width: 36px;
	height: 36px;
	background-color: #fff;
	border-radius: 50%;
	right: 15px;
}
.submission-section .link-btn:after{
	width: 17px;
	height: 17px;
	background: url(../../_images/common/icon-arrow.webp) no-repeat center;
	background-size: 100% auto;
	border-radius: 50%;
	filter: brightness(0) saturate(100%) invert(17%) sepia(66%) saturate(1136%) hue-rotate(165deg) brightness(95%) contrast(104%);
	right: 24px;
	z-index: 1;
}

.submission-section .link-btn:hover:before{
	background-color: var(--color-primary);
}
.submission-section .link-btn:hover:after{
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(6469%) hue-rotate(177deg) brightness(115%) contrast(101%);
}


@media screen and (max-width: 810px) {
	.submission-section > section{
		margin: 0 20px 50px;
	}

	/**/
	.submission-section .format-list{
		gap: 20px 3%;
	}
	.submission-section .format-list > li{
		width: calc((100% - 9%) / 4);
		padding: 50px 2% 20px;
	}
	.submission-section .format-list > li:before{
		font-size: 15px;
	}
	.submission-section .format-list > li img{
		width: auto;
		height: 70px;
	}
	.submission-section .format-list > li .title{
		font-size: 16px;
	}
	.submission-section .format-list > li p{
		font-size: 14px;
	}

	/**/
	.submission-section .handwritten-box{
		padding: 20px 30px;
	}
	.submission-section .handwritten-box .title{
		font-size: 20px;
	}

	/**/
	.submission-section .template-about{
		gap: 50px;
		justify-content: flex-start;
		overflow-x: auto;
		padding-bottom: 5px;
	}
	.submission-section .template-about > li{
		min-width: 280px;
		padding: 10px;
	}
	.submission-section .template-about > li .title{
		font-size: 18px;
	}
	.submission-section .template-about > li:nth-of-type(1):before{
		width: 35px;
		height: 35px;
		right: -42px;
	}
	.submission-section .template-about > li img{
		height: auto;
	}

	/**/
	.submission-section .link-btn{
		width: 80%;
		max-width: 480px;
		padding-right: 50px;
		position: relative;
	}
	.submission-section .link-btn:before{
		width: 30px;
		height: 30px;
		right: 15px;
	}
	.submission-section .link-btn:after{
		width: 15px;
		height: 15px;
		right: 22px;
	}
}

@media screen and (max-width: 480px) {
	/**/
	.submission-section .format-list{
		flex-wrap: wrap;
	}
	.submission-section .format-list > li{
		width: calc((100% - 3%) / 2);
		padding: 40px 10px 20px;
	}
	.submission-section .format-list > li:before{
		font-size: 14px;
	}
	.submission-section .format-list > li img{
		height: 60px;
	}
	.submission-section .format-list > li .title{
		font-size: 15px;
	}
	.submission-section .format-list > li p{
		font-size: 14px;
	}

	/**/
	.submission-section .handwritten-box{
		padding: 15px 20px;
	}
	.submission-section .handwritten-box .title{
		font-size: 17px;
	}

	/**/
	.submission-section .template-about{
		gap: 50px;
	}
	.submission-section .template-about > li{
		padding: 15px;
	}
	.submission-section .template-about > li .title{
		font-size: 18px;
	}
	.submission-section .template-about > li:nth-of-type(1):before{
		width: 35px;
		height: 35px;
		right: -42px;
	}
	.submission-section .template-about > li img{
		height: auto;
	}

	/**/
	.submission-section .link-btn{
		width: 85%;
		padding-right: 40px;
		position: relative;
	}
	.submission-section .link-btn:before{
		right: 10px;
	}
	.submission-section .link-btn:after{
		right: 18px;
	}
}


/* ===================================================
   プリント・名入れ方法
=================================================== */
.print-section {
    max-width: 1080px;
    margin: 0 auto 80px;
}
.print-section > .print-type{
	display: flex;
	flex-direction: row-reverse;
	max-width: 1000px;
	background-color: #fff;
	margin: 0 auto 50px;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: var(--shadow-sm);
}
.print-section > .print-type > div{
	padding: 30px 40px;
}
.print-section > .print-type .title{
	color: #1d4a63;
	margin-bottom: 10px;
	font-size: 24px;
	font-weight: 700;
}

.print-section > .print-type .reccomend{
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--color-border);
}
.print-section > .print-type .reccomend{
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.print-section > .print-type .reccomend dt{
	color: var(--color-primary);
	margin-bottom: 5px;
	padding-left: 30px;
	font-size: 16px;
	font-weight: 900;
	position: relative;
}
.print-section > .print-type .reccomend dt:before{
	content: "";
	display: block;
	width: 10px;
	height: 15px;
	border-right: 2px solid #527485;
	border-bottom: 3px solid #527485;
	transform: rotate(45deg);
	position: absolute;
	left: 10px;
	top: 3px;
}
.print-section > .print-type .reccomend dd{
	padding-left: 30px;
	font-size: 15px;
}
.print-section > .print-type > img{
	width: 320px;
	height: auto;
	object-fit: cover;
}

@media screen and (max-width: 810px) {
	.print-section > .print-type{
		margin: 0 20px 50px;
	}
	.print-section > .print-type > div{
		width: 65%;
		padding: 3% 4%;
	}
	.print-section > .print-type .title{
		font-size: 22px;
	}

	.print-section > .print-type .reccomend{
		margin-top: 20px;
		padding-top: 20px;
		border-top: 1px solid var(--color-border);
	}
	.print-section > .print-type .reccomend{
		gap: 20px;
	}
	.print-section > .print-type .reccomend dt{
		font-size: 16px;
	}

	.print-section > .print-type > img{
		width: 35%;
		max-width: 280px;
	}
}
@media screen and (max-width: 480px) {
	.print-section .stretch-title-wrap .stretch-title{
		font-size: 24px;
	}
	.print-section > .print-type{
		flex-direction: column-reverse;
		margin: 0 20px 50px;
	}
	.print-section > .print-type > div{
		width: 100%;
	}
	.print-section > .print-type .title{
		font-size: 20px;
	}

	.print-section > .print-type .reccomend{
		margin-top: 15px;
		padding: 15px 0 10px;
	}
	.print-section > .print-type .reccomend{
		gap: 15px;
	}
	.print-section > .print-type .reccomend dt{
		padding-left: 25px;
		font-size: 16px;
	}
	.print-section > .print-type .reccomend dt:before{
		width: 8px;
		height: 12px;
		left: 5px;
		top: 5px;
	}
	.print-section > .print-type .reccomend dd{
		padding-left: 25px;
	}
	.print-section > .print-type > img{
		width: 100%;
		max-width: 100%;
		height: 220px;
		object-position: center 50%;
	}
}


/* ====================
   よくある質問
==================== */
.faq-section{
	max-width: 1080px;
	margin: auto;
}
.faq-section .faq-list{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 40px;
}
.faq-section .faq-list > div{
    background-color: var(--color-white);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,.02);
}
.faq-section .faq-list dt{
    color: var(--color-primary);
    font-size: 20px;
    position: relative;
}
.faq-section .faq-list dd{
    max-height: 0;
    padding: 0 40px 0 90px;
    font-size: 16px;
    line-height: 1.8em;
    transition: all .3s ease;
    overflow: hidden;
    position: relative;
}

.faq-section .faq-list dt:before,
.faq-section .faq-list dd:before{
    display: block;
    width: fit-content;
    height: fit-content;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1em;
    position: absolute;
    left: 40px;
}
.faq-section .faq-list dt:before{
    content: "Q.";
    color: var(--color-blue);
    font-size: 26px;
    transform: translateY(-50%);
    top: 50%;
}
.faq-section .faq-list dd:before{
    content: "A.";
    color: var(--color-primary);
    font-size: 20px;
    top: 5px;
}
/**/
.faq-section .faq-list dt label{
    display: block;
    padding: 30px 60px 30px 90px;
    position: relative;
}
.faq-section .faq-list dt label:before,
.faq-section .faq-list dt label:after{
    content: "";
    display: block;
    width: 19px;
    height: 3px;
    background-color: #0084e0;
    transition: all .3s ease;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
}
.faq-section .faq-list dt label:after{
    transform: rotate(90deg);
    top: calc(50% + -2px);
}


/**/
.faq-section .faq-list dt:has(input:checked) label:after{
    transform: rotate(180deg);
    opacity: 0;
}

.faq-section .faq-list dt:has(input:checked) + dd{
    padding-bottom: 30px;
    max-height: 2000px; /* JS(common.js)がscrollHeightで正確に上書き。JS無効時のフォールバック */
}

.faq-section .faq-list + p{
    display: block;
    width: fit-content;
    margin: 20px 60px 0 auto;
}
.faq-section .faq-list + p a{
    display: flex;
    align-items: center;
    gap: 5px;
    color: #4e6b82;
}
.faq-section .faq-list + p a:after{
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background: url(../../_images/common/icon-arrow.webp) no-repeat right;
    background-size: 100% auto;
    filter: brightness(0) saturate(100%) invert(35%) sepia(50%) saturate(298%) hue-rotate(164deg) brightness(99%) contrast(89%);
    transition: all .3s ease;
}
.faq-section .faq-list + p a:hover:after{
    transform: translateX(5px);
}


@media screen and ( max-width: 810px ){
    .faq-section .faq-list{
        padding: 0 20px;
    }
    .faq-section .faq-list dt{
        font-size: 18px;
    }
    .faq-section .faq-list dd{
        padding: 0 30px 0 60px;
        font-size: 16px;
    }
    .faq-section .faq-list dt:before,
    .faq-section .faq-list dd:before{
        left: 20px;
    }
    .faq-section .faq-list dt:before{
        font-size: 24px;
    }
    .faq-section .faq-list dd:before{
        font-size: 20px;
    }

    .faq-section .faq-list dt label{
        padding: 25px 50px 25px 60px;
    }

    /**/
    .faq-section .faq-list + p{
		margin: 10px 0 0 auto;
        padding: 0 20px;
        font-size: 15px;
    }
}
@media screen and ( max-width: 480px ){
    .faq-section .faq-list dt{
        font-size: 16px;
    }
    .faq-section .faq-list dd{
        padding: 0 30px 0 60px;
        font-size: 16px;
    }
    /**/
    .faq-section .faq-list dt:before,
    .faq-section .faq-list dd:before{
        left: 20px;
    }
    .faq-section .faq-list dt:before{
        font-size: 20px;
        top: 30px;
    }
    .faq-section .faq-list dd:before{
        font-size: 20px;
    }

    /**/
    .faq-section .faq-list dt label{
        padding: 20px 50px 20px 55px;
    }
    
    .faq-section .faq-list dt label:before,
    .faq-section .faq-list dt label:after{
        width: 16px;
        height: 2px;
        transform: translateY(-50%);
        position: absolute;
        top: 32px;
        right: 20px;
    }
    .faq-section .faq-list dt label:after{
        transform: rotate(90deg);
        top: 31px;
    }

}


