@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap");
@font-face {
  font-family: "Noto Sans Japanese";
  font-weight: 400;
  src: url(fonts/NotoSansCJKjp-DemiLight.woff2) format("woff2"), url(fonts/NotoSansCJKjp-DemiLight.woff) format("woff"), url(fonts/NotoSansCJKjp-DemiLight.ttf) format("truetype"), url(fonts/NotoSansCJKjp-DemiLight.eot) format("embedded-opentype");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-variant-ligatures: none;
}

html {
  width: 100%;
  max-width: 100vw;
  color: #000;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0 auto;
  background-color: #fff;
  line-height: 1.4;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

#header {
  z-index: 999;
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100vw;
  height: 70px;
  padding: 8px 10px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  #header {
    padding: 20px;
  }
}
@media screen and (min-width: 1024px) {
  #header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0 15px 40px;
  }
}
#header .header__inner .header-logo {
  display: block;
  max-width: 180px;
}
@media screen and (min-width: 768px) {
  #header .header__inner .header-logo {
    max-width: 200px;
  }
}
@media screen and (min-width: 1024px) {
  #header .header__inner {
    margin-right: auto;
  }
  #header .header__inner .header-logo {
    max-width: 210px;
  }
}
#header #nav__toggle {
  position: relative;
  width: 45px;
  height: 45px;
  background-color: #fff;
  border-radius: 50px;
  z-index: 999;
}
#header #nav__toggle span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: #000;
}
#header #nav__toggle span:nth-child(1) {
  top: 10px;
}
#header #nav__toggle span:nth-child(2) {
  top: 22px;
}
#header #nav__toggle span:nth-child(3) {
  top: 34px;
}
@media screen and (min-width: 1024px) {
  #header #nav__toggle {
    display: none;
  }
}
#header nav {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg, #fff, #E3E3E3);
  opacity: 0.95;
  z-index: 99;
}
#header nav .nav__inner ul {
  list-style-type: none;
  display: block;
  width: 100%;
  height: 100%;
  padding: 25px 20px 45px;
}
#header nav .nav__inner ul li {
  position: relative;
  padding: 35px 10px 0;
}
#header nav .nav__inner ul li a {
  display: block;
  color: #000;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
}
#header nav .nav__inner ul li .nav-products__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  height: 120px;
  gap: 2px;
  padding: 20px 0 0 20px;
}
#header nav .nav__inner ul li .nav-products__list .nav-products__item {
  width: 50%;
  padding: 10px 10px;
}
@media screen and (min-width: 768px) {
  #header nav .nav__inner ul {
    height: 70%;
    padding: 25px 30px 45px;
  }
}
#header nav .nav__inner .nav__inner-foot {
  padding: 35px 15px;
  background-image: url("assets/images/common/nav-foot.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
#header nav .nav__inner .nav__inner-foot .action {
  text-align: center;
}
#header nav .nav__inner .nav__inner-foot .action a {
  display: inline-block;
  width: 200px;
  margin: 0 auto 15px;
  padding: 12px 20px;
  background-color: #fff;
  border-radius: 50px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #header nav .nav__inner .nav__inner-foot {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #header nav .nav__inner .nav__inner-foot .action a {
    margin: 0 5px;
  }
}
@media screen and (min-width: 1024px) {
  #header nav .nav__inner .nav__inner-foot {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  #header nav {
    position: relative;
    display: block;
    width: auto;
    height: auto;
    top: 0;
    background: #fff;
    opacity: 1;
  }
  #header nav .nav__inner {
    width: 100%;
    margin: 0;
  }
  #header nav .nav__inner ul {
    display: flex;
    align-items: center;
    list-style-type: none;
    width: 100%;
    height: auto;
    padding: 0;
  }
  #header nav .nav__inner ul li {
    position: relative;
    margin-right: 40px;
    padding: 0;
    border: 0;
  }
  #header nav .nav__inner ul li a {
    position: relative;
    display: block;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
  }
  #header nav .nav__inner ul li a:hover {
    color: #D0CAC2;
    transition: all 0.3s;
  }
  #header nav .nav__inner ul li .nav-products__list {
    display: none;
  }
}
.active #nav__toggle span:nth-child(1) {
  top: 10px;
  transform: translateY(10px) rotate(-45deg);
  width: 30%;
}
.active #nav__toggle span:nth-child(2) {
  opacity: 0;
}
.active #nav__toggle span:nth-child(3) {
  top: 34px;
  transform: translateY(-13px) rotate(45deg);
  width: 30%;
}

