@charset "UTF-8";
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

:root {
  --gold-color: #9A8332;
  --gold-sub-color: #d2c38c;
  --text-color: #555;
  --subtitle-color: #999;
  --table-border-color: #CFCFCF;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text-color);
  background-color: #FEFDF9;
  letter-spacing: 0.08em;
}
body .page-main {
  min-height: 100vh;
}

.serif {
  font-family: "Noto Serif JP", serif;
}

.marcellus {
  font-family: "Marcellus";
}

p {
  text-align: justify;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  max-width: 100%;
}

.text-left {
  text-align: left;
}

.is-pc {
  display: none;
}
@media (min-width: 1024px) {
  .is-pc {
    display: block;
  }
}

.is-sp {
  display: block;
}
@media (min-width: 1024px) {
  .is-sp {
    display: none;
  }
}

#page {
  padding-top: 60px;
}
@media (min-width: 1024px) {
  #page {
    padding: 0;
  }
}

.section-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 20px 40px;
}
@media (min-width: 768px) {
  .section-inner {
    padding: 200px 20px;
  }
}
@media screen and (min-width: 1024px) {
  .section-inner {
    width: 100%;
    max-width: 93.75vw;
  }
}
@media screen and (min-width: 1280px) {
  .section-inner {
    width: 100%;
    max-width: 1280px;
    padding: 100px 40px 0;
  }
}

.btn-arrow {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 48px;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 750px) {
  .btn-arrow {
    top: 52%;
    right: 50px;
    width: 60px;
  }
}
.btn-arrow::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--gold-color);
}
.btn-arrow::after {
  content: "";
  position: absolute;
  bottom: 2px;
  right: -1px;
  width: 7px;
  height: 1px;
  border-top: 1px solid var(--gold-color);
  transform: rotate(-145deg);
}

.error-404 {
  max-width: 1280px;
  padding: 100px 20px 50px;
  margin: auto;
}

/* fadein */
.fadein-item {
  opacity: 0;
  transform: translate(0, 100px);
  transition: ease-in-out 1s;
}

/* 画面内に入った状態 */
.fadein-item.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/* Header styles */
.site-header {
  position: fixed;
  z-index: 9999;
  top: 0;
  width: 100%;
  background: #fff;
  border-top: 4px solid #D0C089;
}
@media (min-width: 1024px) {
  .site-header {
    position: relative;
  }
}
.site-header .online-shop-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 40px;
  background: var(--gold-color);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.site-header .online-shop-button .cart-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.35s;
}
.site-header .online-shop-button .cart-icon .cart-icon-image {
  display: block;
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-header .online-shop-button .online-shop-button-arrow {
  position: relative;
  display: block;
  width: 8px;
  height: 12px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.site-header .online-shop-button .online-shop-button-arrow::before, .site-header .online-shop-button .online-shop-button-arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 8px;
  height: 2px;
  border-radius: 9999px;
  background-color: currentColor;
  transform-origin: calc(100% - 1px) 50%;
}
.site-header .online-shop-button .online-shop-button-arrow::before {
  transform: rotate(45deg);
}
.site-header .online-shop-button .online-shop-button-arrow::after {
  transform: rotate(-45deg);
}
.site-header .online-shop-button:hover {
  background: #a88f38;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(154, 130, 50, 0.25);
}
.site-header .online-shop-button:hover .cart-icon {
  transform: translateX(-2px);
}
.site-header .online-shop-button:hover .online-shop-button-arrow {
  transform: translateX(3px);
}
.site-header .online-shop-button:focus-visible {
  outline: 2px solid var(--gold-color);
  outline-offset: 3px;
}
.site-header .online-shop-button-header {
  display: none;
  width: 194px;
  height: 40px;
  padding: 0;
  margin-top: -2px;
  border-radius: 28px;
}
@media (min-width: 1024px) {
  .site-header .online-shop-button-header {
    display: inline-flex;
  }
}
.site-header .online-shop-button-menu {
  display: flex;
  width: 100%;
  max-width: 194px;
  aspect-ratio: 5/1;
  gap: 10px;
  padding: 0;
  margin: 0 auto;
  border-radius: 999px;
}
@media (min-width: 1024px) {
  .site-header .online-shop-button-menu {
    gap: 8px;
  }
}
.site-header .header-inner {
  position: relative;
  z-index: 1000;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px 4px;
  background: #fff;
}
@media (min-width: 1024px) {
  .site-header .header-inner {
    padding: 20px 20px 0;
  }
}
.site-header .brand-left {
  display: flex;
  align-items: center;
  gap: 26px;
  justify-content: flex-start;
}
@media (min-width: 1024px) {
  .site-header .brand-left {
    gap: 35px;
  }
}
.site-header .brand-left .brand-logo img {
  height: 40px;
  width: auto;
  display: block;
}
@media (min-width: 1024px) {
  .site-header .brand-left .brand-logo img {
    height: 72px;
  }
}
.site-header .brand-left .company-name {
  margin-top: -6px;
  font-size: 14px;
  font-weight: bold;
}
@media (min-width: 1024px) {
  .site-header .brand-left .company-name {
    margin: 0;
    font-size: 20px;
  }
}
.site-header .brand-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (min-width: 1024px) {
  .site-header .brand-right {
    gap: 60px;
  }
}
.site-header .header-race {
  position: absolute;
  z-index: 999;
  bottom: -28px;
  width: 100%;
  height: 32px;
  background-image: url("../images/race_short.svg");
  background-repeat: repeat-x;
  background-position: left top;
  background-size: 375px;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .site-header .header-race {
    bottom: -36px;
    height: 50px;
    background-position: left top;
    background-size: 940px;
  }
}
.site-header #site-navigation {
  display: none;
}
@media (min-width: 1024px) {
  .site-header #site-navigation {
    display: block;
  }
}
.site-header .main-navigation {
  margin: 0;
}
.site-header .main-navigation #primary-menu {
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .site-header .main-navigation #primary-menu {
    gap: 45px;
  }
}
.site-header .main-navigation #primary-menu li a {
  text-decoration: none;
  color: var(--gold-color);
  font-weight: bold;
}
.site-header .main-navigation #primary-menu li .header-menu-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.site-header .main-navigation #primary-menu li .header-menu-title {
  display: block;
  line-height: 1em;
}
@media (min-width: 1024px) {
  .site-header .main-navigation #primary-menu li .header-menu-title {
    font-size: 18px;
  }
}
.site-header .main-navigation #primary-menu li .header-menu-description {
  display: block;
  margin: 2px auto 0;
  color: var(--subtitle-color);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5em;
}
.site-header .menu-toggle {
  display: block;
}
@media (min-width: 1024px) {
  .site-header .menu-toggle {
    display: none;
  }
}
.site-header .hamburger-toggle {
  display: block;
  width: 28px;
  height: 30px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  z-index: 1100;
  position: absolute;
  top: 11px;
  right: 24px;
}
@media (min-width: 1024px) {
  .site-header .hamburger-toggle {
    display: none;
  }
}
.site-header .hamburger-toggle-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold-color);
  margin: 7px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.site-header .hamburger-toggle.is-open .hamburger-toggle-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.site-header .hamburger-toggle.is-open .hamburger-toggle-line:nth-child(2) {
  opacity: 0;
}
.site-header .hamburger-toggle.is-open .hamburger-toggle-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.site-header .hamburger-panel-wrap {
  position: fixed;
  inset: 0;
  z-index: 998;
  visibility: hidden;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .site-header .hamburger-panel-wrap {
    display: none;
  }
}
.site-header .hamburger-panel-wrap.is-open {
  visibility: visible;
  pointer-events: auto;
}
.site-header .hamburger-panel-wrap.is-open .hamburger-panel-overlay {
  opacity: 1;
}
.site-header .hamburger-panel-wrap.is-open .hamburger-navigation {
  transform: translateX(0);
}
.site-header .hamburger-panel-overlay {
  position: absolute;
  top: 60px;
  right: 0;
  bottom: 0;
  left: 0;
  border: 0;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
}
.site-header .hamburger-navigation {
  position: absolute;
  top: 60px;
  right: 0;
  width: 80vw;
  max-width: 360px;
  height: 88%;
  background: #f6f3ec;
  padding: 8px 25px 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -1px 4px 10px rgba(0, 0, 0, 0.2);
}
.site-header .hamburger-navigation-bottom {
  margin-top: 14px;
}
.site-header .hamburger-brand-logo img {
  width: 116px;
  height: auto;
}
.site-header .hamburger-company-name {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
}
.site-header .hamburger-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .hamburger-menu-list li {
  border-bottom: 1px dotted #bdbdbd;
}
.site-header .hamburger-menu-link {
  position: relative;
  display: block;
  padding: 14px 22px 9px 16px;
}
.site-header .hamburger-menu-title {
  display: block;
  color: var(--gold-color);
  font-size: 17px;
  line-height: 1em;
  font-weight: 700;
  white-space: nowrap;
}
.site-header .hamburger-menu-description {
  display: block;
  color: #9a9a9a;
  font-size: 12px;
  margin-top: 2px;
}
.site-header .hamburger-menu-arrow {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  display: inline-block;
  width: 33px;
  height: 62px;
}
.site-header .hamburger-menu-arrow::before, .site-header .hamburger-menu-arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 12px;
  height: 2px;
  border-radius: 9999px;
  background-color: var(--gold-color);
  transform-origin: calc(100% - 1px) 50%;
}
.site-header .hamburger-menu-arrow::before {
  transform: rotate(45deg);
}
.site-header .hamburger-menu-arrow::after {
  transform: rotate(-45deg);
}
.site-header .hamburger-social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  list-style: none;
  margin: 15px 0 0;
  padding: 0;
}
.site-header .hamburger-social-links a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f1f1f1;
  font-size: 23px;
  line-height: 1em;
}

