*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "YuGothic", "游ゴシック体", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}
h2 {
  color: #5B4634;
  font-weight: 500;
  letter-spacing: 0.12em;
  font-family: "Noto Serif JP", serif;
  font-size: 225%;
}
h3 {
  color: #5B4634;
  font-weight: 500;
  letter-spacing: 0.12em;
  font-family: "Noto Serif JP", serif;
  font-size: 200%;
}
h4 {
  color: #5B4634;
  font-family: "Noto Serif JP", serif;
  font-size: 105%;
}
p,ul {
  color: #5c3a33;
  letter-spacing: 0.12em;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  p,ul {
    font-size: 1rem;
  }
	h4 {
		font-size: 100%;
	}
}

/* -------------------レスポンシブ------------------- */
.sp_only {
  display: none;
}
.pc_only {
  display: block;
}
@media (max-width: 768px) {
  .sp_only {
  display: block;
}
.pc_only {
  display: none;
}
}

/* -------------------画像------------------- */
.maauto {
	margin: auto;
}
/* -------------------セクション------------------- */
.mw1200{
    width: 94%;
    padding: 0 3%;
    max-width: 1200px;
    margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  section {
	  padding: 0;
}
}

/* -------------------マージン------------------- */
.m40 {
  margin: 40px 0;
}

/* -------------------width------------------- */
.wi85 {
  width: 85%;
}

/* -------------------位置------------------- */
.txcenter {
  text-align: center;
}
.left {
  text-align: left;
}


/* -------------------フォントサイズ------------------- */



/* -------------------カラム------------------- */



/* -------------------カラー------------------- */


/* -------------------メニュー出し分け------------------- */
#header-sp { display: none; }

@media (max-width: 768px) {
  #header-pc { display: none; }
  #header-sp { display: block; }
}

/* -------------------パンくず------------------- */
.breadcrumb {
  font-size: 0.9rem;
    margin: 45px auto;
    padding: 0 15px;
    color: #666;
    width: 90%;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li + li::before {
  content: ">";
  color: #999;
  margin: 0 8px;
}

.breadcrumb a {
	text-decoration: none;
	color: #c8a88b;
	transition: color 0.2s;
}

.breadcrumb a:hover {
	text-decoration: underline;
	color: #cf61a1;
}
@media only screen and (max-width: 768px) {
  .breadcrumb ol {
    font-size: 12px;
  }
}
