@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;
  -webkit-transition: width var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay);
  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;
  -webkit-transition: opacity var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay), -webkit-transform var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay);
  transition: opacity var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay), -webkit-transform var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay);
  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);
  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), -webkit-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 {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.ani-fade-up.is-animated {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.ani-fade-down {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.ani-fade-down.is-animated {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.ani-fade-down-full {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.ani-fade-down-full.is-animated {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.ani-fade-right {
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
}
.ani-fade-right.is-animated {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.ani-fade-left {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
.ani-fade-left.is-animated {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.ani-scale {
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: opacity var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay), -webkit-transform var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay);
  transition: opacity var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay), -webkit-transform var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay);
  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);
  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), -webkit-transform var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay);
}
.ani-scale.is-animated {
  -webkit-transform: scale(1);
          transform: scale(1);
}

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

.ani-clip, .ani-clip-full {
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  -webkit-transition: all var(--ani-duration) ease-in-out var(--ani-delay);
  transition: all var(--ani-duration) ease-in-out var(--ani-delay);
  will-change: clip-path;
}
@media (max-width: 768px) {
  .ani-clip-full {
    -webkit-transition: all calc(var(--ani-duration) / 2) cubic-bezier(0.07, 0.09, 0.09, 0.62) calc(var(--ani-delay) / 2);
    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,
picture {
  display: block;
}

/* ==========================================================
   reseting
========================================================== */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: normal;
}

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;
  -webkit-margin-before: 0em;
          margin-block-start: 0em;
  -webkit-margin-after: 0em;
          margin-block-end: 0em;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: 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%;
}
@media (max-width: 768px) {
  html {
    overflow: auto;
  }
  html.is-open {
    height: auto;
    overflow: hidden;
  }
}

body {
  font-family: YakuHanMP, "Crimson Text", "Shippori Mincho B1", sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 100%;
  font-size: clamp(14px, 13.037037037px + 0.2469135802vw, 16px);
  line-height: 2;
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
  -webkit-font-feature-settings: "palt";
          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%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9900;
  backdrop-filter: blur(10px) brightness(150%) contrast(100%);
  line-height: 1;
  padding: 20px 20px 20px 20px;
}
@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: 150px;
}
@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;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: scaleX(0.9);
          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;
  }
}
@media screen and (min-width: 1024px) {
  .g-header .g-nav-inner {
    padding-top: 10px;
  }
}
.g-header .g-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            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.4);
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-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.-last:before {
  content: "";
  width: 1px;
  height: 15px;
  background: rgba(0, 0, 0, 0.4);
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  left: auto;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media (max-width: 768px) {
  .g-header .g-nav-item.-last:before {
    background: none;
    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.4rem;
  line-height: 1;
  text-decoration: none;
  letter-spacing: 0;
  padding: 0 30px;
  -webkit-transform: scale(0.005deg);
          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.8;
}
@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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .g-header-inquiry {
    display: none;
  }
}
.g-header-inquiry-item {
  display: block;
  padding: 42px 0 15px;
  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%;
  -webkit-transform: translate(-50%, 0);
          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;
  margin-top: 10px;
  display: block;
  width: 100%;
}
.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: -38px;
  right: 40px;
  position: absolute;
}
.g-header-inquiry-sp {
  display: none;
}
@media (max-width: 768px) {
  .g-header-inquiry-sp {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    float: right;
    margin: 0 60px 0 0px;
    background: #524c48;
  }
  .g-header-inquiry-sp li a {
    text-decoration: none;
  }
  .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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: center;
    -ms-flex-line-pack: end;
    align-content: flex-end;
    height: 60px;
    padding: 5px 3px 10px 3px;
  }
  .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;
    top: 10px;
    right: 32%;
    position: absolute;
  }
  .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;
    top: 10px;
    right: 36%;
    position: absolute;
  }
  .g-header-inquiry-sp li span {
    -webkit-transform: scale(0.93);
            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;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    z-index: 9000;
  }
  .g-header-inner.is-open {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
            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;
    -webkit-transform: translateY(-50%);
            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: #142953;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    border-right: 2px solid #b28f31;
    border-left: 2px solid #b28f31;
  }
  .g-header-nav_button:after {
    content: "MENU";
    color: #b1965a;
    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: #b1965a;
    position: absolute;
    top: 50%;
    left: 55%;
    -webkit-transform: translate(-60%, -7px);
            transform: translate(-60%, -7px);
    -webkit-transition: all 0.2s;
    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;
  }
}

