@charset "UTF-8";
@layer resets {
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  :where([hidden]:not([hidden=until-found])) {
    display: none !important;
  }
  :where(html) {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    color-scheme: dark light;
    -moz-tab-size: 2;
    -o-tab-size: 2;
    tab-size: 2;
    scrollbar-gutter: stable;
    interpolate-size: allow-keywords;
    line-height: 1.5;
    scroll-behavior: smooth;
    min-width: 320px;
    settings: "palt";
    font-feature-settings: "palt" 1;
  }
  :where(html:has(dialog:modal[open])) {
    overflow: clip;
  }
  :where(body) {
    line-height: inherit;
    font-family: var(--font-jp);
    -webkit-font-smoothing: antialiased;
    font-size: clamp(var(--font-size-min), var(--font-size-mid), var(--font-size-max));
    color: #5b4518;
    background-color: #fff;
  }
  :where(body).active {
    overflow: hidden;
  }
  :where(section) {
    position: relative;
    overflow: hidden;
    height: auto;
  }
  :where(input, button, textarea, select) {
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    word-spacing: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    background-color: #fff;
  }
  :where(button) {
    all: unset;
  }
  :where(textarea) {
    resize: vertical;
    resize: block;
  }
  :where(button, label, select, summary, [role=button], [role=option]) {
    cursor: pointer;
  }
  :where(:disabled, label:has(> :disabled, + disabled)) {
    cursor: not-allowed;
  }
  :where(a) {
    color: inherit;
    text-underline-offset: 0.2ex;
    text-decoration: none;
  }
  :where(ul, ol) {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  :where(blockquote, q) {
    quotes: none;
  }
  :where(blockquote:before, blockquote:after, q:before, q:after) {
    content: "";
    content: none;
  }
  :where(table) {
    border-collapse: collapse;
    border-spacing: 0;
  }
  :where(img, picture, svg, video) {
    max-inline-size: 100%;
    block-size: auto;
    display: block;
    vertical-align: middle;
  }
  :where(dialog, [popover]) {
    border: none;
    background: none;
    color: inherit;
    inset: unset;
    max-width: unset;
    max-height: unset;
    overflow: unset;
  }
  :where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
    display: none !important;
  }
  :where(:focus-visible) {
    outline: 3px solid CanvasText;
    box-shadow: 0 0 0 5px Canvas;
    outline-offset: 1px;
  }
  :where(.visually-hidden:not(:focus-within, :active)) {
    clip-path: inset(50%) !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden !important;
    position: absolute !important;
    white-space: nowrap !important;
    border: 0 !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    user-select: none !important;
  }
  :where(fieldset, legend) {
    display: block;
    float: none;
    min-width: auto;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: normal;
    font-style: normal;
    font-size: 100%;
    font-family: inherit;
    line-height: inherit;
  }
  :where(a) {
    text-decoration: none;
    transition: 0.3s;
    opacity: 1;
    display: inline-block;
  }
  :where(a):active {
    transform: scale(0.95);
  }
  :where(a):hover {
    opacity: 0.6;
  }
}
@layer setting {
  :root {
    /* フォント関連 */
    --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Sans", "游ゴシック Mediu", YuGothic, YuGothicM, "メイリオ", meiryo, sans-serif;
    --font-min: "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    --font-en: "Jost", sans-serif;
    --font-begas: "Bebas Neue", cursive;
    /* レイアウト */
    --font-base: 16px;
    --container-width: 1100px;
    --container-width-p: 92%;
    --section-padding: 2em 0;
    /* 色 */
    --color1: #ecf1f7;
    --color2: #222;
    /* フォントサイズclamp */
    --font-size-min: 9px;
    --font-size-mid: calc(var(--font-base) / var(--container-width) * 100vw);
    --font-size-max: 16px;
  }
  @media screen and (max-width: 768px) {
    :root {
      --font-size-mid: calc((var(--font-base) / var(--container-width) * 100vw) * 1.55);
    }
  }
}
@layer layouts {
  /* アコーディオン */
  :where(.accordion-area) {
    list-style: none;
    width: 100%;
    margin: 0 auto;
  }
  :where(.accordion-area) li {
    background-color: #fff;
    border-radius: 0.8em;
    box-shadow: 0 0 0.8em 0 rgba(0, 0, 0, 0.4);
  }
  :where(.accordion-area) li + li {
    margin-top: 2em;
  }
  :where(.accordion-area) :where(.title) {
    position: relative;
    transition: all 0.5s ease;
    margin: 0;
    color: #e6c068;
  }
  :where(.accordion-area) :where(.title):before {
    display: block;
    position: absolute;
    content: "";
    width: 2rem;
    height: auto;
    aspect-ratio: 78/33;
    background-color: #fff;
    border-radius: 50%;
    transform: translate(50%, -50%);
    top: 50%;
    right: calc(1rem + 3%);
  }
  :where(.accordion-area) :where(.title):after {
    display: block;
    position: absolute;
    content: "";
    left: 0.75em;
    top: 1.48em;
    width: 1.4em;
    aspect-ratio: 78/33;
    height: auto;
    transform: translateY(-50%);
  }
  :where(.accordion-area) :where(.title) :where(span) {
    cursor: pointer;
    display: inline-block;
    padding: 0.7em 0;
    width: 100%;
    position: relative;
    letter-spacing: 0.1em;
    font-weight: 700;
    width: 100%;
    padding-right: calc(2rem + 3%);
    padding-left: 3.2rem;
  }
  :where(.accordion-area) :where(.title) :where(span):before {
    content: "";
    width: 1.5rem;
    height: auto;
    aspect-ratio: 78/33;
    background: url("../img/sec1_img2.webp") no-repeat center/cover;
    display: block;
    position: absolute;
    right: calc(1rem + 3%);
    top: 50%;
    background-size: 90%;
    background-position: center;
    transition: 0.3s;
    transform: translate(50%, -50%) rotate(0deg);
  }
  :where(.accordion-area) :where(.title) :where(span):before {
    transform: translate(50%, -50%) rotate(-180deg);
  }
  :where(.accordion-area) .title.close span::before {
    transform: translate(50%, -50%) rotate(0deg);
  }
  :where(.accordion-area) .abox {
    display: none;
    font-size: 1.1em;
    background: url("../img/dot.webp") no-repeat bottom/100% auto;
    padding: 0 3.2rem 2.5em;
    font-weight: 500;
    position: relative;
    color: #282828;
    font-size: 1.15em;
    letter-spacing: 0.05em;
  }
  :where(.accordion-area) .abox:after {
    display: block;
    position: absolute;
    content: "";
    left: 0.75em;
    top: 1.7em;
    width: 1.4em;
    aspect-ratio: 1/1;
    height: auto;
    transform: translateY(-50%);
    background: url("../img/a.webp") no-repeat center/contain;
  }
  @media screen and (max-width: 768px) {
    :where(.accordion-area) .abox {
      padding: 0 1rem 1rem;
    }
  }
  :where(.frame) {
    width: var(--container-width-p);
    max-width: var(--container-width);
    margin-inline: auto;
    position: relative;
  }
  :where(.flex) {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
}
@layer modules {
  /* ハンバーガーメニュー構造・配置 */
  .hamburger {
    display: none;
  }
  @media screen and (max-width: 768px) {
    .hamburger {
      display: flex;
    }
  }
  .hamburger {
    margin: auto 0;
    cursor: pointer;
    text-align: center;
    width: 9.2%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 3.5em;
    height: 3.5em;
    transform: translate(50%, -50%);
    top: calc(2em + 4vw);
    right: calc(2em + 4vw);
    z-index: 20;
  }
  nav.globalMenuSp {
    position: fixed;
    z-index: 25;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    transform: translateX(120%);
    transition: all 0.6s;
    width: 100%;
    height: 100vh;
    max-width: 450px;
    background-size: 100% auto, auto;
    background-position: top center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  nav.globalMenuSp ul {
    width: 80%;
  }
  nav.globalMenuSp ul li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.6);
  }
  nav.globalMenuSp ul li a {
    display: block;
    width: 100%;
    color: #fff;
    padding: 5% 5%;
    font-size: 0.75rem;
    text-align: center;
    width: 100%;
    letter-spacing: 0.08em;
  }
  nav.globalMenuSp ul li a span {
    display: block;
    font-family: var(--font-min);
    font-size: 1.4em;
    padding-bottom: 0.3em;
    color: #bc9342;
    font-weight: 400;
    letter-spacing: 0.2em;
  }
  nav.globalMenuSp .close_menu {
    width: 3em;
    height: 3em;
    transform: translate(50%, -50%);
    top: calc(2em + 2vw);
    right: calc(2em + 2vw);
    position: absolute;
    cursor: pointer;
  }
  nav.globalMenuSp .close_menu:before, nav.globalMenuSp .close_menu:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 70%;
    background: #fff;
  }
  nav.globalMenuSp .close_menu:before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  nav.globalMenuSp .close_menu:after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  nav.globalMenuSp.active {
    transform: translateX(0%);
  }
}
@layer utilities {
  @media screen and (max-width: 768px) {
    .pc {
      display: none !important;
    }
  }
  .sp {
    display: none !important;
  }
  @media screen and (max-width: 768px) {
    .sp {
      display: block !important;
    }
  }
}
section {
  padding: 4em 0;
}
@media screen and (max-width: 768px) {
  section {
    padding: 2em 0;
  }
}

