@charset "UTF-8";

/* sass */

/* メイン画像 */
@media all and (min-width: 768px) { .area-pagettl { min-height: 350px; }
  .area-pagettl::before { max-height: calc(350px + 84px); } }

.area-pagettl::before{
      background-image: url(/ricefactbook/images/bg-pagettl-factbook-sp.jpg);
      content: '';
    }
    @media (min-width: 768px) {
      .area-pagettl::before{
        background-image: url(/ricefactbook/images/bg-pagettl-factbook-pc.jpg);
      }
    }


/* クラス */
.center {text-align: center}

.margin-l5_r5 {margin-left: 5px;
               margin-right: 5px;}

.m-left10 {margin-left: 10px;}


/* ページネーション（ページ送り） */
.Pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 100px;
}
.Pagination > * + * {
  margin-left: 12px;
}
.Pagination-Item-Link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 40px;
  height: 40px;
  background: #fff;
  font-size: 25px;
  font-weight: bold;
  transition: all 0.15s linear;
}
.Pagination-Item-Link-Icon {
  width: 20px;
}
.Pagination-Item-Link.isActive {
  pointer-events: none;
  background: #111;
  color: #fff;
}
.Pagination-Item-Link:not(.isActive):hover {
  background: #111;
  color: #fff;
}


/* アコーディオン */
.accordion-001 {
	max-width: 850px;
	background-color: #F3F1F1;
}

.accordion-001:not([open]) {
    margin-bottom: 7px;
}

.accordion-001 summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding: 1em 2em;
	border-radius: 5px;
	background-color: #4e473c;
	color: #fff;
	font-weight: 600;
	cursor: pointer;
}

.accordion-001 summary::-webkit-details-marker {
    display: none;
}

.accordion-001 summary::before,
.accordion-001 summary::after {
    width: 3px;
    height: .9em;
    border-radius: 5px;
    background-color: #fff;
    content: '';
}

.accordion-001 summary::before {
    position: absolute;
    right: 2em;
    rotate: 90deg;
}

.accordion-001 summary::after {
    transition: rotate .3s;
}

.accordion-001[open] summary::after {
    rotate: 90deg;
}

/* 緑丸 */
.circle {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background-color: #006400;
	text-align: center;
	line-height: 14px; /* 垂直方向の中央揃え */
	color: #ffffff;
	display: inline-block; /*  span要素など横並びにする場合 */
	margin-right: 3px;
}
