@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,500;1,500&family=Zen+Old+Mincho:wght@500;600;700;900&display=swap");

/*------------------------
  Fonts
------------------------*/
@font-face {
  font-family: "YuGothic";
  font-weight: 400;
  src: url("../fonts/YuGothic-Medium.woff2") format("woff2"), url("../fonts/YuGothic-Medium.woff") format("woff");
}

@font-face {
  font-family: "YuGothic";
  font-weight: 700;
  src: url("../fonts/YuGothic-Bold.woff2") format("woff2"), url("../fonts/YuGothic-Bold.woff") format("woff");
}

/*------------------------
  Common
------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
  scroll-behavior: smooth;
  height: auto;
  font-size: 62.5%;
}

body {
  color: #000;
  font-size: 1.5rem;
  font-feature-settings: normal;
  -webkit-text-size-adjust: 100%;
  font-family: "YuGothic", sans-serif;
  height: 100%;
  padding: 0.6rem 0 0 0.6rem;
  position: relative;
  text-spacing-trim: space-all;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: 999;
  background-color: #19191A;
  top: 0;
  left: 0;
}

body::before {
  width: 100%;
  height: 0.6rem;
}

body::after {
  width: 0.6rem;
  height: 100%;
}

body.active::before,
body.active::after {
  z-index: -1;
}

body.lp-mode::before,
body.lp-mode::after {
  background-color: transparent;
}

img {
  border: 0;
  outline: none;
  max-width: 100%;
  height: auto;
}

p,
ul,
ol,
dl,
table {
  font-size: 1.5rem;
  line-height: 2;
}

ul,
ol {
  list-style: none;
}

a {
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  color: #000;
}

a,
a:hover,
a:visited,
a:focus {
  text-decoration: none;
  border: none;
  outline: none;
}

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

.fw-bold {
  font-family: "YuGothic", sans-serif;
  font-weight: 700;
}

.border-top {
  border-top: 0.1rem solid #000;
}

.border-bottom {
  border-bottom: 0.1rem solid #242424;
}

.bg-wh {
  background-color: #FFF;
}

.bg-beige {
  background-color: #F8F6F6;
}

.bg-beige-dark {
  background-color: #F0EFEE;
}

.bg-dots-gray {
  background: #FFF url(../images/common/bg-rect-gray.svg) repeat;
  background-attachment: fixed;
}

.bg-dots-blk {
  background: #FFF url(../images/common/bg-rect-blk.svg) repeat;
  background-attachment: fixed;
}

.w-130 {
  width: 13rem;
}

.w-140 {
  width: 14rem;
}

.w-170 {
  width: 17rem;
}

.w-200 {
  width: 20rem;
}

.is-relative {
  position: relative;
}

.pc-none,
.for-lap,
.for-mobile {
  display: none;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

/* キャプション付き画像の配置設定 */
.alignleft.wp-caption {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1em;
}

.alignright.wp-caption {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1em;
}

.aligncenter.wp-caption {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1em;
  text-align: center;
  /* キャプション文字も中央に */
}

/* キャプション内のテキスト調整 */
.wp-caption-text {
  font-size: 0.9em;
  padding: 5px 0;
  margin: 0;
}

.single-cont .entry-body figure.aligncenter {
  width: auto !important;
  /* 横幅いっぱいを解除 */
  display: table !important;
  /* 中の画像サイズに合わせる */
  margin-left: auto !important;
  margin-right: auto !important;
}

/* 画像自体の左右配置にも対応させる場合 */
.single-cont .entry-body figure.alignleft {
  width: auto !important;
  float: left;
  margin-right: 1.5em;
}

.single-cont .entry-body figure.alignright {
  width: auto !important;
  float: right;
  margin-left: 1.5em;
}

.single-cont .entry-body figure.aligncenter {
  width: auto !important;
  /* 100%固定を解除 */
  display: table !important;
  /* 枠の幅を画像サイズに収める */
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: left;
  /* キャプション文字は左寄せ */
}

