@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500&display=swap");
/* ===========================================================================

/assets/sass/common/_reset.scss
Reset

=========================================================================== */
body {
  /* webkit系のスマホで文字が拡大されるのを防ぐ */
  -webkit-text-size-adjust: 100%;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, hr {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: inherit;
  font-size: 100%;
  vertical-align: baseline;
  text-decoration: none;
}

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

html {
  overflow-y: scroll;
}

blockquote, q {
  quotes: none;
}

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

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  /* 必要に応じて下記はコメントアウト */
  /*
 -webkit-appearance: none;
 -moz-appearance: none;
 appearance: none;
*/
}

ol, ul {
  list-style: none;
}

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

a:focus {
  outline: none;
}

img {
  vertical-align: bottom;
}

a, span, small, strong {
  color: inherit;
  font-weight: inherit;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 1.75;
  font-size: 1.6rem;
}

@media screen and (min-width: 767px) {
  body {
    min-width: 1030px;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

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

h1,
h2,
h3 {
  font-family: "Amiri";
  color: #ba0c1b;
  line-height: 1.3;
}

h1 a,
h2 a,
h3 a {
  color: #ba0c1b;
}

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

a {
  text-decoration: none;
  color: #fff;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

a:hover {
  opacity: 0.75;
  -webkit-filter: opacity(75);
          filter: opacity(75);
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
            transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
            transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

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

.d-flex {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #fff;
}

.container-fluid {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.container {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 767px) {
  .container {
    width: 1030px;
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
    margin-right: auto;
    margin-left: auto;
  }
}

.site-header {
  z-index: 10;
  width: 100%;
  position: fixed;
  left: 0;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.site-header .nav-logo {
  background-color: #000;
  text-align: center;
  position: relative;
  padding: 30px 20px;
}

@media screen and (max-width: 767px) {
  .site-header .nav-logo {
    padding: 15px 0;
  }
}

@media screen and (max-width: 767px) {
  .site-header .nav-logo .tel-menu {
    display: none;
  }
}

.site-header .tel-menu {
  font-family: "Amiri";
  font-size: 20px;
}

@media screen and (min-width: 768px) {
  .site-header .tel-menu {
    position: absolute;
    right: 20px;
    top: 0;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.site-header .tel-menu span {
  font-size: 30px;
  display: inline-block;
  margin-top: -8px;
  margin-left: 10px;
}

.site-header .container-fluid {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .site-header .container-fluid {
    height: 40px;
  }
}

.site-header .site-title {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .site-header .site-title {
    max-width: 200px;
    display: inline-block;
  }
}

.site-header .site-branding {
  z-index: 1;
}

.site-header .main-navigation .menu-toggle {
  display: none;
  margin-right: -15px;
  width: 45px;
  height: 45px;
  padding: 12px 10px;
  position: absolute;
  right: 20px;
  top: 5px;
  cursor: pointer;
  z-index: 1;
}

.site-header .main-navigation .menu-toggle .icon-menu {
  display: block;
  background-color: #fff;
  position: relative;
  width: 100%;
  height: 2px;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.site-header .main-navigation .menu-toggle .icon-menu + .icon-menu {
  margin-top: 7px;
}

@media screen and (max-width: 767px) {
  .site-header .main-navigation .menu-toggle {
    display: block;
  }
}

.site-header .header-menu {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
}

.site-header .header-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-header .header-menu ul li a {
  text-align: center;
}

.site-header .header-menu ul:last-child {
  display: none;
}

@media screen and (max-width: 767px) {
  .site-header .header-menu ul:last-child {
    display: block;
  }
}

.site-header .header-menu #main-menu {
  width: 100%;
}

@media screen and (min-width: 769px) {
  .site-header .header-menu #main-menu {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 769px) {
  .site-header .header-menu #main-menu li {
    width: calc(100% / 4);
  }
}

.site-header .header-menu #main-menu li a {
  position: relative;
  display: block;
  color: #fff;
  padding: 10px;
  min-width: 160px;
  text-align: center;
  font-size: 16px;
}

.site-header .header-menu #main-menu li a span {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  font-family: "Amiri";
}

.site-header .header-menu #main-menu li a:hover {
  background: #000;
}

@media screen and (min-width: 768px) {
  .site-header .header-menu #main-menu li a:before {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    left: 0;
    top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
  }
  .site-header .header-menu #main-menu li:first-child a:before {
    content: none;
  }
}

@media screen and (max-width: 767px) {
  .site-header .header-menu {
    width: 100%;
    height: 100%;
    -webkit-transform: translateX(100%) scaleX(0);
            transform: translateX(100%) scaleX(0);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    max-height: 0;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px 0;
  }
  .site-header .header-menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .site-header .header-menu #main-menu li a {
    margin-left: auto;
    margin-right: auto;
    font-size: 1.8rem;
    padding: 0;
  }
  .site-header .header-menu #main-menu li a span {
    font-size: 1.4rem;
  }
  .site-header .header-menu #main-menu li + li {
    margin-top: 20px;
  }
}