.imgtitle {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 800px;
  width: 65%;
  display: block;
}
@media screen and (max-width: 768px) {
  .imgtitle {
    width: 80%;
  }
}

video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

#kv {
  background: url("../img/kv.webp") no-repeat center/cover;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  #kv {
    background: url("../img/kv_sp.webp") no-repeat center/cover;
    height: 100dvh;
  }
}
#kv {
  /* 背景動画のスタイル */
}
#kv .kv-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  z-index: 1;
}
#kv .frame {
  padding: 3.5em 0 7em;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #kv .frame {
    padding: 0 0 20dvh;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: column;
  }
}
#kv h2 {
  width: 84%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  #kv h2 {
    width: 92%;
  }
}
#kv p {
  width: 79%;
  margin-inline: auto;
  color: #fff;
  font-size: 1em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #kv p {
    width: 90%;
    font-size: 1.6em;
    margin-top: 1em;
  }
}

#sec1 h2 {
  font-family: var(--font-min);
  text-align: center;
  font-size: 3em;
  letter-spacing: 0.1em;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.4em;
}
#sec1 h2 span {
  display: inline-block;
  margin-bottom: 0.5em;
  font-size: 0.5em;
}
@media screen and (max-width: 768px) {
  #sec1 h2 {
    font-size: 1.9em;
    letter-spacing: 0.05em;
    width: 19.8em;
    margin: 0 auto 1em;
  }
  #sec1 h2 span {
    font-size: 1em;
    margin-top: 0.8em;
    text-align: left;
    line-height: 1.4;
    width: 100%;
    padding-left: 0.15em;
  }
}
#sec1 h3 {
  color: #e6c068;
  font-family: var(--font-min);
  text-align: center;
  font-size: 1.8em;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
}
#sec1 h3 span {
  display: inline-block;
  padding-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  #sec1 h3 {
    font-size: 2em;
  }
}
#sec1 .accordion-area {
  margin-top: 4em;
}
#sec1 .accordion-area .abox p {
  font-size: 0.9em;
  line-height: 2.2;
  padding: 1em 0;
}
#sec1 .accordion-area .abox p + p {
  border-top: 2px solid #5b4518;
}
@media screen and (max-width: 768px) {
  #sec1 .accordion-area .abox p {
    font-size: 0.9rem;
  }
}