.fixed-nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .fixed-nav {
    display: block;
    position: fixed;
    top: 250px;
    right: 0;
  }
  .fixed-nav a {
    display: block;
    padding: 12px 8px;
    color: #fff;
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    text-align: center;
  }
  .fixed-nav a img {
    display: block;
    width: 32px;
    height: 32px;
    margin-bottom: 5px;
  }
  .fixed-nav a span {
    writing-mode: vertical-rl;
  }
  .fixed-nav .contact {
    background-color: #000;
  }
  .fixed-nav .catalog {
    background-color: #707070;
  }
}

.l-footer .l-footer__cta {
  position: relative;
}
.l-footer .l-footer__cta:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  display: block;
  width: 100%;
  height: 260px;
  background-image: url("../kasamabutsudan_wp/assets/images/common/cta-back_image_sp.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.l-footer .l-footer__cta .l-footer__cta-inner {
  position: relative;
  z-index: 2;
  padding: 45px 15px;
}
.l-footer .l-footer__cta .l-footer__cta-inner .l-footer__cta-title {
  margin-bottom: 30px;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 1.4;
  text-align: center;
}
.l-footer .l-footer__cta .l-footer__cta-inner .l-footer__cta-list {
  padding: 0 30px;
}
.l-footer .l-footer__cta .l-footer__cta-inner .l-footer__cta-list li {
  margin-bottom: 30px;
}
.l-footer .l-footer__cta .l-footer__cta-inner .l-footer__cta-list li:last-child {
  margin-bottom: 0;
}
.l-footer .l-footer__cta .l-footer__cta-inner .l-footer__cta-list li a .image {
  margin-bottom: 20px;
}
.l-footer .l-footer__cta .l-footer__cta-inner .l-footer__cta-list li a .textbody {
  text-align: center;
}
.l-footer .l-footer__cta .l-footer__cta-inner .l-footer__cta-list li a .textbody .title {
  margin-bottom: 10px;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
}
.l-footer .l-footer__cta .l-footer__cta-inner .l-footer__cta-list li a .textbody .text {
  font-family: "Noto Sans Japanese";
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .l-footer .l-footer__cta {
    position: relative;
  }
  .l-footer .l-footer__cta:before {
    height: 260px;
    background-image: url("../kasamabutsudan_wp/assets/images/common/cta-back_image.jpg");
  }
  .l-footer .l-footer__cta .l-footer__cta-inner {
    padding: 60px 30px;
  }
  .l-footer .l-footer__cta .l-footer__cta-inner .l-footer__cta-title {
    margin-bottom: 30px;
    font-size: 23px;
    line-height: 1.6;
  }
  .l-footer .l-footer__cta .l-footer__cta-inner .l-footer__cta-title br:first-child {
    display: none;
  }
  .l-footer .l-footer__cta .l-footer__cta-inner .l-footer__cta-list {
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 0;
  }
  .l-footer .l-footer__cta .l-footer__cta-inner .l-footer__cta-list li {
    width: 40%;
    margin: 0 10px;
  }
  .l-footer .l-footer__cta .l-footer__cta-inner .l-footer__cta-list li:last-child {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer .l-footer__cta:before {
    height: 400px;
  }
  .l-footer .l-footer__cta .l-footer__cta-inner {
    padding: 100px 0;
  }
  .l-footer .l-footer__cta .l-footer__cta-inner .l-footer__cta-title {
    margin-bottom: 45px;
    font-size: 36px;
  }
  .l-footer .l-footer__cta .l-footer__cta-inner .l-footer__cta-list {
    max-width: 980px;
    margin: 0 auto;
  }
  .l-footer .l-footer__cta .l-footer__cta-inner .l-footer__cta-list li {
    width: 40%;
    margin: 0 15px;
  }
  .l-footer .l-footer__cta .l-footer__cta-inner .l-footer__cta-list li a .image {
    margin-bottom: 25px;
  }
  .l-footer .l-footer__cta .l-footer__cta-inner .l-footer__cta-list li a .textbody .title {
    margin-bottom: 15px;
    font-size: 20px;
  }
  .l-footer .l-footer__cta .l-footer__cta-inner .l-footer__cta-list li a .textbody .text {
    font-size: 16px;
  }
}
.l-footer .l-footer__main {
  padding: 45px 15px;
}
.l-footer .l-footer__main .l-footer__main-content {
  margin-bottom: 25px;
}
.l-footer .l-footer__main .l-footer__main-content .l-footer__title {
  margin-bottom: 30px;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 1.4;
}
.l-footer .l-footer__main .l-footer__main-content .l-footer__add {
  margin-bottom: 8px;
  font-family: "Noto Sans Japanese";
  font-weight: 400;
  font-size: 14px;
}
.l-footer .l-footer__main .l-footer__main-content .l-footer__tel {
  display: flex;
  align-items: center;
}
.l-footer .l-footer__main .l-footer__main-content .l-footer__tel img {
  display: block;
  width: 20px;
  margin-right: 5px;
}
.l-footer .l-footer__main .l-footer__main-content .l-footer__tel span {
  font-family: "Noto Sans Japanese";
  font-weight: 400;
  font-size: 14px;
}
.l-footer .l-footer__main .l-footer__main-content .l-footer__nav {
  margin-top: 35px;
}
.l-footer .l-footer__main .l-footer__main-content .l-footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 210px;
  gap: 2px;
}
.l-footer .l-footer__main .l-footer__main-content .l-footer__nav ul .nav-item {
  width: 48%;
}
.l-footer .l-footer__main .l-footer__main-content .l-footer__nav ul .nav-item a {
  display: block;
  padding: 10px 0;
  font-family: "Noto Sans Japanese";
  font-weight: 400;
  font-size: 14px;
}
.l-footer .l-footer__main .l-footer__social {
  display: flex;
}
.l-footer .l-footer__main .l-footer__social a {
  display: block;
  width: 40px;
  margin-right: 10px;
}
.l-footer .l-footer__main .l-footer__social--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-footer .l-footer__main {
    padding: 60px 30px;
  }
  .l-footer .l-footer__main .l-footer__main-content {
    margin-bottom: 30px;
  }
  .l-footer .l-footer__main .l-footer__main-content .l-footer__title {
    font-size: 26px;
  }
  .l-footer .l-footer__main .l-footer__main-content .l-footer__add {
    font-size: 16px;
  }
  .l-footer .l-footer__main .l-footer__main-content .l-footer__nav ul {
    height: 150px;
  }
  .l-footer .l-footer__main .l-footer__main-content .l-footer__nav ul .nav-item {
    width: 33%;
  }
  .l-footer .l-footer__main .l-footer__main-content .l-footer__nav ul .nav-item a {
    padding: 10px 0;
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer .l-footer__main {
    padding: 85px 0 0;
  }
  .l-footer .l-footer__main .l-footer__main-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 50px;
  }
  .l-footer .l-footer__main .l-footer__main-content .l-footer__title {
    font-size: 38px;
  }
  .l-footer .l-footer__main .l-footer__main-content .l-footer__add {
    font-size: 16px;
  }
  .l-footer .l-footer__main .l-footer__main-content .l-footer__nav {
    width: 50%;
    margin-top: 0;
  }
  .l-footer .l-footer__main .l-footer__main-content .l-footer__nav ul {
    height: 150px;
  }
  .l-footer .l-footer__main .l-footer__main-content .l-footer__nav ul .nav-item {
    width: 33%;
  }
  .l-footer .l-footer__main .l-footer__main-content .l-footer__nav ul .nav-item a {
    padding: 10px 0;
    font-size: 16px;
  }
  .l-footer .l-footer__main .l-footer__social {
    display: none;
  }
  .l-footer .l-footer__main .l-footer__social a {
    display: block;
    width: 40px;
    margin-right: 10px;
  }
  .l-footer .l-footer__main .l-footer__social--pc {
    display: flex;
  }
}
.l-footer .l-footer__foot {
  padding: 0 15px 45px;
}
.l-footer .l-footer__foot .l-footer__copyright {
  font-family: "Noto Sans Japanese";
  font-weight: 400;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .l-footer .l-footer__foot {
    padding: 0 30px 60px;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer .l-footer__foot {
    padding: 0 0 60px;
    margin-top: -50px;
  }
}

.p-page-title__breadcrumb {
  padding: 10px 15px 0;
  color: #C6CAD2;
  font-size: 12px;
}
.p-page-title__breadcrumb a {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .p-page-title__breadcrumb {
    padding: 15px 30px 0;
    font-size: 14px;
  }
}
@media screen and (min-width: 1024px) {
  .p-page-title__breadcrumb {
    padding: 15px 30px 0 0;
  }
}

.wp-pagenavi {
  padding-bottom: 45px;
  font-family: "Lexend", sans-serif;
  font-size: 16px;
  text-align: center;
}
.wp-pagenavi a {
  color: #4a4a4a;
}
.wp-pagenavi .page {
  padding: 0;
}
@media screen and (min-width: 600px) {
  .wp-pagenavi {
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 1024px) {
  .wp-pagenavi {
    padding-bottom: 100px;
  }
}

.pages {
  /* 左の表記 */
  margin-right: 20px;
}

.wp-pagenavi .current, .wp-pagenavi a.page {
  /* ボタン */
  margin: 0 6px 6px 0;
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 3px;
  border: 1px solid #000;
  line-height: 40px;
  text-align: center;
}

.wp-pagenavi .current {
  /* カレント数字 */
  border: none;
  background: #000;
  color: #fff;
}

.wp-pagenavi a.page:hover {
  /* マウスオーバー */
  opacity: 0.75;
  transition: all 0.3s;
}

.wp-pagenavi .first, .wp-pagenavi .extend {
  /* ... */
  margin-right: 10px;
}

.wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
  /* 記号の削除 */
  display: none;
}

.l-main {
  padding-top: 70px;
}

.l-wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-wrapper {
    width: 90%;
  }
}

