@charset "UTF-8";
body {
  background-color: #fff;
}

/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https: //css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https: //webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 1250px) {
  html {
    font-size: 1.28vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #414141;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

/*
 * 参考
 * https: //github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.inner {
  padding: 0 25px;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    margin: auto;
    padding: 0 20px;
    max-width: 40rem;
    width: 100%;
  }
}

.layout-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.layout-main {
  padding-top: 8.125rem;
}
@media screen and (max-width: 767px) {
  .layout-main {
    padding-top: 4.375rem;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .faq-list {
    gap: 0.9375rem;
  }
}

.faq-list__item {
  background-color: #ffffff;
  border-radius: 0.9375rem;
  padding: 0.9375rem 1.5625rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .faq-list__item {
    padding: 0.75rem 2.5rem 0.75rem 1.25rem;
  }
}

.faq-list__item-question {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.05em;
  color: #111111;
  flex: 1;
  max-width: 48.125rem;
  position: relative;
  display: flex;
}
@media screen and (max-width: 767px) {
  .faq-list__item-question {
    font-size: 0.875rem;
  }
}

.faq-list__item-question-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #4b6a4b;
  margin-right: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .faq-list__item-question-title {
    font-size: 1.125rem;
  }
}

.faq-list__item-question-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.05em;
  color: #111111;
}
@media screen and (max-width: 767px) {
  .faq-list__item-question-text {
    font-size: 0.875rem;
  }
}

.faq-list__item-question::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -2.5rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #4b6a4b;
  border-right: 0.125rem solid #4b6a4b;
  transform: translateY(-50%) rotate(135deg);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .faq-list__item-question::before {
    width: 0.5rem;
    height: 0.5rem;
    right: -1.25rem;
  }
}

.faq-list__item-question.is-open::before {
  transform: translateY(-50%) rotate(315deg);
}

.faq-list__item-answer {
  margin-top: 0.9375rem;
  padding-top: 0.9375rem;
  padding-right: 4.875rem;
  border-top: 1px solid #dcdace;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.05em;
  display: none;
}
@media screen and (max-width: 767px) {
  .faq-list__item-answer {
    font-size: 0.875rem;
    padding-right: 0rem;
  }
}

.faq-list__item-answer-wrap {
  display: flex;
  gap: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .faq-list__item-answer-wrap {
    gap: 0.3125rem;
  }
}

.faq-list__item-answer-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #4b6a4b;
}
@media screen and (max-width: 767px) {
  .faq-list__item-answer-title {
    font-size: 1.125rem;
  }
}

.faq-list__item-answer-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #414141;
}
@media screen and (max-width: 767px) {
  .faq-list__item-answer-text {
    font-size: 0.875rem;
  }
}

.footer {
  background-color: #55514B;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 3.0625rem 0 6.25rem;
  }
}

.footer__inner {
  max-width: 71.875rem;
  width: 100%;
  margin: 0 auto;
}

.footer__content-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .footer__content-wrap {
    display: block;
  }
}

.footer__logo-wrap {
  max-width: 12.5625rem;
  width: 100%;
}

.footer__logo {
  width: 100%;
  height: auto;
  aspect-ratio: 201/69;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer__info {
  color: #fff;
}

/* address group */
.footer__address {
  font-style: normal;
}

.footer__postal {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0.05em;
}

.footer__address-text {
  margin-top: 0.3125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0.05em;
}

.footer__telfax {
  margin-top: 0.9375rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0.05em;
}

.footer__biz {
  margin-top: 0.9375rem;
}

.footer__hours {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0.05em;
}

.footer__holiday {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0.05em;
}

.footer__nav-wrap {
  width: 100%;
  max-width: 25rem;
}
@media screen and (max-width: 767px) {
  .footer__nav-wrap {
    margin-top: 1.875rem;
    max-width: 100%;
  }
}

.footer__nav-lists {
  display: flex;
  gap: 3.6875rem;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .footer__nav-lists {
    justify-content: flex-start;
    gap: 1.875rem;
    flex-wrap: wrap;
  }
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 1.1875rem;
  border-left: 0.0625rem solid #fff;
}

.footer__nav-link {
  color: #fff;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.footer__legal-group {
  display: flex;
  flex-direction: column;
  height: -moz-fit-content;
  height: fit-content;
  gap: 0.5rem;
  padding-left: 1.1875rem;
  border-left: 0.0625rem solid #fff;
}

.footer__legal-link {
  color: #fff;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.65;
}

.footer__copyright {
  margin-top: 1.875rem;
  display: block;
  color: #fff;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.305;
  text-align: right;
}

.footer__copyright span {
  font-family: "Shippori Mincho B1", serif;
}

.form__wrap {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #D2D2D2;
  padding-bottom: 1.875rem;
  padding-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .form__wrap {
    display: block;
    align-items: initial;
    padding-bottom: 1.25rem;
    padding-left: 0;
  }
}

.form__wrap + .form__wrap {
  margin-top: 2.1875rem;
}

.form__label {
  display: flex;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  max-width: 23.5rem;
  width: 100%;
  margin-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .form__label {
    margin-right: 0;
    max-width: none;
    width: auto;
  }
}

.form__label p {
  width: 100%;
  max-width: 20rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .form__label p {
    max-width: none;
    width: auto;
  }
}

.form__wrap--textarea {
  align-items: flex-start;
}

.form__wrap.form__wrap--textarea .form__label {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .form__wrap.form__wrap--textarea .form__label {
    margin-top: 0;
  }
}

.form__label span {
  padding: 0.3125rem 0.875rem;
  display: inline-block;
  font-size: 0.875rem;
  color: #fff;
  line-height: 1;
  font-weight: 500;
  background-color: #35493D;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .form__label span {
    margin-left: 0.625rem;
  }
}

.form__input,
.form__select,
.form__radio,
.form__checkbox,
.form__textarea {
  max-width: 39rem;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .form__input,
  .form__select,
  .form__radio,
  .form__checkbox,
  .form__textarea {
    margin-top: 0.625rem;
  }
}

.form__input,
.form__textarea {
  flex-grow: 1;
}

.form__submit {
  margin-top: 2.625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .form__submit {
    margin-top: 1.875rem;
  }
}

.form__input input {
  max-width: 39rem;
  padding: 0.9375rem 1.25rem;
  width: 100%;
  font-size: 0.9375rem;
  line-height: 1;
  border-radius: 0;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #ECECEC;
  background-image: none;
}

.form__input input:focus {
  border: 1px solid #ccc;
  box-shadow: none;
  outline: none;
}

.form__input textarea {
  max-width: 39rem;
  margin-top: 0.3125rem;
  padding: 0.9375rem 0.9375rem;
  width: 100%;
  height: 9.375rem;
  font-size: 0.9375rem;
  border-radius: 0;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #ECECEC;
  background-image: none;
}

.form__input textarea:focus {
  border: 1px solid #ccc;
  box-shadow: none;
  outline: none;
}

.form-text {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .form-text {
    margin-top: 0.625rem;
  }
}

.form-text a {
  color: #35493D;
  text-decoration: underline;
}

.form-submit input {
  padding: 1.25rem 3.75rem 1.25rem 3.4375rem;
  position: relative;
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background-color: #35493D;
  color: #fff;
  border-radius: 0.625rem;
  width: 100%;
  max-width: 16.25rem;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
  border: none;
}
@media screen and (max-width: 767px) {
  .form-submit input {
    max-width: 100%;
  }
}

.form-submit-wrap {
  margin: 0 auto;
  position: relative;
  width: 100%;
  max-width: 16.25rem;
}
@media screen and (max-width: 767px) {
  .form-submit-wrap {
    max-width: 100%;
  }
}

.form-submit-wrap::before {
  z-index: 10;
  content: "";
  position: absolute;
  top: 50%;
  right: 2.5rem;
  width: 0.75rem;
  height: 0.75rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}

