@charset "UTF-8";
/* ----------------------------------------
  Column
---------------------------------------- */
.column {
  position: relative;
  /* Categories */
  /* Entries */
}
@media screen and (min-width: 1280px) {
  .column {
    min-height: 800px;
  }
}
.column__cat-list {
  margin-bottom: 4vw;
  font-weight: 400;
}
@media screen and (max-width: 579px) {
  .column__cat-list {
    font-size: 0.8em;
  }
}
.column__cat-list li {
  display: inline-block;
  margin: 0 0.5em 1em 0;
}
.column__cat-list li a {
  display: block;
  min-width: 14em;
  padding: 0.25em 1em;
  border: solid 1px #6B5D48;
  border-radius: 3em;
  text-align: center;
}
@media screen and (max-width: 579px) {
  .column__cat-list li a {
    min-width: 7em;
  }
}
.column__cat-list li a.column__cat--all {
  background: #6B5D48;
  color: #fff;
}
.column__categories {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2em;
  font-size: 0.9375rem;
}
@media screen and (max-width: 579px) {
  .column__categories {
    font-size: 0.86em;
  }
}
.column__categories li {
  margin-right: 1em;
  margin-bottom: 1em;
}
@media screen and (max-width: 579px) {
  .column__categories li {
    margin-right: 0.5em;
    margin-bottom: 0.5em;
  }
}
.column__categories li a {
  display: block;
  padding: 0.5em 2em;
  border: solid 1px #6B5D48;
  border-radius: 3em;
  line-height: 1.2;
  transition: 0.3s;
}
.column__categories li a:hover {
  background-color: #6B5D48;
  color: #fff;
}
.column__categories.current-index li:first-child a {
  background-color: #6B5D48;
  color: #fff;
}
.column__categories.current-01 a.column__cat-01, .column__categories.current-02 a.column__cat-02, .column__categories.current-03 a.column__cat-03, .column__categories.current-04 a.column__cat-04 {
  background-color: #6B5D48;
  color: #fff;
}
.column__entries {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -1%;
  line-height: 1.6;
  font-size: 0.9375rem;
  font-weight: 400;
}
@media screen and (max-width: 579px) {
  .column__entries {
    justify-content: space-between;
    margin: 0;
  }
}
.column__entry {
  width: 18%;
  margin: 0 1% 2em;
}
@media screen and (max-width: 768px) {
  .column__entry {
    width: 31.3333333333%;
  }
}
@media screen and (max-width: 579px) {
  .column__entry {
    width: 48%;
    margin: 0 0 2em;
  }
}
.column__entry .list-item__thumb {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 66.6%;
}
.column__entry .list-item__thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.4em;
}
.column__entry .list-item__thumb::after {
  content: "続きを読む";
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  font-size: 0.8em;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
}
.column__entry .list-item__date {
  margin: 0.5em 0 0.25em;
  font-size: 0.93em;
  color: #4DB6E8;
}
.column__entry .list-item__category span {
  display: block;
  margin-bottom: 0.5em;
  padding: 0.4em 0.5em 0.4em;
  border: solid 1px #4DB6E8;
  border-radius: 5em;
  line-height: 1.2;
  text-align: center;
  font-size: 0.86em;
  color: #4DB6E8;
}
@media screen and (max-width: 579px) {
  .column__entry .list-item__category span {
    font-size: 0.7em;
  }
}
.column__entry .list-item__title {
  margin-top: 0.5em;
  font-weight: 500;
  transition: color 0.3s;
}
@media screen and (min-width: 1280px) {
  .column__entry a:hover .list-item__thumb::after {
    opacity: 1;
  }
  .column__entry a:hover .list-item__title {
    color: #4DB6E8;
  }
}

