@charset "utf-8";
:root {
  --header-height-pc:140px;
  --header-height-sp:78px;
  --site-max-width:1920px;
  --footer-menu-sp-height:60px;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height-sp);
}
@media (min-width: 641px) {
  html {
    scroll-padding-top: var(--header-height-pc);
  }
}

@media (min-width: 641px) {
  body{
      min-width:1200px;
  }
}


/* font-size */
.fs-001 {
  font-size: 24px;
}
.fs-002 {
  font-size: 20px;
}
.fs-003 {
  font-size: 18px;
}
.fs-004 {
  font-size: 20px;
}
.fs-005 {
  font-size: 18px;
}
@media (min-width: 641px) {
  .fs-001 {
    font-size: 36px;
  }
  .fs-002 {
    font-size: 26px;
  }
  .fs-003 {
    font-size: 24px;
  }
  .fs-004 {
    font-size: 21px;
  }
}

/* button --------------------------------- */
.button-001 {
  background: #FD94A8;
  color: #fff;
  padding:6px 35px;
  text-decoration: none;
  border-radius: 24px;
  border: solid 1px #FD94A8;
  font-weight: 600;
  display: inline-block;
  text-align: center;
  font-size: 17px;
}

.button-001:hover {
  border: solid 1px #FD94A8;
  background: #fff;
  color: #FD94A8;
}


/* single */
.headline-post {
	line-height: 1.2;
	margin: 0 0 30px;
	color: #482707;
	border-bottom: dotted 2px #FD94A7;
  padding-bottom:10px;
	font-size: 25px;
}
.headline-post .time {
	font-weight: 600;
	font-size: 14px;
    color: #3B4043;
}
.single-content{
	overflow: hidden;
}
@media (min-width: 641px) {
	.single-content{
		min-height:350px;
	}
}
.single-content .article-info{
	margin-bottom: 15px;
	display: flex;
	flex-wrap: wrap;
}

.single-content h1,
.single-content h2,
.single-content h3,
.single-content h4,
.single-content h5,
.single-content h6 {
	font-weight: 600;
	margin-bottom: 15px;
	color:#FD94A7;
}

.single-content .article-img{
	margin-bottom: 15px;
}

.single-content h2{
	background:#FD94A7;
	color: #FFF;
	border-radius: 12px;
	padding: 5px 20px 7px;
	font-size: 18px;
}
.single-content h3 {
	padding: 0 5px;
	margin-bottom: 0;
	font-size: 20px;
	border-bottom: solid 3px #FD94A7;
}
.single-content h4{
  margin-bottom: 5px;
}
.single-content h4,
.single-content h5 {
	font-size: 18px;
}
.single-content h6 {
	font-size: 16px;
}
.single-content blockquote {
	position: relative;
	margin: 5px 0 15px 0;
	padding: 40px 15px 8px 15px;
	box-sizing: border-box;
	font-style: italic;
	font-size: 18px;
	background:#fff1f5;
}

.single-content blockquote:before {
	display: inline-block;
	position: absolute;
	top: 0px;
	left: 3px;
	content: "";
	color: #FD94A7;
	font-size: 90px;
	line-height: 1;
}

.single-content blockquote p {
	padding: 0;
	margin: 10px 0;
	line-height: 1.7;
}

.single-content blockquote cite {
	display: block;
	text-align: right;
	color:#717171;
	font-size:1em;
}
.single-content table{
	border:solid 1px #717171;
	border-collapse: collapse;
}
.single-content table thead th{
	background:#fff1f5;
	padding: 5px;
	border: solid 1px #CCC;
}
.single-content table tbody th{
	background:#fff1f5;
}
.single-content table tbody th,
.single-content table tbody td {
	padding:15px;
	border: solid 1px #CCC;
}
.single-content ul,
.single-content ol{
	margin: 5px 0 15px 15px;
}
.single-content ul {
	list-style: disc;
}
.single-content ol {
	list-style: decimal;
}
.single-content img{
	margin-bottom: 15px;
}
.single-content .wp-caption .wp-caption-text{
	font-size: 14px;
	margin-top: -15px;
}
.single-content .aligncenter{
	margin-top: 15px;
}