.p-page-title {
  position: relative;
}
.p-page-title .p-container--lg {
  display: block;
  position: relative;
  width: 100%;
  min-height: 140px;
  padding: 30px 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #fff;
}
.p-page-title .p-container--lg .p-page-title__ja {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content: "";
  display: block;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  letter-spacing: 2px;
}
@media screen and (min-width: 768px) {
  .p-page-title .p-container--lg {
    min-height: 180px;
    padding: 30px;
  }
  .p-page-title .p-container--lg .p-page-title__ja {
    left: 30px;
    font-size: 23px;
  }
}
@media screen and (min-width: 1024px) {
  .p-page-title .p-container--lg {
    min-height: 450px;
    padding: 0;
  }
  .p-page-title .p-container--lg .p-page-title__ja {
    left: 80px;
    font-size: 42px;
  }
}

.p-page-read {
  padding: 45px 15px 0;
}
.p-page-read .p-page-read__text {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-page-read {
    padding: 45px 30px 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-page-read {
    padding: 45px 0 0;
  }
}

.section-title {
  margin-bottom: 20px;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  letter-spacing: 2px;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .section-title {
    margin-bottom: 30px;
    font-size: 26px;
  }
  .section-title br {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .section-title {
    margin-bottom: 45px;
    font-size: 36px;
  }
}

.p-bc_gray {
  background-color: #F5F5F5;
}

.action .p-button {
  font-family: "Noto Sans Japanese";
  font-weight: 400;
  font-size: 14px;
}
.action .p-button::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  width: 30px;
  height: 30px;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 50px;
  color: #fff;
  font-family: "Material Icons";
  content: "\e409";
}
.action .p-button--back {
  text-align: center;
}
.action .p-button--back::before {
  content: "\e5cb";
}
@media screen and (min-width: 1024px) {
  .action .p-button {
    font-size: 16px;
  }
  .action .p-button::before {
    margin-right: 10px;
  }
  .action .p-button:hover {
    text-decoration: underline;
  }
  .action .p-button:hover::before {
    background-color: #fff;
    border: 1px solid #000;
    color: #000;
    transition: all 0.3s;
  }
}
.action .b-button {
  position: relative;
  display: inline-block;
  padding: 8px 40px;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 50px;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
}
.action .b-button::after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-family: "Material Icons";
  content: "\e89e";
}
@media screen and (min-width: 1024px) {
  .action .b-button {
    font-size: 16px;
  }
  .action .b-button::after {
    font-size: 15px;
  }
}
.action .c-button {
  position: relative;
  display: inline-block;
  padding: 8px 40px;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 50px;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
}
.action .c-button::after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background-color: #000;
  border-radius: 50px;
  color: #fff;
  font-family: "Material Icons";
  content: "\e409";
  font-size: 12px;
}
@media screen and (min-width: 1024px) {
  .action .c-button {
    font-size: 16px;
  }
  .action .c-button::after {
    font-size: 15px;
  }
}
.action-pageback, .action-more, .action-front {
  margin-top: 35px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .action-pageback, .action-more, .action-front {
    margin-top: 45px;
  }
}
.action-access {
  margin-top: 35px;
  text-align: center;
}
.action-access .p-button:before {
  background-color: #fff;
  color: #000;
}
.action-access .p-button:hover {
  text-decoration: underline;
}
.action-access .p-button:hover::before {
  background-color: #000;
  border: 1px solid #fff;
  color: #fff;
  transition: all 0.3s;
}
@media screen and (min-width: 1024px) {
  .action-access {
    margin-top: 45px;
  }
}

