




@charset "utf-8";

/* Base
----------------------------------------------------------------- */
html {
  font-size: 62.5%;
  height: -webkit-fill-available;
  scroll-behavior: smooth;
}
body {
  -webkit-font-smoothing: antialiased;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: var(--line-height-l);
}

:where(a) {
  color: inherit;
  text-decoration: none;
}
:where(a):hover {
  text-decoration: none;
}
:where(ol),
:where(ul),
:where(dl) {
  list-style: none;
}

:where(em),
:where(i) {
  font-style: normal;
}

:where(h1),
:where(h2),
:where(h3),
:where(h4),
:where(h5),
:where(h6) {
  font-size: 1.6rem;
  font-weight: 700;
}

:where(p) {
  font-size: 14px;
  font-weight: 700;
  line-height: var(--line-height-m);
	margin:0
}
@media print, screen and (min-width:768px) {
  :where(p) {
    font-size: 15px;
  }
}
:where(p).-center {
  text-align: center;
}

:where(em) {
  font-style: normal;
  font-weight: 500;
}

:where(img) {
  display: block;
  height: auto;
  width: 100%;
}

:where(button) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
}

:where(input) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--color-00-white);
  border: 1px solid var(--color-01-black);
}

:where(textarea) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--color-00-white);
  border: 1px solid var(--color-01-black);
}
main {
    padding: 0 0 60px;
}
header h1 {
    text-align: center;
    font-size: 30px;
    margin: 50px 0 80px;
	letter-spacing:0.1em
}
.contents-wrap {
    margin: 100px 0;
}
@media screen and (max-width:768px){
  .contents-wrap {
    margin: 50px 0;
  }
}
.contents-wrap h2 {
    margin: 0 0 40px;
    padding: 0 0 6px;
    border-bottom: 2px solid;
    text-align: center;
    font-size:22px;
    letter-spacing: 0.1em;
}
@media screen and (max-width:768px){
	.contents-wrap h2 {
		margin: 0 0 20px;
    font-size:17px
  }
}
ul.list_store {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
ul.list_store li.store{
	padding: 20px;
	background: #dedede;
	border-radius: 1.5vw;
	position: relative;
}
@media screen and (max-width:768px){
	ul.list_store{
		padding: 0 20px;
		display:grid;
		grid-template-columns:repeat(2,1fr);
	}
	ul.list_store li.store{
	padding: 20px 10px;
}
	ul.list_store li.store:not(:has(div.active)) {
		position:relative
	}
	ul.list_store li.store:has(div.active){
		position:fixed;
		top:50%;
		left:50%;
		transform:translate(-50%,-50%);
		z-index:100;
		width: 86%;
		max-width:500px;
		z-index: 10000;
	}
	body:has(div.active){
		height:100vh;
		overflow:hidden
	}
	
	#main:has(div.active)::before{
		content:"";
		display:block;
		width:100%;
		height:100%;
		position:fixed;
		top:0;
		left:0;
		background:#0000007d;
		z-index: 0;
	}
	.local_header:has(div.active), header.global:has(div.active), #nav:has(div.active){
		z-index:0;
		}
}
ul.list_store li.store div{
	transition: 0.3s;
}
ul.list_store li.store div.active{
	padding: 35px 40px 39px;
	background:#fff;
	border-radius:1.5vw;
}
ul.list_store li.store::before{
	content:"";
	display:block;
	position:absolute;
	top:0%;
	right:calc(100% - 10px);
	width:0;
	height:0;
	background:#fff;
	transition:0.3s;
}
ul.list_store li.store:has(div.active)::before{
	width:calc(100% - 50px);
	height:calc(100% - 50px);
	content:"";
	display:none;
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	background:#fff;
	border-radius:1.5vw;
	z-index:0
}
ul.list_store li.store::after{
	content:"+";
	display:flex;
	justify-content:center;
	align-items:center;
	width:50px;
	aspect-ratio:1/1;
	background: #dedede;
	color:#000;
	position:absolute;
	right:0px;
	bottom:0;
	border-radius:50%;
	font-weight:600;
	text-align:center;
	cursor: pointer;
	overflow: hidden;
	box-sizing: border-box;
	z-index: 10;
}
ul.list_store li.store:has(div.active)::after{
	content:"-";
	font-size: 42px;
	font-weight: 400;
	padding: 0 0 8px;
	width: 48px;
}
ul.list_store li.store div .account-list{
	display: none;
	width: 1px;
	height: 1px;
	opacity: 0;
	transition: 0.3s;
	overflow: hidden
}
ul.list_store li.store div.active .account-list{
	display: block;
	width: 100%;
	height: 100%;
	opacity: 1;
}
ul.list_store li.store div summary {
	display: grid;
	grid-template-columns: 1fr 40%;
	align-items: center;
	font-weight: 600;
	line-height: 1.5;
	position: relative;
}
ul.list_store li.store div.active summary{
	border-bottom:2px solid;
	margin-bottom: 36px;
	padding-bottom: 5px;
	grid-template-columns: auto 1fr;
	gap: 20px;
}
ul.list_store li.store div.active summary h3{
	font-size: 20px;
}
@media screen and (max-width:768px){
	ul.list_store li.store div.active{
		padding: 30px 20px;
	}
	ul.list_store li.store div summary{
		grid-template-columns: 1fr;
		justify-content:center;
		align-items:center;
		text-align:center;
		gap: 11px;
	}
	ul.list_store li.store div.active summary {
	grid-template-columns: auto 1fr;
	gap: 19px;
	font-size: 12px;
	}
	ul.list_store li.store div summary h3{
		font-size:13px
	}
	ul.list_store li.store div.active summary h3{
		font-size: 17px;
		text-align:left;
	}
	ul.list_store li.store::after{
	width: 38px;
	right: 3px;
	bottom: 3px;
	}
}
ul.list_store li.store div summary .iconimg-wrap{
	padding: 10px 38px;
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 33px;
	background: #fff;
	border-radius: 1.5vw;
	justify-content: center;
}
ul.list_store li.store div summary .iconimg-wrap::after{
	display:none
}
	ul.list_store li.store div.active summary .iconimg-wrap{
		max-width: 150px;
		gap: 19px;
		padding: 10px 0;
	}
ul.list_store li.store div.active summary .iconimg-wrap li.icon.blank{
	display:none
}
@media screen and (max-width:600px){
  ul.list_store li.store div summary .iconimg-wrap{
	padding: 20px 19px;
	/* grid-template-columns: repeat(2,1fr); */
	gap: 16px;
	}
	ul.list_store li.store div.active summary .iconimg-wrap{
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 14px;
	background: #fff;
	border-radius: 1.5vw;
	}
	ul.list_store li.store li.icon.blank{
	  display: none;
	}
}
@media screen and (max-width:450px){
  ul.list_store li.store div summary .iconimg-wrap{
	padding: 20px 13px;
	gap: 7px;
	}
}
ul.list_store li.store div.active ul.account-list {
    margin: 20px 0 0;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    position: relative;
}
@media screen and (max-width:768px){
	ul.list_store li.store div.active ul.account-list {
    margin: 20px 0 0;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
ul.account-list li.account a{
    display: grid;
    grid-template-columns: 10% 1fr;
    gap: 20px;
    align-items: center;
}
ul.account-list li.account p{
	line-height:1.6;
	margin: 0;
}
ul.account-list li.account p span{
	color:#747474;
	font-size:14px;
	display:block;
}