#sec2 h2 {
  font-family: var(--font-min);
  text-align: center;
  font-size: 2.8em;
  letter-spacing: 0.1em;
  font-weight: 400;
  line-height: 1.4;
  margin: 0.5em 0 2em;
  padding-bottom: 0.7em;
  position: relative;
}
#sec2 h2:before {
  display: block;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  width: 8rem;
  height: 2px;
  background-color: #5b4518;
}
#sec2 h2 span {
  display: inline-block;
  margin-bottom: 0.5em;
  font-size: 0.5em;
}
@media screen and (max-width: 768px) {
  #sec2 h2 {
    font-size: 1.8em;
  }
  #sec2 h2:before {
    width: 4rem;
  }
}
#sec2 iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 768px) {
  #sec2 .box1 figure {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
#sec2 .box2 h3 {
  font-family: var(--font-min);
  text-align: center;
  font-size: 2.8em;
  letter-spacing: 0.15em;
  font-weight: 400;
  line-height: 1.4;
  margin: 2em 0 1.5em;
  padding-bottom: 0.7em;
  position: relative;
}
#sec2 .box2 h3 span {
  display: block;
  font-size: 0.7em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  #sec2 .box2 h3 {
    font-size: 2.2em;
  }
}
@media screen and (max-width: 768px) {
  #sec2 .box2 .movie {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
#sec2 .box3 h3 {
  font-family: var(--font-min);
  text-align: center;
  font-size: 2.8em;
  letter-spacing: 0.15em;
  font-weight: 400;
  line-height: 1.4;
  margin: 2em 0 1.5em;
  padding-bottom: 0.7em;
  position: relative;
  color: #5b4518;
}
#sec2 .box3 h3 span {
  display: block;
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  #sec2 .box3 h3 {
    font-size: 2.2em;
  }
}
#sec2 .box3 ul li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#sec2 .box3 ul li + li {
  margin-top: 6em;
}
#sec2 .box3 ul li figure {
  width: 33%;
}
#sec2 .box3 ul li .box {
  width: 63%;
  border-radius: 0.8em;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 0 0.8em 0 rgba(0, 0, 0, 0.4);
}
#sec2 .box3 ul li .box h4 {
  background-color: #bc9342;
  padding: 0.4em 0;
  text-align: center;
  color: #fff;
  font-family: var(--font-min);
  font-size: 1.6em;
  letter-spacing: 0.1em;
  font-weight: 500;
}
#sec2 .box3 ul li .box p {
  padding: 0 1.5em;
  margin: 1.5em 0;
  line-height: 1.8;
  font-size: 1.1em;
}
#sec2 .box3 ul li .box p span {
  text-decoration: underline;
  text-underline-offset: 0.3em;
}
@media screen and (max-width: 768px) {
  #sec2 .box3 ul li {
    flex-direction: column;
    align-items: center;
  }
  #sec2 .box3 ul li figure {
    width: 70%;
    margin-bottom: 4em;
  }
  #sec2 .box3 ul li .box {
    width: 100%;
  }
  #sec2 .box3 ul li .box h4 {
    font-size: 2em;
  }
  #sec2 .box3 ul li .box p {
    font-size: 0.9rem;
  }
}
#sec2 .box4 h3 {
  font-family: var(--font-min);
  text-align: center;
  font-size: 2.8em;
  letter-spacing: 0.15em;
  font-weight: 400;
  line-height: 1.4;
  margin: 2em 0 1.5em;
  padding-bottom: 0.7em;
  position: relative;
}
#sec2 .box4 h3:before {
  display: block;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  width: 8rem;
  height: 2px;
  background-color: #5b4518;
}
#sec2 .box4 h3 span {
  display: block;
  font-size: 0.7em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  #sec2 .box4 h3 {
    font-size: 2.2em;
    letter-spacing: 0.04em;
  }
  #sec2 .box4 h3:before {
    width: 4rem;
  }
}
#sec2 .box4 ul {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
#sec2 .box4 ul li {
  width: 30%;
}
#sec2 .box4 ul li h4 {
  text-align: center;
  font-size: 1.3em;
  letter-spacing: 0.1em;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 0.5em;
  position: relative;
}
#sec2 .box4 ul li figure img {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  #sec2 .box4 ul {
    flex-direction: column;
    align-items: center;
  }
  #sec2 .box4 ul li {
    width: 100%;
  }
  #sec2 .box4 ul li h4 {
    font-size: 1rem;
  }
  #sec2 .box4 ul li + li {
    margin-top: 2.5em;
  }
}

