@charset "UTF-8";
/**
 * パンくずリスト
 */
.breadcrumbs {
  padding-top: 30px;
  margin: 0 0 30px;
}
.breadcrumbs ol {
  display: box;
  display: flexbox;
  display: flex;
  align-items: flex-start;
  flex-flow: row wrap;
}
.breadcrumbs ol li {
  margin-right: 0.5em;
}
.breadcrumbs ol li + li {
  margin-left: 0.5em;
}
.breadcrumbs ol a {
  color: #ff9a2c;
}

/**
 * レイアウト
 */
.inner {
  position: relative;
}
.inner.def {
  width: 89.3333333333%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 769px) {
  .inner.def {
    width: min(95%, 1280px);
  }
}

.single main, .archive main {
  padding-top: 50px;
  margin-bottom: 50px;
}
@media screen and (min-width: 769px) {
  .single main, .archive main {
    padding-top: 62px;
  }
}
.single main .content, .archive main .content {
  background-color: #f1f1f1;
  padding-bottom: 50px;
}
.single .breadcrumbs, .archive .breadcrumbs {
  font-size: 12px;
  font-size: 0.75rem;
  color: #704834;
  text-align: center;
  padding-top: 5px;
  margin: 0 auto 40px;
}
.single .breadcrumbs ol, .archive .breadcrumbs ol {
  justify-content: center;
}
.single .bg, .archive .bg {
  display: none;
}

