@charset "UTF-8";
.for-large {
  display: none;
}

.for-small {
  display: block;
}

.hover-fade {
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: var(--animate-duration);
  transition-duration: var(--animate-duration);
  -webkit-transition-timing-function: var(--animate-easing);
  transition-timing-function: var(--animate-easing);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.hover-fade:hover {
  opacity: var(--animate-opacity);
}

.hover-underline:hover {
  text-decoration: underline;
}

@font-face {
  font-family: "iconfonts";
  src: local("iconfonts"), url("../icon/iconfonts.eot");
  src: local("iconfonts"), url("../icon/iconfonts.eot") format("embedded-opentype");
  src: local("iconfonts"), url("../icon/iconfonts.woff2") format("woff2");
  src: local("iconfonts"), url("../icon/iconfonts.woff") format("woff");
  src: local("iconfonts"), url("../icon/iconfonts.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.img-fit {
  height: auto;
  width: 100%;
}

.ol-lower {
  list-style-type: lower-alpha;
  overflow: visible;
  padding-left: 2rem;
}
.ol-lower li:last-child {
  margin-bottom: 0;
}

.ol-number {
  list-style-type: decimal;
  overflow: visible;
  padding-left: 2rem;
}
.ol-number li:last-child {
  margin-bottom: 0;
}

.ol-upper {
  list-style-type: upper-alpha;
  overflow: visible;
  padding-left: 2rem;
}
.ol-upper li:last-child {
  margin-bottom: 0;
}

.table-background thead th {
  background-color: #eeeeee;
}
.table-background tbody tr:nth-child(even) {
  background-color: #eeeeee;
}

.table-border {
  border: 1px solid var(--color-border);
  border-bottom: none;
}
.table-border th, .table-border td {
  border-bottom: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}

.text-bold {
  font-weight: bold;
}

.text-center-for-large {
  text-align: left;
}

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

.text-center {
  text-align: center;
}
.text-center img {
  margin-left: auto;
  margin-right: auto;
}

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

.text-nowrap {
  display: inline-block;
  white-space: nowrap;
}

.text-right-for-large {
  text-align: left;
}

.text-right-for-small {
  text-align: right;
}

.text-right {
  text-align: right;
}
.text-right img {
  margin-left: auto;
  margin-right: 0;
}

.ul-disc {
  overflow: hidden;
}
.ul-disc li {
  padding-left: 1em;
}
.ul-disc li:last-child {
  margin-bottom: 0;
}
.ul-disc li:before {
  content: "・";
  margin-left: -1rem;
  width: 1rem;
}

.ul-halfnote {
  overflow: hidden;
}
.ul-halfnote li {
  padding-left: 1em;
}
.ul-halfnote li:last-child {
  margin-bottom: 0;
}
.ul-halfnote li:before {
  content: "*";
  margin-left: -1rem;
  width: 1rem;
}

.ul-hyphen {
  overflow: hidden;
}
.ul-hyphen li {
  padding-left: 1em;
}
.ul-hyphen li:last-child {
  margin-bottom: 0;
}
.ul-hyphen li:before {
  content: "-";
  margin-left: -1rem;
  width: 1rem;
}

.ul-note {
  overflow: hidden;
}
.ul-note li {
  padding-left: 1em;
}
.ul-note li:last-child {
  margin-bottom: 0;
}
.ul-note li:before {
  content: "※";
  margin-left: -1rem;
  width: 1rem;
}

.layout-max {
  margin-right: 8vw;
  margin-left: 8vw;
  width: auto;
}

.layout-primary {
  margin-right: var(--margin-side-small);
  margin-left: var(--margin-side-small);
  width: auto;
}

.layout-secondary {
  margin-right: 8vw;
  margin-left: 8vw;
  width: auto;
}

.js-fadein {
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  opacity: 0;
  -webkit-transform: translateY(1.3333333333rem);
  transform: translateY(1.3333333333rem);
}
.js-fadein.-show {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.site-fixed-button {
  -webkit-transition-property: opacity, visibility, -webkit-transform;
  transition-property: opacity, visibility, -webkit-transform;
  transition-property: opacity, transform, visibility;
  transition-property: opacity, transform, visibility, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  opacity: 0;
  position: fixed;
  right: 60px;
  bottom: 20px;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  visibility: hidden;
  z-index: 100;
  width: calc(100% - 120px);
}
@media screen and (max-width: 767px) {
  .site-fixed-button {
  width: 37vw;
  right: 0px;
  bottom: 10px;
  }
}

.site-fixed-button a {
  transition: opacity .3s;
}

.site-fixed-button a:hover {
  opacity: 0.7;
}

.site-fixed-button.-show {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.site-fixed-button.-inactive {
  display: none;
}

.site-block .button {
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .site-block .button {
  margin-top: 5.8666vw;
  }
}

.site-block .button-anchor {
  box-sizing: border-box;
  display: inline-block;
  font-size: 28px;
  letter-spacing: .08em;
  color: #fff;
  background-color: #ccc;
  border-radius: 10px;
  max-width: 634px;
  margin-inline: auto;
  width: 100%;
  padding: 28px 20px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .3s;
}
@media screen and (max-width: 767px) {
  .site-block .button-anchor {
  font-size: 4.8vw;
  padding: 4.8vw;
  }
}

.site-block .button-anchor:hover {
  opacity: 0.7;
}

.site-block .button.-green .button-anchor {
  background-color: #9FD63F;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .site-block .button.-green .button-anchor {
  margin-top: 8vw;
  }
}

.site-block .button.-pink .button-anchor {
  background-color: #FF1E7B;
}

.site-block .button.-end .button-anchor {
  pointer-events: none;
}

.site-block .button.-end .button-anchor .button-icon {
  padding-right: 0;
}

.site-block .button.-end .button-anchor .button-icon::after {
  content: normal;
}

.site-block .button.-line .button-anchor {
  background-color: #08C754;
}

.site-block .button.-inactive {
  pointer-events: none;
  filter: grayscale(1);
  opacity: 0.8;
}


.site-block .button-icon {
  display: block;
  position: relative;
  padding-right: 20px;
}

.site-block .button-icon::after {
  content: '';
  display: inline-block;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMC44NDkiIGhlaWdodD0iMTcuMTMiIHZpZXdCb3g9IjAgMCAxMC44NDkgMTcuMTMiPgogIDxwYXRoIGlkPSLjg5HjgrlfMTAzNyIgZGF0YS1uYW1lPSLjg5HjgrkgMTAzNyIgZD0iTS0yMTkuMzIsOTA2LjQ2NGgwbC04LjU2NCw4LjU2NC04LjU2NS04LjU2NSwyLjI4NC0yLjI4NCw2LjI4MSw2LjI4MSw2LjI4MS02LjI4MSwyLjI4NCwyLjI4NFoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC05MDQuMTggLTIxOS4zMikgcm90YXRlKC05MCkiIGZpbGw9IiNmZmYiLz4KPC9zdmc+Cg==);
  width: 10px;
  height: 17px;
  background-size: cover;
  margin-left: 18px;
}

@media screen and (max-width: 767px) {
  .site-block .button-icon::after {
  width: 2.1333vw;
  height: 3.466vw;
  margin-left: 3.2vw;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  }
}

.site-modal {
  -webkit-transition-property: opacity, visibility;
  transition-property: opacity, visibility;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  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;
  height: 100%;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  z-index: 99999;
}
.site-modal.-open {
  opacity: 1;
  visibility: visible;
}
.site-modal > .inner {
  background-color: #ffffff;
  border-radius: 10px;
  padding: calc(var(--margin-side-small) * 0.5);
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 300;
}
.site-modal > .inner > .close {
  margin: auto;
  position: absolute;
  bottom: -3.1111111111rem;
  right: 0;
  left: 0;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.site-modal > .inner > .close::after {
  font-family: "iconfonts";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  content: var(--icon-close);
  color: #000000;
  cursor: pointer;
  display: block;
  font-size: 1.3333333333rem;
  line-height: 1;
}
.site-modal > .inner > .image {
  margin: 0 auto 25px;
  max-width: 208px;
}
.site-modal > .inner > .title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 24px;
}
.site-modal > .inner > .description {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
.site-modal > .background {
  background-color: rgba(0, 0, 0, 0.4);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
}

.site-base {
  background: url(../images/common/background_noise.png) center center repeat;
  color: #754C00;
  font-family: "M PLUS Rounded 1c", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", Meiryo, sans-serif;
  font-weight: 700;
  letter-spacing: .08em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .site-base {
  padding-bottom: 0;
  }
}

.normal-heading-combi {
  text-align: center;
}

.normal-heading-combi h2 {
  font-size: 34px;
}

@media screen and (max-width: 767px) {
  .normal-heading-combi h2 {
  font-size: 5.8666vw;
}
}

.normal-heading-combi p {
  margin-top: 10px;
  font-family: "Yantramanav", serif;
  font-size: 15px;
  letter-spacing: .12em;
  color: #B58D41;
}
@media screen and (max-width: 767px) {
  .normal-heading-combi p {
  font-size: 3.4666vw;
}
}

.site-block {
  margin: 40px 0;
}
.site-block:last-child {
  margin-bottom: 0;
}
.site-block a {
  color: #754C00;
}

.topic-bg {
  padding-top: 50px;
  padding-bottom: 100px;
  background-image: url(../images/lp/topics_bg.png);
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .topic-bg {
  padding-top: 10vw;
  padding-bottom: 18.666vw;
  background-image: url(../images/lp/topics_bg_palmtop.png);
  }
}

.site-block#topics {
  margin-top: 0;
}

.site-block#package {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .site-block#package {
    margin-top: 32vw;
  }
}