body.hamburger-open {
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .section-header {
    margin-bottom: 50px;
  }
}

.section-title {
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1em;
  color: var(--gold-color);
}
@media (min-width: 1024px) {
  .section-title {
    font-size: 30px;
  }
}

.section-subtitle {
  margin: 0;
  font-size: 15px;
  text-align: center;
  color: var(--subtitle-color);
  letter-spacing: 0.04em;
}
@media (min-width: 1024px) {
  .section-subtitle {
    margin-top: 13px;
    font-size: 18px;
  }
}

.divide-line {
  width: 86%;
  height: 1px;
  padding: 0 20px;
  margin: auto;
  background-color: #d2c38c;
}
@media (min-width: 1024px) {
  .divide-line {
    width: 100%;
    max-width: 1360px;
  }
}

.home-top {
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .home-top {
    margin-top: 7px;
    margin-bottom: 0;
  }
}
.home-top .home-top-media {
  position: relative;
}
.home-top .home-top-image {
  display: block;
  width: 100%;
  height: auto;
}
.home-top .home-top-overlay {
  position: absolute;
  left: 50%;
  top: 23%;
  transform: translate(-50%, -50%);
  max-width: 340px;
  width: auto;
  height: auto;
  pointer-events: none;
  z-index: 2;
}
@media (min-width: 1024px) {
  .home-top .home-top-overlay {
    left: 31%;
    top: 45%;
    max-width: 620px;
  }
}
.home-top .home-top-caption {
  position: absolute;
  left: 50%;
  bottom: 6%;
  transform: translateX(-50%);
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  padding: 8px 16px;
  border-radius: 6px;
  z-index: 3;
  font-size: 16px;
}

.news-section .section-inner {
  max-width: 1080px;
  padding: 28px 25px 0;
}
@media (min-width: 1024px) {
  .news-section .section-inner {
    padding: 110px 40px 0;
  }
}
.news-section .section-header {
  margin-bottom: 18px;
}
@media (min-width: 1024px) {
  .news-section .section-header {
    margin-bottom: 40px;
  }
}
.news-section .home-post-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px dotted #c9c9c9;
}
@media (min-width: 1024px) {
  .news-section .home-post-meta {
    grid-template-columns: 150px 1fr;
    align-items: center;
    gap: 0;
    padding: 30px 20px;
  }
}
.news-section .home-post-meta:last-child {
  border-bottom: 1px dotted #c9c9c9;
}
.news-section .home-post-meta-date {
  display: block;
  font-size: 14px;
  text-align: left;
  line-height: 1em;
  color: #3f464f;
}
@media (min-width: 1024px) {
  .news-section .home-post-meta-date {
    font-size: 20px;
  }
}
.news-section .home-post-meta-title {
  margin: 0;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.6em;
}
@media (min-width: 1024px) {
  .news-section .home-post-meta-title {
    font-size: 16px;
  }
}
.news-section .home-post-meta-title a {
  color: inherit;
  text-decoration: none;
}
.news-section .news-button {
  position: relative;
  display: block;
  width: 220px;
  padding: 15px 24px;
  margin: 35px auto 0;
  color: var(--gold-color);
  font-size: 13px;
  font-weight: 700;
  line-height: 1em;
  border: 1px solid var(--gold-color);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.35s ease;
}
@media (min-width: 1024px) {
  .news-section .news-button {
    width: 270px;
    padding: 16px 10px 16px 26px;
    margin: 50px auto 0;
    font-size: 16px;
  }
}
.news-section .news-button:hover {
  background-color: #f6f3ec;
}
.news-section .news-button:hover .btn-arrow {
  transform: translateY(-50%) translateX(8px);
}
.news-section .news-button:focus-visible {
  outline: 2px solid var(--gold-color);
  outline-offset: 4px;
}
.news-section .news-button .btn-arrow {
  position: absolute;
  top: 54%;
  right: 20px;
  transform: translateY(-50%);
  width: 38px;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 750px) {
  .news-section .news-button .btn-arrow {
    top: 52%;
    right: 34px;
    width: 40px;
  }
}

