@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Kaisei+Decol&family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho&family=Zen+Old+Mincho&display=swap");
/* -----------------------------------------------
common
----------------------------------------------- */
html,
body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}
body {
  color: #000;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 500;
  font-style: normal;
  opacity: 0;
}
body a {
  text-decoration: none !important;
}
.s_min_r {
  font-weight: 400;
}
.s_min_b {
  font-weight: 700;
}

.inner__wrap {
  margin-inline: auto;
}

:root {
  --color_fko: #c2461d;
  --bg_color_fko: #c2461d1a;
  --color_ngs: #dbb73b;
  --bg_color_ngs: #dbb73b1a;
  --color_oit: #0070a5;
  --bg_color_oit: #0070a51a;
  --color_kmm: #a37241;
  --bg_color_kmm: #a372411a;
  --color_myz: #ed6d34;
  --bg_color_myz: #ed6d341a;
  --color_kgs: #7f3673;
  --bg_color_kgs: #7f36731a;
}

@media (max-width: 786px) {
  :root {
    --fs-10: min(2.67vw, 10px);
    --fs-10-5: min(2.8vw, 10.5px);
    --fs-11: min(2.93vw, 11px);
    --fs-12: min(3.2vw, 12px);
    --fs-13: min(3.47vw, 13px);
    --fs-14: min(3.73vw, 14px);
    --fs-15: min(4vw, 15px);
    --fs-16: min(4.27vw, 16px);
    --fs-17: min(4.53vw, 17px);
    --fs-18: min(4.8vw, 18px);
    --fs-19: min(5.07vw, 19px);
    --fs-20: min(5.33vw, 20px);
    --fs-21: min(5.6vw, 21px);
    --fs-22: min(5.87vw, 22px);
    --fs-23: min(6.13vw, 23px);
    --fs-24: min(6.4vw, 24px);
    --fs-25: min(6.67vw, 25px);
    --fs-27: min(7.2vw, 27px);
    --fs-28: min(7.47vw, 28px);
    --fs-30: min(8vw, 30px);
    --fs-35: min(9.33vw, 35px);

    --fs-39: min(10.4vw, 39px);
    --fs-40: min(10.67vw, 40px);
    --fs-45: min(12vw, 45px);
    --fs-50: min(13.33vw, 50px);
    --fs-70: min(18.67vw, 70px);

    /* --vw: calc(100vw / ●●●); */
  }
  .pc__only {
    display: none !important;
  }
  body {
    font-size: 14px;
  }
  .inner__wrap {
    width: 78.933%;
  }
}

@media (min-width: 787px) {
  :root {
    /* --vw: calc(100vw / ●●●); */
  }
  .sp__only {
    display: none !important;
  }
  body {
    font-size: 16px;
  }
  .inner__wrap {
    width: 100%;
    max-width: calc(1600px + 40px);
    padding: 0 20px;
  }
}

@media (any-hover: hover) {
  a,
  button {
    transition: all 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.8;
  }
}

/* -----------------------------------------------
header
----------------------------------------------- */

/* fixed__nav */
.fixed__nav {
}
.fixed__nav li a {
  color: #000;
  display: block;
}

.fixed__nav li a span {
  position: relative;
}

.alt__header {
  position: relative;
  width: 100%;
}

.header__nav__wrap {
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transition: all 0.5s;
  width: 100vw;
  background-color: rgba(255, 255, 255, 0.95);
  position: absolute;
  top: 0;
  right: 0;
  margin: 0 calc(50% - 50vw);
  overflow-y: scroll;
  z-index: 9;
}
body.menu__open .header__nav__wrap {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}
.header__nav__wrap strong,
.header__nav li strong a {
  font-weight: normal;
}
.header__nav__wrap strong {
  display: block;
}

.header__nav a {
  color: #000;
}
.header__nav strong a {
  position: relative;
}

.header__nav strong a:before {
  content: "";
  border-left-width: 3px;
  border-left-style: solid;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 100%;
}
.header__nav .fko strong a:before {
  border-left-color: var(--color_fko);
}
.header__nav .ngs strong a:before {
  border-left-color: var(--color_ngs);
}
.header__nav .oit strong a:before {
  border-left-color: var(--color_oit);
}
.header__nav .kmm strong a:before {
  border-left-color: var(--color_kmm);
}
.header__nav .myz strong a:before {
  border-left-color: var(--color_myz);
}
.header__nav .kgs strong a:before {
  border-left-color: var(--color_kgs);
}