#sec3 h2 {
  font-family: var(--font-min);
  text-align: center;
  font-size: 2.8em;
  letter-spacing: 0.15em;
  font-weight: 400;
  line-height: 1.4;
  margin: 0.5em 0 1.5em;
  padding-bottom: 0.7em;
  position: relative;
}
#sec3 h2:before {
  display: block;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  width: 8rem;
  height: 2px;
  background-color: #5b4518;
}
#sec3 h2 span {
  display: block;
  font-size: 0.85em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  #sec3 h2 {
    font-size: 2.2em;
  }
  #sec3 h2:before {
    width: 4rem;
  }
}
#sec3 .box {
  border-radius: 0.8em;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 0 0.8em 0 rgba(0, 0, 0, 0.4);
  padding: 2em 4em;
  font-size: 1.3em;
}
@media screen and (max-width: 768px) {
  #sec3 .box {
    padding: 1rem;
    font-size: 0.9rem;
  }
}
#sec3 .box h3 {
  color: #bc9342;
  font-size: 1.2em;
  border-bottom: 1px solid #5b4518;
  padding-bottom: 0.3rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
#sec3 .box h4 {
  margin-top: 1.5em;
  border-bottom: 1px solid #5b4518;
  padding-bottom: 0.3rem;
  font-size: 1.1em;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
