@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

img {
  width: 100%;
  height: auto;
}

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

a:hover {
  opacity: 0.6;
}

ul,
ol {
  list-style: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: normal;
}

p {
  margin: 0;
}

.header__loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #1E1E1E;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 1.2s ease, visibility 1.2s ease;
  height: calc(var(--vh, 1vh) * 100);
}
.header__loader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.header__loader .header__loader-inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.header__loader .header__loader-inner-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-animation: logoFadeIn 2s ease forwards;
          animation: logoFadeIn 2s ease forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.header__loader .header__loader-inner-logo img {
  width: 140px;
  height: auto;
  display: block;
}

@supports (-webkit-touch-callout: none) {
  .header__loader {
    height: -webkit-fill-available;
    min-height: 100vh;
  }
  .header__loader .header__loader-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header__loader .header__loader-inner-logo {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }
}
@supports (height: 100dvh) {
  .header__loader {
    height: 100dvh;
  }
}
@media screen and (max-width: 768px) {
  .header__loader {
    height: 100vh;
    height: -webkit-fill-available;
  }
  .header__loader .header__loader-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .header__loader .header__loader-inner-logo {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-top: -10vh;
  }
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .header__loader .header__loader-inner-logo {
    margin-top: -5vh;
  }
}
@-webkit-keyframes logoFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes logoFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
header {
  width: 100%;
  height: 100px;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
}

.header__nav {
  width: 280px;
  height: 340px;
  background-image: url(../images/navi-menu.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  margin-left: 8%;
  position: relative;
  z-index: 100;
}
.header__nav .header__nav-items {
  width: 100%;
  text-align: center;
  align-items: center;
}
.header__nav .nav-items__item {
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 2.4rem;
}
.header__nav .nav-items__item.nav-items__item--logo {
  width: 96px;
  height: 96px;
  margin: 0 auto;
  margin-top: 2.4rem;
}

.header__sp-nav-wrapper .header__sp-nav-logo {
  display: none;
}

.header__hamburger-wrapper {
  width: 200px;
  height: 90px;
  background-image: url(../images/header.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left bottom;
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.header__hamburger-wrapper.header--hidden {
  transform: translateY(-100%);
}

.header__online-shop {
  width: 40px;
  height: 40px;
  margin-left: 48px;
}
.header__online-shop a {
  display: block;
  transition: transform 0.3s ease;
}
.header__online-shop a:hover {
  transform: scale(1.05);
}
.header__online-shop a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__hamburger {
  display: block;
  width: 32px;
  height: 32px;
  position: absolute;
  right: 40px;
  top: 22px;
  transition: ease 0.4s;
}
.header__hamburger span {
  width: 100%;
  height: 2px;
  background-color: #2E2E2E;
  position: relative;
  transition: ease 0.4s;
  display: block;
}
.header__hamburger span:nth-child(1) {
  top: 0;
}
.header__hamburger span:nth-child(2) {
  margin: 10px 0;
}
.header__hamburger span:nth-child(3) {
  top: 0;
}
.header__hamburger:hover {
  opacity: 0.8;
}
.header__hamburger:hover span:nth-child(1) {
  width: 65%;
}
.header__hamburger:hover span:nth-child(2) {
  width: 80%;
}
.header__hamburger.active span:nth-child(1) {
  top: 12px;
  transform: rotate(45deg);
}
.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.active span:nth-child(3) {
  top: -12px;
  transform: rotate(-45deg);
}
.header__hamburger.active:hover span:nth-child(1) {
  width: 100%;
}
.header__hamburger.active:hover span:nth-child(2) {
  width: 100%;
}

.hamburger__nav {
  margin-right: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 100%;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  background-color: #1E1E1E;
  z-index: 999;
  transition: opacity 0.8s ease, visibility 0.8s ease, top 0.4s ease;
  filter: blur(10px);
}
.hamburger__nav .nav__items {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  text-align: center;
  transition: ease 0.8s;
}
.hamburger__nav .nav__items .nav-items__item {
  display: block;
  color: #FFFFFF;
  margin-top: 1.6rem;
  font-family: "Noto Serif JP", serif;
}
.hamburger__nav .nav__items .nav-items__item--logo {
  width: 100px;
  height: 100px;
  margin-top: 2.4rem;
  margin-inline: auto;
}
.hamburger__nav.active {
  opacity: 0.96;
  visibility: visible;
  filter: blur(0px);
}

@media (max-width: 1024px) {
  .header__loader .header__loader-inner-logo img {
    width: 120px;
  }
  .header__nav {
    width: 216px;
    height: 303px;
    margin-left: 4%;
  }
  .header__nav .nav-items__item {
    margin-top: 1.6rem;
  }
  .header__nav .nav-items__item.nav-items__item--logo {
    width: 72px;
    height: 72px;
    margin-top: 1.6rem;
  }
  .header__hamburger-wrapper {
    width: 160px;
    height: 80px;
    padding-top: 16px;
  }
  .header__online-shop {
    width: 40px;
    height: 40px;
    margin-left: 4rem;
  }
  .header__hamburger {
    width: 30px;
    height: 30px;
    right: 2.8rem;
    top: 20px;
  }
  .header__hamburger span:nth-child(2) {
    margin: 9px 0;
  }
  .header__hamburger.active span:nth-child(1) {
    top: 11px;
  }
  .header__hamburger.active span:nth-child(3) {
    top: -11px;
  }
  .hamburger__nav .nav__items .nav-items__item {
    margin-top: 1.4rem;
  }
  .hamburger__nav .nav__items .nav-items__item--logo {
    width: 80px;
    height: 80px;
    margin-top: 1.4rem;
    margin-inline: auto;
  }
}
@media (max-width: 768px) {
  header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.3s ease;
  }
  header.header--hidden {
    transform: translateY(-100%);
  }
  :target {
    scroll-margin-top: 96px;
  }
  .header__loader .header__loader-inner-logo img {
    width: 100px;
    height: auto;
  }
  .header__nav {
    display: none;
  }
  .header__sp-nav-wrapper {
    background-image: url(../images/header-sp.webp);
    background-size: 120% 100%;
    background-position: center bottom;
    background-repeat: no-repeat;
    width: 100%;
    height: 96px;
    z-index: 9999;
  }
  .header__sp-nav-wrapper .header__sp-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    height: 100%;
    margin: 4px auto;
  }
  .header__sp-nav-wrapper .header__sp-nav-logo {
    display: block;
    width: 66px;
    height: auto;
    margin-left: -8px;
    margin-top: -16px;
    overflow: hidden;
  }
  .header__sp-nav-wrapper .header__sp-nav-logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .header__hamburger-wrapper {
    width: 138px;
    height: 60px;
    background-image: none;
    justify-content: center;
    padding-top: 0;
    position: relative;
  }
  .header__online-shop {
    width: 38px;
    height: 38px;
    margin-left: 0;
    margin-top: -6px;
    margin-right: 10px;
  }
  .header__hamburger {
    width: 28px;
    height: 28px;
    right: 0;
    top: 0;
  }
  .header__hamburger span:nth-child(2) {
    margin: 8px 0;
  }
  .header__hamburger.active span:nth-child(1) {
    top: 10px;
  }
  .header__hamburger.active span:nth-child(3) {
    top: -10px;
  }
  .hamburger__nav .nav__items {
    padding: 0;
  }
  .hamburger__nav .nav__items .nav-items__item {
    margin-top: 1.2rem;
  }
  .hamburger__nav .nav__items .nav-items__item--logo {
    margin-top: 1.2rem;
  }
}
@media (max-width: 576px) {
  .header__loader .header__loader-inner-logo img {
    width: 80px;
  }
  .header__sp-nav-wrapper {
    height: 72px;
  }
  .header__sp-nav-wrapper .header__sp-nav-logo {
    width: 56px;
  }
  .header__online-shop {
    width: 34px;
    height: 34px;
    margin-top: 0;
  }
  .header__hamburger {
    width: 26px;
    height: 26px;
    top: 4px;
  }
  .header__hamburger span:nth-child(2) {
    margin: 7px 0;
  }
  .header__hamburger.active span:nth-child(1) {
    top: 9px;
  }
  .header__hamburger.active span:nth-child(3) {
    top: -9px;
  }
  .hamburger__nav .nav__items .nav-items__item--logo {
    width: 72px;
    height: 72px;
    margin-inline: auto;
  }
}
.footer {
  width: 100%;
  background-color: #2E2E2E;
}

.footer__container {
  max-width: 120rem;
  width: 90%;
  margin: 0 auto;
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #FFFFFF;
  padding-block: 76px 48px;
}
.footer__container .footer__wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.footer__inner--left {
  width: 55%;
}

.footer__content {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  gap: 4rem;
}
.footer__content .footer__nav {
  width: 160px;
}
.footer__content .footer__nav .footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__content .footer__sns {
  margin-top: 4px;
  width: 100px;
}
.footer__content .footer__sns .footer__sns-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__content .footer__sns .footer__sns-list .footer__sns-item {
  display: flex;
  gap: 20px;
}
.footer__content .footer__sns .footer__sns-list .footer__sns-item .footer__sns-instagram {
  width: 39px;
  height: 39px;
}
.footer__content .footer__sns .footer__sns-list .footer__sns-item .footer__sns-facebook {
  width: 40px;
  height: 40px;
}
.footer__content .footer__sns .footer__sns-list .footer__sns-item .footer__sns-text {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: normal;
  color: #FFFFFF;
}

.footer__inner--right {
  width: 45%;
}

.footer__map-button {
  width: 140px;
  height: 28px;
  background-color: #FFFFFF;
  text-align: center;
  border-radius: 4px;
  margin-inline: auto 0;
}
.footer__map-button .footer__map-button-link {
  color: #2E2E2E;
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 3em 0 0;
  position: relative;
  margin-bottom: 12px;
}
.footer__map-button .footer__map-button-link::after {
  content: "";
  position: absolute;
  top: 56%;
  right: 1em;
  width: 2.2em;
  height: 1px;
  background-color: #2E2E2E;
  transform: translateY(-50%);
}
.footer__map-button .footer__map-button-link::before {
  content: "";
  position: absolute;
  top: 56%;
  right: 1.1em;
  width: 0.8em;
  height: 0.6em;
  border-top: 1px solid #2E2E2E;
  transform: translateY(-50%) rotate(35deg);
}

.footer__address {
  text-align: right;
  margin-block: 12px 4px;
}
.footer__address p {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 400;
}

.footer__contact-button {
  width: 300px;
  height: 65px;
  background-color: #FFFFFF;
  border-radius: 10px;
  line-height: 65px;
  margin-inline: auto 0;
  margin-block: 16px 12px;
}
.footer__contact-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.footer__contact-button a .footer__contact-button-icon {
  width: 36px;
  height: auto;
  padding-top: 6px;
}
.footer__contact-button a p {
  font-family: "Noto Serif JP", serif;
  color: #2E2E2E;
  font-size: 2rem;
  font-weight: 600;
  padding-bottom: 8px;
}
.footer__contact-button a:hover .footer__contact-button {
  opacity: 0.6;
}

.footer__contact-text {
  display: flex;
  justify-content: flex-end;
}
.footer__contact-text p {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 400;
  margin-right: -12px;
}

.footer__logo {
  width: 424px;
  height: auto;
  margin-top: 16px;
  margin-inline: auto -20px;
}
.footer__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.footer__copyright {
  text-align: center;
  margin-top: 40px;
}
.footer__copyright p {
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .footer__container {
    font-size: 1.6rem;
  }
  .footer__inner--left {
    width: 40%;
  }
  .footer__content .footer__nav {
    width: 150px;
  }
  .footer__content .footer__sns {
    width: 90px;
  }
  .footer__content .footer__sns .footer__sns-list .footer__sns-item .footer__sns-instagram {
    width: 37px;
    height: 37px;
  }
  .footer__content .footer__sns .footer__sns-list .footer__sns-item .footer__sns-facebook {
    width: 38px;
    height: 38px;
  }
  .footer__content .footer__sns .footer__sns-list .footer__sns-item .footer__sns-text {
    font-size: 1.6rem;
  }
  .footer__inner--right {
    width: 60%;
  }
  .footer__address p {
    font-size: 1.6rem;
  }
  .footer__contact-button a p {
    font-size: 1.8rem;
  }
  .footer__contact-text p {
    font-size: 1.6rem;
    margin-right: -12px;
  }
  .footer__logo {
    width: 340px;
    margin-top: 12px;
    margin-inline: auto -12px;
  }
}
@media (max-width: 768px) {
  .footer__container {
    font-weight: normal;
    padding-block: 64px 32px;
  }
  .footer__container .footer__wrapper {
    flex-direction: column;
  }
  .footer__inner--left {
    width: 100%;
    margin-inline: auto;
  }
  .footer__content {
    justify-content: center;
    gap: 4rem;
  }
  .footer__content .footer__nav .footer__nav-list {
    gap: 12px;
    text-align: center;
  }
  .footer__content .footer__sns .footer__sns-list {
    gap: 16px;
  }
  .footer__content .footer__sns .footer__sns-list .footer__sns-item {
    gap: 20px;
  }
  .footer__inner--right {
    width: 100%;
    margin-inline: auto;
    margin-top: 4rem;
  }
  .footer__map-button {
    margin-inline: auto;
  }
  .footer__address {
    text-align: center;
  }
  .footer__contact-button {
    margin-inline: auto;
  }
  .footer__contact-text {
    justify-content: center;
  }
  .footer__logo {
    max-width: 400px;
    width: 100%;
    margin-top: 4.8rem;
    margin-inline: auto;
  }
  .footer__copyright {
    margin-top: 1.6rem;
  }
}
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #2E2E2E;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #F5F3EF;
}