.news-section + .divide-line {
  margin-top: 50px;
  margin-bottom: 70px;
}
@media (min-width: 1024px) {
  .news-section + .divide-line {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}

.business-section {
  margin: 0;
  padding: 0;
}
.business-section .business-section-inner {
  max-width: none;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}
.business-section .section-header {
  max-width: 1280px;
  margin: 0 auto 20px;
  padding: 0 20px;
}
@media (min-width: 1024px) {
  .business-section .section-header {
    padding: 0 30px;
    margin: 0 auto 32px;
  }
}
.business-section .business-contents {
  display: flex;
  flex-direction: column-reverse;
  gap: 0;
  margin-top: 20px;
  width: 100%;
  margin-left: 0;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media (min-width: 1024px) {
  .business-section .business-contents {
    display: flex;
    flex-direction: row;
    gap: 0;
    margin-top: 100px;
  }
}
.business-section .business-section-text {
  position: static;
  z-index: 1;
  display: block;
  width: 92%;
  padding: 80px 28px 28px 40px;
  margin: -50px 0 0 0;
  background-color: #eceae5;
  font-size: 14px;
}
@media (min-width: 1024px) {
  .business-section .business-section-text {
    width: 62%;
    padding: 0;
    margin: 0 -120px 0 0;
    font-size: 18px;
    position: relative;
    aspect-ratio: 750/460;
  }
}
@media (min-width: 1400px) {
  .business-section .business-section-text {
    margin: 0 -170px 0 0;
  }
}
.business-section .business-section-text > div {
  position: static;
  right: auto;
  max-width: none;
  margin: 0;
  font-size: 14px;
  line-height: 2.2em;
}
@media (min-width: 1024px) {
  .business-section .business-section-text > div {
    position: absolute;
    top: 50%;
    right: 170px;
    transform: translateY(-50%);
    max-width: 420px;
    margin: initial;
    font-size: 16px;
    line-height: 2.2em;
  }
}
@media (min-width: 1280px) {
  .business-section .business-section-text > div {
    right: 210px;
    max-width: 470px;
  }
}
@media (min-width: 1400px) {
  .business-section .business-section-text > div {
    top: 44%;
    right: 256px;
    max-width: 520px;
    font-size: 18px;
  }
}
@media (min-width: 1600px) {
  .business-section .business-section-text > div {
    right: 366px;
  }
}
@media (min-width: 1024px) {
  .business-section .business-section-text > div br.is-pc {
    display: none;
  }
}
@media (min-width: 1400px) {
  .business-section .business-section-text > div br.is-pc {
    display: block;
  }
}
.business-section .business-section-media {
  position: relative;
  z-index: 2;
  margin-top: 0;
  width: 100%;
}
@media (min-width: 1024px) {
  .business-section .business-section-media {
    margin-top: -60px;
    width: 50%;
  }
}
.business-section .business-section-image {
  display: block;
  width: 92%;
  height: auto;
  margin-left: auto;
}
@media (min-width: 1024px) {
  .business-section .business-section-image {
    width: 100%;
  }
}

.strengths-section {
  position: relative;
  max-width: 1380px;
  margin: auto;
  padding: 0 24px;
}
@media (min-width: 1024px) {
  .strengths-section {
    margin: 42px auto 62px;
  }
}
.strengths-section .section-inner {
  padding: 20px 30px 50px;
}
@media (min-width: 1024px) {
  .strengths-section .section-inner {
    padding: 50px 20px 40px;
  }
}
.strengths-section .section-header {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .strengths-section .section-header {
    margin-bottom: 50px;
  }
}
.strengths-section .strengths-section-bg {
  position: absolute;
  top: 560px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 63%;
  background-color: #F6F3EC;
}
@media (min-width: 1024px) {
  .strengths-section .strengths-section-bg {
    top: 280px;
    width: 63%;
    height: 240px;
  }
}
.strengths-section .strengths-cards {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
  margin-top: 20px;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media (min-width: 1024px) {
  .strengths-section .strengths-cards {
    gap: 60px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 93px;
  }
}
.strengths-section .strengths-card .strengths-card-image {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
}
.strengths-section .strengths-card .strengths-card-title {
  margin-top: 18px;
  padding-bottom: 10px;
  font-size: 16px;
  text-align: center;
  border-bottom: 1px solid var(--gold-sub-color);
}
@media (min-width: 1024px) {
  .strengths-section .strengths-card .strengths-card-title {
    margin-top: 25px;
    font-size: 21px;
  }
}
.strengths-section .strengths-card .strengths-card-text {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.7em;
  text-align: justify;
}
@media (min-width: 1024px) {
  .strengths-section .strengths-card .strengths-card-text {
    font-size: 16px;
  }
}

.brand-section {
  background-image: url("../images/brand_haikei.png");
  background-position: left top;
  background-size: cover;
  padding-bottom: 10px;
}
@media (min-width: 1024px) {
  .brand-section {
    padding-bottom: 60px;
  }
}
@media (min-width: 1024px) {
  .brand-section .section-inner {
    max-width: 1180px;
    padding: 100px 80px 40px;
  }
}
@media (min-width: 1024px) and (min-width: 1400px) {
  .brand-section .section-inner {
    padding: 100px 20px 40px;
  }
}
@media (min-width: 1024px) {
  .brand-section .section-header {
    padding-bottom: 0;
  }
}

.home-slider {
  background-color: #fff;
}
@media (min-width: 1024px) {
  .home-slider {
    padding: 55px 50px 0;
  }
}
.home-slider .home-slide {
  min-height: 235px;
  padding: 0 0 70px;
}
.home-slider .home-slide.home-slide-no-desc {
  padding: 0;
}
@media (min-width: 1024px) {
  .home-slider .home-slide.home-slide-no-desc {
    padding: 0 0 40px;
  }
}
.home-slider .home-slide.home-slide-no-desc .home-slide-media {
  margin: auto;
}
.home-slider .home-slide.home-slide-no-desc .home-slide-body {
  margin-top: 10px;
}
@media (min-width: 1024px) {
  .home-slider .home-slide.home-slide-no-desc .home-slide-body {
    margin-top: 34px;
  }
}
.home-slider .home-slide-title {
  font-size: 16px;
  line-height: 1.6em;
  text-align: justify;
  letter-spacing: 0.03em;
}
@media (min-width: 1024px) {
  .home-slider .home-slide-title {
    font-size: 24px;
    text-align: center;
    letter-spacing: 0.08em;
  }
}
.home-slider .home-slide-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin-top: 30px;
}
@media (min-width: 1024px) {
  .home-slider .home-slide-body {
    flex-direction: row;
    gap: 40px;
    margin-top: 54px;
  }
}
.home-slider .home-slide-body .home-slide-media {
  width: 64%;
}
@media (min-width: 1024px) {
  .home-slider .home-slide-body .home-slide-media {
    width: 32%;
  }
}
.home-slider .home-slide-body .home-slide-text {
  flex: 1;
  font-size: 13px;
  line-height: 1.8em;
}
@media (min-width: 1024px) {
  .home-slider .home-slide-body .home-slide-text {
    font-size: 16px;
  }
}
.home-slider .slick-dots {
  display: none;
  bottom: -40px;
}
@media (min-width: 1024px) {
  .home-slider .slick-dots {
    display: block;
  }
}
.home-slider .slick-dots li button:before {
  font-size: 10px;
  color: #b8b0a3;
  opacity: 1;
}
.home-slider .slick-dots li.slick-active button:before {
  color: #5a4b37;
}
.home-slider .slick-prev,
.home-slider .slick-next {
  display: block;
  width: 36px;
  height: 36px;
  top: auto;
  bottom: -58px;
  transform: none;
  z-index: 2;
  border: 1px solid var(--gold-color);
  border-radius: 9999px;
  background-color: var(--gold-color);
}
@media (min-width: 1024px) {
  .home-slider .slick-prev,
  .home-slider .slick-next {
    width: 44px;
    height: 44px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }
}
.home-slider .slick-prev:hover,
.home-slider .slick-next:hover,
.home-slider .slick-prev:focus,
.home-slider .slick-next:focus {
  background-color: var(--gold-color);
}
.home-slider .slick-prev::before,
.home-slider .slick-prev::after,
.home-slider .slick-next::before,
.home-slider .slick-next::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  width: 16px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
}
.home-slider .slick-next::before,
.home-slider .slick-next::after {
  right: 10px;
  transform-origin: calc(100% - 1px) 50%;
}
@media (min-width: 1024px) {
  .home-slider .slick-next::before,
  .home-slider .slick-next::after {
    right: 14px;
  }
}
.home-slider .slick-next::before {
  transform: rotate(45deg);
}
.home-slider .slick-next::after {
  transform: rotate(-45deg);
}
.home-slider .slick-prev::before,
.home-slider .slick-prev::after {
  right: 23px;
  transform-origin: calc(100% - 1px) 50%;
}
@media (min-width: 1024px) {
  .home-slider .slick-prev::before,
  .home-slider .slick-prev::after {
    right: 26px;
  }
}
.home-slider .slick-prev::before {
  transform: scaleX(-1) rotate(45deg);
}
.home-slider .slick-prev::after {
  transform: scaleX(-1) rotate(-45deg);
}
.home-slider .slick-prev {
  left: calc(50% - 50px);
}
@media (min-width: 1024px) {
  .home-slider .slick-prev {
    left: -62px;
  }
}
.home-slider .slick-next {
  right: calc(50% - 50px);
}
@media (min-width: 1024px) {
  .home-slider .slick-next {
    right: -62px;
  }
}

.onlineshop-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 330px;
  padding: 10px 10px;
  margin: 90px auto 0;
  color: var(--gold-color);
  border: 1px solid var(--gold-color);
  border-radius: 999px;
  background-color: #fff;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.35s ease, border-color 0.35s ease, opacity 1s ease-in-out, transform 1s ease-in-out;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
.onlineshop-button:hover {
  border-color: #b89b47;
  background-color: #f6f3ec;
}
.onlineshop-button:hover img {
  transform: translateX(-4px);
}
.onlineshop-button:hover .btn-arrow {
  transform: translateY(-50%) translateX(6px);
}
.onlineshop-button:focus-visible {
  outline: 2px solid var(--gold-color);
  outline-offset: 4px;
}
@media (min-width: 1024px) {
  .onlineshop-button {
    width: 80%;
    max-width: 660px;
    padding: 20px 10px;
    margin: 80px auto 0;
  }
}
.onlineshop-button img {
  width: 40px;
  margin-left: 20px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 1024px) {
  .onlineshop-button img {
    margin-left: 45px;
  }
}
.onlineshop-button .btn-arrow {
  transition: transform 0.35s ease;
}
.onlineshop-button span {
  margin-left: 16px;
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.12em;
}
@media (min-width: 1024px) {
  .onlineshop-button span {
    margin-left: 20px;
    font-size: 26px;
    text-align: center;
  }
}

.home-slide-content {
  padding: 24px 24px 24px;
}
@media (min-width: 1024px) {
  .home-slide-content {
    padding: 0;
  }
}

.online-shop-icon {
  height: 20px;
  width: auto;
  display: block;
}

.company-section .section-header, .related-company-section .section-header {
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .company-section .section-header, .related-company-section .section-header {
    margin-bottom: 40px;
  }
}
.company-section .section-inner, .related-company-section .section-inner {
  padding: 60px 30px 40px;
}
@media (min-width: 1024px) {
  .company-section .section-inner, .related-company-section .section-inner {
    max-width: 1080px;
    padding: 100px 20px 40px;
  }
}
.company-section .photo-grid, .related-company-section .photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  padding: 0 20px;
}
@media (min-width: 1024px) {
  .company-section .photo-grid, .related-company-section .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 45px;
    padding: 0 60px;
  }
}
.company-section .photo-grid .company-grid-caption, .related-company-section .photo-grid .company-grid-caption {
  font-size: 10px;
  text-align: right;
}
@media (min-width: 1024px) {
  .company-section .photo-grid .company-grid-caption, .related-company-section .photo-grid .company-grid-caption {
    margin-top: 3px;
    font-size: 14px;
  }
}
.company-section .company-profile, .related-company-section .company-profile {
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .company-section .company-profile, .related-company-section .company-profile {
    margin-top: 35px;
  }
}
.company-section .company-profile .company-profile-table, .related-company-section .company-profile .company-profile-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--table-border-color);
  border-bottom: 1px solid var(--table-border-color);
  color: var(--cp-text);
  font-size: 12px;
  line-height: 1.8;
}
@media (min-width: 1024px) {
  .company-section .company-profile .company-profile-table, .related-company-section .company-profile .company-profile-table {
    font-size: 16px;
    border-top: 1px solid var(--table-border-color);
  }
}
@media (min-width: 1024px) {
  .company-section .company-profile .company-profile-table tbody, .related-company-section .company-profile .company-profile-table tbody {
    display: table-row-group;
  }
}
@media (min-width: 1024px) {
  .company-section .company-profile .company-profile-table tr, .related-company-section .company-profile .company-profile-table tr {
    display: table-row;
  }
}
.company-section .company-profile .company-profile-table th,
.company-section .company-profile .company-profile-table td, .related-company-section .company-profile .company-profile-table th,
.related-company-section .company-profile .company-profile-table td {
  display: block;
  padding: 8px 10px;
}
@media (min-width: 1024px) {
  .company-section .company-profile .company-profile-table th,
  .company-section .company-profile .company-profile-table td, .related-company-section .company-profile .company-profile-table th,
  .related-company-section .company-profile .company-profile-table td {
    display: table-cell;
    padding: 16px 22px;
  }
}
.company-section .company-profile .company-profile-table tr + tr th,
.company-section .company-profile .company-profile-table tr + tr td, .related-company-section .company-profile .company-profile-table tr + tr th,
.related-company-section .company-profile .company-profile-table tr + tr td {
  border-top: 0;
}
@media (min-width: 1024px) {
  .company-section .company-profile .company-profile-table tr + tr th,
  .company-section .company-profile .company-profile-table tr + tr td, .related-company-section .company-profile .company-profile-table tr + tr th,
  .related-company-section .company-profile .company-profile-table tr + tr td {
    border-top: 1px solid var(--table-border-color);
  }
}
.company-section .company-profile .company-profile-table th, .related-company-section .company-profile .company-profile-table th {
  width: 100%;
  background: #E8E5D6;
  text-align: left;
  font-weight: bold;
  border-right: 0;
  letter-spacing: 0.02em;
  white-space: normal;
}
@media (min-width: 1024px) {
  .company-section .company-profile .company-profile-table th, .related-company-section .company-profile .company-profile-table th {
    width: 220px;
    padding-left: 38px;
    white-space: nowrap;
  }
}
.company-section .company-profile .company-profile-table td, .related-company-section .company-profile .company-profile-table td {
  padding: 11px 10px 11px;
}
@media (min-width: 1024px) {
  .company-section .company-profile .company-profile-table td, .related-company-section .company-profile .company-profile-table td {
    padding: 20px 22px 20px 48px;
  }
}
.company-section .company-profile .company-profile-table tr + tr th, .related-company-section .company-profile .company-profile-table tr + tr th {
  border-top: 1px solid var(--table-border-color);
}
.company-section .company-profile .company-profile-link, .related-company-section .company-profile .company-profile-link {
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: all 0.3s ease;
}
.company-section .company-profile .company-profile-link:hover, .related-company-section .company-profile .company-profile-link:hover {
  opacity: 0.75;
}
.company-section .company-profile .company-profile-list, .related-company-section .company-profile .company-profile-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.company-section .company-profile .company-profile-list li, .related-company-section .company-profile .company-profile-list li {
  margin: 0;
}
.company-section .company-profile .company-profile-officers, .related-company-section .company-profile .company-profile-officers {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.company-section .company-profile .company-profile-officer, .related-company-section .company-profile .company-profile-officer {
  display: grid;
  grid-template-columns: 110px 75px 1fr;
  white-space: nowrap;
  line-height: 1em;
}
@media (min-width: 1024px) {
  .company-section .company-profile .company-profile-officer, .related-company-section .company-profile .company-profile-officer {
    grid-template-columns: 125px 95px 1fr;
    -moz-column-gap: 16px;
         column-gap: 16px;
    align-items: baseline;
  }
}
.company-section .company-profile .company-profile-officer-title,
.company-section .company-profile .company-profile-officer-name,
.company-section .company-profile .company-profile-officer-role, .related-company-section .company-profile .company-profile-officer-title,
.related-company-section .company-profile .company-profile-officer-name,
.related-company-section .company-profile .company-profile-officer-role {
  min-width: 0;
}
.company-section .company-profile .company-profile-bank, .related-company-section .company-profile .company-profile-bank {
  display: grid;
  grid-template-columns: 130px 1fr;
  margin: 0;
}
@media (min-width: 1024px) {
  .company-section .company-profile .company-profile-bank, .related-company-section .company-profile .company-profile-bank {
    grid-template-columns: 160px 1fr;
  }
}
.company-section .company-profile .company-profile-cols, .related-company-section .company-profile .company-profile-cols {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
}
.company-section .company-profile .company-shop-list, .related-company-section .company-profile .company-shop-list {
  display: grid;
  gap: 2px;
}
.company-section .company-profile .company-shop-list .shop-link, .related-company-section .company-profile .company-shop-list .shop-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #777;
}
.company-section .company-profile .company-shop-list .shop-link .cart, .related-company-section .company-profile .company-shop-list .shop-link .cart {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-color);
  transition: transform 0.3s ease;
}
.company-section .company-profile .company-shop-list .shop-link .cart img, .related-company-section .company-profile .company-shop-list .shop-link .cart img {
  width: 20px;
  height: 20px;
  display: block;
  border-radius: 0;
}
.company-section .company-profile .company-shop-list .shop-link .label, .related-company-section .company-profile .company-shop-list .shop-link .label {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.company-section .company-profile .company-shop-list .shop-link:hover, .related-company-section .company-profile .company-shop-list .shop-link:hover {
  color: var(--gold-color);
}
.company-section .company-profile .company-shop-list .shop-link:hover .label, .related-company-section .company-profile .company-shop-list .shop-link:hover .label {
  color: var(--gold-color);
  text-decoration-color: var(--gold-color);
  transition: all 0.3s ease;
}
.company-section .company-profile .company-shop-list .shop-link:hover .cart, .related-company-section .company-profile .company-shop-list .shop-link:hover .cart {
  transform: translateY(-1px);
}
.company-section .company-profile .company-shop-list .shop-link:focus-visible, .related-company-section .company-profile .company-shop-list .shop-link:focus-visible {
  outline: 2px solid var(--gold-color);
  outline-offset: 4px;
  border-radius: 2px;
}
.company-section .company-profile .company-shop-list .shop-link-feature, .related-company-section .company-profile .company-shop-list .shop-link-feature {
  color: var(--gold-color);
  font-weight: bold;
}
.company-section .company-profile .company-shop-list .shop-link-feature:hover .label, .related-company-section .company-profile .company-shop-list .shop-link-feature:hover .label {
  opacity: 0.75;
}

.related-company-section .section-inner {
  padding: 20px 30px 40px;
}
@media (min-width: 1024px) {
  .related-company-section .section-inner {
    max-width: 1080px;
    padding: 50px 20px 40px;
  }
}
.related-company-section .section-inner .company-profile {
  margin-top: 30px;
  margin-bottom: 35px;
}
@media (min-width: 1024px) {
  .related-company-section .section-inner .company-profile {
    margin-bottom: 50px;
  }
}

body.archive .page-hero,
body.page .page-hero,
body.single .page-hero {
  height: 150px;
  background-image: url("../images/title/title_haikei_sp.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  body.archive .page-hero,
  body.page .page-hero,
  body.single .page-hero {
    height: 210px;
    background-image: url("../images/title/title_haikei.png");
  }
}
body.archive .page-hero .page-hero-overlay-wrap,
body.page .page-hero .page-hero-overlay-wrap,
body.single .page-hero .page-hero-overlay-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 1024px) {
  body.archive .page-hero .page-hero-overlay-wrap,
  body.page .page-hero .page-hero-overlay-wrap,
  body.single .page-hero .page-hero-overlay-wrap {
    margin-top: 30px;
  }
}
body.archive .page-hero .page-hero-overlay,
body.page .page-hero .page-hero-overlay,
body.single .page-hero .page-hero-overlay {
  width: 90vw;
  max-width: 680px;
  height: auto;
  display: block;
}
body.archive .site-footer {
  margin-top: 100px;
}
@media (min-width: 1024px) {
  body.archive .site-footer {
    margin-top: 85px;
  }
}
body.archive {
  background-color: #fff;
}
body.archive .news-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 44px 20px 68px;
}
body.archive .news-section .news-box {
  text-align: left;
  margin-top: 17px;
}
@media (min-width: 1024px) {
  body.archive .news-section .news-box {
    margin-top: 75px;
  }
}
body.archive .news-section .news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px dotted #c9c9c9;
}
body.archive .news-section .news-list li {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 8px;
  padding: 17px 0;
  border-bottom: 1px dotted #c9c9c9;
}
@media (min-width: 1024px) {
  body.archive .news-section .news-list li {
    grid-template-columns: 130px 1fr;
    -moz-column-gap: 16px;
         column-gap: 16px;
    row-gap: 0;
    align-items: center;
    padding: 23px 0;
  }
}
body.archive .news-section .news-list li time {
  font-size: 16px;
  font-weight: bold;
  line-height: 1em;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  body.archive .news-section .news-list li time {
    font-size: 18px;
    line-height: 1.8;
  }
}
body.archive .news-section .news-list li a {
  font-size: 13px;
  line-height: 1.6em;
}
@media (min-width: 1024px) {
  body.archive .news-section .news-list li a {
    font-size: 16px;
  }
}
body.archive .news-section .news-list li a:hover {
  opacity: 0.8;
}
body.archive .news-section .pagination {
  margin-top: 60px;
  position: relative;
  text-align: center;
}
@media (min-width: 1024px) {
  body.archive .news-section .pagination {
    margin-top: 85px;
    padding: 0 120px;
  }
}
body.archive .news-section .pagination .page-numbers {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e2ddc8;
  color: #565656;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 6px;
  font-size: 18px;
  font-weight: 600;
}
@media (min-width: 1024px) {
  body.archive .news-section .pagination .page-numbers {
    width: 60px;
    height: 60px;
  }
}
body.archive .news-section .pagination .current {
  background-color: #a9944d;
  color: #fff;
}
body.archive .news-section .pagination .prev,
body.archive .news-section .pagination .next {
  width: auto;
  height: auto;
  border-radius: 0;
  background-color: transparent;
  color: #6c6c6c;
  position: absolute;
  bottom: -80px;
  transform: translateY(-50%);
  margin: 0;
  padding: 0 0 4px;
}
@media (min-width: 1024px) {
  body.archive .news-section .pagination .prev,
  body.archive .news-section .pagination .next {
    font-size: 28px;
    width: initial;
    height: initial;
    bottom: -21px;
  }
}
body.archive .news-section .pagination .prev .pagination-arrow,
body.archive .news-section .pagination .next .pagination-arrow {
  width: 72px;
  height: auto;
  display: block;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  body.archive .news-section .pagination .prev .pagination-arrow,
  body.archive .news-section .pagination .next .pagination-arrow {
    width: 80px;
  }
}
body.archive .news-section .pagination .prev {
  left: 0;
}
body.archive .news-section .pagination .next {
  right: 0;
}
body.archive .news-section .no-news {
  margin: 0;
  text-align: center;
  color: #666;
  padding: 40px 0;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
}