.site-header.open .main-navigation .icon-menu:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 9px;
}

.site-header.open .main-navigation .icon-menu:nth-child(2) {
  opacity: 0;
}

.site-header.open .main-navigation .icon-menu:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: -9px;
}

.site-header.open .header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .site-header.open .header-menu {
    -webkit-transform: translateX(0) scaleX(1);
            transform: translateX(0) scaleX(1);
    max-height: 1000px;
  }
}

@media screen and (max-width: 767px) {
  .site-header.open.position-fixed {
    height: 100%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .site-header.page-head .site-branding, .site-header.position-fixed .site-branding {
    z-index: 1;
    width: 220px;
  }
}

.site-header.position-fixed {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.site-footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  position: relative;
}

.site-footer .site-info {
  margin: 30px 0;
}

@media screen and (min-width: 768px) {
  .site-footer .site-info {
    margin: 60px 0;
  }
}

.site-footer .site-info .foo-addr {
  margin: 20px 0;
}

@media screen and (min-width: 768px) {
  .site-footer .site-info .foo-addr {
    margin: 40px 0;
  }
}

.site-footer .site-info .foo-addr .foo-tel {
  font-size: 30px;
  margin-top: 5px;
  font-family: "Amiri";
}

.site-footer .site-info .foo-btn {
  padding: 0;
  margin: 0;
  list-style: none;
  font-family: "Amiri";
  letter-spacing: 1px;
  font-size: 2rem;
}

@media screen and (min-width: 768px) {
  .site-footer .site-info .foo-btn {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .site-footer .site-info .foo-btn li + li {
    margin-left: 15px;
  }
}

.site-footer .site-info .foo-btn li a {
  width: 300px;
  height: 60px;
  display: block;
  background-color: #fff;
  color: #ba0c1b;
  padding: 15px 15px;
  text-align: center;
}

@media screen and (max-width: 575px) {
  .site-footer .site-info .foo-logo img {
    max-width: 150px;
  }
  .site-footer .site-info .foo-btn li a {
    width: 280px;
    padding: 10px 15px;
    text-align: center;
    font-size: 1.8rem;
    height: 46px;
  }
}

.site-footer .copyright {
  padding-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .site-footer .foo-btn li + li {
    margin-top: 15px;
  }
  .site-footer .foo-btn li a {
    margin-left: auto;
    margin-right: auto;
  }
}

.page-top {
  -webkit-transform: rotate(90deg) translateY(-100%);
          transform: rotate(90deg) translateY(-100%);
  position: fixed;
  right: 0;
  background-color: #ba0c1b;
  width: 170px;
  height: 60px;
  padding: 20px 10px 10px 30px;
  text-align: center;
  bottom: 45px;
  margin-bottom: 0;
  font-family: "Amiri";
  color: #fff;
  cursor: pointer;
}

.page-top:after {
  content: '';
  width: 25px;
  height: 1px;
  border-top: 1px solid #fff;
  position: absolute;
  left: 15px;
  top: calc(50% + 3px);
}

.page-top:before {
  content: '';
  width: 6px;
  height: 1px;
  border-top: 1px solid #fff;
  position: absolute;
  left: 15px;
  top: calc(50% + 1px);
  -webkit-transform: rotate(45deg);
  transform: rotate(-45deg);
}

@media screen and (max-width: 575px) {
  .page-top {
    width: 130px;
    height: 40px;
    padding: 15px 10px 10px 40px;
    margin-bottom: -20px;
    line-height: 1;
  }
}

.page-header {
  height: 300px;
  padding-top: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-position: center;
  background-size: cover;
  color: #fff;
  font-size: 40px;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .page-header {
    height: 500px;
    padding-top: 120px;
  }
}

.page-header .inner {
  background: rgba(186, 12, 27, 0.6);
  padding: 30px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.page-header span {
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Amiri";
  margin-bottom: 10px;
}

.content-area .sec-title {
  font-weight: normal;
  text-align: center;
  color: #000;
  font-size: 36px;
}

@media screen and (max-width: 767px) {
  .content-area .sec-title {
    font-size: 28px;
  }
}

.content-area .sec-title span {
  display: block;
  font-size: 16px;
  color: #ba0c1b;
  letter-spacing: 1px;
  margin-top: 20px;
  padding-top: 30px;
  position: relative;
}

.content-area .sec-title span:before {
  content: '';
  width: 80px;
  height: 5px;
  border-top: 4px double #ba0c1b;
  position: absolute;
  top: 0;
  left: calc(50% - 40px);
}

.content-area .sec-title span:after {
  content: '';
  width: 80px;
  height: 1px;
  background-color: #ba0c1b;
  position: absolute;
  left: calc(50% - 40px);
  top: 6px;
}

#primary.d-flex {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 10%;
  margin-bottom: 10%;
}

#primary.d-flex #main {
  width: 100%;
}

#primary.d-flex aside {
  width: 100%;
}