em,
i,
.en,
.num {
  font-family: "Noto Serif JP", serif;
}

h1 {
  font-family: "Noto Serif JP", serif;
  font-size: 4.8rem;
}

h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 8rem;
  line-height: 1;
}

h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
}

h4 {
  font-family: "Noto Serif JP", serif;
  font-size: 2.8rem;
}

h5 {
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
}

h6 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
}

p {
  font-family: "Noto Sans JP", serif;
  font-size: 1.6rem;
  line-height: 1.8;
}

.section {
  padding-top: 12rem;
  overflow: hidden;
}

.section-title {
  max-width: 120rem;
  width: 90%;
  margin: 0 auto;
}
.section-title h2 span {
  font-size: 12rem;
}
.section-title .section-title__line-wrapper {
  position: relative;
  top: 0;
  flex: 1;
}
.section-title .section-title__line-wrapper .section-title__line {
  content: "";
  display: block;
  width: 70%;
  height: 1px;
  background-color: #C2A661;
  position: absolute;
}

.section-title--left {
  text-align: left;
}
.section-title--left .section-title__line-wrapper {
  left: 0;
  margin-left: calc(50% - 50vw);
  max-width: 100vw;
}
.section-title--left .section-title__line-wrapper .section-title__line {
  left: 0;
}

.section-title--right {
  text-align: right;
}
.section-title--right .section-title__line-wrapper {
  right: 0;
  margin-right: calc(50% - 50vw);
}
.section-title--right .section-title__line-wrapper .section-title__line {
  right: 0;
  width: 72%;
  min-width: 800px;
}

.section-title--flex {
  text-align: right;
}
.section-title--flex h2 span {
  font-size: 12rem;
}
.section-title--flex .section-title__line-wrapper {
  position: relative;
  top: 0;
  right: 0;
  margin-right: calc(50% - 50vw);
}
.section-title--flex .section-title__line-wrapper .section-title__line {
  content: "";
  display: block;
  width: 80%;
  height: 1px;
  background-color: #C2A661;
  position: absolute;
  left: 3%;
}

.pc-only {
  display: block;
}

.tb-only {
  display: none;
}

.sp-only {
  display: none;
}

.sm-only {
  display: none;
}

.bold {
  font-weight: bold;
}

.circle-cta a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
}
.circle-cta:hover .circle-cta-text p {
  color: #8B6B32;
}
.circle-cta:hover .circle-button {
  border: 1px solid #8B6B32;
}
.circle-cta:hover .circle-button::before {
  background-color: #8B6B32;
}

.circle-cta-text {
  margin-right: 2.4rem;
}
.circle-cta-text p {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
}

.circle-button {
  display: block;
  position: relative;
  width: 25px;
  height: 25px;
  border: 1px solid #1E1E1E;
  border-radius: 50%;
  top: 14px;
}
.circle-button::before {
  content: "";
  display: block;
  position: absolute;
  left: -30px;
  /* 線の長さ調整 */
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 1px;
  background-color: #1E1E1E;
}

.line {
  position: relative;
}
.line a {
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
}
.line a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #1E1E1E;
  transition: width 0.3s ease;
}
.line a:hover::after {
  width: 100%;
}

.line-white a::after {
  background-color: #FFFFFF;
}

.blur {
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}
.blur img {
  transition: filter 0.4s ease-out, transform 0.4s ease-out;
  filter: blur(0);
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1);
}
.blur::after {
  color: #fff;
  content: "Read More";
  font-family: "Noto Serif JP", serif;
  font-size: 2.8rem;
  font-weight: bold;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin: auto;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  opacity: 0;
  position: absolute;
  transition: opacity 0.2s ease-out;
  transition-delay: 0.2s;
  z-index: 2;
}
.blur:hover img {
  filter: blur(4px);
  transform: scale(1.1);
}
.blur:hover::after {
  opacity: 1;
}

@media (max-width: 1245px) {
  h1 {
    font-size: 4rem;
  }
}
@media (max-width: 1024px) {
  .section {
    padding-top: 9.6rem;
  }
  .section-title h2 span {
    font-size: 9rem;
  }
  .section-title--right .section-title__line-wrapper .section-title__line {
    min-width: 620px;
  }
  .section-title--flex h2 span {
    font-size: 9rem;
  }
  .circle-cta-text p {
    font-size: 2.8rem;
  }
  .blur::after {
    font-size: 2.6rem;
  }
  h2 {
    font-size: 6.4rem;
  }
  h3 {
    font-size: 3rem;
  }
  h4 {
    font-size: 2.4rem;
  }
  h5 {
    font-size: 2rem;
  }
  h6 {
    font-size: 2.4rem;
  }
  p {
    font-size: 1.6rem;
  }
  a {
    font-size: 1.6rem;
  }
  .pc-only {
    display: none;
  }
  .tb-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
  .sm-only {
    display: none;
  }
}
@media (max-width: 768px) {
  .section {
    padding-top: 8rem;
  }
  .section-title h2 span {
    font-size: 8rem;
  }
  .section-title .section-title__line-wrapper .section-title__line {
    min-width: 548px;
  }
  .section-title--flex {
    text-align: center;
  }
  .section-title--flex h2 span {
    font-size: 8rem;
  }
  .section-title--flex .section-title__line-wrapper {
    right: 0;
    left: 18%;
  }
  .section-title--flex .section-title__line-wrapper .section-title__line {
    left: 0;
    width: 60%;
  }
  .circle-cta a {
    gap: 1.6rem;
  }
  .circle-cta-text {
    margin-right: 2.4rem;
  }
  .circle-cta-text p {
    font-size: 2.6rem;
  }
  .circle-button {
    width: 22px;
    height: 22px;
  }
  .circle-button::before {
    left: -26px;
    width: 38px;
  }
  h2 {
    font-size: 5.6rem;
  }
  h3 {
    font-size: 3rem;
  }
  h4 {
    font-size: 2.2rem;
  }
  h5 {
    font-size: 1.8rem;
  }
  h6 {
    font-size: 2.2rem;
  }
  .pc-only {
    display: none;
  }
  .tb-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .sm-only {
    display: none;
  }
}
@media (max-width: 576px) {
  .section {
    padding-top: 6.4rem;
  }
  .section-title h2 span {
    font-size: 7.2rem;
  }
  .section-title .section-title__line-wrapper .section-title__line {
    width: 95%;
    min-width: 95%;
  }
  .section-title--flex h2 span {
    font-size: 5.2rem;
  }
  .section-title--flex .section-title__line-wrapper .section-title__line {
    width: 60%;
  }
  .circle-cta-text {
    margin-right: 2.4rem;
  }
  .circle-cta-text p {
    font-size: 2.4rem;
  }
  h2 {
    font-size: 4.8rem;
  }
  h3 {
    font-size: 2.4rem;
  }
  h4 {
    font-size: 2rem;
  }
  h5 {
    font-size: 1.6rem;
  }
  h6 {
    font-size: 2rem;
  }
  p,
a {
    font-size: 1.4rem;
  }
  .pc-only {
    display: none;
  }
  .tb-only {
    display: none;
  }
  .sp-only {
    display: none;
  }
  .sm-only {
    display: block;
  }
}
.fade-in {
  opacity: 0;
  transition: opacity 1.5s ease-in;
}

.fade-in.in-view {
  opacity: 1;
}

.fade-in-delay-1 {
  opacity: 0;
  transition: opacity 1.5s ease-in 0.3s;
}

.fade-in-delay-1.in-view {
  opacity: 1;
}

.fade-in-delay-2 {
  opacity: 0;
  transition: opacity 1.5s ease-in 0.6s;
}

.fade-in-delay-2.in-view {
  opacity: 1;
}

.fade-in-delay-3 {
  opacity: 0;
  transition: opacity 1.5s ease-in 0.9s;
}

.fade-in-delay-3.in-view {
  opacity: 1;
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  /* 下から */
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

@-webkit-keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}
.float-animation {
  -webkit-animation: float 3s ease-in-out infinite;
          animation: float 3s ease-in-out infinite;
}

@media (max-width: 767px) {
  .float-animation-sp {
    -webkit-animation: float 3s ease-in-out infinite;
            animation: float 3s ease-in-out infinite;
  }
}

@-webkit-keyframes arrowMove {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(8px);
  }
  100% {
    transform: translateY(-50%) translateX(0);
  }
}

@keyframes arrowMove {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(8px);
  }
  100% {
    transform: translateY(-50%) translateX(0);
  }
}
@-webkit-keyframes arrowMoveHover {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(10px);
  }
  100% {
    transform: translateY(-50%) translateX(0);
  }
}
@keyframes arrowMoveHover {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(10px);
  }
  100% {
    transform: translateY(-50%) translateX(0);
  }
}
.arrow-move-animation {
  -webkit-animation: arrowMove 1.5s ease-in-out infinite;
          animation: arrowMove 1.5s ease-in-out infinite;
}

.main-visual {
  background-image: url(../images/mv-pc.webp);
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  width: 100%;
  height: 56vw;
  margin-top: -100px;
  position: relative;
}

.main-visual__inner {
  width: 100%;
  margin: 0 auto;
}
.main-visual__inner .main-visual__title {
  margin-inline: 0 auto;
  position: absolute;
  bottom: 20%;
  left: 10%;
}
.main-visual__inner .main-visual__title .main-visual__title-text-02 {
  margin-left: 148px;
}

