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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #363636;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 480px) {
  body {
    font-size: 15px;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.35s ease;
}
a:hover {
  opacity: 0.75;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

p {
  margin: 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100px;
  transition: background-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
  background-color: transparent;
  color: #fff;
}
@media screen and (max-width: 480px) {
  header {
    height: 72px;
  }
}
header.is-scrolled {
  background-color: #fff;
  color: #363636;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
header.is-menu-open:not(.is-scrolled) {
  color: #363636;
}
header.is-menu-open .btn-menu-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
header.is-menu-open .btn-menu-line:nth-child(2) {
  opacity: 0;
}
header.is-menu-open .btn-menu-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
header .site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 16px 0 40px;
}
@media screen and (max-width: 768px) {
  header .site-header-inner {
    padding: 0 16px 0 24px;
  }
}
header .site-header-inner .site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
header .site-header-inner .site-logo img {
  height: 64px;
  width: auto;
}
@media screen and (max-width: 768px) {
  header .site-header-inner .site-logo img {
    height: 56px;
  }
}
@media screen and (max-width: 480px) {
  header .site-header-inner .site-logo img {
    height: 48px;
  }
}
header .site-header-inner .gnav {
  display: flex;
  gap: 40px;
  margin-right: 12px;
}
@media screen and (max-width: 480px) {
  header .site-header-inner .gnav {
    margin-right: 0;
  }
}
header .site-header-inner .gnav .site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 1280px) {
  header .site-header-inner .gnav .site-nav {
    gap: 20px;
  }
}
@media screen and (max-width: 1380px) {
  header .site-header-inner .gnav .site-nav {
    display: none;
  }
}
header .site-header-inner .gnav .site-nav .site-nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 1280px) {
  header .site-header-inner .gnav .site-nav .site-nav-list {
    gap: 16px;
  }
}
header .site-header-inner .gnav .site-nav .site-nav-list .site-nav-item {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
}
header .site-header-inner .gnav .site-nav .site-nav-list .site-nav-item-dropdown {
  position: relative;
}
header .site-header-inner .gnav .site-nav .site-nav-list .site-nav-item-dropdown:hover .site-nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
header .site-header-inner .gnav .site-nav .site-nav-list .site-nav-link.is-current {
  color: #29662B;
}
header .site-header-inner .gnav .site-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 1380px) {
  header .site-header-inner .gnav .site-header-actions {
    display: none;
  }
}
header .site-header-inner .gnav .site-header-actions .btn-header {
  display: block;
  width: 200px;
  padding: 12px 16px 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
header .site-header-inner .gnav .site-header-actions .btn-header span {
  display: inline-block;
  font-size: 12px;
  font-family: "Bellefair", serif;
  margin-bottom: 2px;
}
header .site-header-inner .gnav .site-header-actions .btn-header:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  opacity: 1;
}
header .site-nav-dropdown {
  position: absolute;
  top: 100%;
  left: 104px;
  transform: translateX(-50%) translateY(-12px);
  min-width: 260px;
  padding: 12px 0;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 100;
}
header .site-nav-dropdown::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  height: 8px;
}
header .site-nav-dropdown .site-nav-dropdown-item a {
  display: block;
  padding: 8px 20px;
  color: #363636;
  font-size: 15px;
  white-space: nowrap;
  transition: background-color 0.25s ease, padding-left 0.25s ease;
}
header .site-nav-dropdown .site-nav-dropdown-item a:hover {
  background-color: rgba(0, 0, 0, 0.04);
  padding-left: 26px;
  opacity: 1;
}
header .contact-btn {
  background: #A19031;
}
header .contact-btn:hover {
  background: #8a7c2a;
}
header .order-btn {
  background: #C74C00;
}
header .order-btn:hover {
  background: #a53d00;
}

body.page-sub > header.site-header {
  background-color: #fff;
  color: #000;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
body.page-sub > header.site-header .site-nav-link {
  color: #000;
}
body.page-sub > header.site-header .site-nav-link.is-current {
  color: #29662B;
}
body.page-sub > header.site-header .site-nav-dropdown-item a {
  color: #000;
}
body.page-sub > header.site-header.is-menu-open:not(.is-scrolled) {
  color: #000;
}
body.page-sub > header.site-header .site-header-actions .btn-header {
  color: #fff;
}

.site-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  max-height: 0;
  overflow: auto;
  background-color: #fff;
  color: #363636;
  transition: max-height 0.35s ease;
}
.site-drawer.is-open {
  max-height: 100vh;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.site-drawer .site-drawer-inner {
  height: 100dvh;
  padding: 120px 40px 40px;
}
@media screen and (max-width: 480px) {
  .site-drawer .site-drawer-inner {
    padding: 96px 24px 40px 24px;
  }
}
.site-drawer .site-drawer-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.site-drawer .site-drawer-item {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 12px;
}
.site-drawer .site-drawer-item-parent {
  border-bottom: none;
  padding-bottom: 0;
}
.site-drawer .site-drawer-sublist {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid #D9D9D9;
}
.site-drawer .site-drawer-subitem a {
  display: block;
  padding: 8px 0 8px 16px;
  font-size: 16px;
  position: relative;
}
.site-drawer .site-drawer-subitem a::before {
  content: "−";
  position: absolute;
  left: 0;
  color: #767676;
}
.site-drawer .site-drawer-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 24px 0;
}
@media screen and (max-width: 640px) {
  .site-drawer .site-drawer-actions {
    gap: 16px;
  }
}
@media screen and (max-width: 480px) {
  .site-drawer .site-drawer-actions {
    grid-template-columns: repeat(1, 1fr);
  }
}
.site-drawer .site-drawer-actions .btn-drawer {
  padding: 16px 24px;
  color: #fff;
  font-family: "Bellefair", serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .site-drawer .site-drawer-actions .btn-drawer {
    width: 100%;
  }
}
.site-drawer .site-drawer-actions .btn-drawer span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}
.site-drawer .site-drawer-actions .btn-drawer.contact-btn {
  background: #A19031;
}
.site-drawer .site-drawer-actions .btn-drawer.order-btn {
  background: #C74C00;
}
.site-drawer .site-drawer-actions .btn-drawer:not(.contact-btn):not(.order-btn):nth-child(1) {
  background: #A19031;
}
.site-drawer .site-drawer-actions .btn-drawer:not(.contact-btn):not(.order-btn):nth-child(2) {
  background: #C74C00;
}

