/* ---------------------------------------------------------
    font
--------------------------------------------------------- */
/* ---------------------------------------------------------
    fade
--------------------------------------------------------- */
.fadeIn_up {
  opacity: 0;
  -webkit-transform: translate(0, 50%);
          transform: translate(0, 50%);
  -webkit-transition: 2s;
  transition: 2s;
}

.fadeIn_up.is-show {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_up.delay {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.fadeIn {
  opacity: 0;
  -webkit-transition: 2s;
  transition: 2s;
}

.fadeIn.is-show {
  opacity: 1;
}

.fadeIn.delay {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.oneTxt {
  visibility: hidden;
}

.oneTxt.is-ready {
  visibility: visible;
}

.oneTxt span {
  opacity: 0;
  -webkit-transition: .6s ease-in-out;
  transition: .6s ease-in-out;
}

/* ---------------------------------------------------------
    variable
--------------------------------------------------------- */
body {
  overflow-x: hidden;
  background: #fff;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  color: #000;
}

img {
  width: 100%;
  vertical-align: top;
}

.inner {
  max-width: 1000px;
  padding: 0 20px;
  margin: auto;
}

/* ---------------------------------------------------------
    header
--------------------------------------------------------- */
.header {
  width: 100%;
  padding: 25px 80px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  -webkit-transition: opacity .3s ease, background-color .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, background-color .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, transform .3s ease, background-color .3s ease;
  transition: opacity .3s ease, transform .3s ease, background-color .3s ease, -webkit-transform .3s ease;
  will-change: opacity, transform;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}

.header.is-hidden {
  opacity: 0;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  pointer-events: none;
}

.header.is-solid {
  background: #c1ad54;
}

.header .logo {
  width: 315px;
  position: relative;
}

.header .logo .link {
  position: absolute;
  inset: 0;
}

.header .sp_menu {
  display: none;
}

.header .navigation_pc nav .navi {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .navigation_pc nav .navi .navi_item {
  margin-right: 40px;
}

.header .navigation_pc nav .navi .navi_item:nth-child(3) {
  margin-right: 0;
}

.header .navigation_pc nav .navi .navi_item:last-child {
  margin-right: 0;
  margin-left: 60px;
  position: relative;
}

.header .navigation_pc nav .navi .navi_item:last-child::before {
  content: '';
  width: 1px;
  height: 30px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: -30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header .navigation_pc nav .navi .navi_item .link {
  text-decoration: none;
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #fff;
}

.header .navigation_pc nav .navi .navi_item .link.contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.header .navigation_pc nav .navi .navi_item .link.contact .icon {
  width: 20px;
}

.header .navigation_sp {
  display: none;
}

@media (max-width: 767px) {
  .header {
    padding: 20px 20px 10px;
  }
  .header .logo {
    width: 210px;
  }
  .header .sp_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
  }
  .header .sp_menu .icon {
    width: 30px;
    position: relative;
  }
  .header .sp_menu .icon .link {
    position: absolute;
    inset: 0;
  }
  .header .sp_menu .hamburger_menu {
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
    width: 30px;
    height: 20px;
    padding: 0;
    background: transparent;
    border: 0;
    position: relative;
    cursor: pointer;
  }
  .header .sp_menu .hamburger_menu.active .bar:nth-child(1) {
    -webkit-transform: translateX(-50%) rotate(45deg);
            transform: translateX(-50%) rotate(45deg);
    top: 10px;
  }
  .header .sp_menu .hamburger_menu.active .bar:nth-child(2) {
    opacity: 0;
  }
  .header .sp_menu .hamburger_menu.active .bar:nth-child(3) {
    -webkit-transform: translateX(-50%) rotate(-45deg);
            transform: translateX(-50%) rotate(-45deg);
    top: 10px;
  }
  .header .sp_menu .hamburger_menu .bar {
    width: 30px;
    height: 2px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background: #fff;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  .header .sp_menu .hamburger_menu .bar:nth-child(1) {
    top: 0;
  }
  .header .sp_menu .hamburger_menu .bar:nth-child(2) {
    top: 10px;
  }
  .header .sp_menu .hamburger_menu .bar:nth-child(3) {
    top: 20px;
  }
  .header .navigation_pc {
    display: none;
  }
  .header .navigation_sp {
    width: 100%;
    padding: 100px 20px 60px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: #c1ad54;
    display: block;
    position: fixed;
    top: -800%;
    left: 0;
    z-index: -1;
    -webkit-transition: all .5s;
    transition: all .5s;
  }
  .header .navigation_sp.panelactive {
    top: 0;
  }
  .header .navigation_sp nav {
    width: 100%;
  }
  .header .navigation_sp nav .navi {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
  .header .navigation_sp nav .navi .navi_item .link {
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
  }
  .header .navigation_sp nav .contact {
    margin: 100px auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 12px;
    position: relative;
  }
  .header .navigation_sp nav .contact::before {
    content: '';
    width: 300px;
    height: 1px;
    background: #fff;
    position: absolute;
    top: -50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .header .navigation_sp nav .contact .link {
    position: absolute;
    inset: 0;
  }
  .header .navigation_sp nav .contact .icon {
    width: 25px;
  }
  .header .navigation_sp nav .contact span {
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 20px;
    color: #fff;
  }
  .header .navigation_sp nav .tel_link {
    display: block;
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    margin: 15px auto 0;
    text-align: center;
  }
  .header .navigation_sp nav .tel_link span {
    font-size: 28px;
  }
}

/* ---------------------------------------------------------
    footer
--------------------------------------------------------- */
.footer {
  background: #c1ad54;
  padding: 50px 0 20px;
}

.footer .logo {
  max-width: 315px;
  margin: auto;
}

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

.footer .icons .icon {
  width: 30px;
  position: relative;
}

.footer .icons .icon .link {
  position: absolute;
  inset: 0;
}

.footer .copy {
  margin-top: 55px;
}

.footer .copy .copyRight {
  display: block;
  text-align: center;
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 12px;
  color: #fff;
}

@media (max-width: 767px) {
  .footer .copy .copyRight {
    font-size: 10px;
  }
}

/* ---------------------------------------------------------
    header
--------------------------------------------------------- */
.header {
  background: #c1ad54;
}

/* ---------------------------------------------------------
    pagevisual
--------------------------------------------------------- */
.page_visual {
  width: 100%;
  height: 220px;
  margin-top: 100px;
  position: relative;
  background: url(../images/news/pageVisual.jpg) no-repeat center/cover;
}

.page_visual::before {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}

.page_visual .page_title {
  font-size: 32px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}

.page_visual .page_title .en {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
}

.page_visual .notes {
  width: 230px;
  height: 45px;
  background: rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 20px;
  right: 40px;
}

.page_visual .notes span {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 767px) {
  .page_visual {
    height: 180px;
    margin-top: 70px;
  }
  .page_visual .page_title {
    font-size: 26px;
    gap: 5px;
  }
  .page_visual .page_title .en {
    font-size: 18px;
  }
  .page_visual .notes {
    width: 200px;
    height: 35px;
    bottom: 10px;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .page_visual .notes span {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
  }
}

/* ---------------------------------------------------------
    post_wrap
--------------------------------------------------------- */
.post_wrap {
  margin: 80px 0;
}

.post_wrap .inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 160px;
      grid-template-columns: 1fr 160px;
  gap: 50px;
}

.post_wrap .inner .posts .news_post {
  list-style-type: none;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.post_wrap .inner .posts .news_post .post_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 40px;
  border-bottom: 1.5px dotted #000;
  position: relative;
}

.post_wrap .inner .posts .news_post .post_item:last-child {
  border: 0;
}

.post_wrap .inner .posts .news_post .post_item .link {
  position: absolute;
  inset: 0;
}

.post_wrap .inner .posts .news_post .post_item .wrap {
  display: contents;
}

.post_wrap .inner .posts .news_post .post_item .wrap .date {
  font-size: 15px;
  white-space: nowrap;
  margin-right: 20px;
}

.post_wrap .inner .posts .news_post .post_item .wrap .category {
  margin-right: 60px;
}

.post_wrap .inner .posts .news_post .post_item .wrap .category .post-categories {
  list-style-type: none;
}

.post_wrap .inner .posts .news_post .post_item .wrap .category .post-categories li {
  width: 130px;
  height: 30px;
  background: #c1ad54;
  border-radius: 100px;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.post_wrap .inner .posts .news_post .post_item .wrap .category .post-categories li a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  white-space: nowrap;
}

.post_wrap .inner .posts .news_post .post_item .post_title {
  line-height: 1.75;
  font-weight: 400;
}

.post_wrap .inner .posts .pagenation {
  margin-top: 40px;
}

.post_wrap .inner .posts .pagenation .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

.post_wrap .inner .posts .pagenation .page-numbers li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.post_wrap .inner .posts .pagenation .page-numbers li a {
  display: block;
  padding: 9px 13.31px;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #000;
  font-size: 20px;
  text-decoration: none;
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.post_wrap .inner .posts .pagenation .page-numbers li .current {
  display: block;
  padding: 9px 15.04px;
  background: #000;
  border: 1px solid #000;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.post_wrap .inner .side .sidebox {
  margin: 60px 0;
}

.post_wrap .inner .side .sidebox:first-child {
  margin-top: 0;
}

.post_wrap .inner .side .sidebox__jp {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: .08em;
}

.post_wrap .inner .side .sidebox__en {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-style: normal !important;
  font-size: 16px;
  margin-top: 5px;
  font-style: italic;
}

.post_wrap .inner .side .side-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.post_wrap .inner .side .side-list li {
  margin: 10px 0;
}

.post_wrap .inner .side .side-list a {
  display: inline-block;
  text-decoration: none;
  color: #000;
  padding-left: 1.2em;
  position: relative;
}

.post_wrap .inner .side .side-list a::before {
  content: ">";
  position: absolute;
  left: 0;
  top: 0;
}

.post_wrap .inner .side .side-list--cat li a {
  margin-right: .25em;
}

.post_wrap .inner .side .side-list--cat li .count {
  margin-left: .25em;
}

@media (max-width: 767px) {
  .post_wrap {
    margin: 60px 0;
  }
  .post_wrap .inner {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 80px;
  }
  .post_wrap .inner .posts .news_post {
    margin-top: 30px;
    list-style-type: none;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
  }
  .post_wrap .inner .posts .news_post .post_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .post_wrap .inner .posts .news_post .post_item .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .post_wrap .inner .posts .news_post .post_item .wrap .category {
    margin-right: 0;
  }
  .post_wrap .inner .posts .pagenation .page-numbers {
    gap: 5px;
  }
}
/*# sourceMappingURL=archive.css.map */