@media (max-width: 786px) {
  /* fixed__nav */
  .fixed__nav {
    background: #d4c3ae;
    border-radius: 10px;
    position: fixed;
    bottom: 4%;
    left: 50%;
    width: 89.067%;
    transform: translateX(-50%);
    z-index: 11;
  }
  .fixed__nav ul {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: stretch;
    align-items: stretch;
  }
  .fixed__nav li {
    width: calc(100% / 3);
  }
  .fixed__nav li:nth-child(n + 4) {
    border-top: 1px solid #fff;
  }
  .fixed__nav li:nth-child(2),
  .fixed__nav li:nth-child(5) {
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
  }
  .fixed__nav li a {
    font-size: 15px;
    line-height: 35px;
    text-align: center;
    letter-spacing: 0.5em;
    text-indent: 0.5em;
    position: relative;
  }
  .fixed__nav li a:after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 100%;
    background: url(../img/icon_bottom_arrow_k.svg) 50% 56% / contain no-repeat;
    right: 1em;
    position: absolute;
  }

  .fixed__nav li:last-child a {
    letter-spacing: 0.15em;
    text-indent: 0.15em;
  }

  /* ハンバーガー */
  #nav__toggle {
    position: fixed;
    background: none;
    bottom: 17%;
    right: 5.6%;
    width: 86px;
    height: 86px;
    border: none;
    padding: 0;
    z-index: 12;
  }
  .menu__open #nav__toggle img {
    opacity: 0;
  }
  .menu__open #nav__toggle {
    background: url(../img/btn_close_sp.svg) 0 0 / cover no-repeat;
  }
  .header__nav__wrap {
    height: calc(100vh - 59px);
    padding: 38px 10% 38px;
    z-index: 11;
    position: fixed;
    top: 59px;
    overflow: scroll;
  }
  .header__nav__wrap > strong {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .header__nav li {
    margin-bottom: 17px;
  }
  .header__nav li strong {
    margin-bottom: 11px;
  }
  .header__nav li strong a {
    padding-left: 0.4em;
    display: block;
    line-height: 1.2;
  }
  .header__nav strong a {
    font-size: 17px;
    letter-spacing: 0.25em;
  }
  .header__nav li:last-child strong a {
    letter-spacing: 0.08em;
  }
  .header__nav li div {
    margin-bottom: 10px;
  }
  .header__nav div a {
    display: block;
    font-size: 13px;
    line-height: 1.385;
    padding-left: 0.3em;
  }

  body.bottom .fixed__nav {
  }
}

@media (min-width: 787px) {
  .second__layer .headerContainer {
    border-bottom: 1px solid #dadbdb;
  }

  /* fixed__nav */
  .activeFix .fixed__nav {
    top: 75px;
  }
  .fixed__nav {
    background: #f4e4d1;
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 12;
    transition: top 0.5s;
  }
  .fixed__nav ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: stretch;
    align-items: stretch;
  }
  .fixed__nav li {
    margin-inline: 2.4%;
  }
  .fixed__nav li a {
    font-size: 22px;
    line-height: 60px;
    letter-spacing: 0.5em;
    text-indent: 0.5em;
  }
  .fixed__nav li:last-child a {
    letter-spacing: 0.15em;
    text-indent: 0.15em;
  }
  .fixed__nav li a span {
  }
  .fixed__nav li a span:after {
    content: "";
    transition: all 0.5s;
    position: absolute;
    top: calc(100% + 0.1em);
    left: calc(50% - 0.25em);
    width: calc(100% - 0.5em);
    height: 2px;
    transform: translateX(-50%);
    opacity: 0;
  }
  .fixed__nav li a:hover span:after {
    opacity: 1;
  }
  .fixed__nav li:nth-child(1) a span:after {
    background-color: var(--color_fko);
  }
  .fixed__nav li:nth-child(2) a span:after {
    background-color: var(--color_ngs);
  }
  .fixed__nav li:nth-child(3) a span:after {
    background-color: var(--color_oit);
  }
  .fixed__nav li:nth-child(4) a span:after {
    background-color: var(--color_kmm);
  }
  .fixed__nav li:nth-child(5) a span:after {
    background-color: var(--color_myz);
  }
  .fixed__nav li:nth-child(6) a span:after {
    background-color: var(--color_kgs);
    width: calc(100% - 0.075em);
    left: calc(50% - 0.075em);
  }

  /* ハンバーガー */
  .alt__header {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10002;
  }
  #nav__toggle {
    width: 52px;
    height: 164px;
    position: fixed;
    top: 414px;
    background: url(../img/btn_close_pc.svg) 0 0 / cover no-repeat;
    right: 0;
    z-index: 11;
    border: none;
    padding: 0;
    transition: top 0s;
  }
  .menu__open #nav__toggle {
    z-index: 10003;
  }
  .menu__open #nav__toggle img {
    opacity: 0;
  }
  .header__nav__wrap {
    width: 594px;
    max-height: 100vh;
    padding: 52px 1% 38px 4%;
  }
  .header__nav__wrap a:hover {
    text-decoration: underline;
  }
  .header__nav__wrap > strong {
    font-size: 35px;
    margin-bottom: 22px;
  }
  .header__nav li {
    margin-bottom: 32px;
  }
  .header__nav li strong {
    margin-bottom: 10px;
  }
  .header__nav li strong a {
    padding-left: 0.3em;
  }
  .header__nav strong a {
    font-size: 27px;
    letter-spacing: 0.25em;
  }
  .header__nav li:last-child strong a {
    letter-spacing: 0.08em;
  }
  .header__nav li div {
    margin-bottom: 14px;
  }
  .header__nav div a {
    font-size: 21px;
    padding-left: 0.3em;
  }
  a.pagetop {
    position: fixed;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    top: 600px;
    right: 8px;
    z-index: 11;
    transition: top 0s;
  }

  #group_footer {
    position: relative;
    z-index: 3;
  }
}

