@charset "UTF-8";
/* ***************************************************
 PC / SP共通
*************************************************** */
/* ////////////////// タグ初期値 ////////////////// */
html,
body {
  height: 100%;
  margin: 0;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
}

*, *::after, *::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  color: #010037;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: bottom;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  padding: 0;
  line-height: 1.25em;
}

a {
  color: #000;
  text-decoration: none;
}

p {
  margin-top: 0;
  margin-bottom: 1.5em;
}

ul,
ol,
dl {
  margin: 0;
  padding: 0;
}

li, dt, dd {
  margin: 0px;
  padding: 0px;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -moz-box-sizing: content-box;
  height: 0;
}

/* テーブル */
table,
th,
td {
  border-collapse: collapse;
  border: 1px;
}

table {
  width: 100%;
  margin: 0 auto 60px;
  min-height: 0.1%;
  overflow: auto;
}

td,
th {
  padding: 1em;
}

th {
  white-space: nowrap;
  font-size: 16px;
  font-weight: 500;
  background-color: #eaedf5;
}

td {
  font-size: 14px;
  font-weight: normal;
  border-bottom: 1px solid #eee;
}

/* ***************************************************
 SP
*************************************************** */
@media screen and (max-width:1099px) {
  .pc {
    display: none !important;
  }
  html.scroll-prevent {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  #container {
    padding-bottom: 60px;
  }
  @-webkit-keyframes show {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes show {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  #hamburger {
    position: relative;
    width: 60px;
    height: 100%;
    background-color: #010037;
    color: #fff;
  }
  #hamburger::before {
    content: "MENU";
    position: absolute;
    bottom: 8px;
    left: 50%;
    font-size: 11px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  #hamburger div {
    position: relative;
    width: 40px;
    height: 30px;
    margin: 0 auto;
  }
  #hamburger i {
    position: relative;
    top: -3px;
    display: inline-block;
    width: 40px;
    height: 1px;
    background-color: #fff;
  }
  #hamburger i:before, #hamburger i:after {
    content: "";
    height: 1px;
    display: block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #fff;
  }
  #hamburger i:before {
    width: 30px;
    -webkit-transform: translate(10px, 7px);
            transform: translate(10px, 7px);
  }
  #hamburger i:after {
    width: 20px;
    -webkit-transform: translate(20px, 13px);
            transform: translate(20px, 13px);
  }
  #hamburger.active::before {
    content: "CLOSE";
  }
  #hamburger.active i {
    height: 0;
  }
  #hamburger.active i:before, #hamburger.active i:after {
    width: 40px;
  }
  #hamburger.active i:before {
    -webkit-transform: rotate(-15deg) translate(0, 6px);
            transform: rotate(-15deg) translate(0, 6px);
  }
  #hamburger.active i:after {
    -webkit-transform: rotate(15deg) translate(1px, 5px);
            transform: rotate(15deg) translate(1px, 5px);
  }
  #header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: 60px;
    padding: 0 0 0 60px;
    background-color: #fff;
  }
  #header #logo {
    width: 170px;
    margin: 0 auto;
    line-height: 20px;
  }
  #header nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  #header.fixed {
    -webkit-animation: show 0.5s ease 0s;
            animation: show 0.5s ease 0s;
    position: fixed;
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
  }
  .header-nav .header-sns {
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto 30px;
    padding: 0 4vw;
  }
  .header-nav .header-sns li {
    margin: 0 20px 0 0;
  }
  .header-nav .header-sns li a {
    display: block;
    width: 22px;
  }
  .header-nav .header-bottom {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    max-width: 400px;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    padding: 0 0 30px;
    background-color: #fff;
    border-top: 1px solid #cccccc;
    -webkit-animation: show 0.5s ease 0s;
            animation: show 0.5s ease 0s;
    overflow-y: auto;
    font-family: "Cinzel", serif;
  }
  .header-nav .header-bottom.active {
    display: block;
  }
  .header-nav .header-list {
    list-style: none;
  }
  .header-nav .header-list > li {
    border-bottom: 1px solid #cccccc;
  }
  .header-nav .header-list > li > a,
  .header-nav .header-list > li > span {
    position: relative;
    display: block;
    height: 100%;
    padding: 1em 4vw;
    color: #6e6e6e;
  }
  .header-nav .header-list > li > a::after,
  .header-nav .header-list > li > span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 5vw;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    display: block;
    width: 7px;
    height: 7px;
    border-right: 1px solid #010037;
    border-bottom: 1px solid #010037;
    -webkit-transform: translateY(-5px) rotate(-45deg);
            transform: translateY(-5px) rotate(-45deg);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header-nav .header-list > li > a.current,
  .header-nav .header-list > li > span.current {
    color: #bf9c61;
  }
  .header-nav .header-list > li.accor-link a {
    background-image: url(../images/common/logo-accor.svg);
    background-repeat: no-repeat;
    background-size: 24px auto;
    background-position: left 4vw center;
    padding-left: calc(4vw + 30px);
	padding: 1.5em 0; /*231120追加*/
  }
  .header-nav .header-list > li > a.current::after,
  .header-nav .header-list > li > span.current::after {
    width: 100%;
  }
  .header-nav .sp-sub-nav {
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    padding: 1em 4vw;
  }
  .header-nav .sp-sub-nav li {
    width: 50%;
  }
  .header-nav .sp-sub-nav li a {
    display: block;
    padding: 1em 0;
    font-family: "Noto Serif JP", serif;
    font-size: 13px;
    font-weight: 200;
    color: #010037;
  }
  .header-nav .header-tel {
    width: 92%;
    margin: 0 auto 30px;
    padding: 1em 4vw;
    font-size: 13px;
    color: #050033;
    text-align: center;
    border: 1px solid #050033;
  }
  .header-nav .header-tel h2 {
    margin: 0 auto .5em;
    font-size: 13px;
    font-weight: normal;
  }
  .header-nav .header-tel a  {
    color: #050033;
  }
  .header-nav .language {
    position: relative;
    margin: 0 auto;
    padding: 0 4vw;
  }
  .header-nav .language h2 {
    padding: 0 0 14px 0;
    font-size: 13px;
    font-weight: bold;
    color: #010037;
    border-bottom: 1px solid #cccccc;
  }
  .header-nav .language h2::after {
    content: "";
    position: absolute;
    top: 5px;
    right: 5vw;
    display: block;
    width: 7px;
    height: 7px;
    border-right: 1px solid #6e6e6e;
    border-bottom: 1px solid #6e6e6e;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header-nav .language h2.active::after {
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
  .header-nav .language .lang-list {
    display: none;
    list-style: none;
    background-color: #f2f2f5;
  }
  .header-nav .language .lang-list li {
    border-bottom: 1px solid #cccccc;
  }
  .header-nav .language .lang-list li a {
    display: block;
    padding: 0.5em 2vw;
    font-size: 12px;
    color: #6e6e6e;
    line-height: 26px;
  }
  .header-rev {
    display: none;
  }
  .footer-rev a {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 60px;
    font-family: "Noto Serif JP", serif;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    background-color: #bf9c61;
    color: #fff;
  }
  .footer-rev a::before {
    content: "";
    width: 40px;
    height: 30px;
    background-image: url(../images/common/header-rev.svg);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
  }
  #footer {
    margin-top: 90px;
  }
  #footer .footer-nav {
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    padding: 0;
    border-top: 1px solid #cccccc;
  }
  #footer .footer-nav li {
    width: 50%;
    font-size: 12px;
    font-weight: 200;
    font-family: "Noto Serif JP", serif;
    line-height: 1em;
    border-bottom: 1px solid #cccccc;
  }
  #footer .footer-nav li:nth-child(odd) {
    border-right: 1px solid #cccccc;
  }
  #footer .footer-nav li a {
    display: block;
    padding: 1.5em 1em;
    text-align: center;
  }
  #footer .footer-bottom {
    padding: 25px 4vw 0;
    background-color: #010037;
  }
  #footer .footer-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    margin: 0 auto 30px;
    text-align: center;
  }
  #footer .footer-title img {
    width: 65px;
  }
  #footer .blands {
    margin-bottom: 35px;
  }
  #footer .blands h3:not(:last-child) {
    margin-bottom: 25px;
  }
  #footer .blands h3.grand {
    width: 235px;
  }
  #footer .blands h3.mercure {
    width: 150px;
  }
  #footer .footer-acrd {
    display: block;
    margin-bottom: 0;
    padding: 0.75em;
    font-size: 12px;
    color: #fff;
    text-align: center;
    border: 1px solid #fff;
    font-family: "Noto Serif JP", serif;
  }
  #footer .footer-acrd.active {
    color: #010037;
    background-color: #eaedf5;
  }
  #footer .footer-hotels {
    display: none;
    width: 100%;
    padding-top: 30px;
    margin: 0 auto;
    border-bottom: 1px solid #fff;
  }
  #footer .footer-hotels .area {
    padding: 0 0 30px;
  }
  #footer .footer-hotels .area .area-title {
    margin-bottom: 1.25em;
    font-size: 14px;
    font-weight: normal;
    color: #fff;
  }
  #footer .footer-hotels .area ul {
    list-style: none;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin: 0 auto;
  }
  #footer .footer-hotels .area ul li {
    display: block;
    margin: 5px 0 15px;
    padding: 0 20px 0 0;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    line-height: 1.5em;
  }
  #footer .footer-hotels .area ul li a {
    color: #fff;
    text-decoration: underline;
  }
  #footer .footer-hotels .area ul li a:hover {
    opacity: 0.8;
  }
  #footer .footer-sns {
    padding: 30px 4vw;
    background-color: #010037;
  }
  #footer .footer-sns a {
    display: inline-block;
    width: 25px;
    margin: 0 8px;
  }
  #footer .copyright {
    margin: 0;
    padding: 10px;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    line-height: 1em;
  }
  #footer .copyright small {
    font-size: 11px;
  }
  .wysiwyg {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 4vw;
  }
  .wysiwyg .post-title {
    margin-bottom: 10px;
    padding: 0 0 0.5em;
    font-size: 20px;
    line-height: 1.5em;
    border-bottom: 1px solid #010037;
  }
  .wysiwyg .date {
    margin-bottom: 50px;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: #bf9c61;
    text-align: right;
    letter-spacing: 0.1em;
  }
  .wysiwyg h2 {
    margin-bottom: 1em;
    font-size: 18px;
  }
  .wysiwyg h3 {
    margin-bottom: 1em;
    font-size: 16px;
  }
  .wysiwyg p {
    font-size: 13px;
  }
  .page-main {
    padding-top: 60px;
  }
  p {
    font-size: 16px;
    line-height: 1.875em;
    letter-spacing: 0.01em;
  }
  .section-title {
    text-align: center;
  }
  .section-title b,
  .section-title small {
    display: block;
  }
  .section-title b {
    position: relative;
    margin-bottom: 14px;
    font-family: "Cinzel", serif;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 0.05em;
  }
  .section-title b::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: block;
    width: 20px;
    height: 5px;
    border-top: 1px solid #91723b;
    border-bottom: 1px solid #91723b;
  }
  .section-title small {
    font-family: "Noto Serif JP", serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
  }
  .btn-w {
    text-align: center;
    font-family: "Cinzel", serif;
  }
  .btn-w a {
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 100%;
    max-width: 250px;
    height: 50px;
    font-size: 12px;
    font-weight: bold;
    line-height: 50px;
    letter-spacing: 0.1em;
    text-align: center;
  }
  .btn-w a::after {
    position: absolute;
    bottom: 2px;
    right: 2px;
    content: "";
    display: block;
    width: 8px;
    height: 8px;
  }
  .btn-w a {
    background-color: #fff;
    color: #91723b;
    border: 1px solid #91723b;
  }
  .btn-w a::after {
    background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, #bf9c61 50%, #bf9c61 100%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, #bf9c61 50%, #bf9c61 100%);
  }
  .front-mv {
    position: relative;
    /*height: calc(100vh - 60px);
	min-height: 500px;*/ /*231113変更*/
	aspect-ratio: 1/1.125;
	height: auto;
	width: 100%;
	min-height: auto;
  }
  .front-mv::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-image: url(../images/common/filter.png);
    pointer-events: none;
  }
  .front-mv .mv-inner {
    position: absolute;
    top: calc(50% + 60px);
    left: 50%;
    z-index: 99;
    width: 100%;
    padding: 0 4vw;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    color: #fff;
  }
  .front-mv .mv-inner .mv-title {
    font-family: "Noto Serif JP", serif;
    /*font-size: clamp(24px, 7.6vw, 30px);*/
	font-size: clamp(20px, 7.6vw, 22px); /*add_231106変更*/
    font-weight: 300;
    line-height: 1.5em;
    margin-bottom: 25px;
    letter-spacing: 0.1em;
  }
  .front-mv video {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 1;
    /*height: 100%;
    width: 100%;*/ /*231113変更*/
    max-width: 2560px;
	aspect-ratio: 1/1.125;
	height: auto;
	width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
  #mv-slider {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  #mv-slider .swiper-wrapper {
    width: 100%;
    height: 100%;
  }
  #mv-slider .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
  }
  #mv-slider .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
  #mv-slider .mv-pagination {
    position: absolute;
    z-index: 99;
    bottom: 20px;
    left: 0;
    text-align: center;
  }
  #mv-slider .mv-pagination .swiper-pagination-bullet {
    width: 60px;
    height: 2px;
    margin: 0 10px;
    background-color: rgba(255, 255, 255, 0.8);
    opacity: 1;
    border-radius: 0;
  }
  #mv-slider .mv-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: rgba(191, 156, 97, 0.8);
  }
  .front-spend {
    padding: 50px 4vw 0;
  }
  .front-spend .section-title {
    margin-bottom: 40px;
  }
  .front-spend .inner {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 50px;
  }
  .front-spend .inner:last-child {
    margin-bottom: 0;
  }
  .front-spend .inner .left {
    position: relative;
    width: 100%;
    max-width: 500px;
    text-align: center;
  }
  .front-spend .inner .left img {
    width: 100%;
    aspect-ratio: 6/4;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    margin-bottom: 5px;
  }
  .front-spend .inner .left .sp-pagination {
    position: absolute;
    z-index: 99;
    bottom: 15px;
    left: 0;
    padding: 0 15px;
  }
  .front-spend .inner .left .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 7px;
    background-color: rgba(255, 255, 255, 0.8);
    opacity: 1;
  }
  .front-spend .inner .left .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: rgba(191, 156, 97, 0.8);
  }
  .front-spend .inner .text {
    width: 100%;
    padding: 25px 0 0;
    background-color: #fff;
  }
  .front-spend .inner .text h3 {
    margin-bottom: 0.75em;
    font-family: "Cinzel", serif;
    font-size: 21px;
    color: #bf9c61;
    line-height: 1.5em;
    letter-spacing: 0.05em;
  }
  .front-spend .inner .text h4 {
    margin-bottom: 1em;
    font-family: "Noto Serif JP", serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.1em;
  }
  .front-spend .inner .text p {
    margin-bottom: 0.5em;
    font-size: 13px;
    font-weight: 300;
  }
  .front-spend .inner .text p:last-child {
    margin-bottom: 0;
  }
  .front-gallery {
    padding: 50px 0 0;
  }
  .front-gallery .section-title {
    margin-bottom: 20px;
  }
  #galleryTop,
  #galleryBottom {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    padding: 5px 0 0;
    pointer-events: none;
  }
  #galleryTop .swiper-wrapper,
  #galleryBottom .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
            transition-timing-function: linear !important;
  }
  #galleryTop .swiper-slide,
  #galleryBottom .swiper-slide {
    width: 200px;
  }
  #galleryTop .swiper-slide a,
  #galleryBottom .swiper-slide a {
    display: block;
    background-color: #fff;
    color: #010037;
  }
  #galleryTop .swiper-slide img,
  #galleryBottom .swiper-slide img {
    aspect-ratio: 16/10;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .front-access {
    width: 100%;
    padding: 70px 4vw 0;
    margin: 0 auto 70px;
  }
  .front-access .section-title {
    margin-bottom: 30px;
  }
  .front-access .inner .gmap {
    width: 100%;
    max-width: 700px;
    overflow: hidden;
    margin: 0 auto;
  }
  .front-access .inner .gmap iframe {
    width: 100%;
    max-height: 230px;
  }
  .front-access .inner .text {
    padding: 20px 0 0;
  }
  .front-access .inner .text h3 {
    margin-bottom: 15px;
    font-family: "Karla", sans-serif;
    font-size: 20px;
    font-weight: normal;
    color: #bf9c61;
  }
  .front-access .inner .text > p {
    font-size: 13px;
    font-weight: 300;
  }
  .front-access .inner .text address {
    font-style: normal;
    font-weight: 300;
  }
  .front-access .inner .text address p {
    font-size: 13px;
    margin-bottom: 0.75em;
  }
  .front-access .inner .text address a {
    display: inline-block;
    font-size: 13px;
    font-weight: 400;
    color: #bf9c61;
    line-height: 1.5em;
    border-bottom: 1px solid #bf9c61;
  }
  .front-access .inner .text address a::after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 0 0 2px 1em;
    border-right: 1px solid #bf9c61;
    border-bottom: 1px solid #bf9c61;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .front-info {
    padding: 0 4vw;
  }
  .front-info .section-title {
    margin-bottom: 30px;
  }
  .front-info .inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .front-info .inner .info-left {
    margin-bottom: 50px;
  }
  .front-info .inner h3 {
    margin-bottom: 1em;
    font-size: 15px;
    font-weight: normal;
    text-align: center;
  }
  .front-info .inner h4 {
    font-size: 12px;
    font-weight: 300;
    color: #010037;
    line-height: 1.75em;
  }
  .info-list {
    list-style: none;
    margin-bottom: 30px;
    border-top: 1px solid #999999;
  }
  .info-list > li {
    padding: 7px 0 12px;
    border-bottom: 1px solid #999999;
  }
  .info-list > li a {
    display: block;
  }
  .info-list > li p {
    margin-bottom: 0;
  }
  .info-list > li .date-wrapper {
    margin-bottom: 0.75em;
  }
  .info-list > li .date-wrapper .date {
    font-size: 11px;
    font-weight: bold;
    color: #bf9c61;
  }
  .info-list > li .cat {
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 7px 0 0;
  }
  .info-list > li .cat li {
    display: inline-block;
    margin-right: 8px;
    padding: 0.6em 2em 0.5em;
    font-size: 10px;
    font-weight: 400;
    line-height: 1em;
    border: 1px solid #010037;
  }
  .page-header .inner {
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
  }
  .page-header .inner.with-bg {
    padding: 20px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: #fff;
    border-top: none;
  }
  .page-header .inner .page-title {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 85px 4vw 75px;
    font-size: 45px;
    line-height: 20px;
  }
  .page-header .inner .page-title b {
    display: block;
    margin-bottom: 5px;
    font-family: "Cinzel", serif;
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 0.05em;
  }
  .page-header .inner .page-title small {
    font-family: "Noto Serif JP", serif;
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 0.1em;
  }
  .pankz {
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 100%;
    max-width: 100%;
    margin: 20px auto 60px;
    padding: 0 4vw;
    font-size: 11px;
    font-weight: 300;
  }
  .pankz li {
    margin-left: 6px;
  }
  .pankz li:not(:last-child)::after {
    content: "|";
    margin-left: 4px;
  }
  .archive-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0 4vw;
  }
  .archive-wrapper .info-section:first-child {
    border-top: 1px solid #eee;
  }
  .info-section {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
  }
  .info-section a {
    display: block;
  }
  .info-section h2 {
    font-size: 12px;
    font-weight: normal;
    line-height: 1.75em;
  }
  .info-section p {
    margin-bottom: 0;
  }
  .info-section .date-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 1em;
  }
  .info-section .date-wrapper .date {
    margin-right: 10px;
    font-size: 11px;
    font-weight: bold;
    color: #bf9c61;
  }
  .info-section .cat {
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .info-section .cat li {
    display: inline-block;
    margin-right: 8px;
    padding: 0.6em 1em 0.5em;
    font-size: 10px;
    font-weight: normal;
    line-height: 1em;
    border: 1px solid #010037;
  }
  .wp-pagenavi {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    max-width: 100%;
    margin: 40px auto 0;
    font-size: 12px;
    font-weight: normal;
  }
  .wp-pagenavi > a,
  .wp-pagenavi > span {
    display: inline-block;
    min-width: 40px;
    margin: 0 2px;
    line-height: 40px;
    text-align: center;
  }
  .wp-pagenavi .current {
    background-color: #010037;
    color: #fff;
  }
}
/* ***************************************************
 PC
*************************************************** */
@media all and (min-width:1100px) {
  .sp {
    display: none !important;
  }
  @-webkit-keyframes show {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes show {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  #hamburger {
    display: none;
  }
  #header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100px;
    padding: 0 0 0 30px;
    background-color: #fff;
  }
  #header #logo {
    width: 256px;
  }
  #header nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  #header.fixed {
    -webkit-animation: show 0.5s ease 0s;
            animation: show 0.5s ease 0s;
    position: fixed;
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
  }
  .header-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header-nav .header-sns {
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin: 20px 30px 20px 0;
  }
  .header-nav .header-sns li {
    margin: 0 10px;
  }
  .header-nav .header-sns li a {
    display: block;
    width: 22px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header-nav .header-sns li a:hover {
    opacity: 0.8;
  }
  .header-nav .header-bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-family: "Cinzel", serif;
  }
  .header-nav .header-list {
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
  .header-nav .header-list > li {
    height: 35px;
    margin-right: 50px;
  }
  .header-nav .header-list > li > a,
  .header-nav .header-list > li > span {
    position: relative;
    display: block;
    height: 100%;
    font-size: 14px;
    color: #6e6e6e;
  }
  .header-nav .header-list > li.accor-link a {
    background-image: url(../images/common/logo-accor.svg);
    background-repeat: no-repeat;
    background-size: 24px auto;
    background-position: left top 2px;
    padding-left: 30px;
  }
  .header-nav .header-list > li > a::after,
  .header-nav .header-list > li > span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 0;
    height: 4px;
    background-color: #bf9c61;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header-nav .header-list > li > a:hover, .header-nav .header-list > li > a.current,
  .header-nav .header-list > li > span:hover,
  .header-nav .header-list > li > span.current {
    color: #bf9c61;
  }
  .header-nav .header-list > li > a:hover::after, .header-nav .header-list > li > a.current::after,
  .header-nav .header-list > li > span:hover::after,
  .header-nav .header-list > li > span.current::after {
    width: 100%;
  }
  .header-nav .header-list > li > span {
    cursor: pointer;
  }
  .header-nav .language {
    position: relative;
    height: 30px;
    margin: 0 40px 0 0;
  }
  .header-nav .language h2 {
    padding: 0 15px 0 24px;
    font-size: 14px;
    line-height: 16px;
    font-weight: bold;
    color: #6e6e6e;
    background-image: url(../images/common/header-lang.svg);
    background-repeat: no-repeat;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header-nav .language h2:hover {
    opacity: 0.8;
  }
  .header-nav .language h2::after {
    content: "";
    position: absolute;
    top: 5px;
    right: 0px;
    display: block;
    width: 5px;
    height: 5px;
    border-right: 1px solid #6e6e6e;
    border-bottom: 1px solid #6e6e6e;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .header-nav .language .lang-list {
    display: none;
    list-style: none;
    position: absolute;
    top: 26px;
    left: 0;
    width: 110px;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 5px rgba(51, 51, 51, 0.3);
            box-shadow: 0 2px 5px rgba(51, 51, 51, 0.3);
  }
  .header-nav .language .lang-list li:not(:last-child) {
    border-bottom: 1px solid #6e6e6e;
  }
  .header-nav .language .lang-list li a {
    display: block;
    font-size: 12px;
    color: #6e6e6e;
    line-height: 26px;
    text-align: center;
  }
  .header-rev a {
    display: block;
    width: 100px;
    height: 100px;
    padding: 60px 0 0;
    font-size: 14px;
    text-align: center;
    background-color: #bf9c61;
    color: #fff;
    background-image: url(../images/common/header-rev.svg);
    background-position: bottom 48px center;
    background-repeat: no-repeat;
    background-size: 31px auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header-rev a:hover {
    opacity: 0.8;
  }
  #footer {
    margin-top: 115px;
  }
  #footer .footer-nav {
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px 0;
    font-family: "Noto Serif JP", serif;
  }
  #footer .footer-nav li {
    padding: 0 23px;
    font-size: 14px;
    line-height: 1em;
  }
  #footer .footer-nav li:not(:last-child) {
    border-right: 1px solid #555555;
  }
  #footer .footer-nav li a {
    color: #555555;
  }
  #footer .footer-nav li a:hover {
    color: #bf9c61;
  }
  #footer .footer-bottom {
    background-color: #010037;
  }
  #footer .footer-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 1200px;
    max-width: 100%;
    margin: 0 auto 60px;
    padding: 60px 0 0;
    text-align: center;
  }
  #footer .footer-title a {
    display: block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #footer .footer-title a:hover {
    opacity: 0.8;
  }
  #footer .footer-title img {
    width: 90px;
  }
  #footer .footer-title::before, #footer .footer-title::after {
    content: "";
    width: calc(50% - 45px - 10px);
    height: 1px;
    background-color: #fff;
  }
  #footer .blands {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 45px;
  }
  #footer .blands h3:not(:last-child) {
    margin-right: 60px;
  }
  #footer .blands h3 a {
    display: block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #footer .blands h3 a:hover {
    opacity: 0.8;
  }
  #footer .blands h3.grand {
    width: 341px;
  }
  #footer .blands h3.mercure {
    width: 211px;
  }
  #footer .footer-hotels {
    width: 1200px;
    max-width: 100%;
    padding: 0 100px 0 0;
    margin: 0 auto;
    border-bottom: 1px solid #fff;
  }
  #footer .footer-hotels .area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0 0 25px;
  }
  #footer .footer-hotels .area .area-title {
    width: 130px;
    font-size: 16px;
    font-weight: normal;
    color: #fff;
  }
  #footer .footer-hotels .area ul {
    list-style: none;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  #footer .footer-hotels .area ul li {
    display: block;
    margin: 5px 0 15px;
    padding: 0 20px 0 0;
    font-family: "Karla", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1em;
  }
  #footer .footer-hotels .area ul li:not(:last-child) {
    margin-right: 20px;
    border-right: 1px solid #fff;
  }
  #footer .footer-hotels .area ul li a {
    color: #fff;
    text-decoration: underline;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #footer .footer-hotels .area ul li a:hover {
    opacity: 0.8;
  }
  #footer .footer-sns-wrapper {
    padding: 40px 0 40px 10px;
    background-color: #050033;
  }
  #footer .footer-sns-wrapper .col2 {
    display: flex;
    align-items: center;
    width: 1200px;
    margin: 0 auto;
  }
  #footer .footer-tel {
    flex: 1;
    margin: 0;
    font-size: 18px;
    color: #fff;
  }
  #footer .footer-tel h2 {
    margin-bottom: .125em;
    font-size: 18px;
    font-weight: normal;
  }
  #footer .footer-tel a  {
    color: #fff;
  }
  #footer .footer-sns {
    width: 50%;
    padding: 0 5px;
  }
  #footer .footer-sns a {
    display: inline-block;
    width: 25px;
    margin: 0 30px 0 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #footer .footer-sns a:hover {
    opacity: 0.8;
  }
  #footer .copyright {
    padding: 30px;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    line-height: 1em;
  }
  #footer .copyright small {
    font-size: 12px;
  }
  .wysiwyg {
    width: 1000px;
    margin: 0 auto;
  }
  .wysiwyg .post-title {
    margin-bottom: 10px;
    padding: 0 0 0.5em;
    font-size: 36px;
    line-height: 1.5em;
    border-bottom: 1px solid #010037;
  }
  .wysiwyg .date {
    margin-bottom: 50px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #bf9c61;
    text-align: right;
    letter-spacing: 0.1em;
  }
  .wysiwyg h2 {
    margin-bottom: 1em;
    font-size: 24px;
  }
  .wysiwyg h3 {
    margin-bottom: 1em;
    font-size: 20px;
  }
  .page-main {
    padding-top: 100px;
  }
  p {
    font-size: 16px;
    line-height: 1.875em;
    letter-spacing: 0.01em;
  }
  .section-title {
    text-align: center;
  }
  .section-title b,
  .section-title small {
    display: block;
  }
  .section-title b {
    position: relative;
    margin-bottom: 28px;
    font-family: "Cinzel", serif;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 0.05em;
  }
  .section-title b::after {
    content: "";
    position: absolute;
    top: 46px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: block;
    width: 20px;
    height: 3px;
    border-top: 1px solid #91723b;
    border-bottom: 1px solid #91723b;
  }
  .section-title small {
    font-family: "Noto Serif JP", serif;
    font-size: 14px;
    font-weight: 200;
    letter-spacing: 0.1em;
  }
  .btn-w {
    text-align: center;
    font-family: "Cinzel", serif;
  }
  .btn-w a {
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 350px;
    height: 60px;
    font-size: 14px;
    font-weight: bold;
    line-height: 60px;
    letter-spacing: 0.1em;
    text-align: center;
  }
  .btn-w a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .btn-w a:hover::before {
    width: 100%;
  }
  .btn-w a::after {
    position: absolute;
    bottom: 2px;
    right: 2px;
    content: "";
    display: block;
    width: 8px;
    height: 8px;
  }
  .btn-w a {
    background-color: #fff;
    color: #91723b;
    border: 1px solid #91723b;
  }
  .btn-w a::before {
    background-color: #bf9c61;
  }
  .btn-w a::after {
    background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, #bf9c61 50%, #bf9c61 100%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, #bf9c61 50%, #bf9c61 100%);
  }
  .btn-w a:hover {
    color: #fff;
  }
  .btn-w a:hover::after {
    background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, #fff 50%, #fff 100%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, #fff 50%, #fff 100%);
  }
  .front-mv {
    position: relative;
    z-index: 1;
    height: 100vh;
    min-height: 600px;
	width: 100%;
  }
  .front-mv::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-image: url(../images/common/filter.png);
    pointer-events: none;
  }
  .front-mv .mv-inner {
    position: absolute;
    top: calc(50% + 100px);
    left: 50%;
    z-index: 99;
    /*width: 1200px;*/ /*231113変更*/
	width: min(1280px,95vw);
    max-width: 100%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    color: #fff;
  }
  .front-mv .mv-inner .mv-title {
    font-family: "Noto Serif JP", serif;
    font-size: 36px;
    font-weight: 300;
    line-height: 1.5em;
    margin-bottom: 25px;
    letter-spacing: 0.1em;
  }
  .front-mv video {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
    max-width: 2560px;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
  #mv-slider {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  #mv-slider .swiper-wrapper {
    width: 100%;
    height: 100%;
  }
  #mv-slider .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
  }
  #mv-slider .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
  #mv-slider .mv-pagination {
    position: absolute;
    z-index: 99;
    bottom: 20px;
    left: 0;
    text-align: center;
  }
  #mv-slider .mv-pagination .swiper-pagination-bullet {
    width: 60px;
    height: 2px;
    margin: 0 10px;
    background-color: rgba(255, 255, 255, 0.8);
    opacity: 1;
    border-radius: 0;
  }
  #mv-slider .mv-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: rgba(191, 156, 97, 0.8);
  }
  .front-spend {
    padding: 130px 0 0;
  }
  .front-spend .section-title {
    margin-bottom: 70px;
  }
  .front-spend .inner {
    position: relative;
    width: 1400px;
    max-width: 100%;
    margin: 0 auto 125px;
  }
  .front-spend .inner:last-child {
    margin-bottom: 0;
  }
  .front-spend .inner .left {
    width: 1000px;
    height: 530px;
    max-width: 70%;
  }
  .front-spend .inner .left img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    margin-bottom: 5px;
  }
  .front-spend .inner .left .sp-pagination {
    position: absolute;
    z-index: 99;
    bottom: 20px;
    left: 0;
    padding: 0 15px;
  }
  .front-spend .inner .left .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 4px;
    background-color: rgba(255, 255, 255, 0.8);
    opacity: 1;
  }
  .front-spend .inner .left .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: rgba(191, 156, 97, 0.8);
  }
  .front-spend .inner.rev .left {
    margin: 0 0 0 auto;
  }
  .front-spend .inner.rev .left .sp-pagination {
    text-align: right;
  }
  .front-spend .inner.rev .text {
    left: 0;
    right: auto;
    padding: 55px 60px 55px 0;
    background-image: url(../images/front/motif-left.png);
    background-position: right bottom;
  }
  .front-spend .inner .text {
    position: absolute;
    right: 0;
    bottom: -1px;
    z-index: 99;
    width: 660px;
    padding: 55px 0 55px 60px;
    background-color: #fff;
    background-image: url(../images/front/motif-right.png);
    background-position: left bottom;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .front-spend .inner .text h3 {
    margin-bottom: 1em;
    font-family: "Cinzel", serif;
    font-size: 26px;
    color: #bf9c61;
    line-height: 1.5em;
    letter-spacing: 0.05em;
  }
  .front-spend .inner .text h4 {
    margin-bottom: 1em;
    font-family: "Noto Serif JP", serif;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.1em;
  }
  .front-spend .inner .text p {
    margin-bottom: 0.5em;
    font-weight: 300;
  }
  .front-spend .inner .text p:last-child {
    margin-bottom: 0;
  }
  .front-gallery {
    padding: 150px 0 0;
  }
  .front-gallery .section-title {
    margin-bottom: 55px;
  }
  #galleryTop,
  #galleryBottom {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    padding: 5px 0;
    pointer-events: none;
  }
  #galleryTop .swiper-wrapper,
  #galleryBottom .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
            transition-timing-function: linear !important;
  }
  #galleryTop .swiper-slide a,
  #galleryBottom .swiper-slide a {
    display: block;
    background-color: #fff;
    color: #010037;
  }
  #galleryTop .swiper-slide img,
  #galleryBottom .swiper-slide img {
    aspect-ratio: 16/10;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .front-access {
    width: 1400px;
    max-width: 100%;
    padding: 150px 0 0;
    margin: 0 auto 150px;
  }
  .front-access .section-title {
    margin-bottom: 60px;
  }
  .front-access .inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .front-access .inner .gmap-wrapper {
    height: 400px;
    overflow: hidden;
  }
  .front-access .inner .gmap {
    width: 700px;
    margin-right: 20px;
  }
  .front-access .inner .gmap iframe {
    height: 400px;
  }
  .front-access .inner .text {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 20px 20px 20px 0;
  }
  .front-access .inner .text h3 {
    margin-bottom: 15px;
    font-family: "Karla", sans-serif;
    font-size: 22px;
    font-weight: normal;
    color: #bf9c61;
  }
  .front-access .inner .text > p {
    font-weight: 300;
  }
  .front-access .inner .text address {
    font-style: normal;
    font-weight: 300;
  }
  .front-access .inner .text address p {
    font-size: 14px;
    margin-bottom: 0.75em;
  }
  .front-access .inner .text address a {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: #bf9c61;
    line-height: 1.5em;
    border-bottom: 1px solid #bf9c61;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .front-access .inner .text address a:hover {
    opacity: 0.8;
  }
  .front-access .inner .text address a::after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 0 0 2px 1em;
    border-right: 1px solid #bf9c61;
    border-bottom: 1px solid #bf9c61;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .front-info .section-title {
    margin-bottom: 30px;
  }
  .front-info .inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
  }
  .front-info .inner .info-left {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .front-info .inner .info-right {
    width: calc(50% - 40px);
    margin-left: 40px;
  }
  .front-info .inner h3 {
    margin-bottom: 1em;
    font-size: 18px;
    font-weight: 300;
    text-align: center;
  }
  .front-info .inner h4 {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75em;
  }
  .info-list {
    list-style: none;
    margin-bottom: 60px;
    border-top: 1px solid #999999;
  }
  .info-list > li {
    padding: 30px 18px;
    border-bottom: 1px solid #999999;
  }
  .info-list > li a {
    display: block;
  }
  .info-list > li a:hover h4 {
    text-decoration: underline;
  }
  .info-list > li p {
    margin-bottom: 0;
  }
  .info-list > li .date-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1em;
  }
  .info-list > li .date-wrapper .date {
    width: 120px;
    font-size: 14px;
    font-weight: bold;
    color: #bf9c61;
  }
  .info-list > li .cat {
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .info-list > li .cat li {
    display: inline-block;
    margin-right: 8px;
    padding: 0.6em 2em 0.5em;
    font-size: 10px;
    font-weight: 400;
    line-height: 1em;
    border: 1px solid #010037;
  }
  .page-header .inner {
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
  }
  .page-header .inner.with-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: #fff;
    border-top: none;
  }
  .page-header .inner .page-title {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    padding: 100px 0;
    font-size: 32px;
    line-height: 40px;
  }
  .page-header .inner .page-title b {
    display: block;
    margin-bottom: 5px;
    font-family: "Cinzel", serif;
    font-size: 50px;
    font-weight: bold;
    letter-spacing: 0.05em;
  }
  .page-header .inner .page-title b.mb2 {
    margin-bottom: 20px;
  }
  .page-header .inner .page-title small {
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.1em;
  }
  .pankz {
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 1400px;
    max-width: 100%;
    margin: 20px auto 60px;
    font-size: 14px;
    font-weight: 300;
  }
  .pankz li {
    margin-left: 6px;
  }
  .pankz li:not(:last-child)::after {
    content: "|";
    margin-left: 4px;
  }
  .archive-wrapper {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
  }
  .info-section {
    padding: 30px 18px;
    border-bottom: 1px solid #eee;
  }
  .info-section a {
    display: block;
  }
  .info-section h2 {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75em;
  }
  .info-section p {
    margin-bottom: 0;
  }
  .info-section .date-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1em;
  }
  .info-section .date-wrapper .date {
    width: 120px;
    font-size: 14px;
    font-weight: bold;
    color: #bf9c61;
  }
  .info-section .cat {
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .info-section .cat li {
    display: inline-block;
    margin-right: 8px;
    padding: 0.6em 2em 0.5em;
    font-size: 10px;
    font-weight: 400;
    line-height: 1em;
    border: 1px solid #010037;
  }
  .wp-pagenavi {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 1200px;
    max-width: 100%;
    margin: 80px auto 0;
    font-size: 19px;
    font-weight: normal;
  }
  .wp-pagenavi > a,
  .wp-pagenavi > span {
    display: inline-block;
    min-width: 40px;
    margin: 0 10px;
    line-height: 40px;
    text-align: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .wp-pagenavi > a:hover,
  .wp-pagenavi > span:hover {
    background-color: #010037;
    color: #fff;
  }
  .wp-pagenavi .current {
    background-color: #010037;
    color: #fff;
  }
}