.g-nav-arrow-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
  margin-left: auto;
  margin-right: 20px;
  padding: 10px 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.2rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  .g-nav-arrow-link {
    display: none;
  }
}
.g-nav-arrow-link:before {
  content: "";
  width: 11px;
  height: 11px;
  background-image: url(../../img/common/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
}
.g-nav-arrow-link:hover {
  opacity: 0.7;
}

.is-pamphlet_btn {
  width: 190px;
  background: -webkit-gradient(linear, left top, left bottom, from(#916633), to(#78552a));
  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: -webkit-gradient(linear, left top, left bottom, from(#16437d), to(#0e213e));
  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 {
    -webkit-transform: translateY(-10px);
            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;
    -webkit-transform: translate(-60%, -7px) rotate(-155deg);
            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;
    -webkit-transform: translate(-60%, -7px) rotate(155deg);
            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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
    -ms-flex-line-pack: end;
        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 {
    opacity: 0;
    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: -webkit-box;
    display: -ms-flexbox;
    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;
    -webkit-transform: scale(0.9, 1);
            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;
  -webkit-transition: all 0.2s;
  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%;
  -webkit-transform: translate(-50%, -7px);
          transform: translate(-50%, -7px);
  -webkit-transition: all 0.2s;
  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;
  -webkit-box-shadow: inset 0 0 5px 0 rgba(0, 0, 0, 0.25);
          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.0900827198%;
  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;
  -webkit-transform: skewY(-5deg);
          transform: skewY(-5deg);
  -webkit-box-sizing: border-box;
          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;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-sizing: border-box;
          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: -webkit-gradient(linear, left top, right top, from(#ffffff), to(#f4f4f4));
  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;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-filter: grayscale(100%);
          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-pagetop button {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.g-footer_container {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      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;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media (max-width: 960px) {
  .g-footer_recommend li {
    width: 100%;
    padding: 0 0 10px 0;
  }
}
@media (max-width: 768px) {
  .g-footer_recommend li {
    display: block;
    width: 100%;
    letter-spacing: 0.8px;
  }
}
.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: 3px;
  left: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
}
.g-footer_recommend_item.is-catalog {
  background: #63141e;
  background: -webkit-gradient(linear, left top, right top, from(#63141e), color-stop(50%, #924848), to(#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: -webkit-gradient(linear, left top, right top, from(#605944), color-stop(50%, #82775b), to(#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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .f-footer_logo {
    width: 100%;
    display: block;
    text-align: center;
  }
}
.f-footer_logo img {
  width: 30%;
}
.f-footer_logo p {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 10px 0px 0px 10px;
  font-size: 1.8rem;
  color: #ab9258;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    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;
  }
}
@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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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;
  -webkit-transform: translate(-50%, -7px) rotate(-135deg);
          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;
  -webkit-transform: translate(-50%, -7px) rotate(135deg);
          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;
    -webkit-transition: all 0.2s;
    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: -webkit-gradient(linear, left top, right top, from(#091614), color-stop(50%, #142d2a), to(#091614));
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .g-hapia-nav-wrap {
    padding: 0;
    float: none;
    -ms-flex-wrap: wrap;
        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%;
  -webkit-transform: rotate(45deg) translateY(-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%;
  -webkit-transform: translate(-50%, -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;
  -webkit-transition: 0.2s;
  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;
  -webkit-transform: rotate(45deg);
          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;
  -webkit-transform: rotate(-45deg);
          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.5;
}

.c-wrap {
  overflow: visible;
  position: relative;
  z-index: 10;
}

.c-container {
  width: 100%;
  height: 100%;
  padding-top: 0px;
}
@media (max-width: 768px) {
  .c-container {
    padding-top: 0px;
  }
}
.c-container::after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -10;
}

.c-contents {
  padding: clamp(50px, 25.9259259259px + 6.1728395062vw, 100px) 0 clamp(60px, 40.7407407407px + 4.9382716049vw, 100px);
}

.c-noLink {
  pointer-events: none !important;
}
.c-noLink > * {
  pointer-events: none !important;
}

.c-noLink-op {
  pointer-events: none;
  opacity: 0.6;
}

/* -------------------
  title
--------------------- */
.c-pageTitle {
  background: -webkit-gradient(linear, left top, right top, from(#091614), color-stop(30%, #253230), color-stop(70%, #253230), to(#091614));
  background: linear-gradient(90deg, #091614 0%, #253230 30%, #253230 70%, #091614 100%);
  padding: 40px 0;
}
@media (max-width: 768px) {
  .c-pageTitle {
    padding: 20px 0 25px;
  }
}

.c-title {
  text-align: center;
  border: 3px double #050f1e;
  padding: 15px 0;
  color: #050f1e;
  background-image: url(../../img/common/corner_rt.png), url(../../img/common/corner_lt.png), url(../../img/common/corner_rb.png), url(../../img/common/corner_lb.png);
  background-position: right 2px top 2px, left 2px top 2px, right 2px bottom 2px, left 2px bottom 2px;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  line-height: 1.4;
  position: relative;
}
@media (max-width: 768px) {
  .c-title {
    padding: 10px 0;
  }
}
.c-title__en {
  font-size: 3rem;
  letter-spacing: 0.15em;
  padding-bottom: 3px;
}
.c-title__jp {
  font-size: 1rem;
  letter-spacing: 0.5em;
}
.c-title.mod--ff {
  border-color: #fff;
  color: #fff;
  background-image: url(../../img/common/corner_rt_w.png), url(../../img/common/corner_lt_w.png), url(../../img/common/corner_rb_w.png), url(../../img/common/corner_lb_w.png);
}

/* -------------------
  page main visual
--------------------- */
.c-pageMv {
  overflow: hidden;
}

/* -------------------
  image caption
--------------------- */
.c-imgBox {
  position: relative;
  overflow: hidden;
}
.c-imgBox__cap {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 1.1rem;
  color: #fff;
  text-shadow: 0 0 3px #000, 0 0 3px #000, 0 0 5px #000, 0 0 5px #000;
  line-height: 1.2;
  padding: 4px 4px;
  letter-spacing: 0.05em;
  text-align: right;
  z-index: 10;
}
@media (max-width: 768px) {
  .c-imgBox__cap {
    font-size: 1rem;
  }
}
.c-imgBox__cap.mod--bk {
  text-shadow: none;
  color: #231815;
}
.c-imgBox__cap.mod--left {
  right: auto;
  text-align: left;
}
.c-imgBox__cap.mod--basic {
  position: static;
  text-align: right;
}

/* -------------------
  image bg
--------------------- */
.c-bg {
  position: relative;
}
.c-bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background: url(../../img/common/bg_02.jpg) repeat-y center top/100% auto;
}

.c-bgColor {
  background-color: rgba(47, 98, 69, 0.05);
}

@-webkit-keyframes ani_fadeoutin {
  0% {
    width: 100%;
    left: 0;
  }
  50% {
    width: 100%;
    left: 100%;
  }
  51% {
    width: 0;
    left: 0;
  }
  100% {
    width: 100%;
    left: 0;
  }
}

@keyframes ani_fadeoutin {
  0% {
    width: 100%;
    left: 0;
  }
  50% {
    width: 100%;
    left: 100%;
  }
  51% {
    width: 0;
    left: 0;
  }
  100% {
    width: 100%;
    left: 0;
  }
}
@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.12);
            transform: scale(1.12);
  }
}
@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.12);
            transform: scale(1.12);
  }
}
.c-btnLine {
  display: block;
  width: clamp(240px, 230.3703703704px + 2.4691358025vw, 260px);
  position: relative;
  overflow: hidden;
  padding: 12px 0;
}
.c-btnLine::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
}
.c-btnLine::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #231815;
}
.c-btnLine__txt {
  line-height: 1.4;
}
@media (hover: hover) and (pointer: fine) and (min-width: 789px) {
  .c-btnLine:hover::after {
    -webkit-animation: ani_fadeoutin 1s forwards;
            animation: ani_fadeoutin 1s forwards;
  }
}

.u-pc {
  display: block;
}

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

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

.u-pctb {
  display: block !important;
}
.u-pctb.mod--inline {
  display: inline !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-pctb.mod--inline {
    display: none !important;
  }
  .u-tbsp {
    display: block !important;
  }
}
.u-hidden {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  font-size: 0;
  z-index: -9999;
  visibility: hidden;
}

.u-sp-zoom {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  width: 100%;
  margin: 15px 0 0;
  padding: 7px 10px;
  display: block;
  background: rgba(100, 100, 100, 0.2);
  border-radius: 50px;
}

/* コンテンツ幅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-content {
  width: min(90%, 1080px);
  position: relative;
  display: block;
  margin: clamp(25px, 17.7777777778px + 1.8518518519vw, 40px) auto;
  padding: clamp(25px, 17.7777777778px + 1.8518518519vw, 40px) clamp(15px, 2.962962963px + 3.0864197531vw, 40px);
  background: #fff;
}
@media (max-width: 768px) {
  .u-content {
    width: min(100%, 1080px);
    margin: 0 auto;
    padding: 40px 20px;
  }
}

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

.u-font-jp {
  font-family: YakuHanMP, "Crimson Text", "Shippori Mincho B1", sans-serif;
}

.u-t-c {
  text-align: center !important;
}

.u-t-l {
  text-align: left !important;
}

.u-t-r {
  text-align: right !important;
}

@media (max-width: 768px) {
  .u-t-c_sp {
    text-align: center !important;
  }
  .u-t-l_sp {
    text-align: left !important;
  }
  .u-t-r_sp {
    text-align: right !important;
  }
}
.u-note {
  font-size: clamp(10px, 9.5185185185px + 0.1234567901vw, 11px);
  margin-top: clamp(30px, 25.1851851852px + 1.2345679012vw, 40px);
  margin-bottom: clamp(30px, 25.1851851852px + 1.2345679012vw, 40px);
  line-height: 1.6;
  letter-spacing: 0.025em;
  position: relative;
  z-index: 10;
}

.u-secLead {
  font-size: clamp(20px, 18.0740740741px + 0.4938271605vw, 24px);
  text-align: center;
  margin-bottom: clamp(24px, 18.2222222222px + 1.4814814815vw, 36px);
  line-height: 1.8;
}

.u-itemLead {
  font-size: clamp(16px, 14.0740740741px + 0.4938271605vw, 20px);
  margin-bottom: clamp(20px, 10.3703703704px + 2.4691358025vw, 40px);
  line-height: 1.8;
}

.u-itemTxt {
  font-size: clamp(13px, 12.037037037px + 0.2469135802vw, 15px);
}

.u-cap {
  font-size: clamp(10px, 9.5185185185px + 0.1234567901vw, 11px);
  line-height: 1.6;
  letter-spacing: 0.025em;
}

.u-sup {
  font-size: clamp(10px, 9.5185185185px + 0.1234567901vw, 11px);
  line-height: 1;
  vertical-align: text-top;
}

/* ------------------------------------------------------------
    margin top, margin bottom
------------------------------------------------------------ */
.u-mt0 {
  margin-top: 0rem !important;
}

.u-mb0 {
  margin-bottom: 0rem !important;
}

.u-pt0 {
  padding-top: 0rem !important;
}

.u-pb0 {
  padding-bottom: 0rem !important;
}

.u-mt5 {
  margin-top: 0.5rem !important;
}

.u-mb5 {
  margin-bottom: 0.5rem !important;
}

.u-pt5 {
  padding-top: 0.5rem !important;
}

.u-pb5 {
  padding-bottom: 0.5rem !important;
}

.u-mt10 {
  margin-top: 1rem !important;
}

.u-mb10 {
  margin-bottom: 1rem !important;
}

.u-pt10 {
  padding-top: 1rem !important;
}

.u-pb10 {
  padding-bottom: 1rem !important;
}

.u-mt15 {
  margin-top: 1.5rem !important;
}

.u-mb15 {
  margin-bottom: 1.5rem !important;
}

.u-pt15 {
  padding-top: 1.5rem !important;
}

.u-pb15 {
  padding-bottom: 1.5rem !important;
}

.u-mt20 {
  margin-top: 2rem !important;
}

.u-mb20 {
  margin-bottom: 2rem !important;
}

.u-pt20 {
  padding-top: 2rem !important;
}

.u-pb20 {
  padding-bottom: 2rem !important;
}

.u-mt25 {
  margin-top: 2.5rem !important;
}

.u-mb25 {
  margin-bottom: 2.5rem !important;
}

.u-pt25 {
  padding-top: 2.5rem !important;
}

.u-pb25 {
  padding-bottom: 2.5rem !important;
}

.u-mt30 {
  margin-top: 3rem !important;
}

.u-mb30 {
  margin-bottom: 3rem !important;
}

.u-pt30 {
  padding-top: 3rem !important;
}

.u-pb30 {
  padding-bottom: 3rem !important;
}

.u-mt35 {
  margin-top: 3.5rem !important;
}

.u-mb35 {
  margin-bottom: 3.5rem !important;
}

.u-pt35 {
  padding-top: 3.5rem !important;
}

.u-pb35 {
  padding-bottom: 3.5rem !important;
}

.u-mt40 {
  margin-top: 4rem !important;
}

.u-mb40 {
  margin-bottom: 4rem !important;
}

.u-pt40 {
  padding-top: 4rem !important;
}

.u-pb40 {
  padding-bottom: 4rem !important;
}

.u-mt45 {
  margin-top: 4.5rem !important;
}

.u-mb45 {
  margin-bottom: 4.5rem !important;
}

.u-pt45 {
  padding-top: 4.5rem !important;
}

.u-pb45 {
  padding-bottom: 4.5rem !important;
}

.u-mt50 {
  margin-top: 5rem !important;
}

.u-mb50 {
  margin-bottom: 5rem !important;
}

.u-pt50 {
  padding-top: 5rem !important;
}

.u-pb50 {
  padding-bottom: 5rem !important;
}

.u-mt55 {
  margin-top: 5.5rem !important;
}

.u-mb55 {
  margin-bottom: 5.5rem !important;
}

.u-pt55 {
  padding-top: 5.5rem !important;
}

.u-pb55 {
  padding-bottom: 5.5rem !important;
}

.u-mt60 {
  margin-top: 6rem !important;
}

.u-mb60 {
  margin-bottom: 6rem !important;
}

.u-pt60 {
  padding-top: 6rem !important;
}

.u-pb60 {
  padding-bottom: 6rem !important;
}

.u-mt65 {
  margin-top: 6.5rem !important;
}

.u-mb65 {
  margin-bottom: 6.5rem !important;
}

.u-pt65 {
  padding-top: 6.5rem !important;
}

.u-pb65 {
  padding-bottom: 6.5rem !important;
}

.u-mt70 {
  margin-top: 7rem !important;
}

.u-mb70 {
  margin-bottom: 7rem !important;
}

.u-pt70 {
  padding-top: 7rem !important;
}

.u-pb70 {
  padding-bottom: 7rem !important;
}

.u-mt75 {
  margin-top: 7.5rem !important;
}

.u-mb75 {
  margin-bottom: 7.5rem !important;
}

.u-pt75 {
  padding-top: 7.5rem !important;
}

.u-pb75 {
  padding-bottom: 7.5rem !important;
}

.u-mt80 {
  margin-top: 8rem !important;
}

.u-mb80 {
  margin-bottom: 8rem !important;
}

.u-pt80 {
  padding-top: 8rem !important;
}

.u-pb80 {
  padding-bottom: 8rem !important;
}

.u-mt85 {
  margin-top: 8.5rem !important;
}

.u-mb85 {
  margin-bottom: 8.5rem !important;
}

.u-pt85 {
  padding-top: 8.5rem !important;
}

.u-pb85 {
  padding-bottom: 8.5rem !important;
}

.u-mt90 {
  margin-top: 9rem !important;
}

.u-mb90 {
  margin-bottom: 9rem !important;
}

.u-pt90 {
  padding-top: 9rem !important;
}

.u-pb90 {
  padding-bottom: 9rem !important;
}

.u-mt95 {
  margin-top: 9.5rem !important;
}

.u-mb95 {
  margin-bottom: 9.5rem !important;
}

.u-pt95 {
  padding-top: 9.5rem !important;
}

.u-pb95 {
  padding-bottom: 9.5rem !important;
}

.u-mt100 {
  margin-top: 10rem !important;
}

.u-mb100 {
  margin-bottom: 10rem !important;
}

.u-pt100 {
  padding-top: 10rem !important;
}

.u-pb100 {
  padding-bottom: 10rem !important;
}

.u-mt105 {
  margin-top: 10.5rem !important;
}

.u-mb105 {
  margin-bottom: 10.5rem !important;
}

.u-pt105 {
  padding-top: 10.5rem !important;
}

.u-pb105 {
  padding-bottom: 10.5rem !important;
}

.u-mt110 {
  margin-top: 11rem !important;
}

.u-mb110 {
  margin-bottom: 11rem !important;
}

.u-pt110 {
  padding-top: 11rem !important;
}

.u-pb110 {
  padding-bottom: 11rem !important;
}

.u-mt115 {
  margin-top: 11.5rem !important;
}

.u-mb115 {
  margin-bottom: 11.5rem !important;
}

.u-pt115 {
  padding-top: 11.5rem !important;
}

.u-pb115 {
  padding-bottom: 11.5rem !important;
}

.u-mt120 {
  margin-top: 12rem !important;
}

.u-mb120 {
  margin-bottom: 12rem !important;
}

.u-pt120 {
  padding-top: 12rem !important;
}

.u-pb120 {
  padding-bottom: 12rem !important;
}

.u-mt125 {
  margin-top: 12.5rem !important;
}

.u-mb125 {
  margin-bottom: 12.5rem !important;
}

.u-pt125 {
  padding-top: 12.5rem !important;
}

.u-pb125 {
  padding-bottom: 12.5rem !important;
}

.u-mt130 {
  margin-top: 13rem !important;
}

.u-mb130 {
  margin-bottom: 13rem !important;
}

.u-pt130 {
  padding-top: 13rem !important;
}

.u-pb130 {
  padding-bottom: 13rem !important;
}

.u-mt135 {
  margin-top: 13.5rem !important;
}

.u-mb135 {
  margin-bottom: 13.5rem !important;
}

.u-pt135 {
  padding-top: 13.5rem !important;
}

.u-pb135 {
  padding-bottom: 13.5rem !important;
}

.u-mt140 {
  margin-top: 14rem !important;
}

.u-mb140 {
  margin-bottom: 14rem !important;
}

.u-pt140 {
  padding-top: 14rem !important;
}

.u-pb140 {
  padding-bottom: 14rem !important;
}

.u-mt145 {
  margin-top: 14.5rem !important;
}

.u-mb145 {
  margin-bottom: 14.5rem !important;
}

.u-pt145 {
  padding-top: 14.5rem !important;
}

.u-pb145 {
  padding-bottom: 14.5rem !important;
}

.u-mt150 {
  margin-top: 15rem !important;
}

.u-mb150 {
  margin-bottom: 15rem !important;
}

.u-pt150 {
  padding-top: 15rem !important;
}

.u-pb150 {
  padding-bottom: 15rem !important;
}

.u-mt155 {
  margin-top: 15.5rem !important;
}

.u-mb155 {
  margin-bottom: 15.5rem !important;
}

.u-pt155 {
  padding-top: 15.5rem !important;
}

.u-pb155 {
  padding-bottom: 15.5rem !important;
}

.u-mt160 {
  margin-top: 16rem !important;
}

.u-mb160 {
  margin-bottom: 16rem !important;
}

.u-pt160 {
  padding-top: 16rem !important;
}

.u-pb160 {
  padding-bottom: 16rem !important;
}

@media (max-width: 768px) {
  .u-sp-mt0 {
    margin-top: 0rem !important;
  }
  .u-sp-mb0 {
    margin-bottom: 0rem !important;
  }
  .u-sp-pt0 {
    padding-top: 0rem !important;
  }
  .u-sp-pb0 {
    padding-bottom: 0rem !important;
  }
  .u-sp-mt5 {
    margin-top: 0.5rem !important;
  }
  .u-sp-mb5 {
    margin-bottom: 0.5rem !important;
  }
  .u-sp-pt5 {
    padding-top: 0.5rem !important;
  }
  .u-sp-pb5 {
    padding-bottom: 0.5rem !important;
  }
  .u-sp-mt10 {
    margin-top: 1rem !important;
  }
  .u-sp-mb10 {
    margin-bottom: 1rem !important;
  }
  .u-sp-pt10 {
    padding-top: 1rem !important;
  }
  .u-sp-pb10 {
    padding-bottom: 1rem !important;
  }
  .u-sp-mt15 {
    margin-top: 1.5rem !important;
  }
  .u-sp-mb15 {
    margin-bottom: 1.5rem !important;
  }
  .u-sp-pt15 {
    padding-top: 1.5rem !important;
  }
  .u-sp-pb15 {
    padding-bottom: 1.5rem !important;
  }
  .u-sp-mt20 {
    margin-top: 2rem !important;
  }
  .u-sp-mb20 {
    margin-bottom: 2rem !important;
  }
  .u-sp-pt20 {
    padding-top: 2rem !important;
  }
  .u-sp-pb20 {
    padding-bottom: 2rem !important;
  }
  .u-sp-mt25 {
    margin-top: 2.5rem !important;
  }
  .u-sp-mb25 {
    margin-bottom: 2.5rem !important;
  }
  .u-sp-pt25 {
    padding-top: 2.5rem !important;
  }
  .u-sp-pb25 {
    padding-bottom: 2.5rem !important;
  }
  .u-sp-mt30 {
    margin-top: 3rem !important;
  }
  .u-sp-mb30 {
    margin-bottom: 3rem !important;
  }
  .u-sp-pt30 {
    padding-top: 3rem !important;
  }
  .u-sp-pb30 {
    padding-bottom: 3rem !important;
  }
  .u-sp-mt35 {
    margin-top: 3.5rem !important;
  }
  .u-sp-mb35 {
    margin-bottom: 3.5rem !important;
  }
  .u-sp-pt35 {
    padding-top: 3.5rem !important;
  }
  .u-sp-pb35 {
    padding-bottom: 3.5rem !important;
  }
  .u-sp-mt40 {
    margin-top: 4rem !important;
  }
  .u-sp-mb40 {
    margin-bottom: 4rem !important;
  }
  .u-sp-pt40 {
    padding-top: 4rem !important;
  }
  .u-sp-pb40 {
    padding-bottom: 4rem !important;
  }
  .u-sp-mt45 {
    margin-top: 4.5rem !important;
  }
  .u-sp-mb45 {
    margin-bottom: 4.5rem !important;
  }
  .u-sp-pt45 {
    padding-top: 4.5rem !important;
  }
  .u-sp-pb45 {
    padding-bottom: 4.5rem !important;
  }
  .u-sp-mt50 {
    margin-top: 5rem !important;
  }
  .u-sp-mb50 {
    margin-bottom: 5rem !important;
  }
  .u-sp-pt50 {
    padding-top: 5rem !important;
  }
  .u-sp-pb50 {
    padding-bottom: 5rem !important;
  }
  .u-sp-mt55 {
    margin-top: 5.5rem !important;
  }
  .u-sp-mb55 {
    margin-bottom: 5.5rem !important;
  }
  .u-sp-pt55 {
    padding-top: 5.5rem !important;
  }
  .u-sp-pb55 {
    padding-bottom: 5.5rem !important;
  }
  .u-sp-mt60 {
    margin-top: 6rem !important;
  }
  .u-sp-mb60 {
    margin-bottom: 6rem !important;
  }
  .u-sp-pt60 {
    padding-top: 6rem !important;
  }
  .u-sp-pb60 {
    padding-bottom: 6rem !important;
  }
  .u-sp-mt65 {
    margin-top: 6.5rem !important;
  }
  .u-sp-mb65 {
    margin-bottom: 6.5rem !important;
  }
  .u-sp-pt65 {
    padding-top: 6.5rem !important;
  }
  .u-sp-pb65 {
    padding-bottom: 6.5rem !important;
  }
  .u-sp-mt70 {
    margin-top: 7rem !important;
  }
  .u-sp-mb70 {
    margin-bottom: 7rem !important;
  }
  .u-sp-pt70 {
    padding-top: 7rem !important;
  }
  .u-sp-pb70 {
    padding-bottom: 7rem !important;
  }
  .u-sp-mt75 {
    margin-top: 7.5rem !important;
  }
  .u-sp-mb75 {
    margin-bottom: 7.5rem !important;
  }
  .u-sp-pt75 {
    padding-top: 7.5rem !important;
  }
  .u-sp-pb75 {
    padding-bottom: 7.5rem !important;
  }
  .u-sp-mt80 {
    margin-top: 8rem !important;
  }
  .u-sp-mb80 {
    margin-bottom: 8rem !important;
  }
  .u-sp-pt80 {
    padding-top: 8rem !important;
  }
  .u-sp-pb80 {
    padding-bottom: 8rem !important;
  }
}
/* ------------------------------------------------------------
    font emsize
------------------------------------------------------------ */
.u-em110 {
  font-size: 110%;
}

.u-em115 {
  font-size: 115%;
}

.u-em120 {
  font-size: 120%;
}

.u-em125 {
  font-size: 125%;
}

.u-em130 {
  font-size: 130%;
}

.u-em135 {
  font-size: 135%;
}

.u-em140 {
  font-size: 140%;
}

.u-em145 {
  font-size: 145%;
}

.u-em150 {
  font-size: 150%;
}

.u-em155 {
  font-size: 155%;
}

.u-em160 {
  font-size: 160%;
}

.u-em165 {
  font-size: 165%;
}

.u-em170 {
  font-size: 170%;
}

.u-em175 {
  font-size: 175%;
}

.u-em180 {
  font-size: 180%;
}

.u-em185 {
  font-size: 185%;
}

.u-em190 {
  font-size: 190%;
}

.u-em195 {
  font-size: 195%;
}

.u-em200 {
  font-size: 200%;
}

.u-small50 {
  font-size: 50%;
}

.u-small55 {
  font-size: 55%;
}

.u-small60 {
  font-size: 60%;
}

.u-small65 {
  font-size: 65%;
}

.u-small70 {
  font-size: 70%;
}

.u-small75 {
  font-size: 75%;
}

.u-small80 {
  font-size: 80%;
}