.kaisei-decol {
  font-family: "Kaisei Decol", serif;
  font-weight: 400;
  font-style: normal;
}
.zen-old-mincho {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
.shippori-mincho {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
.inner__wrap {
  margin-inline: auto;
}

main {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

@media (max-width: 786px) {
  main {
    padding-top: 59px;
  }
}
@media (min-width: 787px) {
  main {
    padding-top: 89px;
  }
  .inner__wrap {
    width: 100%;
    max-width: calc(1000px + 40px);
    padding: 0 20px;
  }
}
.arrow__link__btn {
  text-align: center;
}

.arrow__link__btn a {
  font-size: 17px;
  padding: 10px 1em 10px 0.5em;
  letter-spacing: 5.1px;
  border-bottom: 1px solid #000;
  display: inline-block;
  position: relative;
  background: url(../img/common/icon_arrow_link.svg) 100% center / 0.6em
    no-repeat;
  transition: all 0.3s;
}
.arrow__link__btn a:hover {
  opacity: 0.7;
  background-size: 0.5em;
}
.box__link__btn {
  text-align: center;
}
.box__link__btn a {
  border: 1px solid #000;
  display: inline-block;
  transition: all 0.3s;
  text-align: center;
}
.box__link__btn a:hover {
  opacity: 0.7;
}

@media (max-width: 786px) {
  .box__link__btn {
    margin-bottom: 158px;
  }

  .box__link__btn a {
    font-size: var(--fs-15);
    text-indent: 4.5px;
    letter-spacing: 4.5px;
    line-height: 33px;
    padding-inline: 1.8em;
  }
}
@media (min-width: 787px) {
  .box__link__btn {
    margin-bottom: 158px;
  }

  .box__link__btn a {
    font-size: 18px;
    letter-spacing: 5.1px;
    text-indent: 5.1px;
    width: 245px;
    height: 40px;
    line-height: 40px;
  }
}

/* -----------------------------------------------
menu__wrap
#fixed__menu__wrap
----------------------------------------------- */
.fixed__menu__wrap {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  z-index: 99;
}
.fixed__menu__wrap .logo__wrap {
  margin-inline: auto;
  width: 100%;
}
.fixed__menu__wrap .logo__wrap h1 {
  height: auto;
}
.fixed__menu__wrap.is-open .logo__wrap h1 img {
  opacity: 1 !important;
}
.logo__wrap img {
  opacity: 1;
  transition: opacity 0.25s;
}
.logo__wrap.is-dark h1 {
  background: url(../img/common/omuro_kadensho_logo_wh.svg) center / contain
    no-repeat;
}
.logo__wrap.is-dark img {
  opacity: 0;
}

.menu__toggle__wrap {
  position: absolute;
  top: 0;
  z-index: 1500;
}
.menu__toggle {
  display: flex;
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.menu__toggle .menu__label {
  font-family: Kaisei_Decol, serif;
  color: #61594a;
  font-weight: 400;
  font-family: "Kaisei Decol", serif;
}
.menu__toggle .menu__label span:before {
  content: "Menu";
}
.fixed__menu__wrap.is-open .menu__label span:before {
  content: "Close";
}
.menu__toggle .menu__hamburger {
  overflow: hidden;
  position: relative;
}
.menu__hamburger span {
  width: 100%;
  height: 1px;
  left: 0;
  display: block;
  background: #61594a;
  position: absolute;
  transition:
    transform 0.5s ease-in-out,
    top 0.2s ease;
}
.menu__hamburger span:nth-child(1) {
  top: 0;
}
.menu__hamburger span:nth-child(2) {
  top: calc(50% - 1px);
  transition: left 0.3s ease-in-out;
}
.menu__hamburger span:nth-child(3) {
  bottom: 0;
}
.fixed__menu__wrap.is-open .menu__hamburger span:nth-child(1) {
  top: 50%;
  transform: rotate(-205deg);
}
.fixed__menu__wrap.is-open .menu__hamburger span:nth-child(2) {
  left: 200%;
}
.fixed__menu__wrap.is-open .menu__hamburger span:nth-child(3) {
  top: 50%;
  transform: rotate(205deg);
}
.menu__panel {
  position: fixed;
  right: 0;
  top: 0;
  width: 0;
  overflow: visible;
  z-index: 1400;
  pointer-events: none;
  transition: width 0.32s ease;
}
.menu__panel.is-open {
  pointer-events: auto;
}
.menu__panel__backdrop {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
}
.menu__panel.is-open .menu__panel__backdrop {
  opacity: 1;
  pointer-events: auto;
}
.menu__panel__content {
  position: fixed;
  top: 0;
  left: auto;
  background: #fff;
  overflow: auto;
  transition: right 0.32s ease;
}
.menu__panel.is-open .menu__panel__content {
  right: 0;
}
.menu__panel__close {
  position: absolute;
  border: 0;
  background: transparent;
  line-height: 1;
  cursor: pointer;
}
.menu__panel__bg {
  width: 100%;
  height: 150px;
  display: block;
  opacity: 0;
}
.menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu__item {
  font-family: Zen_Old_Mincho, serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.menu__item .label-en {
  color: #9d8f71;
  display: block;
}
.menu__item .label-ja {
  color: #111;
}
.search__btn__wrap {
  position: absolute;
  z-index: 1399;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.search__btn__wrap > * {
  pointer-events: auto;
}
.fixed__menu__wrap.is-open .search__btn__wrap {
}
.search__btn__wrap .search__btn {
  background: rgba(97, 89, 74, 0.7);
  position: relative;
  display: block;
  position: absolute;
  right: 0;
  z-index: 2;
  border: 0;
  padding: 0;
}
.search__btn__wrap:not(.open) img.search__close {
  display: none;
}

.l-search__inner.pc__only {
  background: none;
  width: 100%;
  height: 100%;
  position: relative;
  margin: 0;
  padding: 0;
  left: 0;
  right: 0;
  transform: translateX(0px);
}


.search__btn__wrap .search__btn__contents {
  display: none;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
}
.search__btn__contents strong {
  display: block;
  color: #9d8f71;
}
.search__btn__contents ul li a {
  border-bottom: 1px solid #000;
}
.search__btn__contents .search__link__box a {
  color: #fff;
  display: inline-block;
  position: relative;
  background-color: #9d8f71;
  background-image: url(../img/common/icon_arrow_link_w.svg);
  background-position: 91% 50% !important;
  background-size: 0.6em;
  background-repeat: no-repeat;
}
.search__btn__wrap.open .search__btn__contents {
  display: block;
}
.search__btn__wrap.open img.search__open {
  display: none;
}

@media (max-width: 786px) {
  .fixed__menu__wrap {
    top: 59px;
  }
  .scroll-lock .fixed__menu__wrap {
    z-index: 0;
  }
  .fixed__menu__wrap .logo__wrap {
    width: 92%;
  }
  .fixed__menu__wrap .logo__wrap h1 {
    width: 49.6%;
    position: relative;
    z-index: 9999;
  }
  .fixed__menu__wrap .logo__wrap h1 img {
    transition: opacity 0.3s ease;
  }
  .menu__toggle__wrap {
    right: 9%;
  }
  .menu__toggle {
    gap: 10px;
    padding-block: 18px;
  }
  .menu__toggle .menu__label {
    letter-spacing: 3.15px;
    font-size: 21px;
    font-size: var(--fs-15);
  }
  .menu__toggle .menu__hamburger {
    width: 30px;
    height: 15px;
  }

  .menu__panel {
    top: 59px;
    height: calc(100vh - 59px);
  }
  .menu__panel__bg,
  .menu__panel__close {
    display: none;
  }

  .menu__panel .menu__panel__content {
    /* right: 0; */
    top: 59px;
  }
  .menu__panel.is-open {
    width: 100%;
  }
  .menu__panel__content {
    right: -100%;
    height: calc(100vh - 59px);
    width: 100%;
  }
  .menu__panel__close {
    left: 12px;
    top: 12px;
    font-size: 28px;
  }
  .menu__panel__nav {
    padding-top: 66px;
    padding-inline: 10%;
  }
  .menu__item {
    padding: 6px 10px;
    margin-bottom: 4px;
  }
  .menu__item .label-en {
    font-size: var(--fs-13);
    line-height: 20px;
    letter-spacing: 6.5px;
    display: block;
  }
  .menu__item .label-ja {
    font-size: var(--fs-13);
    line-height: 20px;
    letter-spacing: 6.5px;
    display: block;
  }
  .search__btn__wrap {
    top: 68px;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
  }
  .search__btn__wrap .search__btn {
    right: 0;
    width: 18.13%;
    width: 54px;
  }
  .search__btn__wrap .search__btn__contents {
    width: 100%;
    padding: 23px 26px 36px;
    max-width: 300px;
  }
  .search__btn__contents strong {
    font-size: var(--fs-15);
    font-style: normal;
    font-weight: 700;
    line-height: 21px;
    letter-spacing: 0.75px;
    margin-bottom: 16px;
  }
  .search__btn__contents ul {
    margin-bottom: 22px;
  }
  .search__btn__contents ul li {
    margin-bottom: 3px;
  }
  .search__btn__contents ul li a {
    font-size: var(--fs-16);
    line-height: 40px;
    letter-spacing: 0.8px;
    padding-bottom: 4px;
  }
  .search__btn__contents .search__link__box a {
    font-size: var(--fs-16);
    line-height: 36px;
    padding-inline: 1.6em 2.8em;
    letter-spacing: 0.8px;
    transition: all 0.3s;
  }
}

@media (min-width: 787px) {
  .fixed__menu__wrap {
    top: 114px;
  }
  .fixed__menu__wrap .logo__wrap {
    padding: 0 40px;
  }
  .fixed__menu__wrap .logo__wrap h1 {
    width: 214px;
  }
  .fixed__menu__wrap .logo__wrap h1 img {
    transition: opacity 0.3s ease;
  }
  .menu__toggle__wrap {
    right: 40px;
  }
  .menu__toggle {
    gap: 16px;
    margin-top: 10px;
    margin-right: 12px;
    padding-block: 14px;
  }
  .menu__toggle .menu__label {
    letter-spacing: 3.15px;
    font-size: 21px;
  }
  .menu__toggle .menu__hamburger {
    width: 40px;
    height: 21px;
  }
  .menu__panel {
    height: 100vh;
  }
  .menu__panel.is-open {
    width: 480px;
  }
  .menu__panel__content {
    right: -480px;
    height: 100vh;
    width: 480px;
  }
  .menu__panel__close {
    left: 12px;
    top: 12px;
    font-size: 28px;
  }
  .menu__panel__nav {
    padding-top: 46px;
    padding-left: 70px;
  }
  .menu__item {
    height: 58px;
    padding: 6px 12px;
    margin-bottom: 15px;
  }
  .menu__item .label-en {
    font-size: 15px;
    line-height: 30px;
    letter-spacing: 7.5px;
  }
  .menu__item .label-ja {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 10px;
  }
  .search__btn__wrap {
    width: calc(100% - 120px);
    top: 76px;
    left: 50%;
    transform: translateX(-50%);
    height: 76px;
  }
  .search__btn__wrap .search__btn {
    right: 0;
    width: 72px;
  }
  .search__btn__wrap .search__btn__contents {
    width: 646px;
    padding: 35px 36px 13px;
    top: 36px;
    right: 36px;
  }

  .search__btn__contents ul {
    margin-bottom: 22px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
  .search__btn__contents ul li {
    margin-bottom: 3px;
    position: relative;
  }
  .search__btn__contents ul li:nth-child(1)::after {
    left: 120%;
  }
  .search__btn__contents ul li:nth-child(2)::after {
    left: 124%;
  }
  .search__btn__contents ul li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 1px;
    height: calc(100% + 10px);
    background: #000;
    transform: translateY(-50%);
  }
  .search__btn__contents ul li a {
    font-size: 16px;
    line-height: 40px;
    letter-spacing: 0.8px;
    padding-bottom: 4px;
  }

  form#obj_search {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    margin-bottom: 31px;
  }
  form#obj_search > div {
    text-align: center;
  }

  #obj_search div[class^="wrp_"] em {
    color: #9d8f71;
    font-size: 17px;
    margin-bottom: 6px;
    display: block;
  }

  #obj_search input:not([type="submit"]),
  #obj_search select {
    border: none;
    font-size: 20px;
    text-align: center;
    width: 100%;
		color: #000;
    font-family: "Zen Old Mincho", serif;
  }
  input#datepicker {
    cursor: pointer;
    letter-spacing: 1px;
  }

  .wrp_day {
    width: 29%;
    margin-right: 3.6%;
  }
  .wrp_sta {
    width: 13%;
    margin-right: 3.6%;
  }
  .wrp_per {
    width: 13%;
    margin-right: 3.5%;
  }
  .wrp_roo {
    width: 13%;
  }
  .btn_submit {
    margin-inline: auto 0;
  }

  #obj_search input[type="submit"] {
    background: #fff;
    border-radius: 0;
    width: 60px;
    height: 40px;
    line-height: 38px;
    padding: 0;
    border: 1px solid #000;
    letter-spacing: 0.1em;
		color: #000;
		font-size: 100%;
  }
}