.site-block#history {
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 180px;
  background-color: #F5FDE8;
}

@media screen and (max-width: 767px) {
  .site-block#history {
  padding-bottom: 24vw;
  }
}

.site-block#history::before {
  content: '';
  background-image: url(../images/lp/history_bg.svg);
  background-repeat: repeat-x;
  height: 10px;
  width: 100%;
  position: absolute;
  top: -10px;
  left: 0;
}

.site-block#campaign {
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  background: linear-gradient(180deg, rgba(255,217,218,1) 0%, rgba(252,247,247,1) 100%);
  background-color: #FCF7F7;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .site-block#campaign {
  padding-bottom: 18.666vw;
}
}

.site-block#campaign::before {
  content: '';
    display: block;
    padding-top: 5.655172414%;
    width: 100%;
    height: 0;
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyBpZD0idXVpZC1jZjUyNzljMi04N2E1LTRmY2UtODMzMi03MjA1MTI5ZmNhYjciIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8XzIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHZpZXdCb3g9IjAgMCAxNDUwIDgyIj4KICA8ZGVmcz4KICAgIDxzdHlsZT4KICAgICAgLnV1aWQtZTU2MDE0YTAtYjc2Yy00YWM5LTk1ZjgtMmYzYTFhZTFlYmVkIHsKICAgICAgICBmaWxsOiBub25lOwogICAgICB9CgogICAgICAudXVpZC00ZThkMDI0Mi0xMWZmLTRlMjYtYjU4ZS1lZTgwN2U1YTMwYmMgewogICAgICAgIGNsaXAtcGF0aDogdXJsKCN1dWlkLTM3OTNmZDQ0LWQ2OWEtNDNjYi04ZTJmLTA1NTIyODhmNGIxOSk7CiAgICAgIH0KCiAgICAgIC51dWlkLWE0ODc2NmYzLWIxYTgtNGIyNy1iNjgxLWIwNGY0NGI0MWFlZiB7CiAgICAgICAgZmlsbDogI2ZmZDlkYTsKICAgICAgfQogICAgPC9zdHlsZT4KICAgIDxjbGlwUGF0aCBpZD0idXVpZC0zNzkzZmQ0NC1kNjlhLTQzY2ItOGUyZi0wNTUyMjg4ZjRiMTkiPgogICAgICA8cmVjdCBjbGFzcz0idXVpZC1lNTYwMTRhMC1iNzZjLTRhYzktOTVmOC0yZjNhMWFlMWViZWQiIHdpZHRoPSIxNDUwIiBoZWlnaHQ9IjgyIi8+CiAgICA8L2NsaXBQYXRoPgogIDwvZGVmcz4KICA8ZyBpZD0idXVpZC1lN2JiOWFlNC1jMTVkLTQ5OGMtOWI2Ny1jYmNhYWI1YWU5ODkiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8XzEiPgogICAgPGcgY2xhc3M9InV1aWQtNGU4ZDAyNDItMTFmZi00ZTI2LWI1OGUtZWU4MDdlNWEzMGJjIj4KICAgICAgPGcgaWQ9InV1aWQtMDk0Y2NlZDktYjhhMy00OWNhLTg3YTYtOWI2ZmI0MjJmOWFhIiBkYXRhLW5hbWU9IuODnuOCueOCr+OCsOODq+ODvOODl181MSI+CiAgICAgICAgPGVsbGlwc2UgaWQ9InV1aWQtNjlhZjQ4MzUtYThmNi00NTIwLWI5YjAtNDdkNjI4NjU0NzhlIiBkYXRhLW5hbWU9IualleWGhuW9ol85OCIgY2xhc3M9InV1aWQtYTQ4NzY2ZjMtYjFhOC00YjI3LWI2ODEtYjA0ZjQ0YjQxYWVmIiBjeD0iNzI1IiBjeT0iNjQwIiByeD0iMTQ4OCIgcnk9IjY0MCIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgPC9nPgo8L3N2Zz4=');
    background-size: cover;
    position: absolute;
    top: 1px;
    left: 50%;
    transform: translate(-50%,-100%);
}


