@charset "UTF-8";
:root {
  --notosans: "Noto Sans jP", sans-serif;
  --zengothic: "Zen Kaku Gothic New", sans-serif;
  --bizgothic: "BIZ UDGothic", sans-serif;
  --notoserif: "Noto Serif JP", serif;
  --zenold: "Zen Old Mincho", serif;
  --sawarabi: "Sawarabi Mincho", serif;
  --sippori: "Shippori Mincho", serif;
  --kiwi: "Kiwi Maru", "Zen Maru Gothic", "Kosugi Maru", serif;
  --zenmaru: "Zen Maru Gothic", serif;
  --kosugimaru: "Kosugi Maru", serif;
  --base: #301a0d;
  --or: #d07136;
}

/* Universal box-sizing reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

/* Set default styles for html */
html {
  box-sizing: border-box;
  font-size: 100%;
}

/* Reset margin for common block-level elements */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role */
ul[role=list],
ol[role=list] {
  list-style: none;
}

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

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

html,
body {
  font-weight: normal;
  font-style: normal;
  font-optical-sizing: auto;
  line-height: 1.5;
  font-style: normal;
  letter-spacing: 0.1em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
}

strong {
  line-height: 1;
  font-weight: 600;
}

/* Reset default link styles */
a {
  text-decoration: none; /* Remove underlines from all links */
  color: inherit; /* Make sure the link color inherits the surrounding text color */
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

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

/* Reset styles for form elements */
input,
button,
textarea,
select {
  font: inherit;
  border: none; /* Remove borders on form elements */
  background: transparent; /* Make background transparent */
}

/* Remove animations and transitions for users with reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
a {
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--or);
  transition: all 0.3s ease;
  text-decoration: none;
}

li {
  list-style-type: none;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=submit],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  justify-content: center;
}

body {
  color: #301a0d;
  font-family: var(--sippori);
}
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bg.svg) center/cover no-repeat;
}

.sippori {
  font-family: "Shippori Mincho", serif;
}

.base-color {
  color: #301a0d;
}

.col-or {
  color: #d07136;
}

.brown {
  background-color: rgba(201, 177, 126, 0.4);
}

.text {
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
}

.bg-deco {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.container {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1240px;
  }
}

.btn-block__link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
  font-weight: 600;
  line-height: 1.88;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .btn-block__link {
    padding: 20px 27px;
    font-size: 1rem;
  }
}
.btn-block__link:hover {
  color: var(--or);
}
.btn-block__link:hover .btn-block__wrap > p {
  background-color: transparent;
  transition: all 0.3s ease;
}
.btn-block__link:hover .line01 > p::before, .btn-block__link:hover .line01 > p::after,
.btn-block__link:hover .line02 > p::before,
.btn-block__link:hover .line02 > p::after {
  transition: all 0.3s ease;
}
.btn-block__link:hover .line01 > p::before {
  left: 10px;
}
.btn-block__link:hover .line01 > p::after {
  top: 10px;
}
.btn-block__link:hover .line02 > p::before {
  right: 10px;
}
.btn-block__link:hover .line02 > p::after {
  bottom: 10px;
}
.btn-block__wrap > p {
  background: rgba(255, 255, 255, 0.5);
  padding: 4px 30px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .btn-block__wrap > p {
    padding: 4px 48px;
  }
}
.btn-block__wrap .line01,
.btn-block__wrap .line02 {
  position: absolute;
  z-index: 1;
}
.btn-block__wrap .line01 > p,
.btn-block__wrap .line02 > p {
  position: relative;
}
.btn-block__wrap .line01 > p > br,
.btn-block__wrap .line02 > p > br {
  display: none;
}
.btn-block__wrap .line01 > p::before, .btn-block__wrap .line01 > p::after,
.btn-block__wrap .line02 > p::before,
.btn-block__wrap .line02 > p::after {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  background-color: var(--or);
  transition: all 0.3s ease;
}
.btn-block__wrap .line01 > p::before,
.btn-block__wrap .line02 > p::before {
  width: 50px;
  height: 1px;
}
@media (min-width: 768px) {
  .btn-block__wrap .line01 > p::before,
.btn-block__wrap .line02 > p::before {
    width: 88px;
    height: 2px;
  }
}
.btn-block__wrap .line01 > p::after,
.btn-block__wrap .line02 > p::after {
  width: 1px;
  height: 32px;
}
@media (min-width: 768px) {
  .btn-block__wrap .line01 > p::after,
.btn-block__wrap .line02 > p::after {
    width: 2px;
  }
}
.btn-block__wrap .line01 {
  top: 0;
  left: 0;
}
.btn-block__wrap .line01 > p::before {
  top: 10px;
  left: 0;
}
.btn-block__wrap .line01 > p::after {
  top: 0;
  left: 10px;
}
.btn-block__wrap .line02 {
  bottom: 0;
  right: 0;
}
.btn-block__wrap .line02 > p::before {
  bottom: 10px;
  right: 0;
}
.btn-block__wrap .line02 > p::after {
  bottom: 0;
  right: 10px;
}

.section-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.contents-text {
  font-size: clamp(0.75rem, 0.754rem + 0.53vw, 1.25rem);
  line-height: 1.88;
}

.contents-title__main {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.contents-title__main__deco {
  width: clamp(55px, 5vw, 78px);
  margin: 0 auto;
}
.contents-title__main > h2 {
  font-size: clamp(1.625rem, 1.18rem + 1.93vw, 3rem);
  font-weight: bold;
  line-height: 1.5;
}
.contents-title__sm {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  flex-direction: column;
  font-weight: bold;
}
@media (min-width: 768px) {
  .contents-title__sm {
    gap: 8px;
    flex-direction: row;
  }
}
.contents-title__sm__deco {
  width: clamp(45px, 5vw, 65px);
  margin: 0 auto;
}
.contents-title__sm > h2 {
  font-size: clamp(1.563rem, 1.259rem + 1.31vw, 2.5rem);
  font-weight: bold;
  line-height: 1.5;
  flex: 1;
}
.contents-title__sub {
  display: flex;
  align-items: center;
  gap: 5px;
}
.contents-title__sub h2,
.contents-title__sub h3 {
  font-weight: bold;
  line-height: 1.88;
}
.contents-title__sub__deco {
  width: clamp(40px, 3vw, 52px);
}
.contents-title__sub p {
  flex: 1;
  font-size: clamp(1.5rem, 1.338rem + 0.7vw, 2rem);
  font-weight: 600;
}

.page-fv-area {
  position: relative;
  z-index: 1;
  height: 100svh;
  max-height: 700px;
  overflow: hidden;
}
@media screen and (min-width: 993px) and (max-height: 700px) and (orientation: landscape) {
  .page-fv-area {
    height: auto !important;
  }
}
@media screen and (max-width: 992px) and (max-height: 700px) and (orientation: landscape) {
  .page-fv-area {
    height: auto !important;
  }
}
@media (min-width: 768px) {
  .page-fv-area {
    max-height: 100%;
  }
}
.page-fv-area__back {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 640px;
}
.page-fv-area .dot-deco {
  position: absolute;
  z-index: -1;
  top: 9vw;
  left: 17vw;
  width: clamp(200px, 19vw, 280px);
}
.page-fv-area__wrap {
  padding-top: 180px;
  display: flex;
  height: 100%;
}
@media (min-width: 768px) {
  .page-fv-area__wrap {
    padding-bottom: 60px;
  }
}
.page-fv-area__title, .page-fv-area__img {
  height: 100%;
}
.page-fv-area__title {
  display: flex;
  align-items: center;
  writing-mode: vertical-lr;
  gap: 9px;
  width: 35%;
  padding-top: 80px;
}
@media (min-width: 768px) {
  .page-fv-area__title {
    width: 34%;
    justify-content: center;
  }
}
.page-fv-area__title__deco {
  width: 60px;
}
@media (min-width: 768px) {
  .page-fv-area__title__deco {
    width: 73px;
  }
}
.page-fv-area__title__deco img {
  width: 100%;
}
.page-fv-area__title > h1 {
  font-size: clamp(2.125rem, 1.518rem + 2.63vw, 4rem);
  font-weight: bold;
  line-height: 1.09;
}
.page-fv-area__img {
  width: 65%;
  margin-left: auto;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .page-fv-area__img {
    width: 66%;
    margin-right: 6.65vw;
    border-radius: 45px;
  }
}
.page-fv-area__img img {
  width: 100%;
  height: 100%;
}

.l-header {
  position: fixed;
  z-index: 998;
  top: 0;
  left: 0;
  right: 0;
}
.l-header__inner {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  padding: 15px 0 0 15px;
}
@media (min-width: 992px) {
  .l-header__inner {
    width: 100%;
    padding: 20px 30px;
    background-color: var(--base);
  }
}
@media (min-width: 1200px) {
  .l-header__inner {
    padding: 24px 65px;
  }
}
.l-header__logo {
  width: 130px;
}
@media (min-width: 768px) {
  .l-header__logo {
    max-width: 195px;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .l-header__logo {
    padding-right: 30px;
  }
}
.l-header__nav {
  position: fixed;
  inset: 0;
  z-index: 9998;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
  height: 100% !important;
  min-height: 100svh;
  max-height: 100svh;
  background-color: rgba(48, 26, 13, 0.85);
  transform: translateY(-100%);
  padding: 120px 0;
  transition: all 0.5s ease-in-out;
  overflow-y: auto;
}
.l-header__nav::-webkit-scrollbar {
  width: 12px;
}
.l-header__nav::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}
.l-header__nav::-webkit-scrollbar-thumb {
  background: var(--or);
  border-radius: 10px;
}
@media (min-width: 992px) {
  .l-header__nav {
    width: auto;
    position: static;
    gap: 2.6455vw;
    flex-direction: row;
    justify-content: flex-end;
    width: auto;
    height: auto;
    max-height: none;
    min-height: auto;
    background-color: transparent;
    transform: none;
    transition: none;
    padding: 0;
    overflow: visible;
  }
}
.l-header__nav.open {
  transform: translateY(0);
  transition: all 0.5s ease-in-out;
}
.l-header__nav__link {
  color: white;
  font-size: 1rem;
}
@media (min-width: 992px) {
  .l-header__nav__link {
    font-size: clamp(0.75rem, 0.669rem + 0.35vw, 1rem);
  }
}
.l-header__nav__link > p {
  transition: all 0.3s ease;
}
.l-header__btn {
  position: fixed;
  z-index: 9999;
  top: 20px;
  right: 20px;
}
@media (min-width: 992px) {
  .l-header__btn {
    display: none;
  }
}
.l-header__btn .btn-trigger {
  position: relative;
  width: 40px;
  height: 30px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .l-header__btn .btn-trigger {
    width: 50px;
    height: 44px;
  }
}
.l-header__btn .btn-trigger > p {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--base);
  border-radius: 4px;
  transition: all 0.3s ease;
}
.l-header__btn .btn-trigger > p:nth-of-type(1) {
  top: 0;
}
.l-header__btn .btn-trigger > p:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.l-header__btn .btn-trigger > p:nth-of-type(3) {
  bottom: 0;
}
.l-header__btn .btn-trigger.active p {
  background-color: white;
  transition: all 0.3s ease;
}
.l-header__btn .btn-trigger.active p:nth-of-type(1) {
  transform: translateY(13px) rotate(-315deg);
}
@media (min-width: 768px) {
  .l-header__btn .btn-trigger.active p:nth-of-type(1) {
    transform: translateY(20px) rotate(-315deg);
  }
}
.l-header__btn .btn-trigger.active p:nth-of-type(2) {
  opacity: 0;
}
.l-header__btn .btn-trigger.active p:nth-of-type(3) {
  transform: translateY(-13px) rotate(315deg);
}
@media (min-width: 768px) {
  .l-header__btn .btn-trigger.active p:nth-of-type(3) {
    transform: translateY(-20px) rotate(315deg);
  }
}
.l-header__btn .btn-trigger,
.l-header__btn .btn-trigger p {
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}

.l-header__nav__link {
  opacity: 0;
  transform: translateX(24px);
  transition: transform 0.6s ease, opacity 0.6s ease;
  will-change: transform, opacity;
  /* 992px以下はアニメーション自体を無効化して常時表示 */
}
@media (max-width: 992px), (max-height: 799px) {
  .l-header__nav__link {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* JSで .is-ready を親につけ、各リンクに .is-in を順次付与 */
.l-header__nav.is-ready .l-header__nav__link.is-in {
  opacity: 1;
  transform: none;
}

/* ユーザー環境が reduced motion の場合は静的表示に */
@media (prefers-reduced-motion: reduce) {
  .l-header__nav__link {
    transition: none;
    opacity: 1;
    transform: none;
  }
}
.info-pop {
  position: fixed;
  z-index: 999;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: row;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .info-pop {
    bottom: 30px;
    left: auto;
    right: 0;
    flex-direction: column;
    gap: 15px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.info-pop__box {
  width: 50%;
}
@media (min-width: 768px) {
  .info-pop__box {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.info-pop__box__link {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  border: solid 2px var(--or);
  padding: 3px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.9);
  text-align: center;
  /* 左上スタート（縦は top のみを使う） */
  /* 右下スタート（縦は top のみを使う） */
  /* お好みで：モーション削減対応 */
}
@media (min-width: 576px) {
  .info-pop__box__link {
    padding: 5px;
  }
}
@media (min-width: 768px) {
  .info-pop__box__link {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.info-pop__box__link::before, .info-pop__box__link::after {
  /* 変更点: サイズを変数に */
  --dot: 20px;
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  border-radius: 30px;
  background-color: var(--or);
  /* 変更点: アニメ対象を限定（パフォ&意図明確化） */
  transition: top 0.3s ease;
  width: var(--dot);
  height: var(--dot);
}
@media (min-width: 576px) {
  .info-pop__box__link::before, .info-pop__box__link::after {
    --dot: 26px;
  }
}
.info-pop__box__link::before {
  top: -10px;
  left: -10px;
}
@media (min-width: 576px) {
  .info-pop__box__link::before {
    top: -13px;
    left: -13px;
  }
}
.info-pop__box__link::after {
  /* bottom を使わず、top を calc に置換して初期位置を再現 */
  top: calc(100% + 10px - var(--dot));
  right: -10px;
}
@media (min-width: 576px) {
  .info-pop__box__link::after {
    top: calc(100% + 13px - var(--dot));
    right: -13px;
  }
}
.info-pop__box__link:hover::before {
  /* bottom:-10px 相当の位置へ、数値→数値で補間される */
  top: calc(100% + 10px - var(--dot));
}
@media (min-width: 576px) {
  .info-pop__box__link:hover::before {
    top: calc(100% + 13px - var(--dot));
  }
}
.info-pop__box__link:hover::after {
  /* top:-10px 相当へ戻す */
  top: -10px;
}
@media (min-width: 576px) {
  .info-pop__box__link:hover::after {
    top: -13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .info-pop__box__link::before, .info-pop__box__link::after {
    transition: none;
  }
}
.info-pop__box__link > div {
  border: solid 1px var(--or);
  padding: 10px 20px;
}
@media (min-width: 768px) {
  .info-pop__box__link > div {
    padding: 8px 28px;
  }
}
.info-pop__box__link strong {
  font-size: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
}
.info-pop__box__link p {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
}

.l-footer {
  background-color: var(--base);
  color: white;
}
.l-footer__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .l-footer__inner {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .l-footer__inner {
    padding: 90px 20px;
    justify-content: space-between;
    gap: unset;
  }
}
.l-footer__logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
}
@media (min-width: 992px) {
  .l-footer__logo {
    flex: 1;
    max-width: 210px;
    margin-bottom: 0;
  }
}
.l-footer__logo img {
  display: block;
  margin: 0 auto;
  width: 30%;
}
@media (min-width: 576px) {
  .l-footer__logo img {
    width: 13%;
  }
}
@media (min-width: 992px) {
  .l-footer__logo img {
    width: 100%;
  }
}
.l-footer__access {
  width: 100%;
}
@media (min-width: 768px) {
  .l-footer__access {
    width: 50%;
    padding: 0 20px;
  }
}
@media (min-width: 992px) {
  .l-footer__access {
    width: 385px;
    padding: 0;
  }
}
.l-footer__nav {
  width: 100%;
}
@media (min-width: 768px) {
  .l-footer__nav {
    width: 50%;
    padding: 0 20px;
  }
}
@media (min-width: 992px) {
  .l-footer__nav {
    width: 210px;
    padding: 0;
  }
}
.l-footer__block__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-bottom: solid 1px white;
  padding-bottom: 10px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .l-footer__block__title {
    justify-content: flex-start;
  }
}
.l-footer__block__title > img {
  max-width: 40px;
  margin-top: 4px;
}
@media (min-width: 576px) {
  .l-footer__block__title > img {
    max-width: 50px;
  }
}
.l-footer__block__title > h2 {
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.88;
}
.l-footer__access {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-bottom: 50px;
}
@media (min-width: 576px) {
  .l-footer__access {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .l-footer__access {
    flex-direction: column;
    margin-bottom: 0;
  }
}
.l-footer__access .l-footer__block__title {
  width: 100%;
}
.l-footer__access__box {
  margin-bottom: 50px;
  width: 100%;
}
@media (min-width: 576px) {
  .l-footer__access__box {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .l-footer__access__box {
    width: 100%;
  }
}
.l-footer__access__box:last-child {
  margin-bottom: 0;
}
.l-footer__access__box__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .l-footer__access__box__title {
    justify-content: flex-start;
    margin-bottom: 20px;
  }
}
.l-footer__access__box__title a > img {
  width: 18px;
  margin-top: 3px;
}
@media (min-width: 768px) {
  .l-footer__access__box__title a > img {
    width: 20px;
    margin-top: 0;
  }
}
.l-footer__access__box__title > h3 {
  font-weight: bold;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .l-footer__access__box__title > h3 {
    font-size: 1.5rem;
  }
}
.l-footer__access__box .list-dl {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .l-footer__access__box .list-dl {
    text-align: left;
  }
}
@media (min-width: 992px) {
  .l-footer__access__box .list-dl {
    flex-direction: row;
  }
}
.l-footer__access__box .list-dt {
  width: 100%;
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: bold;
}
@media (min-width: 992px) {
  .l-footer__access__box .list-dt {
    width: 114px;
    margin-bottom: 0;
    font-size: 1.125rem;
    font-weight: normal;
  }
}
.l-footer__access__box .list-dd {
  flex: 1;
  width: 100%;
  font-size: 0.875rem;
}
@media (min-width: 992px) {
  .l-footer__access__box .list-dd {
    font-size: 1.125rem;
  }
}
.l-footer__nav__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.l-footer__nav__link {
  font-size: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .l-footer__nav__link {
    font-size: 1.125rem;
    text-align: left;
  }
}
.l-footer__nav__link > p {
  transition: all 0.3s ease;
}

.top-fv-area {
  height: 100svh;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .top-fv-area {
    flex-direction: row;
  }
}
@media screen and (min-width: 993px) and (max-height: 700px) and (orientation: landscape) {
  .top-fv-area {
    flex-direction: row;
    height: auto;
  }
}
@media screen and (max-width: 992px) and (max-height: 700px) and (orientation: landscape) {
  .top-fv-area {
    flex-direction: row;
    height: auto;
  }
}
.top-fv-area__box {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 50%;
  overflow: hidden;
}
@media (min-width: 992px) {
  .top-fv-area__box {
    width: 50%;
    height: auto;
  }
}
@media screen and (min-width: 993px) and (max-height: 700px) and (orientation: landscape) {
  .top-fv-area__box {
    min-height: 100svh;
  }
}
@media screen and (max-width: 992px) and (max-height: 700px) and (orientation: landscape) {
  .top-fv-area__box {
    min-height: 100svh;
  }
}
.top-fv-area__box::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(48, 26, 13, 0.5);
  transition: background-color 0.8s ease;
}
.top-fv-area__box__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  height: inherit;
  min-height: 100%;
}
@media screen and (min-width: 993px) and (max-height: 700px) and (orientation: landscape) {
  .top-fv-area__box__inner {
    padding: 30px 0;
    justify-content: center;
    align-items: center;
    height: inherit;
    min-height: 100%;
  }
}
@media screen and (max-width: 992px) and (max-height: 700px) and (orientation: landscape) {
  .top-fv-area__box__inner {
    padding: 30px 0;
    justify-content: center;
    align-items: center;
    height: inherit;
    min-height: 100svh;
  }
}
@media (min-width: 992px) {
  .top-fv-area__box__inner {
    padding: 100px 0;
    justify-content: flex-end;
    align-items: center;
    margin-top: auto;
    height: inherit;
    min-height: 100svh;
  }
}
.top-fv-area__box > img {
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1.2s ease;
}
.top-fv-area__box:hover::before {
  background-color: rgba(48, 26, 13, 0);
}
.top-fv-area__box:hover > img {
  transform: translate(-50%, -50%) scale(1.05);
}
.top-fv-area__box__text {
  writing-mode: horizontal-tb;
  text-align: center;
  font-weight: 600;
  font-size: clamp(1.5rem, 1.338rem + 0.7vw, 2rem);
  color: white;
}
@media screen and (min-width: 993px) and (max-height: 700px) and (orientation: landscape) {
  .top-fv-area__box__text {
    writing-mode: horizontal-tb;
    text-align: center;
  }
}
@media screen and (max-width: 992px) and (max-height: 700px) and (orientation: landscape) {
  .top-fv-area__box__text {
    writing-mode: vertical-rl;
    text-align: left;
  }
}
@media (min-width: 992px) {
  .top-fv-area__box__text {
    writing-mode: vertical-rl;
    text-align: left;
  }
}
.top-fv-area__box__text > p:nth-child(2) {
  margin-top: 0;
}
@media screen and (min-width: 993px) and (max-height: 700px) and (orientation: landscape) {
  .top-fv-area__box__text > p:nth-child(2) {
    margin-top: 0;
  }
}
@media screen and (max-width: 992px) and (max-height: 700px) and (orientation: landscape) {
  .top-fv-area__box__text > p:nth-child(2) {
    margin-top: 40px;
  }
}
@media (min-width: 992px) {
  .top-fv-area__box__text > p:nth-child(2) {
    margin-top: 40px;
  }
}
.top-fv-area__box__text > p > span {
  writing-mode: horizontal-tb;
  line-height: 1;
}
.top-fv-area__box__btn {
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .top-fv-area__box__btn {
    margin-top: 70px;
  }
}
.top-fv-area__box__link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  padding: 10px;
  border: solid 2px white;
  opacity: 0;
}
@media (min-width: 768px) {
  .top-fv-area__box__link {
    border: solid 4px white;
    padding: 15px;
  }
}
.top-fv-area__box__link > div {
  border: solid 1px white;
  padding: 13px 25px;
}
@media (min-width: 768px) {
  .top-fv-area__box__link > div {
    border: solid 2px white;
    padding: 20px 45px;
  }
}
.top-fv-area__box__link p {
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
}
.top-fv-area__box__link p > span {
  font-size: clamp(1.25rem, 1.048rem + 0.88vw, 1.875rem);
}
.top-fv-area__box__link:hover {
  color: #dddddd;
}

.top-about-area {
  position: relative;
  z-index: 1;
  overflow: clip;
  padding: 40px 0 100px;
}
@media (min-width: 576px) {
  .top-about-area {
    padding: 60px 0 130px;
  }
}
@media (min-width: 768px) {
  .top-about-area {
    padding: 90px 0 160px;
  }
}
.top-about-area .bg-deco {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300vw;
  max-width: none;
}
@media (min-width: 768px) {
  .top-about-area .bg-deco {
    width: 100vw;
  }
}
.top-about-area .container {
  position: relative;
  z-index: 1;
}
.top-about-area .container::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -50px;
  display: block;
  background: url(../images/pattern.png) center/contain no-repeat;
  width: clamp(250px, 31vw, 453px);
  height: clamp(238px, 30vw, 430px);
}
@media (min-width: 992px) {
  .top-about-area .container::before {
    left: 0;
  }
}
.top-about-area__title h1 {
  font-size: clamp(1.25rem, 0.683rem + 2.45vw, 3rem);
}
.top-about-area__top {
  padding-top: 20px;
}
@media (min-width: 992px) {
  .top-about-area__top {
    padding: 6vw 0 0 7vw;
  }
}
.top-about-area__top__img {
  padding-top: 30px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .top-about-area__top__img {
    padding-top: 4vw;
    max-width: 89%;
    margin-right: 0;
  }
}
.top-about-area__top__img > img {
  overflow: hidden;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .top-about-area__top__img > img {
    border-radius: 45px;
  }
}
.top-about-area__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
}
@media (min-width: 992px) {
  .top-about-area__bottom {
    margin-top: 95px;
    flex-direction: row;
    gap: 55px;
    align-items: stretch;
  }
}
.top-about-area__bottom__text {
  order: 1;
}
@media (min-width: 992px) {
  .top-about-area__bottom__text {
    order: unset;
  }
}
.top-about-area__bottom__img {
  max-width: 75%;
  margin: 0;
  order: 2;
}
@media (min-width: 576px) {
  .top-about-area__bottom__img {
    max-width: 65%;
  }
}
@media (min-width: 992px) {
  .top-about-area__bottom__img {
    max-width: 43.612%;
    order: unset;
  }
}
.top-about-area__bottom__img img {
  overflow: hidden;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .top-about-area__bottom__img img {
    border-radius: 27px;
  }
}
.top-about-area__bottom__inner {
  flex: 1;
  display: contents;
}
@media (min-width: 992px) {
  .top-about-area__bottom__inner {
    display: block;
  }
}
.top-about-area__bottom .btn-block {
  margin-top: 30px;
  order: 3;
}
@media (min-width: 992px) {
  .top-about-area__bottom .btn-block {
    order: unset;
  }
}
.top-about-area__bottom .btn-block__link {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .top-about-area__bottom .btn-block__link {
    margin-left: 0;
  }
}

.top-service-area {
  position: relative;
  color: white;
}
.top-service-area .btn-block {
  color: var(--base);
}
.top-service-area .btn-block__link:hover .btn-block__wrap {
  color: white;
}
.top-service-area .contents-text {
  font-size: clamp(0.75rem, 0.5rem + 0.5vw, 1.25rem);
}
.top-service-area__box {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 105vh;
  display: block;
}
@media (min-width: 768px) {
  .top-service-area__box {
    height: 120vh;
  }
}
@media screen and (max-height: 700px) and (orientation: landscape) {
  .top-service-area__box {
    height: auto;
  }
}
.top-service-area__box__inner {
  background: rgba(48, 26, 13, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  height: 100%;
}
@media (min-width: 992px) {
  .top-service-area__box__inner {
    padding: 100px 30px;
    width: 70%;
  }
}
@media (min-width: 1200px) {
  .top-service-area__box__inner {
    padding: 100px 60px;
    width: 50%;
  }
}
.top-service-area__box__inner > h2 {
  font-weight: 600;
  font-size: clamp(1.375rem, 1.011rem + 1.58vw, 2.5rem);
  line-height: 1.5;
  border-bottom: solid 1px var(--or);
  padding: 0 0 40px;
  margin-bottom: 40px;
  width: 100%;
}
@media (min-width: 576px) {
  .top-service-area__box__inner > h2 {
    padding: 0 22px 70px;
    margin-bottom: 65px;
  }
}
@media (min-width: 992px) {
  .top-service-area__box__inner > h2 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.top-service-area__box__inner .contents-text {
  margin-bottom: 40px;
}
@media (min-width: 576px) {
  .top-service-area__box__inner .contents-text {
    margin-bottom: 65px;
  }
}
.top-service-area__box:nth-child(odd) .top-service-area__box__inner {
  margin-left: auto;
}
.top-service-area .top-service01 {
  background: url(../images/menu-image.jpg) center/cover no-repeat;
  z-index: 100;
}
.top-service-area .top-service02 {
  background: url(../images/course-image.jpg) center/cover no-repeat;
  z-index: 200;
}
.top-service-area .top-service03 {
  background: url(../images/scene-image.jpg) center/cover no-repeat;
  z-index: 300;
}

.top-shop-area {
  position: relative;
  z-index: 1;
  padding: 80px 0 100px;
  overflow: clip;
}
@media (min-width: 576px) {
  .top-shop-area {
    padding: 100px 0 130px;
  }
}
@media (min-width: 768px) {
  .top-shop-area {
    padding: 120px 0 150px;
  }
}
.top-shop-area .bg-deco {
  position: absolute;
  z-index: -1;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: 410vw;
  max-width: none;
}
@media (min-width: 768px) {
  .top-shop-area .bg-deco {
    width: 100vw;
  }
}
.top-shop-area__box {
  position: relative;
  z-index: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
@media (min-width: 768px) {
  .top-shop-area__box {
    gap: 40px;
    padding: 40px 0;
  }
}
@media (min-width: 992px) {
  .top-shop-area__box {
    gap: 70px;
  }
}
.top-shop-area__box::after {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  background: url(../images/pattern.png) center/contain no-repeat;
  width: clamp(250px, 23vw, 343px);
  height: clamp(238px, 22vw, 326px);
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .top-shop-area__box::after {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (min-width: 768px) {
  .top-shop-area__box:nth-child(odd) {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .top-shop-area__box:nth-child(even) {
    flex-direction: row-reverse;
  }
}
@media (min-width: 768px) {
  .top-shop-area__box__img, .top-shop-area__box__text {
    width: calc(50% - 20px);
  }
}
@media (min-width: 992px) {
  .top-shop-area__box__img, .top-shop-area__box__text {
    width: calc(50% - 35px);
  }
}
.top-shop-area__box__img {
  overflow: clip;
  border-radius: 20px;
}
.top-shop-area__box__title {
  font-size: clamp(1.75rem, 1.021rem + 3.15vw, 4rem);
  font-weight: bold;
  text-align: center;
  line-height: 1.88;
  margin-bottom: 14px;
}
.top-shop-area__box .contents-text {
  margin-bottom: 25px;
}

.top-info-area {
  padding: 0 0 100px;
}
@media (min-width: 576px) {
  .top-info-area {
    padding: 50px 0 150px;
  }
}
@media (min-width: 768px) {
  .top-info-area {
    padding: 100px 0 180px;
  }
}
.top-info-area__box {
  background-color: rgba(201, 177, 126, 0.4);
  display: flex;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .top-info-area__box {
    margin-bottom: 40px;
  }
}
@media (min-width: 768px) {
  .top-info-area__box:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.top-info-area__box:last-child {
  margin-bottom: 0;
}
.top-info-area__box__image {
  display: none;
  width: 35%;
}
@media (min-width: 768px) {
  .top-info-area__box__image {
    display: block;
  }
}
.top-info-area__box__inner {
  flex: 1;
  padding: 25px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .top-info-area__box__inner {
    padding: 25px 75px;
  }
}
.top-info-area__box__inner .contents-title__sm {
  margin-bottom: 25px;
}
.top-info-area__box__inner .btn-block {
  margin-top: 45px;
}
.top-info-area__box__inner .webgene-blog {
  width: 100%;
}
.top-info-area__box__inner .news-item {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 992px) {
  .top-info-area__box__inner .news-item {
    flex-direction: row;
    gap: 30px;
  }
}
.top-info-area__box__inner .news-item__date {
  color: var(--or);
  font-weight: 500;
  font-size: 0.875rem;
}
@media (min-width: 992px) {
  .top-info-area__box__inner .news-item__date {
    font-size: 1.25rem;
  }
}
.top-info-area__box__inner .news-item__title {
  font-weight: 500;
  font-size: 0.875rem;
}
@media (min-width: 576px) {
  .top-info-area__box__inner .news-item__title {
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  .top-info-area__box__inner .news-item__title {
    font-size: 1.25rem;
  }
}

.page-concept__sec01 {
  position: relative;
  z-index: 1;
  padding: 200px 0 100px;
  overflow: hidden;
}
@media (min-width: 576px) {
  .page-concept__sec01 {
    padding: 250px 0 150px;
  }
}
@media (min-width: 768px) {
  .page-concept__sec01 {
    padding: 300px 0 200px;
  }
}
.page-concept__sec01 .bg-deco {
  max-width: none;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  min-width: 1250px;
}
.page-concept__sec01__text {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .page-concept__sec01__text {
    margin-bottom: 100px;
  }
}
.page-concept__sec01__text > h2 {
  font-size: clamp(1.563rem, 1.097rem + 1.5vw, 3rem);
  font-weight: bold;
  margin-bottom: 50px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .page-concept__sec01__text > h2 {
    margin-bottom: 80px;
  }
}
.page-concept__sec01__text > h2 > span {
  display: block;
}
@media (min-width: 992px) {
  .page-concept__sec01__text > h2 > span {
    display: inline-block;
  }
}
.page-concept__sec01__text > p {
  writing-mode: horizontal-tb;
  font-size: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
  line-height: 2;
  text-align: center;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .page-concept__sec01__text > p {
    writing-mode: vertical-rl;
    line-height: 2.4;
    text-align: left;
    letter-spacing: 5px;
  }
}
.page-concept__sec01__imgs {
  display: flex;
  gap: 10px;
}
@media (min-width: 576px) {
  .page-concept__sec01__imgs {
    gap: 25px;
  }
}
@media (min-width: 992px) {
  .page-concept__sec01__imgs {
    gap: 55px;
  }
}
.page-concept__sec01__imgs .box {
  position: relative;
  z-index: 1;
  aspect-ratio: 488/650;
}
.page-concept__sec01__imgs .box .dot {
  position: absolute;
  z-index: -1;
  width: clamp(220px, 23vw, 335px);
}
.page-concept__sec01__imgs .box:nth-child(1) {
  margin-bottom: 75px;
}
.page-concept__sec01__imgs .box:nth-child(1) .dot {
  bottom: -140px;
  left: -90px;
}
.page-concept__sec01__imgs .box:nth-child(2) {
  margin-top: 75px;
}
.page-concept__sec01__imgs .box:nth-child(2) .dot {
  top: -140px;
  right: -90px;
}

.page-concept__section__inner {
  padding: 80px 20px 100px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 576px) {
  .page-concept__section__inner {
    padding: 120px 20px 150px;
  }
}
@media (min-width: 768px) {
  .page-concept__section__inner {
    padding: 150px 20px 200px;
    flex-direction: row;
    gap: 5vw;
  }
}
@media (min-width: 992px) {
  .page-concept__section__inner {
    gap: 80px;
  }
}
@media (min-width: 768px) {
  .page-concept__sec__text {
    width: 50%;
  }
}
.page-concept__sec__text > p {
  font-weight: 500;
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
  line-height: 2;
}
.page-concept__sec__title .contents-title__sub {
  margin-bottom: 22px;
}
.page-concept__sec__title h2 {
  font-size: clamp(1.563rem, 1.097rem + 2.01vw, 3rem);
  font-weight: bold;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .page-concept__sec__title h2 {
    margin-bottom: 80px;
  }
}
.page-concept__sec__imgs {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .page-concept__sec__imgs {
    gap: 55px;
    width: 43%;
  }
}
.page-concept__sec__imgs .dot {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(220px, 39vw, 335px);
}
@media (min-width: 768px) {
  .page-concept__sec__imgs .dot {
    top: 15vw;
    transform: translateX(-50%);
    width: clamp(220px, 23vw, 335px);
  }
}
.page-concept__sec__imgs .box {
  width: 67%;
}
.page-concept__sec__imgs .box:nth-of-type(1) {
  margin-left: auto;
}

.sec-top {
  position: relative;
  z-index: 1;
  padding: 150px 0;
}
@media (min-width: 576px) {
  .sec-top {
    padding: 180px 0;
  }
}
@media (min-width: 768px) {
  .sec-top {
    padding: 220px 0;
  }
}
.sec-top::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(48, 26, 13, 0.4);
}
.sec-top > h2 {
  font-size: clamp(1.875rem, 1.187rem + 2.98vw, 4rem);
  color: white;
}

.page-menu__sec01 {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 100px 0 150px;
}
@media (min-width: 576px) {
  .page-menu__sec01 {
    padding: 150px 0 200px;
  }
}
@media (min-width: 768px) {
  .page-menu__sec01 {
    padding: 200px 0 230px;
  }
}
.page-menu__sec01 .bg-deco {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  min-width: 1600px;
  max-width: none;
}

.menu-contents {
  padding-top: 80px;
  padding-bottom: 100px;
}
@media (min-width: 576px) {
  .menu-contents {
    padding-top: 100px;
    padding-bottom: 120px;
  }
}
@media (min-width: 768px) {
  .menu-contents {
    padding-top: 120px;
    padding-bottom: 150px;
  }
}

.menu-list {
  padding: 25px 20px;
  background-color: rgba(201, 177, 126, 0.4);
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .menu-list {
    padding: 25px 50px;
    margin-bottom: 75px;
  }
}
@media (min-width: 992px) {
  .menu-list {
    padding: 25px 80px;
  }
}
.menu-list:last-child {
  margin-bottom: 0;
}
.menu-list__title {
  padding-bottom: 10px;
  border-bottom: solid 1px var(--or);
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .menu-list__title {
    margin-bottom: 45px;
  }
}
.menu-list__wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
@media (min-width: 992px) {
  .menu-list__wrap {
    flex-direction: row;
    gap: 60px;
  }
}
@media (min-width: 1200px) {
  .menu-list__wrap {
    gap: 90px;
  }
}
@media (min-width: 992px) {
  .menu-list__inner {
    width: calc(50% - 30px);
  }
}
@media (min-width: 1200px) {
  .menu-list__inner {
    width: calc(50% - 45px);
  }
}
.menu-list .list-dl {
  padding: 10px 0;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .menu-list .list-dl {
    flex-direction: row;
  }
}
.menu-list__breed__title {
  margin-top: 40px;
}
@media (min-width: 992px) {
  .menu-list__breed__title {
    margin-top: 0;
  }
}
.menu-list .list-dt {
  font-size: 1rem;
  flex: 1;
}
@media (min-width: 768px) {
  .menu-list .list-dt {
    font-size: 1.125rem;
  }
}
@media (min-width: 992px) {
  .menu-list .list-dt {
    font-size: 1.25rem;
  }
}
.menu-list .list-dt > p > span {
  font-size: 12px !important;
  display: inline-block;
}
@media (min-width: 576px) {
  .menu-list .list-dt > p > span {
    font-size: 14px !important;
  }
}
.menu-list .list-dd {
  text-align: right;
  margin-top: 6px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  font-size: 0.875rem;
  display: none;
}
@media (min-width: 576px) {
  .menu-list .list-dd {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .menu-list .list-dd {
    margin-top: 0;
    width: 100px;
    font-size: 1.25rem;
  }
}
.menu-list__pickup {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 750px;
  margin: 0 auto 35px;
  gap: 35px;
}
@media (min-width: 992px) {
  .menu-list__pickup {
    flex-direction: row;
  }
}
.menu-list__pickup__img {
  width: 75%;
}
@media (min-width: 768px) {
  .menu-list__pickup__img {
    width: 295px;
  }
}
.menu-list__pickup__img img {
  overflow: hidden;
  border-radius: 10px;
}
.menu-list__pickup__text {
  flex: 1;
}
.menu-list__pickup__title__wrap {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .menu-list__pickup__title__wrap {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.menu-list__pickup__title__wrap > h3 {
  display: flex;
  flex-direction: column;
  font-weight: bold;
  font-size: clamp(1.5rem, 1.257rem + 1.05vw, 2.25rem);
}
.menu-list__pickup__title__wrap > h3 span {
  display: inline-flex;
}
.menu-list__pickup__title__wrap > p {
  text-align: right;
  margin-left: auto;
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
}

.page-menu__sec03 {
  background-color: rgba(48, 26, 13, 0.5);
}
.page-menu__sec03 .menu-list {
  background-color: #f8e6c9;
}

.drink-pickup {
  display: flex;
  flex-direction: column-reverse;
  gap: 35px;
  color: white;
}
@media (min-width: 992px) {
  .drink-pickup {
    gap: 44px;
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .drink-pickup__images, .drink-pickup__text {
    width: calc(50% - 22px);
  }
}
.drink-pickup__images {
  display: flex;
  gap: 28px;
}
.drink-pickup__text > h3 {
  border-bottom: solid 1px var(--or);
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.page-course__sec01 {
  position: relative;
  z-index: 1;
  padding-top: 80px;
}
@media (min-width: 576px) {
  .page-course__sec01 {
    padding-top: 100px;
  }
}
@media (min-width: 768px) {
  .page-course__sec01 {
    padding-top: 130px;
  }
}
.page-course__sec01 .bg-img {
  position: -webkit-sticky;
  position: sticky;
  z-index: -1;
  top: 0;
  display: flex;
  height: 100svh;
  -o-object-position: 60% center;
     object-position: 60% center;
}
@media (min-width: 768px) {
  .page-course__sec01 .bg-img {
    -o-object-position: center;
       object-position: center;
  }
}
.page-course__sec01__inner {
  color: white;
  padding-bottom: 250px;
  max-width: 550px;
}
.page-course__sec01__inner > h2 {
  font-size: clamp(1.625rem, 1.18rem + 1.93vw, 3rem);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 60px;
}
@media (min-width: 576px) {
  .page-course__sec01__inner > h2 {
    margin-bottom: 80px;
  }
}
@media (min-width: 768px) {
  .page-course__sec01__inner > h2 {
    margin-bottom: 110px;
  }
}
.page-course__sec02 {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 150px 0 120px;
}
@media (min-width: 576px) {
  .page-course__sec02 {
    padding: 180px 0 140px;
  }
}
@media (min-width: 768px) {
  .page-course__sec02 {
    padding: 220px 0 180px;
  }
}
.page-course__sec02 .bg-deco {
  min-width: 1200px;
}
.page-course__sec02__img {
  border-radius: 20px;
  overflow: hidden;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .page-course__sec02__img {
    border-radius: 30px;
  }
}
.page-course__sec02 .contents-title__main {
  padding: 50px 0 20px;
}
@media (min-width: 768px) {
  .page-course__sec02 .contents-title__main {
    padding: 70px 0 20px;
  }
}
.page-course__sec02 .contents-title__main h2 > span {
  font-size: clamp(1.5rem, 1.338rem + 0.7vw, 2rem) !important;
}
.page-course__sec02__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .page-course__sec02__inner {
    flex-direction: row;
  }
}
.page-course__sec02__inner .box {
  width: 100%;
  background-color: rgba(201, 177, 126, 0.4);
  padding: 40px 20px;
  text-align: center;
}
@media (min-width: 992px) {
  .page-course__sec02__inner .box {
    width: calc(50% - 20px);
    padding: 40px 65px;
  }
}
.page-course__sec02__inner .box > h3 {
  font-size: clamp(1.5rem, 1.338rem + 0.7vw, 2rem);
  line-height: 2;
  padding-bottom: 20px;
  margin-bottom: 40px;
  border-bottom: solid 1px var(--or);
}

.page-oita__sec01 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.page-oita__sec01 .container {
  position: relative;
  z-index: 1;
}
.page-oita__sec01 h2 {
  font-size: clamp(1.625rem, 1.18rem + 1.93vw, 3rem);
  font-weight: bold;
  line-height: 1.6;
}
.page-oita__sec01 h2 span {
  display: inline-block;
}
.page-oita__sec01 p {
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
  line-height: 1.6;
}
.page-oita__sec01__top {
  position: relative;
  z-index: 1;
  padding: 120px 20px;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 576px) {
  .page-oita__sec01__top {
    padding: 150px 20px;
  }
}
@media (min-width: 768px) {
  .page-oita__sec01__top {
    gap: 60px;
    padding: 200px 20px;
  }
}
.page-oita__sec01__top .bg-deco {
  max-width: none;
  width: 100vw;
  min-width: 1000px;
  top: 57%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-oita__sec01__top .dot {
  position: absolute;
  z-index: -1;
  top: 9%;
  left: 60%;
  width: clamp(220px, 23vw, 335px);
}
.page-oita__sec01__top__img {
  overflow: hidden;
  border-radius: 20px;
  max-width: 85%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .page-oita__sec01__top__img {
    max-width: 70%;
    border-radius: 40px;
    margin: 0 auto 0 0;
  }
}
@media (min-width: 768px) {
  .page-oita__sec01__top__text {
    margin-left: auto;
    max-width: 70%;
  }
}
.page-oita__sec01__top__text h2 {
  margin-bottom: 20px;
}
.page-oita__sec01__inner01, .page-oita__sec01__inner02, .page-oita__sec01__inner03 {
  margin-bottom: 80px;
}
@media (min-width: 576px) {
  .page-oita__sec01__inner01, .page-oita__sec01__inner02, .page-oita__sec01__inner03 {
    margin-bottom: 100px;
  }
}
@media (min-width: 768px) {
  .page-oita__sec01__inner01, .page-oita__sec01__inner02, .page-oita__sec01__inner03 {
    margin-bottom: 120px;
  }
}
.page-oita__sec01__inner01 .contents-title__main, .page-oita__sec01__inner02 .contents-title__main, .page-oita__sec01__inner03 .contents-title__main {
  margin-bottom: 20px;
}
.page-oita__sec01__inner01 .box {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 80px;
}
@media (min-width: 992px) {
  .page-oita__sec01__inner01 .box {
    flex-direction: row;
    margin-bottom: 100px;
    gap: 55px;
  }
}
.page-oita__sec01__inner01 .box .dot {
  position: absolute;
  z-index: -1;
  width: clamp(220px, 35vw, 335px);
}
@media (min-width: 992px) {
  .page-oita__sec01__inner01 .box .dot {
    width: clamp(220px, 23vw, 335px);
  }
}
.page-oita__sec01__inner01 .box:last-child {
  margin-bottom: 0;
}
.page-oita__sec01__inner01 .box:nth-child(odd) .dot {
  bottom: -7%;
  right: -5%;
}
@media (min-width: 992px) {
  .page-oita__sec01__inner01 .box:nth-child(odd) .dot {
    top: -25%;
    bottom: auto;
    right: -7%;
    left: auto;
  }
}
@media (min-width: 992px) {
  .page-oita__sec01__inner01 .box:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.page-oita__sec01__inner01 .box:nth-child(even) .dot {
  bottom: -7%;
  left: -5%;
}
@media (min-width: 992px) {
  .page-oita__sec01__inner01 .box:nth-child(even) .dot {
    top: -25%;
    bottom: auto;
    left: -7%;
    right: auto;
  }
}
@media (min-width: 992px) {
  .page-oita__sec01__inner01 .box__text {
    width: 60%;
  }
}
.page-oita__sec01__inner01 .box__text h2 {
  padding-bottom: 20px;
  border-bottom: solid 1px var(--or);
  margin-bottom: 20px;
}
.page-oita__sec01__inner01 .box__img {
  width: 85%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
}
@media (min-width: 992px) {
  .page-oita__sec01__inner01 .box__img {
    width: 36%;
  }
}
.page-oita__sec01__inner01 .box__img img {
  height: 100%;
}
.page-oita__sec01__inner02 .store-address, .page-oita__sec01__inner03 .store-address {
  background-color: rgba(201, 177, 126, 0.4);
}
.page-oita__sec01__inner02 .map, .page-oita__sec01__inner03 .map {
  background-color: rgba(201, 177, 126, 0.4);
}
.page-oita__sec01__inner02 .store-address {
  padding: 50px 20px;
}
@media (min-width: 768px) {
  .page-oita__sec01__inner02 .store-address {
    padding: 70px 20px;
  }
}
.page-oita__sec01__inner02 .store-address__inner {
  max-width: 645px;
  margin: 0 auto;
}
.page-oita__sec01__inner02 .store-address .list-dl {
  padding: 15px 0;
  border-bottom: solid 1px var(--base);
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .page-oita__sec01__inner02 .store-address .list-dl {
    flex-direction: row;
  }
}
.page-oita__sec01__inner02 .store-address .list-dl:first-child {
  padding-top: 0;
}
.page-oita__sec01__inner02 .store-address .list-dt {
  font-weight: bold;
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  .page-oita__sec01__inner02 .store-address .list-dt {
    font-weight: normal;
    width: 180px;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .page-oita__sec01__inner02 .store-address .list-dt {
    width: 250px;
  }
}
.page-oita__sec01__inner02 .store-address .list-dd {
  flex: 1;
}
.page-oita__sec01__inner02 .store-address .list-dd > p, .page-oita__sec01__inner02 .store-address .list-dd > a {
  font-size: 0.8125rem;
}
@media (min-width: 576px) {
  .page-oita__sec01__inner02 .store-address .list-dd > p, .page-oita__sec01__inner02 .store-address .list-dd > a {
    font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
  }
}
.page-oita__sec01__inner03 .map {
  padding: 0 20px 40px;
}
@media (min-width: 768px) {
  .page-oita__sec01__inner03 .map {
    padding: 0 30px 85px;
  }
}
.page-oita__sec01__inner03 .map iframe {
  display: block;
  max-width: 820px;
  margin: 0 auto;
  border: none;
  aspect-ratio: 4/2.5;
  width: 100%;
  height: 100%;
}
.page-oita__sec02 .contents-title__main {
  margin-bottom: 50px;
}
.page-oita__sec03 {
  background-color: rgba(48, 26, 13, 0.5);
}
.page-oita__sec03 .menu-list {
  background-color: rgba(248, 230, 201, 0.8);
}
.page-oita__sec04 {
  padding: 80px 0 100px;
}
@media (min-width: 576px) {
  .page-oita__sec04 {
    padding: 130px 0;
  }
}
@media (min-width: 768px) {
  .page-oita__sec04 {
    padding: 160px 0;
  }
}
.page-oita__sec04 .contents-title__main {
  margin-bottom: 15px;
}
.page-oita__sec04 p {
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
  line-height: 1.6;
}
.page-oita__sec04__inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  flex-direction: column;
}
@media (min-width: 576px) {
  .page-oita__sec04__inner {
    gap: 25px;
  }
}
@media (min-width: 768px) {
  .page-oita__sec04__inner {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .page-oita__sec04__inner {
    gap: 55px;
  }
}
.page-oita__sec04__inner .box {
  overflow: hidden;
  border-radius: 20px;
  width: 70%;
}
@media (min-width: 576px) {
  .page-oita__sec04__inner .box {
    width: calc(50% - 17.5px);
  }
}
@media (min-width: 992px) {
  .page-oita__sec04__inner .box {
    width: calc(50% - 27.5px);
  }
}
.page-oita__sec04__inner .box img {
  width: 100%;
  height: 100%;
}
.page-oita__sec04__inner .box:nth-of-type(1) {
  margin-top: 100px;
}
@media (min-width: 768px) {
  .page-oita__sec04__inner .box:nth-of-type(1) {
    margin-top: 180px;
  }
}
.page-oita__sec04__inner .box:nth-of-type(2) {
  margin-bottom: 100px;
  margin-left: auto;
  margin-bottom: 0;
}
@media (min-width: 576px) {
  .page-oita__sec04__inner .box:nth-of-type(2) {
    margin-left: 0;
  }
}
@media (min-width: 768px) {
  .page-oita__sec04__inner .box:nth-of-type(2) {
    margin-bottom: 180px;
  }
}
.page-oita__sec04__inner .dot {
  position: absolute;
  z-index: -1;
  top: 60px;
  left: -20%;
  width: clamp(220px, 23vw, 335px);
}
@media (min-width: 576px) {
  .page-oita__sec04__inner .dot {
    left: -10%;
  }
}

.page-oita .store-address,
.page-nobeoka .store-address {
  background-color: rgba(201, 177, 126, 0.4);
}
.page-oita .map,
.page-nobeoka .map {
  background-color: rgba(201, 177, 126, 0.4);
}
.page-oita .store .store-address,
.page-nobeoka .store .store-address {
  padding: 50px 20px;
}
@media (min-width: 768px) {
  .page-oita .store .store-address,
.page-nobeoka .store .store-address {
    padding: 70px 20px;
  }
}
.page-oita .store .store-address__inner,
.page-nobeoka .store .store-address__inner {
  max-width: 645px;
  margin: 0 auto;
}
.page-oita .store .store-address .list-dl,
.page-nobeoka .store .store-address .list-dl {
  padding: 15px 0;
  border-bottom: solid 1px var(--base);
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .page-oita .store .store-address .list-dl,
.page-nobeoka .store .store-address .list-dl {
    flex-direction: row;
  }
}
.page-oita .store .store-address .list-dl:first-child,
.page-nobeoka .store .store-address .list-dl:first-child {
  padding-top: 0;
}
.page-oita .store .store-address .list-dt,
.page-nobeoka .store .store-address .list-dt {
  font-weight: bold;
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  .page-oita .store .store-address .list-dt,
.page-nobeoka .store .store-address .list-dt {
    font-weight: normal;
    width: 180px;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .page-oita .store .store-address .list-dt,
.page-nobeoka .store .store-address .list-dt {
    width: 250px;
  }
}
.page-oita .store .store-address .list-dd,
.page-nobeoka .store .store-address .list-dd {
  flex: 1;
}
.page-oita .store .store-address .list-dd > p,
.page-nobeoka .store .store-address .list-dd > p {
  font-size: 0.8125rem;
}
@media (min-width: 576px) {
  .page-oita .store .store-address .list-dd > p,
.page-nobeoka .store .store-address .list-dd > p {
    font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
  }
}
.page-oita .access .map,
.page-nobeoka .access .map {
  padding: 0 20px 40px;
}
@media (min-width: 768px) {
  .page-oita .access .map,
.page-nobeoka .access .map {
    padding: 0 30px 85px;
  }
}
.page-oita .access .map iframe,
.page-nobeoka .access .map iframe {
  display: block;
  max-width: 820px;
  margin: 0 auto;
  border: none;
  aspect-ratio: 4/2.5;
  width: 100%;
  height: 100%;
}
.page-oita .reserve-text,
.page-nobeoka .reserve-text {
  margin-bottom: 100px;
}
@media (min-width: 576px) {
  .page-oita .reserve-text,
.page-nobeoka .reserve-text {
    margin-bottom: 150px;
  }
}
@media (min-width: 768px) {
  .page-oita .reserve-text,
.page-nobeoka .reserve-text {
    margin-bottom: 180px;
  }
}
@media (min-width: 992px) {
  .page-oita .reserve-text,
.page-nobeoka .reserve-text {
    margin-bottom: 220px;
  }
}

.page-nobeoka .contents-title__main {
  margin-bottom: 20px;
}
.page-nobeoka__sec01, .page-nobeoka__sec02, .page-nobeoka__sec03, .page-nobeoka__sec04 {
  margin-bottom: 80px;
}
@media (min-width: 576px) {
  .page-nobeoka__sec01, .page-nobeoka__sec02, .page-nobeoka__sec03, .page-nobeoka__sec04 {
    margin-bottom: 100px;
  }
}
@media (min-width: 768px) {
  .page-nobeoka__sec01, .page-nobeoka__sec02, .page-nobeoka__sec03, .page-nobeoka__sec04 {
    margin-bottom: 120px;
  }
}
.page-nobeoka .store-address .list-dd a,
.page-nobeoka .store-address .list-dd p {
  font-size: 0.8125rem;
}
@media (min-width: 576px) {
  .page-nobeoka .store-address .list-dd a,
.page-nobeoka .store-address .list-dd p {
    font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
  }
}

.page-recruitment__sec01 {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 100px 0 150px;
}
@media (min-width: 576px) {
  .page-recruitment__sec01 {
    padding: 130px 0 200px;
  }
}
@media (min-width: 768px) {
  .page-recruitment__sec01 {
    padding: 180px 0 250px;
  }
}
@media (min-width: 992px) {
  .page-recruitment__sec01 {
    padding: 200px 0 300px;
  }
}
.page-recruitment__sec01 .bg-deco {
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 1100px;
}
@media (min-width: 576px) {
  .page-recruitment__sec01 .bg-deco {
    top: 47%;
    min-width: 1380px;
  }
}
@media (min-width: 992px) {
  .page-recruitment__sec01 .bg-deco {
    min-width: 180%;
  }
}
@media (min-width: 1200px) {
  .page-recruitment__sec01 .bg-deco {
    min-width: 1500px;
  }
}
.page-recruitment__sec01 .container {
  display: flex;
  flex-direction: column-reverse;
  gap: 50px;
}
@media (min-width: 992px) {
  .page-recruitment__sec01 .container {
    gap: 60px;
    flex-direction: row;
    align-items: flex-end;
    min-height: 630px;
  }
}
@media (min-width: 1200px) {
  .page-recruitment__sec01 .container {
    max-width: 1040px;
  }
}
.page-recruitment__sec01__img {
  position: relative;
  z-index: 1;
  flex: 1;
  height: 100%;
  overflow: hidden;
  border-radius: 25px;
  aspect-ratio: 12/6;
}
@media (min-width: 992px) {
  .page-recruitment__sec01__img {
    aspect-ratio: 9/12;
  }
}
.page-recruitment__sec01__img img {
  height: inherit;
  max-height: 624px;
}
.page-recruitment__sec01__text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .page-recruitment__sec01__text {
    width: 490px;
    justify-content: flex-end;
  }
}
.page-recruitment__sec01__text > h2 {
  font-size: clamp(1.563rem, 1.259rem + 1.31vw, 2.5rem);
  font-weight: bold;
  margin-bottom: 35px;
}
.page-recruitment__sec01__text .dot {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -5vw;
  width: clamp(220px, 23vw, 335px);
}
@media (min-width: 992px) {
  .page-recruitment__sec01__text .dot {
    top: -7vw;
  }
}
.page-recruitment__sec02 {
  margin-bottom: 100px;
  padding: 0 20px;
}
@media (min-width: 576px) {
  .page-recruitment__sec02 {
    margin-bottom: 140px;
  }
}
@media (min-width: 768px) {
  .page-recruitment__sec02 {
    margin-bottom: 180px;
  }
}
.page-recruitment__sec02 .box {
  padding: 45px 7vw;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
  max-width: 960px;
}
.page-recruitment__sec02 .box:last-child {
  margin-bottom: 0;
}
.page-recruitment__sec02 .box > h3 {
  font-size: clamp(1.375rem, 1.173rem + 0.88vw, 2rem);
  line-height: 1.88;
  padding-bottom: 25px;
  margin-bottom: 40px;
  border-bottom: solid var(--or);
}
.page-recruitment__sec02 .list-dl {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}
@media (min-width: 768px) {
  .page-recruitment__sec02 .list-dl {
    flex-direction: row;
    padding: 15px 40px;
  }
}
.page-recruitment__sec02 .list-dt {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 8px;
}
@media (min-width: 576px) {
  .page-recruitment__sec02 .list-dt {
    font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
  }
}
@media (min-width: 768px) {
  .page-recruitment__sec02 .list-dt {
    width: 135px;
    font-weight: normal;
    margin-bottom: 0;
  }
}
.page-recruitment__sec02 .list-dd {
  flex: 1;
}
.page-recruitment__sec02 .list-dd a,
.page-recruitment__sec02 .list-dd p {
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
}
.page-recruitment__sec03 {
  padding: 0 20px;
  margin-bottom: 120px;
}
@media (min-width: 576px) {
  .page-recruitment__sec03 {
    margin-bottom: 150px;
  }
}
@media (min-width: 768px) {
  .page-recruitment__sec03 {
    margin-bottom: 200px;
  }
}
.page-recruitment__sec03 .container {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .page-recruitment__sec03 .container {
    padding: 50px 10vw;
  }
}
.page-recruitment__sec03 .link-btn-wrap {
  max-width: 655px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media (min-width: 768px) {
  .page-recruitment__sec03 .link-btn-wrap {
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
  }
}

.page-scene__sec01, .page-scene__sec02 {
  overflow-x: clip;
}
.page-scene__sec01 {
  padding: 100px 0;
}
@media (min-width: 576px) {
  .page-scene__sec01 {
    padding: 120px 0;
  }
}
@media (min-width: 768px) {
  .page-scene__sec01 {
    padding: 150px 0;
  }
}
.page-scene__sec01__wrap {
  background-color: rgba(48, 26, 13, 0.4);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 576px) {
  .page-scene__sec01__wrap {
    padding: 60px 50px;
    gap: 60px;
  }
}
@media (min-width: 992px) {
  .page-scene__sec01__wrap {
    padding: 80px 100px;
    gap: 100px;
  }
}
.page-scene__sec02 {
  position: relative;
  z-index: 1;
}
.page-scene__sec02 .deco01,
.page-scene__sec02 .deco02 {
  position: absolute;
  z-index: -1;
  left: 0;
}
.page-scene__sec02 .deco01 {
  top: 10vw;
}
.page-scene__sec02 .deco02 {
  bottom: 10vw;
}
.page-scene__sec02 .contents-title__main {
  margin-bottom: 80px !important;
}
@media (min-width: 768px) {
  .page-scene__sec02 .contents-title__main {
    margin-bottom: 120px !important;
  }
}
.page-scene__sec02__wrap .box {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column-reverse;
  gap: 50px;
  margin-bottom: 150px;
}
@media (min-width: 576px) {
  .page-scene__sec02__wrap .box {
    margin-bottom: 180px;
  }
}
@media (min-width: 768px) {
  .page-scene__sec02__wrap .box {
    margin-bottom: 230px;
  }
}
@media (min-width: 992px) {
  .page-scene__sec02__wrap .box {
    align-items: flex-end;
    margin-bottom: 300px;
  }
}
@media (min-width: 992px) {
  .page-scene__sec02__wrap .box:nth-child(odd) {
    flex-direction: row;
  }
}
.page-scene__sec02__wrap .box:nth-child(odd) .dot {
  top: -8vw;
  left: -8vw;
}
@media (min-width: 992px) {
  .page-scene__sec02__wrap .box:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.page-scene__sec02__wrap .box:nth-child(even) .dot {
  top: -8vw;
  right: -8vw;
}
.page-scene__sec02__wrap .box__img {
  overflow: hidden;
  border-radius: 20px;
  height: 100%;
  width: 80%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .page-scene__sec02__wrap .box__img {
    border-radius: 30px;
  }
}
.page-scene__sec02__wrap .box__img img {
  aspect-ratio: 3/4;
  height: 100%;
}
.page-scene__sec02__wrap .box__text {
  position: relative;
  z-index: 1;
}
.page-scene__sec02__wrap .box__text .title {
  margin-bottom: 20px;
}
.page-scene__sec02__wrap .box__text .title h2 {
  font-size: clamp(1.625rem, 1.18rem + 1.93vw, 3rem);
}
.page-scene__sec02__wrap .box__text .title-deco {
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-scene__sec02__wrap .box__text .title-deco > img {
  width: 35px;
}
@media (min-width: 576px) {
  .page-scene__sec02__wrap .box__text .title-deco > img {
    width: 46px;
  }
}
.page-scene__sec02__wrap .box__text .title-deco > p {
  color: var(--or);
  font-size: 1rem;
}
@media (min-width: 576px) {
  .page-scene__sec02__wrap .box__text .title-deco > p {
    font-size: 1.125rem;
  }
}
@media (min-width: 768px) {
  .page-scene__sec02__wrap .box__text .title-deco > p {
    font-size: 1.5rem;
  }
}
.page-scene__sec02__wrap .box__text .img {
  padding: 20px;
  margin-bottom: 40px;
  border-radius: 20px;
  background-color: rgba(201, 177, 126, 0.377);
}
@media (min-width: 576px) {
  .page-scene__sec02__wrap .box__text .img {
    padding: 25px 35px;
  }
}
@media (min-width: 992px) {
  .page-scene__sec02__wrap .box__img, .page-scene__sec02__wrap .box__text {
    width: calc(50% - 25px);
  }
}
.page-scene__sec02__wrap .box .dot {
  position: absolute;
  z-index: -1;
  width: clamp(220px, 23vw, 335px);
}

.page-news__contents {
  padding: 100px 0;
}
@media (min-width: 576px) {
  .page-news__contents {
    padding: 130px 0;
  }
}
@media (min-width: 768px) {
  .page-news__contents {
    padding: 180px 0;
  }
}

.news-item {
  position: relative;
  z-index: 1;
  font-weight: 500;
  padding: 13px 55px 13px 13px;
  border-bottom: solid 1px var(--or);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
@media (min-width: 576px) {
  .news-item {
    padding: 20px 65px 20px 20px;
  }
}
@media (min-width: 768px) {
  .news-item {
    padding: 35px 70px 35px 35px;
    align-items: center;
    flex-direction: row;
  }
}
.news-item .date {
  color: var(--or);
  font-size: clamp(0.813rem, 0.671rem + 0.61vw, 1.25rem);
  margin-bottom: 7px;
}
@media (min-width: 768px) {
  .news-item .date {
    margin-bottom: 0;
    width: 155px;
  }
}
.news-item .title {
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
  flex: 1;
  width: 100%;
}
.news-item .title a {
  display: block;
  width: inherit;
}
.news-item .title a::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  display: block;
  background: url(../images/arrow-bk.svg) center/contain no-repeat;
  width: 38px;
  height: 9px;
  transition: all 0.3s ease;
}
@media (min-width: 576px) {
  .news-item .title a::after {
    right: 16px;
  }
}
@media (min-width: 768px) {
  .news-item .title a::after {
    right: 32px;
  }
}
.news-item .title a:hover::after {
  transition: all 0.3s ease;
  right: 4px;
}
@media (min-width: 576px) {
  .news-item .title a:hover::after {
    right: 8px;
  }
}
@media (min-width: 768px) {
  .news-item .title a:hover::after {
    right: 22px;
  }
}

.webgene-pagination {
  margin-top: 60px;
}
@media (min-width: 576px) {
  .webgene-pagination {
    margin-top: 80px;
  }
}
@media (min-width: 768px) {
  .webgene-pagination {
    margin-top: 120px;
  }
}
.webgene-pagination ul {
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media (min-width: 768px) {
  .webgene-pagination ul {
    flex-direction: row;
  }
}
.webgene-pagination ul .prev a,
.webgene-pagination ul .next a {
  position: relative;
  z-index: 1;
  display: block;
  background-color: rgba(255, 255, 255, 0.5);
  text-align: center;
  line-height: 1.88;
  padding: 9px 75px;
}
.webgene-pagination ul .prev a::after,
.webgene-pagination ul .next a::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 23px;
  height: 7px;
  transition: all 0.3s ease;
}
.webgene-pagination ul .prev a:hover::after,
.webgene-pagination ul .next a:hover::after {
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .webgene-pagination ul .prev {
    margin-right: auto;
  }
}
.webgene-pagination ul .prev > a::after {
  left: 10px;
  background: url(../images/arrow-br-left.svg) center/contain no-repeat;
}
.webgene-pagination ul .prev > a:hover::after {
  left: 5px;
}
@media (min-width: 768px) {
  .webgene-pagination ul .next {
    margin-left: auto;
  }
}
.webgene-pagination ul .next > a::after {
  right: 10px;
  background: url(../images/arrow-br-right.svg) center/contain no-repeat;
}
.webgene-pagination ul .next > a:hover::after {
  right: 5px;
}
.webgene-pagination .back {
  width: 100%;
}
.webgene-pagination .back > a {
  margin: 0 auto;
}

.page-newsdetail {
  padding: 100px 0;
}
@media (min-width: 768px) {
  .page-newsdetail {
    padding: 180px 0 100px;
  }
}
@media (min-width: 992px) {
  .page-newsdetail {
    padding: 230px 0 130px;
  }
}
.page-newsdetail .newsdetail__date {
  color: var(--or);
  line-height: 1;
  font-weight: 500;
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
}
.page-newsdetail .newsdetail__title {
  font-size: clamp(1.5rem, 1.338rem + 0.7vw, 2rem);
  font-weight: 600;
  line-height: 1.88;
  margin-bottom: 30px;
}
.page-newsdetail .newsdetail__image {
  margin-bottom: 35px;
}
.page-newsdetail .newsdetail__image img {
  -o-object-fit: contain;
     object-fit: contain;
}
.page-newsdetail .newsdetail__text {
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
  font-weight: 500;
  line-height: 1.8;
}