@charset "UTF-8";
a {
  opacity: 1;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.7;
}

/*---------- 以下基本設定 ----------*/
html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.875;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: #442800;
  min-width: 1280px;
  margin: 0 auto;
}

a,
img,
button {
  display: block;
}

img {
  max-width: 100%;
  width: auto;
}

/* 改行
-------------------------------------------------- */
.br_pc {
  display: block;
}

.br_sp {
  display: none;
}

.text-center {
  text-align: center;
}

.inline {
  display: inline;
}

.cover-img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cover-img-center > img {
  -o-object-position: center;
     object-position: center;
}
.cover-img-left > img {
  -o-object-position: left;
     object-position: left;
}
.cover-img-right > img {
  -o-object-position: right;
     object-position: right;
}
.cover-img-fit {
  position: relative;
  overflow: hidden;
}
.cover-img-fit > img {
  top: 0;
  left: 0;
  position: absolute;
}

.contain-img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.contain-img-center > img {
  -o-object-position: center;
     object-position: center;
}
.contain-img-left > img {
  -o-object-position: left;
     object-position: left;
}
.contain-img-right > img {
  -o-object-position: right;
     object-position: right;
}
.contain-img-fit {
  position: relative;
  overflow: hidden;
}
.contain-img-fit > img {
  top: 0;
  left: 0;
  position: absolute;
}

.tel {
  letter-spacing: 0.02em;
  font-size: 40px;
  line-height: 1;
  padding-left: 45px;
  position: relative;
  font-weight: 700;
  padding-bottom: 3px;
  pointer-events: none;
}
.tel::before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  width: 0.85em;
  height: 0.85em;
  background-image: url(../img/icon_tel.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.info__instagram {
  width: 50px;
}

.inner {
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}

.sec {
  padding: 100px 0;
}
.sec-under {
  padding: 100px 0 0 0;
}
.sec-title {
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 700;
}
.sec-title__sub {
  height: 30px;
  margin-bottom: 25px;
}
.sec-title__main {
  height: 52px;
}
.sec-content p:not(:last-child) {
  margin-bottom: 30px;
}

.title-shape--white::after {
  content: "";
  width: 100%;
  height: 9px;
  margin: 40px auto 0;
  display: block;
  background: url(../img/title_shape_white.png) no-repeat center center/contain;
}
.title-shape--green::after {
  content: "";
  width: 100%;
  height: 9px;
  margin: 40px auto 0;
  display: block;
  background: url(../img/title_shape_green.png) no-repeat center center/contain;
}
.title-shape--blue::after {
  content: "";
  width: 100%;
  height: 9px;
  margin: 40px auto 0;
  display: block;
  background: url(../img/title_shape_blue.png) no-repeat center center/contain;
}

/*---------- headerここから ----------*/
.header {
  padding-top: 5px;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 6px;
}
.header-logo {
  width: 306px;
}
.header-logo img {
  width: 100%;
}
.header-right {
  display: flex;
  align-items: center;
}
.header__tel {
  margin-right: 18px;
}
.header__description {
  width: 100%;
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 400;
  line-height: 1.2;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.header-nav {
  background: url(../img/pattern_bg01.png) repeat center center/auto;
}
.header-menu {
  display: flex;
  justify-content: center;
}
.header-menu__item {
  border-right: 1px dotted #fff;
}
.header-menu__item:first-child {
  border-left: 1px dotted #fff;
}
.header-menu__link {
  min-width: 145px;
  padding: 17px 45px 17px;
  height: 50px;
  box-sizing: border-box;
}

/*----------　headerここまで ----------*/
/*---------- articleここから ----------*/
.article-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.article-container {
  padding-right: 36px;
}
.article-list__item {
  width: 750px;
}
.article-list__item:not(:last-child) {
  margin-bottom: 20px;
}
.article-list__item a {
  padding: 18px 20px 17px;
  background-color: #fff;
  border-radius: 10px;
}
.article-date {
  color: #fff;
  font-weight: 700;
  padding: 6px 14px;
  line-height: 1;
  background-color: #b1c554;
  border-radius: 3px;
}
.article-title {
  margin-left: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: calc(100% - 145px);
}

/*----------　articleここまで ----------*/
/*---------- footerここから ----------*/
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
  padding: 60px 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-nav__menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.footer-nav__item {
  line-height: 1;
  font-size: 14px;
  display: flex;
  align-items: center;
}
.footer-nav__item:not(:last-child) {
  margin-right: 20px;
}
.footer-nav__item::before {
  content: "";
  width: 6px;
  height: 6px;
  display: block;
  border-top: 2px solid #82a222;
  border-right: 2px solid #82a222;
  transform: rotate(45deg);
}
.footer-nav__item a {
  margin-left: 0.5em;
}
.footer-logo {
  width: 306px;
  margin-bottom: 20px;
}
.footer-logo > img {
  width: 100%;
}
.footer__tel {
  margin-bottom: 26px;
}
.footer__address {
  margin-bottom: 30px;
  font-size: 14px;
  letter-spacing: 0.08em;
  font-weight: 400;
}
.footer__address::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.875) * 0.5em);
  content: "";
}
.footer__address::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.875) * 0.5em);
  content: "";
}
.footer__address br {
  display: none;
}
.footer-right {
  width: 320px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer .copy-right {
  font-size: 13px;
  letter-spacing: 0.08em;
  width: 100%;
  display: block;
  text-align: center;
  background-color: #b1c554;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  padding: 8px 0 8px;
  text-align: center;
}

/*---------- footerここまで ----------*/
.mobile-nav {
  display: none;
}

/*---------- 以下btnクラス ----------*/
.btn {
  display: block;
  line-height: 1;
  text-align: center;
  font-weight: 500;
}
.btn-primary {
  background-color: #74b4d8;
  padding: 1.0625em 1.5em;
  border-radius: 3em;
  color: #fff;
  position: relative;
}
.btn-mail {
  width: 222px;
  background-color: #74b4d8;
  padding: 1.0625em 1.5em;
  border-radius: 10px;
  color: #fff;
  text-align: center;
}
.btn-mail span {
  padding: 0 2.5625em;
  display: inline-block;
  position: relative;
}
.btn-mail span::after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 1.375em;
  height: 1em;
  display: block;
  background: url(../img/icon_mail_white.png) no-repeat center center/contain;
}
.btn-medium {
  max-width: 300px;
  padding: 1.4em;
}
.btn-more {
  width: 222px;
}
.btn-large {
  padding: 1.5em;
  width: 400px;
}
.btn-center {
  margin: 0 auto;
}
.btn-arrow {
  position: relative;
}
.btn-arrow::after {
  position: absolute;
  top: 50%;
  right: 2em;
  content: "";
  width: 11px;
  height: 11px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  box-sizing: border-box;
  transform: translateY(-50%) rotate(45deg);
}