.site-block#chocozap {
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 100px;
  background-color: #fff;
  background-image: url(../images/lp/chocozap_tile_bg.svg);
  background-repeat: repeat;
}
@media screen and (max-width: 767px) {
  .site-block#chocozap {
  padding-bottom: 18.6666vw;
}
}

.site-block#chocozap::before {
  content: '';
  background-image: url(../images/lp/chocozap_bg.svg);
  background-repeat: repeat-x;
  height: 10px;
  width: 100%;
  position: absolute;
  top: -10px;
  left: 0;
}

.site-block#others {
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 70px;
  padding-bottom: 100px;
  background: linear-gradient(180deg, rgba(251,245,255,1) 0%, rgba(255,255,255,1) 100%);
}
@media screen and (max-width: 767px) {
  .site-block#others {
  padding-top: 13.333vw;
}
}

.site-block#others::before {
  content: '';
  background-image: url(../images/lp/others_bg.svg);
  background-repeat: repeat-x;
  height: 10px;
  width: 100%;
  position: absolute;
  top: -10px;
  left: 0;
}

.site-modal > .inner {
}

@media screen and (max-width: 767px) {
  .site-modal > .inner {
  width: calc(100% - 10.666vw);
}
}

.site-modal .modal-map {
    
}


.site-modal .modal-map .modal-map-heading {
  text-align: left;
  font-size: 20px;
  letter-spacing: .08em;
  font-weight: 700;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .site-modal .modal-map .modal-map-heading {
  display: block;
  font-size: 4.8vw;
  }
  }