body.single footer,
body.page footer {
  margin-top: 30px;
}
@media (min-width: 1024px) {
  body.single footer,
  body.page footer {
    margin-top: 90px;
  }
}
body.single,
body.page {
  background-color: #fff;
}
body.single .single-section,
body.page .single-section {
  max-width: 1000px;
  margin: 10px auto;
  padding: 44px 20px 68px;
}
@media (min-width: 1024px) {
  body.single .single-section,
  body.page .single-section {
    margin: 70px auto;
  }
}
body.single .single-box,
body.page .single-box {
  text-align: left;
}
body.single article,
body.page article {
  margin: 0;
}
body.single .entry-header,
body.page .entry-header {
  border-bottom: 1px dotted var(--gold-color);
  padding-bottom: 2px;
}
body.single .entry-meta,
body.page .entry-meta {
  margin-bottom: 14px;
}
body.single .entry-meta time,
body.page .entry-meta time {
  font-size: 14px;
}
@media (min-width: 1024px) {
  body.single .entry-meta time,
  body.page .entry-meta time {
    font-size: 18px;
  }
}
body.single .entry-title,
body.page .entry-title {
  margin-top: 10px;
  font-size: 24px;
  line-height: 1.4em;
}
@media (min-width: 1024px) {
  body.single .entry-title,
  body.page .entry-title {
    margin-top: 30px;
    font-size: 30px;
  }
}
body.single .entry-content,
body.page .entry-content {
  padding-bottom: 0;
  margin-top: 10px;
  margin-bottom: 46px;
}
@media (min-width: 1024px) {
  body.single .entry-content,
  body.page .entry-content {
    padding-bottom: 30px;
    margin-top: 20px;
  }
}
body.single .entry-content > *:first-child,
body.page .entry-content > *:first-child {
  margin-top: 0;
}
body.single .entry-content p,
body.page .entry-content p {
  margin: 0 0 30px;
}
body.single .entry-content img,
body.page .entry-content img {
  width: auto;
  max-width: min(100%, 590px);
  display: block;
  margin: 34px auto 34px;
  height: auto;
}
body.single .post-navigation,
body.page .post-navigation {
  margin: 0;
}
body.single .post-navigation .nav-links,
body.page .post-navigation .nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
body.single .post-navigation .nav-previous a .pagination-arrow,
body.single .post-navigation .nav-next a .pagination-arrow,
body.page .post-navigation .nav-previous a .pagination-arrow,
body.page .post-navigation .nav-next a .pagination-arrow {
  display: block;
  max-width: 70px;
  height: auto;
}
@media (min-width: 1024px) {
  body.single .post-navigation .nav-previous a .pagination-arrow,
  body.single .post-navigation .nav-next a .pagination-arrow,
  body.page .post-navigation .nav-previous a .pagination-arrow,
  body.page .post-navigation .nav-next a .pagination-arrow {
    max-width: 80px;
  }
}
body.single .post-navigation .nav-next,
body.page .post-navigation .nav-next {
  margin-left: auto;
}