@media screen and (min-width: 768px) {
  #primary.d-flex {
    margin-top: 100px;
    margin-bottom: 100px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #primary.d-flex #main {
    width: 690px;
  }
  #primary.d-flex aside {
    width: 240px;
  }
}

@media screen and (max-width: 575px) {
  #primary.d-flex {
    display: block;
  }
}

.post-block {
  border-top: 4px double #ba0c1b;
  padding-top: 20px;
  position: relative;
}

.post-block:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  border-top: 1px double #ba0c1b;
  width: 100%;
  height: 1px;
}

.post-block .post-date {
  text-align: right;
}

.post-block .post-title {
  font-size: 22px;
  font-weight: normal;
  margin: 20px 0 40px;
  border-bottom: 1px solid #9d9d9d;
  padding-bottom: 30px;
  line-height: 1.36364;
  color: #000000;
}

.post-block .post-content .post-text p {
  margin: 0 0 1.5em;
  line-height: 1.875;
  text-align: justify;
}

.post-block .post-content .caption {
  margin-top: 10px;
}

.post-block + .post-block {
  margin-top: 10%;
}

@media screen and (min-width: 768px) {
  .post-block + .post-block {
    margin-top: 100px;
  }
}

@media screen and (max-width: 767px) {
  .post-block .post-title {
    font-size: 18px;
    margin: 20px 0 20px;
    padding-bottom: 10px;
  }
}

.widget-area .widget {
  margin-bottom: 50px;
}

.widget-area .widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget-area .widget ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 0.5em;
  font-size: 14px;
  overflow: hidden;
}

.widget-area .widget ul li:before {
  content: '';
  background-color: #ba0c1b;
  position: absolute;
  left: 0;
  top: 6px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
}

.widget-area .widget ul a {
  color: #000;
  text-decoration: underline;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}

.widget-area .widget ul a:hover {
  text-decoration: none;
}

.widget-area .widget-title,
.widget-area .widget_calendar caption {
  color: #ffffff;
  background: #000000;
  padding: 5px;
  margin-bottom: 5px;
  font-size: 18px;
  text-align: center;
}

.widget-area .widget_calendar table {
  margin-bottom: 0;
  width: 100%;
  text-align: center;
}

.widget-area .widget_calendar table tfoot td {
  text-align: center;
}

.widget-area .widget_calendar a {
  color: #ba0c1b;
}

.widget-area h2.widget-title {
  margin: 0 0 15px;
}

.widget-area .widget_calendar caption {
  font-size: 16px;
}

.pager {
  margin: 80px auto;
  text-align: center;
}