.form-submit input:hover,
.form-submit input:focus {
  outline: none;
}

.form-submit input:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .form-submit input:hover {
    opacity: 1;
  }
}

.form-submit input:hover::before {
  right: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .form-submit input:hover::before {
    right: 0.9375rem;
  }
}

.form-submit input::-moz-foucus-inner {
  padding: 0;
  border: none;
}

.form-submit input:disabled {
  pointer-events: none;
  background-color: #ECECEC;
  color: #35493D;
  border: 1px solid #35493D;
}

.wpcf7-list-item {
  margin: 0 1rem 0 1rem;
}
@media screen and (max-width: 767px) {
  .wpcf7-list-item {
    display: block;
  }
}

.wpcf7-radio span {
  display: block;
  margin-left: 0rem;
}

.wpcf7-radio span:not(:first-of-type) {
  margin-top: 0.4375rem;
}

.wpcf7-spinner {
  display: none;
}

.header {
  height: 8.125rem;
  background-color: transparent;
  font-family: "Shippori Mincho B1", serif;
  transition: background-color 0.3s ease;
}
.header.scrolled {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .header {
    height: 4.375rem;
  }
}

.header__inner {
  padding: 0 3.125rem;
  height: inherit;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding-left: 0.9375rem;
    padding-right: 0rem;
  }
}

.header__logo {
  max-width: 12.5rem;
  width: 100%;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .header__logo {
    max-width: 9.25rem;
    position: relative;
    z-index: 999;
  }
}

.header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

.header__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 200/70;
}

.header__nav {
  display: block;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}

.header__nav-item.header__nav-item--contact {
  margin-left: 0.9375rem;
  display: flex;
  align-items: center;
}

.header__nav-item a {
  padding: 0 0.9375rem;
  height: inherit;
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #414141;
  text-transform: uppercase;
}

.header__nav-item.header__nav-item--contact a {
  padding: 1.25rem 2.1875rem;
  border-radius: 2rem;
  position: relative;
  height: initial;
  color: #fff;
  background-color: #d39d47;
}

.header__nav-item.header__nav-item--contact a::before {
  content: "";
  margin-right: 0.625rem;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  background-image: url(./../images/common/header-nav-mail-icon.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header__hamburger {
  display: none;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 4.375rem;
  height: inherit;
  background-color: #ADC0AD;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    display: block;
  }
}

.header__hamburger.is-open {
  background-color: transparent;
}

.header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 1.5625rem;
  height: 2px;
  background-color: #4B6A4B;
  transition: 0.5s;
}

.header__hamburger span:nth-of-type(1) {
  top: -0.5rem;
}

.header__hamburger span:nth-of-type(2) {
  top: 0;
}

.header__hamburger span:nth-of-type(3) {
  top: 0.5rem;
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
  top: -0.25rem;
  transform: translateX(-50%) rotate(-45deg);
}

.header__drawer {
  padding: 6.25rem 0;
  position: absolute;
  z-index: 900;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background-color: #fafafa;
  overflow-y: scroll;
  scrollbar-width: none;
  transition: 0.6s;
}

.header__drawer.is-open {
  right: 0;
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-item a {
  padding: 0.9375rem 0;
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #414141;
  text-align: center;
}

.js-drawer-scroll {
  height: 100%;
  overflow: hidden;
}

.header__sns {
  background-color: #eff4ef;
  border-radius: 0.9375rem;
  box-shadow: 0.1875rem 0.1875rem 1.875rem rgba(162, 184, 162, 0.3);
  padding: 1.875rem 3.125rem;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin-top: 1.875rem;
  margin-left: auto;
  margin-right: auto;
}

.header__sns-list {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .header__sns-list {
    gap: 0.625rem;
  }
}

.header__sns-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.header__sns-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header__sns-icon img {
  width: 2.25rem;
  height: 2.25rem;
}
@media screen and (max-width: 767px) {
  .header__sns-icon img {
    width: 1.875rem;
    height: 1.875rem;
  }
}

.header__sns-text {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #414141;
}
@media screen and (max-width: 767px) {
  .header__sns-text {
    font-size: 0.875rem;
  }
}

.header__sns-subtext {
  display: block;
  font-size: 0.75rem;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #414141;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .header__sns-subtext {
    font-size: 0.625rem;
  }
}

.more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5625rem;
  padding: 1.25rem 3.75rem;
  background-color: #4B6A4B;
  border-radius: 2.0625rem;
  color: #ffffff;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-decoration: none;
  box-shadow: 0.1875rem 0.1875rem 1.875rem rgba(65, 95, 65, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .more-btn {
    padding: 0.9375rem 2.5rem;
    font-size: 1rem;
    gap: 0.9375rem;
  }
}

.more-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3.75rem;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .more-btn::after {
    right: 1.25rem;
  }
}

.more-btn:hover::after {
  right: 2.5rem;
}
@media screen and (max-width: 767px) {
  .more-btn:hover::after {
    right: 0.625rem;
  }
}

.news-list {
  grid-column: 2/3;
  grid-row: 1/3;
  width: 100%;
  max-width: 44.875rem;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .news-list {
    max-width: 100%;
    gap: 1.25rem;
    grid-column: 1/2;
    grid-row: 2/3;
  }
}

.news-list__item a {
  display: flex;
  align-items: center;
  gap: 2.8125rem;
  padding-bottom: 0.9375rem;
  border-bottom: 0.0625rem solid #cbcbcb;
}
@media screen and (max-width: 767px) {
  .news-list__item a {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9375rem;
    padding-bottom: 0.625rem;
  }
}

.news-list__item-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .news-list__item-meta {
    gap: 0.9375rem;
  }
}

.news-list__date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #414141;
}
@media screen and (max-width: 767px) {
  .news-list__date {
    font-size: 0.875rem;
  }
}

.news-list__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3125rem 0.5rem;
  background-color: #eff4ef;
  border-radius: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .news-list__category {
    padding: 0.25rem 0.375rem;
  }
}

.news-list__category-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #414141;
}
@media screen and (max-width: 767px) {
  .news-list__category-text {
    font-size: 0.875rem;
  }
}

.news-list__item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0.05em;
  color: #414141;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .news-list__item-title {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

@keyframes transformLeftRight {
  0% {
    transform: translate(-100%, -50%);
  }
  100% {
    transform: translate(0, -50%);
  }
}
@keyframes transformRightLeft {
  0% {
    transform: translate(0, -50%);
  }
  100% {
    transform: translate(100%, -50%);
  }
}
.section-title-primary {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title-primary__en {
  font-family: "EB Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #ADC0AD;
}
@media screen and (max-width: 767px) {
  .section-title-primary__en {
    font-size: 1.5rem;
  }
}

.section-title-primary__jp {
  font-family: "Shippori Mincho B1", serif;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #414141;
}
@media screen and (max-width: 767px) {
  .section-title-primary__jp {
    font-size: 1.5rem;
  }
}

.section-title-secondary {
  display: flex;
  flex-direction: column;
  gap: 5.3125rem;
}
@media screen and (max-width: 767px) {
  .section-title-secondary {
    align-items: center;
    gap: 2.5rem;
  }
}

.section-title-secondary__wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .section-title-secondary__wrap {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.25rem;
    order: 0;
  }
}

