@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
/* -------------------------------------------

base

------------------------------------------- */
body {
  background: #fff;
  color: #333;
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.5rem;
  }
}
/* link */
a {
  color: #000;
}

/* -------------------------------------------

header

------------------------------------------- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  height: 7rem;
  padding: 0 4rem;
  z-index: 99;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  transition: all 0.3s;
}

@media screen and (min-width: 768px) {
  .header.hide {
    transform: translateY(-7rem);
    -moz-transform: translateY(-7rem);
    -webkit-transform: translateY(-7rem);
  }
}
@media screen and (max-width: 768px) {
  header {
    justify-content: center;
    height: 6rem;
    padding: 0;
    position: relative;
    left: auto;
    top: auto;
  }
}
header h1 {
  width: 16rem;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  header h1 {
    width: 14rem;
  }
}
/* -------------------------------------------

nav

------------------------------------------- */
.gnav-menu {
  display: flex;
  align-items: center;
  height: 7rem;
  flex-wrap: wrap;
  gap: 3rem;
}

.gnav-menu > li {
  font-weight: bold;
  white-space: nowrap;
}

.gnav-menu > li > a {
  color: #5a5a5a;
  display: flex;
  align-items: center;
  height: 7rem;
  position: relative;
}

.gnav-menu > li > a::after {
  content: "";
  background: #6c5a47;
  width: 100%;
  height: 0.15rem;
  position: absolute;
  left: 0;
  bottom: 1.5rem;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: ease-in-out 0.3s;
}

.gnav-menu > li > a:hover::after {
  transform: scale(1, 1);
}

.gnav-menu > li > a:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}

.dropmenu {
  position: relative;
}
.dropmenu > a {
  display: flex;
  align-items: center;
}
.dropmenu > a img {
  width: 1.3rem;
  margin-top: 0.15rem;
  margin-left: 0.5rem;
}
.dropmenu:hover ul {
  opacity: 1;
  pointer-events: all;
}

.dropmenu ul {
  position: absolute;
  left: 0;
  top: 7rem;
  background: rgba(95, 81, 59, 0.9);
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  padding: 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}
.dropmenu ul a {
  color: #fff;
  font-weight: normal;
  display: flex;
  align-items: center;
}
.dropmenu ul a::before {
  content: "";
  width: 0.3rem;
  height: 0.3rem;
  background: #fff;
  border-radius: 50%;
  margin-top: 0.2rem;
  margin-right: 0.6rem;
}

@media screen and (max-width: 768px) {
  .gnav-menu {
    gap: 0;
  }
  .gnav-menu > li {
    text-align: center;
    width: 50%;
  }
  .gnav-menu > li a {
    display: block;
    padding: 0.6rem 0;
  }
}
/* -------------------------------------------

footer

------------------------------------------- */
footer {
  padding: 4rem 10rem 2rem 10rem;
}

footer .wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}

footer .logo {
  width: 20rem;
  margin-bottom: 2rem;
}

footer .time {
  width: 40rem;
}

footer nav {
  display: flex;
  gap: 3rem;
}
footer nav ul {
  display: flex;
  flex-direction: column;
}
footer nav > ul > li:not(:last-child) {
  margin-bottom: 1rem;
}
footer nav > ul > li > a {
  font-weight: bold;
  color: #5a5a5a;
  display: flex;
  align-items: center;
}
footer nav > ul > li > a img {
  width: 1rem;
  margin-right: 0.5rem;
  margin-top: 0.3rem;
}
footer nav > ul ul {
  margin-top: 1rem;
  gap: 0.4rem;
}
footer nav > ul ul a {
  color: #5a5a5a;
  display: flex;
  align-items: center;
  font-size: 1.2rem;
}
footer nav > ul ul a::before {
  content: "・";
}

