@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cardo&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@400;500;600;700;800&display=swap");
/* ------------------------------
    mixin
------------------------------ */
/* font fam */
/* ------------------------------
    reset
------------------------------ */
html,
body {
  height: 100%;
}
html.loading-active,
body.loading-active {
  overflow: hidden;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  html {
    font-size: 0.9765625vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.5vw;
  }
}

body {
  -webkit-text-size-adjust: 100%;
  width: 100%;
  color: #231815;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 768px) {
  body {
    min-width: inherit;
  }
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, address, time,
ul, ol, li, dl, dt, dd,
table, th, td, img, figure, figcaption,
form, input, button, textarea, select {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  list-style-type: none;
  font-family: "Noto Serif JP", serif;
}

input, button, textarea, select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
  resize: none;
  outline: none;
  background: none;
}

select::-ms-expand {
  display: none;
}

button:hover {
  cursor: pointer;
}

a {
  color: #231815;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  outline: 1px solid transparent;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
a img {
  outline: 1px solid transparent;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
a:hover {
  opacity: 0.7;
  cursor: pointer;
}

img, object {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

/* ------------------------------
    base
------------------------------ */
section {
  position: relative;
}

main {
  display: block;
}

.wrap {
  width: 100%;
  max-width: 80rem;
  padding: 0;
  margin: 0 auto;
  position: relative;
}

p, th, td, dt, dd, li, input, button, textarea {
  font-size: 1.6rem;
  line-height: 1.5;
}

.flex {
  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;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.tac {
  text-align: center;
}

.fwb {
  font-weight: 700;
}

.color_red {
  color: #9f3643;
}

.color_main {
  color: #0087D2;
}

.color_yellow {
  color: #FFED56;
}

.color_pink {
  color: #D03086;
}

.preload *, .preload *::before, .preload *::after {
  -webkit-transition: none !important;
  transition: none !important;
}

@media screen and (min-width: 769px) {
  .fade {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .fade img {
    outline: 1px solid transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .fade:hover {
    opacity: 0.6;
    cursor: pointer;
  }
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media screen and (max-width: 768px) {
  .wrap {
    width: calc(100% - 4rem);
    padding: 0;
  }
  input, textarea, select, .select {
    font-size: 16px !important;
  }
}
/* ------------------------------
    header
------------------------------ */
.header {
  position: relative;
  height: 100svh;
  border-bottom: 10px solid #e0e3ca;
  z-index: 10;
}
.header .header_ttl {
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  z-index: 2;
}
.header .header_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.header .header_bg img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .header {
    height: 100svh;
    max-height: 26.5rem;
    border-bottom: 4px solid #e0e3ca;
  }
  .header .header_ttl {
    bottom: -0.2rem;
  }
}
/* ------------------------------
    wrapper
------------------------------ */
.wrapper {
  position: relative;
  overflow: hidden;
  visibility: hidden;
}

/* ------------------------------
    footer
------------------------------ */
.footer {
  position: relative;
  padding: 10rem 0 8rem;
  background: #fff;
}
.footer .info {
  border-top: 6px solid #231815;
  border-bottom: 6px solid #231815;
  padding: 4.5rem 1rem 4.5rem 2rem;
}
.footer .info li {
  position: relative;
  font-size: 0.9rem;
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
  padding-left: 1.2em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.04em;
}
.footer .info li::before {
  position: absolute;
  content: "※";
  left: 0;
  top: 0;
}
.footer .sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.8rem calc(100% - 77.52rem);
  border-bottom: 6px solid #231815;
  padding: 5rem 0;
}
.footer .sns li a {
  display: block;
  width: 38.7rem;
}
.footer .logo_link {
  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;
  padding: 6rem 0 5rem;
}
.footer .logo_link li a {
  display: block;
}
.footer .logo_link li:nth-child(1) {
  width: 16.16rem;
}
.footer .logo_link li:nth-child(2) {
  width: 17.3rem;
}
.footer .logo_link li:nth-child(3) {
  width: 10.8rem;
}
.footer .logo_link li:nth-child(4) {
  width: 17.3rem;
}
.footer .txt_link {
  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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-left: 1px solid #231815;
  height: 2.5rem;
}
.footer .txt_link li {
  border-right: 1px solid #231815;
  text-align: center;
}
.footer .txt_link li a {
  font-size: 1.19rem;
  letter-spacing: 0.025em;
  font-family: "Noto Sans JP", sans-serif;
}
.footer .txt_link li:nth-child(1) {
  width: 22.4rem;
}
.footer .txt_link li:nth-child(2) {
  width: 21.4rem;
}
.footer .txt_link li:nth-child(3) {
  width: 13.1rem;
}
.footer .txt_link li:nth-child(4) {
  width: 22.8rem;
}
.footer .copy {
  font-size: 1.17rem;
  line-height: 3.2743589744;
  letter-spacing: 0.01em;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  margin-top: 7rem;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 3.6rem 0;
  }
  .footer .info {
    max-width: 32rem;
    margin: 0 auto;
    padding: 2.4rem 0;
  }
  .footer .info li {
    /* aj */
    font-size: 1rem;
    line-height: 1.9987341772;
  }
  .footer .sns {
    width: 32rem;
    max-width: inherit;
    margin: 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.4rem 0;
    padding: 4rem 0 4.5rem;
  }
  .footer .sns li {
    width: 100%;
  }
  .footer .sns li a {
    width: 100%;
  }
  .footer .logo_link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem 0;
    padding: 4rem 0 5rem;
  }
  .footer .logo_link li:nth-child(1) {
    width: 14.2rem;
  }
  .footer .logo_link li:nth-child(2) {
    width: 15.3rem;
  }
  .footer .logo_link li:nth-child(3) {
    width: 9.46rem;
  }
  .footer .logo_link li:nth-child(4) {
    width: 15.3rem;
  }
  .footer .txt_link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.8rem 0;
    height: auto;
    border: none;
  }
  .footer .txt_link li {
    border-left: 1px solid #231815;
    width: 20rem !important;
  }
  .footer .txt_link li a {
    font-size: 1.1rem;
  }
  .footer .copy {
    font-size: 1.1rem;
    margin-top: 4rem;
    line-height: 1.8039215686;
  }
  .footer .tel {
    margin: 3.6rem auto 0;
  }
  .footer .tel .num {
    width: 31.3rem;
    margin: 0 auto 1rem;
  }
  .footer .tel .notes {
    font-size: 1.1rem;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.05em;
    font-weight: 500;
    text-align: center;
  }
}
/* ------------------------------
    main
------------------------------ */
/* common */
.btn {
  text-align: center;
}
.btn_link {
  position: relative;
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #567b4c;
  padding-right: 4rem;
}
.btn_link::before {
  position: absolute;
  content: "";
  width: 2.3rem;
  height: 2.3rem;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn_link.events {
  color: #567b4c;
}
.btn_link.events::before {
  background: url("../img/arw_events.svg") no-repeat center center/contain;
}
.btn_link.stayplan {
  color: #89a382;
}
.btn_link.stayplan::before {
  background: url("../img/arw_stayplan.svg") no-repeat center center/contain;
}
.btn_link.restaurant {
  color: #9f3643;
}
.btn_link.restaurant::before {
  background: url("../img/arw_restaurant.svg") no-repeat center center/contain;
}

@media screen and (max-width: 768px) {
  .btn_link {
    font-size: 1.06rem;
    padding-right: 2.5rem;
  }
  .btn_link::before {
    width: 1.3rem;
    height: 1.3rem;
    top: 55%;
  }
}
.border {
  border: 1px solid #567b4c;
}

.sec_ttl {
  width: 65.4rem;
  margin: 0 auto 5rem;
}

.sec_subttl {
  font-size: 1.98rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.5707070707;
  margin: 0 auto 2.5rem;
}

@media screen and (max-width: 768px) {
  .sec_ttl {
    width: 31.8rem;
    margin: 0 auto 2rem;
  }
  .sec_subttl {
    line-height: 1.4318181818;
    margin: 0 auto 2rem;
  }
}
/* bg */
.bg_events {
  background: url("../img/bg_events.png") repeat;
}

@media screen and (max-width: 768px) {
  .bg_events {
    background-size: 6vw;
  }
}
/* sec_lead */
.sec_lead {
  border-top: 10px solid #567b4c;
  padding: 0 0 9rem;
}
.sec_lead .txt_head {
  width: 100%;
  margin: -0.6rem auto 0;
}
.sec_lead .logo {
  width: 16.4rem;
  margin: 5.5rem auto 4.2rem;
}
.sec_lead .ttl {
  font-size: 3.1rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2806451613;
  letter-spacing: 0.05em;
}
.sec_lead .txt {
  font-size: 1.7rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.8235294118;
  margin: 3rem auto 5rem;
}
.sec_lead .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  border-top: 1px solid #231815;
}
.sec_lead .list dt, .sec_lead .list dd {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.27rem;
  line-height: 2.0078740157;
  border-bottom: 1px solid #231815;
  padding: 0.3em 0;
}
.sec_lead .list dt {
  letter-spacing: 0.075em;
  width: 18.5rem;
  padding-left: 3.5rem;
}
.sec_lead .list dd {
  width: calc(100% - 18.5rem);
}

@media screen and (max-width: 768px) {
  .sec_lead {
    border-top-width: 4px;
    padding: 0 0 3.2rem;
  }
  .sec_lead .txt_head {
    margin-top: -0.1em;
  }
  .sec_lead .logo {
    width: 13.8rem;
    margin: 3.5rem auto 3rem;
  }
  .sec_lead .ttl {
    font-size: 2.26rem;
    line-height: 1.3747795414;
  }
  .sec_lead .txt {
    font-size: 1.13rem;
    line-height: 1.7495590829;
    margin: 1.8rem auto 4rem;
    font-weight: 700;
  }
  .sec_lead .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 32rem;
    margin: 0 auto;
  }
  .sec_lead .list dt, .sec_lead .list dd {
    font-size: 0.92rem;
    line-height: 1.5385450597;
  }
  .sec_lead .list dt {
    position: relative;
    width: 100%;
    padding-left: 1.5em;
    border-bottom: none;
    padding: 0.7em 0 0 1.5em;
  }
  .sec_lead .list dt::before {
    position: absolute;
    content: "■";
    left: 0;
    top: 0.7em;
  }
  .sec_lead .list dd {
    width: 100%;
    padding: 0 0 0.7em;
  }
}
/* menu */
.menu {
  padding: 2.5rem 0;
  background: #fff;
}
.menu .inner {
  position: relative;
  width: 100%;
  border-top: 3px solid #567b4c;
  border-bottom: 3px solid #567b4c;
  padding-bottom: 2.8rem;
}
.menu .inner::before, .menu .inner::after {
  position: absolute;
  content: "";
  background: #567b4c;
  width: 100%;
  height: 1px;
  left: 0;
}
.menu .inner::before {
  top: -0.7rem;
}
.menu .inner::after {
  bottom: -0.7rem;
}
.menu .menu_list {
  width: 100%;
  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;
}
.menu .menu_list li {
  width: 21rem;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .menu {
    padding: 1rem 0;
  }
  .menu .inner {
    padding-bottom: 1rem;
  }
  .menu .inner::before, .menu .inner::after {
    display: none;
  }
  .menu .menu_list li {
    width: 10.8rem;
  }
}
/* sec_events */
.sec_events {
  padding: 6.1rem 0 8.7rem;
}
.sec_events .inner {
  width: 100%;
  margin: 0 auto;
  border: 1px solid #89a382;
  background: #d0d9b1 url("../img/txt_event.png") no-repeat left -1rem top -4rem/102%;
}
.sec_events .inner.inner01 {
  padding: 8.4rem 0 5.7rem;
}
.sec_events .inner.inner02 {
  margin-top: 4.3rem;
  padding: 7.2rem 0 4rem;
}
.sec_events .img_head {
  width: 47.2rem;
  margin: 0 auto 5rem;
}
.sec_events .cont {
  max-width: 50rem;
  margin: 0 auto;
}
.sec_events .txt {
  font-size: 1.27rem;
  line-height: 1.7795275591;
  letter-spacing: 0.025em;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  text-align: justify;
}
.sec_events .img_box {
  margin: 4rem auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.5rem 0;
}
.sec_events .img_box .img01 {
  width: 100%;
}
.sec_events .img_box .img02, .sec_events .img_box .img03 {
  width: 23rem;
}
.sec_events .img_box figcaption {
  font-size: 0.85rem;
  letter-spacing: 0.025em;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 0.5rem;
  line-height: 1.7294117647;
}
.sec_events .event_box {
  position: relative;
  border-top: 1px solid #567b4c;
}
.sec_events .event_box::before {
  position: absolute;
  content: "";
  background: #567b4c;
  width: 100%;
  height: 0.2rem;
  top: 0.4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.sec_events .event_box .box01 img {
  width: 24.4rem;
}
.sec_events .event_box .box02 img {
  width: 25.3rem;
}
.sec_events .event_box dl {
  position: relative;
  border-bottom: 1px solid #567b4c;
  padding: 4rem 0 2.5rem;
}
.sec_events .event_box dl::before {
  position: absolute;
  content: "";
  background: #567b4c;
  width: 100%;
  height: 0.2rem;
  bottom: -0.7rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.sec_events .event_box dt {
  text-align: center;
  padding-bottom: 1.5rem;
}
.sec_events .event_box dd {
  font-weight: 700;
  text-align: center;
}
.sec_events .event_box dd > p {
  font-size: 1.4rem;
  line-height: 1.75;
}
.sec_events .event_box .date {
  font-size: 1.7rem;
  line-height: 1.5;
  margin-bottom: 0.8rem;
}
.sec_events .event_box .price {
  font-size: 1.9rem;
}
.sec_events .event_box .theme {
  font-size: 1.4rem;
  line-height: 1.7501764291;
  font-weight: 600;
  margin-bottom: 1.2rem;
  margin-top: -0.3rem;
}
.sec_events .btn {
  margin-top: 6rem;
}
.sec_events .box03 {
  margin-top: 3.5rem;
}
.sec_events .box03 dt img {
  width: 48.1rem;
  margin: 0 auto 2rem;
}
.sec_events .box03 dd {
  font-size: 1.2rem;
  line-height: 1.7643153527;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  text-align: justify;
}
.sec_events .profile {
  width: 100%;
  background: url("../img/bg_other.png") repeat;
  padding: 2.7rem 3.7rem;
  border: 1px solid #89a382;
  margin: 3rem auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 2.3rem;
}
.sec_events .profile img {
  width: 13.5rem;
}
.sec_events .profile .profile_inner {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.sec_events .profile .profile_inner > p {
  font-size: 1.06rem;
  line-height: 1.8664158043;
  font-family: "Noto Sans JP", sans-serif;
  text-align: justify;
}
.sec_events .profile .name {
  font-size: 1.7rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}
.sec_events .virtualtour iframe {
  border: 0;
  width: 80rem;
  margin-left: -15rem;
  margin-right: -15rem;
  aspect-ratio: 800/512;
  margin-bottom: 3rem;
}
.sec_events .virtualtour .ttl {
  font-size: 1.36rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  text-indent: -0.5em;
}
.sec_events .virtualtour .ttl .sm {
  font-size: 1.1rem;
  margin-left: 0.5em;
}
.sec_events .virtualtour dt {
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
.sec_events .virtualtour dd li {
  position: relative;
  padding-left: 1em;
  font-size: 0.85rem;
  line-height: 1.6670588235;
  font-family: "Noto Sans JP", sans-serif;
}
.sec_events .virtualtour dd li + li {
  margin-top: 0.2em;
}
.sec_events .virtualtour dd li::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
}
.sec_events .virtualtour dd + dt {
  margin-top: 1.5rem;
}

@media screen and (max-width: 768px) {
  .sec_events {
    padding: 4.2rem 0 4.5rem;
  }
  .sec_events .inner {
    background-position: left -0.7rem top -2rem;
  }
  .sec_events .inner.inner01 {
    padding: 3.2rem 0 3.1rem;
  }
  .sec_events .inner.inner02 {
    margin-top: 3.8rem;
    padding: 4rem 0 4rem;
  }
  .sec_events .inner.inner02 .sec_ttl {
    margin-bottom: 3.4rem;
  }
  .sec_events .img_head {
    width: 25rem;
    margin: 0 auto 3.2rem;
  }
  .sec_events .cont {
    max-width: inherit;
    padding: 0 2rem;
  }
  .sec_events .txt {
    /* aj */
    font-size: 1.2rem;
  }
  .sec_events .img_box {
    margin: 2rem auto;
    gap: 0.5rem 0;
  }
  .sec_events .img_box .img02, .sec_events .img_box .img03 {
    width: 14.7rem;
  }
  .sec_events .img_box figcaption {
    /* aj */
    font-size: 0.8rem;
    line-height: 1.62;
    margin-top: 0.3rem;
  }
  .sec_events .event_box::before {
    top: 0.2rem;
  }
  .sec_events .event_box .box01 img {
    width: 18rem;
  }
  .sec_events .event_box .box02 img {
    width: 18.6rem;
  }
  .sec_events .event_box dl {
    padding: 1.6rem 0 1.5rem;
  }
  .sec_events .event_box dl::before {
    bottom: -0.5rem;
  }
  .sec_events .event_box dt {
    padding-bottom: 1rem;
  }
  .sec_events .event_box dd > p {
    font-size: 0.9rem;
  }
  .sec_events .event_box .date {
    font-size: 1.1rem;
  }
  .sec_events .event_box .price {
    font-size: 1.3rem;
  }
  .sec_events .event_box .theme {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }
  .sec_events .btn {
    margin-top: 3.2rem;
  }
  .sec_events .box03 {
    margin-top: 3.8rem;
  }
  .sec_events .box03 dt {
    margin-bottom: 0.4rem;
  }
  .sec_events .box03 dt img {
    width: 100%;
    margin: 0 auto 1rem;
  }
  .sec_events .box03 dd {
    /* aj */
    font-size: 1.2rem;
    line-height: 1.7675324675;
  }
  .sec_events .profile {
    padding: 1.6rem 2.5rem 1.2rem;
    margin: 4rem auto;
    gap: 0 1.5rem;
    background-size: 6vw;
  }
  .sec_events .profile img {
    width: 8.6rem;
  }
  .sec_events .profile .profile_inner > p {
    /* aj */
    font-size: 0.8rem;
    line-height: 1.8676470588;
  }
  .sec_events .profile .name {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  .sec_events .virtualtour iframe {
    max-width: inherit;
    aspect-ratio: 360/250;
    margin-bottom: 3.2rem;
    margin-left: -2rem;
    margin-right: -2rem;
    width: calc(100vw - 4.2rem);
  }
  .sec_events .virtualtour .ttl {
    /* aj */
    font-size: 1.4rem;
    line-height: 1.35;
  }
  .sec_events .virtualtour .ttl .sm {
    font-size: 1.1rem;
  }
  .sec_events .virtualtour dt {
    /* aj */
    font-size: 1rem;
  }
  .sec_events .virtualtour dd li {
    /* aj */
    font-size: 0.9rem;
    line-height: 1.7675324675;
  }
  .sec_events .virtualtour dd + dt {
    margin-top: 1rem;
  }
}
/* sec_stayplan */
.sec_stayplan {
  background: url("../img/bg_stayplan.png") repeat;
  padding: 8rem 0 9rem;
}
.sec_stayplan .inner {
  width: 100%;
  margin: 0 auto;
  border: 1px solid #89a382;
  background: #efeed6 url("../img/txt_stayplan.png") no-repeat left -2rem top -3.8rem/118%;
  padding: 8rem 0 6.5rem;
}
.sec_stayplan .img_head {
  width: 47.2rem;
  margin: 0 auto 5rem;
}
.sec_stayplan .cont {
  max-width: 50rem;
  margin: 2rem auto 0;
}
.sec_stayplan .cont .txt {
  font-size: 1.27rem;
  line-height: 1.7795275591;
  letter-spacing: 0.025em;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  text-align: justify;
}
.sec_stayplan .img_box {
  width: 100%;
  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-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1.5rem calc((100% - 47.4rem) / 2);
  margin: 2rem auto 0.5rem;
}
.sec_stayplan .img_box img {
  width: 15.8rem;
}
.sec_stayplan .img_box figcaption {
  font-size: 0.85rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  text-align: center;
  margin-top: 0.2em;
}
.sec_stayplan .timetable {
  padding: 0 1rem;
}
.sec_stayplan .timetable dt {
  font-size: 2.2rem;
  line-height: 1.1;
  font-weight: 700;
  color: #567b4c;
  margin-bottom: 2rem;
}
.sec_stayplan .timetable dd .date {
  font-size: 1.98rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1.8rem;
}
.sec_stayplan .timetable dd > p:not(.date) {
  font-size: 1.41rem;
  line-height: 1.4;
  font-weight: 700;
  text-indent: -0.6em;
}
.sec_stayplan .timetable dd > p:not(.date) + p {
  margin-top: 1.5rem;
}
.sec_stayplan .timetable dd .price {
  font-size: 1.98rem;
  letter-spacing: 0.08em;
}
.sec_stayplan .timetable_box {
  width: 100%;
  background: url("../img/bg_other.png") repeat;
  border: 1px solid #89a382;
  border-radius: 2rem;
  padding: 3.3rem 4.5rem;
  margin: 4rem auto 5rem;
}
.sec_stayplan .timetable_box > p:not(.date, .timetable_txt) {
  font-size: 1.41rem;
  line-height: 1.4;
  font-weight: 700;
  text-indent: -0.6em;
}
.sec_stayplan .timetable_box > p:not(.date, .timetable_txt) + p {
  margin-top: 1.5rem;
}
.sec_stayplan .timetable_box .price {
  font-size: 1.98rem;
  letter-spacing: 0.08em;
}
.sec_stayplan .timetable_txt {
  font-size: 1.06rem;
  font-weight: 500;
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
  white-space: nowrap;
}
.sec_stayplan .timetable_img {
  margin: 1.3rem auto 2rem;
}
.sec_stayplan .timetable_ttl {
  width: 25.6rem;
  margin: 0 auto 2rem;
}

@media screen and (max-width: 768px) {
  .sec_stayplan {
    padding: 4.2rem 0 4.4rem;
    background-size: 6vw;
  }
  .sec_stayplan .inner {
    padding: 2.8rem 0 2.4rem;
    background-position: left -1rem top -2rem;
  }
  .sec_stayplan .img_head {
    width: 25rem;
    margin: 0 auto 3rem;
  }
  .sec_stayplan .sec_ttl {
    margin-bottom: 3.2rem;
  }
  .sec_stayplan .sec_subttl {
    width: 26.3rem;
  }
  .sec_stayplan .cont {
    max-width: inherit;
    padding: 2.5rem 2rem 0;
    margin: 0 auto;
  }
  .sec_stayplan .cont .txt {
    /* aj */
    font-size: 1.2rem;
    line-height: 1.847826087;
  }
  .sec_stayplan .img_box {
    gap: 0.8rem calc((100% - 30.3rem) / 2);
    margin: 2.5rem auto 1.5rem;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .sec_stayplan .img_box img {
    width: 10.1rem;
  }
  .sec_stayplan .img_box figcaption {
    /* aj */
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.2;
  }
  .sec_stayplan .timetable {
    padding: 0 1rem;
  }
  .sec_stayplan .timetable dt {
    font-size: 1.56rem;
    margin-bottom: 1.4rem;
    text-align: center;
  }
  .sec_stayplan .timetable dd .date {
    font-size: 1.3rem;
    line-height: 1.1;
    margin-bottom: 0.8rem;
    text-align: center;
  }
  .sec_stayplan .timetable dd > p:not(.date) {
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.5;
  }
  .sec_stayplan .timetable dd > p:not(.date) + p {
    margin-top: 0.5rem;
  }
  .sec_stayplan .timetable dd .price {
    font-size: 1.3rem;
  }
  .sec_stayplan .timetable_box {
    background-size: 6vw;
    padding: 2rem 2.8rem 1.8rem;
    margin: 2.4rem auto 1.5rem;
  }
  .sec_stayplan .timetable_box > p:not(.date, .timetable_txt) {
    /* aj */
    font-size: 0.9rem;
    line-height: 1.7362637363;
    text-align: center;
  }
  .sec_stayplan .timetable_box > p:not(.date, .timetable_txt) + p {
    margin-top: 0.3rem;
  }
  .sec_stayplan .timetable_box .price {
    font-size: 1.27rem;
    letter-spacing: normal;
  }
  .sec_stayplan .timetable_txt {
    /* aj */
    font-size: 1rem;
    line-height: 1.847826087;
    white-space: normal;
  }
  .sec_stayplan .timetable_img {
    margin: 2rem auto 2.2rem;
  }
  .sec_stayplan .timetable_ttl {
    width: 21.6rem;
    margin: 0 auto 1.5rem;
  }
}
/* sec_restaurant */
.sec_restaurant {
  background: url("../img/bg_restaurant.png") repeat;
  padding: 8rem 0 9rem;
}
.sec_restaurant .inner {
  width: 100%;
  margin: 0 auto;
  border: 1px solid #9f3643;
  background: #fbefdf url("../img/txt_restaurant.png") no-repeat left -1rem top -4rem/106%;
  padding: 8rem 0 6.5rem;
}
.sec_restaurant .img_head {
  width: 47.2rem;
  margin: 0 auto 5rem;
}
.sec_restaurant .cont {
  max-width: 50rem;
  margin: 3rem auto 0;
}
.sec_restaurant .cont .sec_subttl {
  margin-bottom: 1.8rem;
  text-align: left;
}
.sec_restaurant .cont .txt {
  font-size: 1.27rem;
  line-height: 1.7795275591;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  text-align: justify;
}
.sec_restaurant .legend_wrap {
  margin: 1.1rem 0 5rem;
}
.sec_restaurant .legend {
  position: relative;
  font-size: 1.276rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  padding: 1.2rem 1.2rem 1.2rem 5.8rem;
}
.sec_restaurant .legend::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.sec_restaurant .legend.repro::before {
  background: url("../img/icn_repro.svg") no-repeat center center/contain;
  width: 4.8rem;
  height: 4.8rem;
  left: 0;
}
.sec_restaurant .legend.showa {
  margin-top: 1rem;
}
.sec_restaurant .legend.showa::before {
  background: url("../img/icn_showa.svg") no-repeat center center/contain;
  width: 4.8rem;
  height: 4.8rem;
  left: 0.1em;
}
.sec_restaurant .ttl_menu {
  position: relative;
  font-size: 2.13rem;
  font-family: "Cardo", serif;
  margin: 0 auto;
  font-weight: 400;
  border-top: 2px solid #9f3643;
  border-bottom: 2px solid #9f3643;
  line-height: 1;
  margin-bottom: 7rem;
  height: 6.2rem;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 0.1em;
}
.sec_restaurant .ttl_menu::before, .sec_restaurant .ttl_menu::after {
  position: absolute;
  content: "";
  background: #9f3643;
  width: 100%;
  height: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.sec_restaurant .ttl_menu::before {
  top: 0.4rem;
}
.sec_restaurant .ttl_menu::after {
  bottom: 0.4rem;
}
.sec_restaurant .item {
  max-width: 60rem;
  margin: 0 auto;
}
.sec_restaurant .item_inner {
  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;
  gap: 0 2.5rem;
  padding-bottom: 2.5rem;
}
.sec_restaurant .item_inner.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  padding-left: 3rem;
}
.sec_restaurant .item .img {
  position: relative;
  width: 29.8rem;
}
.sec_restaurant .item .img img {
  border: 1px solid #9f3643;
}
.sec_restaurant .item .img.repro::before {
  position: absolute;
  content: "";
  background: url("../img/icn_repro.svg") no-repeat center center/contain;
  width: 6rem;
  height: 6rem;
  left: -3rem;
  top: -3rem;
}
.sec_restaurant .item .img.showa::before {
  position: absolute;
  content: "";
  background: url("../img/icn_showa.svg") no-repeat center center/contain;
  width: 5.2rem;
  height: 5.2rem;
  left: -2.6rem;
  top: -2.6rem;
}
.sec_restaurant .item .item_txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: -0.3em;
}
.sec_restaurant .item .item_txt .shop {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.600564573;
}
.sec_restaurant .item .item_txt .shop.jp {
  font-size: 1.41rem;
  font-weight: 700;
}
.sec_restaurant .item .item_txt .shop.en {
  font-size: 0.92rem;
}
.sec_restaurant .item .item_txt .floor {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.06rem;
  line-height: 1.8664158043;
  text-indent: -0.5em;
}
.sec_restaurant .item .item_txt .price {
  font-size: 1.27rem;
  font-weight: 700;
  line-height: 1.7774294671;
}
.sec_restaurant .item .item_txt .name {
  margin: 1em 0 0.8em;
}
.sec_restaurant .item .item_txt .sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.06rem;
  line-height: 1.599247413;
  margin-top: 1.5rem;
}
.sec_restaurant .item .item_txt .course {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.99rem;
  margin-top: 1em;
  text-indent: -0.5em;
}
.sec_restaurant .item .item_txt .course + .name {
  margin-top: 0.3em;
}
.sec_restaurant .item .item_txt .sm {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.99rem;
}
.sec_restaurant .item .btn {
  margin-top: 3rem;
}
.sec_restaurant .item.line_r .item_inner {
  border-right: 1px solid #9f3643;
  border-bottom: 1px solid #9f3643;
}
.sec_restaurant .item.line_l .item_inner {
  border-left: 1px solid #9f3643;
  border-bottom: 1px solid #9f3643;
}
.sec_restaurant .item.item01 .name img {
  width: 25.9rem;
}
.sec_restaurant .item.item02 .name img {
  width: 19rem;
}
.sec_restaurant .item.item03 .name img {
  width: 6.7rem;
}
.sec_restaurant .item.item04 .name img {
  width: 20.9rem;
}
.sec_restaurant .item.item05 .name img {
  width: 8.9rem;
}
.sec_restaurant .item.item06 .name img {
  width: 19.3rem;
}
.sec_restaurant .item.item06 .sm {
  margin-left: 1.5rem;
}
.sec_restaurant .item.item07 .name img {
  width: 22.3rem;
}
.sec_restaurant .item.item08 .name img {
  width: 15.7rem;
}
.sec_restaurant .item.item09 .name img {
  width: 20.2rem;
}
.sec_restaurant .item.item10 .name img {
  width: 16.5rem;
}
.sec_restaurant .partition {
  position: relative;
  max-width: 50rem;
  margin: 4rem auto 5rem;
  border-top: 1px solid #9f3643;
  height: 0.6rem;
}
.sec_restaurant .partition::before {
  position: absolute;
  content: "";
  background: #9f3643;
  width: 100%;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -0.2rem;
}

@media screen and (max-width: 768px) {
  .sec_restaurant {
    padding: 4.2rem 0 4.4rem;
    background-size: 6vw;
  }
  .sec_restaurant .inner {
    padding: 2.8rem 0 2.4rem;
    background-position: left -0.6rem top -2rem;
  }
  .sec_restaurant .img_head {
    width: 25rem;
    margin: 0 auto 3.2rem;
  }
  .sec_restaurant .sec_ttl {
    margin-bottom: 3.2rem;
  }
  .sec_restaurant .cont {
    max-width: inherit;
    padding: 2.5rem 2rem 0;
    margin: 0 auto;
  }
  .sec_restaurant .cont .sec_subttl {
    margin-bottom: 1.4rem;
    text-align: center;
  }
  .sec_restaurant .cont .txt {
    /* aj */
    font-size: 1.2rem;
    line-height: 1.847826087;
  }
  .sec_restaurant .legend_wrap {
    margin: 1.1rem auto 1.5rem;
    width: 22rem;
  }
  .sec_restaurant .legend {
    font-size: 0.9rem;
    white-space: nowrap;
    padding: 0.5rem 0 0.5rem 3rem;
  }
  .sec_restaurant .legend.repro::before {
    width: 2.38rem;
    height: 2.38rem;
  }
  .sec_restaurant .legend.showa {
    margin-top: 0.5rem;
  }
  .sec_restaurant .legend.showa::before {
    width: 2.2rem;
    height: 2.2rem;
  }
  .sec_restaurant .ttl_menu {
    font-size: 1.2rem;
    line-height: 1;
    margin-bottom: 2.7rem;
    height: 3.4rem;
    width: 26.6rem;
    padding-top: 0.2em;
  }
  .sec_restaurant .ttl_menu::before {
    top: 0.2rem;
  }
  .sec_restaurant .ttl_menu::after {
    bottom: 0.2rem;
  }
  .sec_restaurant .item {
    max-width: inherit;
    padding: 0 2rem;
  }
  .sec_restaurant .item_inner {
    gap: 0 1.2rem;
    padding-bottom: 1.5rem;
  }
  .sec_restaurant .item_inner.reverse {
    padding-left: 1.5rem;
  }
  .sec_restaurant .item .img {
    width: 15.8rem;
  }
  .sec_restaurant .item .img.repro::before {
    width: 3.4rem;
    height: 3.4rem;
    left: -1.7rem;
    top: -1.7rem;
  }
  .sec_restaurant .item .img.showa::before {
    width: 3rem;
    height: 3rem;
    left: -1.45rem;
    top: -1.45rem;
  }
  .sec_restaurant .item .item_txt {
    margin-top: -0.2em;
  }
  .sec_restaurant .item .item_txt .shop.jp {
    font-size: 0.92rem;
    line-height: 1.5;
  }
  .sec_restaurant .item .item_txt .shop.en {
    font-size: 0.6rem;
    line-height: 2.2;
  }
  .sec_restaurant .item .item_txt .floor {
    font-size: 0.68rem;
    line-height: 1.8676470588;
  }
  .sec_restaurant .item .item_txt .price {
    font-size: 0.82rem;
    line-height: 1.7772337821;
  }
  .sec_restaurant .item .item_txt .name {
    margin: 0 0 0.4em;
    line-height: 1;
  }
  .sec_restaurant .item .item_txt .sub {
    font-size: 0.68rem;
    line-height: 1.5991189427;
    margin-top: 0.5rem;
  }
  .sec_restaurant .item .item_txt .course {
    font-size: 0.6rem;
    margin-top: 0.3em;
  }
  .sec_restaurant .item .item_txt .course + .name {
    margin-top: 0.2em;
  }
  .sec_restaurant .item .item_txt .sm {
    font-size: 0.63rem;
  }
  .sec_restaurant .item .btn {
    margin-top: 1.2rem;
  }
  .sec_restaurant .item.item01 .name img {
    width: 13.7rem;
  }
  .sec_restaurant .item.item02 .name img {
    width: 10.1rem;
  }
  .sec_restaurant .item.item03 .name img {
    width: 3.5rem;
  }
  .sec_restaurant .item.item04 .name img {
    width: 11rem;
  }
  .sec_restaurant .item.item05 .name img {
    width: 4.6rem;
  }
  .sec_restaurant .item.item06 .name img {
    width: 10.2rem;
  }
  .sec_restaurant .item.item06 .floor {
    line-height: 1.2;
  }
  .sec_restaurant .item.item06 .course {
    margin-top: 0.1em;
  }
  .sec_restaurant .item.item06 .sm {
    margin-left: 1rem;
  }
  .sec_restaurant .item.item07 .name img {
    width: 11.8rem;
  }
  .sec_restaurant .item.item08 .name img {
    width: 8.3rem;
  }
  .sec_restaurant .item.item09 .name img {
    width: 11rem;
  }
  .sec_restaurant .item.item10 .name img {
    width: 8.7rem;
    margin-top: 0.4rem;
  }
  .sec_restaurant .partition {
    max-width: 26.6rem;
    margin: 1.6rem auto 2.8rem;
    height: 0.4rem;
  }
  .sec_restaurant .partition::before {
    height: 0.2rem;
    bottom: -0.1rem;
  }
}
.slider_wrap {
  position: relative;
  z-index: 2;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
.slider_wrap img {
  border: 1px solid #89a382;
}
.slider_wrap button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.slider_wrap .slider {
  display: none;
}
.slider_wrap .slider.slick-initialized {
  display: block;
}
.slider_wrap .slick-track {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.slider_wrap .slick-slide {
  width: 50rem;
  margin: 0 -0.1rem;
  height: auto !important;
}
.slider_wrap .slide-dots {
  margin: 1rem auto 0;
  text-align: center;
}
.slider_wrap .slide-dots li {
  display: inline-block;
  margin: 0 0.5rem;
}
.slider_wrap .slide-dots li button {
  position: relative;
  text-indent: -9999px;
}
.slider_wrap .slide-dots li button:before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}
.slider_wrap .slide-dots li.slick-active button:before {
  content: "";
}
.slider_wrap .slide-arrow {
  position: absolute;
  width: 2.3rem;
  height: 2.3rem;
  z-index: 2;
  cursor: pointer;
  top: 48%;
  -webkit-transform: translateY(-48%);
          transform: translateY(-48%);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.slider_wrap .slide-arrow.slick-disabled {
  opacity: 0.7;
  pointer-events: none;
}
@media print and (any-hover: hover), screen and (any-hover: hover) and (min-width: 768px) {
  .slider_wrap .slide-arrow:hover {
    opacity: 0.7;
  }
}
.slider_wrap .prev-arrow {
  left: calc(50% - 48rem);
}
.slider_wrap .next-arrow {
  right: calc(50% - 48rem);
  -webkit-transform: scale(-1, 1) translateY(-48%);
          transform: scale(-1, 1) translateY(-48%);
}

@media screen and (max-width: 768px) {
  .slider_wrap .slick-slide {
    width: 20rem;
  }
  .slider_wrap .slide-arrow {
    /* aj */
    width: 1.4rem;
    height: 1.4rem;
  }
  .slider_wrap .prev-arrow {
    left: 1rem;
  }
  .slider_wrap .next-arrow {
    right: 1rem;
  }
}
.sec_stayplan .slide-arrow {
  background: url("../img/arw_slider_styplan.svg") no-repeat center center/contain;
}
.sec_stayplan .slide-dots li button:before {
  background: rgba(137, 163, 130, 0.4);
}
.sec_stayplan .slide-dots li.slick-active button:before {
  background: rgb(137, 163, 130);
}

.sec_restaurant .slide-arrow {
  background: url("../img/arw_slider_restaurant.svg") no-repeat center center/contain;
}
.sec_restaurant .slide-dots li button:before {
  background: rgba(131, 28, 36, 0.4);
}
.sec_restaurant .slide-dots li.slick-active button:before {
  background: rgb(131, 28, 36);
}
.sec_restaurant .slider_wrap img {
  border-color: #9f3643;
}

/* ------------------------------
    responsive
------------------------------ */
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
/* ------------------------------
    clearfix
------------------------------ */
.cf {
  zoom: 1;
}
.cf::after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;
  font-size: 0.1em;
  line-height: 0;
}

/* ------------------------------
    loading
------------------------------ */
.loading {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  top: 0;
  left: 0;
  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;
}

.loading .img_bg {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 100%;
}

.loading .img_bg .item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}

.loading .img_bg .item.show {
  opacity: 1;
}

.loading .img_bg .item img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.counter {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  overflow: hidden;
  z-index: 2;
  width: 37.8rem;
}
.counter img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .counter {
    width: 15rem;
  }
}
#numImage {
  width: 100%;
  height: auto;
  opacity: 1;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
/*# sourceMappingURL=style.css.map */