body.single .entry-content {
  border-bottom: 1px dotted var(--gold-color);
}

.normal-content-style h1 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.5;
}
.normal-content-style H2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}
.normal-content-style H3 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 20px;
}
.normal-content-style H4 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 18px;
}
.normal-content-style H5 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 18px;
}
.normal-content-style H6 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 18px;
}
.normal-content-style p {
  font-size: 18px;
  line-height: 34px;
}
@media (min-width: 1024px) {
  .normal-content-style p {
    line-height: 40px;
  }
}
.normal-content-style .is-layout-grid .wp-block-button__link {
  white-space: nowrap;
  padding: 4px 0;
}
.normal-content-style .wp-block-image {
  margin-top: 20px;
  margin-bottom: 20px;
}
.normal-content-style .wp-block-table td {
  color: var(--text-color);
  border: solid 1px var(--text-color);
}
.normal-content-style .wp-block-list {
  padding: 0 0 0 22px;
}
@media (min-width: 1024px) {
  .normal-content-style .wp-block-list {
    padding: 0 40px;
  }
}
.normal-content-style .entry-content {
  margin-top: 30px;
}
.normal-content-style .entry-meta .entry-date {
  color: var(--text-color);
  letter-spacing: 0.08em;
}
.normal-content-style .nav-links {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
@media (min-width: 1024px) {
  .normal-content-style .nav-links {
    margin-top: 110px;
  }
}
.normal-content-style .nav-links a {
  text-decoration: none;
  color: var(--text-color);
}
.normal-content-style .nav-links a img {
  max-width: 57px;
  display: block;
}

.page-notice h1, .page-notice h2 {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 28px;
  color: var(--text-color);
  text-align: justify;
}
.page-notice h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: var(--text-color);
}
.page-notice table {
  margin-top: 10px;
}
.page-notice p {
  line-height: 1.8;
}
.page-notice .entry-meta {
  margin-top: -20px;
  margin-bottom: 20px;
  text-align: right;
}
.page-notice .wp-block-table th {
  background-color: #ddd;
}
.page-notice .wp-block-table .wp-element-caption {
  margin-top: 0.5em;
  color: var(--text-color);
}