#sec3 .box h4:before {
  position: relative;
  display: inline-block;
  content: "";
  height: 1.1em;
  transform: translateY(0.15em);
  width: auto;
  aspect-ratio: 29/47;
  background: url(../img/pin.webp) no-repeat center/contain;
  margin-right: 0.5em;
}
#sec3 .box p {
  line-height: 2;
}
#sec3 .box p span {
  background-color: #5b4518;
  border-radius: 999px;
  padding: 0em 0.8em 0.1em;
  color: #fff;
  margin-right: 0.5em;
  font-size: 0.9em;
  letter-spacing: 0.1em;
}
#sec3 .box .box2 {
  border: 1px solid #5b4518;
  background-color: #f4eee4;
  padding: 0.8em;
  border-radius: 0.6em;
  margin: 2em auto 1em;
}
#sec3 .box .box2 h5 {
  font-size: 1.6em;
  border-bottom: 1px solid #5b4518;
  padding-bottom: 0.6rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
#sec3 .box .box2 h5 .border-r {
  position: relative;
  background-color: #bc9342;
  border-radius: 999px;
  padding: 0.2em 0.8em 0.3em;
  color: #fff;
  margin-right: 0.5em;
  font-size: 0.7em;
  letter-spacing: 0.15em;
  display: inline-block;
  transform: translateY(-0.2em);
}
#sec3 .box .box2 h5 .min {
  font-size: 0.72em;
  padding-left: 0.4em;
}
#sec3 .box .box2 p {
  line-height: 1.6;
}
#sec3 strong {
  font-weight: 500;
  text-indent: -1em;
  padding-left: 1em;
  display: block;
}
#sec3 .red {
  color: #c40041;
  font-size: 1.6em;
  font-weight: 900;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  #sec3 .red {
    text-align: center;
    font-size: 1.5em;
  }
}
#sec3 .flex {
  margin-top: 4em;
}
#sec3 .flex a {
  width: 48%;
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding: 1em 0;
  font-size: 1.6em;
  letter-spacing: 0.15em;
}
#sec3 .flex a:nth-child(1) {
  background-color: #e6c068;
}
#sec3 .flex a:nth-child(2) {
  background-color: #5b4518;
}
@media screen and (max-width: 768px) {
  #sec3 .flex {
    flex-direction: column;
  }
  #sec3 .flex a {
    width: 100%;
    font-size: 2em;
  }
  #sec3 .flex a + a {
    margin-top: 1em;
  }
}