.pager a, .pager span {
  color: #000000;
  border: 1px solid #000000 !important;
  text-align: center;
  padding: 5px 13px;
}

.pager .current,
.pager a:hover {
  color: #fff;
  background-color: #000000;
  border: 1px solid #000000 !important;
}

#top-slide .slick-slide img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  #top-slide .slick-slide img {
    -o-object-fit: cover;
       object-fit: cover;
    font-family: 'object-fit: cover;';
    height: 450px;
  }
}

@media screen and (min-width: 1200px) {
  .home .container-fluid {
    width: 1030px;
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
    margin-right: auto;
    margin-left: auto;
  }
}

.home .posts-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (min-width: 768px) {
  .home .posts-list {
    margin-left: -25px;
    margin-right: -25px;
  }
}

.home .posts-list .post-img {
  border: 1px solid #dcdcdc;
  width: 162px;
}

.home .posts-list .post-img img {
  vertical-align: bottom;
}

.home .posts-list .title {
  margin-top: 5px;
  color: #000;
  width: calc(100% - 162px);
  padding-left: 20px;
}

@media screen and (max-width: 575px) {
  .home .posts-list .posts-list {
    padding-left: 7px;
    padding-right: 7px;
  }
}

.home .posts-list .post-item {
  width: 50%;
  margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .home .posts-list .post-item {
    padding-left: 25px;
    padding-right: 25px;
    margin-bottom: 30px;
  }
}

.home .posts-list .post-item a {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .home .posts-list .post-item {
    width: 100%;
  }
}

.home .btn-more {
  width: 220px;
  height: 35px;
  background-color: #ba0c1b;
  text-align: center;
  padding: 3px 10px;
  letter-spacing: 1px;
  position: relative;
  font-family: "Amiri";
  display: inline-block;
  margin-top: 10px;
}

.home .btn-more:after {
  content: '';
  width: 25px;
  height: 1px;
  border-top: 1px solid #fff;
  position: absolute;
  right: 10px;
  top: calc(50% + 3px);
}

.home .btn-more:before {
  content: '';
  width: 6px;
  height: 1px;
  border-top: 1px solid #fff;
  position: absolute;
  right: 10px;
  top: calc(50% + 1px);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.home .btn-more.btn-large {
  width: 230px;
  height: 55px;
  padding: 18px 10px;
}

.home section h2.sec-title {
  font-weight: normal;
  letter-spacing: 1px;
  font-size: 34px;
  margin: 0;
  font-family: "Amiri";
}

@media screen and (max-width: 767px) {
  .home section h2.sec-title {
    font-size: 28px;
  }
}

.home section h2.sec-title span {
  display: block;
  font-size: 16px;
  font-weight: normal;
  color: #000;
}

.home #reservation {
  position: relative;
}
.home #reservation .bnr{
  padding-top: 60px;
}
.home #reservation .search {
  background-color: #fff;
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .home #reservation .bnr{
    padding-top: 30px;
  }
  .home #reservation .search {
    padding: 30px 3%;
  }
}

.home #reservation .search .reserve {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.home #reservation .search .reserve h2 {
  font-size: 16px;
  text-align: center;
  color: #000;
  width: 100%;
}

.home #reservation .search .reserve h2 + div {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .home #reservation .search .reserve h2 {
    width: 30%;
  }
  .home #reservation .search .reserve h2 + div {
    width: 70%;
  }
}

.home #reservation .search .reserve h2 span {
  color: #ba0c1b;
  font-weight: normal;
  font-size: 34px;
  display: block;
}

@media screen and (max-width: 767px) {
  .home #reservation .search .reserve h2 {
    width: 100%;
    margin-bottom: 20px;
  }
  .home #reservation .search .reserve h2 span {
    font-size: 28px;
  }
}

.home #reservation .search .reserve form {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .home #reservation .search .reserve form {
    width: 100%;
  }
}

.home #reservation .search .reserve form dd {
  position: relative;
  margin: 0;
}

.home #reservation .search .reserve form .date_489ban {
  width: 240px;
  margin-right: 10px;
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .home #reservation .search .reserve form .date_489ban {
    width: 45%;
    margin-right: 0;
  }
}

