@charset "UTF-8";
/* PCページ */
@media screen and (min-width: 768px){
main{
	padding-top: 114px;
}
.page-title::after{
	background-image : url(img/guide-3.jpg);
}
/* ご利用ガイド */
.guide1{
	width: 100%;
	max-width: 1920px;
	padding: 80px 4vw 0;
	margin: 0 auto;
	position: relative;
	display: grid;
	row-gap: 60px;
}
.guide1-in1{
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 0 3vw;
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
	position: relative;
	opacity: 0;
	transition: opacity 1.4s, transform 1s;
	transform: translateY(20px);
}
.guide1-in1.run{
	opacity: 1;
	transform: translateY(0);
}
.guide1-in1:nth-child(even){
	padding: 60px 0;
}
.guide1-in1:nth-child(even)::after{
	position: absolute;
	content: "";
	background: #f9f8f8;
	width: calc(100vw - 10px);
	height: 100%;
	left: 50%;
	top: 0;
	margin-left: -50vw;
	z-index: -1;
}
.guide1 img{
	width: 100%;
	max-width: 768px;
	min-width: 300px;
	grid-column: 5 / 8;
}
.guide1-in1 p{
	margin: 0 0 30px;
	font-weight: bold;
	color: #545454;
	font-size: 25px;
	position: relative;
	display: flex;
	justify-content: flex-start;
	padding-bottom: 5px;
	grid-column: 1 / 8;
}
.guide1-in1 p::after{
	position: absolute;
	content: "";
	background: linear-gradient(90deg, #8b837c 0%, #8b837c 50%, #d8d8d8 50%, #d8d8d8 100%);
	width: 100%;
	height: 1px;
	bottom: 0;
}
.guide1-in1 ul{
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	row-gap: 20px;
	list-style: none;
	grid-column: 1 / 5;
}
.guide1-in1:nth-last-child(-n+2) ul{
	grid-column: 1 / 8;
}
.guide1-in1 li:not(.g-li1){
	position: relative;
	padding-left: 1em;
	align-items: center;
}
.guide1-in1 li:not(.g-li1)::before{
	position: absolute;
	content: "●";
	font-size: 10px;
	color: #8b837c;
	left: 0;
	top: 0.5em;
}
.g-li1{
	margin-top: -20px;
	padding-left: 2em;
	text-indent: -1em;
}
.g-li1 span{
	display: inline;
	background: linear-gradient(transparent 60%, #e8e6e5 30%);
}
}
/* タブレット */
@media screen and (min-width: 768px) and (max-width: 1024px){
main{
	padding-top: 79px;
}
}
/*スマホページ */
@media screen and (max-width: 768px){
main{
	padding-top: 72px;
}
.page-title::after{
	background-image : url(img/guide-3.jpg);
}
/* ご利用ガイド */
.guide1{
	padding: 0 20px 50px;
	margin: 0 auto;
	display: grid;
}
.guide1-in1{
	display: grid;
	row-gap: 20px;
	padding: 40px 0 50px;
}
.guide1-in1:nth-child(even){
	position: relative;
}
.guide1-in1:nth-child(even)::after{
	position: absolute;
	content: "";
	background: #f9f8f8;
	width: calc(100vw - 10px);
	height: 100%;
	left: 50%;
	margin-left: -50vw;
	z-index: -1;
}
.guide1-in1 img{
	width: 100%;
	max-width: 768px;
}
.guide1-in1 p{
	margin: 0;
	padding-bottom: 5px;
	position: relative;
	font-weight: bold;
	color: #545454;
	font-size: 18px;
	display: flex;
	justify-content: flex-start;
}
.guide1-in1 p::after{
	position: absolute;
	content: "";
	background: linear-gradient(90deg, #8b837c 0%, #8b837c 50%, #d8d8d8 50%, #d8d8d8 100%);
	width: 100%;
	height: 1px;
	bottom: 0;
}
.guide1-in1 ul{
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	row-gap: 20px;
}
.guide1-in1 ul li:not(.g-li1){
	position: relative;
	padding-left: 1em;
}
.guide1-in1 ul li:not(.g-li1)::before{
	position: absolute;
	content: "●";
	font-size: 10px;
	color: #8b837c;
	left: 0;
}
.g-li1{
	margin-top: -20px;
	text-indent: -1em;
	padding-left: 2em;
}
.g-li1 span{
	display: inline;
	background: linear-gradient(transparent 60%, #e8e6e5 30%);
}
}