@charset "utf-8";


#contents {
 background: #FFF;
 font-family: 'Zen Kaku Gothic New', sans-serif;
	font-family: 'Sawarabi Gothic', sans-serif;	
}

#contents .comingsoon {
 text-align: center;
 font-size: 30px;
 font-weight: bold;
}


#footer {
	background: #FFF;
}

/*----------------------------------------------------*/ 
/* news
------------------------------------------------------*/ 

#news {
	padding: 0 20px 0;
}
#news .news {
	max-width: 990px;
	margin: 0 auto 50px auto;
	font-size: 16px;
	padding-top: 50px;
}

#news .h_news {
	padding: 3.5rem 0 1.5rem 0;
	position: relative;
	font-size: 3rem;
	font-weight: normal;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	border-bottom: 1px dotted #000;
	gap:1rem;
}


#news .h_news .icon img {
 width: 58px;
}

#news .date {
	font-size: 16px;
	text-align: right;
	margin-bottom: 15px;
}

#news .news .detail  {
	padding: 40px 40px 10px;
	font-size: 18px;
}

/* 中身 */
#news .news .detail section:not(:last-child) {
	margin-bottom: 3rem;
}

#news .news .detail p {
	margin: 0 0 20px 0;
}

#news .news .detail  .notes {
	margin: 0 0 1em;
	font-size: 18px;
}

#news .news .detail .notes li {
	font-size: 16px;
	padding-left: 1em;
	text-indent: -1em;
}

#news .news .detail .notes li.red {
	color: #C00;
}
#news .news .detail span.strikethrough {
	position: relative;
}

#news .news .detail span.strikethrough:after{
	content: "";
	width: 100%;
	height: 3px;
	background: #333;
	position: absolute;
	left: 0;
	top: calc(50% - 1.5px);
}

#news .news .detail span.red {
	color: #C00;
}

#news .news .detail .dotlist01 li {
	padding-left: 1em;
	text-indent: -1em;
}

#news .news .detail strong.type01 {
	font-weight: bold;
	background: linear-gradient(transparent 70%, #fffcc3 70%);
}



#news .news .detail .htype01 {
	background: #EEE;
	padding: 1rem;
	margin-bottom: 3rem;
}


#news .news .detail .sampleimage {
	margin-top: 1rem;
}

@media (max-width: 1024px) {
#news {
	padding: 10px 20px 0 20px;
}
}

@media (max-width: 768px) {
	#news .news {
		margin: 0 auto 30px auto;
		padding-top: 0;
	}
	

#news .h_news {
	padding: 0 0 15px 0;
	font-size: 20px;
	line-height: 1.4;
	display: block;
}


#news .h_news .icon {
	position: block;
	position: relative;
	display: block;
	left: auto;
	bottom: auto;
	text-align: center;
	margin-bottom: 5px;
	width: 100%;
}
#news .h_news .icon img {
	width: 30px;
	}

	
#news .news .detail  {
	padding: 20px 0 ;
}
 
}

/* #newsdllist01 */

.news .dllist01 {
	display: grid;
	grid-template-columns: 7em auto;
	margin-bottom: 3rem;
	gap:1rem 1rem;
	dt {
		font-weight: bold;
	}
}
.news .dllist03 {
	display: grid;
	grid-template-columns: 9em auto;
	margin-bottom: 3rem;
	gap:3rem 1rem;
}

.news .dllist03	dt {
	font-weight: bold;
}


@media (max-width: 768px) {
	.news .dllist01,
	.news .dllist03 {
			grid-template-columns: 1fr;
	}
}

.news .dllist02 dt {
	font-weight: bold;
	margin-bottom: .5rem;
}
.news .dllist02 dd {
	margin-bottom: 3rem;
}


/* #news20241113 */

#news20241113 dl {
		display: flex;
		flex-wrap: wrap;
		gap:1rem 1rem;
		margin-bottom: 1rem;
}

#news20241113 dl dt {
	font-weight: bold;
	width: 10rem;
}

#news20241113 dl dt:first-child {
	width: 100%;
}
#news20241113 dl dd.wide {
	width: 100%;
	margin-bottom: 2rem;
}
#news20241113 dl dd strong {
	text-decoration: underline;
	font-weight: normal;
}

#news20241113 .correctList table {
	width: 100%;
	border-top: 1px solid #CCC;
	border-left: 1px solid #CCC;
	margin-bottom: .85rem;
	margin-top: 1rem;
}

#news20241113 .correctList table th,
#news20241113 .correctList table td {
	border-right: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	padding: 8px;
	font-size: 1.4rem;
}

#news20241113 .correctList table th {
	text-align: center;
	font-weight: normal;
}

#news20241113 .correctList table th.seiza {
	background: #EFEFEF;
	white-space: nowrap;
	text-align: left;
	width: 6rem;
	font-weight: bold;
}
#news20241113 .correctList table tr.correct th,
#news20241113 .correctList table tr.correct td {
	font-weight: bold;
}


/* #shoplist */


#news #shoplistbtn {
	display: inline-block;
	padding: 10px 40px 10px 20px;
	background: #f8dd99;
	text-decoration: none;
	position: relative;
}

#news #shoplistbtn:after {
	content: "";
	width: 10px;
	height: 10px;
	border-bottom:2px solid #FFF;
	border-right:2px solid #FFF;
	position: absolute;
	right: 15px;
	top: 15px;
  transition: all 0.4s;
	transform: rotate(45deg);
}

#news #shoplistbtn.open:after {
	content: "";
	width: 10px;
	height: 10px;
	border-bottom:2px solid #FFF;
	border-right:2px solid #FFF;
	position: absolute;
	right: 15px;
	top: 20px;
	transform: rotate(-135deg);
}


#news #shoplistbtn:hover {
	background: #f8dd99;
}


#news #shoplistbox {
	display: none;
	padding: 20px 0;
	margin:0 auto ;
}

#news #shoplistbox h3 {
	padding:5px 5px;
	font-weight:bold;
	background: #f8dd99;
	font-size: 14px;
	margin: 0 auto 5px;
	text-align: left;
	position: relative;
}

#news #shoplistbox h3 .icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translatey(-50%);
}
#news #shoplistbox h3 .icon:before {
  content: "";
  display: block;
  transition: all 0.4s;
	width: 6px;
	height: 6px;
	border-bottom:2px solid #FFF;
	border-right:2px solid #FFF;
	transform: rotate(45deg);
}

#news #shoplistbox h3.open .icon:before {
	transform: rotate(-135deg);
}
#news #shoplistbox .junfudo {
	font-size: 1.4rem;
}


#news .shoplist {
	display: none;
}

#news .shoplist table {
	border-top:1px solid #333;
	border-left: 1px solid #333;
	margin: 0 0 30px;
	width: 100%;
	font-size: 1.4rem;
}

#news .shoplist th,
#news .shoplist td {
	border-right:1px solid #333;
	border-bottom: 1px solid #333;
	padding: 5px;
}
#news .shoplist thead th{
	text-align: center;
	white-space: nowrap;
}

#news .shoplist th,
#news .shoplist th + td {
	background: #f3f3f8;
	white-space: nowrap;
}

#news .shoplist .area th {
	background: #fffcc3;
}

@media (max-width: 750px) {

#news .shoplist table {
	width:100%;
}

#news .shoplist table thead th {
	font-size:10px;
}

#news .shoplist table th,
#news .shoplist table td {
	font-size:10px;
}


}