/* -----------------------------------------------
kv__wrap  second__layer
----------------------------------------------- */
.second__layer .kv__wrap,
.second__layer .kv__fx {
  position: relative;
}
.second__layer .kv__fx picture {
  filter: grayscale(1);
  transition: filter 1s 1.5s;
  position: relative;
}
.second__layer .kv__fx picture.js__inview__active {
  filter: grayscale(0);
}
.second__layer .kv__fx h2 {
  display: block;
  writing-mode: vertical-lr;
  font-weight: normal;
}
.second__layer .kv__fx strong {
  color: #dfd9d9;
  font-family: "Kaisei Decol", serif;
  opacity: 0.59;
  text-align: center;
  writing-mode: sideways-lr;
  font-weight: normal;
}
.second__layer .kv__fx picture::after {
  content: "";
  background: rgba(225, 221, 214, 0.35);
  position: absolute;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
}

@media (max-width: 786px) {
  .second__layer .kv__fx {
    width: 100%;
    margin-inline: auto;
    display: flex;
    justify-content: flex-end;
    padding-top: 20.7%;
  }
  .second__layer .kv__fx picture {
    aspect-ratio: 297 / 431;
    width: 79.2%;
    height: auto;
  }
  .second__layer .kv__fx h2 {
    font-size: var(--fs-40);
    line-height: 1;
    letter-spacing: 1.24em;
    margin-right: 4.4%;
  }
  .second__layer .kv__fx strong {
    position: absolute;
    font-size: var(--fs-70);
    line-height: 0.78em;
    letter-spacing: 0.18em;
    right: 0;
    bottom: 0;
  }
}

