/* 使いこなしガイド
--------------------------------------------------------- */
/* common
--------------------------------------------------------- */
.flex {
	display: flex;
	justify-content: space-between;
}
.note {
	font-size: 1.3rem!important;
	margin-top: 0.5rem!important;
}
div:target {
	scroll-margin-top: 110px;
}

/* #mv
--------------------------------------------------------- */
#mv {
	padding-top: 17rem;
	background: linear-gradient(90deg, white 0%, white 66%, #FEF2F1 66%, #FEF2F1 100%);
}
#mv .mvInner {
	display: flex;
	justify-content: space-between;
}
#mv .mvInner .itemLeft {
	padding-top: 3rem;
}
#mv .mvInner .itemLeft .flex {
	align-items: center;
	margin-bottom: 4rem;
}
#mv .mvInner .itemLeft .flex img {
	margin-right: 2rem;
}
#mv .mvInner .itemLeft .flex h2 {
	font-size: min(2.3vw, 2.4rem);
	font-weight: 600;
	color: #E10000;
	line-height: 3.5rem;
}
#mv .mvInner .itemLeft p {
	font-size: min(2vw, 2rem);
	line-height: 3.5rem;
	letter-spacing: 1px;
}

@media screen and (max-width: 767px) {
	#mv {
		padding-top: 7rem;
		background: linear-gradient(180deg, white 0%, white 63%, #FEF2F1 63%, #FEF2F1 100%);
	}
	#mv .mvInner {
    display: block;
  }
	#mv .mvInner .itemLeft {
		padding-top: 2rem;
		margin-bottom: 2rem;
	}
	#mv .mvInner .itemLeft .flex {
		justify-content: center;
		margin-bottom: 1.5rem;
	}
	#mv .mvInner .itemLeft .flex img {
		width: 50px;
		margin-right: 1rem;
	}
	#mv .mvInner .itemLeft .flex h2 {
		font-size: 2rem;
		line-height: 2.5rem;
	}
	#mv .mvInner .itemLeft p {
		font-size: 1.6rem;
		text-align: center;
		line-height: 2.4rem;
	}
	#mv .mvInner .itemRight .img {
		text-align: center;
	}
	#mv .mvInner .itemRight .img img {
		width: 350px;
	}
}


/* .linkArea
--------------------------------------------------------- */

.linkArea {
	border-top: 1px solid #E10000;
	border-bottom:  1px solid #E10000;
	margin-bottom: 5rem;
}
.linkList {
	display: flex;
}
.LinkItem {
	width: 220px;
	border-left: 1px solid #E10000;
}
.LinkItem:last-child {
	border-right:  1px solid #E10000;
}
.LinkItem a {
	display: flex;
	padding: 1.5rem;
	align-items: center;
	position: relative;
}
.LinkItem a::before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-bottom: solid 2px #E10000;
  border-right: solid 2px #E10000;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 17px;
  bottom: 0;
  margin: auto;
	transition: .2s;
}
.LinkItem a:hover::before {
	bottom: -10px;
}
.LinkItem a img {
	margin-right: 1rem;
}
.LinkItem a p {
	font-size: min(1.7vw, 1.6rem);
}

@media screen and (max-width: 767px) {
	.linkList.wrap880 {
		flex-wrap: wrap;
		width: 100%;
		padding: 0;
	}
	.LinkItem {
		width: 50%;
	}
	.LinkItem:nth-child(1),.LinkItem:nth-child(2) {
		border-bottom: 1px solid #E10000;
	}
	.LinkItem:nth-child(odd) {
		border-left: none;
	}
	.LinkItem:last-child {
    border-right: none;
  }
	.LinkItem a {
		padding: 1.4rem;
	}
	.LinkItem a img {
    margin-right: 0.7rem;
		width: 32px;
  }
	.LinkItem a p {
		font-size: 1.4rem;
	}
}

/* #guide
--------------------------------------------------------- */
#guide {
	padding-bottom: 10rem;
}
#guide .guideItem {
	margin-bottom: 7rem;
}
#guide .guideItem h3 {
	font-size: 2.6rem;
	font-weight: 500;
	display: flex;
  align-items: center;
	margin-bottom: 2rem;
	padding-top: 1rem;
}
#guide .guideItem h3 img {
	margin-right: 2rem;
}