.site-modal .modal-map .modal-map-heading img {
  width: 36px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .site-modal .modal-map .modal-map-heading img {
  width: 9.6vw;
  vertical-align: middle;
}
}

.site-modal .modal-map .map-table-outer {
  position: relative;
}

.site-modal .modal-map .map-table-outer::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background-image: url(../images/lp/modal_map_cover.png);
  z-index: 1;
  pointer-events: none;
}

.site-modal .modal-map .map-table-inner {
  height: 500px;
  overflow-y: scroll;
  margin-top: 15px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .site-modal .modal-map .map-table-inner {
  height: 300px;
  }
  }

.site-modal .modal-map .map-table {
  text-align: left;
  width: 100%;
  border-bottom: 1px solid #000000;
  border-spacing: 0;
}

.site-modal .modal-map .map-table thead th:nth-child(1){
  width: 240px;
  @media screen and (max-width: 767px) {
      width: 26.666vw;
  }
}

.site-modal .modal-map .map-table thead th:nth-child(2){
  width: calc(100% - 240px);
}

@media screen and (max-width: 767px) {
  .site-modal .modal-map .map-table thead th:nth-child(2){
  width: calc(100% - 26.666vw);
}
}

.site-modal .modal-map .map-table th,
.site-modal .modal-map .map-table td {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .08em;
  border-top: 1px solid #000000;
  border-right: 1px solid #000000;
  outline: none;
  border-spacing: 0;
}