@media (min-width: 787px) {
  .second__layer .kv__wrap {
  }
  .second__layer .kv__fx {
    max-width: 1280px;
    margin-inline: auto;
    display: flex;
    justify-content: flex-end;
    padding-top: 140px;
  }
  .second__layer .kv__fx picture {
    aspect-ratio: 973 / 567;
    max-width: 973px;
    height: auto;
    width: 76.0156%;
  }
  .second__layer .kv__fx h2 {
    font-size: 50px;
    letter-spacing: 1em;
    line-height: 1.3em;
  }
  .second__layer .kv__fx strong {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 95px;
    letter-spacing: 30px;
    line-height: 70px;
  }
}
@media (min-width: 1281px) {
  .second__layer .kv__fx {
    max-width: none;
  }
  .second__layer .kv__fx picture {
    max-width: none;
  }
}

/* -----------------------------------------------
breadcrumb
----------------------------------------------- */
.breadcrumb__wrap {
  position: relative;
}
.breadcrumb__wrap:not(.second__layer) {
  background: #f5eee9;
}
.second__layer .breadcrumb__wrap {
  background: none;
}

.breadcrumb__wrap ol {
  display: flex;
  flex-wrap: wrap;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: normal;
}
.breadcrumb__wrap ol a span {
  text-decoration: underline;
}
.breadcrumb__wrap ol li:not(:last-child) > *::after {
  content: "　＞　 ";
}