/* ---------- .itemLeft ---------- */
.guideItem .itemLeft {
	width: 49%;
}
.guideItem .itemLeft img {
	margin-bottom: 3rem;
}
.guideItem .itemLeft p {
	font-size: 1.9rem;
}

/* ---------- .itemRight ---------- */
.guideItem .itemRight {
	width: 48%;
	background: #FFF8E0;
	padding: 3rem;
	border-radius: 10px;
}
.guideItem .itemRight li {
	font-size: 1.6rem;
	font-weight: 600;
	margin-bottom: 1.8rem;
	color: #E10000;
	margin-left: 2rem;
  text-indent: -2rem;
}
.guideItem .itemRight li:last-child {
	margin-bottom: 0;
}
.guideItem .itemRight li::before {
	display: inline-block;
	margin: 0 8px;
	width: 8px;
	height: 8px;
	content: '';
	border-radius: 100%;
	background:#E10000;
	}
.guideItem .itemRight li p {
	text-indent: 0;
	font-size: 1.6rem;
	color: #000;
	font-weight: initial;
	margin-top: 1rem;
}
.guideItem .itemRight .exampleList {
	background: #fff;
	padding: 1.5rem 3rem;
	margin-top: 1rem;
}
.guideItem .itemRight .exampleList p {
	font-size: 1.4rem;
	margin-top: 0;
}
.t-border {
	display: flex;
	align-items: center;
}
.t-border:before,
.t-border:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #666;
}
.t-border:before {
    margin-right: 1rem;
}
.t-border:after {
    margin-left: 1rem;
}
.guideItem .itemRight .exampleList p.t-border {
	margin-bottom: 0.6rem;
}
.guideItem .itemRight .exampleList p.bold {
	font-size: 1.5rem;
	font-weight: bold;
}
.guideItem .itemRight .exampleList p.right {
	text-align: right;
}
.guideItem .itemRight .exampleList p.right span {
	color: #E10000;
	font-size: 1.7rem;
	font-weight: 600
}
.guideItem .itemRight .exampleList p.right span.small {
	font-size: 1.4rem;
	font-weight: 600
}
.guideItem .itemRight .img {
	text-align: center;
	margin-top: 2rem;
}

.exampleList .flex li::before {
	content: none;
}
.guideItem .itemRight .exampleList .flex li {
	color: initial;
	font-size: 1.5rem;
	margin-bottom: 0.3rem;
}
.guideItem .itemRight .exampleList .flex li:last-child {
	margin-bottom: 0;
}
.guideItem .itemRight .exampleList.ajust {
	margin: 1rem 0 2rem;
}





@media screen and (max-width: 767px) {
	#guide {
		padding-bottom: 7rem;
	}
	#guide .guideItem {
    margin-bottom: 3rem;
  }
	#guide .guideItem .flex {
		display: block;
	}
	.guideItem .itemLeft {
		width: 100%;
	}
	#guide .guideItem h3 {
		font-size: 2rem;
	}
	#guide .guideItem h3 img {
		width: 40px;
	}

	/* ---------- .itemLeft ---------- */
	.guideItem .itemLeft img {
		margin-bottom: 2rem;
	}
	.guideItem .itemLeft p {
		font-size: 1.6rem;
		margin-bottom: 1.6rem;
	}


	/* ---------- .itemRight ---------- */
	.guideItem .itemRight {
		width: 100%;
		padding: 2rem;
	}
	.guideItem .itemRight li {
		font-size: 1.5rem;
	}
	.guideItem .itemRight li p {
		font-size: 1.5rem;
	}
	#guide .guideItem .flex .itemRight .flex {
		display: flex;
	}
	.guideItem .itemRight .exampleList p {
		font-size: 1.3rem;
	}
	.guideItem .itemRight .exampleList p.t-border {
		font-size: 1.2rem;
	}
	.guideItem .itemRight .exampleList p.bold {
		font-size: 1.4rem;
	}
	.guideItem .itemRight .exampleList p.right span {
		font-size: 1.6rem;
	}
	.guideItem .itemRight .exampleList p.right span.small {
		font-size: 1.3rem;
	}
	.guideItem .itemRight .img img {
		width: 165px;
	}
	#guide .guideItem .itemRight .catlist li {
		font-size: 1.4rem;
		font-weight: 500;
	}

}