@media screen and (max-width: 767px) {
  .site-modal .modal-map .map-table th,
.site-modal .modal-map .map-table td {
  font-size: 3.7333vw;
}
}

.site-modal .modal-map .map-table th {
  padding: 5px 15px;
  background-color: #000000;
  color: #ffffff;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}


.site-modal .modal-map .map-table th:nth-child(2) {

  border-right: 1px solid #000000;
}

.site-modal .modal-map .map-table td {
  padding: 5px 15px;
  border-top: 1px solid #000000;
  border-right: 1px solid #000000;
}

.site-modal .modal-map .map-table td:nth-child(1) {

  border-left: 1px solid #000000;
}

@media screen and (min-width: 767px) {
  .for-large {
    display: block;
  }
  .for-small {
    display: none;
  }
  .text-center-for-large {
    text-align: center;
  }
  .text-center-for-small {
    text-align: left;
  }
  .text-right-for-large {
    text-align: right;
  }
  .text-right-for-small {
    text-align: left;
  }
  .layout-max {
    max-width: calc(var(--content-max) + 8vw);
    margin-right: auto;
    margin-left: auto;
    padding-right: 4vw;
    padding-left: 4vw;
  }
  .layout-primary {
    margin-right: auto;
    margin-left: auto;
    max-width: 1140px;
    padding-right: 40px;
    padding-left: 40px;
  }
  .layout-secondary {
    margin-right: auto;
    margin-left: auto;
    max-width: calc(var(--content-secondary) + 8vw);
    padding-right: 4vw;
    padding-left: 4vw;
  }
  .js-fadein {
    -webkit-transform: translateY(3.5555555556rem);
    transform: translateY(3.5555555556rem);
  }
  .site-fixed-button {
    right: 0;
    bottom: 60px;
    max-width: 162px;
    width: auto;
  }
  .site-heading-combi > .ornament {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .site-heading-combi > .ornament > .text::after {
    font-size: 42px;
  }
  .site-heading-combi > .title {
    font-size: 39px;
  }
  .site-modal > .inner {
    margin: var(--margin-side);
    max-width: 800px;
    padding: 80px 20px;
  }
  .site-modal > .inner > .close {
    top: 20px;
    bottom: auto;
    right: 20px;
    left: auto;
  }

  .site-base {
    padding-bottom: 0;
  }
  .site-block {
    margin: 50px 0;
  }
  .site-block + .site-block {
    margin: 100px 0;
  }
}