body.page-id-27 .single-section {
  max-width: 1240px;
  padding: 0 0 68px;
}
@media screen and (min-width: 1024px) {
  body.page-id-27 .single-section {
    padding: 30px 20px 68px;
  }
}
body.page-id-27 .entry-content {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
body.page-id-27 .form {
  background-color: #F6F3EC;
}
body.page-id-27 .form-inner {
  width: 87%;
  margin: 0 auto;
  padding-top: 35px;
}
@media screen and (min-width: 1024px) {
  body.page-id-27 .form-inner {
    width: 75%;
    padding-top: 50px;
    padding-bottom: 35px;
  }
}
body.page-id-27 .form-inner .form-desc {
  font-size: 16px;
  line-height: 1.7em;
}
@media screen and (min-width: 1024px) {
  body.page-id-27 .form-inner .form-desc {
    font-size: 19px;
    margin-bottom: 25px;
    line-height: 2em;
    text-align: center;
  }
}
body.page-id-27 .form-inner a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
body.page-id-27 .form-inner input,
body.page-id-27 .form-inner textarea {
  width: 100%;
  height: 45px;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  opacity: 1;
}
@media screen and (min-width: 1024px) {
  body.page-id-27 .form-inner input,
  body.page-id-27 .form-inner textarea {
    height: 62px;
  }
}
body.page-id-27 .form-inner input[type=radio] {
  height: 12px;
  margin-top: 2px;
}
@media screen and (min-width: 1024px) {
  body.page-id-27 .form-inner input[type=radio] {
    height: 16px;
  }
}
body.page-id-27 .form-inner .contact-checkbox .wpcf7-list-item {
  display: block;
  margin-left: 12px;
}
@media screen and (min-width: 1024px) {
  body.page-id-27 .form-inner .contact-checkbox .wpcf7-list-item {
    margin-left: 16px;
  }
}
body.page-id-27 .form-inner .contact-checkbox .wpcf7-list-item label {
  display: grid;
  grid-template-columns: 20px auto;
  gap: 7px;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  body.page-id-27 .form-inner .contact-checkbox .wpcf7-list-item label {
    gap: 20px;
  }
}
body.page-id-27 .form-inner .contact-checkbox .wpcf7-list-item label .wpcf7-list-item-label {
  margin: 6px 0;
  font-size: 13px;
  line-height: 1em;
}
@media screen and (min-width: 1024px) {
  body.page-id-27 .form-inner .contact-checkbox .wpcf7-list-item label .wpcf7-list-item-label {
    margin: 10px 0;
    font-size: 16px;
  }
}
body.page-id-27 .form-inner p {
  margin: 0;
}
body.page-id-27 .form-inner input {
  padding: 0 20px;
}
body.page-id-27 .form-inner input::-moz-placeholder {
  color: #CCCCCC;
}
body.page-id-27 .form-inner input::placeholder {
  color: #CCCCCC;
}
body.page-id-27 .form-inner textarea {
  padding: 20px 20px;
  min-height: 200px;
}
@media screen and (min-width: 1024px) {
  body.page-id-27 .form-inner textarea {
    min-height: 360px;
  }
}
body.page-id-27 .form-inner .privacy-title {
  margin-top: 10px;
  margin-left: -5px;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (min-width: 1024px) {
  body.page-id-27 .form-inner .privacy-title {
    margin-top: 20px;
    font-size: 16px;
  }
}
body.page-id-27 .form-inner .privacy-title + p {
  font-size: 12px;
  line-height: 1.8em;
}
@media screen and (min-width: 1024px) {
  body.page-id-27 .form-inner .privacy-title + p {
    font-size: 16px;
    line-height: 2em;
  }
}
body.page-id-27 .form-inner ul {
  font-weight: bold;
  padding: 10px 0 10px 20px;
  line-height: 26px;
}
body.page-id-27 .form-inner input[type=submit] {
  display: block;
  width: 150px;
  height: 45px;
  padding: 12px 12px;
  margin: 25px auto 0;
  background: var(--gold-color);
  border-radius: 5px;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  color: #ffffff;
  line-height: 1em;
  opacity: 1;
  transition: 0.3s;
  border: none;
}
@media screen and (min-width: 1024px) {
  body.page-id-27 .form-inner input[type=submit] {
    width: 200px;
    height: 60px;
    margin: 55px auto 0;
    font-size: 24px;
  }
}
body.page-id-27 .form-inner input[type=submit]:hover {
  box-shadow: none;
  opacity: 0.8;
}
body.page-id-27 .form-inner p:has(input[type=submit]) {
  text-align: center;
  margin: 40px 0;
}
body.page-id-27 .required-label::after {
  content: "必須";
  background-color: var(--gold-color);
  color: #fff;
  font-size: 10px;
  min-width: 10px;
  padding: 3px 3px;
  margin: -2px 0 0 6px;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  display: inline-block;
}
@media screen and (min-width: 1024px) {
  body.page-id-27 .required-label::after {
    padding: 4px 4px;
    margin: -2px 0 0 18px;
  }
}
body.page-id-27 .required .wpcf7-form-control-wrap::after {
  content: "必須";
  background-color: var(--gold-color);
  color: #fff;
  font-size: 10px;
  min-width: 10px;
  padding: 3px 3px;
  margin: -2px 0 0 9px;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  display: inline-block;
}
@media screen and (min-width: 1024px) {
  body.page-id-27 .required .wpcf7-form-control-wrap::after {
    padding: 4px 4px;
    margin: -2px 0 0 9px;
  }
}
body.page-id-27 .label-text {
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1em;
}
@media screen and (min-width: 1024px) {
  body.page-id-27 .label-text {
    margin-top: 38px;
    font-size: 18px;
  }
}
body.page-id-27 .form-hansha input[type=checkbox],
body.page-id-27 .form-doui input[type=checkbox],
body.page-id-27 .form-checklist input[type=checkbox] {
  position: relative;
  width: 12px;
  height: 12px;
  top: 2px;
  padding: 0;
  background-color: white;
  border: 1px solid #000000;
  border-radius: 3px;
  opacity: 1;
}
@media screen and (min-width: 1024px) {
  body.page-id-27 .form-hansha input[type=checkbox],
  body.page-id-27 .form-doui input[type=checkbox],
  body.page-id-27 .form-checklist input[type=checkbox] {
    width: 14px;
    height: 14px;
  }
}
body.page-id-27 .form-doui {
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (min-width: 1024px) {
  body.page-id-27 .form-doui {
    margin: 0;
    font-size: 16px;
  }
}
body.page-id-27 .form-doui span {
  margin-left: 0;
}
body.page-id-27 .form-checklist .wpcf7-list-item {
  width: 100%;
  margin: 6px 0;
}
body.page-id-27 .form-checklist .wpcf7-list-item.first {
  margin-top: 0;
}
@media screen and (min-width: 768px) and (max-width: 1399px) {
  body.page-id-27 .form-checklist .wpcf7-list-item {
    width: 32%;
  }
  body.page-id-27 .form-checklist .wpcf7-list-item.first {
    margin: 0;
  }
}
@media screen and (min-width: 1400px) {
  body.page-id-27 .form-checklist .wpcf7-list-item:nth-child(-n+3) {
    width: 22%;
  }
  body.page-id-27 .form-checklist .wpcf7-list-item.first {
    margin: 0;
  }
}
body.page-id-27 .text-bold {
  font-weight: bold;
}

.site-footer {
  border-top: 2px solid #c9b47d;
  background-color: #F6F3EC;
  padding: 35px 20px 48px;
  margin-top: 50px;
}
@media (min-width: 1024px) {
  .site-footer {
    padding: 54px 20px 56px;
    margin-top: 150px;
  }
}
.site-footer .footer-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}
.site-footer .footer-company {
  margin-bottom: 34px;
}
@media (min-width: 1024px) {
  .site-footer .footer-company {
    margin-bottom: 50px;
  }
}
.site-footer .footer-company-name {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4em;
  text-align: center;
}
@media (min-width: 1024px) {
  .site-footer .footer-company-name {
    font-size: 25px;
  }
}
.site-footer .footer-company-address {
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5em;
  text-align: center;
}
@media (min-width: 1024px) {
  .site-footer .footer-company-address {
    font-size: 18px;
  }
}
.site-footer .footer-navigation {
  margin-bottom: 30px;
}
.site-footer #footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-rows: repeat(4, auto);
  grid-template-columns: repeat(2, max-content);
  grid-auto-flow: column;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 8px;
}
@media (min-width: 1024px) {
  .site-footer #footer-menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    -moz-column-gap: 30px;
         column-gap: 30px;
    row-gap: 10px;
  }
}
.site-footer #footer-menu li {
  margin: 0;
  text-align: left;
}
.site-footer #footer-menu a {
  font-size: 13px;
  line-height: 1.5em;
  color: #2f3740;
}
@media (min-width: 1024px) {
  .site-footer #footer-menu a {
    font-size: 15px;
  }
}
.site-footer .footer-social-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 16px;
}
@media (min-width: 1024px) {
  .site-footer .footer-social-links {
    gap: 20px;
  }
}
.site-footer .footer-social-links a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background-color: #ffffff;
  color: #2f3740;
  font-size: 22px;
  font-weight: 600;
  line-height: 1em;
}
.site-footer .footer-social-icon-instagram {
  height: auto;
  display: block;
}
.site-footer .footer-copyright {
  margin: 18px 0 0;
  font-size: 10px;
  line-height: 1.6em;
  text-align: center;
}
@media (min-width: 1024px) {
  .site-footer .footer-copyright {
    font-size: 14px;
    margin-top: 46px;
  }
}