.section-title-secondary__en {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-size: 6rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #e7f2e7;
  position: absolute;
  top: -5.6875rem;
  left: -3.125rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .section-title-secondary__en {
    width: -moz-max-content;
    width: max-content;
    font-size: 3rem;
    top: -2.8125rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

.section-title-secondary__en.section-title-secondary__en--information {
  font-size: 5rem;
  top: -4.25rem;
  color: #C9C1B7;
}
@media screen and (max-width: 767px) {
  .section-title-secondary__en.section-title-secondary__en--information {
    font-size: 3rem;
    top: -2.8125rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

.section-title-secondary__jp {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #414141;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section-title-secondary__jp {
    font-size: 1.5rem;
  }
}

.archive-gallery {
  position: relative;
  padding: 2.5rem 0;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .archive-gallery {
    padding: 1.875rem 0;
  }
}

.archive-gallery__inner {
  position: relative;
  max-width: 71.875rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .archive-gallery__inner {
    max-width: 37.5rem;
  }
}

.archive-gallery__header {
  text-align: center;
  margin-top: 3.75rem;
}

.archive-gallery__breadcrumb {
  margin-top: 3.125rem;
}

.archive-gallery__filter {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .archive-gallery__filter {
    margin-top: 1.875rem;
  }
}

.archive-gallery__filter-inner {
  text-align: center;
}

.archive-gallery__filter-title {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .archive-gallery__filter-title {
    font-size: 0.875rem;
    margin-bottom: 0.9375rem;
  }
}

.archive-gallery__filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .archive-gallery__filter-buttons {
    gap: 0.625rem;
  }
}
@media screen and (max-width: 375px) {
  .archive-gallery__filter-buttons {
    gap: 0.5rem;
  }
}

.archive-gallery__filter-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #f8f8f8;
  border: 0.0625rem solid #ddd;
  border-radius: 1.5625rem;
  text-decoration: none;
  color: #666;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .archive-gallery__filter-btn {
    padding: 0.375rem 0.875rem;
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 375px) {
  .archive-gallery__filter-btn {
    padding: 0.3125rem 0.75rem;
    font-size: 0.75rem;
  }
}
.archive-gallery__filter-btn:hover {
  background: #e8e8e8;
  border-color: #999;
  color: #333;
  text-decoration: none;
}
.archive-gallery__filter-btn.is-active {
  background: #333;
  border-color: #333;
  color: #fff;
  font-weight: 600;
}

.archive-gallery__selected-category {
  text-align: center;
  margin: 1.875rem 0;
  padding: 1.25rem;
  background: #f8f8f8;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .archive-gallery__selected-category {
    margin: 1.25rem 0;
    padding: 0.9375rem;
  }
}
.archive-gallery__selected-category p {
  margin: 0 0 0.625rem 0;
  font-size: 1rem;
  color: #333;
}
@media screen and (max-width: 767px) {
  .archive-gallery__selected-category p {
    font-size: 0.875rem;
  }
}

.archive-gallery__selected-category-name {
  font-weight: 600;
  color: #333;
}

.archive-gallery__clear-filter {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: #fff;
  border: 0.0625rem solid #ccc;
  border-radius: 0.25rem;
  text-decoration: none;
  color: #666;
  font-size: 0.75rem;
  transition: all 0.3s ease;
}
.archive-gallery__clear-filter:hover {
  background: #f0f0f0;
  border-color: #999;
  color: #333;
  text-decoration: none;
}

.archive-gallery__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .archive-gallery__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
  }
}

.archive-gallery__item {
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}
.archive-gallery__item:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.15);
}

.archive-gallery__image {
  width: 100%;
}

.archive-gallery__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 292.5/270;
}

.archive-gallery__content {
  padding: 1.25rem;
}

.archive-gallery__categories {
  display: flex;
  justify-content: center;
  margin-top: 0.625rem;
}

.archive-gallery__category {
  background: #f0f0f0;
  color: #666;
  padding: 0.25rem 0.75rem;
  border-radius: 1.25rem;
  font-size: 0.75rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .archive-gallery__category {
    font-size: 0.6875rem;
    padding: 0.1875rem 0.625rem;
  }
}

.archive-gallery__pagination {
  text-align: center;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .archive-gallery__pagination {
    margin-top: 2.5rem;
  }
}
.archive-gallery__pagination .page-numbers {
  display: inline-block;
  padding: 0.625rem 0.9375rem;
  background: #fff;
  border: 0.0625rem solid #ddd;
  border-radius: 0.25rem;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  min-width: 2.5rem;
  text-align: center;
  font-size: 0.875rem;
  margin: 0 0.3125rem;
}
@media screen and (max-width: 767px) {
  .archive-gallery__pagination .page-numbers {
    padding: 0.5rem 0.75rem;
    min-width: 2.1875rem;
    font-size: 0.8125rem;
    margin: 0 0.1875rem;
  }
}
.archive-gallery__pagination .page-numbers:hover {
  background: #f5f5f5;
  border-color: #999;
  color: #333;
}
.archive-gallery__pagination .page-numbers.current {
  background: #333;
  color: #fff;
  border-color: #333;
  font-weight: 600;
}
.archive-gallery__pagination .page-numbers.prev, .archive-gallery__pagination .page-numbers.next {
  font-weight: 600;
  background: #f8f8f8;
  border-color: #ccc;
  min-width: 3.75rem;
}
@media screen and (max-width: 767px) {
  .archive-gallery__pagination .page-numbers.prev, .archive-gallery__pagination .page-numbers.next {
    min-width: 3.125rem;
  }
}
.archive-gallery__pagination .page-numbers.prev:hover, .archive-gallery__pagination .page-numbers.next:hover {
  background: #e8e8e8;
  border-color: #999;
}

.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
}
.gallery-modal.is-open {
  display: block;
}

.gallery-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.gallery-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 0.5rem;
  max-width: 50rem;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 767px) {
  .gallery-modal__content {
    width: 98%;
    max-width: 37.5rem;
  }
}
@media screen and (max-width: 375px) {
  .gallery-modal__content {
    width: 98%;
    max-width: 25rem;
  }
}

.gallery-modal__close {
  position: absolute;
  top: 0.9375rem;
  right: 0.9375rem;
  width: 1.875rem;
  height: 1.875rem;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}
.gallery-modal__close:hover {
  background: #555;
  transform: scale(1.1);
}
@media screen and (max-width: 767px) {
  .gallery-modal__close {
    top: 0.625rem;
    right: 0.625rem;
    width: 1.5625rem;
    height: 1.5625rem;
    font-size: 1rem;
  }
}

.gallery-modal__body {
  padding: 3.125rem 3.125rem 0;
}
@media screen and (max-width: 767px) {
  .gallery-modal__body {
    padding: 3.125rem 0.625rem 0;
  }
}

.gallery-modal__image {
  text-align: center;
  margin-bottom: 1.25rem;
}

.gallery-modal__image img {
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
  box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.1);
}

.gallery-modal__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 0.9375rem 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .gallery-modal__title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
}
@media screen and (max-width: 375px) {
  .gallery-modal__title {
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
  }
}

.gallery-modal__categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .gallery-modal__categories {
    margin-bottom: 0.9375rem;
  }
}

.gallery-modal__category {
  background: #f0f0f0;
  color: #666;
  padding: 0.375rem 0.75rem;
  border-radius: 1.25rem;
  font-size: 0.75rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .gallery-modal__category {
    padding: 0.3125rem 0.625rem;
    font-size: 0.6875rem;
  }
}

.gallery-modal__description {
  color: #666;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .gallery-modal__description {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 375px) {
  .gallery-modal__description {
    font-size: 0.8125rem;
  }
}

body.modal-open {
  overflow: hidden;
}

.archive-news {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .archive-news {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
}

.archive-news__inner {
  max-width: 68.75rem;
}
@media screen and (max-width: 767px) {
  .archive-news__inner {
    max-width: 37.5rem;
  }
}

.archive-news__list {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .archive-news__list {
    margin-top: 2.5rem;
  }
}

.contact {
  padding: 6.25rem 0rem;
  background-color: #f8f6f2;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 5rem 0rem;
  }
}

.contact__inner {
  max-width: 68.75rem;
}
@media screen and (max-width: 767px) {
  .contact__inner {
    max-width: 37.5rem;
  }
}

.contact__breadcrumb {
  margin-top: 3.125rem;
}