.content-wrap,
.search .blog__list {
  margin-left: auto;
  margin-right: auto;
  color: #704834;
}
@media screen and (min-width: 769px) {
  .content-wrap,
  .search .blog__list {
    width: min(100%, 1280px);
  }
}
@media screen and (min-width: 992px) {
  .content-wrap,
  .search .blog__list {
    display: box;
    display: flexbox;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .content-wrap .primary,
  .search .blog__list .primary {
    width: min(67vw, 975px);
  }
  .content-wrap .secondary,
  .search .blog__list .secondary {
    width: 275px;
  }
}

/**
 * カテゴリー
 */
.cat {
  font-size: 12px;
  font-size: 0.75rem;
  color: #704834;
  line-height: 1;
  padding: 5px 0.75em;
  margin-right: 0.5em;
  background-color: #ff9a2c;
  display: inline-block;
}

/**
 * 日付
 */
.date {
  margin-right: 20px;
}

/**
 * タグ
 */
.tags {
  margin-top: 20px;
  display: box;
  display: flexbox;
  display: flex;
  align-items: flex-start;
}
.tags span {
  min-width: 3em;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.65;
  margin-right: 5px;
}
.tags ul {
  display: box;
  display: flexbox;
  display: flex;
  align-items: flex-start;
  flex-flow: row wrap;
}
.tags ul li {
  color: #704834;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.65;
  border: solid 1px #e6cfac;
  padding: 2px 10px;
  margin-right: 7px;
  margin-bottom: 7px;
}

/**
 * メイン
 */
.primary {
  padding: 50px 5px 0;
  margin-top: -60px;
  border-radius: 15px;
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  .primary {
    margin-top: -90px;
  }
}

/**
 * サイドバー
 */
@media screen and (min-width: 769px) {
  .secondary {
    margin-top: -90px;
  }
}
.secondary .inner > div {
  padding: 20px 20px 30px;
  margin-bottom: 35px;
  border-radius: 15px;
  background-color: #fff;
}
.secondary {
  /* タイトル */
}
.secondary .side-ttl {
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 55px;
  position: relative;
}
.secondary .side-ttl::after {
  content: "";
  width: 30px;
  max-width: 100%;
  height: 5px;
  margin: 6px 0px 0px 0px;
  border-radius: 4px;
  background: #ff9a2c;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.secondary {
  /* カテゴリーリスト */
}
.secondary .cat-list li {
  border-bottom: 1px solid #e6cfac;
}
.secondary .cat-list li:last-child {
  border-bottom: none;
}
.secondary .cat-list li a {
  padding: 12px 0;
  display: block;
  position: relative;
}
.secondary .cat-list li a::after {
  content: url("../images/arrow-right.svg");
  width: 7px;
  height: auto;
  display: block;
  position: absolute;
  top: 50%;
  right: 0.5em;
  transform: translateY(-50%);
}
.secondary {
  /* ブログリスト */
}
.secondary .side-blog__list-item a {
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: solid 1px #e6cfac;
  display: box;
  display: flexbox;
  display: flex;
  align-items: flex-start;
  flex-flow: row wrap;
}
.secondary .side-blog__list-item:last-child a {
  border-bottom: none;
}
.secondary .side-blog__list-img {
  width: 100px;
  height: 75px;
  margin-right: 10px;
  overflow: hidden;
}
.secondary .side-blog__list-img img {
  object-fit: cover;
  border-radius: 4px;
  aspect-ratio: 16/9;
}
.secondary .side-blog__list-ttl {
  width: 100%;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.secondary .side-blog__list .wrap {
  width: calc(100% - 110px);
}
.secondary .side-blog__list .date {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  margin-bottom: 5px;
  display: block;
}
.secondary .side-blog__list .cat {
  font-size: 11px;
  font-size: 0.6875rem;
  color: #fff;
  padding: 5px 0.6em;
  border-radius: 5px;
  display: inline-block;
}
.secondary .side-blog__list .cat + .cat {
  margin-top: 5px;
}
.secondary {
  /* タグリスト */
}
.secondary .tag-list ul {
  display: box;
  display: flexbox;
  display: flex;
  flex-flow: row wrap;
}
.secondary .tag-list a {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1.6;
  color: #704834;
  padding: 2px 10px;
  margin-right: 7px;
  margin-bottom: 7px;
  overflow: visible;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.secondary .tag-list a::before {
  content: "#";
  display: inline-block;
}

/**
 * ページ　ヘッダー
 */
.page-header {
  max-height: 300px;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 769px) {
  .page-header {
    height: 21.9619326501vw;
    max-height: 300px;
  }
}
.page-header__ttl {
  font-size: 22px;
  font-size: 1.375rem;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.2em;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .page-header__img, .page-header__img img {
    max-width: inherit;
    height: 100%;
    object-fit: cover;
  }
}

/**
 * ページネーション
 */
.pagenation {
  font-family: hiragino-kaku-gothic-pron, "游ゴシック", yugothic, "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 769px) {
  .pagenation {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.pagenation__inner {
  padding: 1em 0;
  margin: 50px auto;
  display: box;
  display: flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagenation span {
  min-width: 2em;
  text-align: center;
  font-weight: 700;
  color: #AAA;
}
.pagenation a {
  min-width: 2em;
  text-align: center;
  color: #704834;
}
.pagenation a:link, .pagenation a:visited, .pagenation a:hover, .pagenation a:active {
  color: #704834;
}
.pagenation a:not(.prev):not(.next) {
  font-weight: 700;
}
.pagenation a.previouspostslink, .pagenation a.nextpostslink {
  font-weight: 400 !important;
}
.pagenation a:hover {
  opacity: 0.8;
}
.pagenation .current {
  color: #ff9a2c;
}


.single .primary dl {
	margin-bottom: 30px;
}

.single .primary dt {
	margin-bottom: 3px;
	padding-bottom: 9px;
/*	background: url(../img/e_line.jpg) repeat-x left bottom; */
	font-size: 11px;
	line-height: 16px;
}

.single .primary dt a {
	display: inline-block;
	min-width: 140px;
	height: 16px;
	overflow: hidden;
	margin-left: 10px;
	padding: 0 10px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
/*	background: #eb959b url(../img/e_category.jpg) repeat-x 0 0; */
	text-decoration: none;
	vertical-align: middle;
	text-align: center;
	color: #fff;
}

.single .primary dd {
	padding: 12px 0 13px;
/*	background: url(../img/e_line.jpg) repeat-x left bottom; */
	font-weight: bold;
	font-size: 15px;
	color: #e77494;
}

.single .primary dd a {
	text-decoration: none;
	color: #e77494;
}

.single .primary dd a:hover {
	text-decoration: underline;
	color: #542173;
}

.single .primary {
	line-height: auto;
}

.single .primary p {
	margin-bottom: 20px;
}

.single .primary ul {
	margin-bottom: 20px;
	margin-left: 18px;
}

.single .primary ol {
	margin-bottom: 20px;
	margin-left: 24px;
}

.single .primary table {
	width: 100%;
}

.single .primary th {
	padding: 10px;
	border: solid 1px #efeff0;
	background: #fdfdf5;
	text-align: left;
	font-weight: normal;
}

.single .primary td {
	padding: 10px;
	border: solid 1px #efeff0;
	text-align: left;
	font-weight: normal;
}