.gradient-gold {
  background: linear-gradient(180deg, #F6E3B4, #C2A661, #8B6B32);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.main-visual__cta-wrapper {
  width: 100%;
  height: 40px;
  background-color: #C2A661;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: 0;
}
.main-visual__cta-wrapper p {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  color: #1E1E1E;
  font-weight: 600;
}
.main-visual__cta-wrapper .main-visual__cta {
  width: 300px;
  height: 30px;
}
.main-visual__cta-wrapper .main-visual__cta .main-visual__cta-link {
  width: 100%;
  height: 100%;
  border: 1px solid #FFFFFF;
  background-color: #FFFFFF;
  color: #1E1E1E;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  transition: ease 0.8s;
}
.main-visual__cta-wrapper .main-visual__cta .main-visual__cta-link .main-visual__cta-arrow .main-visual__cta-arrow-line {
  content: "";
  position: relative;
  top: 2px;
  width: 2.4em;
  height: 1px;
  background-color: #000000;
  transform: translateY(-50%);
  display: block;
}
.main-visual__cta-wrapper .main-visual__cta .main-visual__cta-link .main-visual__cta-arrow .main-visual__cta-arrow-line::before {
  content: "";
  position: absolute;
  right: 2px;
  width: 0.8em;
  height: 0.6em;
  border-top: 1px solid #000000;
  transform: translateY(-50%) rotate(35deg);
}
.main-visual__cta-wrapper .main-visual__cta a:hover {
  background-color: #1E1E1E;
  color: #FFFFFF;
  opacity: 1;
}
.main-visual__cta-wrapper .main-visual__cta a:hover p {
  background: linear-gradient(180deg, #F6E3B4, #C2A661, #8B6B32);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.main-visual__cta-wrapper .main-visual__cta a:hover .main-visual__cta-arrow .main-visual__cta-arrow-line {
  background-color: #F6E3B4;
  -webkit-animation: arrowMoveHover 1.5s ease-in-out infinite;
          animation: arrowMoveHover 1.5s ease-in-out infinite;
}
.main-visual__cta-wrapper .main-visual__cta a:hover .main-visual__cta-arrow .main-visual__cta-arrow-line::before {
  border-top: 1px solid #F6E3B4;
}

@media (max-width: 1245px) {
  .main-visual__inner .main-visual__title h1 {
    font-size: 4rem;
  }
  .main-visual__inner .main-visual__title .main-visual__title-text-02 {
    margin-left: 124px;
  }
}
@media (max-width: 1024px) {
  .main-visual__inner .main-visual__title {
    bottom: 70%;
    left: 36%;
  }
  .main-visual__inner .main-visual__title h1 {
    font-size: 3.2rem;
  }
  .main-visual__inner .main-visual__title .main-visual__title-text-02 {
    margin-left: 100px;
  }
  .main-visual__cta-wrapper p {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .main-visual {
    background-image: url(../images/mv-sp.webp);
    background-position: center;
    height: 920px;
    margin-top: -96px;
  }
  .main-visual__inner .main-visual__title {
    margin-inline: auto;
    position: static;
    width: 416px;
    margin-top: 88px;
  }
  .main-visual__inner .main-visual__title h1 {
    font-size: 4rem;
    line-height: 1.5;
  }
  .main-visual__inner .main-visual__title .main-visual__title-text-02 {
    margin-left: 124px;
  }
  .main-visual__cta-wrapper {
    justify-content: center;
    flex-direction: column;
    gap: 8px;
  }
  .main-visual__cta-wrapper p {
    font-size: 1.6rem;
  }
  .main-visual__cta-wrapper .main-visual__cta-text {
    position: absolute;
    top: -28px;
    color: #FFFFFF;
  }
  .main-visual__cta-wrapper .main-visual__cta-text .sp-none {
    display: none;
  }
  .main-visual__cta-wrapper .main-visual__cta-text::before, .main-visual__cta-wrapper .main-visual__cta-text::after {
    font-weight: normal;
    font-size: 2.4rem;
    position: absolute;
    top: -10px;
  }
  .main-visual__cta-wrapper .main-visual__cta-text::before {
    content: "＼";
    left: -30px;
  }
  .main-visual__cta-wrapper .main-visual__cta-text::after {
    content: "／";
    right: -30px;
  }
}
@media (max-width: 576px) {
  .main-visual {
    height: 540px;
  }
  .main-visual__inner .main-visual__title {
    max-width: 290px;
    width: 95%;
    margin-top: 40px;
  }
  .main-visual__inner .main-visual__title h1 {
    font-size: 2.8rem;
  }
  .main-visual__inner .main-visual__title .main-visual__title-text-02 {
    margin-left: 88px;
  }
  .main-visual__cta-wrapper p {
    font-size: 1.4rem;
  }
  .main-visual__cta-wrapper .main-visual__cta-text::before, .main-visual__cta-wrapper .main-visual__cta-text::after {
    font-size: 1.8rem;
    top: -4px;
  }
  .main-visual__cta-wrapper .main-visual__cta-text::before {
    content: "＼";
    left: -20px;
  }
  .main-visual__cta-wrapper .main-visual__cta-text::after {
    content: "／";
    right: -20px;
  }
}
.crazy-grape__content-wrapper--01 {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-top: -80px;
  margin-bottom: 12rem;
}

.crazy-grape__image-01 {
  width: 50%;
  max-width: 900px;
  height: auto;
  text-align: right;
}
.crazy-grape__image-01 img {
  box-shadow: -8px 8px 30px rgba(157, 150, 137, 0.75);
}

.crazy-grape__illustration-01 {
  max-width: 260px;
  width: 30%;
}
.crazy-grape__illustration-01-inner {
  position: relative;
  top: 70px;
  left: 20%;
}

.crazy-grape__content-wrapper--02 {
  display: flex;
  justify-content: space-between;
}

.crazy-grape__image-02 {
  width: 45%;
  max-width: 900px;
  height: auto;
  text-align: left;
}
.crazy-grape__image-02 img {
  box-shadow: -8px 8px 30px rgba(157, 150, 137, 0.75);
}

.crazy-grape__content-text {
  width: 45%;
  margin-top: 4rem;
}
.crazy-grape__content-text .crazy-grape__content-title {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 4rem;
  position: relative;
}
.crazy-grape__content-text .crazy-grape__content-title::before {
  content: "";
  display: block;
  width: 35%;
  height: 1px;
  background-color: #707070;
  position: absolute;
  top: 18px;
  left: -40%;
}
.crazy-grape__content-text .crazy-grape__content-text-wrapper p {
  font-size: 1.6rem;
  font-weight: normal;
  margin-bottom: 2.4rem;
}
.crazy-grape__content-text .crazy-grape__content-text-wrapper p .en {
  font-size: 1.7rem;
  font-weight: 600;
}
.crazy-grape__content-text .crazy-grape__content-text-wrapper p:last-child {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 600;
}
.crazy-grape__content-text .crazy-grape__content-text-wrapper p:last-child .en {
  font-size: 2.1rem;
}

.crazy-grape__illustration-02 {
  max-width: 270px;
  width: 30%;
  margin: 10px 62px 160px auto;
}

.crazy-grape__illustration-01-sp,
.crazy-grape__illustration-02-sp {
  display: none;
}

@media (max-width: 1024px) {
  .crazy-grape__content-wrapper--01 {
    margin-top: -56px;
    margin-bottom: 9.6rem;
  }
  .crazy-grape__illustration-01 {
    max-width: 220px;
  }
  .crazy-grape__content-text {
    width: 50%;
    margin-top: 3.2rem;
  }
  .crazy-grape__content-text .crazy-grape__content-title {
    font-size: 2.2rem;
    margin-bottom: 3.2rem;
  }
  .crazy-grape__content-text .crazy-grape__content-title::before {
    top: 20px;
    left: -37%;
  }
  .crazy-grape__content-text .crazy-grape__content-text-wrapper p {
    margin-bottom: 1.6rem;
  }
  .crazy-grape__content-text .crazy-grape__content-text-wrapper p:last-child {
    font-size: 1.8rem;
  }
  .crazy-grape__content-text .crazy-grape__content-text-wrapper p:last-child .en {
    font-size: 1.9rem;
  }
  .crazy-grape__illustration-02 {
    max-width: 200px;
    margin: 0px 62px 140px auto;
  }
}
@media (max-width: 768px) {
  .crazy-grape__content-wrapper--01 {
    display: block;
    margin-top: 40px;
    margin-bottom: 6.4rem;
  }
  .crazy-grape__content-container {
    position: relative;
    padding-bottom: 9.6rem;
  }
  .crazy-grape__image-01 {
    max-width: 600px;
    width: 100%;
    margin-inline: auto;
  }
  .crazy-grape__illustration-01 {
    max-width: 360px;
    width: 40%;
    position: relative;
  }
  .crazy-grape__illustration-01-inner {
    position: absolute;
    top: 690px;
  }
  .crazy-grape__content-wrapper--02 {
    display: flex;
    flex-direction: column-reverse;
  }
  .crazy-grape__image-02 {
    max-width: 600px;
    width: 100%;
    margin-inline: auto;
  }
  .crazy-grape__content-text {
    width: 90%;
    max-width: 410px;
    margin-inline: auto;
    margin-top: 0;
    margin-bottom: 250px;
  }
  .crazy-grape__content-text .crazy-grape__content-text-wrapper p .en {
    font-size: 1.7rem;
  }
  .crazy-grape__illustration-02 {
    max-width: 156px;
    position: absolute;
    top: 520px;
    right: 40px;
    margin: 0;
  }
}
@media (max-width: 576px) {
  .crazy-grape__content-wrapper--01 {
    margin-top: 24px;
  }
  .crazy-grape__illustration-01,
.crazy-grape__illustration-02 {
    display: none;
  }
  .crazy-grape__content-text {
    margin-bottom: 164px;
    padding-left: 16px;
  }
  .crazy-grape__content-text .crazy-grape__content-title {
    font-size: 1.8rem;
    margin-bottom: 2.4rem;
  }
  .crazy-grape__content-text .crazy-grape__content-title::before {
    top: 16px;
    left: -36%;
  }
  .crazy-grape__content-text .crazy-grape__content-text-wrapper {
    position: relative;
  }
  .crazy-grape__content-text .crazy-grape__content-text-wrapper p {
    font-size: 1.4rem;
  }
  .crazy-grape__content-text .crazy-grape__content-text-wrapper p:last-child {
    font-size: 1.4rem;
  }
  .crazy-grape__content-text .crazy-grape__content-text-wrapper p:last-child .en {
    font-size: 1.5rem;
  }
  .crazy-grape__content-text .crazy-grape__content-text-wrapper p .en {
    font-size: 1.5rem;
  }
  .crazy-grape__illustration-01-sp,
.crazy-grape__illustration-02-sp {
    display: block;
  }
  .crazy-grape__illustration-01-sp {
    width: 36%;
    position: absolute;
    left: -8%;
    bottom: -24%;
  }
  .crazy-grape__illustration-02-sp {
    width: 24%;
    position: absolute;
    top: 20px;
    right: -5%;
  }
}
.passion-pride__title-wrapper {
  margin: -80px auto 0;
}

.passion-pride__content-container {
  display: flex;
}

.one {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 100vh;
}

.bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all 0.5s ease 0s;
}

.bg-wrapper {
  background-color: #FFFFFF;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all 0.5s ease 0s;
}

.bg-wrapper-02 {
  z-index: -5;
}

.bg-wrapper-03 {
  z-index: -3;
}

.show .bg {
  opacity: 1;
}
.show .bg.bg_01 {
  opacity: 0.35;
}
.show .bg.bg_02 {
  opacity: 0.35;
}
.show .bg.bg_03 {
  opacity: 0.35;
}

.show .bg-wrapper {
  opacity: 1;
}

/* showクラスが付いていない要素は非表示 */
.one:not(.show) .bg {
  opacity: 0;
}

.bg.bg_01 {
  background-image: url(../images/passion-pride-image-01.webp);
  z-index: -6;
}

.bg.bg_02 {
  background-image: url(../images/passion-pride-image-02.webp);
  z-index: -4;
}

.bg.bg_03 {
  background-image: url(../images/passion-pride-image-03.webp);
  z-index: -2;
}

.onebox {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
  background: #ffffff;
}

.onebox img {
  width: 100%;
  height: auto;
  vertical-align: top;
  margin-bottom: 15px;
}

.onebox p {
  text-align: center;
  margin: 0;
}

.passion-pride__content-wrapper {
  max-width: 120rem;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.passion-pride__content-wrapper .passion-pride__content-image {
  flex: 1;
  max-width: 700px;
  width: 70%;
  overflow: hidden;
  margin-left: calc(50% - 50vw);
  padding: 30px 37px 30px 0;
}
.passion-pride__content-wrapper .passion-pride__content-image:nth-child(2) {
  padding: 30px 0 30px 37px;
}
.passion-pride__content-wrapper img {
  box-shadow: 8px 8px 30px rgba(157, 150, 137, 0.75);
}
.passion-pride__content-wrapper img:nth-child(2) {
  box-shadow: -8px 8px 30px rgba(157, 150, 137, 0.75);
}

.passion-pride__content-wrapper--01 .passion-pride__content-image {
  text-align: center;
}
.passion-pride__content-wrapper--01 .passion-pride__content-image p {
  font-family: "Noto Sans JP", serif;
  font-size: 1.8rem;
  font-weight: 400;
}

.passion-pride__content-title-wrapper h5 {
  font-weight: 600;
}

.passion-pride__content-inner {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 24px 40px 40px 40px;
  width: 620px;
  margin-left: -64px;
  margin-bottom: 1.2rem;
}

.passion-pride__content-text--right-01 {
  margin-bottom: 4rem;
}

.passion-pride__content-title-wrapper {
  text-align: right;
  margin-bottom: 20px;
  position: relative;
}
.passion-pride__content-title-wrapper h3 {
  color: #3a3a3a;
  font-size: 50px;
  font-weight: 700;
}
.passion-pride__content-title-wrapper h5 {
  position: relative;
}
.passion-pride__content-title-wrapper h5::before {
  content: "";
  position: absolute;
  right: 264px;
  top: 50%;
  transform: translateY(-50%);
  width: 252px;
  height: 0.5px;
  background-color: #2e2e2e;
}

.passion-pride__content-text-wrapper p {
  margin-bottom: 16px;
}
.passion-pride__content-text-wrapper p .maker-text {
  font-weight: 600;
  background: linear-gradient(transparent 60%, rgba(168, 198, 134, 0.6) 60%);
}

.passion-pride__content-text--left {
  margin-bottom: 0.8rem;
}

.passion-pride__content-wrapper--reverse .passion-pride__content-inner {
  margin-left: 0;
  margin-right: -64px;
  z-index: 2;
}
.passion-pride__content-wrapper--reverse .passion-pride__content-inner span {
  background: none;
}
.passion-pride__content-wrapper--reverse .passion-pride__content-image {
  margin-left: 0;
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}

.passion-pride__content-title-wrapper--02 h5::before {
  width: 254px;
  right: 244px;
}

.passion-pride__content-title-wrapper--03 h5::before {
  width: 196px;
  right: 318px;
}

@media (max-width: 1245px) {
  .passion-pride__content-wrapper {
    flex-direction: column;
    margin-top: 12rem;
    margin-bottom: 12rem;
  }
  .passion-pride__content-wrapper--reverse {
    flex-direction: column-reverse;
  }
  .passion-pride__content-wrapper .passion-pride__content-image {
    width: 80%;
  }
  .passion-pride__content-wrapper .passion-pride__content-left {
    align-self: flex-start;
  }
  .passion-pride__content-wrapper .passion-pride__content-right {
    align-self: flex-end;
  }
  .passion-pride__content-wrapper .passion-pride__content-text--right,
.passion-pride__content-wrapper .passion-pride__content-text--left {
    margin-top: -56px;
    z-index: -1;
  }
  .passion-pride__content-wrapper .passion-pride__content-text--right.passion-pride__content-text--right-01,
.passion-pride__content-wrapper .passion-pride__content-text--left.passion-pride__content-text--right-01 {
    margin-top: -88px;
  }
  .passion-pride__content-wrapper--01 .passion-pride__content-image {
    text-align: left;
  }
  .passion-pride__content-wrapper--01 .passion-pride__content-image p {
    font-size: 1.6rem;
    margin-left: 32px;
  }
  .passion-pride__content-wrapper--03 {
    margin-bottom: 24rem;
  }
}
@media (max-width: 768px) {
  .passion-pride__title-wrapper {
    margin: -64px auto 0;
  }
  .passion-pride__content-wrapper {
    width: 100%;
  }
  .passion-pride__content-wrapper .passion-pride__content-image {
    width: 100%;
    max-width: 600px;
    margin-inline: auto;
    padding: 30px 0 30px 0;
  }
  .passion-pride__content-wrapper .passion-pride__content-image:nth-child(2) {
    padding: 30px 0 30px 0;
  }
  .passion-pride__content-wrapper .passion-pride__content-title-wrapper h3 {
    font-size: 48px;
  }
  .passion-pride__content-wrapper .passion-pride__content-title-wrapper h5 {
    margin-block: 0 -8px;
  }
  .passion-pride__content-wrapper .passion-pride__content-title-wrapper h5::before {
    width: 234px;
    right: 210px;
  }
  .passion-pride__content-wrapper .passion-pride__content-inner {
    align-self: center;
    max-width: 600px;
    width: 90%;
    line-height: 1.5;
    margin-inline: auto;
    padding: 16px 32px 32px 32px;
  }
  .passion-pride__content-wrapper .passion-pride__content-text--right,
.passion-pride__content-wrapper .passion-pride__content-text--left {
    margin-top: 0;
    z-index: 0;
  }
  .passion-pride__content-wrapper .passion-pride__content-text--right.passion-pride__content-text--right-01,
.passion-pride__content-wrapper .passion-pride__content-text--left.passion-pride__content-text--right-01 {
    margin-top: 0;
  }
  .passion-pride__content-title-wrapper,
.passion-pride__content-text-wrapper {
    max-width: 492px;
    width: 100%;
    margin-inline: auto;
  }
  .passion-pride__content-text-wrapper p:first-child {
    margin-bottom: 12px;
  }
  .passion-pride__content-wrapper--01 .passion-pride__content-image {
    text-align: center;
  }
  .passion-pride__content-wrapper--01 .passion-pride__content-image p {
    font-size: 1.8rem;
    margin-left: 0;
  }
  .passion-pride__content-wrapper--03 .passion-pride__content-title-wrapper h5::before {
    width: 180px;
    right: 250px;
  }
}
@media (max-width: 576px) {
  .one {
    min-height: 90vh;
  }
  .passion-pride__content-wrapper .passion-pride__content-title-wrapper h3 {
    font-size: 36px;
  }
  .passion-pride__content-wrapper .passion-pride__content-title-wrapper h5::before {
    width: 28%;
    right: 175px;
  }
  .passion-pride__content-wrapper .passion-pride__content-inner {
    width: 100%;
    padding: 16px 8px 32px 8px;
  }
  .passion-pride__content-title-wrapper,
.passion-pride__content-text-wrapper {
    width: 80%;
  }
  .passion-pride__content-wrapper--01 .passion-pride__content-image p {
    font-size: 1.4rem;
    margin-left: 0;
  }
  .passion-pride__content-wrapper--02 .passion-pride__content-title-wrapper h5::before {
    right: 166px;
  }
  .passion-pride__content-wrapper--03 .passion-pride__content-title-wrapper h5::before {
    right: 205px;
  }
}
.news {
  position: relative;
  background-color: #F5F3EF;
}

.news__background {
  position: relative;
  height: 600px;
  z-index: 1;
}

.news__background-image {
  background-image: url(../images/news-background-pc.webp);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: 95vw 100%;
  z-index: 2;
}

.container-flex {
  max-width: 120rem;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-block: 120px;
}

.news__inner--left {
  width: 64%;
  padding-top: 1.6rem;
  padding-left: 4rem;
}

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

.news__item {
  display: flex;
  align-items: center;
  padding-block: 2.4rem;
  padding-left: 1.6rem;
  border-bottom: 1px dashed #757575;
}
.news__item:first-child {
  border-top: 1px dashed #757575;
}
.news__item .news__date-wrapper {
  display: flex;
}
.news__item .news__date-wrapper .news__date {
  font-size: 1.6rem;
  color: #2E2E2E;
  font-weight: 600;
  margin: 0;
  min-width: 8rem;
  flex-shrink: 0;
}
.news__item .news__label {
  background-color: #2E2E2E;
  width: 80px;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0.8rem 0.8rem;
  border-radius: 5px;
  text-align: center;
  margin-inline: 2.4rem;
  flex-shrink: 0;
  line-height: 1;
}
.news__item .news__content {
  display: flex;
  align-items: center;
  flex: 1;
  margin: 0;
}
.news__item .news__content .news__text {
  font-size: 1.6rem;
  color: #2E2E2E;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

.news__inner--right {
  width: 30%;
}

.news__title-wrapper {
  margin-bottom: 4.8rem;
}
.news__title-wrapper h2::after {
  width: 34%;
}

.news__cta-wrapper {
  text-align: right;
  margin-top: 12rem;
}
.news__cta-wrapper:hover .circle-cta-link {
  color: #8B6B32;
}

.news__cta {
  display: inline-flex;
  align-items: center;
  color: #2E2E2E;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
  gap: 24px;
}
.news__cta:hover .circle-cta-text p {
  color: #8B6B32;
}
.news__cta:hover .circle-button {
  border: 1px solid #8B6B32;
}
.news__cta:hover .circle-button::before {
  background-color: #8B6B32;
}

@media (max-width: 1024px) {
  .news__background {
    height: 640px;
  }
  .container-flex {
    padding-top: 130px;
  }
  .news__inner--left {
    width: 64%;
  }
  .news__item {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 0 2rem 1.6rem;
    position: relative;
    gap: 4px;
  }
  .news__item .news__label {
    padding: 0.4rem 0.8rem;
    margin-inline: 1.6rem;
    line-height: 1.3;
  }
  .news__inner--right {
    width: 30%;
  }
}
@media (max-width: 768px) {
  .news__background {
    height: 800px;
  }
  .news__background-image {
    background-image: none;
  }
  .container-flex {
    width: 100%;
    flex-direction: column-reverse;
    padding-top: 0;
  }
  .news__inner--left {
    width: 100%;
    margin-top: 12px;
    background-image: url(../images/news-background-sp.webp);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: 1200px auto;
    height: 680px;
    z-index: 2;
    padding-top: 120px;
    padding-left: 0;
  }
  .news__list {
    max-width: 120rem;
    width: 90%;
    margin-inline: auto;
    padding-inline: 48px;
  }
  .news__inner--right {
    width: 100%;
  }
  .news__title-wrapper {
    margin-bottom: 0;
  }
  .news__cta-wrapper {
    text-align: center;
    margin-top: 0;
    position: absolute;
    bottom: 72px;
    left: 38%;
    z-index: 2;
  }
  .news__cta {
    gap: 16px;
  }
}
@media (max-width: 576px) {
  .news__inner--left {
    background-position: center;
    background-size: 1250px auto;
  }
  .news__list {
    padding-inline: 8px;
  }
  .news__item .news__date-wrapper .news__date {
    font-size: 1.5rem;
  }
  .news__item .news__label {
    left: 100px;
    padding: 4px 8px;
    margin-top: 4px;
  }
  .news__item .news__content .news__text {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .news__cta-wrapper {
    bottom: 110px;
    left: 32%;
  }
}
.luxury-grapes {
  position: relative;
  background-color: #F5F3EF;
  z-index: 1;
}

.luxury-grapes__title-wrapper .luxury-grapes__title-line .section-title__line {
  width: 75%;
  min-width: 890px;
}
.luxury-grapes__title-wrapper .luxury-grapes__title-02 span {
  font-size: 3.2rem;
  margin-left: 16px;
}

.luxury-grapes__content-wrapper {
  max-width: 120rem;
  width: 90%;
  margin: 56px auto 0;
}

.luxury-grapes__content-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12rem;
}
.luxury-grapes__content-inner:nth-child(2) {
  margin-bottom: 16rem;
}
.luxury-grapes__content-inner .luxury-grapes__content {
  width: 50%;
}
.luxury-grapes__content-inner .luxury-grapes__content-image {
  box-shadow: 8px 8px 30px rgba(157, 150, 137, 0.75);
}
.luxury-grapes__content-inner .luxury-grapes__content-image .blur-01::after {
  content: "Shine Muscat";
}
.luxury-grapes__content-inner .luxury-grapes__content-image .blur-02::after {
  content: "Queen Rouge";
}
.luxury-grapes__content-inner .luxury-grapes__content-text-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.luxury-grapes__content-inner .luxury-grapes__content-text-wrapper .luxury-grapes__content-text-inner {
  max-width: 420px;
  width: 80%;
}
.luxury-grapes__content-inner .luxury-grapes__content-text-wrapper .luxury-grapes__content-text {
  margin-block: 32px 48px;
}
.luxury-grapes__content-inner .luxury-grapes__content-text-wrapper .luxury-grapes__content-cta-text p {
  font-family: "Noto Serif JP", serif;
  font-size: 2.8rem;
}

.luxury-grapes__online-shop {
  margin-bottom: 16rem;
}
.luxury-grapes__online-shop .luxury-grapes__online-shop-inner {
  width: 500px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 0.8rem;
}
.luxury-grapes__online-shop .luxury-grapes__online-shop-inner h5 {
  font-size: 2.2rem;
  font-weight: 600;
  position: relative;
  padding-left: 12px;
}
.luxury-grapes__online-shop .luxury-grapes__online-shop-inner h5::before, .luxury-grapes__online-shop .luxury-grapes__online-shop-inner h5::after {
  font-weight: normal;
  font-size: 2.4rem;
  position: absolute;
  top: 0;
}
.luxury-grapes__online-shop .luxury-grapes__online-shop-inner h5::before {
  content: "＼";
  left: 2%;
}
.luxury-grapes__online-shop .luxury-grapes__online-shop-inner h5::after {
  content: "／";
  right: 2%;
}

.luxury-grapes__online-shop-button {
  background-color: #1E1E1E;
  border: 1px solid #1E1E1E;
  width: 520px;
  padding: 48px 16px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 8px 8px 30px rgba(157, 150, 137, 0.75);
  transition: all 0.8s ease-in-out;
}
.luxury-grapes__online-shop-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.luxury-grapes__online-shop-button a .luxury-grapes__online-shop-image {
  width: 56px;
  height: 56px;
}
.luxury-grapes__online-shop-button a .luxury-grapes__online-shop-text p {
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  color: #FFFFFF;
  font-weight: 600;
}
.luxury-grapes__online-shop-button a .luxury-grapes__online-shop-arrow {
  width: 32px;
  padding-top: 4px;
}
.luxury-grapes__online-shop-button a .luxury-grapes__online-shop-arrow .arrow-button {
  position: relative;
}
.luxury-grapes__online-shop-button a .luxury-grapes__online-shop-arrow .arrow-button::before {
  content: "";
  position: absolute;
  left: 0px;
  width: 16px;
  height: 16px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(135deg);
  top: 50%;
  transform-origin: center;
  translate: 0 -50%;
}
.luxury-grapes__online-shop-button:hover {
  background: linear-gradient(180deg, #F6E3B4, #C2A661, #8B6B32);
  border: 1px solid #F6E3B4;
  transition: all 0.8s ease-in-out;
}
.luxury-grapes__online-shop-button:hover .luxury-grapes__online-shop-image img {
  filter: brightness(0.12) saturate(100%);
}
.luxury-grapes__online-shop-button:hover .luxury-grapes__online-shop-text p {
  color: #1E1E1E;
}
.luxury-grapes__online-shop-button:hover .luxury-grapes__online-shop-arrow .arrow-button::before {
  border-top: 2px solid #1E1E1E;
  border-left: 2px solid #1E1E1E;
}

.luxury-grapes__delivery {
  max-width: 120rem;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 4rem;
}

.luxury-grapes__delivery-background {
  width: 100%;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding-block: 4.8rem 6.4rem;
  border-radius: 30px;
  box-shadow: 8px 8px 30px rgba(157, 150, 137, 0.75);
}

.luxury-grapes__delivery-inner {
  max-width: 880px;
  width: 90%;
  margin: 0 auto;
}
.luxury-grapes__delivery-inner .luxury-grapes__delivery-title h3 {
  text-align: center;
  font-size: 4rem;
  font-weight: normal;
  position: relative;
}
.luxury-grapes__delivery-inner .luxury-grapes__delivery-title h3::before {
  content: "";
  position: absolute;
  right: 25%;
  width: 50%;
  height: 1px;
  background-color: #2e2e2e;
  bottom: 4px;
}
.luxury-grapes__delivery-inner .luxury-grapes__delivery-text {
  margin-top: 4rem;
}
.luxury-grapes__delivery-inner .luxury-grapes__delivery-text dt {
  display: flex;
  justify-content: flex-start;
}
.luxury-grapes__delivery-inner .luxury-grapes__delivery-text dt::before {
  content: "■";
  margin-right: 4px;
  color: #2E2E2E;
}
.luxury-grapes__delivery-inner .luxury-grapes__delivery-text dd {
  margin-block: 4px 12px;
}

@media (max-width: 1024px) {
  .luxury-grapes__title-wrapper .luxury-grapes__title-line .section-title__line {
    max-width: 640px;
    width: 80%;
    min-width: 520px;
  }
  .luxury-grapes__title-wrapper .luxury-grapes__title-02 span {
    font-size: 2.6rem;
    margin-left: 1.2rem;
  }
  .luxury-grapes__content-inner {
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.6rem;
    margin-bottom: 9.6rem;
  }
  .luxury-grapes__content-inner .luxury-grapes__content-image {
    min-width: 320px;
    width: 45%;
  }
  .luxury-grapes__content-inner .luxury-grapes__content-text-wrapper {
    width: 55%;
  }
  .luxury-grapes__content-inner .luxury-grapes__content-image .blur-01::after {
    content: "Shine Muscat";
    font-size: 2.6rem;
  }
  .luxury-grapes__content-inner .luxury-grapes__content-image .blur-02::after {
    content: "Queen Rouge";
    font-size: 2.6rem;
  }
  .luxury-grapes__content-inner .luxury-grapes__content-text-wrapper .luxury-grapes__content-title {
    font-size: 2.8rem;
    line-height: 1.2;
  }
  .luxury-grapes__content-inner .luxury-grapes__content-text-wrapper .luxury-grapes__content-text {
    margin-block: 20px 24px;
  }
  .luxury-grapes__content-inner .luxury-grapes__content-text-wrapper .luxury-grapes__content-cta-text p {
    font-size: 2.4rem;
  }
  .luxury-grapes__delivery {
    padding-bottom: 4rem;
  }
  .luxury-grapes__delivery-background {
    padding-block: 4.8rem 6.4rem;
  }
  .luxury-grapes__delivery-inner .luxury-grapes__delivery-title h3 {
    font-size: 3rem;
  }
  .luxury-grapes__delivery-inner .luxury-grapes__delivery-title h3::before {
    right: 25%;
    width: 50%;
    height: 1px;
    bottom: 4px;
  }
  .luxury-grapes__delivery-inner .luxury-grapes__delivery-text {
    margin-top: 4rem;
  }
  .luxury-grapes__delivery-inner .luxury-grapes__delivery-text dt::before {
    margin-right: 4px;
  }
  .luxury-grapes__delivery-inner .luxury-grapes__delivery-text dd {
    font-size: 1.4rem;
    margin-block: 4px 12px;
  }
}
@media (max-width: 768px) {
  .luxury-grapes__title-wrapper .luxury-grapes__title-02 span {
    font-size: 2.4rem;
  }
  .luxury-grapes__content-inner {
    flex-direction: column;
    align-items: center;
    gap: 2.4rem;
    margin-bottom: 8rem;
  }
  .luxury-grapes__content-inner:nth-child(2) {
    flex-direction: column-reverse;
    margin-bottom: 12rem;
  }
  .luxury-grapes__content-inner .luxury-grapes__content-image {
    width: 65%;
  }
  .luxury-grapes__content-inner .luxury-grapes__content-text-wrapper {
    width: 75%;
  }
  .luxury-grapes__content-inner .luxury-grapes__content-text-wrapper .luxury-grapes__content-title {
    text-align: center;
  }
  .luxury-grapes__online-shop {
    margin-bottom: 12rem;
  }
  .luxury-grapes__online-shop .luxury-grapes__online-shop-inner h5 {
    font-size: 2rem;
  }
  .luxury-grapes__online-shop .luxury-grapes__online-shop-inner h5::before, .luxury-grapes__online-shop .luxury-grapes__online-shop-inner h5::after {
    font-size: 2.2rem;
  }
  .luxury-grapes__online-shop .luxury-grapes__online-shop-inner h5::before {
    left: 6%;
  }
  .luxury-grapes__online-shop .luxury-grapes__online-shop-inner h5::after {
    right: 6%;
  }
  .luxury-grapes__online-shop-button {
    width: 420px;
  }
  .luxury-grapes__online-shop-button a {
    gap: 12px;
  }
  .luxury-grapes__online-shop-button a .luxury-grapes__online-shop-image {
    width: 50px;
    height: 50px;
  }
  .luxury-grapes__online-shop-button a .luxury-grapes__online-shop-text p {
    font-size: 2.4rem;
  }
  .luxury-grapes__delivery-inner .luxury-grapes__delivery-title h3 {
    font-size: 2.8rem;
  }
}
@media (max-width: 576px) {
  .luxury-grapes__title-wrapper .luxury-grapes__title-line .section-title__line {
    max-width: 650px;
    width: 85%;
  }
  .luxury-grapes__title-wrapper .luxury-grapes__title-02 {
    line-height: 1.4;
    padding-top: 10px;
  }
  .luxury-grapes__title-wrapper .luxury-grapes__title-02 span {
    font-size: 2.2rem;
    margin-left: 0;
  }
  .luxury-grapes__content-inner {
    margin-bottom: 6.4rem;
  }
  .luxury-grapes__content-inner:nth-child(2) {
    margin-bottom: 11.2rem;
  }
  .luxury-grapes__content-inner .luxury-grapes__content-image {
    min-width: 300px;
    width: 65%;
  }
  .luxury-grapes__content-inner .luxury-grapes__content-text-wrapper {
    width: 100%;
  }
  .luxury-grapes__content-inner .luxury-grapes__content-image .blur-01::after {
    font-size: 2.4rem;
  }
  .luxury-grapes__content-inner .luxury-grapes__content-image .blur-02::after {
    font-size: 2.4rem;
  }
  .luxury-grapes__content-inner .luxury-grapes__content-text-wrapper .luxury-grapes__content-title {
    font-size: 2.6rem;
  }
  .luxury-grapes__content-inner .luxury-grapes__content-text-wrapper .luxury-grapes__content-cta-text p {
    font-size: 2.2rem;
  }
  .luxury-grapes__online-shop {
    margin-bottom: 11.2rem;
  }
  .luxury-grapes__online-shop .luxury-grapes__online-shop-inner {
    width: 296px;
  }
  .luxury-grapes__online-shop .luxury-grapes__online-shop-inner h5 {
    font-size: 1.4rem;
    padding-left: 8px;
  }
  .luxury-grapes__online-shop .luxury-grapes__online-shop-inner h5::before, .luxury-grapes__online-shop .luxury-grapes__online-shop-inner h5::after {
    font-size: 1.8rem;
  }
  .luxury-grapes__online-shop .luxury-grapes__online-shop-inner h5::before {
    left: -4%;
  }
  .luxury-grapes__online-shop .luxury-grapes__online-shop-inner h5::after {
    right: -4%;
  }
  .luxury-grapes__online-shop-button {
    max-width: 400px;
    width: 100%;
    padding: 30px 16px;
  }
  .luxury-grapes__online-shop-button a {
    gap: 4px;
  }
  .luxury-grapes__online-shop-button a .luxury-grapes__online-shop-image {
    width: 44px;
    height: 44px;
  }
  .luxury-grapes__online-shop-button a .luxury-grapes__online-shop-text p {
    font-size: 1.8rem;
  }
  .luxury-grapes__online-shop-button a .luxury-grapes__online-shop-arrow {
    width: 26px;
    padding-top: 3px;
  }
  .luxury-grapes__online-shop-button a .luxury-grapes__online-shop-arrow .arrow-button::before {
    width: 14px;
    height: 14px;
  }
  .luxury-grapes__delivery-inner .luxury-grapes__delivery-title h3 {
    font-size: 2.4rem;
  }
}
.faq {
  position: relative;
  background-color: #F5F3EF;
  z-index: 1;
  padding-top: 254px;
  overflow: hidden;
}

.faq__background {
  position: relative;
}
.faq__background .faq__background-illustration-01 {
  width: 230px;
  position: absolute;
  top: -208px;
  right: 40%;
  z-index: -1;
}

.faq__container {
  padding-top: 0;
  padding-bottom: 310px;
}

.faq__inner-left {
  width: 70%;
}

.faq__inner-right {
  width: 30%;
}

.accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.accordion__menu {
  border-bottom: 1px solid #2E2E2E;
}
.accordion__menu:first-child {
  border-top: 1px solid #2E2E2E;
}

.accordion__button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-align: inherit;
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.accordion__body {
  height: 0;
  overflow: hidden;
  transition: all 0.5s;
  background-color: #FFFFFF;
}

.accordion__text {
  padding: 20px;
  padding-inline: 3.2rem;
}

.accordion__button-icon {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background-color: #2E2E2E;
  border: 2px solid #2E2E2E;
  outline: initial;
  position: relative;
}
.accordion__button-icon .plus-button {
  margin: auto;
  position: absolute;
  width: 15px;
  height: 15px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.accordion__button-icon .plus-button .plus-button-line {
  position: absolute;
  display: inline-block;
  background-color: #FFFFFF;
  height: 2px;
  left: 0;
  width: 100%;
  transition: 0.3s;
}
.accordion__button-icon .plus-button .plus-button-line:nth-of-type(1) {
  top: 50%;
  transform: rotate(90deg);
}
.accordion__button-icon .plus-button .plus-button-line:nth-of-type(2) {
  top: 50%;
}

.accordion__menu.open .maker-text {
  background: linear-gradient(transparent 60%, rgba(168, 198, 134, 0.6) 60%);
}
.accordion__menu.open .accordion__button-icon {
  background-color: transparent;
}
.accordion__menu.open .accordion__button-icon .plus-button-line {
  background-color: #2E2E2E;
}
.accordion__menu.open .accordion__button-icon .plus-button-line:nth-of-type(1) {
  opacity: 0;
}

.section-title--flex .faq__title-line .section-title__line {
  left: 12%;
}

.faq__background-illustration-02 {
  width: 320px;
  position: absolute;
  bottom: 80px;
  left: 20px;
  z-index: -1;
}

.faq__background-illustration-03 {
  width: 300px;
  position: absolute;
  bottom: 160px;
  right: 0;
  margin-right: calc(50% - 50vw);
  z-index: -1;
}

.maker-bold {
  font-weight: bold;
}

@media (max-width: 1024px) {
  .faq__background .faq__background-illustration-01 {
    width: 216px;
    top: -190px;
    right: 36%;
  }
  .faq__inner-left {
    width: 70%;
  }
  .faq__inner-right {
    width: 30%;
  }
  .accordion__button {
    padding: 20px 24px;
  }
  .accordion__text {
    padding: 20px;
    padding-inline: 3.2rem;
  }
  .section-title--flex .faq__title-line .section-title__line {
    left: 5%;
  }
  .faq__background-illustration-02 {
    width: 290px;
    bottom: 96px;
  }
  .faq__background-illustration-03 {
    width: 240px;
    bottom: 190px;
  }
}
@media (max-width: 768px) {
  .faq {
    padding-top: 140px;
  }
  .faq__background .faq__background-illustration-01 {
    width: 180px;
    top: -100px;
    right: auto;
    left: 6px;
  }
  .accordion__button {
    padding: 20px 24px;
  }
  .faq__inner-left {
    width: 100%;
  }
  .faq__inner-right {
    width: 100%;
  }
  .faq__accordion {
    max-width: 120rem;
    width: 90%;
    margin-inline: auto;
    padding-inline: 12px;
  }
  .faq__title-wrapper {
    margin-bottom: 4rem;
  }
  .faq__title-wrapper .faq__title-line .section-title__line {
    left: 0;
  }
  .faq__container {
    padding-bottom: 240px;
  }
  .faq__background-illustration-02 {
    width: 220px;
    bottom: 80px;
  }
  .faq__background-illustration-03 {
    width: 180px;
    bottom: auto;
    top: 0px;
  }
}
@media (max-width: 576px) {
  .faq {
    padding-top: 110px;
  }
  .faq__background .faq__background-illustration-01 {
    width: 124px;
    top: -72px;
    left: 8px;
  }
  .accordion__button {
    padding: 20px 16px;
    gap: 8px;
  }
  .accordion__button .accordion__button-text {
    font-size: 1.4rem;
  }
  .accordion__body p {
    font-size: 1.4rem;
  }
  .faq__container {
    padding-bottom: 170px;
  }
  .faq__background-illustration-02 {
    width: 160px;
    bottom: 48px;
    left: 8px;
  }
  .faq__background-illustration-03 {
    width: 130px;
    top: 20px;
  }
}
.online-shop {
  padding-top: 0;
}

.online-shop__baner {
  background-color: #F5F3EF;
  padding-bottom: 12rem;
}
.online-shop__baner .online-shop__baner-link {
  display: block;
  margin: 0 auto;
}
.online-shop__baner .online-shop__baner-link .online-shop__baner-image {
  width: 95%;
  max-width: 800px;
  height: 100%;
  margin: 0 auto;
}
.online-shop__baner .blur::after {
  display: none;
}

.luxury-grapes__content-image a:hover .blur img,
.online-shop__baner a:hover .blur img {
  filter: blur(3px);
  transform: scale(1.02);
}

.two {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 20px;
}

.bg-wrapper-04 {
  z-index: -2;
  background-color: #F5F3EF;
}

.bg_04 {
  background-image: url(../images/farm.webp);
  z-index: -1;
}

@media (max-width: 768px) {
  .online-shop__baner {
    background-color: #F5F3EF;
    padding-bottom: 8rem;
  }
  .two {
    min-height: 90vh;
  }
}
@media (max-width: 576px) {
  .online-shop__baner {
    padding-bottom: 6.4rem;
  }
  .two {
    min-height: 95vh;
  }
}
.instagram {
  position: relative;
  background-color: #F5F3EF;
  z-index: 1;
  margin-top: -60vh;
}

.instagram__container {
  max-width: 120rem;
  width: 90%;
  margin: 0 auto;
}

.instagram__title-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.6rem;
}
.instagram__title-wrapper .instagram__logo {
  width: 40px;
  height: 40px;
  margin-right: 20px;
}
.instagram__title-wrapper .instagram__title-text {
  font-size: 5.6rem;
  font-weight: 700;
}

.instagram__post-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 24px auto 0;
  gap: 30px;
}
.instagram__post-container .instagram__post {
  width: 280px;
  height: 280px;
}
.instagram__post-container .instagram__post img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.instagram__post-container .instagram__post.blur::after {
  font-size: 1.8rem;
}
.instagram__post-container .instagram__post.blur:hover img {
  filter: blur(3px);
  transform: scale(1.02);
}
.instagram__post-container .instagram__post.blur:hover::after {
  opacity: 1;
}

.instagram__cta-wrapper {
  margin-top: 4rem;
  padding-bottom: 12rem;
}

.instagram__cta {
  font-weight: 700;
  transition: color 0.3s ease;
  gap: 24px;
}
.instagram__cta .instagram__cta-text p {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
}

@media (max-width: 1024px) {
  .instagram__post-container {
    max-width: 800px;
    width: 100%;
    margin: 32px auto 0;
    gap: 24px;
  }
  .instagram__post-container .instagram__post {
    max-width: 210px;
    width: 100%;
    height: auto;
  }
  .instagram__post-container .instagram__post.blur::after {
    font-size: 1.6rem;
  }
  .instagram__cta-wrapper {
    margin-top: 3.2rem;
    padding-bottom: 9.6rem;
  }
  .instagram__cta .instagram__cta-text p {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .instagram__title-wrapper .instagram__logo {
    width: 36px;
    height: 36px;
  }
  .instagram__title-wrapper .instagram__title-text {
    font-size: 4.4rem;
    font-weight: 600;
  }
  .instagram__post-container {
    gap: 16px;
  }
  .instagram__post-container .instagram__post {
    max-width: 140px;
  }
  .instagram__post-container .instagram__post.blur::after {
    font-size: 1.6rem;
  }
  .instagram__cta-wrapper {
    margin-top: 3.2rem;
    padding-bottom: 8rem;
  }
  .instagram__cta .instagram__cta-text p {
    font-size: 2.4rem;
  }
}
@media (max-width: 576px) {
  .instagram__cta-wrapper {
    margin-top: 1.6rem;
    padding-bottom: 6.4rem;
  }
}
.map {
  width: 100%;
  height: 355px;
  margin: 0;
  padding: 0;
  position: relative;
}

.map__inner,
.map__map {
  height: 100%;
}

.map__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* opacityを全体ではなく背景だけにしたい場合は以下 */
.map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #d5c5b2;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

.news-page-main {
  background-color: #F5F3EF;
}

.news-page-main-visual {
  background-image: url(../images/news-single-top.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 30vw;
  margin-top: -100px;
}

.news-page-header {
  max-width: 980px;
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 40px auto;
  padding-left: 24px;
  transition: all 0.5s ease;
}
.news-page-header .news-page-header__link a,
.news-page-header .news-page-header__link p {
  font-family: "Noto Sans JP", serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 30px;
}
.news-page-header .news-page-header__link a:hover {
  opacity: 0.5;
}
.news-page-header .news-page-header__arrow {
  width: 30px;
  height: 30px;
  padding-top: 2px;
}

.news-page-content__date p {
  font-size: 2rem;
  font-weight: 500;
}

.news-page-content__category {
  background-color: #2E2E2E;
  width: 120px;
  height: 26px;
  border-radius: 6px;
}
.news-page-content__category p {
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  line-height: 26px;
}

.news-single-content {
  max-width: 980px;
  width: 90%;
  margin: 0 auto;
  background: #fff;
  border-radius: 30px;
  padding: 40px;
  margin-bottom: 20px;
}
.news-single-content .news-single-content-wrapper {
  width: 90%;
  margin: 0 auto;
}
.news-single-content .news-single-content-date-wrapper {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  margin-bottom: 16px;
  align-items: center;
}

.news-single-content-image {
  margin: 20px 0;
}
.news-single-content-image .featured-image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-single-content-text {
  margin: 30px 0;
  line-height: 1.8;
}
.news-single-content-text p {
  margin-bottom: 20px;
}
.news-single-content-text img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}
.news-single-content-text a {
  display: inline-block;
  word-break: break-all;
  overflow-wrap: break-word;
  white-space: normal;
}

.news-single-content-pagination {
  max-width: 980px;
  width: 90%;
  font-size: 1.8rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  margin: 40px auto 120px;
  padding-inline: 40px;
  align-items: center;
}
.news-single-content-pagination .news-single-content-pagination-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.5s ease;
}
.news-single-content-pagination .news-single-content-pagination-wrapper__left {
  justify-content: flex-start;
}
.news-single-content-pagination .news-single-content-pagination-wrapper__right {
  justify-content: flex-end;
}
.news-single-content-pagination .news-single-content-pagination-wrapper .news-single-content-pagination-prev a,
.news-single-content-pagination .news-single-content-pagination-wrapper .news-single-content-pagination-next a {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  font-weight: bold;
}
.news-single-content-pagination .news-single-content-pagination-wrapper:hover .news-single-content-pagination-arrow {
  background-color: #2E2E2E;
  border-color: #2E2E2E;
}
.news-single-content-pagination .news-single-content-pagination-wrapper:hover .news-single-content-pagination-arrow .news-single-content-pagination-arrow__image img {
  filter: brightness(0) invert(1);
}
.news-single-content-pagination .news-single-content-pagination-wrapper:hover .news-single-content-pagination-prev,
.news-single-content-pagination .news-single-content-pagination-wrapper:hover .news-single-content-pagination-next {
  opacity: 0.5;
}

.news-single-content-pagination-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid #2E2E2E;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.news-single-content-pagination-arrow__left {
  padding-right: 3px;
}
.news-single-content-pagination-arrow__right {
  padding-left: 2px;
}
.news-single-content-pagination-arrow .news-single-content-pagination-arrow__image {
  width: 32px;
  height: 32px;
  margin: 4px auto 0;
}

.news-single-content-pagination-arrow__left-image img {
  transform: scaleX(-1);
}

.news-single-content-pagination-archive {
  background-color: #2E2E2E;
  width: 220px;
  height: 48px;
  border-radius: 4px;
  border: 1px solid #2E2E2E;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-single-content-pagination-archive a {
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
}
.news-single-content-pagination-archive:hover {
  background-color: #FFFFFF;
  border-color: #2E2E2E;
}
.news-single-content-pagination-archive:hover a {
  color: #2E2E2E;
}

@media (max-width: 1245px) {
  .news-page-main-visual {
    height: 40vw;
  }
}
@media (max-width: 768px) {
  .news-page-main-visual {
    margin-top: -30px;
  }
  .news-page-header {
    margin: 24px auto;
  }
  .news-page-header .news-page-header__link a,
.news-page-header .news-page-header__link p {
    font-size: 1.6rem;
  }
  .news-single-content-title h3 {
    font-size: 2.6rem;
  }
  .news-page-content__date p {
    font-size: 1.6rem;
  }
  .news-page-content__category {
    width: 100px;
    height: 22px;
  }
  .news-page-content__category p {
    font-size: 1.4rem;
    line-height: 22px;
  }
  .news-single-content {
    padding: 24px;
  }
  .news-single-content .news-single-content-date-wrapper {
    gap: 16px;
  }
  .news-single-content-pagination .news-single-content-pagination-wrapper {
    gap: 16px;
  }
  .news-single-content-pagination .news-single-content-pagination-wrapper .news-single-content-pagination-prev a,
.news-single-content-pagination .news-single-content-pagination-wrapper .news-single-content-pagination-next a {
    font-size: 2rem;
  }
  .news-single-content-pagination-arrow {
    width: 36px;
    height: 36px;
  }
  .news-single-content-pagination-arrow .news-single-content-pagination-arrow__image {
    width: 26px;
    height: 26px;
  }
  .news-single-content-pagination-archive {
    width: 180px;
    height: 40px;
  }
  .news-single-content-pagination-archive a {
    font-size: 1.6rem;
  }
}
@media (max-width: 576px) {
  .news-page-main-visual {
    height: 48vw;
    margin-top: -50px;
  }
  .news-page-header {
    gap: 0;
  }
  .news-page-header .news-page-header__link a,
.news-page-header .news-page-header__link p {
    font-size: 1.4rem;
  }
  .news-single-content-title h3 {
    font-size: 2rem;
  }
  .news-page-content__date p {
    font-size: 1.6rem;
  }
  .news-single-content-image {
    margin: 8px 0;
  }
  .news-single-content-pagination {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .news-single-content-pagination .news-single-content-pagination-wrapper {
    gap: 6px;
  }
  .news-single-content-pagination .news-single-content-pagination-archive {
    align-self: center;
  }
  .news-single-content-pagination .news-single-content-pagination-wrapper__right {
    align-self: flex-end;
    position: relative;
    bottom: 108px;
  }
}
.news-archive-title {
  max-width: 980px;
  width: 90%;
  margin: 0 auto;
  padding-top: 24px;
  padding-bottom: 32px;
  text-align: center;
}

.news-archive-tabs {
  max-width: 980px;
  width: 90%;
  margin: 0 auto 40px;
}
.news-archive-tabs__container {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0 20px;
}
.news-archive-tabs__tab {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #2E2E2E;
  text-decoration: none;
  border: 1px solid #BDBDBD;
  border-radius: 4px;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.news-archive-tabs__tab:hover {
  background-color: #F9F9F9;
  border-color: #2E2E2E;
}
.news-archive-tabs__tab.active {
  background-color: #2E2E2E;
  color: #FFFFFF;
  border-color: #2E2E2E;
}

.news-archive-container {
  max-width: 980px;
  width: 90%;
  margin: 40px auto 120px;
}

.news-archive-content {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  margin-left: 24px;
  margin-block: 28px;
  transition: all 0.5s ease;
  align-items: center;
}
.news-archive-content__inner {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  align-items: center;
}
.news-archive-content:hover {
  opacity: 0.5;
}
.news-archive-content:hover .news-archive-content__title {
  border-bottom: 1px solid #2E2E2E;
}

.news-archive-container__border-line::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(to right, #BDBDBD 0, #BDBDBD 8px, transparent 6px, transparent 12px);
  margin-top: 16px;
}

.navigation.posts-navigation {
  max-width: 980px;
  width: 90%;
  margin: 60px auto 0;
}
.navigation.posts-navigation .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.navigation.posts-navigation .nav-links .nav-previous,
.navigation.posts-navigation .nav-links .nav-next {
  font-size: 1.6rem;
  font-weight: 500;
  color: #2E2E2E;
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid #BDBDBD;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.navigation.posts-navigation .nav-links .nav-previous:hover,
.navigation.posts-navigation .nav-links .nav-next:hover {
  background-color: #2E2E2E;
  color: white;
  border-color: #2E2E2E;
}
.navigation.posts-navigation .nav-links .page-numbers {
  display: flex;
  gap: 8px;
  align-items: center;
}
.navigation.posts-navigation .nav-links .page-numbers .page-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  color: #2E2E2E;
  text-decoration: none;
  border: 1px solid #BDBDBD;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.navigation.posts-navigation .nav-links .page-numbers .page-number:hover {
  background-color: #2E2E2E;
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.navigation.posts-navigation .nav-links .page-numbers .page-number.current {
  background-color: #2E2E2E;
  color: white;
  border-color: #2E2E2E;
}
.navigation.posts-navigation .nav-links .page-numbers .dots {
  font-size: 1.6rem;
  color: #E0E0E0;
  padding: 0 8px;
}

@media (max-width: 768px) {
  .news-archive-title {
    padding-top: 16px;
    padding-bottom: 24px;
  }
  .news-archive-content {
    flex-direction: column;
    gap: 4px;
    margin-left: 20px;
    align-items: flex-start;
  }
  .news-archive-content__inner {
    gap: 16px;
  }
  .news-archive-content__title p {
    font-size: 1.6rem;
  }
  .news-archive-container {
    margin: 40px auto 80px;
  }
}
@media (max-width: 576px) {
  .news-archive-content__inner {
    gap: 16px;
  }
  .news-archive-tabs__tab {
    padding: 8px 16px;
  }
  .news-archive-content__title p {
    font-size: 1.4rem;
  }
  .navigation.posts-navigation .nav-links {
    gap: 16px;
  }
  .navigation.posts-navigation .nav-links .page-numbers .page-number {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 1.4rem;
  }
  .navigation.posts-navigation .nav-links .nav-previous,
.navigation.posts-navigation .nav-links .nav-next {
    font-size: 1.4rem;
    padding: 4px 16px;
  }
}
.index-title {
  max-width: 980px;
  width: 90%;
  margin: 0 auto;
  padding-top: 24px;
  padding-bottom: 32px;
  text-align: center;
}
.index-title h2 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #2E2E2E;
  margin-bottom: 8px;
}

.index-container {
  max-width: 980px;
  width: 90%;
  margin: 40px auto 120px;
}

.index-content {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  margin-left: 24px;
  margin-block: 28px;
  transition: all 0.5s ease;
  align-items: flex-start;
}
.index-content__inner {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  align-items: center;
  min-width: 200px;
}
.index-content__title {
  flex: 1;
  margin-bottom: 12px;
}
.index-content__title p {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2E2E2E;
  line-height: 1.6;
}
.index-content__excerpt {
  flex: 1;
}
.index-content__excerpt p {
  font-size: 1.4rem;
  color: #E0E0E0;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.index-content:hover {
  opacity: 0.5;
}
.index-content:hover .index-content__title p {
  border-bottom: 1px solid #2E2E2E;
}

.index-container__border-line::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(to right, #BDBDBD 0, #BDBDBD 8px, transparent 6px, transparent 12px);
  margin-top: 16px;
}

.index-no-results {
  text-align: center;
  padding: 60px 20px;
}
.index-no-results__content {
  max-width: 600px;
  margin: 0 auto;
}
.index-no-results__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #2E2E2E;
  margin-bottom: 16px;
}
.index-no-results__text {
  font-size: 1.6rem;
  color: #E0E0E0;
  margin-bottom: 40px;
  line-height: 1.6;
}
.index-no-results__search {
  margin-top: 40px;
}
.index-no-results__search .search-form {
  display: flex;
  justify-content: center;
  gap: 16px;
  max-width: 400px;
  margin: 0 auto;
}
.index-no-results__search .search-form .search-field {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #BDBDBD;
  border-radius: 4px;
  font-size: 1.4rem;
  outline: none;
  background-color: #FFFFFF;
}
.index-no-results__search .search-form .search-field:focus {
  border-color: #2E2E2E;
}
.index-no-results__search .search-form .search-submit {
  padding: 12px 24px;
  background-color: #2E2E2E;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.index-no-results__search .search-form .search-submit:hover {
  background-color: #707070;
}

@media (max-width: 768px) {
  .index-title {
    padding-top: 16px;
    padding-bottom: 24px;
  }
  .index-title h2 {
    font-size: 2.4rem;
  }
  .index-content {
    flex-direction: column;
    gap: 16px;
    margin-left: 20px;
    align-items: flex-start;
  }
  .index-content__inner {
    gap: 16px;
    min-width: auto;
  }
  .index-content__title p {
    font-size: 1.6rem;
  }
  .index-content__excerpt p {
    font-size: 1.3rem;
  }
  .index-container {
    margin: 40px auto 80px;
  }
  .index-no-results {
    padding: 40px 20px;
  }
  .index-no-results__title {
    font-size: 2rem;
  }
  .index-no-results__text {
    font-size: 1.4rem;
  }
  .index-no-results__search .search-form {
    flex-direction: column;
    gap: 12px;
  }
  .index-no-results__search .search-form .search-field,
.index-no-results__search .search-form .search-submit {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .index-content__inner {
    gap: 12px;
  }
  .index-content__title p {
    font-size: 1.4rem;
  }
  .index-content__excerpt p {
    font-size: 1.2rem;
  }
}
.search-title {
  max-width: 980px;
  width: 90%;
  margin: 0 auto;
  padding-top: 24px;
  padding-bottom: 32px;
  text-align: center;
}
.search-title h2 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #2E2E2E;
  margin-bottom: 8px;
}
.search-title .search-query {
  font-size: 1.6rem;
  color: #E0E0E0;
  font-weight: 500;
}

.search-container {
  max-width: 980px;
  width: 90%;
  margin: 40px auto 120px;
}

.search-content {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  margin-left: 24px;
  margin-block: 28px;
  transition: all 0.5s ease;
  align-items: flex-start;
}
.search-content__inner {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  align-items: center;
  min-width: 200px;
}
.search-content__title {
  flex: 1;
  margin-bottom: 12px;
}
.search-content__title p {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2E2E2E;
  line-height: 1.6;
}
.search-content__excerpt {
  flex: 1;
}
.search-content__excerpt p {
  font-size: 1.4rem;
  color: #E0E0E0;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.search-content:hover {
  opacity: 0.5;
}
.search-content:hover .search-content__title p {
  border-bottom: 1px solid #2E2E2E;
}

.search-container__border-line::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(to right, #BDBDBD 0, #BDBDBD 8px, transparent 6px, transparent 12px);
  margin-top: 16px;
}

.search-no-results {
  text-align: center;
  padding: 60px 20px;
}
.search-no-results__content {
  max-width: 600px;
  margin: 0 auto;
}
.search-no-results__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #2E2E2E;
  margin-bottom: 16px;
}
.search-no-results__text {
  font-size: 1.6rem;
  color: #E0E0E0;
  margin-bottom: 40px;
  line-height: 1.6;
}
.search-no-results__search {
  margin-top: 40px;
}
.search-no-results__search .search-form {
  display: flex;
  justify-content: center;
  gap: 16px;
  max-width: 400px;
  margin: 0 auto;
}
.search-no-results__search .search-form .search-field {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #BDBDBD;
  border-radius: 4px;
  font-size: 1.4rem;
  outline: none;
  background-color: #FFFFFF;
}
.search-no-results__search .search-form .search-field:focus {
  border-color: #2E2E2E;
}
.search-no-results__search .search-form .search-submit {
  padding: 12px 24px;
  background-color: #2E2E2E;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.search-no-results__search .search-form .search-submit:hover {
  background-color: #707070;
}

.search-suggestions {
  margin: 40px 0;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.search-suggestions h4 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2E2E2E;
  margin-bottom: 16px;
}
.search-suggestions ul {
  list-style: none;
  padding: 0;
}
.search-suggestions ul li {
  font-size: 1.4rem;
  color: #E0E0E0;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
.search-suggestions ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2E2E2E;
  font-weight: bold;
}

@media (max-width: 768px) {
  .search-title {
    padding-top: 16px;
    padding-bottom: 24px;
  }
  .search-title h2 {
    font-size: 2.4rem;
  }
  .search-title .search-query {
    font-size: 1.4rem;
  }
  .search-content {
    flex-direction: column;
    gap: 16px;
    margin-left: 20px;
    align-items: flex-start;
  }
  .search-content__inner {
    gap: 16px;
    min-width: auto;
  }
  .search-content__title p {
    font-size: 1.6rem;
  }
  .search-content__excerpt p {
    font-size: 1.3rem;
  }
  .search-container {
    margin: 40px auto 80px;
  }
  .search-no-results {
    padding: 40px 20px;
  }
  .search-no-results__title {
    font-size: 2rem;
  }
  .search-no-results__text {
    font-size: 1.4rem;
  }
  .search-no-results__search .search-form {
    flex-direction: column;
    gap: 12px;
  }
  .search-no-results__search .search-form .search-field,
.search-no-results__search .search-form .search-submit {
    width: 100%;
  }
  .search-suggestions {
    margin: 30px 0;
  }
  .search-suggestions h4 {
    font-size: 1.6rem;
  }
  .search-suggestions ul li {
    font-size: 1.3rem;
  }
}
@media (max-width: 576px) {
  .search-content__inner {
    gap: 12px;
  }
  .search-content__title p {
    font-size: 1.4rem;
  }
  .search-content__excerpt p {
    font-size: 1.2rem;
  }
}
.error-404-title {
  max-width: 980px;
  width: 90%;
  margin: 0 auto;
  padding-top: 24px;
  padding-bottom: 32px;
  text-align: center;
}
.error-404-title h2 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #2E2E2E;
  margin-bottom: 8px;
}
.error-404-title .error-404-subtitle {
  font-size: 1.6rem;
  color: #E0E0E0;
  font-weight: 500;
}

.error-404-container {
  max-width: 980px;
  width: 90%;
  margin: 40px auto 120px;
}

.error-404-content {
  text-align: center;
  padding: 60px 20px;
}
.error-404-content__main {
  margin-bottom: 40px;
}
.error-404-content__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #2E2E2E;
  margin-bottom: 16px;
}
.error-404-content__text {
  font-size: 1.6rem;
  color: #E0E0E0;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.error-404-actions {
  margin-bottom: 60px;
}
.error-404-actions__home {
  display: inline-block;
  padding: 16px 32px;
  background-color: #2E2E2E;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.error-404-actions__home:hover {
  background-color: #707070;
  transform: translateY(-2px);
}

.error-404-suggestions {
  margin-bottom: 60px;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.error-404-suggestions h4 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2E2E2E;
  margin-bottom: 20px;
  text-align: center;
}
.error-404-suggestions__list {
  list-style: none;
  padding: 0;
}
.error-404-suggestions__list li {
  margin-bottom: 12px;
}
.error-404-suggestions__list li a {
  display: block;
  padding: 12px 16px;
  background-color: #F9F9F9;
  color: #2E2E2E;
  text-decoration: none;
  font-size: 1.4rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  border-left: 4px solid #2E2E2E;
}
.error-404-suggestions__list li a:hover {
  background-color: #2E2E2E;
  color: #FFFFFF;
  transform: translateX(4px);
}

.error-404-search {
  margin-bottom: 60px;
}
.error-404-search h4 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2E2E2E;
  margin-bottom: 20px;
}
.error-404-search .search-form {
  display: flex;
  justify-content: center;
  gap: 16px;
  max-width: 400px;
  margin: 0 auto;
}
.error-404-search .search-form .search-field {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #F5F5F5;
  border-radius: 4px;
  font-size: 1.4rem;
  outline: none;
  background-color: #FFFFFF;
}
.error-404-search .search-form .search-field:focus {
  border-color: #2E2E2E;
}
.error-404-search .search-form .search-submit {
  padding: 12px 24px;
  background-color: #2E2E2E;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.error-404-search .search-form .search-submit:hover {
  background-color: #707070;
}

