@font-face {
  font-family: "YakuhanMP";
  src: url("../fonts/YakuHanMP-Regular.woff2") format("woff2");
  font-weight: 400;
}
* {
  margin: 0;
  padding: 0;
  position: relative;
}
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.3rem;
  font-family: YakuhanMP, "Noto Serif JP", serif;
  color: #FFF;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 2;
  background-color: #43433b;
  font-feature-settings: "palt";
}
@media (min-width: 580px) {
  body {
    font-size: 1.4rem;
  }
}

a {
  text-decoration: none;
  color: inherit;
}
a.uline:hover {
  text-decoration: underline;
}
@media (min-width: 481px) {
  a.tel {
    pointer-events: none;
  }
}
a.current {
  pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
}

li {
  list-style: none;
}

sup {
  font-size: 50%;
}

button {
  outline: none;
  border: none;
  background: none;
  padding: 0;
  font-family: inherit;
  font-size: 1em;
  font-style: normal;
  appearance: none;
  border-radius: 0;
  cursor: pointer;
}

.img100 {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.ib {
  display: inline-block;
}

@media (min-width: 580px) {
  br.sp {
    display: none;
  }
}

.footer {
  padding: 50px 10px 100px;
}

.copyright {
  font-family: "josefin Sans", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-align: center;
}

.sc-up {
  opacity: 0;
  transform: translateY(80px);
}
.sc-up.fire {
  opacity: 1;
  transform: none;
  transition: transform 1s ease-out, opacity 1s linear;
}

body {
  background: #43433b;
}

.header_mv {
  width: 100%;
  aspect-ratio: 3/2;
}
.header_mv_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header_h1 {
  width: 60%;
  padding: 0 20px;
  margin: 0 auto;
}
.header_h1 .img100 {
  max-width: 419px;
}
.header_h1_2 {
  width: 60%;
  padding: 0 20px;
  margin: -20px auto 0;
}
.header_h1_2 .img100 {
  max-width: 419px;
}
@media (min-width: 580px) {
  .header {
    max-width: 1280px;
    margin: 0 auto;
  }
  .header_h1 {
    width: 100%;
    max-width: 960px;
    margin-top: -80px;
  }
  .header_h1_2 {
    width: 100%;
    max-width: 900px;
    margin-top: -110px;
  }
}

.category {
  padding: 40px 15px;
  max-width: 830px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.category_li {
  width: calc(33.333% - 10px);
  height: 30px;
  margin: 5px;
}
.category_btn {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #FFF;
  border: 1px solid #e1e1ba;
  font-size: 10px;
}
.category_btn.active {
  color: #000;
  background: linear-gradient(90deg, #b3b392 0%, #d8e4de 100%);
}
@media screen and (min-width: 820px) {
  .category {
    padding: 40px 0;
    width: 760px;
  }
  .category_li {
    width: 180px;
    height: 50px;
  }
  .category_btn {
    font-size: 14px;
  }
}

.articles {
  max-width: 960px;
  padding: 20px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.articles::after {
  content: "";
  width: calc(50% - 5px);
  height: 0;
  display: block;
}
.articles_li {
  width: calc(50% - 5px);
  margin-bottom: 30px;
  aspect-ratio: 3/2;
}
.articles_a {
  width: 100%;
  height: 100%;
  display: block;
}
.articles_a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.articles_title {
  text-align: center;
  font-size: 12px;
}
@media screen and (min-width: 580px) {
  .articles::after {
    width: calc(33.333% - 6.666px);
  }
  .articles_li {
    width: calc(33.333% - 6.666px);
  }
}

.pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 960px;
  padding: 0 20px;
  margin: 50px auto 0;
}
.pager_a {
  display: grid;
  place-items: center;
  line-height: 1;
  width: 36px;
  height: 36px;
  font-size: 16px;
  color: #FFF;
  background: #000;
  margin-left: 4px;
}
.pager_a.current, .pager_a:hover {
  color: #000;
  background: linear-gradient(90deg, #b3b392 0%, #d8e4de 100%);
}
@media screen and (min-width: 820px) {
  .pager {
    justify-content: flex-end;
  }
}

.slide {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.slide_in {
  aspect-ratio: 3/2;
}
.slide_item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s linear;
}
.slide_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide_item.show {
  opacity: 1;
}

.thumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto 0;
}
.thumbs.length2 {
  max-width: 400px;
}
.thumbs_prev, .thumbs_next {
  display: grid;
  place-items: center;
  width: 30px;
  height: 60px;
  background: linear-gradient(90deg, #b3b392 0%, #d8e4de 100%);
}
.thumbs_prev::before, .thumbs_next::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}
.thumbs_prev::before {
  transform: rotate(-135deg);
}
.thumbs_next::before {
  transform: rotate(45deg);
}
.thumbs_btn_outer {
  width: calc(100% - 80px);
  margin: 0 10px;
  display: flex;
  flex-wrap: wrap;
}
.thumbs_btn {
  width: calc(33.333% - 2px);
  aspect-ratio: 3/2;
  margin: 1px;
}
.length2 .thumbs_btn {
  width: calc(50% - 2px);
}
.thumbs_btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumbs_btn::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}
.thumbs_btn.active {
  pointer-events: none;
}
.thumbs_btn.active::after {
  background: none;
}
@media screen and (min-width: 580px) {
  .thumbs {
    max-width: 800px;
    align-items: stretch;
  }
  .thumbs.length3 {
    max-width: 480px;
  }
  .thumbs.length4 {
    max-width: 640px;
  }
  .thumbs_prev, .thumbs_next {
    width: 40px;
    height: auto;
  }
  .thumbs_btn_outer {
    margin: 0 2px;
  }
  .thumbs_btn {
    width: calc(16.6666666667% - 2px);
    margin: 0 1px;
  }
  .length3 .thumbs_btn {
    width: calc(33.3333333333% - 2px);
  }
  .length4 .thumbs_btn {
    width: calc(25% - 2px);
  }
  .length5 .thumbs_btn {
    width: calc(20% - 2px);
  }
}

.content {
  width: 100%;
  max-width: 480px;
  padding: 40px 20px;
  margin: 0 auto;
}
.content_title {
  font-size: 24px;
  line-height: 1;
}
.content_hr {
  border-top: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  margin-top: 30px;
}
.content_div {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 12px;
}
.content_dt {
  color: #bdbdbd;
  margin-bottom: 1em;
  line-height: 1em;
}
.content_dd {
  line-height: 1.4;
}
.content_btns {
  margin-top: 40px;
}
.content_btns a {
  width: 100%;
  display: grid;
  place-items: center;
  height: 50px;
  margin: 10px 0 0;
  font-size: 16px;
}
.content_btns_tel {
  background: #29969a;
}
.content_btns_inquiry {
  background: #ca6a43;
}
.content_btns_top {
  background: #000;
}
.content_btns_top img {
  width: 120px;
}
.content_bottom {
  max-width: 720px;
  margin: 60px auto 0;
  font-size: 14px;
}
@media screen and (min-width: 820px) {
  .content {
    max-width: 900px;
  }
  .content_in {
    display: flex;
    justify-content: space-between;
  }
  .content_dl {
    width: calc(100% - 330px);
  }
  .content_div {
    display: flex;
    padding: 30px 0;
    font-size: 14px;
  }
  .content_dt {
    width: 6em;
    margin: 0;
  }
  .content_dd {
    width: calc(100% - 6em);
  }
  .content_btns {
    width: 300px;
    margin: 0;
    padding-top: 30px;
  }
  .content_btns a {
    height: 90px;
    margin: 5px 0 0;
    font-size: 24px;
  }
}

.notfound {
  padding: 100px 20px;
  text-align: center;
  font-size: 18px;
}
.notfound_a {
  text-decoration: underline;
}

.orange {
  font-weight: inherit;
  background: #CA6A43;
  color: #FFF;
  display: inline-block;
  line-height: 1.5;
}