footer small {
  display: block;
  font-size: 1rem;
  text-align: right;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 4rem 0 8rem 0;
  }
  footer .wrap {
    flex-direction: column;
    align-items: center;
    margin-bottom: 5rem;
  }
  footer .wrap > * {
    width: 100%;
  }
  footer .wrap > div {
    padding: 0 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  footer .logo {
    width: 20rem;
    margin-bottom: 2rem;
  }
  footer .table-wrap {
    width: 100%;
  }
  footer .time {
    width: 100%;
  }
  footer nav {
    flex-wrap: wrap;
    padding: 0 3rem;
    display: flex;
    gap: 0;
    row-gap: 4rem;
    margin-top: 3rem;
  }
  footer nav > ul {
    width: 50%;
  }
  footer small {
    display: block;
    font-size: 1rem;
    text-align: center;
  }
}
/* -------------------------------------------

class

------------------------------------------- */
/* heading */
.heading-1 {
  line-height: 1;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 500;
  font-size: 3.2rem;
}
.heading-1::after {
  content: "";
  width: 4rem;
  height: 0.12rem;
  background: #333;
  margin-top: 1.5rem;
}
.heading-1.wh::after {
  background: #fff;
}

.heading-2 {
  background: #6c5a47;
  color: #fff;
  font-weight: 500;
  font-size: 1.6rem;
  padding: 0.8rem 1.7rem 0.95rem 2.2rem;
  margin-bottom: 2rem;
  position: relative;
}
.heading-2::before {
  content: "";
  width: 0.5rem;
  height: 1.6rem;
  background: #fff;
  position: absolute;
  left: 0;
  top: calc(50% - 0.8rem);
  opacity: 0.3;
}

@media screen and (max-width: 768px) {
  .heading-2 {
    font-size: 1.8rem;
  }
}
/* more */
.more {
  background-color: #6c5a47;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: 22rem;
  height: 4.6rem;
  padding-bottom: 0.15rem;
  margin: 0 auto;
  position: relative;
}
.more::before {
  content: "";
  width: 22.8rem;
  height: 5.4rem;
  position: absolute;
  left: -0.4rem;
  top: -0.4rem;
  box-sizing: border-box;
  border: solid 0.15rem #6c5a47;
}

/* detail */
dl.detail {
  display: flex;
  flex-wrap: wrap;
}

dl.detail dt {
  padding: 1.5rem 0;
  width: 25%;
  white-space: nowrap;
  font-weight: bold;
}

dl.detail dd {
  padding: 1.5rem 0;
  width: 75%;
}

@media screen and (max-width: 768px) {
  dl.detail {
    display: block;
  }
  dl.detail dt {
    display: flex;
    align-items: center;
    padding: 1.5rem 0 0.3rem 0;
    width: 100%;
  }
  dl.detail dt::before {
    content: "◆";
    color: #6c5a47;
    font-size: 1.2rem;
    margin-right: 0.5rem;
  }
  dl.detail dd {
    padding: 0 0 1.5rem 0;
    width: 100%;
  }
}
dl.bk dt,
dl.bk dd {
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.3);
}

dl.wh dt,
dl.wh dd {
  border-bottom: 0.1rem solid rgb(255, 255, 255);
}

dl.wh a {
  color: #fff;
}

@media screen and (max-width: 768px) {
  dl.bk dt {
    border-bottom: none;
  }
  dl.wh dt {
    border-bottom: none;
  }
}
/* ttl */
.ttl,
.CMS-NEWS-TITLE,
.CMS-ARTICLE-TITLE {
  border-bottom: solid 1px rgba(0, 0, 0, 0.3);
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 3rem;
  padding: 1rem 0 1.5rem 0;
  position: relative;
  color: #6c5a47;
}

.ttl:after,
.CMS-NEWS-TITLE:after,
.CMS-ARTICLE-TITLE::after {
  content: "";
  background: #6c5a47;
  display: block;
  height: 3px;
  bottom: -3px;
  position: absolute;
  width: 25%;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .ttl:after,
  .CMS-NEWS-TITLE:after,
  .CMS-ARTICLE-TITLE::after {
    width: 40%;
  }
}
/* base-width */
.base-width {
  width: 88rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .base-width {
    width: auto;
  }
}
/* page-top */
#page-top {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 999;
}
#page-top a {
  background: #6c5a47;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  padding-left: 0.1rem;
}

@media screen and (max-width: 768px) {
  #page-top {
    bottom: 7rem;
  }
}
/* txt-vertical */
.txt-vertical {
  writing-mode: vertical-rl;
}

