@charset "UTF-8";
/* @import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cardo:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@700&display=swap"); */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');

/*============================
	base
============================*/
:root {
  --black: #000;
  --white: #fff;
  --brown: #674600;
  --font-zen: "Zen Old Mincho", serif;
  --font-en: "Cardo", serif;
  --font-ttl: ab-doudoukaisyo, sans-serif;
  --font-tel: "Shippori Mincho", serif;
  --bg-1: url("../img/texture-1.jpg") repeat-y center top / 100% auto;
  --bg-2: url("../img/texture-2.jpg") repeat-y center top / 100% auto;
  --bg-3: url("../img/texture-3.jpg") repeat-y center top / 100% auto;
}

html {
  font-size: calc(10 / 1920 * 100vw);
  /* color: var(--white); */
  overflow-x: hidden;
}

@media (max-width: 767px) {
  html {
    font-size: calc(10 / 767 * 100vw);
  }
}

body {
  background: var(--bg-1);
  font-family: var(--font-zen);
  font-family: "Noto Serif JP", serif;
  font-size: max(12px, 1.6rem);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

.fade {
  opacity: 0;
}

.fadeUp {
  animation: fadeUp 0.6s ease both;
}

.header img,
section img,
.footer img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

a {
  transition: 0.3s ease-in-out;
}

@media (min-width: 768px) {
  a:hover {
    opacity: 0.6;
  }

  a[href^="tel:"] {
    pointer-events: none;
  }
}

@media (max-width: 767px) {
  a[href^="tel:"] {
    text-decoration: underline;
  }
}

.sp {
  display: none;
}

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block;
  }
}

.map {
  width: 100%;
  height: 50rem;
}

.map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/*============================
	header
============================*/
.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: #fff;
  height: 10.7rem;
}
@media (max-width: 767px) {
  .header {
    height: 8rem;
    min-height: 60px;
  }
}

.header__logo {
  width: max(70px, 20.5rem);
  filter: drop-shadow(0 0 1rem rgba(20, 16, 14, 0.23));
  position: absolute;
  top: 2rem;
  left: 4.5rem;
}

@media (max-width: 900px) {
  .header__logo {
    left: 10rem;
  }
}

@media (max-width: 767px) {
  .header__logo {
    width: max(90px, 12rem);
    top: 2.2rem;
    left: 6rem;
  }
}
@media (max-width: 585px) {
  .header__logo {
    width: max(90px, 12rem);
    top: 16px;
    left: 6rem;
  }
}

.header__hamburger-sp {
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
}

@media (max-width: 767px) {
  .header__hamburger-sp {
    background-color: var(--brown);
    width: 8rem;
    height: 8rem;
    min-width: 60px;
    min-height: 60px;
    visibility: visible;
  }

  .header__hamburger-sp::before,
  .header__hamburger-sp::after,
  .header__line-sp {
    content: "";
    background-color: var(--white);
    width: 5rem;
    min-width: 35px;
    height: 2px;
    border-radius: 5px;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    transition: 0.3s;
  }

  .header__hamburger-sp::before {
    top: 30%;
    transform-origin: bottom left;
  }

  .header__hamburger-sp::after {
    top: 70%;
    transform-origin: top left;
  }

  .header__hamburger-sp.js-transform::before,
  .header__hamburger-sp.js-transform::after {
    transform: scale(1.414);
    top: 50%;
  }

  .header__hamburger-sp.js-transform::before {
    transform: rotate(45deg) translateX(-50%);
  }

  .header__hamburger-sp.js-transform::after {
    transform: rotate(-45deg) translateX(-50%);
  }

  .js-transform .header__line-sp {
    transform: scale(0);
  }
}

.header__contents {
  display: flex;
  align-items: center;
  gap: 6rem 6.5rem;
  position: absolute;
  top: 0rem;
  right: 7.5rem;
  height: 10.7rem;
  display: flex;
  align-items: center;
justify-content: flex-end;
}
@media (max-width: 900px) {
  .header__contents {
    gap: 6rem 6.5rem;
    position: absolute;
    right: 0rem;
  }
}
@media (max-width: 767px) {
  .header__contents {
    background: var(--bg-1);
    width: 100%;
    height: 100%;
    min-height: max-content;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 0;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    overflow-y: scroll;
    z-index: 100;
    transition: 0.3s ease-out;
  }

  .header__contents.js-show {
    opacity: 1;
    visibility: visible;
  }
}

.header__nav-list {
  display: flex;
  gap: 5rem 5rem;
}