@media (max-width: 768px) {
  .error-404-title {
    padding-top: 16px;
    padding-bottom: 24px;
  }
  .error-404-title h2 {
    font-size: 2.4rem;
  }
  .error-404-title .error-404-subtitle {
    font-size: 1.4rem;
  }
  .error-404-content {
    padding: 40px 20px;
  }
  .error-404-content__title {
    font-size: 2rem;
  }
  .error-404-content__text {
    font-size: 1.4rem;
  }
  .error-404-actions {
    margin-bottom: 40px;
  }
  .error-404-actions__home {
    padding: 12px 24px;
    font-size: 1.4rem;
  }
  .error-404-suggestions {
    margin-bottom: 40px;
  }
  .error-404-suggestions h4 {
    font-size: 1.6rem;
  }
  .error-404-suggestions__list li a {
    font-size: 1.3rem;
    padding: 10px 12px;
  }
  .error-404-search {
    margin-bottom: 40px;
  }
  .error-404-search h4 {
    font-size: 1.6rem;
  }
  .error-404-search .search-form {
    flex-direction: column;
    gap: 12px;
  }
  .error-404-search .search-form .search-field,
.error-404-search .search-form .search-submit {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .error-404-content {
    padding: 30px 15px;
  }
  .error-404-content__title {
    font-size: 1.8rem;
  }
  .error-404-content__text {
    font-size: 1.3rem;
  }
  .error-404-actions__home {
    padding: 10px 20px;
    font-size: 1.3rem;
  }
  .error-404-suggestions__list li a {
    font-size: 1.2rem;
    padding: 8px 10px;
  }
  .error-404-search .search-form .search-field,
.error-404-search .search-form .search-submit {
    font-size: 1.3rem;
  }
}
.sitemap-main-visual {
  background-image: url(../images/news-single-top.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 30vw;
  margin-top: -100px;
}

/* サイトマップ全体 */
.sitemap {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 2列配置 */
  gap: 1rem 2rem;
}

.sitemap-title {
  width: 300px;
  margin-inline: auto;
  margin-block: 40px 0;
}

.sitemap-content {
  width: 300px;
  margin-inline: auto;
  margin-block: 40px 80px;
}

/* リスト項目 */
.sitemap li {
  margin: 0;
}

/* リンク */
.sitemap a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  color: #333;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s, color 0.3s;
}

/* hover効果 */
.sitemap a:hover {
  background: #f5f5f5;
  color: #000;
  text-decoration: underline;
}

@media (max-width: 1245px) {
  .sitemap-main-visual {
    height: 40vw;
  }
}
@media (max-width: 768px) {
  .sitemap-main-visual {
    margin-top: -30px;
  }
}
@media (max-width: 576px) {
  .sitemap-main-visual {
    height: 48vw;
    margin-top: -50px;
  }
  .sitemap {
    grid-template-columns: 1fr;
  }
}
/*# sourceMappingURL=style.css.map */