/* キャプションテキストの微調整（必要であれば） */
.wp-caption-text {
  text-align: left !important;
}

.single-cont .entry-body .gallery figure {
  width: auto !important;
  margin: 0;
  /* ギャラリー標準の余白を優先 */
}

.gallery {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-start !important;
  /* 左詰め（最終行対策） */
  width: 100% !important;
}

.gallery-item {
  /* テーマの100%固定を解除し、各カラム幅に従わせる */
  width: auto !important;
  margin: 0 !important;
  padding: 5px;
  /* 画像同士の余白（お好みで調整） */
  box-sizing: border-box;
  text-align: center;
  /* 枠内で画像自体は中央に */
}

/* カラム数ごとの幅指定 */
.gallery-columns-2 .gallery-item {
  flex: 0 0 50% !important;
  max-width: 50% !important;
}

.gallery-columns-3 .gallery-item {
  flex: 0 0 33.333% !important;
  max-width: 33.333% !important;
}

.gallery-columns-4 .gallery-item {
  flex: 0 0 25% !important;
  max-width: 25% !important;
}

.gallery-columns-5 .gallery-item {
  flex: 0 0 20% !important;
  max-width: 20% !important;
}

.gallery-columns-6 .gallery-item {
  flex: 0 0 16.666% !important;
  max-width: 16.666% !important;
}

.gallery-columns-7 .gallery-item {
  flex: 0 0 14.285% !important;
  max-width: 14.285% !important;
}

.gallery-columns-8 .gallery-item {
  flex: 0 0 12.5% !important;
  max-width: 12.5% !important;
}

.gallery-columns-9 .gallery-item {
  flex: 0 0 11.111% !important;
  max-width: 11.111% !important;
}

/* 画像が枠からはみ出さないように */
.gallery-item img {
  max-width: 100% !important;
  height: auto !important;
}

.gallery-item {
  display: flex !important;
  flex-direction: column;
  /* 画像とキャプションを縦に並べる */
  align-items: center;
  /* 中身（画像）を中央寄せ */
  justify-content: flex-start;
}