#sec4 h2 {
  font-family: var(--font-min);
  text-align: center;
  font-size: 2.8em;
  letter-spacing: 0.15em;
  font-weight: 400;
  line-height: 1.4;
  margin: 0 0 1.5em;
  padding-bottom: 0.1em;
  position: relative;
}
#sec4 h2:before {
  display: block;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  width: 8rem;
  height: 2px;
  background-color: #5b4518;
}
#sec4 h2 span {
  display: block;
  font-size: 0.85em;
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  #sec4 h2 {
    font-size: 2.2em;
  }
  #sec4 h2:before {
    width: 4rem;
  }
}
#sec4 .swiper {
  position: relative;
}
@media screen and (max-width: 768px) {
  #sec4 .swiper {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
#sec4 .swiper:before {
  display: block;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0.8em;
  width: calc(100% - 14em);
  height: 1px;
  background-color: #5b4518;
}
@media screen and (max-width: 768px) {
  #sec4 .swiper:before {
    display: none;
  }
}
#sec4 .swiper-wrapper {
  padding: 0 0 4em;
}
#sec4 .swiper-button-prev,
#sec4 .swiper-button-next {
  position: absolute;
  top: auto;
  bottom: 0;
  height: auto;
  font-size: 0.9em;
  width: auto;
}
#sec4 .swiper-button-prev span,
#sec4 .swiper-button-next span {
  background-color: #bc9342;
  color: #fff;
  padding: 0.1em 0.8em 0.2em;
  border-radius: 0.25em;
  letter-spacing: 0.05em;
}
#sec4 .swiper-button-prev svg,
#sec4 .swiper-button-next svg {
  display: block;
  width: 0.7em;
  height: auto;
  position: absolute;
  color: #5b4518;
}
@media screen and (max-width: 768px) {
  #sec4 .swiper-button-prev,
  #sec4 .swiper-button-next {
    bottom: 55%;
    width: 4.4em;
    display: flex;
    flex-direction: column-reverse;
  }
  #sec4 .swiper-button-prev span,
  #sec4 .swiper-button-next span {
    font-size: 0.8em;
  }
  #sec4 .swiper-button-prev svg,
  #sec4 .swiper-button-next svg {
    position: static;
    margin-bottom: 0.6em;
  }
}
#sec4 .swiper-button-prev {
  left: 1rem;
  right: auto;
  padding-left: 1.8em;
}
#sec4 .swiper-button-prev svg {
  left: 0;
}
@media screen and (max-width: 768px) {
  #sec4 .swiper-button-prev {
    padding-left: 0;
    left: 0.2rem;
  }
  #sec4 .swiper-button-prev svg {
    width: 1.8em;
  }
}
#sec4 .swiper-button-next {
  left: auto;
  right: 1rem;
  padding-right: 1.8em;
}
#sec4 .swiper-button-next svg {
  right: 0;
}
@media screen and (max-width: 768px) {
  #sec4 .swiper-button-next {
    padding-right: 0;
    right: 0.2rem;
  }
  #sec4 .swiper-button-next svg {
    width: 1.8em;
  }
}
#sec4 .swiper-slide {
  padding: 0 1em;
}
@media screen and (max-width: 768px) {
  #sec4 .swiper-slide {
    padding: 0 4.2em;
  }
}
#sec4 .swiper-slide .box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#sec4 .swiper-slide .box figure {
  width: 45%;
}
#sec4 .swiper-slide .box h3 {
  font-size: 1.6em;
  font-family: var(--font-min);
  letter-spacing: 0.2em;
  padding-bottom: 0.2em;
  font-weight: 500;
  border-bottom: 0.1em solid #5b4518;
  margin: 0.5em 0 1em;
  text-indent: -1.2em;
  padding-left: 1.2em;
}
#sec4 .swiper-slide .box .txt {
  width: 52%;
}
#sec4 .swiper-slide .box .txt p {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #sec4 .swiper-slide .box {
    flex-direction: column;
  }
  #sec4 .swiper-slide .box figure {
    width: 100%;
  }
  #sec4 .swiper-slide .box h3 {
    font-size: 1.1rem;
    width: 100%;
    letter-spacing: 0.04em;
  }
  #sec4 .swiper-slide .box .txt {
    margin-top: 1.5em;
    width: 100%;
  }
  #sec4 .swiper-slide .box .txt p {
    font-size: 0.9rem;
  }
}

#sec5 h2 {
  font-family: var(--font-min);
  text-align: center;
  font-size: 2.8em;
  letter-spacing: 0.15em;
  font-weight: 400;
  line-height: 1.4;
  margin: 0 0 1.5em;
  padding-bottom: 0.7em;
  position: relative;
}
#sec5 h2:before {
  display: block;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  width: 8rem;
  height: 2px;
  background-color: #5b4518;
}
#sec5 h2 span {
  display: block;
  font-size: 0.85em;
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
}
#sec5 ul {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 2%;
}
#sec5 ul li {
  width: 32%;
  margin-bottom: 2%;
}

#links h2 {
  font-family: var(--font-min);
  text-align: center;
  font-size: 2.8em;
  letter-spacing: 0.15em;
  font-weight: 400;
  line-height: 1.4;
  margin: 0 0 1em;
  position: relative;
}
@media screen and (max-width: 768px) {
  #links h2 {
    font-size: 2.2em;
  }
}
#links .frame > a {
  display: block;
  width: 38%;
  margin-inline: auto;
  margin-top: 4em;
}
@media screen and (max-width: 768px) {
  #links .frame > a {
    width: 100%;
    margin-top: 2.5em;
  }
}
#links ul {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
#links ul li {
  width: 30%;
}
#links ul li a {
  display: block;
  width: 100%;
}
#links ul li a img {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  #links ul {
    flex-direction: column;
    align-items: center;
  }
  #links ul li {
    width: 85%;
  }
  #links ul li + li {
    margin-top: 1.5em;
  }
}

footer {
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.1em;
  padding: 2em 0;
}