@media (max-width: 786px) {
  .breadcrumb__wrap {
    display: none;
    width: 92%;
    font-size: 10px;
  }
}

@media (min-width: 787px) {
  .breadcrumb__wrap {
    padding-top: 25px;
    font-size: 11px;
  }

  .second__layer .breadcrumb__wrap {
    max-width: 1280px;
    padding-top: 19px;
    margin-inline: auto;
  }
  .second__layer .breadcrumb__wrap .inner__wrap {
    margin-right: 0;
    max-width: 973px;
    padding: 0;
    width: 76.0156%;
  }
}

/* -----------------------------------------------
#about__wrap
----------------------------------------------- */

#about__wrap {
  position: relative;
}
#about__wrap .about__inner {
  margin-inline: auto;
}
.about__logo {
  display: block;
  margin-inline: auto;
}
.about__cap > strong {
  display: block;
}
.about__cap .tel__wrap dl {
  color: #9d8f71;
}
.tel__wrap dl dt {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.tel__wrap dl dt strong {
  border: 1px solid #9d8f71;
}
.tel__wrap dl dd strong {
  color: #9d8f71;
  font-family: "Kaisei Decol", serif;
  font-weight: normal;
  display: block;
  line-height: 1;
}
.about__link ul li {
  color: #9d8f71;
  background: url(../img/common/icon_about_arrow.svg) 0 50% / contain no-repeat;
  padding-left: 20px;
}
.about__link ul li a {
  text-decoration: underline;
}

@media (max-width: 786px) {
  #about__wrap {
    padding-top: 32px;
    padding-bottom: 47px;
  }
  .about__img {
    margin-bottom: 11.33%;
  }
  .about__logo {
    width: 18.5%;
    height: auto;
    margin-bottom: 37%;
  }
  .about__cap {
    text-align: center;
    width: 86.67%;
    margin-inline: auto;
  }
  .about__cap > strong {
    border-bottom: 1px solid #000;
    font-size: var(--fs-23);
    font-weight: normal;
    line-height: 2.3em;
    letter-spacing: 6.9px;
    margin-bottom: 2.4%;
  }
  .about__cap .address__wrap {
    margin-bottom: 8.6%;
  }
  .about__cap .address__wrap p.address {
    font-size: var(--fs-15);
    line-height: 23px;
    letter-spacing: 2.25px;
    margin-bottom: 1%;
  }
  .about__cap .address__wrap p.traffic {
    font-size: var(--fs-13);
    line-height: 18.743px;
    letter-spacing: 1.95px;
  }
  .tel__wrap dl dt {
    justify-content: center;
  }
  .tel__wrap dt {
    margin-bottom: 0;
  }
  .tel__wrap dt strong {
    font-size: var(--fs-13);
    line-height: 20px;
    letter-spacing: 0.39px;
    padding-inline: 0.4em;
    min-width: 104px;
  }
  .tel__wrap dt span {
    font-size: var(--fs-13);
    line-height: 19.681px;
  }
  .tel__wrap dd {
    line-height: 1;
  }
  .tel__wrap dd strong {
    font-size: var(--fs-35);
    margin-bottom: 1.4%;
  }
  .about__cap span.att {
    font-size: var(--fs-13);
    line-height: 19px;
    display: inline-block;
    text-indent: -1em;
    padding-left: 1em;
  }
  .tel__wrap dd p {
    font-size: var(--fs-15);
    line-height: 19.681px;
    letter-spacing: 0.45px;
  }
  .address__wrap + .tel__wrap {
    margin-bottom: 6.8%;
  }
  .facility__list {
    background: #f1eadb;
    margin-bottom: 11%;
    padding: 15px;
    text-align: left;
  }
  .facility__list p i {
    letter-spacing: 7.5px;
  }
  .facility__list p {
    font-size: var(--fs-15);
    line-height: 24px;
    margin-bottom: 1.2%;
  }
  .facility__list + .tel__wrap {
    margin-bottom: 18.4%;
  }
  .facility__list + .tel__wrap dt {
    margin-bottom: 1.8%;
  }
  .facility__list + .tel__wrap dt strong {
    letter-spacing: 0.39px;
    padding-inline: 0.3em;
  }
  .facility__list + .tel__wrap dt span {
    letter-spacing: -0.65px;
  }
  .facility__list + .tel__wrap dd strong {
    margin-bottom: 1.8%;
  }
  .facility__list + .tel__wrap dd .att + .att {
    margin-top: 0.8%;
  }
  .tel__wrap + .tel__wrap {
    margin-bottom: 8.4%;
  }
  .tel__wrap + .tel__wrap dt {
    margin-bottom: 1.2%;
  }
  .tel__wrap + .tel__wrap dd strong {
    margin-bottom: 1.6%;
  }

  .about__link {
    width: 82.67%;
    margin-inline: auto;
  }

  .about__link {
    grid-area: about__link;
    text-align: center;
  }
  .about__link p {
    font-size: var(--fs-15);
    line-height: 23px;
    letter-spacing: 1.5px;
    margin-bottom: 5%;
  }
  .about__link ul {
    display: inline-block;
  }
  .about__link ul li {
    background-size: 0.8em auto;
    font-size: var(--fs-13);
    line-height: 20.899px;
    letter-spacing: 2.059px;
    text-align: left;
  }
  .about__link ul li:not(:last-child) {
    margin-bottom: 3.4%;
  }
}

