/* -----------------------------------------------
* common
-------------------------------------------------- */
.xl-show {
  display: none;
}

.lg-show {
  display: none;
}

.md-show {
  display: none;
}

.sm-show {
  display: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

.container {
  max-width: 1130px;
  padding: 0 20px;
  margin: 0 auto;
}

.button {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #967E38;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.4em;
  line-height: calc(27 / 18);
  padding: 20px 60px 20px 40px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

.button::after {
  content: "";
  display: inline-block;
  width: 21px;
  height: 4px;
  background: center/contain no-repeat url(../img/arrow_more_white.svg);
  position: absolute;
  top: 50%;
  right: 22px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.button--reverse {
  padding: 20px 40px 20px 60px;
}

.button--reverse::after {
  right: auto;
  left: 22px;
  -webkit-transform: translateY(-50%) scale(-1, 1);
          transform: translateY(-50%) scale(-1, 1);
}

.button span {
  display: inline-block;
}

.breadcrumb__item {
  display: inline;
}

.breadcrumb__item:not(:last-of-type)::after {
  content: '>';
  margin: 0 0.5em;
}

.breadcrumb__item:last-of-type {
  font-weight: 700;
}

/* -----------------------------------------------
* header
-------------------------------------------------- */
.header {
  padding: 60px 0;
  border-bottom: 1px solid #000;
}

.header__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 56px;
  font-weight: 700;
  line-height: calc(72 / 56);
  padding-bottom: 32px;
  margin: 0 auto;
  position: relative;
}

.header__title span {
  display: inline-block;
}

.header__note {
  font-size: 16px;
  line-height: calc(24 / 16);
  position: absolute;
  right: 0;
  bottom: 0;
}

/* -----------------------------------------------
* main
-------------------------------------------------- */
.article {
  background: #fff;
  padding: 60px 0 100px;
}

.article__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 40px;
}

.article__image {
  padding-top: calc(700 / 1200 * 100%);
  position: relative;
}
.article__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.article__content {
  background: #fff;
  padding: 16px 0 24px;
}

.article__date {
  font-size: 14px;
  font-weight: 500;  
  line-height: calc(24 / 16);
}

.article__title {
  font-size: 18px;
  font-weight: 700;
  line-height: calc(27 / 18);
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 4px;
}

.article__button {
  margin-top: 60px;
}

.single {
  background: #fff;
  padding: 20px 0 100px;
}

.single__inner {
  max-width: 800px;
  margin: 0 auto;
}

.single__date {
  font-weight: 500;
  display: block;
  margin-top: 60px;
}

.single__title {
  font-size: 32px;
  font-weight: 700;
  line-height: calc(48 / 32);
  margin-top: 8px;
}

.single__wrapper > * {
  margin-top: 1em;
}

.single__wrapper > .wp-block-columns {
  margin-top: 2em;
}

.single__wrapper p {
  font-size: 16px;
  line-height: calc(24 / 16);  
}

.single__button {
  margin-top: 60px;
}

/* -----------------------------------------------
* footer
-------------------------------------------------- */
.footer {
  background: #F0EFEF;
  padding: 20px 0;
  position: sticky;
  bottom: 0;
}

.footer__text {
  font-size: 16px;
  line-height: calc(24 / 16);
}

.footer__notification img {
  width: 100%;
}

/* -----------------------------------------------
* responsive
-------------------------------------------------- */
@media (max-width: 1199px) {
  .xl-show {
    display: block;
  }
  .xl-hide {
    display: none;
  }
}
@media (max-width: 991px) {
  .lg-show {
    display: block;
  }
  .lg-hide {
    display: none;
  }
  .article__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .md-show {
    display: block;
  }
  .md-hide {
    display: none;
  }
  .button {
    font-size: 16px;
    padding: 12px 60px 12px 40px;
  }
  .button--reverse {
    padding: 12px 40px 12px 60px;
  }
  .header {
    padding: 40px 0;
  }
  .header__title {
    font-size: 32px;
    padding-bottom: 0;
  }  
  .header__note {
    display: block;
    position: static;
    margin-top: 8px;
  }  
  .article {
    padding: 40px 0 60px;
  }
  .article__list {
    gap: 20px;
  }
  .article__content {
    padding: 12px 0 16px;
  }
  .article__date {
    font-size: 12px;
  }
  .article__title {
    font-size: 16px;
    margin-top: 4px;
  }
  .article__button {
    margin-top: 30px;
  }
  .single {
    padding: 20px 0 60px;
  }  
  .single__date {
    margin-top: 40px;
  }  
  .single p {
    font-size: 14px;
  }  
  .single__button {
    margin-top: 30px;
  }  
  .footer__text {
    font-size: 13px;
  }  
}
@media (max-width: 575px) {
  .sm-show {
    display: block;
  }
  .sm-hide {
    display: none;
  }
}
@media (hover: hover) {
  .button {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .button:hover {
    opacity: 0.7;
  }
  .breadcrumb__item a {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .breadcrumb__item a:hover {
    opacity: 0.7;
  }
  .article__item a {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .article__item a:hover {
    opacity: 0.7;
  }
}

.sub_title{
font-weight: bold;
margin-top: 15px;

}

.footer-items {
	margin-top:20px;
    -ms-flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-items__item {
    margin-right: 7px;
    margin-top: 11px;
    padding-right: 7px;
    border-right: 1px solid #000;
    font-size: 80%;
}

.copyright{
  margin-top:10px;
  text-align: center;
  font-size:80%;
}

.pc-align-center {
  text-align: center;
}
@media (max-width: 767px) {
  .pc-align-center {
    text-align: left;
  }
}