.home #reservation .search .reserve form .date_489ban dd input[name="date"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 90px;
  line-height: 90px;
  font-size: 26px;
  padding-left: 15px;
  width: 100%;
  margin-right: 5px;
  border-radius: 0;
  border: 1px #dcdcdc solid;
  background: url(../images/common/icon_calendar.png) no-repeat right 25px center #fff;
}

@media screen and (max-width: 767px) {
  .home #reservation .search .reserve form .date_489ban dd input[name="date"] {
    height: 45px;
    line-height: 45px;
    font-size: 16px;
    padding-left: 10px;
    background-size: 13px;
    background-position: right 10px center;
  }
}

.home #reservation .search .reserve form .date_489ban dd label {
  margin-top: 10px;
  display: block;
}

.home #reservation .search .reserve form .date_489ban dd label input[type="checkbox"] {
  vertical-align: middle;
  margin-top: -10px;
  margin-right: 5px;
}

.home #reservation .search .reserve form .inbox_489ban {
  width: 180px;
  margin-right: 10px;
}

@media screen and (max-width: 767px) {
  .home #reservation .search .reserve form .inbox_489ban {
    width: 30%;
    padding: 0 10px;
    margin-right: 0;
  }
}

.home #reservation .search .reserve form .inbox_489ban .stay_489ban {
  margin: 0;
}

.home #reservation .search .reserve form .inbox_489ban .stay_489ban #stay_label {
  width: 100%;
  height: 90px;
  font-size: 26px;
  border: 1px #dcdcdc solid;
  background: #fff;
  line-height: 90px;
  padding-left: 20px;
}

@media screen and (max-width: 991px) {
  .home #reservation .search .reserve form .inbox_489ban .stay_489ban #stay_label {
    height: 45px;
    font-size: 16px;
    line-height: 45px;
    padding-left: 10px;
  }
}

.home #reservation .search .reserve form .inbox_489ban .stay_489ban select {
  border: 1px solid #dcdcdc;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  height: 100%;
}

.home #reservation .search .reserve form .inbox_489ban dd:after {
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  top: calc(50% - 10px);
  right: 20px;
  background: url(../images/common/icon_arrow_bottom.png) no-repeat right center;
}

@media screen and (max-width: 991px) {
  .home #reservation .search .reserve form dt label {
    margin-bottom: 5px;
    display: block;
  }
}

.home #reservation .search .reserve button[name="searchButton489ban"] {
  background: url(../images/common/icon_search.png) no-repeat left 50px center #ba0c1b;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  border: none;
  outline: none;
  width: 200px;
  height: 90px;
  line-height: 90px;
  font-size: 18px;
  padding-left: 25px;
  color: #fff;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
  margin-top: 24px;
  border-radius: 0;
}

@media screen and (max-width: 767px) {
  .home #reservation .search .reserve button[name="searchButton489ban"] {
    width: 25%;
    height: 45px;
    line-height: 45px;
    font-size: 14px;
    padding-left: 18px;
    background-position: left 10px center;
    background-size: 15px;
    margin-top: 29px;
  }
}

.home #reservation .box {
  color: #fff;
  padding: 15% 15px;
}

@media screen and (min-width: 768px) {
  .home #reservation .box {
    padding: 50px 0 80px;
  }
}

@media screen and (max-width: 767px) {
  .home #reservation .box {
    background: url(../images/top/bg01.jpg) 0 0;
    background-size: cover;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 450px;
  }
}

.home #reservation .box p {
  margin-bottom: 0;
}

.home #reservation .box .title {
  font-size: 18px;
}

.home #reservation .box .title span {
  font-size: 20px;
}

@media screen and (min-width: 768px) {
  .home #reservation .box .title span {
    font-size: 30px;
  }
}

.home #reservation .menu {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
  margin-top: 5px;
  padding-top: 20px;
  border-top: 1px solid #dcdcdc;
}

.home #reservation .menu li a {
  color: #000;
  position: relative;
  padding-right: 30px;
  padding-left: 25px;
}

.home #reservation .menu li a:after {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  right: 0;
  top: calc(50% - 5px);
  background: url(../images/common/icon_arrow.png) no-repeat center center;
}