@media screen and (max-width: 768px) {
  .txt-vertical.not {
    writing-mode: horizontal-tb;
    white-space: normal;
  }
}
/* list */
ul.list-group li {
  margin-left: 2rem;
  list-style: disc;
}
ul.list-group li:not(:last-child) {
  margin-bottom: 0.3rem;
}

/* preapre */
.prepare {
  color: #6c5a47;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  padding: 8rem 0;
}

/* map */
.gmap iframe {
  width: 100%;
  height: 36rem;
}

.gmap.grey iframe {
  filter: grayscale(100%);
}

/* display */
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
/* margin */
.mb-10 {
  margin-bottom: 1rem !important;
}

.mb-15 {
  margin-bottom: 1.5rem !important;
}

.mb-20 {
  margin-bottom: 2rem !important;
}

.mb-25 {
  margin-bottom: 2.5rem !important;
}

.mb-30 {
  margin-bottom: 3rem !important;
}

.mb-35 {
  margin-bottom: 3.5rem !important;
}

.mb-40 {
  margin-bottom: 4rem !important;
}

.mb-45 {
  margin-bottom: 4.5rem !important;
}

.mb-50 {
  margin-bottom: 5rem !important;
}

.mb-55 {
  margin-bottom: 5.5rem !important;
}

.mb-60 {
  margin-bottom: 6rem !important;
}

.mb-65 {
  margin-bottom: 6.5rem !important;
}

.mb-70 {
  margin-bottom: 7rem !important;
}

.mb-75 {
  margin-bottom: 7.5rem !important;
}

.mb-80 {
  margin-bottom: 8rem !important;
}

.mb-85 {
  margin-bottom: 8.5rem !important;
}

.mb-90 {
  margin-bottom: 9rem !important;
}

.mb-95 {
  margin-bottom: 9.5rem !important;
}

.mb-100 {
  margin-bottom: 10rem !important;
}

/* -------------------------------------------

hamburger

------------------------------------------- */
.gnav-sp {
  background: #fff;
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
  transition: all 0.5s;
  z-index: -1;
  -webkit-overflow-scrolling: touch;
}

.gnav-sp nav {
  display: flex;
  justify-content: center;
}

.gnav-sp-menu {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 5rem 0;
}

.gnav-sp-menu li {
  text-align: center;
}

.gnav-sp-menu > li:last-child {
  padding-bottom: 5rem;
}

.gnav-sp-menu li span {
  display: block;
}

.gnav-sp-menu > li > a {
  display: block;
  white-space: nowrap;
  color: #5a5a5a;
  font-size: 1.8rem;
  font-weight: bold;
}

.dropmenu-sp ul {
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
  font-size: 1.3rem;
  gap: 0.3rem;
}
.dropmenu-sp ul a {
  color: #5a5a5a;
}

/* toggle */
.toggle-btn {
  background: #6c5a47;
  cursor: pointer;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 6rem;
  height: 6rem;
  transition: all 0.5s;
  z-index: 100000;
}

.toggle-btn span {
  background: #fff;
  display: block;
  position: absolute;
  left: 2rem;
  width: 2rem;
  height: 0.2rem;
  transition: all 0.4s;
}

.toggle-btn span:nth-child(1) {
  top: 1.9rem;
}

.toggle-btn span:nth-child(2) {
  top: 2.7rem;
}

.toggle-btn span:nth-child(3) {
  top: 3.5rem;
}

/* open */
.open .gnav-sp {
  top: 0;
  opacity: 1;
  z-index: 99999;
}

.open .toggle-btn span:nth-child(1) {
  transform: translateY(0.8rem) rotate(-45deg);
}

.open .toggle-btn span:nth-child(2) {
  opacity: 0;
}

.open .toggle-btn span:nth-child(3) {
  transform: translateY(-0.8rem) rotate(45deg);
}

/* -------------------------------------------

fade

------------------------------------------- */
.fade {
  opacity: 0;
  transform: translateY(2rem);
}

