@charset "UTF-8";@charset "UTF-8";
html {
  min-width: 330px;
  scroll-behavior: smooth;
}

body {
  font-weight: 400;
  font-style: normal;
  color: #645353;
  background: rgb(253, 244, 238);
  font-family: "Kiwi Maru", serif;
  font-size: 16px;
  line-height: 1.6;
}

.inner {
  padding-inline: 20px;
  margin: 0 auto;
  max-width: 1480px;
}
@media screen and (min-width: 900px) {
  .inner {
    padding-inline: 40px;
  }
}

section {
  padding-top: 80px;
  scroll-margin-top: 40px;
}
@media screen and (min-width: 900px) {
  section {
    scroll-margin-top: 80px;
    padding-top: 120px;
  }
}

.heading {
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: relative;
  display: inline-block;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .heading {
    font-size: 36px;
  }
}
.heading::after {
  position: absolute;
  content: "";
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 5px;
  background: #6bc277;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s, transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  transform: translateY(0);
}

.breadcrumbs {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 4px;
}
@media screen and (min-width: 900px) {
  .breadcrumbs {
    margin-top: 30px;
  }
}
.breadcrumbs__link {
  font-size: 12px;
  transition: opacity 0.3s;
}
@media screen and (min-width: 900px) {
  .breadcrumbs__link {
    font-size: 14px;
  }
}
.breadcrumbs__link:hover {
  opacity: 0.7;
}
.breadcrumbs__text {
  font-size: 12px;
}
@media screen and (min-width: 900px) {
  .breadcrumbs__text {
    font-size: 14px;
  }
}

.btn {
  padding: 10px 40px;
  background: #fff;
  border-radius: 20px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  transition: color 0.3s linear, background-color 0.3s linear;
}
@media screen and (min-width: 900px) {
  .btn {
    padding: 20px 60px;
  }
}
.btn:hover {
  color: #fff;
  background: #645353;
}