@media (max-width: 767px) {
  .header__nav-list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.header__nav-list a {
  display: block;
  font-size: max(15px, 2.14rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #674600;
}

.header__sns li {
  display: block;
  width: max(24px, 3.4rem);
}




.pagetop {
  text-transform: uppercase;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  bottom: 2rem;
  right: 1rem;
  z-index: 100;
  font-size: max(12px, 2.3rem);
}

.pagetop.js-top {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) {
  .pagetop.js-top:hover {
    opacity: 0.6;
  }
}

.pagetop::before {
  content: "";
  display: block;
  background-color: #000;
  width: 1px;
  height: max(60px, 11.5rem);
}






/*============================
	footer
============================*/
.footer {
  background-color: #fff;
  padding: 8rem 0 2rem;
  position: relative;
}

@media (max-width: 767px) {
  .footer {
    padding: 10rem 0 3rem;
  }
}

.footer__inner {
}

@media (max-width: 767px) {
  .footer__inner {
    width: 100%;
    /* flex-direction: column;
    align-items: center; */
    /* row-gap: 6rem; */
  }
}

.footer__logo-wrapper {
  display: flex;
  align-items: center;
  gap: 6rem 4.5rem;
}

@media (max-width: 767px) {
  .footer__logo-wrapper {
    flex-direction: column;
  }
}

.footer__logo {
  display: block;
  width: max(160px, 29.1rem);
  margin: 12rem auto 6.5rem;
}

.footer__link {
}

@media (max-width: 767px) {
  .footer__link {
  }
}

.footer__nav-list {
  display: flex;
  justify-content: center;
  gap: 4rem 5rem;
}

@media (max-width: 767px) {
  .footer__nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: max(20px, 3rem);
  }
}

.footer__nav-list a {
  display: block;
  font-size: max(14px, 2.13rem);
  letter-spacing: 0.1em;
  color: #674600;
}

.footer__sns li {
  display: block;
  width: max(24px, 3.4rem);
  margin-right: 2.5rem;
}

@media (max-width: 767px) {
  .footer__sns li {
    margin: 0;
  }
}

.copy {
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 5.5rem;
  font-size: max(12px, 1.4rem);
}



/*  ----------------------------------------------------------

news

----------------------------------------------------------  */
.top-news .CMS-NEWS-INDEX {
    padding-bottom: 3rem;
    margin-top: 6rem;
    margin-bottom: 6rem;
    /* padding: 0 5.5%; */
}
.CMS-NEWS-INDEX {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 8rem;
    position: relative;
    margin-bottom: 8rem;
    position: relative;
}
.top-news .CMS-NEWS-INDEX::after {
    content: "";
    width: 31.5%;
    margin-bottom: 1rem;
}
.CMS-NEWS-INDEX::after {
    content: "";
    width: 31.5%;
    margin-bottom: 4rem;
}


.CMS-NEWS-INDEX > * {
    width: 31.5%;
    margin-bottom: 5rem;
}
.top-news .CMS-NEWS-INDEX > * {
    margin-bottom: 0;
}
.CMS-NEWS-INDEX > *:nth-of-type(3n) {
    margin-right: 0;    
}
.CMS-NEWS-ITEM a {
    transition: all .3s;
    display: block;
}
.CMS-NEWS-ITEM a:hover {
    opacity: 0.6;
}
.CMS-NEWS-TIME {
    font-size: max(12px, 1.8rem);
    margin: 3.5rem 0 1.5rem 0;
    line-height: 1;
	color: #000;
    border-bottom: 0.15rem solid #666;
    padding-bottom: 2rem;
}
.CMS-NEWS-LINK {
    font-size: max(14px, 2.1rem);
    line-height: 1.6;
	color: #000;
}
.CMS-NEWS-INDEX > * img {
    height: 30rem;
    width: 100%;
    object-fit: cover;  
}

/* read more */
.CMS-NEWS-MORE-READ {
    background: #674600;
    border:none;
    border-radius: 0.2rem;
    text-align: center;
    padding: 2.8rem 0;
    font-size: max(13px, 1.8rem);
    font-weight: bold;
	/* font-weight: bold; */
    color: #fff;
    text-align: center;
    /* margin: 4rem auto 0 auto; */
    width: 32rem;
    display: block;
    transition: all .3s;
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
}
.CMS-NEWS-MORE-READ:hover {
    cursor: pointer;
    opacity: 0.6;
}
.top-news .CMS-NEWS-MORE-READ {
    display: none;
}

/* detail */
.CMS-NEWS-TITLE {
    border-bottom: solid 1px rgba(0,0,0,0.2);
    font-size: 2.4rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    padding: 1rem 0 1.5rem 0;
    position: relative;
    font-weight: bold;
}
.CMS-NEWS-TITLE:after {
    border-bottom: solid 3px var(--red);
    bottom: -3px;
    content: " ";
    display: block;
    position: absolute;
    width: 25%;
}
.CMS-NEWS-CONTENT img {
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto 2rem auto;
}

@media screen and (max-width: 767px) {
    .top-news .CMS-NEWS-INDEX {
        margin-top: 4.5rem;
        margin-bottom: 5rem;
    }    
    .CMS-NEWS-INDEX {
        display: block;
        margin-bottom: -4rem;
        padding-bottom: 12rem;
    }
    .CMS-NEWS-INDEX > * {
        width: 100%;
        margin-right: 0;
        margin-bottom: 4rem;        
    }
    .top-news .CMS-NEWS-INDEX > * {
        margin-bottom: 4rem;
    }    
    .CMS-NEWS-CONTENT img {
        width: 100%;
    }
    .CMS-NEWS-INDEX > * img {
        height: auto;
    }
}




.menu__pasteimg {
	display: flex;
	flex-direction: column;
	gap: 4rem;
}
.menu__pasteimg.type2 {
  max-width: 130rem;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  .menu__pasteimg.type2 {
    max-width: 160rem;
  }
}
