@charset "UTF-8";
/* CSS Document */

/*投稿ページ共通CSS*/
/*
====参考ブレイクポイント========================
* X-Small  |	--               |	575px以下
* Small    |	sm               |	576px以上ｖ/　767px以下
* Medium   |	md               |	768px以上　/　991px以下
* Large    |	lg               |	992px以上　/　1199px以下
* Extra    |	large	xl         |	1200px以上　/　1399ｐｘ以下
* Extra    |	extra large	xxl  |	1400px以上
=========================================
*
*/
.sp,
.content_Area .inner_wrapper img.sp {
  display: none;
}
.pc,
.content_Area .inner_wrapper img.pc {
  display: block;
}

@media screen and (max-width: 767px) {
  .pc,
  .content_Area .inner_wrapper img.pc {
    display: none;
  }
  .sp,
  .content_Area .inner_wrapper img.sp {
    display: block;
  }
}

.title_section .inner_wrapper,
.content_Area .inner_wrapper {
  max-width: 980px;
  margin: 0 auto;
}
.content_Area .inner_wrapper {
  margin-bottom: 3em;
}
.title_section .inner_wrapper h2 {
  padding-bottom: 0.3em;
}
.content_Area .inner_wrapper h2 {
  font-size: 1.6rem;
  padding: 0;
  color: var(--accent-color);
  margin: 1em 0;
}
.content_Area .inner_wrapper h3 {
  font-size: 1.4rem;
  padding: 0 0 0 2rem;
  /* border-left: 5px solid var(--accent-color); */
  margin: 1em 0;
  position: relative;
}
.content_Area .inner_wrapper h3::before {
  content: "　";
  position: absolute;
  background-color: #f75940;
  top: 0.14rem;
  left: 0;
  font-size: 1rem;
}

.content_Area .inner_wrapper h4 {
  font-size: 1.2rem;
  padding: 0 0 0.2em 0.4em;
  border-bottom: 1px solid var(--accent-color);
  margin: 1em 0;
}
.content_Area .inner_wrapper p {
  margin: 0.8em 0;
  + p {
    margin-top: 1.6em;
  }
}
.content_Area .inner_wrapper ul,
.content_Area .inner_wrapper ol {
  margin: 0.8em 0;
  line-height: 1.2;
}
.content_Area .inner_wrapper ul li {
  list-style: disc;
  margin-left: 1.4em;
}
.content_Area .inner_wrapper ol li {
  list-style-type: decimal;
  margin-left: 1.4em;
}
.content_Area .inner_wrapper a {
  color: var(--accent-color);
  word-wrap: break-word;
}

.content_Area .inner_wrapper a.link {
  background: linear-gradient(#ff9787, #f75940);
  color: #fff;
  padding: 0.6em 4em 0.6em 3em;
  margin: 1em 0;
  border-radius: 60px;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  display: inline-block;
}
.content_Area .inner_wrapper a.link:hover {
  opacity: 0.8;
}
.content_Area .inner_wrapper a.link:after {
  content: "";
  background-image: url(../../img/pages/front/arrow-white.svg);
  position: absolute;
  right: 0.8em;
  bottom: 0.5em;
  margin: auto;
  width: 25px;
  height: 25px;
  transition: all 0.2s ease;
}
.content_Area .inner_wrapper img {
  display: block;
  margin: 0.8em 0;
}
.content_Area .inner_wrapper img.blog-item__thumbnail-image {
  width: 50%;
}
.pagination_Area {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.pagination_Area .btn {
  display: inline-block;
  background: linear-gradient(#ff9787, #f75940);
  margin: 1em 0;
  border-radius: 60px;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  font-size: 0.8rem;
}
.pagination_Area .btn:after {
  content: "";
  background-image: url(../../img/pages/front/arrow-white.svg);
  position: absolute;
  width: 25px;
  height: 25px;
}
.pagination_Area .previous a {
  padding: 0.8em 4em 0.8em 3em;
}
.pagination_Area .next a {
  padding: 0.8em 3em 0.8em 4em;
}
.pagination_Area .previous:after {
  right: 0.8em;
  bottom: 0.3em;
  margin: auto;
}
.pagination_Area .next:after {
  left: 0.8em;
  bottom: 0.3em;
  margin: auto;
  transform: rotate(-180deg);
}
.pagination_Area .btn a {
  display: block;
  color: #fff;
  text-decoration: none;
}
.pagination_Area .btn:hover {
  opacity: 0.8;
}
a.cat {
  display: inline-block;
  padding: 0.5em 1em;
  border-radius: 5px;
  color: #fff;
  background-color: #232323;
  text-decoration: none;
  font-size: 0.8rem;
}

a.cat:hover {
  background-color: #666;
  color: #fff;
}

section.title_section div.inner_wrapper ul.position_post {
  display: flex;
  gap: 1em;
  align-items: center;
}

section.content_section {
  padding: 2rem;
  background-color: #fff;
  color: #232323;
}

table {
}

table th,
table td {
  border: 1px solid #333;
  padding: 1em;
}

table th {
  background-color: #fff5f3;
}
table td {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  /* section.title_section div.inner_wrapper{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
  }  */

  section.title_section div.inner_wrapper h1 {
    flex: 1;
  }
}
@media screen and (max-width: 767px) {
  .content_Area .inner_wrapper img.blog-item__thumbnail-image {
    width: 100%;
  }
  section.title_section > .inner_wrapper {
    padding-top: 0 !important;
  }
}

@media screen and (min-width: 1200px) {
  section.title_section {
  }

  section.content_section {
    padding: 2rem 0;
  }
}