.contact__form-wrap {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .contact__form-wrap {
    margin-top: 2.5rem;
  }
}

.contact__form-wrap form {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .contact__form-wrap form {
    margin-top: 1.875rem;
  }
}

.contact__form-text {
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
}

.policy {
  padding: 6.25rem 0rem;
  background-color: #f8f6f2;
}
@media screen and (max-width: 767px) {
  .policy {
    padding: 5rem 0rem;
  }
}

.policy__inner {
  max-width: 68.75rem;
}

.policy__breadcrumb {
  margin-top: 3.125rem;
}

.policy__content {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .policy__content {
    margin-top: 2.5rem;
  }
}

.policy__content-item {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .policy__content-item {
    margin-top: 1.875rem;
  }
}

.policy__content-title-title {
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .policy__content-title-title {
    font-size: 1.25rem;
  }
}

.policy__content-title-text {
  margin-top: 0.625rem;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .policy__content-title-text {
    font-size: 0.875rem;
    margin-top: 0.3125rem;
  }
}

.single-news {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .single-news {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
}

.single-news__inner {
  max-width: 68.75rem;
}
@media screen and (max-width: 767px) {
  .single-news__inner {
    max-width: 37.5rem;
  }
}

.single-news__content {
  font-size: 1rem;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .single-news__content {
    font-size: 0.875rem;
  }
}

.single-news__content h1 {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .single-news__content h1 {
    font-size: 1.5rem;
  }
}

.single-news__content h2 {
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .single-news__content h2 {
    font-size: 1.25rem;
  }
}

.single-news__content h3 {
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .single-news__content h3 {
    font-size: 1.125rem;
  }
}

.single-news__content p {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .single-news__content p {
    margin-top: 0.625rem;
  }
}

.main-visual__inner {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .main-visual__inner {
    display: block;
  }
}

.main-visual__content {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  height: calc(100vh - 12rem);
  min-height: 51.25rem;
  max-height: 54.25rem;
  align-items: flex-start;
  gap: 10.41%;
  padding-top: 1.25rem;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .main-visual__content {
    height: calc(100vh - 15.25rem);
    min-height: 31.25rem;
    padding-top: 4.0625rem;
    align-items: flex-start;
    gap: 1rem;
    overflow-x: clip;
  }
}
@media screen and (min-width: 1441px) {
  .main-visual__content {
    height: calc(100vh - 15.625rem);
    max-height: 50rem;
    min-height: 28.125rem;
  }
}

.main-visual__text-area {
  margin-top: 7.1875rem;
  width: 33.33%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .main-visual__text-area {
    margin-top: -1.875rem;
    width: 31.3%;
    transform: translateX(50%);
  }
}
@media screen and (min-width: 1441px) {
  .main-visual__text-area {
    margin-top: 0rem;
  }
}

.main-visual__main-copy {
  display: flex;
  flex-direction: row-reverse;
  gap: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .main-visual__main-copy {
    gap: 0.625rem;
  }
}
@media screen and (min-width: 1441px) {
  .main-visual__main-copy {
    gap: 3.125rem;
  }
}

.main-visual__main-text {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 2.125rem;
  line-height: 1.2;
  color: #4B6A4B;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .main-visual__main-text {
    font-size: clamp(16px, 3vw, 20px);
  }
}

.main-visual__sub-text {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.2;
  color: #414141;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.2em;
  border: 0.0625rem solid #d8d1c3;
  padding: 0.625rem 0.5rem;
  margin-right: 2.125rem;
}
@media screen and (max-width: 767px) {
  .main-visual__sub-text {
    font-size: clamp(10px, 2vw, 12px);
    letter-spacing: 0.17em;
    margin-right: 1.0625rem;
    margin-left: 0.625rem;
  }
}
@media screen and (min-width: 1441px) {
  .main-visual__sub-text {
    margin-right: 4.375rem;
  }
}

.main-visual__image-area {
  width: 100%;
  max-width: 56.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .main-visual__image-area {
    width: 80vw;
    height: 100%;
    transform: translateX(19.33%);
  }
}
@media screen and (min-width: 1441px) {
  .main-visual__image-area {
    max-width: 78.125rem;
    height: 100%;
  }
}

.main-visual__image-area::before {
  content: "";
  position: absolute;
  bottom: -4.6875rem;
  right: 0;
  width: 100%;
  max-width: 51.625rem;
  height: 200%;
  aspect-ratio: 826/1000;
  background-color: #F8F6F2;
  border-radius: 0 0 0 3.125rem;
}
@media screen and (max-width: 767px) {
  .main-visual__image-area::before {
    width: 80%;
  }
}
@media screen and (min-width: 1441px) {
  .main-visual__image-area::before {
    width: 80%;
    height: 200%;
    max-width: 68.75rem;
  }
}

.main-visual__image-container {
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
  max-width: 71.9375rem;
  width: 100%;
  position: relative;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .main-visual__image-container {
    gap: 1.25rem;
  }
}
@media screen and (min-width: 1441px) {
  .main-visual__image-container {
    max-width: 81.25rem;
  }
}

.main-visual__swiper {
  width: 100%;
  padding: 2.5rem 0;
  height: 100%;
}

.main-visual__swiper .swiper-wrapper {
  display: flex;
  justify-content: flex-start;
  height: 100%;
}
.main-visual__swiper .swiper-slide {
  width: 62%;
  height: 100%;
  overflow: hidden;
  border-radius: 2.5rem;
}
@media screen and (max-width: 767px) {
  .main-visual__swiper .swiper-slide {
    width: 100%;
    max-width: 100%;
  }
}

.main-visual__swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 563/786;
}
@media screen and (max-width: 767px) {
  .main-visual__swiper .swiper-slide img {
    height: 100%;
    aspect-ratio: 300/520;
  }
}

.main-visual__sns-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: absolute;
  bottom: -1.875rem;
  right: 0;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .main-visual__sns-list {
    right: 18%;
    bottom: -1.875rem;
  }
}

.main-visual__sns-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #4B6A4B;
  padding: 1rem 1rem 1rem 1.75rem;
  border-radius: 2.5rem 0 0 2.5rem;
  width: 100%;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .main-visual__sns-item {
    padding: 0.75rem 0.75rem 0.75rem 1.25rem;
  }
}

.main-visual__sns-item:hover {
  opacity: 1;
  background-color: #ADC0AD;
}

.main-visual__sns-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.main-visual__sns-icon img {
  width: 1.875rem;
  height: 1.875rem;
}

.main-visual__sns-text {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .main-visual__sns-text {
    font-size: 0.875rem;
  }
}

.main-visual__scroll {
  position: absolute;
  top: 55%;
  left: 2.6875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14.125rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .main-visual__scroll {
    gap: 8.125rem;
    top: 31.25rem;
    left: 5%;
  }
}
@media screen and (min-width: 1441px) {
  .main-visual__scroll {
    left: 4%;
  }
}

.main-visual__scroll-text {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.3;
  color: #414141;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
@media screen and (max-width: 767px) {
  .main-visual__scroll-text {
    font-size: 0.875rem;
  }
}

.main-visual__scroll-line {
  width: 0.0625rem;
  height: 12.125rem;
  background-color: #414141;
}
@media screen and (max-width: 767px) {
  .main-visual__scroll-line {
    height: 6.25rem;
  }
}

.scroll::before,
.scroll::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0.0625rem;
  height: 12.125rem;
}
@media screen and (max-width: 767px) {
  .scroll::before,
  .scroll::after {
    height: 6.25rem;
  }
}

.scroll::before {
  background-color: #eee;
}

