@charset "UTF-8";
/* =====================================
   固定ページ（page.php）専用スタイル
   対象：.common_pagetemplate__content
===================================== */
/* 下層ページの基本余白 */
.lowerpage {
  background-color: #fff;
}

.common_pagetemplate__title {
  padding-top: 32px;
  padding-left: 16px;
  padding-right: 16px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .common_pagetemplate__title {
    padding-top: 64px;
  }
}
.common_pagetemplate__title time {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}
@media (min-width: 768px) {
  .common_pagetemplate__title time {
    font-size: 16px;
  }
}
.common_pagetemplate__title h1 {
  margin-top: 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  background-color: #e60013;
  padding: 16px;
}
@media (min-width: 768px) {
  .common_pagetemplate__title h1 {
    font-size: 32px;
  }
}

/* =============================
   本文エリア
============================= */
.common_pagetemplate__content {
  padding-top: 32px;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 14px;
  line-height: 2;
  color: #000;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  /* ブロック要素の基本余白 */
  /* ------------------------------
     h2：大見出し
  ------------------------------ */
  /* ------------------------------
     h3：中見出し
  ------------------------------ */
  /* ------------------------------
     h4：小見出し
  ------------------------------ */
  /* ------------------------------
     テキスト・リンク
  ------------------------------ */
  /* ------------------------------
     リスト
  ------------------------------ */
  /* ------------------------------
     画像
  ------------------------------ */
  /* figure + キャプション */
  /* ------------------------------
     テーブル
  ------------------------------ */
  /* ------------------------------
     blockquote
  ------------------------------ */
  /* ------------------------------
     WP標準 align 系
  ------------------------------ */
  /* float解除 */
}
@media (min-width: 768px) {
  .common_pagetemplate__content {
    font-size: 16px;
  }
}
.common_pagetemplate__content > *:first-child {
  margin-top: 0;
}
.common_pagetemplate__content > * {
  margin-bottom: 1.5em;
  margin-top: 0;
}
.common_pagetemplate__content h2 {
  position: relative;
  margin: 3em 0 1.5em;
  padding: 0.4em 0 0.6em;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #e60013;
  border-bottom: 2px solid #e60013;
}
@media (min-width: 768px) {
  .common_pagetemplate__content h2 {
    font-size: 24px;
  }
}
.common_pagetemplate__content h3 {
  margin: 2.4em 0 1.2em;
  padding-left: 12px;
  border-left: 3px solid #FF6301;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .common_pagetemplate__content h3 {
    font-size: 20px;
  }
}
.common_pagetemplate__content h4 {
  margin: 2em 0 1em;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  padding-left: 16px;
}
.common_pagetemplate__content h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4695A9;
}
.common_pagetemplate__content p {
  margin: 0 0 1.5em;
  line-height: 2;
  font-size: 14px;
}
.common_pagetemplate__content a {
  color: #4695A9;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s ease, text-decoration-color 0.2s ease;
}
.common_pagetemplate__content a:hover {
  opacity: 0.8;
  text-decoration-color: transparent;
}
.common_pagetemplate__content strong {
  font-weight: 700;
}
.common_pagetemplate__content em {
  font-style: normal;
  background: linear-gradient(transparent 60%, rgba(255, 160, 0, 0.35) 60%);
}
.common_pagetemplate__content ul,
.common_pagetemplate__content ol {
  margin: 0 0 1.8em 1.4em;
  padding: 0;
}
.common_pagetemplate__content ul li,
.common_pagetemplate__content ol li {
  margin-bottom: 0.4em;
  line-height: 1.8;
}
.common_pagetemplate__content ul {
  list-style: disc;
}
.common_pagetemplate__content ol {
  list-style: decimal;
}
.common_pagetemplate__content img {
  max-width: 100%;
  height: auto;
  display: block;
}
.common_pagetemplate__content figure {
  margin: 0 0 1.5em;
  text-align: center;
}
.common_pagetemplate__content figure img {
  margin: 0 auto 0.5em;
}
.common_pagetemplate__content figure figcaption {
  font-size: 12px;
  color: #666;
}
.common_pagetemplate__content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2em;
  font-size: 14px;
}
.common_pagetemplate__content th,
.common_pagetemplate__content td {
  padding: 10px 12px;
  border: 1px solid #ddd;
  vertical-align: top;
}
.common_pagetemplate__content th {
  background: #fafafa;
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .common_pagetemplate__content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}
.common_pagetemplate__content blockquote {
  margin: 0 0 2em;
  padding: 16px 18px;
  border-left: 4px solid #4695A9;
  background: #f7f9fa;
  font-size: 14px;
}
.common_pagetemplate__content blockquote p {
  margin-bottom: 0.8em;
}
.common_pagetemplate__content blockquote cite {
  display: block;
  font-size: 12px;
  text-align: right;
  color: #666;
}
.common_pagetemplate__content .alignleft {
  float: left;
  margin: 0 1.5em 1.5em 0;
}
.common_pagetemplate__content .alignright {
  float: right;
  margin: 0 0 1.5em 1.5em;
}
.common_pagetemplate__content .aligncenter {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.common_pagetemplate__content::after {
  content: "";
  display: block;
  clear: both;
}/*# sourceMappingURL=page.css.map */