@charset "UTF-8";

html{
	scroll-behavior: smooth;
}

body{
	position: relative;
	padding: var(--margin-base);
	font-family:"M PLUS Rounded 1c", sans-serif;
	font-weight: 400;
	overflow-x: hidden;
	background-color: var(--color-base);
	color: var(--color-text);
}


.m-plus-rounded-1c-regular {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
}


a#return{
	display: block;
	position: fixed;
	bottom: 3rem;
	right: 3rem;
	font-size: 3em;
	line-height: 1;
	color: var(--color-accent);
}

a{
	color: var(--color-main);
}

/* コンテンツエリア */
section{
	max-width: 110rem;
	margin: 0 auto var(--margin-base);
}

section:last-of-type{
	margin-bottom: 0;
}



/* ボックスの中 */
.box{
	padding: var(--margin-base);
	background-color: var(--color-light);
	border-radius: var(--border-radius);
}



.text a{
	text-decoration: underline;
	font-weight: 600;
}

.text a::after{
	margin-left: 0.2em;
	font-family: var(--font-icon);
	content: "\f35d";
	font-weight: 900;
}

dl,ul{
	margin: 1.4em 0;
	padding-left: 1.6em;
}

dt,li{
	position: relative;
}

ul{
	column-gap: var(--margin-base);
}

ul.column2{
	column-count: 2;
}

ul.column3{
	column-count: 3;
}

li{
	margin-bottom: 0.3em;
}

dd{
	margin-bottom: 1em;
}

dt::before,
li::before{
	position: absolute;
	left: -1.6em;
	font-family: var(--font-icon);
	content: "\f058";
	font-weight: 400;
	color: var(--color-accent);
}

dt.like::before,
li.like::before{
	content: "\f004";
	color: var(--color-main);
	font-weight: 900;
}

dt.dislike::before,
li.dislike::before{
	content: "\f7a9";
	font-weight: 900;
}

dt.attention::before,
li.attention::before{
	content: "\f071";
	font-weight: 900;
}

dt.game::before,
li.game::before{
	content: "\f11b";
	font-weight: 900;
}

.link dt::before,
.link li::before{
	content: "\f35d";
	font-weight: 900;
}




/* ↓オフライン */
.booklist{
	display: flex;
	flex-wrap: wrap;
	gap: 2em;
}

.book{
	padding: 1.3em;
	width: calc(50% - 2em / 2);
	border: solid 1px var(--color-accent);
}

.book .gaiyou{
	align-items: flex-start;
	gap: 1.5em;
}

.book .gaiyou img.hyoushi{
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

.book h4{
	font-weight: 600;
	margin-top: 5px;
}

.book p.product{
	margin: 0.3em 0;
	font-size: 0.8em;
	letter-spacing: 0.1em;
	font-family: var(--font-alphanumeric);
	font-weight: 600;
	color: var(--color-main);
}

.book p.outline{
	font-size: 0.95em;
	line-height: 1.5;
}

.order{
	display: flex;
	align-content: space-between;
	gap: 1em;
	margin-top: 1em;
	width: 100%;
}

.book .order a{
	display: block;
	width: 100%;
	color: var(--color-light);
	background-color: var(--color-main);
	line-height: 2.4;
	text-align: center;
	font-weight: bold;
}

.book .order a.soldout{
	pointer-events: none;
	background-color: #ECECEC;
	color: #aaa;
}






.note-article {
  max-width: 680px;
  margin: 20px auto;
  font-size: 1.5rem;
}

.note-title {
  font-size: 2.2rem;
  line-height: 1.4;
	  margin-top: 0.3em;
  margin-bottom: -0.5em;
	  letter-spacing: 0.05em;
}


.note-body h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1em;
}


.note-date {
  color: #888;
  font-size: 0.8em;
		  margin-top: 1.5em;
  margin-bottom: 2em;
	  letter-spacing: 0.05em;
}

.note-body {
  letter-spacing: 0.05em;
}

.note-body p {
  font-size: 1em;
  line-height: 1.7em;
  margin-bottom: 1.5em;
}


.note-body img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2em auto;
}


/* 区切り線 */
.note-hr {
  border: none;
  border-top: 1px solid #EAEAEA;
  margin: 2em 0;
}




/* 一覧リスト用 */

.note-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.note-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.note-card img {
  width: 100%;
  height: auto;
  margin-bottom: -0.5em;
}

.note-card-title {
  font-size: 1.6rem;
		  margin-top: 0.5em;
  margin-bottom: -0.8em;
	  margin-left: 0.5em;
	  letter-spacing: 0.05em;
}

.note-card-date {
  font-size: 0.8em;
  color: #888;
	  margin-bottom: -1em;
		  margin-left: 1em;
	  letter-spacing: 0.05em;
}

.note-card-tags {
  font-size: 0.75em;
  color: #C30D23;
		  margin-left: 1em;
		  margin-bottom: 0.5em;
	  letter-spacing: 0.05em;
}


/* 一覧リスト用画像ホバー */


@media (hover: hover) and (pointer: fine) {


	
.note-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.note-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

	
	}

/* 最下部ボタン */

.button-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    margin:0 auto;
    padding: .9em 2em;
    border: none;
    border-radius: 5px;
    background-color: #c30d23;
    color: #fff;
    font-weight: 600;
    font-size: 1em;
}

.button-2:hover {
    background-color: #b30013;
}