.scroll::after {
  background-color: #000;
  animation: scrollDown 2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

@keyframes scrollDown {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.top-about {
  position: relative;
  margin-top: -3.75rem;
  padding: 0 0 8.125rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-about {
    margin-top: 9.375rem;
    padding: 6.25rem 0 6.25rem;
  }
}
@media screen and (max-width: 375px) {
  .top-about {
    margin-top: 12.5rem;
  }
}
@media screen and (min-width: 1441px) {
  .top-about {
    margin-top: 11.25rem;
  }
}

.top-about::before {
  content: "";
  position: absolute;
  top: 5.625rem;
  right: 0;
  width: 100%;
  max-width: 23.125rem;
  height: auto;
  aspect-ratio: 798/1462;
  background-image: url(../images/top/top-about-bg01.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  opacity: 0.3;
}

.top-about__inner {
  max-width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-about__inner {
    max-width: 37.5rem;
    padding: 0 1.25rem;
  }
}

.top-about__main-content {
  display: flex;
  gap: 5.4375rem;
  padding-right: 3.125rem;
}
@media screen and (max-width: 767px) {
  .top-about__main-content {
    flex-direction: column-reverse;
    gap: 2.5rem;
    padding-right: 0;
  }
}

.top-about__main-image {
  width: 100%;
  height: auto;
  max-width: 35rem;
}
@media screen and (max-width: 767px) {
  .top-about__main-image {
    max-width: 100%;
  }
}

.top-about__main-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 560/901;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .top-about__main-image img {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}

.top-about__main-content-box {
  display: flex;
  flex-direction: column;
  gap: 4.375rem;
  padding-top: 16.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-about__main-content-box {
    gap: 3.125rem;
    padding-top: 0rem;
  }
}

.top-about__text-wrap {
  max-width: 35rem;
  display: flex;
  flex-direction: column;
  padding-left: 0.5625rem;
}

.top-about__text {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #414141;
}
@media screen and (max-width: 767px) {
  .top-about__text {
    font-size: 1.5rem;
  }
}

.top-about__green-text {
  margin-top: 2.8125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #4b6a4b;
}
@media screen and (max-width: 767px) {
  .top-about__green-text {
    margin-top: 1.875rem;
    font-size: 1.25rem;
  }
}

.top-about__description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #414141;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .top-about__description {
    margin-top: 1.25rem;
    font-size: 0.875rem;
  }
}

.top-about__sub-content {
  position: relative;
  display: flex;
  justify-content: flex-end;
  gap: 8.4375rem;
  margin-top: 3.125rem;
  padding-left: 3.125rem;
}
@media screen and (max-width: 767px) {
  .top-about__sub-content {
    flex-direction: column;
    gap: 1.875rem;
    margin-top: 2.5rem;
    padding-left: 0;
  }
}

.top-about__sub-content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 20%;
  width: 100%;
  max-width: 41.25rem;
  height: auto;
  aspect-ratio: 1187/1187;
  background-image: url(../images/top/top-about-bg02.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  opacity: 0.3;
}
@media screen and (max-width: 767px) {
  .top-about__sub-content::before {
    right: -20%;
  }
}

.top-about__sub-text {
  display: flex;
  flex-direction: column;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .top-about__sub-text {
    margin-top: 0rem;
  }
}

.top-about__sub-heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #4b6a4b;
}
@media screen and (max-width: 767px) {
  .top-about__sub-heading {
    font-size: 1.25rem;
  }
}

.top-about__sub-description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #414141;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .top-about__sub-description {
    margin-top: 1.875rem;
    font-size: 0.875rem;
  }
}

.top-about__sub-image {
  width: 100%;
  max-width: 39.5rem;
  height: auto;
  border-radius: 2.5rem 0 0 2.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-about__sub-image {
    max-width: 100%;
    border-radius: 0;
  }
}

.top-about__sub-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 632/480;
}

.top-about__title-section {
  position: relative;
  background-color: #eff4ef;
  border-radius: 0 4.625rem 4.625rem 0;
  padding: 3.75rem 5rem 3.75rem 10.625rem;
  width: 45.625rem;
}
@media screen and (max-width: 767px) {
  .top-about__title-section {
    width: 100%;
    padding: 2.5rem 3.125rem 2.5rem 1.875rem;
    border-radius: 0 3.125rem 3.125rem 0;
  }
}

.top-about__title-content {
  position: relative;
}

.top-about__title-en {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-size: 6rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #e7f2e7;
  position: absolute;
  top: -5.25rem;
  left: -8.125rem;
}
@media screen and (max-width: 767px) {
  .top-about__title-en {
    font-size: 3rem;
    top: -2.5rem;
    left: -3.125rem;
  }
}

.top-about__title-jp {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #414141;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-about__title-jp {
    font-size: 1.5rem;
  }
}

.top-item {
  padding: 7.5rem 0 9.0625rem;
  background-color: #f8f6f2;
  border-radius: 25rem 25rem 0 0;
}
@media screen and (max-width: 767px) {
  .top-item {
    padding: 3.75rem 0;
  }
}

.top-item__inner {
  max-width: 75rem;
  padding: 0 3.125rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top-item__inner {
    max-width: 37.5rem;
    padding: 0 1.25rem;
  }
}

.top-item__text {
  margin-top: 3.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #414141;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-item__text {
    font-size: 0.875rem;
    margin-top: 2.5rem;
  }
}

.top-item__list {
  margin-top: 4.375rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .top-item__list {
    margin-top: 2.5rem;
    gap: 3.75rem;
  }
}

.top-item__card {
  display: flex;
  flex-direction: row;
  gap: 3.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-item__card {
    gap: 2.5rem;
    flex-direction: column;
  }
}

.top-item__card:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .top-item__card:nth-child(even) {
    flex-direction: column;
  }
}

.top-item__card-image-wrap {
  position: relative;
}

.top-item__card-image {
  width: 100%;
  max-width: 27.5rem;
  height: auto;
  border-radius: 13.75rem 13.75rem 0 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-item__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 9.375rem 9.375rem 0 0;
  }
}

.top-item__card-img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 440/500;
}

.top-item__card-content {
  margin-top: 1.875rem;
  width: 100%;
  max-width: 37.5rem;
}
@media screen and (max-width: 767px) {
  .top-item__card-content {
    margin-top: 1.25rem;
    max-width: 100%;
  }
}

.top-item__card-title {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #4b6a4b;
}
@media screen and (max-width: 767px) {
  .top-item__card-title {
    font-size: 1.5rem;
  }
}

.top-item__card-catch {
  margin-top: 1.5625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #414141;
  padding: 0.3125rem;
  border-bottom: 1px solid #adc0ad;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .top-item__card-catch {
    margin-top: 0.9375rem;
    font-size: 1.125rem;
  }
}

.top-item__card-text {
  margin-top: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.05em;
  color: #414141;
}
@media screen and (max-width: 767px) {
  .top-item__card-text {
    margin-top: 0.9375rem;
    font-size: 0.875rem;
  }
}

.top-item__card-text--spacing {
  letter-spacing: 0.01em;
}

.top-item__card-info {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .top-item__card-info {
    margin-top: 0.625rem;
  }
}

.top-item__card-section {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
}

.top-item__card-label {
  min-width: 6.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 0.9375rem;
  background-color: #c9c1b7;
  border-radius: 0.3125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  color: #414141;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .top-item__card-label {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
  }
}

.top-item__card-label--how {
  padding: 0.625rem 0.9375rem;
}

.top-item__card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.top-item__card-item {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.05em;
  color: #414141;
}
@media screen and (max-width: 767px) {
  .top-item__card-item {
    font-size: 0.875rem;
  }
}

.top-item__card-item--center {
  display: flex;
  align-items: center;
}

.top-item__card-item span {
  color: #4B6A4B;
}

.top-item__card-detail {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.05em;
  color: #414141;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .top-item__card-detail {
    font-size: 0.875rem;
  }
}

.top-item__card-detail--padding {
  padding-right: 0.9375rem;
}

.top-item__card-button-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.875rem;
}