.home #reservation .menu li:first-child a {
  background: url(../images/common/icon_bag.png) no-repeat left;
}

.home #reservation .menu li:nth-child(2) a {
  background: url(../images/common/icon_night.png) no-repeat left;
}

.home #reservation .menu li:nth-child(3) a {
  background: url(../images/common/icon_calendar.png) no-repeat left;
}

.home #reservation .menu li + li {
  margin-left: 28px;
}

@media screen and (max-width: 767px) {
  .home #reservation .menu li {
    width: 50%;
    margin: 0 0 10px;
  }
  .home #reservation .menu li + li {
    margin-left: 0;
  }
  .home #reservation .menu li:last-child a {
    padding-left: 0;
  }
}

@media screen and (max-width: 575px) {
  .home #reservation .menu li:nth-child(3), .home #reservation .menu li:last-child {
    width: 100%;
  }
}

.home #intro {
  padding: 4.16667% 0 6.94444%;
  background-color: #f0f0f0;
  position: relative;
}

.home #intro .title {
  font-size: 26px;
}

.home #intro .box {
  line-height: 3;
}

@media screen and (max-width: 767px) {
  .home #intro .box {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.home #intro:after {
  content: url(../images/top/grid1.png);
  position: absolute;
  bottom: -7px;
  left: calc(50% - calc(140px / 2));
}

@media screen and (max-width: 767px) {
  .home #intro {
    padding-bottom: 80px;
  }
  .home #intro .title {
    font-size: 20px;
    line-height: 1.5;
  }
}

.home #show-case .container-fluid {
  padding: 30px;
  width: 100%;
  overflow: hidden;
}

.home #show-case .case-sec {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 50%;
}

.home #show-case .case-sec#case1 {
  background-image: url(../images/top/sec01.jpg);
}

.home #show-case .case-sec#case2 {
  background-image: url(../images/top/sec02.jpg);
}

.home #show-case .case-sec#case3 {
  background-image: url(../images/top/sec03.jpg);
}

.home #show-case .box-panel {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  min-height: 30.143vw;
  width: 100%;
  max-width: 422px;
  padding: 20px;
}

@media screen and (min-width: 768px) {
  .home #show-case .box-panel {
    width: 422px;
    min-height: 422px;
    padding: 50px;
  }
}

@media screen and (min-width: 769px) {
  .home #show-case .box-panel.box-right {
    float: right;
  }
}

.home #show-case .box-panel h3 {
  font-size: 20px;
  background: url(../images/top/line_bg.png) no-repeat left bottom;
  padding-bottom: 20px;
  margin-bottom: 20px;
  color: #fff;
}

.home #news {
  padding: 30px 0;
}

@media screen and (min-width: 768px) {
  .home #news {
    padding: 50px 0;
  }
}

.home #news .sec-header {
  margin: 0 0 30px;
}

@media screen and (min-width: 768px) {
  .home #news .sec-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 0 50px;
  }
}

@media screen and (max-width: 767px) {
  .home #news .sec-header {
    text-align: center;
  }
}

.home #guide {
  padding: 50px 0;
  position: relative;
}

.home #guide > .container {
  width: 100%;
}

.home #guide:before {
  content: '';
  background-color: #f0f0f0;
  background-image: url(../images/top/grid2.png);
  background-repeat: repeat-y;
  width: 100%;
  height: 300px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .home #guide {
    padding: 30px 0;
  }
  .home #guide:before {
    content: '';
    height: 25vw;
  }
}

@media screen and (max-width: 767px) {
  .home #guide:before {
    height: 40px;
    background-position: center top;
    background-size: 40px auto;
  }
}

@media screen and (min-width: 768px) {
  .home #guide .text-box .sec-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .home #guide .text-box .sec-header h2 {
    width: 30%;
    text-align: center;
  }
  .home #guide .text-box .sec-header .desc {
    width: 70%;
    padding-left: 20px;
  }
}

@media screen and (max-width: 767px) {
  .home #guide .text-box .sec-header {
    text-align: center;
  }
  .home #guide .text-box .sec-header .desc {
    margin: 15px 0 0;
  }
}