/* 画像自体のマージンを自動にして中央へ */
.gallery-item img {
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

@media screen and (max-width: 992px) {
  .for-lap {
    display: block;
  }

  .lap-none {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  body {
    padding: 0.4rem 0 0 0.4rem;
  }

  body::before {
    height: 0.4rem;
  }

  body::after {
    width: 0.4rem;
  }

  .pc-none {
    display: block;
  }

  .sp-none {
    display: none;
  }

  .vertical {
    writing-mode: horizontal-tb;
  }
}

@media screen and (max-width: 576px) {
  .for-mobile {
    display: block;
  }

  .for-tab {
    display: none;
  }
}

/*------------------------
  Layout
------------------------*/
.l-body {
  margin-left: 245px;
  overflow: hidden;
  background-color: #F8F6F6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.l-body main {
  flex: 1;
}

.container {
  padding: 8rem 0;
}

.container.top {
  padding-top: 0;
}

.container.bottom {
  padding-bottom: 0;
}

.wrapper {
  max-width: calc(1000px + 12rem);
  width: 100%;
  padding: 0 6rem;
  margin: 0 auto;
}

.wrapper.large {
  max-width: calc(1286px + 12rem);
}

.wrapper.medium {
  max-width: calc(910px + 12rem);
}

.wrapper.small {
  max-width: calc(680px + 12rem);
}

.wrapper.xsmall {
  max-width: calc(680px + 12rem);
}

.row {
  display: flex;
}

.row.flex-wrap {
  flex-wrap: wrap;
}

.col2 {
  width: 50%;
}

.col3 {
  width: 33.333%;
}

@media screen and (max-width: 768px) {
  .l-body {
    margin: 0;
    padding-top: 4.6rem;
  }

  .container {
    padding: 4rem 0 6.5rem;
  }

  .wrapper {
    padding: 0 3rem;
  }

  .row {
    flex-wrap: wrap;
  }
}

/*------------------------
  Header
------------------------*/
.l-header {
  position: fixed;
  z-index: 100;
  width: 245px;
  height: 100vh;
  background-color: #FFF;
  overflow-y: scroll;
  overflow-x: hidden;
  padding: 0 3rem;
  border-top-left-radius: 0.8rem;
}

.l-header::before,
.l-header::after {
  content: "";
  position: fixed;
  top: 0.6rem;
  left: 0.6rem;
  z-index: 101;
}

.l-header::before {
  background-color: #19191A;
  width: 1rem;
  height: 1rem;
}

.l-header::after {
  background-color: #FFF;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
}

.l-header .logo img {
  display: block;
  margin: 9rem auto 6rem;
}

.l-header .logo img.horizontal {
  display: none;
}

.l-header .gnav ul.menu {
  border-top: 1px solid #D9D9D9;
  margin-bottom: 3.5rem;
}

.l-header .gnav ul.menu li {
  border: solid #D9D9D9;
  border-width: 0 0 1px;
  padding: 1.2rem 0;
}

.l-header .gnav ul.menu li a {
  padding-bottom: 0;
  transition: 0.2s;
}

.l-header .gnav ul.menu li a:hover {
  opacity: 0.5;
}

.l-header .gnav ul.menu li:last-child {
  border-bottom: none;
}

.l-header .gnav ul.menu li .maru1 {}

.l-header .gnav ul.menu li .maru2 {
  padding-top: 4px;
}


.l-header .gnav ul.menu li a {
  color: #000;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 1vw + 0.25rem, 1.7rem);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.l-header .gnav ul.menu li a:hover {
  color: #5D5D5D;
}

.l-header .gnav ul.menu li a.disabled {
  pointer-events: none;
}

.l-header .gnav ul.menu li a svg {
  fill: none;
  stroke: #5D5D5D;
  stroke-miterlimit: 10;
  width: clamp(1.7rem, 1vw + 0.25rem, 2rem);
  margin-right: clamp(0.6rem, 0.667vw, 0.8rem);
}

.l-header .gnav ul.menu li ul.sub-menu {
  padding: 0.6rem 0 0 1.5rem;
}

.l-header .gnav ul.menu li ul.sub-menu li {
  border: none;
  padding: 0;
}

.l-header .gnav ul.menu li ul.sub-menu a {
  color: #5D5D5D;
  font-family: "YuGochic", sans-serif;
  font-size: clamp(1.2rem, 0.8vw + 0.25rem, 1.4rem);
  letter-spacing: 0.13em;
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
  display: block;
}

.l-header .gnav ul.menu li ul.sub-menu a:after {
  content: "ー";
  color: #9E9E9E;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

.l-header .gnav ul.menu li ul.sub-menu a:hover {
  opacity: 0.7;
}

.l-header .lang {
  margin: 2rem 0 7rem;
  display: flex;
  justify-content: center;
}

.l-header .lang li {
  padding: 0 1em;
  position: relative;
}

.l-header .lang li:nth-child(1)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0.65em;
  width: 0.1rem;
  height: 0.9em;
  background-color: #000;
  transform: rotate(25deg);
}

.l-header .lang li a {
  font-size: 1.2rem;
  font-family: "Helvetica Neue", "Arial", sans-serif;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.3em;
  position: relative;
}

.l-header .lang li a::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  width: 0;
  height: 0.1rem;
  left: 0;
  bottom: 0;
  background-color: #000;
}

.l-header .lang li a:hover::after {
  width: calc(100% - 0.3em);
}

.l-header .lang li.current a::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  width: calc(100% - 0.3em);
  height: 0.1rem;
  left: 0;
  bottom: 0;
  background-color: #000;
}

.l-header .btn-gold {
  width: calc(100% + 6rem);
  position: relative;
  left: -3rem;
}

