@charset "UTF-8";
.p-wrapper {
  /* ブラウザのUAスタイルシートのすべてのスタイルを削除、displayは除く */
}
.p-wrapper *:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}
.p-wrapper *,
.p-wrapper *::before,
.p-wrapper *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.p-wrapper ol,
.p-wrapper ul {
  list-style: none;
}
.p-wrapper img {
  max-width: 100%;
  display: block;
}
.p-wrapper table {
  border-collapse: collapse;
}
.p-wrapper a {
  cursor: pointer;
}

/* color */
/* end color */
/* transition */
/* end transition */
/* font-family */
/* end font-family */
.p-wrapper p,
.p-wrapper a,
.p-wrapper li,
.p-wrapper a:link,
.p-wrapper a:visited,
.p-wrapper a:active {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  font-size: calc(16 / 16)rem;
  line-height: 1.8;
  font-weight: 500;
  color: #333333;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .p-wrapper p,
  .p-wrapper a,
  .p-wrapper li,
  .p-wrapper a:link,
  .p-wrapper a:visited,
  .p-wrapper a:active {
    font-size: 15px;
    font-size: calc(15 / 16)rem;
  }
}
.p-wrapper a {
  -webkit-transform: 0.3s;
          transform: 0.3s;
  text-decoration: none;
}
.p-wrapper a:hover {
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .p-wrapper .pc {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-wrapper .pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .p-wrapper .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-wrapper .sp {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .p-wrapper .sp_s {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-wrapper .sp_s {
    display: none;
  }
}
@media screen and (max-width: 380px) {
  .p-wrapper .sp_s {
    display: block;
  }
}

/*--------------------------------------
  header
---------------------------------------*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
}
.header_contents {
  width: 100%;
  margin: 0 auto;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .header_contents {
    padding: 1.2em;
  }
}
@media screen and (max-width: 767px) {
  .header_contents .h_logo {
    width: 28%;
  }
}
.header_nav_contents {
  max-width: 100%;
  width: 600px;
  height: 520px;
  background: #76421b;
  text-align: center;
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .header_nav_contents {
    width: 100%;
    height: 55%;
  }
}
.header_nav_contents::after {
  content: "";
  display: block;
  width: 102px;
  height: 136px;
  background: url(../img/nav_img.png) left/contain no-repeat;
  position: absolute;
  bottom: 9%;
  left: 7%;
}
@media screen and (max-width: 767px) {
  .header_nav_contents::after {
    height: 110px;
  }
}
.header_nav_contents nav {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.header_nav_contents ul {
  position: relative;
}
.header_nav_contents ul li {
  list-style: none;
}
.header_nav_contents ul li .h_nav {
  display: inline-block;
  margin: 0 auto 50px auto;
  font-family: "Viaoda Libre", serif;
  font-size: 25px;
  font-size: calc(25 / 16)rem;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 0.09em;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 767px) {
  .header_nav_contents ul li .h_nav {
    font-size: 23px;
    font-size: calc(23 / 16)rem;
    margin: 0 auto 1.5em auto;
  }
}
.header_nav_contents ul li .h_nav::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #e86d6d;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  bottom: -7px;
  left: 0;
}
.header_nav_contents ul li .h_nav:hover {
  opacity: 1;
}
.header_nav_contents ul li .h_nav:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.header_nav_contents ul li .h_nav_s {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-size: calc(14 / 16)rem;
  color: #fff;
}
.header_nav_contents ul li:nth-of-type(2) .h_nav::after {
  background: #eb9746;
}
.header_nav_contents ul li:nth-of-type(3) .h_nav::after {
  background: #73a943;
}
.header_nav_contents ul li:nth-of-type(4) .h_nav::after {
  background: #b5a25d;
}

.drawer_nav_wrapper {
  position: absolute;
  top: 25%;
  right: 0;
}
@media screen and (max-width: 767px) {
  .drawer_nav_wrapper {
    top: 15%;
  }
}

.menu_trigger {
  width: 80px;
  height: 80px;
  cursor: pointer;
  z-index: 999;
  position: relative;
}
@media screen and (max-width: 767px) {
  .menu_trigger {
    width: 60px;
    height: 60px;
  }
}
.menu_trigger span {
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  right: 40px;
  height: 2px;
  background: #76421b;
}
@media screen and (max-width: 767px) {
  .menu_trigger span {
    right: 1em;
  }
}
.menu_trigger span:nth-of-type(1) {
  top: 15px;
  width: 40px;
}
.menu_trigger span:nth-of-type(2) {
  top: 25px;
  width: 25px;
}
.menu_trigger span:nth-of-type(3) {
  top: 35px;
  width: 15px;
}
.menu_trigger.active span {
  background: #fff;
}
.menu_trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-30deg);
          transform: translateY(10px) rotate(-30deg);
}
.menu_trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu_trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(30deg);
          transform: translateY(-10px) rotate(30deg);
  width: 40px;
}

.active {
  overflow: hidden;
}
.active .header_nav_contents {
  visibility: visible;
  opacity: 1;
}
.active .header_nav_contents li {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: opacity 0.9s ease, -webkit-transform 1s ease;
  transition: opacity 0.9s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 0.9s ease;
  transition: transform 1s ease, opacity 0.9s ease, -webkit-transform 1s ease;
  text-align: center;
}

.header_nav_contents li {
  opacity: 0;
  -webkit-transform: translateX(200px);
          transform: translateX(200px);
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.2s ease;
  transition: transform 0.6s ease, opacity 0.2s ease, -webkit-transform 0.6s ease;
}
.header_nav_contents li:nth-child(2) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.header_nav_contents li:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.header_nav_contents li:nth-child(4) {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}
.header_nav_contents li:nth-child(5) {
  -webkit-transition-delay: 0.65s;
          transition-delay: 0.65s;
}

.is_animation {
  background: rgba(246, 236, 138, 0.8);
}

/*--------------------------------------
  animation
---------------------------------------*/
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*.anime {
  opacity: 0;
}*/
.anime_active {
  opacity: 1;
}
.anime_active.fadein {
  -webkit-animation: fadein 1.5s forwards;
          animation: fadein 1.5s forwards;
}
.anime_active.fadein.delay_05s {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.anime_active.fadein.delay_1s {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.anime_active.fade {
  -webkit-animation: fade 1.5s ease-in-out forwards;
          animation: fade 1.5s ease-in-out forwards;
}
.anime_active.fade.delay_05s {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.anime_active.fade.delay_1s {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

/*-------------------------------
  color
-------------------------------*/
.clr_brown {
  color: #76421b;
}

.clr_pink {
  color: #e86d6d;
}

.clr_orange {
  color: #eb9746;
}

.clr_green {
  color: #73a943;
}

.clr_gold {
  color: #b5a25d;
}

.clr_skyblue {
  color: #4fb5b9;
}

/*-------------------------------
  TOP キービジュアル
-------------------------------*/
.kv_item {
  width: 100%;
  height: 0;
  padding-top: 54.1666666667%;
  background: url(../img/top/kv_img.jpg) center/cover no-repeat;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kv_item {
    margin-top: -18%;
    padding-top: 160%;
    background: url(../img/top/kv_img_sp.jpg) center/contain no-repeat;
  }
}
.kv_item::before {
  content: "";
  display: block;
  padding-top: 54.1666666667%;
}
.kv_item__inner {
  position: absolute;
  top: 50%;
  left: 22%;
  -webkit-transform: translate(-22%, -50%);
          transform: translate(-22%, -50%);
}
@media screen and (max-width: 767px) {
  .kv_item__inner {
    width: 65%;
    top: 70%;
    -webkit-transform: translate(-22%, -70%);
            transform: translate(-22%, -70%);
  }
}
.kv_item__title {
  opacity: 0;
}
.kv_item__title.fade {
  -webkit-animation: fade 1.5s 1s ease-in forwards;
          animation: fade 1.5s 1s ease-in forwards;
}

/*-------------------------------
  common
-------------------------------*/
.g-wrapper {
  min-width: auto !important;
}
.g-wrapper .gr-footer {
  margin-top: 0;
}

.g-main {
  padding: 0 !important;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(244, 239, 157)), color-stop(10%, rgb(254, 251, 231)), color-stop(50%, rgb(255, 255, 255)), color-stop(90%, rgb(254, 251, 231)), to(rgb(244, 239, 157)));
  background: linear-gradient(0deg, rgb(244, 239, 157) 0%, rgb(254, 251, 231) 10%, rgb(255, 255, 255) 50%, rgb(254, 251, 231) 90%, rgb(244, 239, 157) 100%);
}

.sec_contents {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.sec_contents__inner {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec_contents__inner {
    width: 85%;
    padding: 4em 0 2em 0;
  }
}

.sec_title {
  font-size: 40px;
  font-size: calc(40 / 16)rem;
  font-family: "Viaoda Libre", serif;
  color: #76421b;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.09em;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .sec_title {
    font-size: 29px;
    font-size: calc(29 / 16)rem;
    margin-bottom: 1em;
  }
}
.sec_title_s {
  display: block;
  font-size: 14px;
  font-size: calc(14 / 16)rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .sec_title_s {
    font-size: 13px;
    font-size: calc(13 / 16)rem;
  }
}

.sec_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .sec_item__img {
    width: 46.875%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .sec_item__img {
    width: 48.9583333333%;
  }
}
@media screen and (max-width: 767px) {
  .sec_item__img {
    margin-bottom: 2em;
  }
}
.sec_item__img .img_top {
  display: none;
}
@media screen and (max-width: 767px) {
  .sec_item__img .img_top {
    margin-bottom: 2em;
  }
  .sec_item__img .img_top img {
    margin-bottom: 1em;
  }
}
.sec_item__img_s {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .sec_item__col {
    width: 46.875%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .sec_item__col {
    width: 48.9583333333%;
  }
}
.sec_item__col___img {
  margin: 30px auto 50px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec_item__col___img {
    margin: 2em auto;
  }
  .sec_item__col___img img {
    margin: 0 auto;
  }
}
.sec_item__col___lead {
  font-size: 20px;
  font-size: calc(20 / 16)rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  text-align: center;
  color: #76421b;
  letter-spacing: 0.09em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .sec_item__col___lead {
    font-size: 18px;
    font-size: calc(18 / 16)rem;
  }
}
@media screen and (max-width: 767px) {
  .sec_item__col___lead {
    font-size: 17px;
    font-size: calc(17 / 16)rem;
    margin-bottom: 1em;
  }
}
.sec_item__col___lead span {
  display: block;
}
.sec_item__col___lead .lead_in {
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .sec_item__col___lead .lead_in {
    margin-bottom: 1em;
  }
}
.sec_item__col___lead .lead_top {
  font-size: 16px;
  font-size: calc(16 / 16)rem;
  color: #b5a25d;
}
@media screen and (max-width: 767px) {
  .sec_item__col___lead .lead_top {
    font-size: 12px;
    font-size: calc(12 / 16)rem;
    text-align: left;
  }
}
.sec_item__col___lead._s {
  text-align: left;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .sec_item__col___lead._s {
    text-align: center;
  }
}
.sec_item__col___text {
  margin-bottom: 30px;
}
.sec_item__col___date span {
  display: inline-block;
  font-size: 14px;
  font-size: calc(14 / 16)rem;
  vertical-align: middle;
  margin: -2px 3px 0 0;
}

/*-------------------------------
  TOP クリスマスツリー
-------------------------------*/
.top_tree .sec_contents__inner {
  position: relative;
}
.top_tree .sec_contents__inner::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 13.9583333333%;
  background: url(../img/top/tree_icon01.png) right/contain no-repeat;
  position: absolute;
  top: 60px;
  right: -40px;
}
@media screen and (max-width: 767px) {
  .top_tree .sec_contents__inner::before {
    padding-top: 11%;
    top: 7%;
    right: -5%;
  }
}

/*-------------------------------
  TOP 館内イベント
-------------------------------*/
.top_event .sec_contents__inner {
  position: relative;
}
.top_event .sec_contents__inner::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 16.875%;
  background: url(../img/top/tree_icon03.png) left/contain no-repeat;
  position: absolute;
  top: 0;
  left: -15px;
}
@media screen and (max-width: 767px) {
  .top_event .sec_contents__inner::before {
    display: none;
  }
}
.top_event .sec_contents__inner .sec_link {
  display: block;
}
.top_event .sec_contents__inner .sec_link:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .top_event .sec_item:nth-of-type(1) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (max-width: 767px) {
  .top_event .sec_item__img .sp {
    margin-bottom: 1.5em;
  }
}
.top_event .sec_item__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.top_event .sec_item__col___img_btm {
  margin-top: auto;
}
.top_event .sec_item__col___img {
  margin: 50px auto;
}
.top_event .sec_item__col___img img {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top_event .sec_item__col___img {
    width: 60%;
    margin: 2em auto 2.5em auto;
  }
}

.sec_item.two_col .sec_item__col {
  margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .sec_item.two_col .sec_item__col {
    width: 46.875%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .sec_item.two_col .sec_item__col {
    width: 47.9166666667%;
  }
}
@media screen and (max-width: 767px) {
  .sec_item.two_col .sec_item__col {
    margin-bottom: 4em;
  }
}
.sec_item.three_col .sec_item__col {
  margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .sec_item.three_col .sec_item__col {
    width: 29.1666666667%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .sec_item.three_col .sec_item__col {
    width: 31.25%;
  }
}
@media screen and (max-width: 767px) {
  .sec_item.three_col .sec_item__col {
    width: calc((100% - 30px) / 2);
    margin-bottom: 4em;
  }
}
@media screen and (max-width: 767px) {
  .sec_item.three_col .sec_item__col___lead._s {
    font-size: 15px;
    font-size: calc(15 / 16)rem;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .sec_item.three_col .sec_item__col___date {
    font-size: 13px;
    font-size: calc(13 / 16)rem;
  }
  .sec_item.three_col .sec_item__col___date span {
    font-size: 11px;
    font-size: calc(11 / 16)rem;
    margin-top: -3px;
  }
}
.sec_item.three_col._btm::after {
  content: "";
  display: block;
  width: 31%;
}
@media screen and (max-width: 767px) {
  .sec_item.three_col._btm .sec_item__col {
    width: 100%;
    margin-bottom: 2em;
  }
}
.sec_item.three_col._btm .sec_item__img_s {
  display: block;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}/*# sourceMappingURL=style.css.map */