.home #guide .btn-more {
  position: relative;
  display: inline-block;
  margin-top: 50px;
  z-index: 1;
}

.home #guide .row-img {
  text-align: center;
  margin-top: -30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.home #access {
  text-align: center;
}

.home #access .desc {
  margin: 40px 0 50px;
}

.home #access #map-canvas {
  margin-top: 60px;
  display: block;
}

.home #access #map-canvas iframe {
  width: 100%;
  display: block;
}

.home .svg-col {
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .home .svg-col {
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 768px) {
  .home .svg-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-left: -30px;
    margin-right: -30px;
  }
  .home .svg-col {
    width: 50%;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.home .sec-img {
  padding-bottom: 80px;
}

.page-guide .tab-nav {
  margin: 30px 0 70px;
}

.page-guide .tab-nav ul {
  padding: 0;
  margin: 0;
  display: block;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .page-guide .tab-nav ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .page-guide .tab-nav li {
    width: calc(calc(100% / 3) - 1px);
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .page-guide .tab-nav li {
    width: 100%;
    margin-bottom: 15px;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
}

.page-guide .tab-nav a {
  border: 1px solid #000000;
  background-color: #000000;
  color: #ffffff;
  display: block;
  padding: 20px 10px;
  position: relative;
}

.page-guide .tab-nav a:after {
  content: '';
  width: 25px;
  height: 1px;
  border-top: 1px solid #fff;
  position: absolute;
  right: 25px;
  top: calc(50% + 3px);
}

.page-guide .tab-nav a:before {
  content: '';
  width: 6px;
  height: 1px;
  border-top: 1px solid #fff;
  position: absolute;
  right: 25px;
  top: calc(50% + 1px);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.page-guide .tab-nav a:hover {
  background-color: #FFF;
  color: #000000;
  border: 1px solid #000000;
}

.page-guide .tab-nav a:hover:before, .page-guide .tab-nav a:hover:after {
  content: '';
  border-color: #000;
}

.page-guide #intro .desc {
  text-align: center;
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .page-guide #intro .desc {
    margin-top: 10%;
  }
}

.page-guide #guest-room {
  padding: 60px 0;
  background-color: #f0f0f0;
}

.page-guide #room-nav ul {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20px;
  padding-right: 20px;
}

.page-guide #room-nav ul li {
  width: calc(calc(100% / 2) - 10px);
  margin-bottom: 20px;
  margin-top: 0;
  border: 4px solid #ba0c1b;
}

@media screen and (max-width: 480px) {
  .page-guide #room-nav ul li {
    width: 100%;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
}

.page-guide #room-nav ul li a {
  display: block;
  position: relative;
  border: 1px solid #fff;
}

.page-guide #room-nav ul li a img {
  width: 100%;
}

.page-guide #room-nav ul li a span {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(186, 12, 27, 0.9);
  padding: 15px;
}

@media screen and (min-width: 768px) {
  .page-guide #room-nav ul li a span {
    padding: 16px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .page-guide #room-nav ul li a span {
    padding: 8px 15px;
  }
}

.page-guide #room-nav ul li a span:after {
  content: '';
  width: 25px;
  height: 1px;
  border-top: 1px solid #fff;
  position: absolute;
  right: 25px;
  top: calc(50% + 3px);
}

.page-guide #room-nav ul li a span:before {
  content: '';
  width: 6px;
  height: 1px;
  border-top: 1px solid #fff;
  position: absolute;
  right: 25px;
  top: calc(50% + 1px);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.page-guide #room-nav + .container {
  margin-top: 70px;
}

.page-guide #guest-room .desc {
  text-align: center;
  margin: 40px 0 70px;
}

.page-guide .sec-area {
  margin-bottom: 50px;
}

.page-guide .sec-area#service {
  margin-bottom: 100px;
}

@media screen and (min-width: 1200px) {
  .page-guide .sec-area {
    margin-bottom: 100px;
  }
  .page-guide .sec-area#service {
    margin-bottom: 200px;
  }
}

.page-guide .sec-area .table {
  margin-top: 50px;
}

.page-guide .sec-area .table table {
  width: 100%;
}

.page-guide .sec-area .table table td, .page-guide .sec-area .table table th {
  padding: 15px;
}