/* ----------------------------------------
  Entry Header
---------------------------------------- */
.entry-header {
  padding: 3em 0;
  background: #4DB6E8;
  font-weight: 400;
  color: #fff;
}
@media screen and (max-width: 579px) {
  .entry-header {
    padding: 7vw 0;
  }
}
.entry-header__content-ttl {
  margin-bottom: 0.5em;
  line-height: 1;
}
@media screen and (max-width: 579px) {
  .entry-header__content-ttl {
    margin-bottom: 1em;
  }
}
.entry-header__content-ttl span {
  position: relative;
  display: inline-block;
  padding: 0 1em;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 579px) {
  .entry-header__content-ttl span {
    letter-spacing: 0.1em;
  }
}
.entry-header__content-ttl span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  border-left: solid 1px #fff;
}
.entry-header__content-ttl span::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  border-right: solid 1px #fff;
}
.entry-header__title {
  line-height: 1.6;
  font-size: 1.8em;
}
@media screen and (max-width: 579px) {
  .entry-header__title {
    line-height: 1.5;
    font-size: 1.4em;
  }
}
.entry-header__category {
  margin-top: 1.5em;
  font-size: 0.7em;
}
.entry-header__category span {
  display: inline-block;
  margin: 0.5em 0.5em 0 0;
  padding: 0 1em;
  border: solid 1px #4DB6E8;
  border-radius: 5em;
  background: #fff;
  font-weight: 400;
  color: #4DB6E8;
}

/* ----------------------------------------
  Entry Body (Common)
---------------------------------------- */
.entry-opening__flex {
  display: flex;
}
@media screen and (max-width: 579px) {
  .entry-opening__flex {
    display: block;
  }
}
.entry-opening__flex--col2 {
  justify-content: space-between;
}
.entry-opening__flex--col2 > * {
  width: 48%;
}
@media screen and (max-width: 579px) {
  .entry-opening__flex--col2 > * {
    width: 100%;
  }
  .entry-opening__flex--col2 > *:not(:last-child) {
    margin-bottom: 1em;
  }
}

/* ----------------------------------------
  Entry Opening
---------------------------------------- */
.entry-opening {
  margin-bottom: 3em;
  padding: 3em 0;
  background: #fff;
  font-size: 0.85em;
}
@media screen and (max-width: 579px) {
  .entry-opening {
    padding: 7vw 0;
  }
}
.entry-opening__date {
  margin-bottom: 1em;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.entry-opening h2 {
  margin-bottom: 0.5em;
  line-height: 1.6;
  font-size: 1.7em;
  color: #4DB6E8;
}
.entry-opening p {
  line-height: 2;
}
.entry-opening p:empty {
  min-height: 1em;
}
.entry-opening img {
  border-radius: 0.6em;
}

/* ----------------------------------------
  Column Detail
---------------------------------------- */
.column-detail__heading {
  margin: 3em 0 1.5em;
  color: #4DB6E8;
}
.column-detail__figure figure {
  margin: 3em auto;
}
.column-detail__figure figure img {
  border-radius: 0.6em;
}
.column-detail__figure .col1 img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-height: 400px;
  margin: 0 auto;
}
@media screen and (max-width: 579px) {
  .column-detail__figure .col1 img {
    width: 100%;
    height: auto;
  }
}
.column-detail__figure .col2 {
  display: flex;
  justify-content: space-between;
}
.column-detail__figure .col2 > * {
  width: 49%;
}
.column-detail__figure .col2 > * img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-height: 400px;
}
@media screen and (max-width: 579px) {
  .column-detail__figure .col2 {
    display: block;
  }
  .column-detail__figure .col2 > * {
    width: 100%;
    margin: 1em auto 0;
  }
  .column-detail__figure .col2 > * img {
    width: 100%;
    height: auto;
  }
}
.column-detail__body p {
  margin-top: 1em;
}
.column-detail__original {
  margin-bottom: 3em;
}
.column-detail__original p {
  margin-top: 1em;
}
.column-detail__original img {
  border-radius: 0.6em;
}
@media screen and (max-width: 768px) {
  .column-detail__original img {
    display: block;
    height: auto;
    margin: 0 auto;
  }
}/*# sourceMappingURL=style_column.css.map */