/*****************************
HEADER
*/
.header {
  z-index: 99;
  position: fixed;
  width: 100%;
  top: 0;
  background: #F4F5F7;
}
@media screen and (min-width: 900px) {
  .header {
    height: 140px;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  margin-block: 0;
}
@media screen and (min-width: 900px) {
  .header__inner {
    height: 100%;
    display: block;
  }
}
.header .header__inner.inner {
  margin-block: 0;
}
@media screen and (min-width: 900px) {
  .header .header__inner.inner {
    margin-block: 0;
  }
}
.header__top {
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (min-width: 900px) {
  .header__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
  }
}
.header__logo a img {
  width: 70px;
}
@media screen and (min-width: 900px) {
  .header__logo a img {
    width: 160px;
  }
}
.header__num-content {
  display: flex;
  align-items: center;
}
.header__num-img {
  margin-right: 5px;
}
.header__num-img img {
  width: 10px;
  vertical-align: middle;
}
@media screen and (min-width: 900px) {
  .header__num-img img {
    width: 25px;
  }
}
.header__num {
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  font-family: "Noto Sans JP", sans-serif;
}
.header__num:hover {
  transition: 0.3s;
  opacity: 0.7;
}
@media screen and (min-width: 900px) {
  .header__num {
    font-weight: 700;
    font-size: 24px;
  }
}
.header__nav {
  display: none;
  margin-top: 4px;
  height: 34px;
}
@media screen and (min-width: 900px) {
  .header__nav {
    display: block;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__nav-item:not(:first-child) {
  margin-left: 64px;
}
.header__nav-link {
  font-size: 20px;
  font-weight: bold;
  padding: 10px 10px 2px 10px;
  position: relative;
}
.header__nav-link::after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background: #6bc277;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.header__nav-link:hover::after {
  width: 100%;
}

/*****************************
DRAWER-ICON
*/
.drawer-icon {
  position: relative;
  width: 30px;
  height: 18px;
  margin-left: auto;
  cursor: pointer;
  z-index: 50;
}
@media screen and (min-width: 900px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon__bar {
  position: absolute;
  width: 30px;
  height: 2px;
  background: #BF8158;
  right: 0;
  left: 0;
  transition: all 0.5s ease;
}
.drawer-icon__bar:nth-last-of-type(1) {
  top: 0;
}
.drawer-icon__bar:nth-last-of-type(2) {
  top: 8px;
}
.drawer-icon__bar:nth-last-of-type(3) {
  top: 16px;
}
.drawer-icon.is-checked .drawer-icon__bar {
  transition: all 0.5s ease;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-last-of-type(1) {
  top: 10px;
  transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-last-of-type(2) {
  opacity: 0;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-last-of-type(3) {
  top: 10px;
  transform: rotate(-45deg);
}

/*****************************
DRAWER-CONTENT
*/
.drawer-content {
  z-index: 100;
  width: 100%;
  height: 100%;
  padding-top: 100px;
  position: fixed;
  top: 71px;
  right: 0;
  background: #fff;
  transform: translateX(101%);
  transition: transform 0.3s linear;
}
@media screen and (min-width: 900px) {
  .drawer-content {
    display: none;
  }
}
.drawer-content.is-checked {
  transform: translateX(0);
}
.drawer-content__nav {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: center;
}
.drawer-content__nav-item a {
  padding: 10px;
  font-size: 20px;
  font-weight: 700;
  position: relative;
}
.drawer-content__nav-item a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background: skyblue;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.drawer-content__nav-item a:hover::after {
  width: 100%;
}

/*****************************
FOOTER
*/
.footer {
  background: #fff;
}
.footer__inner {
  padding-inline: 20px;
  padding-block: 20px;
  text-align: center;
}
html {
  min-width: 330px;
  scroll-behavior: smooth;
}

body {
  font-weight: 400;
  font-style: normal;
  color: #645353;
  background: rgb(253, 244, 238);
  font-family: "Kiwi Maru", serif;
  font-size: 16px;
  line-height: 1.6;
}

.inner {
  padding-inline: 20px;
  margin: 0 auto;
  max-width: 1480px;
}
@media screen and (min-width: 900px) {
  .inner {
    padding-inline: 40px;
  }
}

section {
  padding-top: 80px;
  scroll-margin-top: 40px;
}
@media screen and (min-width: 900px) {
  section {
    scroll-margin-top: 80px;
    padding-top: 120px;
  }
}

.heading {
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: relative;
  display: inline-block;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .heading {
    font-size: 36px;
  }
}
.heading::after {
  position: absolute;
  content: "";
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 5px;
  background: #6bc277;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s, transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  transform: translateY(0);
}

.breadcrumbs {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 4px;
}
@media screen and (min-width: 900px) {
  .breadcrumbs {
    margin-top: 30px;
  }
}
.breadcrumbs__link {
  font-size: 12px;
  transition: opacity 0.3s;
}
@media screen and (min-width: 900px) {
  .breadcrumbs__link {
    font-size: 14px;
  }
}
.breadcrumbs__link:hover {
  opacity: 0.7;
}
.breadcrumbs__text {
  font-size: 12px;
}
@media screen and (min-width: 900px) {
  .breadcrumbs__text {
    font-size: 14px;
  }
}

.btn {
  padding: 10px 40px;
  background: #fff;
  border-radius: 20px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  transition: color 0.3s linear, background-color 0.3s linear;
}
@media screen and (min-width: 900px) {
  .btn {
    padding: 20px 60px;
  }
}
.btn:hover {
  color: #fff;
  background: #645353;
}

/*****************************
HEADER
*/
.header {
  z-index: 99;
  position: fixed;
  width: 100%;
  top: 0;
  background: #F4F5F7;
}
@media screen and (min-width: 900px) {
  .header {
    height: 140px;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  margin-block: 0;
}
@media screen and (min-width: 900px) {
  .header__inner {
    height: 100%;
    display: block;
  }
}
.header .header__inner.inner {
  margin-block: 0;
}
@media screen and (min-width: 900px) {
  .header .header__inner.inner {
    margin-block: 0;
  }
}
.header__top {
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (min-width: 900px) {
  .header__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
  }
}
.header__logo a img {
  width: 70px;
}
@media screen and (min-width: 900px) {
  .header__logo a img {
    width: 160px;
  }
}
.header__num-content {
  display: flex;
  align-items: center;
}
.header__num-img {
  margin-right: 5px;
}
.header__num-img img {
  width: 10px;
  vertical-align: middle;
}
@media screen and (min-width: 900px) {
  .header__num-img img {
    width: 25px;
  }
}
.header__num {
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  font-family: "Noto Sans JP", sans-serif;
}
.header__num:hover {
  transition: 0.3s;
  opacity: 0.7;
}
@media screen and (min-width: 900px) {
  .header__num {
    font-weight: 700;
    font-size: 24px;
  }
}
.header__nav {
  display: none;
  margin-top: 4px;
  height: 34px;
}
@media screen and (min-width: 900px) {
  .header__nav {
    display: block;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__nav-item:not(:first-child) {
  margin-left: 64px;
}
.header__nav-link {
  font-size: 20px;
  font-weight: bold;
  padding: 10px 10px 2px 10px;
  position: relative;
}
.header__nav-link::after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background: #6bc277;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.header__nav-link:hover::after {
  width: 100%;
}

/*****************************
DRAWER-ICON
*/
.drawer-icon {
  position: relative;
  width: 30px;
  height: 18px;
  margin-left: auto;
  cursor: pointer;
  z-index: 50;
}
@media screen and (min-width: 900px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon__bar {
  position: absolute;
  width: 30px;
  height: 2px;
  background: #BF8158;
  right: 0;
  left: 0;
  transition: all 0.5s ease;
}
.drawer-icon__bar:nth-last-of-type(1) {
  top: 0;
}
.drawer-icon__bar:nth-last-of-type(2) {
  top: 8px;
}
.drawer-icon__bar:nth-last-of-type(3) {
  top: 16px;
}
.drawer-icon.is-checked .drawer-icon__bar {
  transition: all 0.5s ease;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-last-of-type(1) {
  top: 10px;
  transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-last-of-type(2) {
  opacity: 0;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-last-of-type(3) {
  top: 10px;
  transform: rotate(-45deg);
}

/*****************************
DRAWER-CONTENT
*/
.drawer-content {
  z-index: 100;
  width: 100%;
  height: 100%;
  padding-top: 100px;
  position: fixed;
  top: 71px;
  right: 0;
  background: #fff;
  transform: translateX(101%);
  transition: transform 0.3s linear;
}
@media screen and (min-width: 900px) {
  .drawer-content {
    display: none;
  }
}
.drawer-content.is-checked {
  transform: translateX(0);
}
.drawer-content__nav {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: center;
}
.drawer-content__nav-item a {
  padding: 10px;
  font-size: 20px;
  font-weight: 700;
  position: relative;
}
.drawer-content__nav-item a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background: skyblue;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.drawer-content__nav-item a:hover::after {
  width: 100%;
}

/*****************************
FOOTER
*/
.footer {
  background: #fff;
}
.footer__inner {
  padding-inline: 20px;
  padding-block: 20px;
  text-align: center;
}
/*****************************
newsページ用
*/
.news-top {
  margin-top: 88px;
  padding-top: 20px;
  padding-bottom: 60px;
}
@media screen and (min-width: 900px) {
  .news-top {
    margin-top: 111px;
    padding-bottom: 100px;
  }
}
.news-top .inner {
  margin-block: 0;
}
.news-top__inner {
  width: 700px;
  max-width: 100%;
  text-align: center;
  margin-top: 0;
  padding-top: 0;
}
@media screen and (min-width: 900px) {
  .news-top__inner {
    width: 1200px;
  }
}
.news-top .heading {
  margin-top: 30px;
}
.news-top__content {
  text-align: left;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 900px) {
  .news-top__content {
    gap: 15px;
    flex-direction: row;
    margin-top: 100px;
  }
}
@media screen and (min-width: 900px) {
  .news-top__content-main {
    width: 70%;
  }
}
.news-top__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.news-top__list-item {
  padding-block: 10px;
  border-bottom: 1px solid #C6C6C6;
  display: flex;
  flex-direction: column;
}
.news-top time {
  font-size: 12px;
  color: rgb(16, 188, 16);
}
@media screen and (min-width: 900px) {
  .news-top time {
    font-size: 14px;
  }
}
.news-top__item-title {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 900px) {
  .news-top__item-title {
    font-size: 26px;
  }
}
.news-top .news-top__list-item:hover > .news-top__item-title,
.news-top .news-top__list-item:hover > time {
  transition: opacity 0.3s ease;
  opacity: 0.7;
}
.news-top__recent-posts {
  background: #ecdfdf;
  padding: 20px 30px;
  border-radius: 20px;
}
@media screen and (min-width: 900px) {
  .news-top__recent-posts {
    width: 20%;
  }
}
@media screen and (min-width: 900px) {
  .news-top__recent-posts {
    margin-left: auto;
  }
}
.news-top__recent-posts-ttl {
  font-size: 16px;
  font-weight: 600;
  border-bottom: 3px solid #645353;
}
.news-top .recent-posts-list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 900px) {
  .news-top .recent-posts-list {
    margin-top: 20px;
  }
}
.news-top .recent-posts-list__item {
  padding-block: 5px;
  display: flex;
  flex-direction: column;
}
.news-top .recent-posts-list__title {
  font-size: 12px;
}
@media screen and (min-width: 900px) {
  .news-top .recent-posts-list__title {
    font-size: 14px;
  }
}
.news-top .recent-posts-list time {
  font-size: 10px;
  color: rgb(16, 188, 16);
}
.news-top .recent-posts-list__item:hover > .recent-posts-list__title,
.news-top .recent-posts-list__item:hover > time {
  transition: opacity 0.3s ease;
  opacity: 0.7;
}

.news-top__content {
  margin-top: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.news-top__list-item:hover > .news-top__item-title,
.news-top__list-item:hover > time {
  opacity: 1 !important;
  transition: none !important;
}

.news-text-box {
  margin-top: 40px;
}
@media screen and (min-width: 900px) {
  .news-text-box {
    width: 80%;
  }
}

.news-text {
  font-size: 14px;
}

.news-top__recent-posts {
  margin-top: 60px;
}
@media screen and (min-width: 900px) {
  .news-top__recent-posts {
    margin-top: 0;
  }
}
/*# sourceMappingURL=news-01.css.map */