.top-item__card-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5625rem;
  padding: 1.25rem 2.8125rem;
  background-color: #4B6A4B;
  border-radius: 2.0625rem;
  color: #ffffff;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-item__card-button {
    margin: 0 auto;
    padding: 0.9375rem 2.5rem;
    font-size: 1rem;
    gap: 0.9375rem;
  }
}

.top-item__card-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.8125rem;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .top-item__card-button::after {
    right: 1.875rem;
  }
}

.top-item__card-button:hover::after {
  right: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .top-item__card-button:hover::after {
    right: 1.25rem;
  }
}

.top-item__card-number {
  font-family: "EB Garamond", serif;
  font-size: 5.375rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #d39d47;
  position: absolute;
  top: -1.875rem;
  left: 0;
  -webkit-text-stroke: 1px #f8f6f2;
}
@media screen and (max-width: 767px) {
  .top-item__card-number {
    font-size: 3.75rem;
  }
}

.top-gallery {
  padding: 7.5rem 0;
  background-color: #eff4ef;
}
@media screen and (max-width: 767px) {
  .top-gallery {
    padding: 3.75rem 0;
  }
}

.top-gallery__inner {
  max-width: 81.25rem;
  padding: 0 3.125rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top-gallery__inner {
    max-width: 37.5rem;
    padding: 0 1.25rem;
  }
}

.top-gallery__grid {
  margin-top: 3.75rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 375px) {
  .top-gallery__grid {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 1.25rem;
  }
}

.top-gallery__item {
  width: 100%;
  overflow: hidden;
}

.top-gallery__image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 292.5/270;
  transition: transform 0.6s ease;
}

.top-gallery__button-wrap {
  margin-top: 3.75rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .top-gallery__button-wrap {
    margin-top: 2.5rem;
  }
}

.top-gallery__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 1.25rem 2.5rem;
  background-color: #4b6a4b;
  border-radius: 2.0625rem;
  color: #ffffff;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-decoration: none;
  box-shadow: 0.1875rem 0.1875rem 1.875rem rgba(65, 95, 65, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-gallery__button {
    padding: 0.9375rem 2.5rem;
    font-size: 1rem;
    gap: 0.9375rem;
  }
}