.l-header .btn-gold a {
  background-color: #C9A25F;
  letter-spacing: 0.21em;
  text-indent: 0.21em;
  font-size: 1.7rem;
  font-weight: 700;
  text-align: center;
  line-height: 6rem;
  display: block;
  position: relative;
}

.l-header .btn-gold a::before {
  background: #000;
  position: absolute;
  top: -0.1rem;
  left: -0.1rem;
  content: "";
  width: calc(100% + 0.2rem);
  height: calc(100% + 0.2rem);
  border-radius: 0.3rem;
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
  transform-origin: left top;
  -webkit-transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}

.l-header .btn-gold a:hover {
  color: #FFF;
}

.l-header .btn-gold a:hover::before {
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
}

.l-header .btn-gold a:hover span svg {
  stroke: #FFF;
}

.l-header .btn-gold a span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.l-header .btn-gold a span svg {
  width: 1.8rem;
  margin-right: 0.8rem;
  fill: none;
  stroke: #000;
  stroke-miterlimit: 10;
  stroke-linecap: square;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.btn-login {
  position: absolute;
  z-index: 20;
  right: 0;
  top: 0.3rem;
}

.btn-login a {
  display: block;
  background-color: #000;
  color: #FFF;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.21em;
  text-indent: 0.21em;
  padding: 0.2rem 2rem;
  border-bottom-left-radius: 0.4rem;
}

.btn-login a:hover {
  background-color: #FFF;
  color: #000;
}

@media screen and (max-width: 768px) {
  .l-header {
    position: fixed;
    overflow-y: auto;
    width: 100%;
    height: 46px;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    top: 0.4rem;
  }

  .l-header::before,
  .l-header::after {
    top: 0.4rem;
    left: 0.4rem;
    z-index: 101;
  }

  .l-header .logo img {
    margin: 0;
    position: relative;
    z-index: 1001;
  }

  .l-header .logo img.sidebar {
    display: none;
  }

  .l-header .logo img.horizontal {
    display: block;
  }

  .l-header .gnav {
    display: none;
  }

  .l-header .lang {
    display: none;
  }

  .l-header .btn-gold {
    display: none;
  }

  .btn-login {
    display: none;
  }
}

/*------------------------
  Burger Menu
------------------------*/
.header-menu {
  position: absolute;
  z-index: 1001;
  top: 0;
  right: 0;
  width: 4.6rem;
  height: 4.6rem;
  padding: 1.4rem 1rem;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  display: none;
}

.header-menu .line {
  width: 100%;
  height: 0.1rem;
  background-color: #231815;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.header-menu.active {
  justify-content: start;
  padding: 2.2rem 1.2rem;
}

.header-menu.active .line {
  transform-origin: center;
}

.header-menu.active .line.top {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.header-menu.active .line.middle {
  opacity: 0;
}

.header-menu.active .line.bottom {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  margin-top: -2px;
}

.open {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 9rem 0 4.5rem;
  background-color: #F8F6F6;
  overflow: hidden;
}

.open .bnav {
  display: flex;
  flex-wrap: wrap;
  max-width: 32rem;
  width: 100%;
  max-height: 100%;
  overflow-y: scroll;
  margin: 0 auto;
  padding: 0 3rem;
}

.open .bnav ul.menu {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  width: 100%;
}

.open .bnav ul.menu li {
  border-top: 0.1rem solid #292929;
}

.open .bnav ul.menu li:last-child {
  border-bottom: none;
}

.open .bnav ul.menu li a {
  display: flex;
  align-items: center;
  padding: 1.5rem 1.2rem;
  font-size: 1.9rem;
  letter-spacing: 0.06em;
}

.open .bnav ul.menu li a svg {
  fill: none;
  stroke: #5D5D5D;
  stroke-miterlimit: 10;
  width: 2rem;
  margin-right: 0.8rem;
}

.open .bnav ul.menu li a.disabled {
  pointer-events: none;
}

.open .bnav ul.menu ul.sub-menu {
  border: none;
  padding: 0 0 1.5rem 4rem;
  margin-top: -1rem;
}

.open .bnav ul.menu ul.sub-menu li {
  border: none;
  padding: 0;
}

.open .bnav ul.menu ul.sub-menu a {
  color: #5D5D5D;
  font-family: "YuGochic", sans-serif;
  font-size: 1.4rem;
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
  display: block;
}

.open .bnav ul.menu ul.sub-menu a:after {
  content: "ー";
  color: #9E9E9E;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

.l-header .open .lang {
  display: flex;
  margin: 2rem auto 3.5rem;
}

.l-header .open .btn-row {
  margin-top: 3.5rem;
  justify-content: space-between;
  width: 100%;
}

.l-header .open .btn-row .btn a {
  display: block;
  line-height: 5.5rem;
  font-size: 1.7rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.21em;
  border-radius: 0.2rem;
}

.l-header .open .btn-row .btn-gold {
  width: 100%;
  left: auto;
  display: block;
}

.l-header .open .btn-row .btn-blk {
  width: 42.41%;
}

.l-header .open .btn-row .btn-blk a {
  display: block;
  color: #FFF;
  background-color: #000;
}

@media screen and (max-width: 768px) {
  .header-menu {
    display: flex;
    flex-wrap: wrap;
  }
}

/*------------------------
  Heading
------------------------*/
h1,
h2,
h3,
h4,
h5 {
  font-family: "YuGothic", sans-serif;
  font-weight: 700;
}

.heading-large {
  font-size: 2.8rem;
  font-weight: 500;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.heading-large.text-center {
  margin-bottom: 3rem;
  text-indent: 0.06em;
}

.heading-medium {
  font-size: 2.3rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  line-height: 1.5;
}

.heading-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
}

.heading-wrap .heading-large {
  line-height: 1;
}

.page-title-wrap {
  position: relative;
  z-index: 3;
  background-color: #F8F6F6;
}

.page-title-wrap figure {
  aspect-ratio: 1040/260;
  position: relative;
  overflow: hidden;
}

.page-title-wrap figure::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.2);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.page-title-wrap figure img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.page-title-wrap .page-title {
  color: #FFF;
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-size: 4.2rem;
  letter-spacing: 0.21em;
  text-indent: 0.21em;
  white-space: nowrap;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 992px) {
  .heading-large {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .heading-large.text-center {
    margin-bottom: 2rem;
  }

  .heading-medium {
    font-size: 2.1rem;
  }

  .page-title-wrap {
    position: relative;
  }

  .page-title-wrap figure {
    aspect-ratio: 390/130;
  }

  .page-title-wrap .page-title {
    font-size: 2.4rem;
  }
}

/*------------------------
  Partial
------------------------*/
.overlay {
  position: absolute;
  opacity: 0.5;
  width: 100%;
  height: 50%;
  left: 0;
  bottom: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgba(0, 0, 0, 0) 100%);
}

.overlay.full {
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.8646052171) 20%, rgba(0, 0, 0, 0) 100%);
}