@media (min-width: 787px) {
  #about__wrap {
    padding-top: 180px;
    padding-bottom: 56px;
  }
  #about__wrap .about__inner {
    max-width: 1280px;
    /* max-width: 760px; */
  }

	.about__inner {
		position: relative;
	}

  .about__fx {
    display: grid;
    grid-template-columns: 59.375% 40.625%;
    grid-template-rows: min-content min-content min-content;
    grid-auto-columns: 1fr;
    gap: 0px 6.4%;
    grid-auto-flow: row;
    grid-template-areas:
      "about__img about__cap"
      "about__logo about__logo"
      "about__link about__link";
  }

  .about__img {
    grid-area: about__img;
  }

  .about__cap {
    grid-area: about__cap;
  }
  .about__cap > strong {
    font-size: 40px;
    font-weight: normal;
    line-height: 1;
    letter-spacing: 12px;
    margin-bottom: 22px;
  }
  .about__cap .address__wrap {
    margin-bottom: 30px;
  }
  .about__cap .address__wrap p.address {
    font-size: 17px;
    line-height: 25px;
    letter-spacing: 2.55px;
    margin-bottom: 10px;
  }
  .about__cap .address__wrap p.traffic {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 2.25px;
  }
  .tel__wrap dt {
  }
  .tel__wrap dt strong {
    font-size: 15px;
    padding-inline: 0.62em;
    line-height: 23px;
  }
  .tel__wrap dt span {
    font-size: 13px;
  }
  .tel__wrap dd {
    line-height: 1;
  }
  .tel__wrap dl dd strong {
    font-size: 41px;
    margin-bottom: 3px;
  }
  .about__cap span.att {
    font-size: 10px;
    font-weight: 700;
    line-height: 15px;
    display: block;
  }
  .tel__wrap dd p {
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0.48px;
  }
  .tel__wrap dd p a {
    text-decoration: underline;
  }

  .tel__wrap + .tel__wrap {
    margin-bottom: 25px;
  }

  .tel__wrap + .tel__wrap dl dd strong {
    margin-bottom: 0;
  }

  .address__wrap + .tel__wrap {
    margin-bottom: 25px;
  }
  .facility__list {
    margin-bottom: 31px;
    max-width: 312px;
  }
  .facility__list p i {
    letter-spacing: 8.5px;
  }
  .facility__list p {
    font-size: 17px;
    line-height: 25px;
  }

  .about__logo {
    grid-area: about__logo;
    width: 95px;
    height: 386px;
    margin-block: 268px 188px;
  }

  .about__link {
    grid-area: about__link;
    text-align: center;
    padding-top: 24px;
  }
  .about__link p {
    font-size: 19px;
    line-height: 35px;
    letter-spacing: 2.85px;
    margin-bottom: 30px;
  }
  .about__link ul {
    display: inline-block;
  }
  .about__link ul li {
    background-size: 0.8em auto;
    font-size: 16px;
    line-height: 35px;
    letter-spacing: 2.4px;
    text-align: left;
  }
  .about__link ul li a {
  }
}
@media (min-width: 1281px) {
  #about__wrap .about__inner {
    max-width: none;
  }
}