.top-gallery__button::before {
  content: "";
  display: inline-block;
  width: 0.75rem;
  height: 0.5rem;
  background-image: url(../images/common/arrow-white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .top-gallery__button::before {
    width: 0.625rem;
    height: 0.375rem;
  }
}

.top-gallery__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #5a7a5a;
  border-radius: 2.0625rem;
  transform: scale(0, 1);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.top-gallery__button:hover::after {
  transform: scale(1, 1);
}

.top-gallery__button span {
  display: inline-block;
  overflow: hidden;
  position: relative;
  width: 0.75rem;
  height: 0.5rem;
}
@media screen and (max-width: 767px) {
  .top-gallery__button span {
    width: 0.625rem;
    height: 0.375rem;
  }
}

.top-gallery__button span::before,
.top-gallery__button span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.75rem;
  height: 0.5rem;
  right: 0;
  transform: translateY(-50%);
  animation-fill-mode: forwards;
  animation-duration: 0.6s;
  -webkit-mask-image: url(../images/common/arrow-white.svg);
          mask-image: url(../images/common/arrow-white.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .top-gallery__button span::before,
  .top-gallery__button span::after {
    width: 0.625rem;
    height: 0.375rem;
  }
}

.top-gallery__button span::after {
  transform: translate(-100%, -50%);
}

.top-gallery__button:hover span::before {
  animation-name: transformRightLeft;
  animation-delay: 0s;
}

.top-gallery__button:hover span::after {
  animation-name: transformLeftRight;
  animation-delay: 0.1s;
}

.top-delivery {
  position: relative;
  padding-top: 11.4375rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-delivery {
    padding-top: 5rem;
  }
}

.top-delivery__inner {
  max-width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-delivery__inner {
    max-width: 37.5rem;
    padding: 0 1.25rem;
  }
}

.top-delivery__header {
  padding-left: 10.625rem;
}
@media screen and (max-width: 767px) {
  .top-delivery__header {
    padding-left: 1.25rem;
  }
}

.top-delivery__content {
  display: flex;
  gap: 3.75rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .top-delivery__content {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.top-delivery__left {
  flex: 0 0 40%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-delivery__left {
    flex: none;
    width: 100%;
  }
}

.top-delivery__image {
  margin-top: 9.6875rem;
  max-width: 33.125rem;
  width: 100%;
  height: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-delivery__image {
    margin-top: 6.25rem;
    max-width: 100%;
  }
}

.top-delivery__image::before {
  content: "";
  position: absolute;
  bottom: -16.875rem;
  right: -12.5rem;
  width: 40.625rem;
  height: auto;
  aspect-ratio: 392.68/392.68;
  background-image: url(../images/top/top-delivery-bg03.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.top-delivery__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 530/580;
}

.top-delivery__right {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .top-delivery__right {
    flex: none;
    width: 100%;
    gap: 2.5rem;
  }
}

.top-delivery__info-block {
  background-color: #f8f6f2;
  border-radius: 14.875rem 0 0 14.875rem;
  padding: 2.5rem 10.625rem 2.8125rem 10.625rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-delivery__info-block {
    padding: 2.5rem 5rem 2.8125rem 8.75rem;
  }
}
@media screen and (max-width: 767px) {
  .top-delivery__info-block {
    padding: 1.875rem 1.25rem 2.5rem 1.25rem;
    border-radius: 0;
  }
}

.top-delivery__info-block--store {
  width: 100%;
  height: auto;
  min-height: 29.6875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-delivery__info-block--store {
    min-height: auto;
    padding-bottom: 6.25rem;
  }
}

.top-delivery__info-block--store::before {
  content: "";
  position: absolute;
  bottom: -3.75rem;
  right: 0;
  width: 16.699375rem;
  height: auto;
  background-image: url(../images/top/top-delivery-bg01.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 267.19/272;
}
@media screen and (max-width: 767px) {
  .top-delivery__info-block--store::before {
    width: 10.5675rem;
  }
}

.top-delivery__info-block--courier {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-delivery__info-block--courier {
    width: 100%;
    padding-top: 5rem;
  }
}

.top-delivery__info-block--courier::before {
  content: "";
  position: absolute;
  top: -0.625rem;
  left: -1.5625rem;
  width: 10.5675rem;
  height: auto;
  background-image: url(../images/top/top-delivery-bg02.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 169.08/168.74;
}
@media screen and (max-width: 767px) {
  .top-delivery__info-block--courier::before {
    width: 6.25rem;
    left: -0.625rem;
    top: -1.5625rem;
  }
}

.top-delivery__info-header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding-bottom: 0.3125rem;
  border-bottom: 1px solid #c9c1b7;
  justify-content: flex-start;
}

.top-delivery__info-icon {
  width: 2.0625rem;
  height: 2.0625rem;
}
@media screen and (max-width: 767px) {
  .top-delivery__info-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.top-delivery__icon {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 33/33;
}

.top-delivery__info-icon02 {
  width: 2.625rem;
  height: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-delivery__info-icon02 {
    width: 1.875rem;
    height: 0.9375rem;
  }
}

.top-delivery__icon02 {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 42/20;
}

.top-delivery__info-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #4b6a4b;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .top-delivery__info-title {
    font-size: 1.25rem;
  }
}

.top-delivery__info-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-delivery__info-content {
    margin-top: 0.9375rem;
  }
}

.top-delivery__info-row {
  display: flex;
  align-items: stretch;
  gap: 0.875rem;
}
@media screen and (max-width: 767px) {
  .top-delivery__info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

.top-delivery__info-label {
  background-color: #c9c1b7;
  color: #414141;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.8;
  padding: 0.25rem 0rem;
  border-radius: 0.3125rem;
  min-width: 6.875rem;
  text-align: center;
  flex-shrink: 0;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .top-delivery__info-label {
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
    min-width: 5.625rem;
  }
}

.top-delivery__info-label-sub {
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .top-delivery__info-label-sub {
    font-size: 0.625rem;
  }
}

.top-delivery__info-value {
  color: #4b6a4b;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.8;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .top-delivery__info-value {
    font-size: 1.125rem;
  }
}

.top-delivery__info-row:nth-child(2) .top-delivery__info-value,
.top-delivery__info-row:nth-child(3) .top-delivery__info-value {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .top-delivery__info-row:nth-child(2) .top-delivery__info-value,
  .top-delivery__info-row:nth-child(3) .top-delivery__info-value {
    font-size: 0.875rem;
  }
}

.top-delivery__info-note {
  margin-top: 0.9375rem;
  display: flex;
  gap: 0.3125rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .top-delivery__info-note {
    margin-top: 0.625rem;
  }
}

.top-delivery__info-note + .top-delivery__info-note {
  margin-top: 0rem;
}

.top-delivery__info-notes {
  flex-direction: column;
  gap: 0.3125rem;
  display: flex;
  gap: 0.3125rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .top-delivery__info-notes {
    margin-top: 0.625rem;
  }
}

.top-delivery__note-mark {
  color: #414141;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .top-delivery__note-mark {
    font-size: 0.875rem;
  }
}

.top-delivery__note-text {
  color: #414141;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0.05em;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .top-delivery__note-text {
    font-size: 0.875rem;
  }
}

.top-news {
  margin-top: 11.25rem;
}
@media screen and (max-width: 767px) {
  .top-news {
    margin-top: 6.25rem;
  }
}

.top-news__inner {
  max-width: 75rem;
  padding: 0 3.125rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top-news__inner {
    max-width: 37.5rem;
    padding: 0 1.25rem;
  }
}

.top-news__flex {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(2, auto);
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .top-news__flex {
    align-items: center;
    justify-content: center;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
  }
}

.top-news__header {
  grid-column: 1/2;
  grid-row: 1/2;
}
@media screen and (max-width: 767px) {
  .top-news__header {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}

.top-news__button-wrap {
  grid-column: 1/2;
  grid-row: 2/3;
  margin-top: 5rem;
  max-width: 15.875rem;
}
@media screen and (max-width: 767px) {
  .top-news__button-wrap {
    grid-column: 1/2;
    grid-row: 3/4;
    margin: 2.5rem auto 0;
  }
}

.top-news__list {
  margin-left: 3.125rem;
}
@media screen and (max-width: 767px) {
  .top-news__list {
    margin-top: 2.5rem;
    margin-left: 0;
  }
}

.top-faq {
  margin-top: 8.75rem;
  padding: 6.25rem 0 6.0625rem;
  background-color: #f8f6f2;
  border-radius: 25rem 25rem 0 0;
}
@media screen and (max-width: 767px) {
  .top-faq {
    margin-top: 6.25rem;
    padding: 3.75rem 1.25rem;
    border-radius: 12.5rem 12.5rem 0 0;
  }
}

.top-faq__inner {
  max-width: 58.125rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top-faq__inner {
    max-width: 37.5rem;
  }
}

.top-faq__list {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .top-faq__list {
    margin-top: 2.5rem;
  }
}

.top-information__bg {
  padding-top: 10.625rem;
  background-image: url(../images/top/top-information-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 8.75rem;
}
@media screen and (max-width: 767px) {
  .top-information__bg {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.top-information__inner {
  max-width: 75rem;
  padding: 0 3.125rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top-information__inner {
    max-width: 37.5rem;
    padding: 0 1.25rem;
  }
}

.top-information__flex {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .top-information__flex {
    flex-direction: column;
    gap: 5rem;
  }
}

.top-information__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 27.5rem;
}
@media screen and (max-width: 767px) {
  .top-information__left {
    align-items: center;
    max-width: 100%;
  }
}

.top-information__map-section {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  width: 100%;
  margin-top: 8.3125rem;
}
@media screen and (max-width: 767px) {
  .top-information__map-section {
    margin-top: 5rem;
  }
}

.top-information__map {
  width: 100%;
  max-width: 27.5rem;
}
@media screen and (max-width: 767px) {
  .top-information__map {
    max-width: 100%;
  }
}

.top-information__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 440/360;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-information__map-button {
  display: flex;
  justify-content: flex-start;
}

.top-information__map-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.625rem;
  padding: 0 0.625rem 0.3125rem;
  color: #414141;
  border-bottom: 1px solid #4b6a4b;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .top-information__map-link {
    font-size: 0.875rem;
  }
}

.top-information__map-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-information__map-icon img {
  width: 1rem;
  height: 1rem;
}
@media screen and (max-width: 767px) {
  .top-information__map-icon img {
    width: 0.875rem;
    height: 0.875rem;
  }
}

.top-information__sns {
  background-color: #eff4ef;
  border-radius: 0.9375rem;
  box-shadow: 0.1875rem 0.1875rem 1.875rem rgba(162, 184, 162, 0.3);
  padding: 1.875rem 3.125rem;
  width: 27.5rem;
  position: relative;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .top-information__sns {
    margin-top: 2.5rem;
    width: 100%;
    padding: 1.25rem 1.875rem;
  }
}

.top-information__sns-title {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-size: 4rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #adc0ad;
  position: absolute;
  right: -0.1875rem;
  bottom: -1.25rem;
}
@media screen and (max-width: 767px) {
  .top-information__sns-title {
    font-size: 2.5rem;
    right: 0rem;
    bottom: -0.625rem;
  }
}

.top-information__sns-list {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .top-information__sns-list {
    gap: 0.625rem;
  }
}

.top-information__sns-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.top-information__sns-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.top-information__sns-icon img {
  width: 2.25rem;
  height: 2.25rem;
}
@media screen and (max-width: 767px) {
  .top-information__sns-icon img {
    width: 1.875rem;
    height: 1.875rem;
  }
}

.top-information__sns-text {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #414141;
}
@media screen and (max-width: 767px) {
  .top-information__sns-text {
    font-size: 0.875rem;
  }
}

.top-information__sns-subtext {
  display: block;
  font-size: 0.75rem;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #414141;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .top-information__sns-subtext {
    font-size: 0.625rem;
  }
}

.top-information__right {
  width: 37.5rem;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .top-information__right {
    width: 100%;
  }
}

.top-information__details {
  display: flex;
  flex-direction: column;
}

.top-information__detail-item {
  display: flex;
  padding: 0.59375rem 0;
  border-bottom: 0.0625rem solid #e8e2d9;
}
@media screen and (max-width: 767px) {
  .top-information__detail-item {
    flex-direction: column;
    padding: 0.9375rem 0;
  }
}

.top-information__detail-label {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.45;
  color: #414141;
  padding: 0.625rem 0.9375rem;
  min-width: 7.5rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .top-information__detail-label {
    min-width: auto;
    padding: 0.3125rem 0;
    font-size: 0.875rem;
  }
}

.top-information__detail-content {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0.05em;
  color: #414141;
  padding: 0.625rem 0.9375rem 0.625rem 1.75rem;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .top-information__detail-content {
    padding: 0.3125rem 0;
    font-size: 0.875rem;
  }
}

.top-information__detail-content--products {
  padding: 0.625rem 1rem 0.625rem 1.75rem;
}
@media screen and (max-width: 767px) {
  .top-information__detail-content--products {
    padding: 0.3125rem 0;
  }
}

.top-information__button-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-information__button {
  position: relative;
  overflow: hidden;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-decoration: none;
  background-color: #d39d47;
  padding: 1.875rem 6.25rem;
  border-radius: 5.1875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.875rem;
  box-shadow: 3px 3px 30px 0px rgba(117, 104, 23, 0.25);
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .top-information__button {
    padding: 1.25rem 3.125rem;
    font-size: 1rem;
  }
}

.top-information__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
  z-index: 1;
}

