@charset "UTF-8";
/*
 * WordPressテーマ用のカスタムSCSSスタイル
 */
* {
  box-sizing: border-box;
  font-size: 16px;
}

body {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "MS PMincho", serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  background-color: white;
}

a {
  text-decoration: none;
  color: inherit;
  font-size: 16px;
}

p, table {
  font-size: 16px;
}

h1.site-title a {
  color: #333;
  text-decoration: none;
}

p {
  line-height: 165%;
  letter-spacing: 2px;
}

span {
  font-size: 16px;
}

li {
  font-size: 16px;
}

time {
  font-size: 16px;
}

.w500 {
  max-width: 500px;
  width: 90%;
  margin: 0 auto 80px auto;
}

.w900 {
  max-width: 900px;
  width: 90%;
  margin: 0 auto 80px auto;
}

.w90 {
  width: 90%;
  margin: 0 auto;
}

h3 {
  margin: 80px auto 30px auto;
  text-align: center;
  font-weight: normal;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  h3 {
    margin: 40px auto 20px auto;
    font-size: 20px;
  }
}

.post, .page {
  margin: 0 0 0 0;
}

main {
  margin-bottom: 80px;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #033a00;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader img {
  opacity: 0;
  width: 60%;
}

.key-visual {
  overflow: hidden !important;
  position: relative;
  height: 100vh;
}
.key-visual .your-slider-container {
  height: 100%;
}
.key-visual .your-slider-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.key-visual .main-logo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  transform: none;
  top: auto;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0;
}
.key-visual .main-logo-overlay img {
  width: 100vw;
  max-width: 1280px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .key-visual .main-logo-overlay {
    bottom: 45%;
  }
}
.key-visual .slick-slide {
  overflow: hidden;
}

.slick-list, .slick-track {
  overflow: hidden !important;
  height: 100%;
}

.custom-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  background: white;
  overflow: hidden;
  border: 1px solid #033a00;
  cursor: pointer;
  padding: 12px 40px;
  margin: 30px auto 80px;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "MS PMincho", serif;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 160px;
}
.custom-button::after {
  content: " ";
  width: 0%;
  height: 100%;
  background: #033a00;
  position: absolute;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  right: 0;
  border-radius: 25px;
  z-index: 1;
}
.custom-button:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}
.custom-button span {
  text-align: center;
  text-decoration: none;
  color: #033a00;
  z-index: 20;
  transition: color 0.5s ease;
  letter-spacing: 2px;
  font-size: 16px;
  white-space: nowrap;
}
.custom-button:hover span {
  color: white;
  animation: scaleUp 0.4s ease-in-out;
}

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
.header-5 {
  box-sizing: border-box;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  transition: background-color 0.3s ease;
  background-color: transparent;
}
.header-5.is-scrolled {
  background-color: rgba(3, 58, 0, 0.8);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header-5.is-scrolled .dropdown-menu a {
  background-color: white;
  color: #333;
  border: none;
  box-shadow: none;
  border: 1px solid #ccc;
}
.header-5.is-scrolled .dropdown-menu a:hover {
  background-color: transparent;
  color: #033a00;
}
.header-5 .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 0.8em;
  margin: 0 auto;
  font-size: 1.2em;
  width: 90%;
}
.header-5 .header-inner .logo img {
  max-width: 250px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header-5 .header-nav {
    margin: 0 0 0 auto;
  }
}
.header-5 .header-nav-list {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 25px;
  color: white;
}
.header-5 .header-nav-list a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
@media screen and (max-width: 768px) {
  .header-5 .header-nav-list {
    position: fixed;
    top: 60px;
    right: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: #fff;
    z-index: 10;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
    flex-direction: column;
    align-items: flex-start;
  }
}
.header-5 .header-nav-item {
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .header-5 .header-nav-item > a {
    display: block;
    padding: 10px 15px;
    color: #333;
  }
}
.header-5 .header-nav-item.dropdown {
  color: white;
  padding: 10px 15px;
}
.header-5 .header-nav-item.dropdown > a {
  cursor: pointer;
  color: white;
}
.header-5 .header-nav-item.dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.header-5 .header-nav-item.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  min-width: 180px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}
.header-5 .header-nav-item.dropdown .dropdown-menu a {
  display: block;
  padding: 8px 15px;
  white-space: nowrap;
  border: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.header-5 .header-nav-item.dropdown .dropdown-menu a:hover {
  background-color: #f0f0f0;
  color: #033a00;
}
.header-5 .header-ham {
  display: none;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .header-5 .header-ham {
    display: block;
    position: relative;
    z-index: 20;
  }
}
.header-5 .header-ham.is-open .menu2:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header-5 .header-ham.is-open .menu2:nth-child(2) {
  opacity: 0;
}
.header-5 .header-ham.is-open .menu2:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.header-5 .header-ham .menu2 {
  width: 20px;
  height: 3px;
  margin: 4px 0;
  margin-right: 0;
  background-color: white;
  transition: transform 0.3s, opacity 0.3s;
}
body.admin-bar .header-5 {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .header-5 {
    top: 46px;
  }
}
@media screen and (min-width: 783px) {
  body.admin-bar .header-5 .header-nav-list {
    top: calc(60px + 32px);
  }
}
@media screen and (max-width: 782px) {
  body.admin-bar .header-5 .header-nav-list {
    top: calc(60px + 46px);
  }
}

.header-nav.is-open .header-nav-list {
  transform: translateX(0);
}
.header-nav.is-open .header-nav-item.dropdown {
  color: #333;
}
.header-nav.is-open .header-nav-item.dropdown .dropdown-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  padding-left: 20px;
  padding-top: 5px;
  background-color: transparent;
  border: none;
  box-shadow: none;
}
.header-nav.is-open .header-nav-item.dropdown .dropdown-menu a {
  padding: 8px 15px 8px 5px;
  border: none;
  box-shadow: none;
  color: #333;
}