/* -----------------------------------------------
anc__btn__list
----------------------------------------------- */
.anc__btn__list__wrap {
}
.anc__btn__list__wrap ul.anc__btn__list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-inline: auto;
}
.anc__btn__list li {
}
.anc__btn__list li a {
  display: block;
  text-align: center;
}
.anc__btn__list a div {
}
.anc__btn__list div > * {
  display: block;
}
.anc__btn__list div em::after {
  content: "";
  background: url(../img/common/icon-anc-arrow.svg) 50% / contain no-repeat;
  position: absolute;
  top: 50%;
  aspect-ratio: 18 / 10;
}
.anc__btn__list div em {
  position: relative;
}
.anc__btn__list div span {
  color: #dfd9d9;
  font-family: "Kaisei Decol", serif;
  font-weight: 400;
  font-style: normal;
  border-top: 1px solid #000;
}
@media (max-width: 786px) {
  .anc__btn__list div em {
    line-height: 32px;
    letter-spacing: -1.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
  }
  .anc__btn__list div em::after {
    display: block;
    width: var(--fs-10-5);
    height: auto;
    right: 2%;
  }

  .anc__btn__list div span {
    line-height: 32px;
    letter-spacing: 1.5px;
  }
  .anc__btn__list.triple__btn {
    max-width: 840px;
  }
  .anc__btn__list.triple__btn li {
    width: 29.58%;
    max-width: 240px;
  }
  .anc__btn__list.triple__btn div em {
    font-size: var(--fs-15);
    padding-right: 1em;
  }
  .anc__btn__list.triple__btn div span {
    font-size: var(--fs-15);
  }
  .anc__btn__list.quad__btn {
    flex-wrap: wrap;
  }
  .anc__btn__list.quad__btn li {
    width: 29.58%;
    max-width: 240px;
    margin-bottom: 3.6%;
  }
  .anc__btn__list.quad__btn div em {
    font-size: var(--fs-13);
    line-height: 29px;
  }
  .anc__btn__list.quad__btn div span {
    font-size: var(--fs-12);
    line-height: 15px;
    padding-top: 5.6%;
  }
}

@media (min-width: 787px) {
  .anc__btn__list__wrap .inner__wrap {
  }
  .anc__btn__list div em {
    font-size: 22px;
    line-height: 62px;
    letter-spacing: 4.4px;
    transition: opacity 0.3s;
  }
  .anc__btn__list li a:hover em {
    opacity: 0.5;
  }
  .anc__btn__list div em::after {
    width: 18px;
    height: auto;
    right: 6%;
    transform: translateY(-25%);
  }
  .anc__btn__list div span {
    font-size: 20px;
    line-height: 50px;
    letter-spacing: 2px;
  }
  .anc__btn__list.triple__btn {
    width: 100%;
    max-width: 840px;
  }
  .anc__btn__list.quad__btn {
    width: 100%;
    max-width: 792px;
    flex-wrap: wrap;
    justify-content: flex-start !important;
  }
  .anc__btn__list.triple__btn li {
    width: 28.572%;
    max-width: 240px;
  }
  .anc__btn__list.quad__btn li:not(:nth-child(4n)) {
    margin-right: 3.368%;
  }
  .anc__btn__list.quad__btn li {
    width: 22.474%;
    max-width: 178px;
    margin-bottom: 23px;
  }
  .anc__btn__list.quad__btn div span {
    line-height: 20px;
    padding-top: 14px;
  }
}

/* blur__img */
.blur__img img {
  opacity: 0;
  filter: blur(1em) brightness(1.85);
  transition:
    opacity 1.5s 0.2s,
    filter 2.5s 0.2s,
    transform 3.5s 0.2s;
}
.blur__img.js__inview__active img {
  opacity: 1;
  filter: blur(0) brightness(1);
}

/* fdin__img */
.fdin__img img {
  opacity: 0;
  filter: brightness(1.85);
  transition:
    opacity 1s 0.2s,
    filter 1.5s 0.2s;
}
.fdin__img.js__inview__active img {
  opacity: 1;
  filter: brightness(1);
}

/* blur__section */
.blur__section {
  opacity: 0;
  filter: blur(1em) brightness(1.85);
  transition:
    opacity 1.5s 0.2s,
    filter 2.5s 0.2s,
    transform 3.5s 0.2s;
}
.blur__section.js__inview__active {
  opacity: 1;
  filter: blur(0) brightness(1);
}

.btn_search a {
	width: 72px;
  height: 72px;
  background: rgba(97, 89, 74, 0.7);
  display: block;
  position: absolute;
  z-index: 200;
  border: 0;
  padding: 0;
  top: 76px;
  right: 50px;
}

@media (max-width: 787px) {
.btn_search a {
    top: 68px;
    left: 75%;
    width: 57px;
    height: 57px;
}
}