.top-information__button:hover::before {
  left: 0;
}

.top-information__button span {
  position: relative;
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 2.75rem;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .top-information__button span {
    width: 1.875rem;
    height: 1.875rem;
  }
}

.top-information__button span:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 33%;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.0625rem solid #d39d47;
  border-right: 0.0625rem solid #d39d47;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .top-information__button span:before {
    width: 0.5rem;
    height: 0.5rem;
    right: 33%;
  }
}

.top-contact {
  margin-top: 7.5rem;
  padding: 3.75rem 0.625rem;
  background-color: #f8f6f2;
  border-radius: 25rem 25rem 0 0;
}
@media screen and (max-width: 767px) {
  .top-contact {
    margin-top: 5rem;
    padding: 2.5rem 1.25rem;
  }
}

.top-contact__inner {
  max-width: 90rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top-contact__inner {
    max-width: 37.5rem;
  }
}

.top-contact__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.8125rem;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .top-contact__content {
    margin-top: 1.875rem;
    gap: 1.875rem;
  }
}

.top-contact__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #414141;
  text-align: center;
  max-width: 50rem;
}
@media screen and (max-width: 767px) {
  .top-contact__text {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

.top-contact__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5625rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top-contact__info {
    gap: 1.5625rem;
  }
}

.top-contact__phone-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.625rem 0;
  background-color: #ffffff;
  border: 1px solid #c9c1b7;
  border-radius: 0;
  width: 100%;
  max-width: 53.875rem;
}
@media screen and (max-width: 767px) {
  .top-contact__phone-section {
    max-width: 100%;
  }
}

.top-contact__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0 1.875rem 0.3125rem;
  border-bottom: 1px solid #e6ded4;
}
@media screen and (max-width: 767px) {
  .top-contact__phone {
    padding: 0 1.25rem 0.3125rem;
  }
}

.top-contact__phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.3125rem;
  height: 2.3125rem;
}
@media screen and (max-width: 767px) {
  .top-contact__phone-icon {
    width: 1.875rem;
    height: 1.875rem;
  }
}

.top-contact__phone-icon img {
  width: 2.3125rem;
  height: 2.3125rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.top-contact__phone-number {
  font-family: "Shippori Mincho B1", serif;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #4b6a4b;
  text-decoration: none;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .top-contact__phone-number {
    font-size: 1.5rem;
    pointer-events: auto;
  }
}

.top-contact__phone-number:hover {
  opacity: 0.8;
}

.top-contact__business-hours {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.3125rem 0 0;
}
@media screen and (max-width: 767px) {
  .top-contact__business-hours {
    flex-direction: column;
    gap: 0.3125rem;
  }
}

.top-contact__hours,
.top-contact__closed {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.05em;
  color: #414141;
}
@media screen and (max-width: 767px) {
  .top-contact__hours,
  .top-contact__closed {
    font-size: 0.875rem;
  }
}

.top-contact__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.875rem;
  height: 4.875rem;
}
@media screen and (max-width: 767px) {
  .top-contact__buttons {
    flex-direction: column;
    gap: 1.25rem;
    height: auto;
  }
}

.top-contact__button-wrap {
  height: 100%;
}
@media screen and (max-width: 767px) {
  .top-contact__button-wrap {
    height: auto;
    width: 100%;
  }
}

.top-contact__button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  padding: 1.25rem 3.125rem;
  border-radius: 2.4375rem;
  text-decoration: none;
  font-family: "Shippori Mincho B1", serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #ffffff;
  transition: all 0.3s ease;
  height: 100%;
  width: 26rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-contact__button {
    width: 100%;
    padding: 1.0625rem 0.9375rem;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 375px) {
  .top-contact__button {
    font-size: 0.75rem;
    padding: 1.0625rem 0.625rem;
  }
}

.top-contact__button--mail {
  background-color: #d39d47;
  box-shadow: 3px 3px 30px 0px rgba(117, 81, 23, 0.25);
}

.top-contact__button--line {
  background-color: #06c755;
  box-shadow: 3px 3px 30px 0px rgba(0, 97, 40, 0.25);
}

.top-contact__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
  z-index: 1;
}

.top-contact__button:hover::before {
  left: 0;
}

.top-contact__button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-contact__button-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.top-contact__button-icon img {
  width: 2.125rem;
  height: 2.125rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .top-contact__button-icon img {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.top-contact__button-text {
  z-index: 2;
  position: relative;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .top-contact__button-text {
    white-space: normal;
    text-align: center;
  }
}

.main-visual__ct-btn-wrap {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  overflow: hidden;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .main-visual__ct-btn-wrap {
    display: block;
  }
}
.main-visual__ct-btn-wrap.is-visible {
  transform: translateY(0);
}

.main-visual__cantact-btn {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 0.3125rem 0.3125rem;
  background-color: #4B6A4B;
  border-radius: 0.5rem 0.5rem 0 0;
  max-width: 16.25rem;
  margin: 3.625rem auto 0;
}

.main-visual__cta {
  display: none;
}
@media screen and (max-width: 767px) {
  .main-visual__cta {
    position: relative;
    padding: 0.625rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    margin-top: -0.125rem;
    background-color: #E7F2E7;
  }
}

.main-visual__cta-phone {
  background-color: #ffffff;
  border-radius: 1.875rem;
  box-shadow: 0.1875rem 0.1875rem 1.875rem 0 rgba(100, 93, 83, 0.25);
  padding: 0.5rem 1.375rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .main-visual__cta-phone {
    padding: 0.625rem 1.25rem;
    width: 100%;
  }
}

.main-visual__cta-phone-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3125rem;
  padding-bottom: 0.125rem;
  border-bottom: 0.0625rem solid #F8F6F2;
}

.main-visual__cta-phone-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
}

.main-visual__cta-phone-number {
  color: #4B6A4B;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .main-visual__cta-phone-number {
    pointer-events: auto;
  }
}

.main-visual__cta-phone-hours {
  padding-top: 0.125rem;
  color: #414141;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.main-visual__cta-phone-hours span {
  font-size: 0.625rem;
}

.main-visual__cta-line {
  background-color: #06C755;
  border-radius: 1.875rem;
  box-shadow: 0.1875rem 0.1875rem 1.875rem 0 rgba(0, 97, 40, 0.25);
  padding: 0.5625rem 1.375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.375rem;
  width: 10.9375rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .main-visual__cta-line {
    width: 100%;
    padding: 0.625rem 1.25rem;
  }
}
.main-visual__cta-line:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0.1875rem 0.3125rem 2.1875rem 0 rgba(0, 97, 40, 0.35);
}

.main-visual__cta-line-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
}

.main-visual__cta-line-text {
  color: #ffffff;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-align: center;
}

.main-visual__cta-sp-image01 {
  position: absolute;
  top: -1.75rem;
  left: -1.0625rem;
  width: 100%;
  max-width: 3.4375rem;
}

.main-visual__cta-sp-image01 img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 48/85;
}

.main-visual__cta-sp-image02 {
  position: absolute;
  bottom: -2.75rem;
  right: -2.3125rem;
  width: 100%;
  max-width: 7.25rem;
}

.main-visual__cta-sp-image02 img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 116/119;
}

.u-sm {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sm {
    display: none;
  }
}
@media screen and (max-width: 375px) {
  .u-sm {
    display: block;
  }
}

.u-md {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-md {
    display: block;
  }
}
@media screen and (max-width: 375px) {
  .u-md {
    display: block;
  }
}

.u-lg {
  display: none;
}
@media screen and (max-width: 1024px) {
  .u-lg {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.pc-only2 {
  display: block;
}
@media screen and (max-width: 1024px) {
  .pc-only2 {
    display: none;
  }
}

.lg-only {
  display: none;
}
@media screen and (max-width: 1024px) {
  .lg-only {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .lg-only {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */
