@charset "UTF-8";
[data-ani] {
  --ani-delay: 0s;
  --ani-duration: 1s;
  pointer-events: none;
}
[data-ani].is-animated-done {
  pointer-events: auto;
}

.ani-width {
  width: 0;
  transition: width var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay);
}
.ani-width.is-animated {
  width: 100%;
}

.ani-fade, .ani-fade-left, .ani-fade-right, .ani-fade-down-full, .ani-fade-down, .ani-fade-up {
  opacity: 0;
  transition: opacity var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay), transform var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay);
}
.ani-fade.is-animated, .is-animated.ani-fade-left, .is-animated.ani-fade-right, .is-animated.ani-fade-down-full, .is-animated.ani-fade-down, .is-animated.ani-fade-up {
  opacity: 1;
}
.ani-fade-up {
  transform: translateY(30px);
}
.ani-fade-up.is-animated {
  transform: translateY(0);
}
.ani-fade-down {
  transform: translateY(-10px);
}
.ani-fade-down.is-animated {
  transform: translateY(0);
}
.ani-fade-down-full {
  transform: translateY(-100%);
}
.ani-fade-down-full.is-animated {
  transform: translateY(0);
}
.ani-fade-right {
  transform: translateX(-10px);
}
.ani-fade-right.is-animated {
  transform: translateX(0);
}
.ani-fade-left {
  transform: translateX(10px);
}
.ani-fade-left.is-animated {
  transform: translateX(0);
}

.ani-scale {
  transform: scale(0.6);
  transform-origin: center;
  transition: opacity var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay), transform var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay);
}
.ani-scale.is-animated {
  transform: scale(1);
}

.ani-zoom {
  transform: scale(1.2);
  transform-origin: center;
  transition: transform var(--ani-duration) cubic-bezier(0.07, 0.09, 0.09, 0.62) var(--ani-delay);
}
.ani-zoom.is-animated {
  transform: scale(1);
}

.ani-clip, .ani-clip-full {
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  transition: all var(--ani-duration) ease-in-out var(--ani-delay);
  will-change: clip-path;
}
@media (max-width: 768px) {
  .ani-clip-full {
    transition: all calc(var(--ani-duration) / 2) cubic-bezier(0.07, 0.09, 0.09, 0.62) calc(var(--ani-delay) / 2);
  }
}
.ani-clip.is-animated, .is-animated.ani-clip-full {
  opacity: 1;
  clip-path: inset(0);
}

/* ==========================================================
 html5 elements
========================================================== */
article,
aside,
figure,
figcaption,
footer,
header,
nav,
section,
main {
  display: block;
}

/* ==========================================================
   reseting
========================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  border: 0;
  padding: 0;
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: auto;
  margin-inline-end: auto;
}

img {
  vertical-align: top;
  line-height: 1;
  width: 100%;
}

label {
  cursor: pointer;
}

::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

a:hover img {
  opacity: 1;
}

em {
  font-style: normal;
}

strong {
  font-weight: normal;
}

/* ==========================================================
base style
========================================================== */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media (max-width: 768px) {
  html {
    overflow: auto;
  }
  html.is-open {
    height: auto;
    overflow: hidden;
  }
}

body {
  font-family: "A1明朝", "A1 Mincho", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "Yu Mincho", "游明朝", "MS P明朝", "MS PMincho", serif;
  font-weight: 500;
  font-style: normal;
  width: 100%;
  font-size: clamp(14px, 13.037037037px + 0.2469135802vw, 16px);
  line-height: 1.8;
  letter-spacing: 0.015em;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  color: #231815;
  overflow-x: hidden;
  min-width: 100%;
  opacity: 0;
}
body.js-ready {
  opacity: 1;
}

/* ==========================================================
 other resets
========================================================== */
i,
em {
  font-style: normal;
}

i {
  display: inline-block;
}

/* ------------------------------------------------------------
	ヘッダー ※既存の設定であったline-height: 1;を追加しています・・
------------------------------------------------------------ */
.g-header {
  width: 100%;
  height: 65px;
  display: flex;
  justify-content: space-between;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9900;
  backdrop-filter: blur(10px) brightness(150%) contrast(100%);
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .g-header {
    max-width: 1024px;
  }
  .g-header .g-nav-item .e-link {
    font-size: 1.1rem;
    padding: 25px 7px;
  }
}
@media (max-width: 768px) {
  .g-header {
    width: 100%;
    min-width: 0;
    height: 60px;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 4000;
  }
}
.g-header-logo {
  text-align: center;
  width: 130px;
  min-width: 130px;
  padding: 10px 20px 0;
}
@media (max-width: 768px) {
  .g-header-logo {
    width: 88px;
    min-width: 88px;
    padding: 8px 0 0 5px;
  }
  .g-header-logo .e-img {
    width: auto;
  }
  .g-header-logo .e-link {
    width: auto;
  }
  .g-header-logo .e-link .e-img {
    width: 90%;
  }
}
.g-header-title {
  padding: 5px 0 0;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .g-header-title {
    height: auto;
    float: none;
    display: inline-block;
    position: relative;
    top: auto;
    left: auto;
  }
}
.g-header-name {
  padding: 42px 0 0 20px;
  display: table-cell;
  transform-origin: left center;
  transform: scaleX(0.9);
}
@media (max-width: 768px) {
  .g-header-name {
    width: calc(100% - 105px);
    padding: 25px 0 0 10px;
  }
}
.g-header-name .e-link {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  position: relative;
}
@media (max-width: 768px) {
  .g-header-name .e-link {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
  .g-header-name .e-link:after {
    width: 150px;
    background-size: 100% auto;
    top: -15.5px;
  }
}
.g-header .g-nav {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .g-header .g-nav {
    text-align: left;
    height: auto;
    padding: 20px;
  }
}
.g-header .g-nav-wrap {
  padding: 6px 20px 6px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 768px) {
  .g-header .g-nav-wrap {
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    position: relative;
    width: 100%;
    justify-content: flex-start;
  }
  .g-header .g-nav-wrap:before {
    content: "";
    width: 1px;
    height: 100%;
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    position: absolute;
    bottom: 0;
    left: 50%;
  }
}
.g-header .g-nav-item {
  position: relative;
}
@media (max-width: 768px) {
  .g-header .g-nav-item {
    width: 50%;
    height: auto;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }
}
.g-header .g-nav-item:before {
  content: "";
  width: 1px;
  height: 15px;
  background: rgba(0, 0, 0, 0.1);
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media (max-width: 768px) {
  .g-header .g-nav-item:before {
    background: none;
    content: none;
  }
}
.g-header .g-nav-item:first-child:before {
  content: none;
}
.g-header .g-nav-item .c-new:after {
  content: "NEW";
  color: #fff;
  background: #924848;
  font-size: 1.2rem;
  padding: 1px;
  display: block;
  top: 8px;
  left: 20%;
  margin: 0 auto;
  width: 60%;
  text-align: center;
  position: absolute;
  letter-spacing: 0.1rem;
}
@media (max-width: 768px) {
  .g-header .g-nav-item .c-new:after {
    left: auto;
    right: 10px;
    top: 35%;
    width: 40px;
  }
}
.g-header .g-nav-item a {
  color: #231815;
  font-size: 1.2rem;
  line-height: 1;
  text-decoration: none;
  letter-spacing: 0;
  padding: 0 10px;
  transform: scale(0.005deg);
}
@media (max-width: 768px) {
  .g-header .g-nav-item a {
    color: #fff;
    font-size: 1.2rem;
    height: auto;
    padding: 15px 0 15px 15px;
    display: block;
  }
}
.g-header .g-nav-item--off > * {
  pointer-events: none;
  opacity: 0.2;
}
@media (max-width: 768px) {
  .g-header .g-nav-news-button {
    display: none;
  }
}
@media (max-width: 768px) {
  .g-header .g-nav .is-blank {
    position: relative;
  }
  .g-header .g-nav .is-blank:before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 12px;
    background-image: url(../../img/common/icon-window-01.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    background-repeat: no-repeat;
    right: 10px;
    top: 43%;
    background-color: transparent;
    left: auto;
  }
}
.g-header-inquiry {
  text-align: center;
  text-shadow: 0px 1px 1px #000000;
  display: flex;
}
@media (max-width: 768px) {
  .g-header-inquiry {
    display: none;
  }
}
.g-header-inquiry-item {
  display: block;
  padding: 42px 0 10px;
  font-size: 1.2rem;
  text-decoration: none;
  position: relative;
  color: #fff;
}
.g-header-inquiry-item:visited {
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .g-header-inquiry-item {
    display: inline-block;
    padding: 43px 7px 12px 7px;
    font-size: 1rem;
    text-decoration: none;
    position: relative;
    color: #fff;
  }
}
.g-header-inquiry-item .is-pamphlet {
  position: relative;
}
.g-header-inquiry-item .is-pamphlet:before {
  content: "";
  width: 32px;
  height: 24px;
  display: inline-block;
  background: url(../../img/common/header-pamphlet.png) no-repeat center/100% auto;
  top: -30px;
  left: 50%;
  transform: translate(-50%, 0);
  position: absolute;
}
.g-header-inquiry-item .is-catalog {
  position: relative;
}
.g-header-inquiry-item .is-catalog:before {
  content: "";
  width: 21px;
  height: 23px;
  display: inline-block;
  background: url(../../img/common/header_catalog.png) no-repeat center/100% auto;
  top: -30px;
  right: 35%;
  position: absolute;
}
.g-header-inquiry-item .is-visit {
  position: relative;
}
.g-header-inquiry-item .is-visit:before {
  content: "";
  width: 21px;
  height: 21px;
  display: inline-block;
  background: url(../../img/common/header_visit.png) no-repeat center/100% auto;
  top: -30px;
  right: 17px;
  position: absolute;
}
.g-header-inquiry-item .is-guide {
  position: relative;
}
.g-header-inquiry-item .is-guide:before {
  content: "";
  width: 21px;
  height: 21px;
  display: inline-block;
  background: url(../../img/common/header-guide.png) no-repeat center/100% auto;
  top: -30px;
  right: 20px;
  position: absolute;
}
.g-header-inquiry-sp {
  display: none;
}
@media (max-width: 768px) {
  .g-header-inquiry-sp {
    display: inline-flex;
    float: right;
    margin: 0 60px 0 0px;
  }
  .g-header-inquiry-sp li {
    width: 80px;
    height: 60px;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    padding: 10px 0;
  }
  .g-header-inquiry-sp li a {
    text-decoration: none;
  }
  .g-header-inquiry-sp li .e-link {
    font-size: 10px;
    display: block;
    text-align: center;
    color: #fff;
  }
  .g-header-inquiry-sp li.is-catalog {
    position: relative;
    background: transparent;
  }
  .g-header-inquiry-sp li.is-catalog:before {
    content: "";
    width: 15px;
    height: 16px;
    display: block;
    background: url(../../img/common/header_catalog-sp.png) no-repeat center/100% auto;
  }
  .g-header-inquiry-sp li.is-visit {
    position: relative;
  }
  .g-header-inquiry-sp li.is-visit:before {
    content: "";
    width: 17px;
    height: 17px;
    display: inline-block;
    background: url(../../img/common/header_visit-sp.png) no-repeat center/100% auto;
    top: 10px;
    right: 15px;
    position: absolute;
  }
  .g-header-inquiry-sp li.is-tell {
    position: relative;
  }
  .g-header-inquiry-sp li.is-tell:before {
    content: "";
    width: 21px;
    height: 21px;
    display: inline-block;
    background: url(../../img/common/header_inquiry-sp.png) no-repeat center/100% auto;
    top: 9px;
    right: 26%;
    position: absolute;
  }
  .g-header-inquiry-sp li.is-pamphlet {
    position: relative;
  }
  .g-header-inquiry-sp li.is-pamphlet:before {
    content: "";
    width: 20px;
    height: 14px;
    display: block;
    background: url(../../img/common/header-pamphlet-sp.png) no-repeat center/100% auto;
  }
  .g-header-inquiry-sp li span {
    transform: scale(0.93);
  }
}
@media (max-width: 768px) {
  .g-header-inner {
    width: 100%;
    height: calc(100vh - 60px);
    padding: 0;
    float: none;
    background: rgba(20, 45, 45, 0.9);
    position: fixed;
    top: 60px;
    left: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-30px);
    transition: 0.3s all ease-in-out;
    z-index: 9000;
  }
  .g-header-inner.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  .g-header-inner:before {
    display: none;
  }
  .g-header-inner:after {
    display: none;
  }
  .g-header-inner-scroll {
    width: 100%;
    height: 100%;
    padding: 0 0 40px;
    position: absolute;
    overflow-y: scroll;
  }
  .g-header-inner-close {
    color: #fff;
    text-align: center;
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 15px 0;
    display: block !important;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #d4c9b3;
    position: relative;
  }
  .g-header-inner-close:after {
    content: "";
    width: 18px;
    height: 18px;
    display: inline-block;
    background: url(../../img/common/icon-close-01.png) no-repeat center/100% auto;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
  }
  .g-header-inner .g-request {
    text-align: center;
    width: calc(100% - 40px);
    height: auto;
    margin: 0 auto 40px;
    padding: 20px 20px 10px 20px;
    background: #fff;
  }
  .g-header-inner .g-request-tel-title {
    margin: 0;
    padding: 0;
  }
  .g-header-inner .g-request-tel-title .e-title {
    font-size: 1.4rem;
    margin: 0 0 10px;
  }
  .g-header-inner .g-request-tel-number .e-link {
    color: #a11316;
  }
  .g-header-inner .g-request-tel .e-desc {
    font-size: 1.2rem;
    text-align: center;
    padding: 10px 0 0;
    display: block;
    position: relative;
    bottom: auto;
    right: auto;
  }
  .g-header-inner .g-request-button-wrap {
    width: 100%;
    padding: 30px 0 10px;
    display: block;
  }
  .g-header-inner .g-request-sns-button {
    display: none;
  }
  .g-header-inner .g-request-button-item {
    width: 100%;
    margin: 0 0 10px;
  }
  .g-header-inner .g-request-button-item .e-link {
    font-size: 1.4rem;
    width: 100%;
  }
  .g-header-inner .g-request-button-item.is-map .e-link {
    padding: 10px 0;
  }
}
@media (max-width: 768px) {
  .g-header-nav_button {
    width: 60px;
    height: 60px;
    background: #142d2a;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    border-right: 2px solid #b28f31;
    border-left: 2px solid #b28f31;
  }
  .g-header-nav_button:before {
    content: "";
    width: 60px;
    height: 20px;
    display: inline-block;
    background: url(../../img/common/header_menu_1.png) no-repeat center/100% auto;
    position: absolute;
    bottom: -14px;
    right: -2px;
    transition: 0.3s;
  }
  .g-header-nav_button:after {
    content: "MENU";
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    letter-spacing: 0.1em;
    width: 100%;
    display: inline-block;
    position: absolute;
    bottom: 10px;
    left: 1px;
  }
  .g-header-nav_button .e-line {
    display: block;
    width: 35px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-60%, -7px);
    transition: all 0.2s;
    z-index: 10;
  }
  .g-header-nav_button .e-line.is-top {
    margin-top: -7px;
  }
  .g-header-nav_button .e-line.is-bottom {
    margin-top: 7px;
  }
}

.is-pamphlet_btn {
  width: 190px;
  background: linear-gradient(to bottom, #916633 0%, #78552a 100%);
}
@media screen and (max-width: 1024px) {
  .is-pamphlet_btn {
    width: 160px;
  }
}

.is-catalog_btn {
  width: 100px;
  background: #661a1a;
}
@media screen and (max-width: 1024px) {
  .is-catalog_btn {
    width: 90px;
  }
}

.is-visit_btn {
  width: 100px;
  background: linear-gradient(to bottom, #16437d 0%, #0e213e 100%);
}
@media screen and (max-width: 1024px) {
  .is-visit_btn {
    width: 70px;
  }
}

.is-guide_btn {
  width: 100px;
  background: #70664b;
}
@media screen and (max-width: 1024px) {
  .is-guide_btn {
    width: 70px;
  }
}

@media (max-width: 768px) {
  .is-guide {
    position: relative;
    background: transparent;
  }
}

@media (max-width: 768px) {
  .is-open .g-header-nav_button {
    background: #142d2a;
  }
  .is-open .g-header-nav_button:before {
    transform: translateY(-10px);
    visibility: hidden;
    opacity: 0;
  }
  .is-open .g-header-nav_button:after {
    content: "CLOSE";
  }
  .is-open .g-header-nav_button .e-line.is-top {
    margin-top: auto;
    transform: translate(-60%, -7px) rotate(-155deg);
  }
  .is-open .g-header-nav_button .e-line.is-center {
    opacity: 0;
  }
  .is-open .g-header-nav_button .e-line.is-bottom {
    margin-top: auto;
    transform: translate(-60%, -7px) rotate(155deg);
  }
}

@media (max-width: 768px) {
  .g-Body {
    font-size: 1.4rem;
    min-width: 0;
    background: #fff;
    overflow: hidden;
  }
}
@media (max-width: 768px) {
  .g-Body__loginOn .g-header-inquiry-sp {
    margin-right: 60px;
  }
  .g-Body__loginOn .g-header-inquiry-sp li .e-link {
    color: #fff;
    font-size: 1rem;
    white-space: nowrap;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    align-content: flex-end;
    height: 60px;
    padding: 5px 3px 10px 3px;
  }
  .g-Body__loginOn .g-header-inquiry-sp li.is-visit:before {
    right: 16px;
  }
  .g-Body__loginOn .g-header-inquiry-sp li.is-tell:before {
    right: 14px;
  }
  .g-Body__loginOn .g-header-nav_button {
    width: 60px;
    border-bottom: 0;
  }
  .g-Body__loginOn .g-header-nav_button:before {
    width: 60px;
    height: 12px;
    background-size: 100% 100%;
    bottom: -12px;
  }
}

@media (max-width: 768px) {
  .is-Login .g-header-inquiry-sp li.is-pamphlet {
    display: none;
  }
}

@media (max-width: 768px) {
  .is-video .l-video-box {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .l-specialMovie__player {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .l-loginEnter {
    margin: 30px -10px -30px;
    background-size: cover;
    display: block;
  }
  .l-loginEnter > div:nth-child(1) {
    padding-right: 0;
  }
  .l-loginEnter em {
    font-size: 1.7rem;
    line-height: 1.5;
    text-align: center;
  }
  .l-loginEnter small {
    font-size: 1rem;
    padding: 0 30px;
  }
  .l-loginEnter__button {
    padding: 20px 30px 0;
  }
  .l-loginEnter__button a {
    font-size: 1.4rem;
    width: 100%;
    padding: 1em 2em 1em 1em;
  }
}

@media (max-width: 768px) {
  .g-mobilemenu {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9000;
    backdrop-filter: blur(10px) brightness(100%) contrast(100%);
    line-height: 1;
  }
  .g-mobilemenu:after {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    background: rgba(0, 0, 0, 0.15);
    position: absolute;
    top: -1px;
    left: 0;
  }
  .g-mobilemenu__items {
    display: flex;
  }
  .g-mobilemenu__item {
    width: 100%;
    border-left: 1px solid rgba(0, 0, 0, 0.15);
  }
  .g-mobilemenu__item--tel {
    border-left: 0;
  }
  .g-mobilemenu__item--tel a {
    background: url("../../img/common/mobile-menu-01.png") no-repeat left 50% top 11px/22px auto;
  }
  .g-mobilemenu__item--shiryou a {
    background: url("../../img/common/mobile-menu-02.png") no-repeat left 50% top 10px/23px auto;
  }
  .g-mobilemenu__item--raijyou a {
    background: url("../../img/common/mobile-menu-03.png") no-repeat left 50% top 11px/20px auto;
  }
  .g-mobilemenu__item--map a {
    background: url("../../img/common/mobile-menu-04.png") no-repeat left 50% top 10px/21px auto;
  }
  .g-mobilemenu__item a {
    color: #0b1c35;
    text-decoration: none;
    padding: 46px 0 12px;
    display: block;
  }
  .g-mobilemenu__item em {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0em;
    text-align: center;
    display: block;
    font-style: normal;
  }
  .g-mobilemenu__item:nth-child(2) em, .g-mobilemenu__item:nth-child(3) em {
    letter-spacing: -0.05em;
    transform: scale(0.9, 1);
  }
}

/* ------------------------------------------------------------
	フッター ※既存の設定であったline-height: 1;を追加しています・・
------------------------------------------------------------ */
.g-footer {
  opacity: 1;
  background: #fff;
  font-size: 1.2rem;
  position: relative;
  z-index: 20;
  line-height: 1;
}
@media (max-width: 1200px) {
  .g-footer {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 768px) {
  .g-footer {
    min-width: 0;
    position: relative;
    padding: 20px 0 20px 0;
  }
}
.g-footer-inner {
  width: 100%;
  padding: 0 60px;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  .g-footer-inner {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .g-footer-inner {
    padding: 0 15px;
    display: none;
  }
}
.g-footer-nav_button {
  width: 100px;
  height: 100px;
  background: #bd9d6d;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 200;
  transition: all 0.2s;
  cursor: pointer;
  display: none;
}
.g-footer-nav_button:after {
  content: "MENU";
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: 0.1em;
  width: 100%;
  display: inline-block;
  position: absolute;
  bottom: 25px;
  left: 0;
}
.g-footer-nav_button .e-line {
  display: block;
  width: 50px;
  height: 3px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -7px);
  transition: all 0.2s;
  z-index: 10;
}
.g-footer-nav_button .e-line.is-top {
  width: 40px;
  margin-top: -10px;
}
.g-footer-nav_button .e-line.is-bottom {
  width: 40px;
  margin-top: 10px;
}
.g-footer-menu {
  margin: 0 0 25px;
  padding: 30px 0 0;
}
@media (max-width: 768px) {
  .g-footer-menu {
    margin: 0;
    padding: 60px 0 20px;
  }
}
.g-footer-menu-title {
  font-size: 1.6rem;
  font-weight: 700;
  vertical-align: -0.5em;
  letter-spacing: 0.125em;
  padding: 0 30px 0 0;
  display: inline-block;
}
@media (max-width: 768px) {
  .g-footer-menu-title {
    text-align: center;
    padding: 0 0 20px;
    display: block;
  }
}
.g-footer-request-button-wrap {
  letter-spacing: -0.4em;
  display: inline-block;
}
@media (max-width: 768px) {
  .g-footer-request-button-wrap {
    width: 100%;
    margin: 0 0 20px;
  }
}
.g-footer-request-button-item {
  display: inline-block;
}
@media (max-width: 768px) {
  .g-footer-request-button-item {
    width: 50%;
  }
}
.g-footer-request-button-item .e-link {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-shadow: 0 1px 0 rgb(0, 0, 0);
  width: 160px;
  height: 30px;
  padding: 9px 0 0;
  display: block;
  box-shadow: inset 0 0 5px 0 rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .g-footer-request-button-item .e-link {
    width: 100%;
  }
}
.g-footer-request-button-item.is-request .e-link {
  background-color: #b21d1d;
}
.g-footer-request-button-item.is-reservation .e-link {
  background-color: #1d83b2;
}
.g-footer-request-button-item.is-map .e-link {
  height: 30px;
  background: #999;
}
.g-footer .g-nav {
  width: 100%;
  margin: 0 0 30px;
}
.g-footer .g-nav-wrap {
  letter-spacing: -0.4em;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
  .g-footer .g-nav-wrap {
    border: 0;
  }
}
@media (max-width: 768px) {
  .g-footer .g-nav-wrap li:last-child,
  .g-footer .g-nav-wrap li:nth-child(9) {
    display: inline-block;
  }
}
.g-footer .g-nav-item {
  letter-spacing: 0;
  width: 9.9990001%;
  display: inline-block;
}
@media (max-width: 768px) {
  .g-footer .g-nav-item {
    width: 50%;
  }
}
.g-footer .g-nav-item--outline, .g-footer .g-nav-item--guide {
  display: none;
}
.g-footer .g-nav-item .e-link {
  color: #ddd;
  font-size: 1.3rem;
  text-align: center;
  text-decoration: none;
  padding: 15px 0;
  display: block;
  background: rgba(0, 0, 0, 0.5);
}
.g-footer-useful {
  display: table;
}
@media (max-width: 768px) {
  .g-footer-useful {
    display: block;
  }
}
.g-footer-useful:after {
  content: "";
  display: block;
  clear: both;
}
.g-footer-useful-title {
  width: 20%;
  padding: 20px 0 0 20px;
  border: 2px solid #b5a27c;
  display: table-cell;
  position: relative;
}
@media (max-width: 768px) {
  .g-footer-useful-title {
    width: 100%;
    padding: 20px 20px 60px;
    display: block;
  }
}
.g-footer-useful-title:after {
  content: "Useful information";
  font-family: "Crimson Text", serif;
  color: #000;
  font-size: 1.8rem;
  font-weight: 700;
  font-style: italic;
  text-align: right;
  letter-spacing: -0.025em;
  background: #b5a27c;
  width: calc(100% + 10px);
  margin: 0 -5px;
  padding: 5px 10px;
  display: inline-block;
  position: absolute;
  top: 80px;
  left: 0;
  transform: skewY(-5deg);
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .g-footer-useful-title:after {
    top: auto;
    bottom: 22.5px;
  }
}
.g-footer-useful-title .e-sub {
  color: #b5a27c;
  font-size: 1.3rem;
  margin: 0 0 5px;
  display: block;
}
.g-footer-useful-title .e-main {
  color: #b5a27c;
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
}
.g-footer-useful-wrap {
  letter-spacing: -0.4em;
  padding: 0 0 0 10px;
  display: table-cell;
}
@media (max-width: 768px) {
  .g-footer-useful-wrap {
    width: 100%;
    padding: 20px 0 40px;
    display: block;
  }
}
.g-footer-useful-item {
  letter-spacing: 0;
  width: calc(25% - 20px);
  margin: 0 0 0 20px;
  display: inline-block;
  border-bottom: 1px solid #3b3b3b;
}
@media (max-width: 768px) {
  .g-footer-useful-item {
    width: 100%;
    margin: 0;
  }
}
.g-footer-useful-item:nth-child(-n+4) {
  border-top: 1px solid #3b3b3b;
}
.g-footer-useful-item .e-link {
  color: #fff;
  font-size: 1.3rem;
  text-decoration: none;
  padding: 17px 0 17px 30px;
  display: block;
  position: relative;
}
@media (max-width: 768px) {
  .g-footer-useful-item .e-link {
    font-size: 1.2rem;
    padding: 12px 0 12px 30px;
  }
}
.g-footer-useful-item .e-link:before {
  content: "";
  width: 4px;
  height: 4px;
  display: inline-block;
  border: 4px solid transparent;
  border-left: 4px solid #b4b4b4;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  box-sizing: border-box;
}
.g-footer-info {
  margin: 30px -60px 0;
  background: #fff;
}
@media (max-width: 768px) {
  .g-footer-info {
    margin: 0 -15px;
  }
}
.g-footer-info:after {
  content: "";
  display: block;
  clear: both;
}
.g-footer-info-merchant-wrap {
  float: left;
  display: table;
}
@media (max-width: 768px) {
  .g-footer-info-merchant-wrap {
    letter-spacing: -0.4em;
    float: none;
    display: block;
  }
}
.g-footer-info-merchant-item {
  min-width: 247px;
  text-align: center;
  vertical-align: middle;
  display: table-cell;
  border-right: 1px solid #ddd;
}
@media (max-width: 768px) {
  .g-footer-info-merchant-item {
    letter-spacing: 0;
    width: 50%;
    display: inline-block;
    border: 0;
  }
  .g-footer-info-merchant-item:last-child {
    text-align: center;
    width: 100%;
    display: block;
  }
}
.g-footer-info-merchant-item .e-link {
  text-decoration: none;
  min-height: 100px;
  padding: 20px 25px 0;
  display: block;
}
@media (max-width: 768px) {
  .g-footer-info-merchant-item .e-link {
    min-height: 80px;
  }
}
.g-footer-info-merchant-item .e-caption {
  font-size: 1rem;
}
.g-footer-info-merchant-item:nth-child(2) .e-caption {
  margin: 0 0 13px;
}
.g-footer-info-merchant-item.is-hapia-link .e-link {
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: underline;
  padding-top: 45px;
}
.g-footer-info-tel {
  color: #000;
  padding: 20px 130px 0 30px;
  float: right;
  position: relative;
}
@media (max-width: 768px) {
  .g-footer-info-tel {
    text-align: center;
    padding: 20px 0 40px;
    display: block;
    float: none;
  }
}
.g-footer-info-tel:before {
  content: "";
  width: 20px;
  height: 100px;
  background: linear-gradient(to right, #ffffff 0%, #f4f4f4 100%);
  display: inline-block;
  position: absolute;
  top: 0;
  left: -20px;
}
.g-footer-info-tel-title {
  font-size: 1.2rem;
  letter-spacing: 0.075em;
  margin: 0 0 5px;
}
.g-footer-info-tel-number {
  color: #a11316;
  font-size: 3.4rem;
  letter-spacing: -0.025em;
  padding: 0 15px 0 35px;
  display: inline-block;
  background: url(../../img/common/icon-tel-01.png) no-repeat left 0 top 10px/31px auto;
}
.g-footer-info-tel-time {
  font-size: 1.1rem;
  line-height: 1.35;
  padding: 3px 0 0;
  display: inline-block;
}
@media (max-width: 768px) {
  .g-footer-info-tel-time {
    display: block;
  }
  .g-footer-info-tel-time br {
    display: none;
  }
}
.g-footer-info-tel .e-desc {
  font-size: 1rem;
  position: absolute;
  bottom: -16px;
  left: 30px;
}
@media (max-width: 768px) {
  .g-footer-info-tel .e-desc {
    padding: 10px 0 0;
    display: block;
    position: relative;
    bottom: auto;
    left: auto;
  }
}
.g-footer-pagetop {
  text-align: center;
  width: 80px;
  position: fixed;
  bottom: 50px;
  right: 0;
  z-index: 50;
  opacity: 0.8;
  transition: all 0.2s;
  filter: grayscale(100%);
}
@media (max-width: 768px) {
  .g-footer-pagetop {
    bottom: 80px;
    right: -10px;
  }
}
.g-footer-pagetop .e-link {
  display: block;
  margin-bottom: 15px;
  width: 54px;
}
.g-footer_container {
  background: #fff;
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  border-bottom: 1px solid #dddddd;
  padding: 20px 0px 20px 0;
}
@media (max-width: 768px) {
  .g-footer_container {
    display: block;
    border-bottom: none;
    padding: 0;
  }
}
.g-footer_container.is-menu {
  padding: 0;
}
.g-footer_container.is-canpany {
  text-align: center;
  border-bottom: none;
}
@media (max-width: 768px) {
  .g-footer_container.is-address {
    padding: 15px 0 0 0;
  }
}
.g-footer_recommend {
  letter-spacing: -0.5rem;
  margin: 0 -10px 0 0;
  width: 60%;
  float: right;
  overflow: hidden;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .g-footer_recommend {
    width: 55%;
  }
}
@media (max-width: 768px) {
  .g-footer_recommend {
    letter-spacing: -0.5rem;
    margin: 0;
    width: 100%;
    float: none;
    overflow: hidden;
  }
}
.g-footer_recommend li {
  display: inline-block;
  width: 33.3%;
  letter-spacing: 0.8px;
  padding: 0 10px 0 0;
  transition: all 0.2s;
}
@media (max-width: 960px) {
  .g-footer_recommend li {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .g-footer_recommend li {
    display: block;
    width: 100%;
    letter-spacing: 0.8px;
    padding: 0 0 10px 0;
  }
}
.g-footer_recommend li a {
  text-decoration: none;
  color: #fff;
}
.g-footer_recommend li:hover {
  opacity: 0.8;
}
.g-footer_recommend_item {
  font-size: 1.7rem;
  position: relative;
  padding: 20px;
  text-align: left;
}
.g-footer_recommend_item:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 12px;
  background-image: url(../../img/common/arrow_W.png);
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  background-repeat: no-repeat;
  right: 10.5%;
  top: 40%;
}
.g-footer_recommend_item:after {
  content: "";
  border: solid 1px #fff;
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
}
.g-footer_recommend_item.is-catalog {
  background: #63141e;
  background: linear-gradient(to right, #63141e 0%, #924848 50%, #63141e 100%);
  text-shadow: 0px 1px 1px #000000;
}
.g-footer_recommend_item.is-visit {
  background: #031d42;
}
.g-footer_recommend_item.is-guide {
  background: #605944;
  background: linear-gradient(to right, #605944 0%, #82775b 50%, #605944 100%);
  text-shadow: 0px 1px 1px #000000;
}
.g-footer_recommend__note {
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.35;
  text-align: center;
  margin: 0.75em 0 0;
  display: block;
}
@media (max-width: 768px) {
  .g-footer_recommend__note {
    font-size: 1.1rem;
  }
}
.g-footer_inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 768px) {
  .g-footer_inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    display: block;
  }
}
.g-footer_logo_hoc {
  display: inline-block;
  width: 70%;
}
@media (max-width: 768px) {
  .g-footer_item_hoc {
    width: 100%;
    display: block;
    color: #fff;
    background: #050f1e;
  }
}
@media (max-width: 768px) {
  .g-footer_item_hoc .footer-logo {
    width: 66%;
  }
}
@media (max-width: 768px) {
  .g-footer-credit li {
    padding-bottom: 10px;
  }
  .g-footer-credit li a {
    display: block;
    width: 100%;
    background: #050f1e;
    color: #fff;
    padding: 20px 10px;
    text-decoration: none;
  }
}
.g-footer .u-hide_media {
  display: none;
}

.f-footer_logo {
  width: auto;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .f-footer_logo {
    width: 100%;
    display: block;
    text-align: center;
  }
}
.f-footer_logo img {
  width: 20%;
}
.f-footer_logo p {
  display: inline-flex;
  padding: 10px 0px 0px 10px;
  font-size: 1.8rem;
  color: #b59a5b;
  font-weight: bold;
  letter-spacing: -0.1rem;
}
@media (max-width: 768px) {
  .f-footer_logo p {
    display: block;
    padding: 20px 0 15px 0;
    font-size: 1.8rem;
    color: #050f1e;
    font-weight: bold;
    border-top: 1px solid #050f1e;
    border-bottom: 1px solid #050f1e;
    margin: 0 0px 20px 0;
  }
}
.f-footer_menu {
  display: block;
  letter-spacing: -0.5rem;
  width: 100%;
  text-align: center;
}
@media (max-width: 768px) {
  .f-footer_menu {
    margin: 0 -10px 0px 0;
    text-align: left;
  }
}
.f-footer_menu li {
  display: inline-block;
  width: 10%;
  letter-spacing: -0.5px;
  text-align: center;
  position: relative;
  letter-spacing: -0.05rem;
}
@media (max-width: 768px) {
  .f-footer_menu li {
    display: inline-block;
    width: 50%;
    letter-spacing: 0.8px;
    text-align: left;
    position: relative;
  }
}
.f-footer_menu li:before {
  content: "";
  width: 1px;
  height: 15px;
  background: #ddd;
  display: inline-block;
  position: absolute;
  bottom: 18px;
  left: 1px;
}
@media (max-width: 768px) {
  .f-footer_menu li:before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 12px;
    background-image: url(../../img/common/arrow_B.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    background-repeat: no-repeat;
    right: 20px;
    top: 50%;
    background-color: transparent;
    left: auto;
    opacity: 0.2;
  }
}
.f-footer_menu li:first-child:before {
  content: none;
  background: none;
}
@media (max-width: 768px) {
  .f-footer_menu li:first-child:before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 12px;
    background-image: url(../../img/common/arrow_B.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    background-repeat: no-repeat;
    right: 20px;
    top: 50%;
    background-color: transparent;
    left: auto;
  }
}
.f-footer_menu li:last-child {
  border-right: none;
  position: relative;
}
@media (max-width: 768px) {
  .f-footer_menu li:last-child {
    width: 50%;
    border-right: none;
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .f-footer_menu li:last-child:before {
    content: "";
    top: 45%;
    background-color: transparent;
    opacity: 1;
    display: inline-block;
    width: 8px;
    height: 12px;
    background-image: url(../../img/common/icon-window-01_B.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    background-repeat: no-repeat;
    right: 20px;
    left: auto;
  }
}
.f-footer_menu li a {
  text-decoration: none;
  display: block;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .f-footer_menu li a {
    text-decoration: none;
    display: block;
    padding: 20px 10px;
    border: 1px solid #000;
    margin: 10px 10px 0 0;
  }
}

.footer-address {
  line-height: 1.6;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .footer-address {
    line-height: 1.6;
    display: block;
  }
}
.footer-address li {
  font-size: 1.2rem;
  line-height: 1.5;
  display: table-cell;
  padding: 0 10px 0 0;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .footer-address li {
    display: block;
    padding: 10px 0 0 0;
    vertical-align: middle;
  }
  .footer-address li:nth-child(1) {
    display: none;
  }
  .footer-address li:nth-child(2) {
    display: flex;
  }
}
.footer-address .footer_flee_tel {
  width: 50px;
}
@media (max-width: 768px) {
  .footer-address-name {
    font-size: 1.4rem;
    line-height: 1.35;
  }
}
.footer_tel {
  font-size: 4.2rem;
  letter-spacing: -0.2rem;
}
@media (max-width: 768px) {
  .footer_tel {
    display: inline-block;
    font-size: 4.8rem;
    font-size: 13.1vw;
    font-weight: 100;
    line-height: 0.7;
    letter-spacing: -2.5px;
    padding: 0 0 0 5px;
  }
}
@media (max-width: 768px) {
  .footer_tel a {
    text-decoration: none;
  }
}
.footer-conpany {
  display: block;
  letter-spacing: -0.5rem;
  text-align: left;
}
@media (max-width: 768px) {
  .footer-conpany {
    display: block;
    margin: 0 0 10px 0;
  }
}
.footer-conpany li {
  display: inline-block;
  padding: 0 30px 0 0;
  text-align: left;
  width: 33.3%;
  letter-spacing: 0.8px;
}
@media (max-width: 768px) {
  .footer-conpany li {
    display: inline-block;
    padding: 15px 15px 0 0;
    text-align: left;
    width: 50%;
    font-size: 1rem;
    letter-spacing: 0rem;
  }
}
.footer-conpany li:nth-child(1) {
  width: 200px;
}
.footer-conpany li:nth-child(2) {
  width: 200px;
}
@media (max-width: 768px) {
  .footer-conpany li img {
    /* width: 100%; */
  }
}
@media (max-width: 768px) {
  .footer-conpany li.g-footer_item_hoc {
    width: 100%;
    display: block;
    color: #fff;
    background: #050f1e;
    padding: 10px 10px;
    margin-top: 20px;
  }
}
.footer-conpany .footer-logo {
  padding-top: 10px;
}
@media (max-width: 768px) {
  .footer-conpany .footer-logo {
    padding-top: 5px;
  }
}
@media (max-width: 768px) {
  .footer-conpany.g-footer_item_hoc .footer-logo {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .footer-conpany .is-hhp img {
    width: 60%;
  }
}

.g-footer_address {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}
.g-footer_address_item.mod--owner {
  text-align: right;
}
@media (max-width: 960px) {
  .g-footer_address_item.mod--owner {
    text-align: left;
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .is-credit {
    display: block;
  }
}

@media (max-width: 768px) {
  .is-address,
  .is-canpany {
    font-size: 1.2rem;
  }
}

.no-touch .g-footer-nav_button:hover {
  opacity: 0.8;
}
.no-touch .g-footer-info-merchant-item.is-hapia-link .e-link:hover {
  text-decoration: none;
}

.is-footer-open .g-footer-nav_button:after {
  content: "CLOSE";
}
.is-footer-open .g-footer-nav_button .e-line.is-top {
  margin-top: auto;
  transform: translate(-50%, -7px) rotate(-135deg);
}
.is-footer-open .g-footer-nav_button .e-line.is-center {
  opacity: 0;
}
.is-footer-open .g-footer-nav_button .e-line.is-bottom {
  margin-top: auto;
  transform: translate(-50%, -7px) rotate(135deg);
}
.is-footer-open .g-footer-pagetop {
  opacity: 0;
}

.fp-viewing-contents-keyvisual .g-footer-pagetop,
.fp-viewing-l-kv .g-footer-pagetop {
  opacity: 0;
}

@media (max-width: 768px) {
  .g-sns-list {
    text-align: center;
    float: none;
    padding: 10px 0;
  }
}
@media (max-width: 768px) {
  .g-sns-list .e-link {
    margin: 0 10px;
  }
}

@media (max-width: 768px) {
  .l-media-footer {
    width: 100%;
    background: #bd9d6d;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 3000;
  }
  .l-media-footer-button-wrap {
    width: 100%;
    display: table;
  }
  .l-media-footer-button-item {
    display: table-cell;
  }
  .l-media-footer-button-item .e-title:before {
    content: "お問い合わせはこちらから";
  }
  .l-media-footer-button-item.is-news {
    width: 40px;
    height: 40px;
    background: #1b1b1b url(../../img/common/icon-info-01.png) no-repeat center/18px auto;
  }
  .l-media-footer-button-item.is-contact {
    color: #fff;
    font-size: 1.5rem;
    vertical-align: middle;
    text-align: center;
    padding-right: 40px;
    background: url(../../img/common/icon-close-02.png) no-repeat right 20px top 50%/20px auto;
  }
  .l-media-footer-contact {
    width: 100%;
    height: calc(100% - 60px);
    padding: 20px;
    background: #bd9d6d;
    position: fixed;
    bottom: 0;
    left: 0;
    display: none;
    z-index: 3000;
  }
  .l-media-footer-contact .g-request {
    text-align: center;
    height: auto;
    margin: 0 0 30px;
    padding: 15px 15px 5px;
    background: #fff;
  }
  .l-media-footer-contact .g-request-tel-title {
    margin: 0;
  }
  .l-media-footer-contact .g-request-tel-number .e-link {
    color: #a11316;
  }
  .l-media-footer-contact .g-request-button-wrap {
    width: 100%;
    padding: 30px 0 10px;
    display: block;
  }
  .l-media-footer-contact .g-request-button-item {
    margin: 0 0 10px;
    display: block;
  }
  .l-media-footer-contact .g-request-button-item .e-link {
    font-size: 1.6rem;
    width: 100%;
    padding-top: 11px;
  }
  .l-media-footer-contact .g-request-sns-button {
    display: none;
  }
  .l-media-footer-contact .e-title {
    font-size: 1.4rem;
    margin: 0 0 10px;
  }
  .l-media-footer-contact .g-contact-button {
    text-align: center;
  }
  .l-media-footer-contact .g-contact-button .e-button {
    color: #fff;
    width: 100%;
    padding: 15px 0;
    display: inline-block;
    background: #000;
    transition: all 0.2s;
    cursor: pointer;
  }
}

.is-contact-open .l-media-footer-button-item.is-contact:before {
  display: none;
}

@media (max-width: 768px) {
  .l-flee-tel {
    display: inline-block;
    width: 55px;
  }
  .l-flee-tel img {
    width: 100%;
  }
}

/* ------------------------------------------------------------------------------------------------
 * HAPIA Navigation - footer ※既存の設定であったline-height: 1;を追加しています・・
 * ------------------------------------------------------------------------------------------------ */
.g-hapia-nav {
  width: 100%;
  background: linear-gradient(to right, #091614 0%, #142d2a 50%, #091614 100%);
  position: relative;
  z-index: 10;
  line-height: 1;
}
@media (max-width: 768px) {
  .g-hapia-nav {
    width: 100%;
    display: block;
    position: relative;
    bottom: auto;
    left: auto;
  }
}
.g-hapia-nav-wrap {
  padding: 20px 0;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .g-hapia-nav-wrap {
    padding: 0;
    float: none;
    flex-wrap: wrap;
  }
}
.g-hapia-nav-item {
  margin: 0 35px;
  padding: 2px 10px 0 10px;
  display: inline-block;
  position: relative;
}
@media (max-width: 768px) {
  .g-hapia-nav-item {
    margin: 0;
    padding: 0;
    display: block;
    background: none;
    border-right: none;
    width: 100%;
  }
}
.g-hapia-nav-item:after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: solid 1px #ddd;
  border-right: solid 1px #ddd;
  position: absolute;
  left: -5px;
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
}
@media (max-width: 440px) {
  .g-hapia-nav-item:after {
    top: 45%;
  }
}
.g-hapia-nav-item:last-child {
  border-right: none;
}
@media (max-width: 768px) {
  .g-hapia-nav-item:last-child .e-link {
    border-right: none;
    border-bottom: none;
  }
}
.g-hapia-nav-item .e-link {
  color: #cbcbcb;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  text-decoration: none;
}
@media (max-width: 768px) {
  .g-hapia-nav-item .e-link {
    padding: 20px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    display: block;
  }
}
.g-hapia-nav-copyright {
  color: rgba(255, 255, 255, 0.75);
  float: none;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  padding: 20px 0;
  border-top: 1px solid #0f322b;
  background: rgba(0, 0, 0, 0.3);
  display: block;
  width: 100%;
  text-align: center;
}
@media (max-width: 768px) {
  .g-hapia-nav-copyright {
    font-size: 1rem;
    padding-bottom: 90px;
    display: block;
    float: none;
  }
}
.g-hapia-nav h1 {
  color: #fff;
  text-align: center;
  font-size: 1rem;
  padding: 20px 0 20px 0;
  border-bottom: 1px solid #333;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .g-hapia-nav .g-footer-info-merchant-wrap {
    margin: -10px -20px 0 -20px;
    border-top: 2px solid #ddd;
    background-color: #fff;
    position: relative;
  }
}
@media (max-width: 768px) {
  .g-hapia-nav .g-footer-info-merchant-item {
    width: 100%;
    border-bottom: 1px solid #ddd;
  }
  .g-hapia-nav .g-footer-info-merchant-item .e-link {
    min-height: 0;
    padding: 10px 0;
  }
  .g-hapia-nav .g-footer-info-merchant-item.is-hapia-link {
    padding: 20px 0;
  }
}

.g-map,
.g-location-map {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4100;
}
@media (max-width: 768px) {
  .g-map,
  .g-location-map {
    width: calc(100% - 40px);
    padding: 30px 0 0;
  }
}

.g-map {
  width: 100%;
  height: 100%;
  display: none;
  overflow-y: scroll;
}
.g-map-inner {
  text-align: center;
  padding: 60px 0;
}
.g-map-inner .e-img {
  width: 50%;
}
.g-map-inner .e-button {
  padding: 60px 0 0;
  display: block;
}
.g-map-inner .e-button input {
  font-size: 2rem;
  font-weight: 700;
  padding: 10px 40px;
  border-radius: 10px;
  border: 2px solid #999;
  cursor: pointer;
  transition: 0.2s;
}
.g-map-inner .e-button input:hover {
  color: #fff;
  background: #999;
}
.g-map .e-close-button {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 60px;
  right: 40px;
}
.g-map .e-close-button:after {
  content: "";
  width: 40px;
  height: 3px;
  background: #000;
  display: inline-block;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 0;
}
.g-map .e-close-button:before {
  content: "";
  width: 40px;
  height: 3px;
  background: #000;
  display: inline-block;
  transform: rotate(-45deg);
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 768px) {
  .g-map .e-image:before, .g-map .e-image:after {
    top: 0;
    right: 0;
  }
}

@media (max-width: 768px) {
  .g-location-map .e-image {
    width: 100%;
  }
  .g-location-map .e-image:before, .g-location-map .e-image:after {
    top: 0;
    right: 0;
  }
}

.l-cover {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  z-index: 4000;
  display: none;
  cursor: pointer;
}

.is-map-open {
  overflow: hidden;
}

.g-nav-item--off {
  pointer-events: none;
  opacity: 0.2;
}

.btn-more {
  align-items: center;
  height: fit-content;
  padding: 15px;
  color: #B2975A;
  font-size: clamp(16px, 15.037037037px + 0.2469135802vw, 18px);
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
  border-left-color: #B2975A;
  border-top-color: #B2975A;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
  background: transparent;
  z-index: 1;
}
@media (max-width: 768px) {
  .btn-more {
    width: 100%;
    display: block;
    background-color: #B2975A;
    color: #ffffff;
    padding: 10px;
  }
}
.btn-more .arrow {
  letter-spacing: -3px;
}
.btn-more::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #B2975A;
  transition: width 0.3s ease;
  z-index: -1;
}
@media (hover: hover) and (pointer: fine) {
  .btn-more:hover {
    color: white;
  }
  .btn-more:hover::before {
    width: 100%;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .btn-more:hover {
    color: white;
  }
  .btn-more:hover::before {
    width: 100%;
  }
}

.u-pc {
  display: block;
}

.u-tb {
  display: none !important;
}

.u-sp {
  display: none !important;
}

.u-pctb {
  display: block !important;
}

.u-tbsp {
  display: none !important;
}

@media (max-width: 1200px) {
  .u-pc {
    display: none !important;
  }
  .u-tb {
    display: block !important;
  }
  .u-sp {
    display: none !important;
  }
  .u-pctb {
    display: block !important;
  }
  .u-tbsp {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .u-pc {
    display: none !important;
  }
  .u-tb {
    display: none !important;
  }
  .u-sp {
    display: block !important;
  }
  .u-pctb {
    display: none !important;
  }
  .u-tbsp {
    display: block !important;
  }
}
/* コンテンツ幅1080px */
.u-inner {
  width: min(90%, 1080px);
  position: relative;
  display: block;
  margin: 0 auto;
}

.u-inner--wide {
  width: min(90%, 1200px);
  position: relative;
  display: block;
  margin: 0 auto;
}

.u-inner--sp {
  max-width: 90%;
  margin: 0 auto;
}

.u-font-crimson {
  font-family: "Crimson Text", serif;
}

.u-font-serif {
  font-family: "Noto Serif Japanese", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}

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

.u-text-right {
  text-align: right;
}/*# sourceMappingURL=common.css.map */