#to-page-top-btn.show {
  transform: translate3d(0px, 0px, 0px);
}

#to-page-top-btn {
  position: fixed;
  right: 0px;
  bottom: 0px;
  z-index: 999;
  transform: translate3d(0px, 100%, 0px);
  transition: 0.35s;
}
#to-page-top-btn > a {
  display: block;
  width: 30px;
  height: 86px;
  line-height: 60px;
  z-index: 100;
  position: relative;
  background: transparent;
  text-decoration: none;
}
@media (min-width: 1024px) {
  #to-page-top-btn > a {
    height: 101px;
  }
}
#to-page-top-btn > a::before {
  display: none;
}
#to-page-top-btn > a .arrow {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 85px;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 1024px) {
  #to-page-top-btn > a .arrow {
    height: 100px;
  }
}
#to-page-top-btn > a .arrow::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: var(--gold-color);
}
#to-page-top-btn > a .arrow::after {
  content: "";
  position: absolute;
  top: 1px;
  left: -1px;
  width: 7px;
  height: 1px;
  border-top: 1px solid var(--gold-color);
  transform: rotate(45deg);
}
#to-page-top-btn > a:hover .arrow {
  transition: all 0.2s ease-in-out;
}
@media (min-width: 1024px) {
  #to-page-top-btn > a:hover .arrow {
    height: 140px;
  }
}
#to-page-top-btn > a p {
  position: absolute;
  right: 14px;
  bottom: 0;
  color: var(--gold-color);
  font-size: 10px;
  line-height: 1em;
  white-space: nowrap;
  transform: rotate(90deg);
  transform-origin: top right;
  transition: all 0.2s ease-in-out;
}
#to-page-top-btn > a:hover p {
  color: var(--gold-color);
  transition: all 0.2s ease-in-out;
}/*# sourceMappingURL=style.css.map */