.overlay.flat50 {
  height: 100%;
  background: #000;
  opacity: 0.5;
}

.overlay.flat40 {
  height: 100%;
  opacity: 0.4;
  background: rgb(0, 0, 0);
}

.overlay.flat30 {
  height: 100%;
  opacity: 0.3;
  background: rgb(0, 0, 0);
}

.overlay.flat20 {
  height: 100%;
  opacity: 0.2;
  background: rgb(0, 0, 0);
}

.btn-border {
  width: 21.5rem;
}

.btn-border a {
  display: block;
  text-align: center;
  letter-spacing: 0.5rem;
  text-indent: 0.5rem;
  border: 0.1rem solid #000;
  position: relative;
  background-color: #FFF;
  font-family: "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
}

.btn-border a::before {
  background: #000;
  position: absolute;
  top: -0.1rem;
  left: -0.1rem;
  content: "";
  width: calc(100% + 0.2rem);
  height: calc(100% + 0.2rem);
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
  transform-origin: left top;
  -webkit-transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}

.btn-border a span {
  padding: 1.25rem 0.5rem;
  display: block;
  position: relative;
}

.btn-border a:hover {
  color: #FFF;
}

.btn-border a:hover::before {
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
}

.btn-arrow a {
  color: #C9A25F;
  font-family: "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  letter-spacing: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-arrow a:hover {
  opacity: 0.7;
}