.notfound .p-page-title .p-container--lg {
  background-image: url("assets/images/pagetitle/404_sp.jpg");
}
@media screen and (min-width: 1024px) {
  .notfound .p-page-title .p-container--lg {
    background-image: url("assets/images/pagetitle/404_pc.jpg");
  }
}
.notfound .notfound-content {
  padding: 45px 15px;
}
.notfound .notfound-content .notfound-content__wrap {
  font-family: "Shippori Mincho", serif;
  font-style: normal;
  text-align: center;
}
.notfound .notfound-content .notfound-content__wrap .notfound-content__lead {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
}
.notfound .notfound-content .notfound-content__wrap .notfound-content__text {
  font-weight: 700;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .notfound .notfound-content {
    padding: 60px 30px;
  }
  .notfound .notfound-content .notfound-content__wrap .notfound-content__lead {
    font-size: 20px;
  }
  .notfound .notfound-content .notfound-content__wrap .notfound-content__lead br {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .notfound .notfound-content {
    padding: 60px 0 100px;
  }
  .notfound .notfound-content .notfound-content__wrap .notfound-content__lead {
    margin-bottom: 50px;
    font-size: 40px;
  }
  .notfound .notfound-content .notfound-content__wrap .notfound-content__text {
    font-size: 18px;
  }
}

.archive .p-page-title .p-container--lg {
  background-image: url("assets/images/pagetitle/news_sp.jpg");
}
@media screen and (min-width: 1024px) {
  .archive .p-page-title .p-container--lg {
    background-image: url("assets/images/pagetitle/news_pc.jpg");
  }
}
.archive .archive__container {
  padding: 45px 15px;
}
.archive .archive__container .archive__list .archive__item {
  margin-bottom: 30px;
}
.archive .archive__container .archive__list .archive__item .p-article-card:hover {
  opacity: 0.75;
  transition: all 0.3s;
}
.archive .archive__container .archive__list .archive__item .p-article-card .p-article-card__inner .p-article-card__thumbnail {
  height: 210px;
  margin-bottom: 10px;
}
.archive .archive__container .archive__list .archive__item .p-article-card .p-article-card__inner .p-article-card__thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 210px;
}
.archive .archive__container .archive__list .archive__item .p-article-card .p-article-card__inner .p-article-card__body .p-article-card__head {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.archive .archive__container .archive__list .archive__item .p-article-card .p-article-card__inner .p-article-card__body .p-article-card__head .p-article-card__date {
  margin-right: 5px;
  color: #707070;
  font-family: "Noto Sans Japanese";
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
}
.archive .archive__container .archive__list .archive__item .p-article-card .p-article-card__inner .p-article-card__body .p-article-card__head .post-cate_list {
  margin: 0;
  padding: 0;
}
.archive .archive__container .archive__list .archive__item .p-article-card .p-article-card__inner .p-article-card__body .p-article-card__head .post-cate_list .post-cat_item {
  display: inline-block;
  min-width: 80px;
  margin-right: 5px;
  background-color: #707070;
  color: #fff;
  padding: 3px 8px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 12px;
  text-align: center;
}
.archive .archive__container .archive__list .archive__item .p-article-card .p-article-card__inner .p-article-card__body .p-article-card__head .post-cate_list .post-cat_item:hover {
  background-color: #4c4c4c;
  transition: all 0.3s;
}
.archive .archive__container .archive__list .archive__item .p-article-card .p-article-card__inner .p-article-card__body .p-article-card__title {
  font-family: "Noto Sans Japanese";
  font-weight: 400;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .archive .archive__container {
    padding: 45px 30px;
  }
  .archive .archive__container .archive__list .archive__item {
    margin-bottom: 0;
  }
  .archive .archive__container .archive__list .archive__item .p-article-card .p-article-card__inner {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #DBDBDB;
  }
  .archive .archive__container .archive__list .archive__item .p-article-card .p-article-card__inner .p-article-card__thumbnail {
    width: 200px;
    height: 120px;
    margin: 0 20px 0 0;
  }
  .archive .archive__container .archive__list .archive__item .p-article-card .p-article-card__inner .p-article-card__thumbnail img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 120px;
  }
  .archive .archive__container .archive__list .archive__item .p-article-card .p-article-card__inner .p-article-card__body {
    padding: 10px 0;
  }
  .archive .archive__container .archive__list .archive__item .p-article-card .p-article-card__inner .p-article-card__body .p-article-card__head {
    margin-bottom: 10px;
  }
  .archive .archive__container .archive__list .archive__item .p-article-card .p-article-card__inner .p-article-card__body .p-article-card__head .p-article-card__date {
    margin-right: 8px;
    font-size: 16px;
  }
  .archive .archive__container .archive__list .archive__item .p-article-card .p-article-card__inner .p-article-card__body .p-article-card__head .post-cat_list .post-cat_item {
    font-size: 13px;
  }
  .archive .archive__container .archive__list .archive__item .p-article-card .p-article-card__inner .p-article-card__body .p-article-card__title {
    font-size: 16px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 1024px) {
  .archive .archive__container {
    padding: 60px 0 100px;
  }
  .archive .archive__container .archive__list {
    max-width: 980px;
    margin: 0 auto;
  }
  .archive .archive__container .archive__list .archive__item {
    margin-bottom: 0;
  }
  .archive .archive__container .archive__list .archive__item .p-article-card .p-article-card__inner {
    justify-content: start;
    margin-bottom: 35px;
    padding-bottom: 35px;
  }
  .archive .archive__container .archive__list .archive__item .p-article-card .p-article-card__inner .p-article-card__thumbnail {
    width: 220px;
    height: 160px;
    margin: 0 40px 0 0;
  }
  .archive .archive__container .archive__list .archive__item .p-article-card .p-article-card__inner .p-article-card__thumbnail img {
    height: 160px;
  }
  .archive .archive__container .archive__list .archive__item .p-article-card .p-article-card__inner .p-article-card__body {
    padding: 10px 0;
  }
  .archive .archive__container .archive__list .archive__item .p-article-card .p-article-card__inner .p-article-card__body .p-article-card__head {
    margin-bottom: 12px;
  }
  .archive .archive__container .archive__list .archive__item .p-article-card .p-article-card__inner .p-article-card__body .p-article-card__head .p-article-card__date {
    margin-right: 10px;
    font-size: 16px;
  }
  .archive .archive__container .archive__list .archive__item .p-article-card .p-article-card__inner .p-article-card__body .p-article-card__head .post-cat_list .post-cat_item {
    font-size: 14px;
  }
  .archive .archive__container .archive__list .archive__item .p-article-card .p-article-card__inner .p-article-card__body .p-article-card__title {
    font-size: 18px;
    line-height: 1.6;
  }
}/*# sourceMappingURL=style.css.map */