@media screen and (max-width: 768px) {
  .header-nav-list {
    position: fixed;
    top: 60px;
  }
}

.fixed-cart-button-wrapper {
  position: fixed;
  right: 20px;
  bottom: 70px;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .fixed-cart-button-wrapper {
    right: 20px;
    bottom: 70px;
  }
}

.fixed-cart-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #033a00;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.fixed-cart-button:hover {
  background-color: rgb(3.7376237624, 75.5, 0);
  transform: translateY(-2px);
}
.fixed-cart-button .cart-icon {
  font-size: 16px;
  margin-right: 8px;
  line-height: 1;
}
.fixed-cart-button .cart-icon img {
  width: 30px;
  height: auto;
}
.fixed-cart-button .button-text {
  font-size: 16px;
  white-space: nowrap;
  color: white;
}

.calendar {
  margin: 20px 0;
  text-align: center;
}
.calendar a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s;
  color: #333;
}
.calendar a:hover {
  opacity: 0.7;
}
.calendar a::before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  margin-right: 8px;
  background-color: #333;
  -webkit-mask-image: url("../images/calendar.svg");
  mask-image: url("../images/calendar.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.latest-posts ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.latest-posts ul .post-item {
  margin: 0;
}
.latest-posts ul .post-item:hover .post-thumb img {
  transform: scale(1.1);
}
.latest-posts ul .post-item .post-thumb {
  width: 100%;
  overflow: hidden;
  padding-top: 71%;
  position: relative;
}
.latest-posts ul .post-item .post-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease-out;
}
@media screen and (max-width: 1024px) {
  .latest-posts ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .latest-posts ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .latest-posts ul .post-item {
    margin-bottom: 0;
  }
}

.pagination-links {
  text-align: center;
  margin: 30px auto;
}

.aboutus-section {
  min-height: 80vh;
  padding: 60px 0;
  background-image: url("../images/about_back.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
  z-index: 1;
  text-align: left;
}
.aboutus-section p {
  padding: 0 0 50px 0;
}

@media (max-width: 1024px) {
  .aboutus-section {
    background-attachment: scroll;
    min-height: 50vh;
  }
}
.quality-section h3 {
  text-align: left;
}
.quality-section {
  position: relative;
  z-index: 2;
  background-color: white;
  max-width: 600px;
  width: 90%;
  margin: 0 auto;
}
.quality-section__flex, .quality-section__flex-reverse {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 100px;
  align-items: center;
}
.quality-section__flex .image-container, .quality-section__flex-reverse .image-container {
  width: 272px;
  height: 385px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  transition: transform 0.1s ease-out;
}
.quality-section__flex .image-container img, .quality-section__flex-reverse .image-container img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translateY(50px);
  transition: transform 0.1s ease-out;
}
.quality-section__flex .text-container, .quality-section__flex-reverse .text-container {
  flex-grow: 1;
  flex-shrink: 1;
}
.quality-section__flex .text-container h4, .quality-section__flex-reverse .text-container h4 {
  font-weight: 100;
  font-size: 18px;
  margin-bottom: 30px;
  padding: 10px 30px;
}
.quality-section__flex .text-container .custom-button, .quality-section__flex-reverse .text-container .custom-button {
  margin: 20px auto 0 auto;
}
@media screen and (max-width: 768px) {
  .quality-section h3 {
    text-align: center;
  }
  .quality-section__flex .text-container, .quality-section__flex-reverse .text-container {
    width: 90%;
  }
  .quality-section__flex .text-container h4, .quality-section__flex-reverse .text-container h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .quality-section__flex .text-container .custom-button, .quality-section__flex-reverse .text-container .custom-button {
    margin: 20px auto 0 auto;
  }
  .quality-section__flex {
    flex-direction: column;
  }
  .quality-section__flex-reverse {
    flex-direction: column-reverse;
  }
}

.scroll-heading {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-flex;
  padding: 10px 15px;
  color: white;
}
.scroll-heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #033a00;
  z-index: -1;
  transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scroll-heading.is-active {
  transition: color 0.4s 0.2s ease-in-out;
}
.scroll-heading.is-active::before {
  width: 100%;
}

.nav-links {
  margin: 50px auto;
}

.site-footer {
  background-color: #FFFAEC;
  padding: 50px 0 120px 0;
  margin: 0 auto;
}
.site-footer__inside {
  width: 90%;
  display: flex;
  margin: 0 auto;
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  .site-footer__inside {
    flex-direction: column;
  }
}

.contact-phone {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 5px;
}
.contact-phone .icon img {
  width: 24px;
  height: auto;
  display: block;
  vertical-align: middle;
}
.contact-phone .number {
  font-size: 24px;
}

.contact-hours {
  margin-top: 5px;
  font-size: 14px;
  color: #666;
}

.sns {
  display: flex;
  gap: 20px;
  align-items: center;
}
.sns span img {
  max-width: 50px;
  width: 100%;
  height: 100%;
}
.sns span .sns_icon {
  padding: 10px;
}
.sns span .sns_icon2 {
  padding: 5px;
}/*# sourceMappingURL=custom.css.map */