@charset "UTF-8";
a {
  opacity: 1;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.7;
}

/*---------- 以下共通スタイル ----------*/
html {
  /* スムーズスクロール */
  scroll-behavior: smooth;
}

body {
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: #2a2a2a;
  min-width: 1280px;
  margin: 0 auto;
  background: url(../img/top.png) no-repeat top left/auto, url(../img/pattern_washi01.png) repeat top 250px left/contain;
}

.top-page {
  background: url(../img/top.png) no-repeat top left/auto, url(../img/pattern_washi01.png) repeat top 150% left/contain;
}

a,
img,
button {
  display: block;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  width: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
}

/*----- brクラス -----*/
.br_pc {
  display: block;
}

.br_sp {
  display: none;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

/*----- textクラス -----*/
/*
概要:
テキストの色、配置の変更
*/
.text-main {
  color: #abc900;
}

.text-brown {
  color: #985329;
}

.text-green01 {
  color: #728600;
}

.text-green02 {
  color: #abc900;
}

.text-thema {
  color: #f1eedf;
}

.text-main-black {
  color: #2a2a2a;
}

.text-white {
  color: #fff;
}

.text-black {
  color: #000;
}

.text-underline-main {
  -webkit-text-decoration: underline 1px #abc900;
          text-decoration: underline 1px #abc900;
}

.text-underline-brown {
  -webkit-text-decoration: underline 1px #985329;
          text-decoration: underline 1px #985329;
}

.text-underline-green01 {
  -webkit-text-decoration: underline 1px #728600;
          text-decoration: underline 1px #728600;
}

.text-underline-green02 {
  -webkit-text-decoration: underline 1px #abc900;
          text-decoration: underline 1px #abc900;
}

.text-underline-thema {
  -webkit-text-decoration: underline 1px #f1eedf;
          text-decoration: underline 1px #f1eedf;
}

.text-underline-main-black {
  -webkit-text-decoration: underline 1px #2a2a2a;
          text-decoration: underline 1px #2a2a2a;
}

.text-underline-white {
  -webkit-text-decoration: underline 1px #fff;
          text-decoration: underline 1px #fff;
}

.text-underline-black {
  -webkit-text-decoration: underline 1px #000;
          text-decoration: underline 1px #000;
}

.underline-offset-sm {
  text-underline-offset: 0.25em;
}

.underline-offset-rg {
  text-underline-offset: 0.3em;
}

.underline-offset-md {
  text-underline-offset: 0.5em;
}

.underline-offset-lg {
  text-underline-offset: 0.8em;
}

.bg-main {
  background-color: #abc900;
}

.bg-brown {
  background-color: #985329;
}

.bg-green01 {
  background-color: #728600;
}

.bg-green02 {
  background-color: #abc900;
}

.bg-thema {
  background-color: #f1eedf;
}

.bg-main-black {
  background-color: #2a2a2a;
}

.bg-white {
  background-color: #fff;
}

.bg-black {
  background-color: #000;
}

.bg-shippou01 {
  background: url(../img/pattern_shippou01.jpg) repeat center/auto;
}

.bg-shippou02 {
  background: url(../img/pattern_shippou02.jpg) repeat center/auto;
}

.bg-shippou03 {
  background: url(../img/pattern_shippou03.jpg) repeat center/auto;
}

.bg-washi01 {
  background: url(../img/pattern_washi01.jpg) repeat center/auto;
}

.bg-washi02 {
  background: url(../img/pattern_washi02.jpg) repeat center/auto;
}

.border-main {
  border-color: #abc900 !important;
}

.border-brown {
  border-color: #985329 !important;
}

.border-green01 {
  border-color: #728600 !important;
}

.border-green02 {
  border-color: #abc900 !important;
}

.border-thema {
  border-color: #f1eedf !important;
}

.border-main-black {
  border-color: #2a2a2a !important;
}

.border-white {
  border-color: #fff !important;
}

.border-black {
  border-color: #000 !important;
}

.font-light {
  font-weight: 300;
}

.font-regular {
  font-weight: 400;
}

.font-medium {
  font-weight: 400;
}

.font-bold {
  font-weight: 700;
}

.text-center {
  text-align: center;
}

/*----- displayクラス -----*/
/*
概要:
block,inline,inline-blockに変更
*/
.inline {
  display: inline;
}

/*----- object-fitクラス -----*/
.contain-img {
  /* 比率で画像サイズを指定するためのクラス */
  /*
  width,height:0;,padding-topを別指定する
  */
}
.contain-img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.contain-img-center > img {
  -o-object-position: center center;
     object-position: center center;
}
.contain-img-left > img {
  -o-object-position: left center;
     object-position: left center;
}
.contain-img-right > img {
  -o-object-position: right center;
     object-position: right center;
}
.contain-img-fit {
  position: relative;
  overflow: hidden;
}
.contain-img-fit > img {
  position: absolute;
  -o-object-position: center center;
     object-position: center center;
  top: 0;
  left: 0;
}

.cover-img {
  /* 比率で画像サイズを指定するためのクラス */
  /*
  width,height:0;,padding-topを別指定する
  */
}
.cover-img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cover-img-center > img {
  -o-object-position: center center;
     object-position: center center;
}
.cover-img-left > img {
  -o-object-position: left center;
     object-position: left center;
}
.cover-img-right > img {
  -o-object-position: right center;
     object-position: right center;
}
.cover-img-fit {
  position: relative;
  overflow: hidden;
}
.cover-img-fit > img {
  position: absolute;
  -o-object-position: center center;
     object-position: center center;
  top: 0;
  left: 0;
}

/*----- innerクラス -----*/
.inner {
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}

/*----- secクラス -----*/
/*
概要:
sectionごとに共通化できる、タイトル、余白などを指定
*/
.sec {
  padding: 100px 0;
}

.sec02 {
  padding: 80px 0;
}

.round-smr {
  border-radius: 5px;
}

.round-sm {
  border-radius: 10px;
}

.round-rg {
  border-radius: 15px;
}

.round-md {
  border-radius: 20px;
}

.round-lg {
  border-radius: 30px;
}

/*----------- headerここから -----------*/
.header {
  padding: 10px 50px 10px 80px;
  min-width: 1280px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  height: 150px;
  display: flex;
  align-items: center;
  background: url(../img/header_bg.png) no-repeat top center/cover;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header-logo {
  width: 181px;
}
.header-logo img {
  width: 100%;
}
.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  max-width: 900px;
}
.header-contents {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 30px;
  margin-right: 25px;
}
.header__tel {
  margin-bottom: 9px;
}
.header__address {
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.info {
  vertical-align: middle;
  display: flex;
  align-items: center;
  gap: 0.5em 1em;
  letter-spacing: 0.08em;
  font-size: 15px;
}
.info-item > span {
  font-size: 1em;
  text-align: center;
  display: inline-block;
  line-height: 1.8181818182em;
  padding: 0.05em 0.4666666667em;
  margin-right: 0.7333333333em;
  min-width: 76px;
}

.sns-icon {
  width: 40px;
}
.sns-icon img {
  width: 100%;
}

/*----------- headerここまで -----------*/
/*---------- 以下navmenu ----------*/
.nav-menu {
  width: 100%;
  background-color: #e8e8d1;
  max-width: 880px;
  margin-top: 10px;
}
.nav-menu__list {
  display: flex;
  justify-content: center;
  padding: 0.4264705882em 20px;
  font-size: 17px;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.nav-menu__item {
  text-align: center;
  position: relative;
}
.nav-menu__item:first-child .nav-menu__link {
  padding-left: 0;
}
.nav-menu__item:first-child .nav-menu__link {
  padding-left: 0;
}
.nav-menu__item:last-child .nav-menu__link {
  padding-right: 0;
}
.nav-menu__item:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 1em;
  display: block;
  background-color: #3f2516;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 5;
}
.nav-menu__link {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.2352941176em;
  font-family: "Noto Serif JP", sans-serif;
}
.nav-menu__link:hover {
  opacity: 1;
  color: #728600;
}
.nav-menu__link.current {
  color: #728600;
}

/*---------- navmenuここまで ----------*/
/*----------- ▽ footer ▽ -----------*/
.footer {
  background: rgb(218, 226, 159);
  background: linear-gradient(90deg, rgb(218, 226, 159) 50%, rgb(178, 184, 112) 100%);
  z-index: 1;
  position: relative;
}
.footer::after {
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url(../img/footer_left.png) no-repeat bottom left/auto, url(../img/footer_right02.png) no-repeat top right/auto, url(../img/footer_right.png) no-repeat top right/auto;
  position: absolute;
  top: 0;
  left: 0;
}
.footer-inner {
  padding: 60px 0 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-logo {
  width: 181px;
  margin-bottom: 30px;
}
.footer-logo img {
  width: 100%;
}
.footer-contents {
  flex-direction: column;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 0;
  width: 460px;
  margin-bottom: 24px;
}
.footer__tel {
  font-size: 30px;
}
.footer__address {
  line-height: 1;
  letter-spacing: 0.12em;
  font-weight: 400;
  margin-bottom: 24px;
}
.footer .info {
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 10px 24px;
}
.footer-nav {
  width: 100%;
  max-width: 770px;
  gap: 15px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-nav__list:first-child {
  font-size: 15px;
  background-color: #e8e8d1;
  padding: 6px 0;
}
.footer-nav__list:nth-child(2) {
  font-size: 13px;
}
.footer-nav__item {
  text-align: center;
  position: relative;
}
.footer-nav__item:first-child .footer-nav__link {
  padding-left: 0;
}
.footer-nav__item:last-child .footer-nav__link {
  padding-right: 0;
}
.footer-nav__item:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 1em;
  display: block;
  background-color: #3f2516;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 5;
}
.footer-nav__link {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.2em;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 600;
}
.footer .copy-right {
  font-size: 13px;
  letter-spacing: 0.08em;
  width: 100%;
  display: block;
  text-align: center;
  line-height: 2.5em;
  text-align: center;
  color: #fff;
  background-color: #879a29;
}

/*----------- △ footer △ -----------*/
/*---------- 以下btnクラス ----------*/
.btn {
  display: block;
  line-height: 1;
  text-align: center;
  font-size: 20px;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.btn-primary {
  color: #fff;
  background-color: #985329;
}
.btn-round {
  border-radius: 5em;
}
.btn-inborder {
  outline: 1px solid #98ae22;
  outline-offset: -5px;
}
.btn-inborder--brown {
  outline: 1px solid #c37f56;
  outline-offset: -5px;
}
.btn-border--brown {
  border: 4px solid #b3683b;
  box-sizing: border-box;
  padding: 0.8em 1em !important;
}
.btn-center {
  margin: 0 auto;
}
.btn-large {
  max-width: 420px;
  width: 100%;
  padding: 1em 1em;
}
.btn-medium {
  max-width: 340px;
  width: 100%;
  padding: 1em 1em;
}
.btn-regular {
  max-width: 250px;
  width: 100%;
  padding: 1em 1em;
}
.btn-arrow {
  position: relative;
}
.btn-arrow::after {
  content: "";
  width: 0.45em;
  height: 0.9em;
  position: absolute;
  top: 50%;
  right: 0.9em;
  background: url(../img/btn_arrow.png) no-repeat center/auto;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.btn-arrow:hover::after {
  transform: translate(50%, -50%);
}
.btn-more {
  position: relative;
  font-size: 17px;
  padding-right: 21px;
  display: inline-block;
  color: #985329;
}
.btn-more::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #985329;
  position: absolute;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.btn-more:hover::after {
  transform: translate(50%, -50%);
}

/*---------- btnクラスここまで ----------*/
/*------------ pagenationここから --------------*/
.pagenation {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.pagenation li {
  width: 3em;
  height: 3em;
  display: block;
  font-size: 1em;
  line-height: 3em;
  text-align: center;
  margin: 0 6px;
  background-color: #fff;
  border: 1px solid #728600;
  color: #728600;
}
.pagenation .current {
  background-color: #728600;
  color: #fff;
  font-weight: 600;
}
/*------------ pagenationここまで --------------*/
/*---------- 以下breadclumb ----------*/
.wrapper {
  position: relative;
  z-index: 10;
}

.bread-clumb {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 1080px;
}
.bread-clumb ul {
  display: flex;
  width: 100%;
  font-size: 14px;
  letter-spacing: 0.08em;
  padding: 20px 0;
}
.bread-clumb li {
  display: flex;
  align-items: center;
  color: #2a2a2a;
}
.bread-clumb li:not(:last-child)::after {
  content: ">";
  margin: 0 1em;
  color: #2a2a2a;
}
.bread-clumb li:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bread-clumb li a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.3s;
  color: #2a2a2a;
}
.bread-clumb li a:hover {
  color: #abc900;
}

/*------------ prevnextここから --------------*/
.prev-next__area {
  display: flex;
  max-width: 960px;
  position: relative;
  font-weight: 600;
  line-height: 1.2;
  margin: 60px auto 0;
  background: url(../img/news_line.png) repeat-x top left/auto;
  padding-top: 30px;
}
.prev-next__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100px;
}
.prev-next__link.prev::before {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  border-top: 2px solid #abc900;
  border-left: 2px solid #abc900;
  transform: rotate(-45deg);
}
.prev-next__link.next {
  margin-left: auto;
}
.prev-next__link.next::after {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  border-top: 2px solid #abc900;
  border-right: 2px solid #abc900;
  transform: rotate(45deg);
}
.prev-next__link.back {
  padding: 0 12px;
  border-left: 1px solid #abc900;
  border-right: 1px solid #abc900;
  text-align: center;
  justify-content: center;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translate(-50%, 0);
}
.prev-next__link.prev, .prev-next__link.next, .prev-next__link.back {
  transition: all 0.3s;
}
.prev-next__link.prev::before, .prev-next__link.prev::after, .prev-next__link.next::before, .prev-next__link.next::after, .prev-next__link.back::before, .prev-next__link.back::after {
  transition: all 0.3s;
}
.prev-next__link.prev:hover, .prev-next__link.next:hover, .prev-next__link.back:hover {
  color: #abc900;
}
.prev-next__link.prev:hover::before, .prev-next__link.prev:hover::after, .prev-next__link.next:hover::before, .prev-next__link.next:hover::after, .prev-next__link.back:hover::before, .prev-next__link.back:hover::after {
  border-color: #abc900;
}

/*------------ prevnextここまで --------------*//*# sourceMappingURL=common.css.map */