@charset "UTF-8";
body {
  font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  background-color: #ffffff;
  background-image: url(../img/汎用/sakamotomika_BackgroundImage.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}

/* newsTemplate */
.page_container {
  width: 800px;
  margin: 120px auto;
  margin-bottom: 60px;
  /* パンくずリスト */
}
.page_container .breadcrumb {
  display: block;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  list-style: none;
  font-size: 0.8rem;
  padding-top: 10px;
  padding-bottom: 10px;
}
.page_container .breadcrumb-top {
  border-bottom: 2px dotted #b7b7b7;
}
.page_container .breadcrumb-bottom {
  border-top: 2px dotted #b7b7b7;
}
.page_container .breadcrumb li:not(:last-child):after {
  content: ">";
  margin: 0.6em;
  color: rgb(180, 180, 180);
}
.page_container .breadcrumb li a {
  color: rgb(109, 96, 75);
  font-weight: 500;
  text-decoration: underline;
  color: rgb(109, 96, 75);
}
.page_container .breadcrumb li {
  text-decoration: none;
  color: rgb(57, 45, 25);
  font-weight: 400;
}
.page_container .breadcrumb a:hover {
  color: rgb(190, 179, 145);
  text-decoration: none;
}
.page_container .article-container {
  width: 620px;
  height: auto;
  margin: 0 auto;
  font-size: 0.9rem;
  padding-top: 50px;
}
.page_container .article-container h1 {
  font-size: 2rem;
  color: #492a0f;
  margin: 5px 0;
  font-weight: 900;
}
.page_container #create_date {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgb(179, 10, 10);
  font-weight: 500;
}
.page_container .article {
  border-radius: 10px;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.page_container .image_top {
  width: 100%;
  max-width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.page_container .image-1-2-parent {
  display: flex;
  justify-content: space-evenly;
  padding-top: 30px;
}
.page_container .image-1,
.page_container .image-2 {
  width: 50%;
}
.page_container .image-3-parent {
  display: block;
  text-align: center;
}
.page_container .image-3 {
  width: 50%;
  padding-bottom: 60px;
}
.page_container h2 {
  font-size: 1.5rem;
  margin-top: 60px;
  padding-bottom: 10px;
  padding: 10px;
  margin-bottom: 10px;
  border-left: solid 5px #797056;
  color: #492a0f;
}
.page_container .text_1 {
  width: 100%;
  text-align: left;
}
.page_container .p-1 {
  line-height: 2em;
  text-align: justify;
}
.page_container .information_table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  color: #555;
}
.page_container .information_table th, .page_container .information_table td {
  border: 1px solid #ffffff;
  color: #555;
  padding: 30px 15px;
  text-align: left;
  vertical-align: middle; /* 垂直方向の中央揃え */
}
.page_container .information_table th {
  font-weight: bold;
  width: 20%;
  text-align: center;
  text-transform: uppercase;
}
.page_container .even {
  background-color: #fffcf1;
}

.end_area {
  width: 100%;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 100px;
  color: #492a0f;
  line-height: 2em;
}

.end_area_text {
  padding: 15px 0;
}

.end_area a {
  width: 20px;
  color: rgb(126, 148, 182);
  text-decoration: underline;
}

.end_area a:hover {
  color: rgb(145, 189, 255);
  text-decoration: none;
}

.end_comment {
  padding: 40px 0 10px 0;
}

/* サイドバー */
/* ============ アニメーション ============ */
.news_fadeUp {
  animation-name: news_fadeUp;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes news_fadeUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.news_fadeUp_delay-time01 {
  animation-delay: 0s;
}

.news_fadeUp_delay-time02 {
  animation-delay: 1s;
}

.news_fadeUp_delay-time03 {
  animation-delay: 1.5s;
}

.news_fadeUp_delay-time04 {
  animation-delay: 2s;
}

@media only screen and (max-width: 1200px) {
  .sidebar {
    display: none;
  }
}
@media only screen and (max-width: 640px) {
  .page_container {
    width: 100%;
    display: block;
    flex-wrap: nowrap;
    margin: 100px 0;
    /* パンくずリスト */
  }
  .page_container .article-container {
    width: 100%;
    padding-right: 0;
    margin: 0 auto;
    padding: 0 2%;
  }
  .page_container .breadcrumb {
    display: flex;
    width: auto;
    flex-wrap: wrap;
    list-style: none;
    font-size: 0.7em;
  }
  .page_container .breadcrumb li:not(:last-child):after {
    content: ">";
    margin: 0.8em;
  }
  .page_container .breadcrumb li a {
    color: rgb(109, 96, 75);
    text-decoration: underline;
  }
  .page_container .breadcrumb li {
    text-decoration: none;
    color: rgb(57, 45, 25);
  }
  .page_container .breadcrumb a:hover {
    color: rgb(190, 179, 145);
    text-decoration: none;
  }
  .page_container #create_date {
    font-size: 0.7em;
  }
  .page_container .article-container h1 {
    font-size: 1.8em;
    color: #31210a;
    margin: 10% 0 4% 0;
    text-decoration: underline;
    text-decoration-color: #bfa58d;
    text-decoration-style: dotted;
  }
  .page_container .article {
    width: 820px;
    padding: 2% 0 2% 2%;
    border-radius: 0px;
  }
  .page_container .image_top {
    width: 100%;
    max-width: 100%;
    border-radius: 2px;
    padding-bottom: 2%;
  }
  .page_container .image-1-2-parent {
    display: block;
    justify-content: space-evenly;
    padding-top: 0px;
  }
  .page_container .image-1,
  .page_container .image-2 {
    width: 100%;
  }
  .page_container .image-3-parent {
    display: block;
    text-align: center;
  }
  .page_container .image-3 {
    width: 100%;
    padding-bottom: 0;
  }
  .page_container h2 {
    font-size: 1.6em;
    margin-top: 20%;
    padding: 0 15px;
    border-left: solid 6px #410c0c;
    color: #492a0f;
  }
  .page_container .text_1 {
    width: 100%;
    text-align: left;
  }
  .page_container .p-1 {
    font-size: 1em;
  }
  .page_container .information_table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 1rem;
    color: #555;
  }
  .page_container .information_table th {
    background-color: #1f1b13;
    font-weight: bold;
    color: white;
    /* width: 17%; */
    padding: 5%;
    text-transform: uppercase;
  }
  .page_container .information_table td {
    padding: 2% 5%;
    text-align: left;
  }
  .page_container .information_table th, .page_container .information_table td {
    vertical-align: middle; /* 垂直方向の中央揃え */
  }
  .page_container .information_table tr:nth-child(even) {
    background-color: #fffcf1;
  }
  .end_area {
    width: auto;
    text-align: center;
    margin-top: 10%;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 15%;
    padding: 10% 0;
    color: #2f2525;
    border-top: 1px solid #cbb071;
    border-bottom: 1px solid #cbb071;
  }
  .end_area a {
    width: 20px;
    color: rgb(126, 148, 182);
    text-decoration: underline;
  }
  .end_area_br {
    display: none;
  }
  .end_area a:hover {
    color: rgb(145, 189, 255);
    text-decoration: none;
  }
  .end_comment {
    padding: 50px 0 10px 0;
  }
  /* サイドバー */
  .sidebar {
    width: 20%;
  }
  .twitter_list {
    padding: 90px 0 0 0;
  }
}/*# sourceMappingURL=newstemplate.css.map */