.btn-arrow a svg {
  width: 1.6rem;
  fill: none;
  stroke: #C9A25F;
  stroke-width: 1.5;
}

@media screen and (max-width: 768px) {
  .btn-arrow.w-140 {
    width: 10.5rem;
  }

  .btn-arrow.w-170 {
    width: 13.5rem;
  }

  .btn-arrow a {
    font-size: 1.2rem;
    white-space: nowrap;
    letter-spacing: 0.4rem;
  }

  .btn-arrow a svg {
    width: 1rem;
  }
}

ol.decimal {
  list-style: decimal;
  margin-left: 2rem;
}

ol.latin {
  margin-left: 2rem;
  list-style: lower-latin;
}

ol.quot li {
  list-style-type: none;
  counter-increment: cnt;
}

ol.quot li::before {
  content: "(" counter(cnt) ") ";
}

ul.disc {
  margin-left: 2rem;
  list-style: disc;
}

/*------------------------
  Page Top
------------------------*/
.page-top {
  position: fixed;
  cursor: pointer;
  z-index: 100;
  width: 6.6rem;
  height: 6.6rem;
  right: 2rem;
  bottom: -10rem;
  transition: all 1s;
  background-color: #C9A25F;
  border-radius: 0.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-indent: 0.16em;
  color: #19191A;
  opacity: 0;
}

.page-top:hover,
.page-top:focus {
  opacity: 0.8;
}

.page-top svg {
  stroke-width: 0.2rem;
  stroke: #19191A;
  fill: none;
  width: 2.7rem;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  margin-bottom: 0.8rem;
}

.page-top.active {
  bottom: 2rem;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .page-top {
    width: 6rem;
    height: 6rem;
    font-size: 1.4rem;
    padding: 0.5rem 0;
  }

  .page-top svg {
    width: 2.2rem;
  }
}

/*------------------------
  footer
------------------------*/
.l-footer {
  position: relative;
  z-index: 10;
  background-color: #19191A;
  color: #FFF;
  padding: 4rem 3rem 1rem;
  margin-top: auto;
}

.l-footer .footer-menu {
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
}

.l-footer .footer-menu ul.menu {
  width: 30%;
}

.l-footer .footer-menu ul.menu li {
  margin: 1rem 0;
}

.l-footer .footer-menu ul.menu a {
  letter-spacing: 0.1em;
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFF;
}

.l-footer .footer-menu ul.menu a:hover {
  opacity: 0.6;
}

.l-footer .footer-copy {
  font-size: 1.2rem;
  margin-top: 3.5rem;
  letter-spacing: 0.2em;
  text-align: center;
}

@media screen and (max-width: 576px) {
  .l-footer .footer-menu {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
  }

  .l-footer .footer-menu ul.menu {
    width: 100%;
  }

  .l-footer .footer-menu ul.menu li {
    margin: 0.5rem 0;
    text-align: center;
  }

  .l-footer .footer-menu ul.menu li a {
    text-align: center;
  }

  .l-footer .footer-copy {
    margin-top: 3rem;
  }
}
/*------------------------
  youtube
------------------------*/
.youtube iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}


/*------------------------
  404
------------------------*/
.error404 .btn-border {
  margin: 6rem auto 4rem;
}

.open .bnav ul.menu li a.maru1 {
  padding-top: 0;
}

.open .bnav ul.menu li a.maru2 {
  padding-bottom: 0;
}