@media screen and (max-width: 767px) {
  .page-guide .sec-area .table table td, .page-guide .sec-area .table table th {
    padding: 10px;
  }
}

.page-guide .sec-area .table table th {
  background-color: #707070;
  color: #fff;
  width: 250px;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .page-guide .sec-area .table table th {
    width: 110px;
  }
}

.page-guide .sec-area .table table td {
  text-align: left;
}

.page-guide .table h3 {
  color: #aa0b19;
  margin: 0 0 30px;
  font-size: 2rem;
  text-align: center;
}

.page-guide .table table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #9e9e9e;
  text-align: center;
  background-color: #fff;
}

.page-guide .table table th, .page-guide .table table td {
  border: 1px solid #9e9e9e;
  padding: 8px;
}

.page-guide .table table th {
  background-color: #707070;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .page-guide .table h3 {
    font-size: 1.8rem;
  }
}

.page-guide .slide-room {
  position: relative;
  margin-top: 60px;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .page-guide .slide-room {
    margin-bottom: 80px;
    padding-bottom: 80px;
  }
}

.page-guide .slide-room:after {
  content: '';
  background-color: #f0f0f0;
  position: absolute;
  width: 100%;
  height: 34.286vw;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.page-guide .slide-room .room-title {
  color: #ba0c1b;
  font-size: 26px;
  margin-bottom: 1em;
  text-align: center;
  font-weight: normal;
}

@media screen and (min-width: 768px) {
  .page-guide .slide-room .room-title {
    font-size: 30px;
    margin-bottom: 40px;
  }
}

.page-guide .slide-room .room-title span {
  display: inline-block;
  font-size: 16px;
  letter-spacing: 1px;
  margin-top: 4px;
  background-color: #ba0c1b;
  color: #fff;
  padding: 3px 11px;
  text-transform: uppercase;
}

.page-guide .carousel-slide {
  position: relative;
}

.page-guide .carousel-slide .slick-slide:focus {
  outline: none;
}

.page-guide .carousel-slide .slider-nav {
  margin-top: 15px;
  padding: 0 30px;
}

@media screen and (min-width: 768px) {
  .page-guide .carousel-slide .slider-nav {
    padding: 0 70px;
  }
}

.page-guide .carousel-slide .slick-prev,
.page-guide .carousel-slide .slick-next {
  position: absolute;
  bottom: calc(50% - 25px);
  border: none;
  text-indent: -9999px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 2;
  background-color: #ba0c1b;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.page-guide .carousel-slide .slick-prev:focus, .page-guide .carousel-slide .slick-prev:hover,
.page-guide .carousel-slide .slick-next:focus,
.page-guide .carousel-slide .slick-next:hover {
  outline: 0;
  opacity: 0.75;
  -webkit-filter: opacity(75);
          filter: opacity(75);
}

@media screen and (max-width: 767px) {
  .page-guide .carousel-slide .slick-prev,
  .page-guide .carousel-slide .slick-next {
    bottom: calc(50% - 10px);
    width: 30px;
    height: 30px;
  }
}

.page-guide .carousel-slide .slick-prev {
  left: 0;
}

.page-guide .carousel-slide .slick-prev:before {
  content: '';
  width: 14px;
  height: 14px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  position: absolute;
  left: 24px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .page-guide .carousel-slide .slick-prev:before {
    left: 12px;
  }
}

.page-guide .carousel-slide .slick-next {
  right: 0;
}

.page-guide .carousel-slide .slick-next:before {
  content: '';
  width: 14px;
  height: 14px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  position: absolute;
  right: 24px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

@media screen and (max-width: 767px) {
  .page-guide .carousel-slide .slick-next:before {
    right: 12px;
  }
}

.page-guide .carousel-slide .slide-thumb {
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  cursor: pointer;
  padding: 0 5px;
}

.page-guide .carousel-slide .slide-thumb:hover {
  opacity: 0.75;
  -webkit-filter: opacity(75);
          filter: opacity(75);
}

.page-guide .carousel-slide .slick-current .slide-thumb {
  opacity: 0.75;
  -webkit-filter: opacity(75);
          filter: opacity(75);
}