.fade.is-animation {
  animation: fade 0.5s ease;
  animation-fill-mode: both;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-LtoR {
  opacity: 0;
  transform: translateX(-2rem);
}

.fade-LtoR.is-animation {
  animation: fade-LtoR 0.5s ease;
  animation-fill-mode: both;
}

@keyframes fade-LtoR {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-RtoL {
  opacity: 0;
  transform: translateX(2rem);
}

.fade-RtoL.is-animation {
  animation: fade-RtoL 0.5s ease;
  animation-fill-mode: both;
}

@keyframes fade-RtoL {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.delay-1 {
  animation-delay: 0.1s !important;
}

.delay-2 {
  animation-delay: 0.2s !important;
}

.delay-3 {
  animation-delay: 0.3s !important;
}

.delay-4 {
  animation-delay: 0.4s !important;
}

.delay-5 {
  animation-delay: 0.5s !important;
}

/* -------------------------------------------

news / blog　common

------------------------------------------- */
/* MORE-READ */
.CMS-NEWS-MORE-READ,
.CMS-ARTICLE-MORE-READ {
  background: #6c5a47;
  border: none;
  color: #fff !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-family: "Noto Serif JP", serif;
  margin: 0 auto;
  width: 24rem;
  height: 4.8rem;
  transition: all 0.3s;
  padding-bottom: 0.15rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.CMS-NEWS-MORE-READ:hover,
.CMS-ARTICLE-MORE-READ:hover {
  cursor: pointer;
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  .CMS-ARTICLE-MORE-READ {
    width: 100%;
  }
}
/* DETAIL */
.CMS-NEWS-CONTENT img,
.CMS-ARTICLE-CONTENT img {
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto 3rem auto;
}

@media screen and (max-width: 768px) {
  .CMS-NEWS-CONTENT img,
  .CMS-ARTICLE-CONTENT img {
    width: 100%;
  }
}
/* -------------------------------------------

news / blog　thumbnail

------------------------------------------- */
/* INDEX */
.CMS-NEWS-INDEX,
.CMS-ARTICLE-INDEX,
.CMS-NEWS-CATEGORY-INDEX,
.CMS-ARTICLE-CATEGORY-INDEX {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  padding-bottom: 10rem;
  position: relative;
}

.CMS-NEWS-INDEX > *,
.CMS-ARTICLE-INDEX > *,
.CMS-NEWS-CATEGORY-INDEX > *,
.CMS-ARTICLE-CATEGORY-INDEX > * {
  width: calc((100% - 8rem) / 3);
}

.CMS-NEWS-ITEM a,
.CMS-ARTICLE-ITEM a {
  display: block;
}

@media screen and (max-width: 768px) {
  .CMS-NEWS-INDEX,
  .CMS-ARTICLE-INDEX,
  .CMS-NEWS-CATEGORY-INDEX,
  .CMS-ARTICLE-CATEGORY-INDEX {
    flex-direction: column;
  }
  .CMS-NEWS-INDEX > *,
  .CMS-ARTICLE-INDEX > *,
  .CMS-NEWS-CATEGORY-INDEX > *,
  .CMS-ARTICLE-CATEGORY-INDEX > * {
    width: 100%;
  }
}
/* TIME */
.CMS-NEWS-TIME,
.CMS-ARTICLE-TIME {
  font-size: 1.2rem;
  line-height: 1;
  margin: 1.5rem 0 0.5rem 0;
  color: #5a5a5a;
}

/* THUMBNAIL */
.CMS-NEWS-THUMBNAIL,
.CMS-ARTICLE-THUMBNAIL {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* -------------------------------------------

fixed

------------------------------------------- */
.fixed-btn {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  z-index: 999;
  width: 5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 9999;
}

@media screen and (max-width: 768px) {
  .fixed-btn {
    top: auto;
    right: auto;
    bottom: 0;
    transform: none;
    width: 100%;
    flex-direction: row;
    gap: 0;
  }
  .fixed-btn li {
    width: 33.3333333333%;
  }
  .fixed-btn li:nth-child(1) a {
    background: #569E47;
  }
  .fixed-btn li:nth-child(2) a {
    background: #F06CC5;
  }
  .fixed-btn li:nth-child(4) a {
    background: #563747;
  }
  .fixed-btn a {
    width: 100%;
    padding: 0;
    height: 6rem;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
  }
  .fixed-btn a span {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .fixed-btn li img {
    width: 2.5rem;
    margin-right: 1rem;
  }
}/*# sourceMappingURL=common.css.map */