@charset "UTF-8";
header {
  max-width: 1200px;
  margin: 0 auto;
}

.archive .l-content,
.single .l-content,
.p-breadcrumb {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* スライドCSS */
.item {
  max-height: 400px;
  position: relative;
}
.item img {
  width: 100%;
}
.item .copy {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 4px;
  line-height: 1.5;
}
@media only screen and (max-width: 750px) {
  .item .copy {
    text-align: center;
    font-size: 20px;
    letter-spacing: 4px;
  }
}
.item .copy br {
  display: none;
}
@media only screen and (max-width: 750px) {
  .item .copy br {
    display: inline;
  }
}
.item .copy.wide {
  letter-spacing: 20px;
}

/* Swiper CSS */
.swiper-area {
  position: relative;
}

.swiper-slide {
  background-color: #eee;
  height: auto;
}
.swiper-slide p {
  padding: 0;
  margin: 0;
}
.swiper-slide img {
  vertical-align: bottom;
  height: auto;
  border: 0;
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

.swiper-button-next,
.swiper-button-prev {
  display: -ms-grid;
  display: grid;
  place-content: center;
  width: 50px;
  height: 60px;
  cursor: pointer;
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 750px) {
  .swiper-button-next,
.swiper-button-prev {
    width: 30px;
    height: 40px;
  }
}
@media only screen and (max-width: 500px) {
  .swiper-button-next,
.swiper-button-prev {
    width: 20px;
    height: 40px;
    border-radius: 0px;
  }
}

.swiper-button-prev {
  left: 10px;
}
@media only screen and (max-width: 500px) {
  .swiper-button-prev {
    left: 0px;
  }
}

.swiper-button-next {
  right: 10px;
}
@media only screen and (max-width: 500px) {
  .swiper-button-next {
    right: 0px;
  }
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: white;
}
@media only screen and (max-width: 750px) {
  .swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 0.5);
  }
}

.swiper-button-next::after,
.swiper-button-prev::after {
  width: 12px;
  height: 12px;
  content: "";
  border: solid #000;
  border-width: 2px 2px 0 0;
}
@media only screen and (max-width: 750px) {
  .swiper-button-next::after,
.swiper-button-prev::after {
    width: 9px;
    height: 9px;
  }
}
@media only screen and (max-width: 500px) {
  .swiper-button-next::after,
.swiper-button-prev::after {
    width: 5px;
    height: 5px;
  }
}

.swiper-button-prev::after {
  margin-left: 10px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
@media only screen and (max-width: 750px) {
  .swiper-button-prev::after {
    margin-left: 5px;
  }
}

.swiper-button-next::after {
  margin-right: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media only screen and (max-width: 750px) {
  .swiper-button-next::after {
    margin-right: 5px;
  }
}

.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.grid {
  max-width: 1200px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.grid_item {
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
  padding: 15px 15px 60px;
  position: relative;
  margin-bottom: 20px;
}

.item_ttl {
  font-weight: bold;
  font-size: 1.05em;
  padding: 15px 0;
}

.more_btn {
  position: absolute;
  bottom: 20px;
  left: 15px;
}

@media only screen and (max-width: 860px) {
  .grid {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .grid {
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
  }
  .grid_item {
    -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
            box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
  }
  .item_ttl {
    font-size: 14px;
    line-height: 1.4;
    padding: 10px 0;
  }
  .txt {
    font-size: 13px;
  }
}
.news-list-box {
  max-width: 1200px;
  margin: 0 auto;
  border-top: solid 1px #ddd;
  margin-bottom: 100px;
}

.news-list-box li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 0;
  border-bottom: solid 1px #ddd;
}

.news-list-box ul {
  margin-left: 0;
  padding-left: 0;
}

@media only screen and (max-width: 749px) {
  .news-list-box li {
    display: block;
    padding: 20px 0 5px 0;
  }
}
.news-list-box .news-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 749px) {
  .news-list-box .news-date {
    display: block;
  }
}
.news-list-box .date {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
}

@media only screen and (max-width: 749px) {
  .news-list-box .date {
    font-size: 16px;
    color: #70ad47;
  }
}
.news-list-box .cate {
  display: inline-block;
  font-size: 11px;
  padding: 5px 0;
  border-radius: 20px;
  min-width: 65px;
  text-align: center;
  color: #fff;
  background-color: #70ad47;
  margin: 0 10px;
}

@media only screen and (max-width: 749px) {
  .news-list-box .cate {
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    min-width: 0;
    color: #70ad47;
    background-color: #fff;
    border: solid 1px #70ad47;
  }
}
.news-list-box a.title {
  font-size: 15px;
  color: #000;
  line-height: 1.5;
  border-left: solid 2px #eee;
  padding: 10px 0 10px 20px;
  text-decoration: none;
}

@media only screen and (max-width: 749px) {
  .news-list-box a.title {
    display: block;
    border-left: none;
    font-size: 16px;
    padding: 5px 0 5px 0px;
  }
}
.news-list-box a.title:hover {
  color: #70ad47;
  text-decoration: underline;
}