.btn-menu {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  color: inherit;
  transition: color 0.35s ease;
}
@media screen and (max-width: 1380px) {
  .btn-menu {
    display: block;
  }
}
.btn-menu .btn-menu-line {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background-color: currentColor;
  transition: transform 0.35s ease, opacity 0.35s ease, background-color 0.35s ease;
}
.btn-menu .btn-menu-line:nth-child(1) {
  top: 14px;
}
.btn-menu .btn-menu-line:nth-child(2) {
  top: 21px;
}
.btn-menu .btn-menu-line:nth-child(3) {
  top: 28px;
}

.footer {
  padding: 80px 0;
  background: #F2EEEA;
}
@media screen and (max-width: 480px) {
  .footer {
    padding-top: 48px;
    padding-bottom: 24px;
  }
}
.footer .flex-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 64px;
}
@media screen and (max-width: 480px) {
  .footer .flex-box {
    gap: 48px;
  }
}
@media screen and (max-width: 960px) {
  .footer .flex-box .left-box {
    width: 100%;
    text-align: center;
  }
}
.footer .flex-box .left-box .site-logo {
  display: inline-block;
  margin-bottom: 32px;
}
@media screen and (max-width: 960px) {
  .footer .flex-box .left-box .site-logo {
    padding-right: 28px;
  }
}
.footer .flex-box .right-box {
  width: 700px;
}
@media screen and (max-width: 1080px) {
  .footer .flex-box .right-box {
    width: 332px;
  }
}
@media screen and (max-width: 960px) {
  .footer .flex-box .right-box {
    width: 100%;
  }
}
.footer .flex-box .right-box nav {
  display: grid;
  grid-template-columns: 340px 304px;
  gap: 20px 40px;
}
@media screen and (max-width: 1080px) {
  .footer .flex-box .right-box nav {
    grid-template-columns: auto;
    gap: 16px;
  }
}
@media screen and (max-width: 480px) {
  .footer .flex-box .right-box nav {
    gap: 12px;
  }
}
.footer .flex-box .right-box nav a {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-left: 40px;
}
.footer .flex-box .right-box nav a::before, .footer .flex-box .right-box nav a::after {
  position: absolute;
  content: "";
  border-radius: 32px;
  transition: transform 0.4s ease, background 0.4s ease;
}
.footer .flex-box .right-box nav a::before {
  width: 32px;
  height: 32px;
  top: 10px;
  left: 0;
  background: rgba(185, 157, 0, 0.2);
}
.footer .flex-box .right-box nav a::after {
  width: 8px;
  height: 8px;
  top: 22px;
  left: 12px;
  background: #B99D00;
}
.footer .flex-box .right-box nav a:hover {
  opacity: 1;
}
.footer .flex-box .right-box nav a:hover::before {
  transform: scale(1.2);
  background: rgba(185, 157, 0, 0.35);
}
.footer .flex-box .right-box nav a:hover::after {
  transform: scale(1.4);
}
.footer .flex-box .right-box nav a .en {
  font-family: "Bellefair", serif;
  font-size: 32px;
}
@media screen and (max-width: 375px) {
  .footer .flex-box .right-box nav a .en {
    font-size: 28px;
  }
}
.footer .flex-box .right-box nav a .jp {
  font-size: 15px;
}
.footer .bottom-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid #D9D9D9;
  margin-top: 64px;
  padding-top: 24px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .footer .bottom-box {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 480px) {
  .footer .bottom-box {
    margin-top: 32px;
  }
}
.footer .bottom-box small {
  font-size: 14px;
}
@media screen and (max-width: 960px) {
  .footer .bottom-box small {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 375px) {
  .footer .bottom-box small {
    font-size: 12px;
  }
}
.footer .bottom-box .footer-nav-sub {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media screen and (max-width: 960px) {
  .footer .bottom-box .footer-nav-sub {
    justify-content: center;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 375px) {
  .footer .bottom-box .footer-nav-sub {
    gap: 8px;
  }
}
.footer .bottom-box .footer-nav-sub a {
  font-size: 14px;
}

.inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 960px) {
  .inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 480px) {
  .inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media screen and (max-width: 1280px) {
  .inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 480px) {
  .inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

section {
  padding-top: 96px;
  padding-bottom: 96px;
}
@media screen and (max-width: 768px) {
  section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (max-width: 480px) {
  section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
section .section-title {
  font-family: "Bellefair", serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.146;
  letter-spacing: normal;
  color: #A19031;
  text-align: center;
  margin: 0 0 32px;
}
@media screen and (max-width: 768px) {
  section .section-title {
    font-size: 48px;
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 480px) {
  section .section-title {
    font-size: 36px;
    margin-bottom: 28px;
  }
}
section .section-title .section-title-sub {
  display: block;
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.448;
  letter-spacing: normal;
  color: #363636;
  margin-top: 8px;
}
@media screen and (max-width: 480px) {
  section .section-title .section-title-sub {
    font-size: 16px;
  }
}
section .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 490px;
  height: 80px;
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  color: #fff;
  background: #A19031;
  transition: background-color 0.35s ease, opacity 0.35s ease;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1080px) {
  section .btn {
    width: 430px;
  }
}
@media screen and (max-width: 768px) {
  section .btn {
    width: 320px;
    height: 64px;
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  section .btn {
    font-size: 16px;
  }
}
section .btn::before, section .btn::after {
  position: absolute;
  content: "";
  border-radius: 32px;
  transition: transform 0.4s ease, left 0.4s ease;
}
section .btn::before {
  width: 32px;
  height: 32px;
  left: 24px;
  background: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 640px) {
  section .btn::before {
    left: 16px;
  }
}
section .btn::after {
  width: 8px;
  height: 8px;
  left: 36px;
  background: #fff;
}
@media screen and (max-width: 640px) {
  section .btn::after {
    left: 28px;
  }
}
section .btn:hover {
  background-color: #1e4e20;
  opacity: 1;
}
section .btn:hover::before {
  transform: scale(1.2);
  left: 24px;
}
@media screen and (max-width: 640px) {
  section .btn:hover::before {
    left: 16px;
  }
}
section .btn:hover::after {
  left: 36px;
}
@media screen and (max-width: 640px) {
  section .btn:hover::after {
    left: 28px;
  }
}
section .btn-primary {
  font-family: "Noto Sans JP", sans-serif;
  background: #C74C00;
}
section .btn-external {
  background-image: url(../img/icon-external.png);
  background-position: center right 24px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 480px) {
  section .btn-external {
    background-image: url(../img/icon-external.png);
    background-position: center right 20px;
    background-repeat: no-repeat;
  }
}

.page-top {
  padding-top: 0;
}
.page-top .mv {
  position: relative;
  width: 100%;
  height: min(100vh, 800px);
  min-height: 480px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page-top .mv {
    height: min(90vh, 640px);
    min-height: 400px;
  }
}
.page-top .mv .mv-slide-list {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-top .mv .mv-slide-list .mv-slide-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.page-top .mv .mv-slide-list .mv-slide-item.is-active {
  opacity: 1;
  z-index: 1;
}
.page-top .mv .mv-slide-list .mv-slide-item .mv-slide-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-top .mv .mv-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  pointer-events: none;
}
.page-top .mv .mv-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: #fff;
}
.page-top .mv .mv-content .mv-title {
  font-family: "Bellefair", serif;
  font-size: clamp(40px, 8vw, 88px);
  font-weight: 400;
  letter-spacing: normal;
  margin: 0;
  line-height: 1;
  text-shadow: 0 0 20px rgb(0, 0, 0);
}
.page-top .mv .mv-content .mv-en {
  font-size: clamp(16px, 4vw, 32px);
  font-family: "Bellefair", serif;
}
.page-top .mv .mv-content .mv-lead {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(20px, 4vw, 40px);
  font-weight: 500;
  line-height: 1.4;
  margin: 40px 0 0;
}
.page-top .mv .mv-content .mv-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  z-index: 4;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.page-top .mv .mv-content .mv-dots .mv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.35s ease, transform 0.35s ease;
}
.page-top .mv .mv-content .mv-dots .mv-dot.is-active {
  background-color: #fff;
  transform: scale(1.15);
}
.page-top .section-about {
  overflow: hidden;
  background: #F2EEEA;
}
.page-top .section-about .about-img {
  position: absolute;
}
.page-top .section-about .about-img.left {
  top: 96px;
  left: -160px;
}
.page-top .section-about .about-img.right {
  right: -160px;
  bottom: 96px;
}
@media screen and (max-width: 960px) {
  .page-top .section-about .about-img {
    width: 240px;
    height: auto;
  }
  .page-top .section-about .about-img.left {
    top: 0;
    left: -120px;
  }
  .page-top .section-about .about-img.right {
    right: -120px;
    bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .page-top .section-about .about-img {
    width: 240px;
    height: auto;
  }
  .page-top .section-about .about-img.left {
    top: 0;
    left: -160px;
  }
  .page-top .section-about .about-img.right {
    right: -160px;
    bottom: 0;
  }
}
@media screen and (max-width: 640px) {
  .page-top .section-about .about-img {
    display: none;
  }
}
.page-top .section-about .inner {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 640px) {
  .page-top .section-about .inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 480px) {
  .page-top .section-about .inner {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.page-top .section-about .about-box {
  text-align: center;
}
.page-top .section-about .about-box h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 20px;
}
@media screen and (max-width: 1080px) {
  .page-top .section-about .about-box h3 {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .page-top .section-about .about-box h3 {
    font-size: 28px;
  }
}
@media screen and (max-width: 480px) {
  .page-top .section-about .about-box h3 {
    font-size: 24px;
  }
}
.page-top .section-about .about-box p {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 64px;
}
@media screen and (max-width: 1080px) {
  .page-top .section-about .about-box p {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .page-top .section-about .about-box p {
    font-size: 16px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 480px) {
  .page-top .section-about .about-box p {
    font-size: 15px;
  }
}
.page-top .section-news {
  background: #fff;
}
.page-top .section-news .inner {
  display: flex;
  gap: 48px;
}
@media screen and (max-width: 768px) {
  .page-top .section-news .inner {
    display: block;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 480px) {
  .page-top .section-news .inner {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.page-top .section-news .section-title {
  width: 188px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .page-top .section-news .section-title {
    width: 100%;
    text-align: center;
    margin-bottom: 48px;
  }
}
.page-top .section-news .news-box {
  width: calc(100% - 218px);
  max-height: 340px;
  overflow-y: auto;
  padding-right: 48px;
}
@media screen and (max-width: 768px) {
  .page-top .section-news .news-box {
    width: 100%;
    padding-right: 0;
  }
}
.page-top .section-news .news-box ul li {
  display: flex;
  gap: 24px;
  padding: 24px 16px;
  border-bottom: 1px solid #D9D9D9;
  font-size: 16px;
  line-height: 1.2;
}
.page-top .section-news .news-box ul li:first-child {
  padding-top: 0;
}
.page-top .section-news .news-box ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
@media screen and (max-width: 480px) {
  .page-top .section-news .news-box ul li {
    flex-direction: column;
    gap: 8px;
    padding: 14px 16px;
    font-size: 14px;
  }
}
.page-top .section-news .news-box ul li time {
  width: 80px;
  font-family: "Bellefair", serif;
  font-size: 16px;
  font-weight: 400;
  color: #A19031;
  letter-spacing: normal;
}
@media screen and (max-width: 480px) {
  .page-top .section-news .news-box ul li time {
    width: 100%;
  }
}
.page-top .section-news .news-box ul li p {
  width: calc(100% - 104px);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #363636;
}
@media screen and (max-width: 480px) {
  .page-top .section-news .news-box ul li p {
    width: 100%;
  }
}
.page-top .section-services {
  overflow: hidden;
  background: #F2EEEA;
}
.page-top .section-services .service-box .box {
  position: relative;
  margin-bottom: 96px;
}
@media screen and (max-width: 480px) {
  .page-top .section-services .service-box .box {
    margin-bottom: 48px;
  }
}
.page-top .section-services .service-box .box:last-child {
  margin-bottom: 0;
}
.page-top .section-services .service-box .box .img-box {
  position: absolute;
  display: flex;
  left: 53%;
  width: 770px;
  gap: 12px;
}
@media screen and (max-width: 960px) {
  .page-top .section-services .service-box .box .img-box {
    left: 63%;
  }
}
@media screen and (max-width: 640px) {
  .page-top .section-services .service-box .box .img-box {
    position: relative;
    width: 100%;
    left: 0;
  }
}
.page-top .section-services .service-box .box .img-box img {
  width: 250px;
  height: auto;
}
@media screen and (max-width: 480px) {
  .page-top .section-services .service-box .box .img-box img {
    width: 152px;
  }
}
.page-top .section-services .service-box .box .img-box img:nth-child(even) {
  margin-top: 32px;
}
.page-top .section-services .service-box .box .img-box img:nth-child(odd) {
  margin-bottom: 32px;
}
.page-top .section-services .service-box .box:nth-child(odd) .img-box {
  left: auto;
  right: 53%;
}
@media screen and (max-width: 960px) {
  .page-top .section-services .service-box .box:nth-child(odd) .img-box {
    right: 63%;
  }
}
@media screen and (max-width: 640px) {
  .page-top .section-services .service-box .box:nth-child(odd) .img-box {
    position: relative;
    width: 100%;
    right: 0;
  }
}
.page-top .section-services .service-box .box:nth-child(odd) .txt-box {
  margin-left: auto;
  margin-right: 0;
}
.page-top .section-services .service-box .box .txt-box {
  width: 520px;
  padding: 40px 0;
  margin-right: auto;
}
@media screen and (max-width: 1280px) {
  .page-top .section-services .service-box .box .txt-box {
    width: calc(50% - 24px);
  }
}
@media screen and (max-width: 960px) {
  .page-top .section-services .service-box .box .txt-box {
    width: calc(60% - 24px);
  }
}
@media screen and (max-width: 640px) {
  .page-top .section-services .service-box .box .txt-box {
    width: 100%;
  }
}
.page-top .section-services .service-box .box .txt-box h3 {
  color: #A19031;
  font-size: 64px;
  font-family: "Bellefair", serif;
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .page-top .section-services .service-box .box .txt-box h3 {
    font-size: 56px;
  }
}
@media screen and (max-width: 480px) {
  .page-top .section-services .service-box .box .txt-box h3 {
    font-size: 48px;
  }
}
.page-top .section-services .service-box .box .txt-box span {
  font-size: 20px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .page-top .section-services .service-box .box .txt-box span {
    font-size: 18px;
  }
}
.page-top .section-services .service-box .box .txt-box p {
  font-size: 18px;
  margin: 24px 0 40px;
}
@media screen and (max-width: 768px) {
  .page-top .section-services .service-box .box .txt-box p {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .page-top .section-services .service-box .box .txt-box p {
    font-size: 15px;
  }
}
@media screen and (max-width: 1280px) {
  .page-top .section-services .service-box .box .txt-box .btn {
    width: 100%;
  }
}
.page-top .section-access {
  background: url(../img/bg-access.jpg) no-repeat center/cover;
}
@media screen and (max-width: 960px) {
  .page-top .section-access {
    background: url(../img/bg-access-sp.jpg) no-repeat top/100% auto;
  }
  .page-top .section-access .inner {
    margin-top: 120px;
  }
}
.page-top .section-access .section-title {
  text-align: left;
}
.page-top .section-access .access-box {
  width: 490px;
  margin-top: 40px;
}
@media screen and (max-width: 960px) {
  .page-top .section-access .access-box {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 640px) {
  .page-top .section-access .access-box .btn {
    width: 100%;
  }
}
.page-top .section-access .access-box dl {
  display: flex;
  align-items: center;
  gap: 32px;
  border-bottom: #D9D9D9 1px solid;
  padding-bottom: 20px;
  margin-bottom: 20px;
  text-align: left;
}
.page-top .section-access .access-box dl:last-of-type {
  border: 0;
}
.page-top .section-access .access-box dl dt {
  width: 56px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}
@media screen and (max-width: 480px) {
  .page-top .section-access .access-box dl dt {
    font-size: 16px;
  }
}
.page-top .section-access .access-box dl dd {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}
@media screen and (max-width: 480px) {
  .page-top .section-access .access-box dl dd {
    font-size: 16px;
  }
}
.page-top .section-instagram {
  background: #fff;
}
.page-top .section-instagram .section-title {
  text-align: left;
}
.page-top .section-cta {
  display: flex;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .page-top .section-cta {
    display: block;
  }
}
.page-top .section-cta .btn-primary {
  position: relative;
  display: block;
  width: 50%;
  height: 220px;
  color: #fff;
  font-family: "Bellefair", serif;
  font-size: 72px;
  line-height: 0.5;
  padding: 80px 0 0 80px;
}
@media screen and (max-width: 1280px) {
  .page-top .section-cta .btn-primary {
    height: 200px;
    font-size: 64px;
    padding: 72px 0 0 64px;
  }
}
@media screen and (max-width: 1080px) {
  .page-top .section-cta .btn-primary {
    height: 180px;
    font-size: 48px;
    padding: 72px 0 0 40px;
  }
}
@media screen and (max-width: 960px) {
  .page-top .section-cta .btn-primary {
    height: 160px;
    padding: 56px 0 0 32px;
  }
}
@media screen and (max-width: 768px) {
  .page-top .section-cta .btn-primary {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .page-top .section-cta .btn-primary {
    line-height: 0.6;
    font-size: 40px;
  }
}
.page-top .section-cta .btn-primary::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  top: calc(50% - 40px);
  right: 64px;
  background: url(../img/icon-more.png) no-repeat;
}
@media screen and (max-width: 1280px) {
  .page-top .section-cta .btn-primary::before {
    right: 56px;
  }
}
@media screen and (max-width: 1080px) {
  .page-top .section-cta .btn-primary::before {
    width: 64px;
    height: 64px;
    top: calc(50% - 32px);
    right: 40px;
    background: url(../img/icon-more.png) no-repeat;
    background-size: 64px;
  }
}
@media screen and (max-width: 960px) {
  .page-top .section-cta .btn-primary::before {
    right: 32px;
  }
}
.page-top .section-cta .btn-primary span {
  font-size: 20px;
  font-family: "Shippori Mincho", serif;
}
.page-top .section-cta .btn-primary.contact-btn {
  background: url(../img/cta-bg-contact.png);
  background-size: cover;
}
.page-top .section-cta .btn-primary.order-btn {
  background: url(../img/cta-bg-order.png);
  background-size: cover;
}

.page-sub {
  margin-top: 100px;
}
@media screen and (max-width: 480px) {
  .page-sub {
    margin-top: 72px;
  }
}
@media screen and (max-width: 480px) {
  .page-sub .btn-external::before, .page-sub .btn-external::after {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .page-sub .btn-external {
    justify-content: flex-start;
    padding: 0 24px;
  }
}
.page-sub .section-contents {
  position: relative;
  padding: 104px 0;
}
@media screen and (max-width: 768px) {
  .page-sub .section-contents {
    padding: 80px 0;
  }
}
@media screen and (max-width: 480px) {
  .page-sub .section-contents {
    padding: 64px 0;
  }
}
.page-sub .section-contents .mt-80 {
  margin-top: 80px;
}
@media screen and (max-width: 480px) {
  .page-sub .section-contents .mt-80 {
    margin-top: 48px;
  }
}
.page-sub .inner .font-12 {
  font-size: 12px;
}
.page-sub .inner .font-14 {
  font-size: 14px;
}
.page-sub .page-mv {
  position: relative;
  padding: 112px 0;
  background: #F2EEEA;
}
@media screen and (max-width: 768px) {
  .page-sub .page-mv {
    padding: 64px 0;
  }
}
@media screen and (max-width: 480px) {
  .page-sub .page-mv {
    padding: 48px 0;
  }
}
.page-sub .page-mv .inner {
  position: relative;
  z-index: 2;
}
.page-sub .page-mv h1 {
  color: #A19031;
  font-size: 64px;
  font-weight: 400;
  font-family: "Bellefair", serif;
  line-height: 1;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .page-sub .page-mv h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 480px) {
  .page-sub .page-mv h1 {
    font-size: 40px;
  }
}
.page-sub .page-mv span {
  font-size: 20px;
  font-family: "Shippori Mincho", serif;
  line-height: 1;
}
.page-sub .page-mv p {
  font-size: 32px;
  font-family: "Shippori Mincho", serif;
  margin-top: 48px;
}
.page-sub .page-mv p br.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .page-sub .page-mv p {
    font-size: 20px;
    margin-top: 24px;
  }
}
@media screen and (max-width: 480px) {
  .page-sub .page-mv p br.sp {
    display: block;
  }
}
.page-sub .page-mv p strong {
  color: #A19031;
  font-weight: 400;
}
.page-sub .page-mv p a {
  color: #A19031;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.page-sub .page-mv p a:hover {
  opacity: 0.8;
}
.page-sub .page-mv img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .page-sub .page-mv img {
    -o-object-position: center;
       object-position: center;
  }
}
@media screen and (max-width: 640px) {
  .page-sub .page-mv img {
    opacity: 0.5;
  }
}
.page-sub .page-nav {
  padding: 80px 0;
}
@media screen and (max-width: 480px) {
  .page-sub .page-nav {
    padding: 32px 0;
  }
}
.page-sub .page-nav .nav-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
@media screen and (max-width: 1080px) {
  .page-sub .page-nav .nav-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .page-sub .page-nav .nav-box {
    grid-template-columns: repeat(1, 1fr);
    gap: 2px;
  }
}
@media screen and (max-width: 480px) {
  .page-sub .page-nav .nav-box {
    margin-bottom: 24px;
  }
}
.page-sub .page-nav .nav-box a {
  display: block;
  color: #fff;
  background: #A19031 url(../img/icon-down-arrow.png) no-repeat center right 32px;
  padding: 24px 32px;
}
@media screen and (max-width: 480px) {
  .page-sub .page-nav .nav-box a {
    padding: 16px 24px;
  }
}
.page-sub .page-nav .nav-box a span {
  display: block;
  line-height: 1;
}
.page-sub .page-nav .nav-box a .en {
  font-size: 32px;
  font-family: "Bellefair", serif;
  margin-bottom: 4px;
}
@media screen and (max-width: 480px) {
  .page-sub .page-nav .nav-box a .en {
    font-size: 24px;
  }
}
.page-sub .page-nav .nav-box a .jp {
  font-size: 14px;
}
.page-sub .info-box {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 40px;
  background: #F2EEEA;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .page-sub .info-box {
    padding: 24px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 480px) {
  .page-sub .info-box {
    display: block;
    margin-bottom: 2px;
  }
}
.page-sub .info-box:last-child {
  margin-bottom: 0;
}
.page-sub .info-box.center {
  text-align: center;
  justify-content: center;
}
@media screen and (max-width: 480px) {
  .page-sub .info-box.center {
    text-align: left;
  }
}
.page-sub .info-box.mt-64 {
  margin-top: 64px;
}
@media screen and (max-width: 480px) {
  .page-sub .info-box.mt-64 {
    margin-top: 40px;
  }
}
.page-sub .info-box strong {
  font-size: 24px;
  font-weight: 400;
  word-break: keep-all;
}
@media screen and (max-width: 768px) {
  .page-sub .info-box strong {
    font-size: 20px;
  }
}
.page-sub .info-box p {
  font-size: 16px;
}
@media screen and (max-width: 480px) {
  .page-sub .info-box p {
    font-size: 15px;
  }
}
.page-sub .bg .info-box {
  background: #fff;
}
.page-sub .bg {
  background: #F2EEEA;
}
.page-sub .section-contents {
  overflow: hidden;
}
.page-sub .section-contents .title-box {
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .page-sub .section-contents .title-box {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 480px) {
  .page-sub .section-contents .title-box {
    margin-bottom: 32px;
  }
}
.page-sub .section-contents .title-box.center {
  text-align: center;
}
.page-sub .section-contents .title-box span {
  display: block;
}
.page-sub .section-contents .title-box .en {
  color: #A19031;
  font-size: 64px;
  font-weight: 400;
  font-family: "Bellefair", serif;
  line-height: 1;
  margin: 0;
}
@media screen and (max-width: 1080px) {
  .page-sub .section-contents .title-box .en {
    font-size: 56px;
  }
}
@media screen and (max-width: 768px) {
  .page-sub .section-contents .title-box .en {
    font-size: 48px;
  }
}
@media screen and (max-width: 480px) {
  .page-sub .section-contents .title-box .en {
    font-size: 40px;
  }
}
.page-sub .section-contents .title-box .jp {
  font-size: 20px;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 768px) {
  .page-sub .section-contents .title-box .jp {
    font-size: 18px;
  }
}
.page-sub .section-contents .title-box p {
  font-size: 16px;
  margin-top: 32px;
}
.page-sub .section-contents .flex-img-box {
  position: absolute;
  display: flex;
  left: 53%;
  width: 770px;
  gap: 12px;
}
@media screen and (max-width: 960px) {
  .page-sub .section-contents .flex-img-box {
    left: 63%;
  }
}
@media screen and (max-width: 640px) {
  .page-sub .section-contents .flex-img-box {
    position: relative;
    width: 100%;
    left: 0;
  }
}
.page-sub .section-contents .flex-img-box img {
  width: 250px;
  height: auto;
}
@media screen and (max-width: 480px) {
  .page-sub .section-contents .flex-img-box img {
    width: 152px;
  }
}
.page-sub .section-contents .flex-img-box img:nth-child(even) {
  margin-top: 32px;
}
.page-sub .section-contents .flex-img-box img:nth-child(odd) {
  margin-bottom: 32px;
}
.page-sub .section-contents .flex-box {
  width: 520px;
  padding: 40px 0;
  margin-right: auto;
}
@media screen and (max-width: 1280px) {
  .page-sub .section-contents .flex-box {
    width: calc(50% - 24px);
  }
}
@media screen and (max-width: 960px) {
  .page-sub .section-contents .flex-box {
    width: calc(60% - 24px);
    padding-bottom: 0;
  }
}
@media screen and (max-width: 640px) {
  .page-sub .section-contents .flex-box {
    width: 100%;
  }
}
.page-sub .section-contents .flex-box .info-box {
  display: block;
  padding: 32px;
}
.page-sub .section-contents .flex-box .info-box strong {
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}
.page-sub .tab-box .tab-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media screen and (max-width: 480px) {
  .page-sub .tab-box .tab-buttons {
    gap: 8px;
    margin-bottom: 28px;
  }
}
.page-sub .tab-box .tab-buttons .tab-button {
  padding: 16px 24px;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  background: #A19031;
}
@media screen and (max-width: 960px) {
  .page-sub .tab-box .tab-buttons .tab-button {
    font-size: 20px;
    padding: 16px;
  }
}
.page-sub .tab-box .tab-buttons .tab-button span {
  font-size: 15px;
}
.page-sub .tab-box .tab-buttons .tab-button:hover {
  opacity: 0.5;
}
.page-sub .tab-box .tab-buttons .tab-button.is-active {
  color: #A19031;
  background: #F2EEEA;
}
.page-sub .tab-box .tab-panel-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-sub .tab-box .tab-panel-list .tab-panel-item {
  display: none;
}
.page-sub .tab-box .tab-panel-list .tab-panel-item.is-active {
  display: block;
  padding: 48px;
  background: #F2EEEA;
}
.page-sub .tab-box--accordion .tab-accordion-trigger {
  display: none;
}
@media screen and (max-width: 768px) {
  .page-sub .tab-box--accordion .tab-buttons {
    display: none;
  }
  .page-sub .tab-box--accordion .tab-accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    margin: 0;
    padding: 16px 56px 16px 24px;
    border: none;
    cursor: pointer;
    text-align: left;
    color: #fff;
    font-family: "Shippori Mincho", serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    background: #A19031;
    position: relative;
    transition: color 0.35s ease, background-color 0.35s ease;
  }
  .page-sub .tab-box--accordion .tab-accordion-trigger span {
    font-size: 18px;
  }
  .page-sub .tab-box--accordion .tab-accordion-trigger::after {
    content: "";
    position: absolute;
    right: 20px;
    top: calc(50% - 5px);
    width: 18px;
    height: 10px;
    transition: transform 0.35s ease;
    background: url(../img/icon-down-arrow.png) no-repeat center;
  }
  .page-sub .tab-box--accordion .tab-accordion-trigger.is-active {
    color: #A19031;
    background: #fff;
    border-bottom: 1px solid #A19031;
  }
  .page-sub .tab-box--accordion .tab-accordion-trigger.is-active::after {
    transform: rotate(180deg);
    background: url(../img/icon-down-arrow-y.png) no-repeat center;
  }
  .page-sub .tab-box--accordion .tab-panel-list .tab-panel-item {
    display: grid !important;
    grid-template-rows: auto 0fr;
    padding: 0 !important;
    background: transparent !important;
    margin-bottom: 8px;
    transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .page-sub .tab-box--accordion .tab-panel-list .tab-panel-item:last-child {
    margin-bottom: 0;
  }
  .page-sub .tab-box--accordion .tab-panel-list .tab-panel-item.is-active {
    grid-template-rows: auto 1fr;
  }
}
@media screen and (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .page-sub .tab-box--accordion .tab-panel-list .tab-panel-item {
    transition-duration: 0.01ms;
  }
}
@media screen and (max-width: 768px) {
  .page-sub .tab-box--accordion .tab-panel-body {
    overflow: hidden;
    min-height: 0;
  }
  .page-sub .tab-box--accordion .tab-panel-body .product-box {
    padding: 32px 24px;
    background: #fff;
  }
}
@media screen and (max-width: 768px) and (max-width: 480px) {
  .page-sub .tab-box--accordion .tab-panel-body .product-box {
    padding: 32px 16px;
  }
}
.page-sub .bg .tab-box .tab-buttons .tab-button.is-active {
  background: #fff;
}
.page-sub .bg .tab-box .tab-panel-list .tab-panel-item.is-active {
  background: #fff;
}
.page-sub .product-inner {
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .page-sub .product-inner {
    margin-top: 56px;
  }
}
@media screen and (max-width: 480px) {
  .page-sub .product-inner {
    margin-top: 32px;
  }
}
.page-sub .product-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
@media screen and (max-width: 1080px) {
  .page-sub .product-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 640px) {
  .page-sub .product-box {
    gap: 40px;
  }
}
@media screen and (max-width: 480px) {
  .page-sub .product-box {
    gap: 24px;
  }
}
.page-sub .product-box .box {
  display: grid;
  gap: 32px;
  grid-template-columns: 200px auto;
}
@media screen and (max-width: 1280px) {
  .page-sub .product-box .box {
    grid-template-columns: 160px auto;
  }
}
@media screen and (max-width: 1080px) {
  .page-sub .product-box .box {
    grid-template-columns: 200px auto;
  }
}
@media screen and (max-width: 640px) {
  .page-sub .product-box .box {
    grid-template-columns: 160px auto;
    gap: 24px;
  }
}
@media screen and (max-width: 480px) {
  .page-sub .product-box .box {
    grid-template-columns: 120px auto;
    gap: 20px;
    border-bottom: #D9D9D9 1px solid;
    padding-bottom: 24px;
  }
  .page-sub .product-box .box:last-child {
    border: 0;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 375px) {
  .page-sub .product-box .box {
    grid-template-columns: 96px auto;
  }
}
.page-sub .product-box .box .tag {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  background: #A19031;
  padding: 4px 16px;
  border-radius: 36px;
  margin-bottom: 12px;
}
@media screen and (max-width: 480px) {
  .page-sub .product-box .box .tag {
    padding: 4px 12px;
    border-radius: 0;
  }
}
.page-sub .product-box .box img {
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 200px;
}
@media screen and (max-width: 1280px) {
  .page-sub .product-box .box img {
    width: 160px;
    height: 160px;
  }
}
@media screen and (max-width: 1080px) {
  .page-sub .product-box .box img {
    width: 200px;
    height: 200px;
  }
}
@media screen and (max-width: 640px) {
  .page-sub .product-box .box img {
    width: 160px;
    height: 160px;
  }
}
@media screen and (max-width: 480px) {
  .page-sub .product-box .box img {
    width: 120px;
    height: 120px;
  }
}
@media screen and (max-width: 375px) {
  .page-sub .product-box .box img {
    width: 96px;
    height: 96px;
  }
}
.page-sub .product-box .box .txt-box h3 {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 16px;
  line-height: 1.2;
}
@media screen and (max-width: 480px) {
  .page-sub .product-box .box .txt-box h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }
}
.page-sub .product-box .box .txt-box p {
  font-size: 16px;
  margin-bottom: 24px;
}
@media screen and (max-width: 640px) {
  .page-sub .product-box .box .txt-box p {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 480px) {
  .page-sub .product-box .box .txt-box p {
    font-size: 15px;
    margin-bottom: 12px;
  }
  .page-sub .product-box .box .txt-box p br {
    display: none;
  }
}
.page-sub .product-box .box .txt-box .detail li {
  display: flex;
  gap: 12px;
}
.page-sub .product-box .box .txt-box .detail li p {
  font-size: 16px;
  margin: 0;
}
.page-sub .product-box .box .txt-box .detail li p:first-child {
  min-width: 48px;
  word-break: keep-all;
}
.page-sub .online-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 64px;
  background: url(../img/bg-online.png) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 960px) {
  .page-sub .online-box {
    display: block;
    padding: 48px;
    text-align: center;
  }
}
@media screen and (max-width: 640px) {
  .page-sub .online-box {
    padding: 48px 24px;
  }
}
@media screen and (max-width: 480px) {
  .page-sub .online-box {
    padding: 48px 24px 24px;
  }
}
.page-sub .online-box .title-box {
  margin: 0;
}
.page-sub .online-box .title-box .btn {
  margin-top: 40px;
}
@media screen and (max-width: 1080px) {
  .page-sub .online-box .title-box .btn {
    width: 400px;
  }
}
@media screen and (max-width: 640px) {
  .page-sub .online-box .title-box .btn {
    width: 100%;
  }
}
.page-sub .online-box .txt-box {
  text-align: center;
}
@media screen and (max-width: 960px) {
  .page-sub .online-box .txt-box {
    display: none;
  }
}
.page-sub .online-box .txt-box strong {
  font-size: 40px;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 1080px) {
  .page-sub .online-box .txt-box strong {
    font-size: 32px;
  }
}
.page-sub .online-box .txt-box p {
  font-size: 24px;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 1080px) {
  .page-sub .online-box .txt-box p {
    font-size: 18px;
  }
}
.page-sub .section-order {
  background: url(../img/bg-order.png) no-repeat;
  background-size: cover;
  text-align: center;
}
.page-sub .section-order.section-order-delivery {
  background: url(../img/bg-order2.png) no-repeat;
  background-size: cover;
}
.page-sub .section-order img {
  height: 88px;
  padding-right: 40px;
}
@media screen and (max-width: 480px) {
  .page-sub .section-order img {
    height: 64px;
    padding-right: 24px;
  }
}
.page-sub .section-order p {
  color: #fff;
  font-size: 20px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
  margin: 24px 0 48px;
}
@media screen and (max-width: 640px) {
  .page-sub .section-order p {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .page-sub .section-order p {
    margin: 24px 0 32px;
  }
}
.page-sub .section-order .btn {
  background: #C74C00;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .page-sub .section-order .btn {
    width: 380px;
  }
}
@media screen and (max-width: 480px) {
  .page-sub .section-order .btn {
    width: 100%;
  }
}
.page-sub .section-order .btn:hover {
  background: #1e4e20;
}
.page-sub .delivery-contents.pb-0 {
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .page-sub .delivery-contents .flex-box {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .page-sub .delivery-contents .flex-box .flex-img-box {
    position: relative;
    width: 100%;
    left: 0;
  }
}
.page-sub .delivery-contents .flex-box .flex-img-box img {
  width: 320px;
  height: 432px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 480px) {
  .page-sub .delivery-contents .flex-box .flex-img-box img {
    width: 240px;
    height: 320px;
  }
}
.page-sub .delivery-contents .flex-box .about-box h2 {
  font-size: 48px;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  margin: 0 0 24px;
  line-height: 1.4;
}
@media screen and (max-width: 1080px) {
  .page-sub .delivery-contents .flex-box .about-box h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  .page-sub .delivery-contents .flex-box .about-box h2 {
    margin-top: 32px;
  }
}
@media screen and (max-width: 480px) {
  .page-sub .delivery-contents .flex-box .about-box h2 {
    font-size: 36px;
    text-align: center;
  }
}
.page-sub .delivery-contents .flex-box .about-box p {
  font-size: 18px;
  margin-bottom: 24px;
}
@media screen and (max-width: 1280px) {
  .page-sub .delivery-contents .flex-box .about-box p br {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .page-sub .delivery-contents .flex-box .about-box p {
    font-size: 16px;
  }
}
.page-sub .delivery-contents .flex-box .about-box p strong {
  color: #A19031;
}
.page-sub .delivery-contents .flex-box .about-box .btn {
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .page-sub .delivery-contents .flex-box .about-box .btn {
    width: 100%;
    margin-top: 24px;
  }
}
.page-sub .delivery-contents .delivery-box {
  position: relative;
  padding: 160px 0 104px;
}
.page-sub .delivery-contents .delivery-box::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 400px;
  background: #C2B884;
  left: 0;
  bottom: 0;
}
.page-sub .delivery-contents .delivery-box .inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media screen and (max-width: 1080px) {
  .page-sub .delivery-contents .delivery-box .inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 120px 32px;
  }
}
@media screen and (max-width: 768px) {
  .page-sub .delivery-contents .delivery-box .inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 120px 32px;
  }
}
.page-sub .delivery-contents .delivery-box .inner .box {
  position: relative;
  padding: 32px;
  border: #D2D2D2 1px solid;
  background: #fff;
  text-align: center;
}
.page-sub .delivery-contents .delivery-box .inner .box img {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  top: -88px;
  left: calc(50% - 120px);
}
.page-sub .delivery-contents .delivery-box .inner .box h3 {
  font-size: 24px;
  font-family: "Bellefair", serif;
  font-weight: 500;
  margin: 144px 0 20px;
  padding-bottom: 20px;
  border-bottom: #D9D9D9 1px solid;
  line-height: 1.3;
}
.page-sub .delivery-contents .delivery-box .inner .box h3 .font-32 {
  font-size: 32px;
}
.page-sub .delivery-contents .delivery-box .inner .box h3 strong {
  color: #A19031;
  font-weight: 500;
}
.page-sub .delivery-contents .delivery-box .inner .box p {
  font-size: 18px;
  line-height: 1.5;
}
.page-sub .delivery-contents .title-box h3 {
  font-size: 36px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  margin-bottom: 32px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .page-sub .delivery-contents .title-box h3 {
    font-size: 28px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 480px) {
  .page-sub .delivery-contents .title-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
    text-align: left;
  }
}
.page-sub .delivery-contents .title-box p {
  font-size: 22px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .page-sub .delivery-contents .title-box p {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .page-sub .delivery-contents .title-box p {
    font-size: 16px;
    text-align: left;
  }
}
.page-sub .delivery-contents .title-box p strong {
  color: #A19031;
  font-weight: 500;
}
.page-sub .delivery-contents .delivery-service-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1080px) {
  .page-sub .delivery-contents .delivery-service-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .page-sub .delivery-contents .delivery-service-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page-sub .delivery-contents .delivery-service-box .box {
  position: relative;
  display: flex;
  align-items: end;
  height: 430px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .page-sub .delivery-contents .delivery-service-box .box {
    height: 240px;
  }
}
.page-sub .delivery-contents .delivery-service-box .box:nth-child(2) {
  margin-top: 40px;
}
@media screen and (max-width: 1080px) {
  .page-sub .delivery-contents .delivery-service-box .box:nth-child(2) {
    margin-top: 0;
  }
}
.page-sub .delivery-contents .delivery-service-box .box img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .page-sub .delivery-contents .delivery-service-box .box img {
    opacity: 0.6;
    -o-object-position: center;
       object-position: center;
  }
}
.page-sub .delivery-contents .delivery-service-box .box .txt-box {
  position: relative;
  z-index: 2;
  padding: 32px;
}
.page-sub .delivery-contents .delivery-service-box .box .txt-box h4 {
  color: #A19031;
  font-size: 40px;
  font-weight: 500;
  font-family: "Bellefair", serif;
  line-height: 1.2;
  margin: 0;
}
@media screen and (max-width: 480px) {
  .page-sub .delivery-contents .delivery-service-box .box .txt-box h4 {
    font-size: 32px;
  }
}
.page-sub .delivery-contents .delivery-service-box .box .txt-box span {
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
}
.page-sub .delivery-contents .plan-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}
@media screen and (max-width: 1080px) {
  .page-sub .delivery-contents .plan-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 960px) {
  .page-sub .delivery-contents .plan-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .page-sub .delivery-contents .plan-box {
    margin-bottom: 40px;
  }
}
.page-sub .delivery-contents .plan-box .box {
  text-align: center;
  background: #F2EEEA;
}
.page-sub .delivery-contents .plan-box .box .head {
  padding: 32px 24px 24px;
}
@media screen and (max-width: 480px) {
  .page-sub .delivery-contents .plan-box .box .head {
    padding-bottom: 20px;
  }
}
.page-sub .delivery-contents .plan-box .box .head h3 {
  color: #fff;
  font-size: 48px;
  font-family: "Bellefair", serif;
  font-weight: 500;
  margin: 0;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .page-sub .delivery-contents .plan-box .box .head h3 {
    font-size: 36px;
  }
}
.page-sub .delivery-contents .plan-box .box .head span {
  color: #fff;
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
}
.page-sub .delivery-contents .plan-box .box ul {
  padding: 24px;
}
.page-sub .delivery-contents .plan-box .box ul li {
  border-bottom: #D9D9D9 1px solid;
  margin-bottom: 24px;
  padding-bottom: 24px;
}
.page-sub .delivery-contents .plan-box .box ul li:last-child {
  border: 0;
  padding: 0;
  margin: 0;
}
.page-sub .delivery-contents .plan-box .box ul li h4 {
  font-size: 18px;
  margin: 0;
}
@media screen and (max-width: 480px) {
  .page-sub .delivery-contents .plan-box .box ul li h4 {
    font-size: 16px;
  }
}
.page-sub .delivery-contents .plan-box .box ul li p {
  font-size: 20px;
  line-height: 1.3;
}
@media screen and (max-width: 480px) {
  .page-sub .delivery-contents .plan-box .box ul li p {
    font-size: 18px;
  }
}
.page-sub .delivery-contents .plan-box .box ul li p.serif {
  font-size: 28px;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 480px) {
  .page-sub .delivery-contents .plan-box .box ul li p.serif {
    font-size: 24px;
  }
}
.page-sub .delivery-contents .plan-box .box ul li p .font-40 {
  font-size: 40px;
}
@media screen and (max-width: 480px) {
  .page-sub .delivery-contents .plan-box .box ul li p .font-40 {
    font-size: 36px;
  }
}
.page-sub .delivery-contents .plan-box .box.light-box .head {
  background: #A49F7E;
}
.page-sub .delivery-contents .plan-box .box.light-box ul li h4 {
  color: #A49F7E;
}
.page-sub .delivery-contents .plan-box .box.basic-box .head {
  background: #A19031;
}
.page-sub .delivery-contents .plan-box .box.basic-box ul li h4 {
  color: #A19031;
}
.page-sub .delivery-contents .plan-box .box.standard-box .head {
  background: #29662B;
}
.page-sub .delivery-contents .plan-box .box.standard-box ul li h4 {
  color: #29662B;
}/*# sourceMappingURL=style.css.map */