/*---------- btnクラスここまで ----------*/
/*---------- side-listここから ----------*/
.side-list {
  position: fixed;
  z-index: 100;
  bottom: 10%;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 256px;
  overflow: hidden;
  transition: all 0.3s;
}
.side-list__item:not(:last-child) {
  margin-bottom: 23px;
}
.side-list__item:first-child a {
  pointer-events: none;
}

/*---------- side-listここまで ----------*/
/*------------ pagenationここから --------------*/
.pagenation {
  display: flex;
  justify-content: center;
}
.pagenation li {
  width: 3em;
  height: 3em;
  display: block;
  font-size: 1em;
  line-height: 3em;
  text-align: center;
  margin: 0 6px;
  background-color: #fff;
  color: #333;
  transition: all 0.3s;
}
.pagenation li:hover {
  background-color: #b1c554;
  color: #fff;
}
.pagenation .current {
  background-color: #b1c554;
  color: #fff;
  font-weight: 600;
}

/*------------ pagenationここまで --------------*/
/*---------- 以下breadclumb ----------*/
.bread-clumb ul {
  display: flex;
  width: 100%;
  font-size: 13px;
  padding: 20px 0 0;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bread-clumb li {
  display: flex;
  align-items: center;
}
.bread-clumb li:not(:last-child)::after {
  content: "＞";
  margin: 0 0.5em;
}
.bread-clumb li a {
  display: block;
  transition: color 0.3s;
}
.bread-clumb li:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bread-clumb li a:hover {
  color: #b1c554;
}

/*------------ prevnextここから --------------*/
.prev-next__area {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 30px 0;
  border-top: 2px solid #b1c554;
}
.prev-next__link {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3em;
  border: solid 2px #b1c554;
  padding: 0.5em;
  min-width: 90px;
  position: relative;
  box-sizing: border-box;
  transition: all 0.3s;
}
.prev-next__link:hover {
  background-color: #b1c554;
  color: #fff;
}
.prev-next__link:hover.prev::before, .prev-next__link:hover.next::before {
  border-color: #fff;
}
.prev-next__link.prev {
  margin-right: auto;
}
.prev-next__link.prev::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #b1c554;
  border-left: 2px solid #b1c554;
  margin-right: 0.8em;
  position: absolute;
  transform: rotate(-45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 1em;
}
.prev-next__link.next {
  margin-left: auto;
}
.prev-next__link.next::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #b1c554;
  border-right: 2px solid #b1c554;
  margin-left: 0.8em;
  position: absolute;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 1em;
}

/*------------ prevnextここまで --------------*/