/* CSS Document */
/*ページタイトル*/
.page_title > h2::after{
	content: "ACCESS";
}
/*コンテンツ*/
.access_area{
	box-sizing: border-box;
}
body[wc-view-code="sp"] .access_area{
	padding: var(--headerHeight) 7vw 0;
}
body[wc-view-code="tb"] .access_area{
	padding: var(--headerHeight) 5vw 0;
}
body[wc-view-code="pc"] .access_area{
	padding: var(--headerHeight) calc((100vw - 1100px) / 2) 0;
}
.access_area > p{
	line-height: 1.8rem;
	transition: opacity 600ms ease;
  opacity: 0;
}
.access_area > p.wcvisible{
	opacity: 1;
}
body:not([wc-view-code="sp"]) .access_area > p{
	text-align: center;
}
.method{
	display: flex;
	margin-top: 1.5rem;
	gap:1.5rem;
	justify-content: center;
}
body[wc-view-code="sp"] .method{
	flex-direction: column;
	gap: 1.25rem;
}
.method > article{
	transition: opacity 600ms ease,transform 600ms ease;
  opacity: 0;
  transform: translateY(1rem);
}
.method > article.wcvisible{
	opacity: 1;
	transform: translateY(0);
}
body:not([wc-view-code="sp"]) .method > article{
	width: calc(50% - 0.75rem) !important;
}
body[wc-view-code="tb"] .method:only-of-type > article,
body[wc-view-type="tb-l"] .method:only-of-type > article{
	width: fit-content;
}
/*
body:not([wc-view-code="sp"]) .method:only-of-type > article{
	width: 100%;
}*/
.method > article > h2{
	font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 1.1rem;
  box-sizing: border-box;
	line-height: calc(1rem + (1em - 1lh) / 2);
	margin-bottom: 0.75rem;
}
.method > article > h2::before{
	content: "";
  -webkit-mask-image: url("/img/svg/title_deco.svg");
  mask-image: url("/img/svg/title_deco.svg");
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: var(--accentColor);
  width: 0.8rem;
  height: 0.9rem;
}
.method > article > .in_method{
	box-sizing: border-box;
}
.method > article > .in_method > ul{
	box-sizing: border-box;
	list-style-position: outside;
	padding-left: 1rem;
}
.method > article > .in_method > ul li{
}
.method > article > .in_method > ul li:not(:first-of-type){
	margin-top: 0.5rem;
}
.method > article > .in_method > p{
	line-height: 1.8rem;
}
.method > article > .in_method > .explanation{
	margin-top: 0.5rem;
}
.method > article > .in_method > .explanation > dt{
}
.method > article > .in_method > .explanation > dt span{
	font-weight: 700;
  border: 1px solid #bbb;
  font-size: 0.95rem;
  line-height: calc(1rem + (1em - 1lh) / 2);
  height: 18px;
  display: flex;
  width: fit-content;
  align-items: center;
  padding: 0 0.5rem;
}
body[wc-view-code="pc"] .method > article > .in_method > .explanation > dt span{
	height: 23px;
}
.method > article > .in_method > .explanation > dd{
}
.method > article > .in_method > .explanation > dd > p{
	line-height: 1.8rem;
}
/*アクセスマップ*/
.map{
	box-sizing: border-box;
}
body[wc-view-code="sp"] .map{
	padding: var(--headerHeight) 7vw;
}
body[wc-view-code="tb"] .map{
	padding: var(--headerHeight) 5vw;
}
body[wc-view-code="pc"] .map{
	padding: var(--headerHeight) calc((100vw - 1100px) / 2);
}
.map .contents_title{
	margin-bottom: 1.5rem;
}
.map .contents_title::before{
	content: "MAP";
}
.map .map_box{
	position: relative;
	z-index: 1;
}
body:not([wc-view-code="pc"]) .map .map_box{
	aspect-ratio:1.414/1;
}
body[wc-view-code="pc"] .map .map_box{
	width: 1100px;
	height: 450px;
}
.map .map_box iframe{
	position: absolute;
	inset:0;
	z-index: 2;
	width: 100%;
	height: 100%;
}