@charset "UTF-8";
/*-------------------------------------------------------------------*/
/*-------------------------------------------------------------------*/
/*-------------------------------------------------------------------*/
/*-------------------------------------------------------------------*/
/*-------------------------------------------------------------------*/
/*-------------------------------------------------------------------*/
/*-------------------------------------------------------------------*/
/*-------------------------------------------------------------------*/
html {
  overflow: hidden;
}
html.-skipped, html.-finished, html.-loaded {
  overflow: visible;
}

.loading_cover {
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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;
  overflow: hidden;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  background-color: #000;
}
.-loaded .loading_cover {
  display: none;
  pointer-events: none;
  opacity: 0;
}
.-skipped .loading_cover {
  pointer-events: none;
}
@media print, screen and (min-width: 641px) {
  .-skipped .loading_cover {
    opacity: 0;
  }
}
.-finished .loading_cover {
  -webkit-transition: opacity 3s;
  transition: opacity 3s;
  pointer-events: none;
}
@media print, screen and (min-width: 641px) {
  .-finished .loading_cover {
    opacity: 0;
  }
}
.loading_cover::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.9;
  background: -webkit-gradient(linear, left bottom, left top, from(#161006), color-stop(35%, #161006), color-stop(48%, rgba(22, 16, 6, 0.9)), color-stop(52%, rgba(0, 0, 0, 0.7)), color-stop(56%, rgba(22, 16, 6, 0.9)), to(#161006));
  background: linear-gradient(0deg, #161006, #161006 35%, rgba(22, 16, 6, 0.9) 48%, rgba(0, 0, 0, 0.7) 52%, rgba(22, 16, 6, 0.9) 56%, #161006);
  background: -webkit-linear-gradient(0deg, #161006, #161006 35%, rgba(22, 16, 6, 0.9) 48%, rgba(0, 0, 0, 0.7) 52%, rgba(22, 16, 6, 0.9) 56%, #161006);
  mix-blend-mode: multiply;
}
@media screen and (max-width: 640px) {
  .loading_cover::before {
    background: -webkit-gradient(linear, left bottom, left top, from(#161006), color-stop(32%, #161006), color-stop(44%, rgba(22, 16, 6, 0.85)), color-stop(52%, rgba(0, 0, 0, 0.7)), color-stop(60%, rgba(22, 16, 6, 0.9)), to(#161006));
    background: linear-gradient(0deg, #161006, #161006 32%, rgba(22, 16, 6, 0.85) 44%, rgba(0, 0, 0, 0.7) 52%, rgba(22, 16, 6, 0.9) 60%, #161006);
    background: -webkit-linear-gradient(0deg, #161006, #161006 32%, rgba(22, 16, 6, 0.85) 44%, rgba(0, 0, 0, 0.7) 52%, rgba(22, 16, 6, 0.9) 60%, #161006);
  }
}
.loading_cover .bg {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
}
.loading_cover .bg.-active {
  opacity: 1;
}
.loading_cover .txt_wrap {
  position: relative;
  z-index: 0;
  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;
  gap: 0.4rem;
}
@media screen and (max-width: 640px) {
  .loading_cover .txt_wrap {
    width: calc(100% - 0.4rem);
    gap: 0.3rem;
  }
}
.loading_cover .txt_wrap .title {
  position: relative;
  width: 5.51rem;
  opacity: 0;
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
}
@media screen and (max-width: 640px) {
  .loading_cover .txt_wrap .title {
    width: 100%;
  }
}
.loading_cover .txt_wrap .title img {
  width: 100%;
  height: auto;
}
.loading_cover .txt_wrap .title.-active {
  opacity: 1;
}
.loading_cover .txt_wrap .skip {
  position: relative;
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  pointer-events: none;
}
.loading_cover .txt_wrap .skip.-active {
  opacity: 1;
  pointer-events: all;
}
.loading_cover .txt_wrap .skip img {
  width: 100%;
  height: auto;
}
.loading_cover .txt_wrap .skip span {
  position: relative;
  display: block;
  width: 0.44rem;
}
@media screen and (max-width: 640px) {
  .loading_cover .txt_wrap .skip span {
    width: 0.36rem;
  }
}
.loading_cover .txt_wrap .skip span::before, .loading_cover .txt_wrap .skip span::after {
  content: "";
  position: absolute;
  left: calc(50% - 0.09rem);
  width: 0.18rem;
  height: 0.12rem;
  background-image: url("../img/loading_skip_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
@media screen and (max-width: 640px) {
  .loading_cover .txt_wrap .skip span::before, .loading_cover .txt_wrap .skip span::after {
    left: calc(50% - 0.06rem);
    width: 0.12rem;
    height: 0.08rem;
  }
}
.loading_cover .txt_wrap .skip span::before {
  bottom: -0.25rem;
  opacity: 0;
  -webkit-animation-name: scrolldown;
          animation-name: scrolldown;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
@media screen and (max-width: 640px) {
  .loading_cover .txt_wrap .skip span::before {
    bottom: -0.16rem;
  }
}
.loading_cover .txt_wrap .skip span::after {
  bottom: -0.35rem;
}
@media screen and (max-width: 640px) {
  .loading_cover .txt_wrap .skip span::after {
    bottom: -0.26rem;
  }
}
.no-touchevents .loading_cover .txt_wrap .skip:hover span::before {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  opacity: 0 !important;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@-webkit-keyframes scrolldown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0.1rem);
            transform: translateY(0.1rem);
    opacity: 0;
  }
}
@keyframes scrolldown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0.1rem);
            transform: translateY(0.1rem);
    opacity: 0;
  }
}
.loading_cover .effect {
  position: absolute;
  left: calc(50% - 6rem);
  z-index: 1;
  width: 12rem;
  height: 12rem;
  pointer-events: none;
}
@media screen and (max-width: 640px) {
  .loading_cover .effect {
    left: calc(50% - 85vw);
    width: 170vw;
    height: 170vw;
  }
}
.loading_cover .effect img {
  width: 100%;
  height: auto;
}
.loading_cover .effect.radial01 {
  top: -75%;
  mix-blend-mode: lighten;
  -webkit-animation: loop_forward 60s linear infinite;
          animation: loop_forward 60s linear infinite;
  -webkit-transition: opacity 1.5s;
  transition: opacity 1.5s;
  opacity: 0;
}
@media screen and (max-width: 640px) {
  .loading_cover .effect.radial01 {
    top: -85vw;
  }
}
.loading_cover .effect.radial01.-active {
  opacity: 0.2;
}
.loading_cover .effect.radial02 {
  top: -70%;
  mix-blend-mode: screen;
  -webkit-animation: loop_reverse 40s linear infinite;
          animation: loop_reverse 40s linear infinite;
  -webkit-transition: opacity 3s;
  transition: opacity 3s;
  opacity: 0;
}
@media screen and (max-width: 640px) {
  .loading_cover .effect.radial02 {
    top: -80vw;
  }
}
.loading_cover .effect.radial02.-active {
  opacity: 0.1;
}
@-webkit-keyframes loop_forward {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes loop_forward {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes loop_reverse {
  0% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes loop_reverse {
  0% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

.sec_mv .mv_inner {
  position: relative;
  width: 100%;
  height: calc(100svh - 1.06rem);
}
@media screen and (max-width: 640px) {
  .sec_mv .mv_inner {
    height: 100svh;
  }
}
.sec_mv [data-slidearea01].mv_slide {
  height: 100%;
  opacity: 0;
  background-color: rgba(61, 61, 61, 0);
  -webkit-transition-property: opacity, background;
  transition-property: opacity, background;
  -webkit-transition-delay: 1s, 3s;
          transition-delay: 1s, 3s;
  -webkit-transition-duration: 1s, 0.3s;
          transition-duration: 1s, 0.3s;
}
.sec_mv [data-slidearea01].mv_slide.-cue {
  opacity: 1;
  background-color: #3d3d3d;
}
.sec_mv [data-slidearea01].mv_slide .slidearea01_wrap {
  max-width: 100%;
  height: 100%;
}
.sec_mv [data-slidearea01].mv_slide .ui_wrap {
  left: 0.4rem;
  bottom: 0.3rem;
}
@media screen and (max-width: 640px) {
  .sec_mv [data-slidearea01].mv_slide .ui_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 1.5rem;
    height: 0.3rem;
    bottom: 1rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.sec_mv [data-slidearea01].mv_slide .slidearea01_btns button:before {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #d0bf93;
}
.sec_mv [data-slidearea01].mv_slide .slidearea01_btns button:after {
  background-color: #fff;
}
.no-touchevents .sec_mv [data-slidearea01].mv_slide .slidearea01_btns button:hover:before {
  background-color: #452A00;
  border: none;
}
.no-touchevents .sec_mv [data-slidearea01].mv_slide .slidearea01_btns button:hover:after {
  border-color: #FFF;
}
@media screen and (max-width: 640px) {
  .sec_mv [data-slidearea01].mv_slide .slidearea01_pager button {
    width: 0.5rem;
  }
}
.sec_mv [data-slidearea01].mv_slide .slidearea01_pager button::after {
  background-color: #fff;
}
.sec_mv [data-slidearea01].mv_slide .slidearea01_count {
  color: #fff;
}
@media screen and (max-width: 640px) {
  .sec_mv [data-slidearea01].mv_slide .slidearea01_count {
    width: 1rem;
    font-size: 0.14rem;
    letter-spacing: 0.06em;
  }
  .sec_mv [data-slidearea01].mv_slide .slidearea01_count span {
    text-align: center;
    width: 100%;
  }
}
@media screen and (max-width: 640px) and (max-width: 640px) {
  .sec_mv [data-slidearea01].mv_slide .slidearea01_count span {
    display: inline-block;
    width: auto;
  }
}
.sec_mv [data-slidearea01].mv_slide .item {
  width: 100vw;
  height: calc(100vh - 1.06rem);
}
@media screen and (max-width: 640px) {
  .sec_mv [data-slidearea01].mv_slide .item {
    height: 100svh;
  }
}
.sec_mv [data-slidearea01].mv_slide .item.active .item_inner {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.sec_mv [data-slidearea01].mv_slide .item .item_inner {
  position: relative;
  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;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translateX(0.1rem);
          transform: translateX(0.1rem);
}
@media screen and (max-width: 640px) {
  .sec_mv [data-slidearea01].mv_slide .item .item_inner {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.sec_mv [data-slidearea01].mv_slide .item .mv_bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.sec_mv [data-slidearea01].mv_slide .item .mv_title_set {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.1rem;
  width: 5.93rem;
  height: 3.05rem;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .sec_mv [data-slidearea01].mv_slide .item .mv_title_set {
    width: 3.35rem;
    height: 2.2rem;
    margin: auto;
    margin-top: 36vw;
  }
}
.sec_mv [data-slidearea01].mv_slide .item .mv_catch {
  font-size: 0.24rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .sec_mv [data-slidearea01].mv_slide .item .mv_catch {
    font-size: 0.14rem;
    letter-spacing: 0.08em;
    text-shadow: 0 0 0.03rem rgba(3, 3, 3, 0.4);
  }
}
.sec_mv [data-slidearea01].mv_slide .item .mv_title {
  width: 5.93rem;
  height: 3.27rem;
}
@media screen and (max-width: 640px) {
  .sec_mv [data-slidearea01].mv_slide .item .mv_title {
    width: 3.35rem;
    height: 1.88rem;
  }
}
.sec_mv [data-slidearea01].mv_slide .item .mv_title img {
  width: 100%;
  height: auto;
}
.sec_mv [data-slidearea01].mv_slide .item .mv_caption {
  position: absolute;
  bottom: 0.3rem;
  right: 2.35rem;
  font-size: 0.15rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1;
  color: #fff;
  text-align: right;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .sec_mv [data-slidearea01].mv_slide .item .mv_caption {
    left: 0;
    right: 0;
    top: calc(100svh - 0.9rem);
    bottom: auto;
    font-size: 0.13rem;
    letter-spacing: 0.12em;
    line-height: 1.6;
    text-align: center;
  }
}
.sec_mv [data-slidearea01].mv_slide .item .mv_caption span {
  display: inline-block;
  padding: 0.1rem;
}
@media screen and (max-width: 640px) {
  .sec_mv [data-slidearea01].mv_slide .item .mv_caption span {
    padding: 0.05rem 0.3rem;
  }
}
@media print, screen and (min-width: 641px) {
  .sec_mv [data-slidearea01].mv_slide .item.mv00 .mv_title_set {
    width: 5.88rem;
    height: 2.8rem;
    top: 0;
    left: calc(100% - 7.8rem);
  }
}
@media screen and (max-width: 640px) {
  .sec_mv [data-slidearea01].mv_slide .item.mv00 .mv_title_set {
    width: 3rem;
    height: 1.43rem;
    margin-top: 48vw;
  }
}
.sec_mv [data-slidearea01].mv_slide .item.mv00 .mv_title {
  width: 5.88rem;
  height: 2.8rem;
}
@media screen and (max-width: 640px) {
  .sec_mv [data-slidearea01].mv_slide .item.mv00 .mv_title {
    width: 3rem;
    height: 1.43rem;
  }
}
.sec_mv [data-slidearea01].mv_slide .item.mv00 .mv_title img {
  width: 100%;
  height: auto;
}
@media print, screen and (min-width: 641px) {
  .sec_mv [data-slidearea01].mv_slide .item.mv01 .mv_title_set {
    top: 0.2rem;
    left: calc(100% - 8.2rem);
  }
}
@media print, screen and (min-width: 641px) {
  .sec_mv [data-slidearea01].mv_slide .item.mv02 .mv_title_set {
    top: -0.4rem;
    left: 0.75rem;
  }
}
.sec_mv [data-slidearea01].mv_slide .item.mv02 .mv_caption {
  color: #452A00;
}
.sec_mv [data-slidearea01].mv_slide .item.mv02 .mv_caption span {
  background-color: rgba(217, 217, 217, 0.5);
}
@media print, screen and (min-width: 641px) {
  .sec_mv [data-slidearea01].mv_slide .item.mv03 .mv_title_set {
    top: 1.5rem;
    left: 0.78rem;
  }
  .sec_mv [data-slidearea01].mv_slide .item.mv03 .mv_caption span {
    background-color: rgba(217, 217, 217, 0.35);
  }
}
@media print, screen and (min-width: 641px) {
  .sec_mv [data-slidearea01].mv_slide .item.mv04 .mv_title_set {
    top: -0.5rem;
    left: calc(100% - 7.95rem);
  }
}
@media print, screen and (min-width: 641px) {
  .sec_mv [data-slidearea01].mv_slide .item.mv05 .mv_title_set {
    left: 0.85rem;
  }
}
.sec_mv [data-slidearea01].mv_slide .item.mv05 .mv_caption {
  color: #452A00;
}
.sec_mv [data-slidearea01].mv_slide .item.mv05 .mv_caption span {
  background-color: rgba(217, 217, 217, 0.75);
}
@media print, screen and (min-width: 641px) {
  .sec_mv [data-slidearea01].mv_slide .item.mv06 .mv_title_set {
    top: 0.15rem;
    left: 0.6rem;
  }
}
.sec_mv [data-slidearea01].mv_slide:not(.-cue) .item[data-slide-num="0"] {
  z-index: 1;
  opacity: 1;
  left: 0;
  -webkit-transition: none;
  transition: none;
}
.sec_mv [data-slidearea01].mv_slide:not(.-cue) .item[data-slide-num="0"] .item_inner {
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.sec_news {
  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;
  background-color: #fff;
  max-width: 12.8rem;
  width: 100%;
  margin: auto;
  padding: 0.35rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .sec_news {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0.5rem 0 0.2rem;
  }
}
.sec_news .news_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.1rem;
  width: 2.2rem;
  font-size: 0.14rem;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media screen and (max-width: 640px) {
  .sec_news .news_title {
    -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;
    width: 100%;
    font-size: 0.13rem;
    letter-spacing: 0.04em;
    gap: 0.05rem;
  }
}
.sec_news .news_title .-sub_txt {
  font-size: 0.36rem;
  color: #452A00;
}
@media screen and (max-width: 640px) {
  .sec_news .news_title .-sub_txt {
    font-size: 0.32rem;
  }
}
.sec_news .news_detail {
  position: relative;
  padding-left: 0.35rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .sec_news .news_detail {
    max-width: calc(100% - 0.8rem);
    width: 100%;
    padding: 0;
    margin: auto;
    margin-top: 0.1rem;
    border: none;
  }
}
.sec_news .news_detail::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 0.3rem);
  width: 1px;
  height: 0.6rem;
  background-color: #7d6a4d;
}
@media screen and (max-width: 640px) {
  .sec_news .news_detail::before {
    content: none;
  }
}
.sec_news .news_detail li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.15rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
@media screen and (max-width: 640px) {
  .sec_news .news_detail li {
    display: block;
    font-size: 0.14rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.84;
    text-align: justify;
    text-justify: inter-ideograph;
  }
}
.sec_news .news_detail li .date {
  font-family: "garamond-premier-pro-subhead", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.18rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #68530A;
  margin-right: 2em;
}
@media screen and (max-width: 640px) {
  .sec_news .news_detail li .date {
    display: block;
    font-size: 0.16rem;
    margin: 0;
    margin-bottom: 0.1rem;
  }
}
.sec_news .news_detail li + li {
  margin-top: 0.15rem;
}
@media print, screen and (min-width: 641px) {
  .sec_news .news_detail li a, .sec_news .news_detail li span {
    position: relative;
    top: -0.02rem;
  }
}
.no-touchevents .sec_news .news_detail li a:hover {
  text-decoration: underline;
}

.sec_recommend {
  position: relative;
  background-color: #FEFBF5;
}
.sec_recommend .bg_deco01 {
  position: absolute;
  top: -0.2rem;
  left: -4.35rem;
  width: 8.76rem;
  height: 8.76rem;
}
@media screen and (max-width: 640px) {
  .sec_recommend .bg_deco01 {
    display: none;
  }
}
.sec_recommend .bg_deco01 .element {
  stroke-opacity: 0.8;
}
.sec_recommend > .recommend_inner {
  position: relative;
  max-width: 14rem;
  width: 100%;
  margin: auto;
  padding-top: 1.2rem;
  padding-bottom: 3.1rem;
}
@media screen and (max-width: 640px) {
  .sec_recommend > .recommend_inner {
    padding-top: 0.75rem;
    padding-bottom: 0.65rem;
  }
}
@media screen and (max-width: 640px) {
  .sec_recommend .-sec_tit {
    text-align: center;
  }
}
@media screen and (max-width: 640px) {
  .sec_recommend .-sec_tit .title span:not(.-sub_txt) {
    display: none;
  }
}
.sec_recommend [data-slidearea01].recommend_slide {
  padding-top: 1.1rem;
  margin-top: -0.6rem;
}
.sec_recommend [data-slidearea01].recommend_slide .slidearea01_wrap {
  max-width: 13.8rem;
  margin: 0;
  margin-left: -0.16rem;
}
.sec_recommend [data-slidearea01].recommend_slide .slidearea01_btns {
  position: absolute;
  top: -1.1rem;
  bottom: auto;
  left: auto;
  right: 0.15rem;
  margin: 0;
  height: 0.6rem;
  width: 1.3rem;
}
.sec_recommend [data-slidearea01].recommend_slide .slidearea01_btns button {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@media print, screen and (min-width: 641px) {
  .sec_recommend [data-slidearea01].recommend_slide .slidearea01_btns button {
    width: 0.6rem;
    height: 0.6rem;
  }
}
@media screen and (max-width: 640px) {
  .sec_recommend [data-slidearea01].recommend_slide .slidearea01_btns button {
    width: 60px;
    height: 90px;
  }
}
.sec_recommend [data-slidearea01].recommend_slide .slidearea01_btns button:before, .sec_recommend [data-slidearea01].recommend_slide .slidearea01_btns button:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.sec_recommend [data-slidearea01].recommend_slide .slidearea01_btns button:before {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #FFF;
  border: 1px solid #d0bf93;
  border-radius: 50%;
}
.sec_recommend [data-slidearea01].recommend_slide .slidearea01_btns button:after {
  width: 0.4rem;
  height: 0.4rem;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url("../common/img/ico_btn_arrow.svg");
          mask-image: url("../common/img/ico_btn_arrow.svg");
  background-color: #452A00;
}
.sec_recommend [data-slidearea01].recommend_slide .slidearea01_btns button.next {
  right: 0;
}
.sec_recommend [data-slidearea01].recommend_slide .slidearea01_btns button.prev {
  left: 0;
}
.sec_recommend [data-slidearea01].recommend_slide .slidearea01_btns button.prev::after {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.sec_recommend [data-slidearea01].recommend_slide .slidearea01_btns button.disabled {
  pointer-events: none;
  opacity: 0.3;
}
.no-touchevents .sec_recommend [data-slidearea01].recommend_slide .slidearea01_btns button:hover:before {
  background-color: #452A00;
  border: none;
}
.no-touchevents .sec_recommend [data-slidearea01].recommend_slide .slidearea01_btns button:hover:after {
  background-color: #fff;
}
.sec_recommend [data-slidearea01].recommend_slide .slidearea01_wrapin {
  padding: 0 75% 0 0;
  overflow: hidden;
}
.sec_recommend [data-slidearea01].recommend_slide .slidearea01_pager {
  display: none;
}
.sec_recommend [data-slidearea01].recommend_slide .item {
  max-width: 3.48rem;
  width: 100%;
}
.sec_recommend [data-slidearea01].recommend_slide .item .item_inner {
  position: relative;
  max-width: 3.1rem;
  width: 100%;
  margin: auto;
}
.sec_recommend [data-slidearea01].recommend_slide .item .thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 31/21;
}
.sec_recommend [data-slidearea01].recommend_slide .item .detail .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 0.2rem;
}
.sec_recommend [data-slidearea01].recommend_slide .item .detail .info .cat {
  font-family: "garamond-premier-pro-subhead", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.26rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #68530A;
  padding-left: 0.1rem;
  border-left: 1px solid #C67F15;
}
.sec_recommend [data-slidearea01].recommend_slide .item .detail .info .date {
  font-family: "garamond-premier-pro-subhead", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.24rem;
  letter-spacing: 0.02em;
  color: #68530A;
}
.sec_recommend [data-slidearea01].recommend_slide .item .detail .info .date > span {
  font-size: 0.58em;
  color: #3D3D3D;
}
.sec_recommend [data-slidearea01].recommend_slide .item .detail .title {
  font-size: 0.16rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.87;
  margin-top: 0.1rem;
}
.sec_recommend [data-slidearea01].recommend_slide .item .detail .caption {
  font-size: 0.13rem;
  letter-spacing: 0.06em;
  line-height: 1.8;
  color: #525252;
  margin-top: 0.1rem;
}
@media screen and (max-width: 640px) {
  .sec_recommend .recommend_box {
    position: relative;
    background-color: #FEFBF5;
    text-align: center;
    margin-top: 0.4rem;
  }
  .sec_recommend .recommend_box .item_wrap > .title {
    font-size: 0.18rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1;
    margin-bottom: 0.25rem;
  }
  .sec_recommend .recommend_box .item_wrap + .item_wrap {
    margin-top: 0.7rem;
  }
  .sec_recommend .recommend_box .item {
    position: relative;
    z-index: 1;
    max-width: calc(100% - 0.32rem);
    width: 100%;
    margin: auto;
  }
  .sec_recommend .recommend_box .item + .item {
    margin-top: 0.24rem;
  }
  .sec_recommend .recommend_box .item .item_inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.24rem;
  }
  .sec_recommend .recommend_box .item .thumb {
    width: 42.13vw;
    height: auto;
    aspect-ratio: 31/21;
  }
  .sec_recommend .recommend_box .item .detail {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .sec_recommend .recommend_box .item .detail .info {
    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;
    color: #68530a;
  }
  .sec_recommend .recommend_box .item .detail .cat {
    font-family: "garamond-premier-pro", serif;
    font-weight: 400;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 0.18rem;
    letter-spacing: 0.08em;
    line-height: 1;
  }
  .sec_recommend .recommend_box .item .detail .date {
    font-family: "garamond-premier-pro-subhead", serif;
    font-weight: 400;
    font-style: normal;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 0.2rem;
    letter-spacing: 0.04em;
  }
  .sec_recommend .recommend_box .item .detail .date span {
    font-size: 0.12rem;
    letter-spacing: 0.06em;
    line-height: 1;
  }
  .sec_recommend .recommend_box .item .detail .title {
    font-size: 0.14rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.6;
    color: #301802;
  }
  .sec_recommend .recommend_box .-btn03 {
    margin-top: 0.4rem;
  }
}
@media print, screen and (min-width: 641px) {
  .sec_recommend .recommend_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.26rem;
  }
  .sec_recommend .recommend_title .-sec_tit {
    margin-bottom: 0.33rem;
  }
}
.sec_recommend .wd_box {
  position: relative;
  z-index: 5;
}
@media print, screen and (min-width: 641px) {
  .sec_recommend .wd_box {
    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;
    -webkit-column-gap: 0.4rem;
       -moz-column-gap: 0.4rem;
            column-gap: 0.4rem;
    max-width: 11.2rem;
    margin: 1.2rem auto 0;
  }
  .sec_recommend .wd_box::before, .sec_recommend .wd_box::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: -webkit-gradient(linear, left bottom, left top, from(#452A00), color-stop(65%, #694204), to(#875200));
    background: linear-gradient(0deg, #452A00, #694204 65%, #875200);
    background: -webkit-linear-gradient(0deg, #452A00, #694204 65%, #875200);
  }
  .sec_recommend .wd_box::before {
    top: 0;
  }
  .sec_recommend .wd_box::after {
    bottom: 0;
  }
}
@media screen and (max-width: 640px) {
  .sec_recommend .wd_box .wd_lineBox {
    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;
    gap: 0.14rem;
    padding-top: 0.66rem;
    padding-bottom: 0.3rem;
  }
  .sec_recommend .wd_box .wd_lineBox::before, .sec_recommend .wd_box .wd_lineBox::after {
    content: "";
    display: block;
    width: 1.39rem;
    height: 0.01rem;
    background: -webkit-gradient(linear, left bottom, left top, from(#452A00), color-stop(65%, #694204), to(#875200));
    background: linear-gradient(0deg, #452A00, #694204 65%, #875200);
    background: -webkit-linear-gradient(0deg, #452A00, #694204 65%, #875200);
  }
}
.sec_recommend .wd_box .textBox .text {
  text-align: center;
  font-size: 0.2rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #452A00;
}
.sec_recommend .wd_box .textBox .text span {
  font-size: 0.22rem;
}
@media screen and (max-width: 640px) {
  .sec_recommend .wd_box .textBox .text {
    font-size: 0.16rem;
    line-height: 1.92;
    letter-spacing: 0.05em;
  }
  .sec_recommend .wd_box .textBox .text span {
    font-size: 0.17rem;
  }
}
.sec_recommend .wd_box .iconBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.08rem;
}
.sec_recommend .wd_box .iconBox img {
  width: 1.9rem;
}
@media screen and (max-width: 640px) {
  .sec_recommend .wd_box .iconBox {
    padding-top: 0.1rem;
  }
  .sec_recommend .wd_box .iconBox img {
    width: 29vw;
  }
}

.sec_concept {
  position: relative;
}
.sec_concept .bg_deco01 {
  top: -2.8rem;
  right: calc(50% - 11.8rem);
  width: 11.8rem;
  height: 11.8rem;
}
@media screen and (max-width: 640px) {
  .sec_concept .bg_deco01 {
    width: 4.9rem;
    height: 4.9rem;
    top: -3.6rem;
    right: calc(50% - 4.55rem);
  }
}
.sec_concept .bg_deco01 .element {
  stroke-opacity: 0.7;
}
.sec_concept .bg_deco02 {
  top: 5.2rem;
  right: calc(50% - 12.6rem);
  width: 13.6rem;
  height: 13.6rem;
}
@media print, screen and (min-width: 641px) {
  .sec_concept .bg_deco02 {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .sec_concept .bg_deco02 {
    width: 3.5rem;
    height: 3.5rem;
    top: 15.7rem;
    right: calc(50% - 4rem);
  }
}
.sec_concept .bg_deco02 .element {
  stroke-opacity: 0.8;
}
@media screen and (max-width: 640px) {
  .sec_concept .bg_deco02 .element {
    stroke-opacity: 1;
    stroke-width: 0.1;
  }
}
.sec_concept .bg_deco03 {
  bottom: 4rem;
  left: calc(50% - 15rem);
  width: 13.1rem;
  height: 13.1rem;
}
@media screen and (max-width: 640px) {
  .sec_concept .bg_deco03 {
    width: 3.5rem;
    height: 3.5rem;
    left: calc(50% - 3.7rem);
    bottom: 0.2rem;
  }
}
.sec_concept .bg_deco03 .element {
  stroke: #F5EEDA;
  stroke-opacity: 0.8;
}
@media screen and (max-width: 640px) {
  .sec_concept .bg_deco03 .element {
    stroke: rgba(223, 209, 174, 0.4);
    stroke-opacity: 1;
    stroke-width: 0.2;
  }
}
@media screen and (max-width: 640px) {
  .sec_concept {
    padding-bottom: 0.75rem;
  }
}
.sec_concept .concept_mv {
  position: relative;
  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;
  max-width: 15.2rem;
  width: 100%;
  margin: auto;
  margin-top: -1.1rem;
}
@media screen and (max-width: 640px) {
  .sec_concept .concept_mv {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
}
.sec_concept .concept_mv .mv_left {
  position: relative;
  margin-top: -0.75rem;
}
@media screen and (max-width: 640px) {
  .sec_concept .concept_mv .mv_left {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: 0;
    width: 100%;
    height: 84.53vw;
  }
}
.sec_concept .concept_mv .mv_right {
  position: relative;
  margin-bottom: -0.75rem;
}
@media screen and (max-width: 640px) {
  .sec_concept .concept_mv .mv_right {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0;
    width: 100%;
    height: 84.53vw;
  }
}
@media print, screen and (min-width: 641px) {
  .sec_concept .concept_mv .concept_detail {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    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;
  }
}
@media screen and (max-width: 640px) {
  .sec_concept .concept_mv .concept_detail {
    position: static;
    width: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.sec_concept .concept_mv .concept_detail::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 5.72rem;
  height: 5.45rem;
  backdrop-filter: blur(5px);
}
@media screen and (max-width: 640px) {
  .sec_concept .concept_mv .concept_detail::before {
    top: 59.73vw;
    left: calc(50% - 1.72rem);
    width: 3.43rem;
    height: 1.91rem;
    backdrop-filter: blur(2px);
  }
}
.sec_concept .concept_mv .concept_detail .title {
  position: relative;
  left: -0.25rem;
}
@media screen and (max-width: 640px) {
  .sec_concept .concept_mv .concept_detail .title {
    position: absolute;
    top: 66.66vw;
    left: calc(50% - 1.72rem);
    width: 3.1rem;
    height: 1.88rem;
  }
  .sec_concept .concept_mv .concept_detail .title img {
    width: 100%;
    height: auto;
  }
}
.sec_concept .concept_mv .concept_catch {
  position: relative;
  z-index: 1;
  font-size: 0.28rem;
  letter-spacing: 0.08em;
  line-height: 1.58;
  color: #fff;
  text-align: center;
  margin-top: -0.2rem;
  text-shadow: 0.02rem 0.03rem 0.02rem rgba(116, 116, 116, 0.16);
}
@media screen and (max-width: 640px) {
  .sec_concept .concept_mv .concept_catch {
    font-size: 0.2rem;
    letter-spacing: 0.06em;
    line-height: 1.8;
    text-align: left;
    text-shadow: none;
    margin: 0;
    display: inline-block;
    background: -webkit-gradient(linear, left top, right top, from(#452A00), color-stop(65%, #694204), to(#875200));
    background: linear-gradient(90deg, #452A00, #694204 65%, #875200);
    background: -webkit-linear-gradient(0deg, #452A00, #694204 65%, #875200);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.sec_concept .concept_mv .concept_read {
  position: relative;
  z-index: 1;
  font-size: 0.15rem;
  letter-spacing: 0.08em;
  line-height: 2.14;
  color: #fff;
  text-align: center;
  margin-top: 0.2rem;
  text-shadow: 0.02rem 0.02rem 0.02rem rgba(61, 61, 61, 0.24);
}
@media screen and (max-width: 640px) {
  .sec_concept .concept_mv .concept_read {
    color: #3D3D3D;
    text-align: left;
    text-shadow: none;
    margin-top: 0.25rem;
  }
}
.sec_concept .concept_mv .txt_wrap .title_deco {
  display: none;
}
@media screen and (max-width: 640px) {
  .sec_concept .concept_mv .txt_wrap {
    position: relative;
    max-width: calc(100% - 0.48rem);
    width: 100%;
    margin: auto;
    margin-top: 0.5rem;
    padding-left: 0.52rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .sec_concept .concept_mv .txt_wrap .title_deco {
    display: inline-block;
    position: absolute;
    top: 0.05rem;
    left: 0.1rem;
    height: 1.4rem;
    font-family: "garamond-premier-pro-display", serif;
    font-weight: 300;
    font-style: normal;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 0.15rem;
    letter-spacing: 0.08em;
    line-height: 1;
    color: #7e6034;
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .sec_concept .concept_mv .txt_wrap .title_deco::before {
    content: "";
    position: absolute;
    top: -0.1rem;
    left: 0rem;
    display: inline-block;
    height: 1px;
    width: 1.4rem;
    background-color: #c00;
    background: -webkit-gradient(linear, left bottom, left top, from(#D0BF93), color-stop(50%, #ECDBAE), color-stop(90%, #F4EDD9));
    background: linear-gradient(0deg, #D0BF93 0%, #ECDBAE 50%, #F4EDD9 90%);
    background: -webkit-linear-gradient(0deg, #D0BF93 0%, #ECDBAE 50%, #F4EDD9 90%);
  }
}
.sec_concept .infinite_slide {
  margin-top: 2.2rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .sec_concept .infinite_slide {
    margin-top: 0;
  }
}
.sec_concept .infinite_slide .slide_item {
  gap: 0.4rem;
}
@media screen and (max-width: 640px) {
  .sec_concept .infinite_slide .slide_item {
    gap: 0.15rem;
  }
  .sec_concept .infinite_slide .slide_item img {
    width: 100%;
  }
}
.sec_concept .concept_endline {
  position: relative;
  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;
  margin-top: 1.3rem;
}
@media screen and (max-width: 640px) {
  .sec_concept .concept_endline {
    margin-top: 0.5rem;
  }
}
.sec_concept .concept_endline .bg_deco {
  position: relative;
  width: 8.16rem;
  height: 2.2rem;
}
.sec_concept .concept_endline .endline_catch {
  position: absolute;
  top: 0.3rem;
  font-size: 0.28rem;
  letter-spacing: 0.08em;
  line-height: 3.5;
  color: #452A00;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .sec_concept .concept_endline .endline_catch {
    position: static;
    font-size: 0.2rem;
    line-height: 2.5;
    display: inline-block;
    background: -webkit-gradient(linear, left top, right top, from(#5F3E0B), color-stop(37%, #8B6221), color-stop(65%, #694204), to(#875200));
    background: linear-gradient(90deg, #5F3E0B, #8B6221 37%, #694204 65%, #875200);
    background: -webkit-linear-gradient(90deg, #5F3E0B, #8B6221 37%, #694204 65%, #875200);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.sec_point > .point_inner {
  position: relative;
  max-width: 11.2rem;
  width: 100%;
  margin: auto;
  margin-top: 0.6rem;
  padding-top: 0.45rem;
  padding-bottom: 0.5rem;
  background-color: #f5f1ed;
  border-radius: 0.16rem;
}
@media screen and (max-width: 640px) {
  .sec_point > .point_inner {
    margin-top: 0.8rem;
    padding-top: 0.5rem;
    padding-bottom: 0.4rem;
    max-width: calc(100% - 0.32rem);
    border-radius: 0;
  }
}
@media screen and (max-width: 640px) {
  .sec_point > .point_inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 0.46rem;
    top: -0.23rem;
    background-color: #452A00;
  }
}
.sec_point .point_title {
  text-align: center;
}
.sec_point .point_title span {
  position: relative;
  z-index: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0 0.2rem;
  font-family: "garamond-premier-pro-display", serif;
  font-weight: 300;
  font-style: normal;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.24rem;
  letter-spacing: 0.08em;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .sec_point .point_title span {
    font-size: 0.22rem;
    padding: 0 0.15rem;
  }
}
.sec_point .point_title span::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: calc(50% - 0.2rem);
  left: 0;
  right: 0;
  display: block;
  height: 0.34rem;
  border-radius: 0.17rem;
  background: -webkit-gradient(linear, left bottom, left top, from(#452A00), color-stop(65%, #694204), to(#875200));
  background: linear-gradient(0deg, #452A00, #694204 65%, #875200);
  background: -webkit-linear-gradient(0deg, #452A00, #694204 65%, #875200);
  opacity: 0.9;
}
@media screen and (max-width: 640px) {
  .sec_point .point_title span::before {
    top: calc(50% - 0.18rem);
    height: 0.3rem;
    border-radius: 0.15rem;
    opacity: 0.6;
  }
}
.sec_point .point_catch {
  text-align: center;
  font-size: 0.2rem;
  letter-spacing: 0.08em;
  line-height: 2;
  margin-top: 0.2rem;
}
@media screen and (max-width: 640px) {
  .sec_point .point_catch {
    font-size: 0.18rem;
    margin-top: 0.15rem;
  }
}
.sec_point .point_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  margin-top: 0.2rem;
}
@media screen and (max-width: 640px) {
  .sec_point .point_detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0.24rem;
    margin-top: 0.3rem;
  }
}
.sec_point .point_detail .item {
  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;
}
@media screen and (max-width: 640px) {
  .sec_point .point_detail .item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0.2rem;
    padding-left: 0.24rem;
  }
}
.sec_point .point_detail .thumb {
  width: 3.14rem;
  height: 2.2rem;
}
@media screen and (max-width: 640px) {
  .sec_point .point_detail .thumb {
    width: 33vw;
    height: 33vw;
  }
}
.sec_point .point_detail .detail {
  text-align: center;
  margin-top: 0.25rem;
}
@media screen and (max-width: 640px) {
  .sec_point .point_detail .detail {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: left;
    margin: 0;
  }
}
.sec_point .point_detail .detail dt {
  font-family: "garamond-premier-pro-display", serif;
  font-weight: 300;
  font-style: normal;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.22rem;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media screen and (max-width: 640px) {
  .sec_point .point_detail .detail dt {
    font-size: 0.18rem;
  }
}
.sec_point .point_detail .detail dd {
  font-size: 0.16rem;
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin-top: 0.08rem;
}
@media screen and (max-width: 640px) {
  .sec_point .point_detail .detail dd {
    font-size: 0.15rem;
    line-height: 1.62;
    margin-top: 0.05rem;
  }
}

@media screen and (max-width: 640px) {
  .sec_party {
    overflow: hidden;
  }
}
.sec_party .party_inner {
  position: absolute;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  max-width: 7.6rem;
  width: 100%;
  margin-top: 1.8rem;
}
@media screen and (max-width: 640px) {
  .sec_party .party_inner {
    position: relative;
    left: 0;
    display: block;
    max-width: 100%;
    margin-top: 1.25rem;
    padding-bottom: 1rem;
  }
}
.sec_party .-deco_txt {
  position: absolute;
  top: -0.7rem;
  left: 6.7rem;
  z-index: 1;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media screen and (max-width: 640px) {
  .sec_party .-deco_txt {
    z-index: 0;
    top: calc(100% - 2.9em);
    left: 100%;
  }
}
.sec_party .ph_wrap {
  position: relative;
  margin-top: 1.5rem;
}
@media screen and (max-width: 640px) {
  .sec_party .ph_wrap {
    margin: 0;
  }
}
.sec_party .ph_wrap .party_ph01 {
  width: 6.4rem;
  height: 4.17rem;
}
@media screen and (max-width: 640px) {
  .sec_party .ph_wrap .party_ph01 {
    width: 89.33vw;
    height: 89.33vw;
  }
}
.sec_party .ph_wrap .party_ph02 {
  position: absolute;
  left: 5.05rem;
  top: -1.7rem;
  width: 2.4rem;
  height: 4.75rem;
}
@media screen and (max-width: 640px) {
  .sec_party .ph_wrap .party_ph02 {
    left: auto;
    right: 0;
    top: auto;
    bottom: -0.6rem;
    width: 36.8vw;
    height: 48.26vw;
  }
}
.sec_party .txt_wrap {
  position: relative;
  width: 100%;
  padding-left: 1.4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .sec_party .txt_wrap {
    padding-left: 0.4rem;
    margin-top: 0.35rem;
  }
}
.sec_party .txt_wrap .elem_read {
  max-width: 3.65rem;
  font-size: 0.15rem;
  letter-spacing: 0.06em;
  line-height: 2;
  margin-top: 0.1rem;
}
@media screen and (max-width: 640px) {
  .sec_party .txt_wrap .elem_read {
    max-width: calc(100% - 0.4rem);
    font-size: 0.13rem;
    margin-top: 0.15rem;
  }
}
.sec_party .txt_wrap::before {
  content: "";
  position: absolute;
  top: -0.8rem;
  left: 3.99rem;
  display: block;
  width: 1.43rem;
  height: 1.18rem;
  background: url(../img/bellia_bach.webp) center center/cover;
}
@media screen and (max-width: 640px) {
  .sec_party .txt_wrap::before {
    right: 0.16rem;
    left: auto;
    top: 0.32rem;
    width: 1.04rem;
    height: 0.86rem;
  }
}
.sec_party .link {
  margin-top: 0.7rem;
}
@media screen and (max-width: 640px) {
  .sec_party .link {
    position: relative;
    left: calc(50% - 50vw);
    margin-top: 0.45rem;
    text-align: center;
  }
}

.sec_ceremony .ceremony_inner {
  position: relative;
  left: calc(50% - 8rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 7.6rem;
  width: 100%;
  margin-top: 1.15rem;
}
@media screen and (max-width: 640px) {
  .sec_ceremony .ceremony_inner {
    display: block;
    left: 0;
    max-width: 100%;
    margin: 0;
    padding-bottom: 1rem;
  }
}
.sec_ceremony .-deco_txt {
  position: absolute;
  top: 4.7rem;
  left: 1.25rem;
  z-index: 1;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media screen and (max-width: 640px) {
  .sec_ceremony .-deco_txt {
    z-index: 0;
    top: calc(100% - 5.5em);
    left: 0.65em;
    z-index: 0;
  }
}
.sec_ceremony .ph_wrap {
  position: relative;
}
@media screen and (max-width: 640px) {
  .sec_ceremony .ph_wrap {
    padding-top: 0.4rem;
  }
}
.sec_ceremony .ph_wrap .ceremony_ph01 {
  width: 6.7rem;
  height: 4.2rem;
}
@media screen and (max-width: 640px) {
  .sec_ceremony .ph_wrap .ceremony_ph01 {
    width: 89.33vw;
    height: 89.33vw;
    margin-left: calc(100% - 89.33vw);
  }
}
.sec_ceremony .ph_wrap .ceremony_ph02 {
  position: absolute;
  left: 5.2rem;
  bottom: -1rem;
  width: 2.26rem;
  height: 2.99rem;
}
@media screen and (max-width: 640px) {
  .sec_ceremony .ph_wrap .ceremony_ph02 {
    top: 0;
    bottom: auto;
    left: 0;
    width: 36.8vw;
    height: 48.26vw;
  }
}
.sec_ceremony .txt_wrap {
  position: relative;
  width: 100%;
  margin-top: 1.4rem;
  padding-left: 2.4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .sec_ceremony .txt_wrap {
    padding-left: 0.4rem;
    margin-top: 0.35rem;
  }
}
.sec_ceremony .txt_wrap .elem_read {
  font-size: 0.15rem;
  letter-spacing: 0.06em;
  line-height: 2;
  max-width: 3.6rem;
  margin-top: 0.1rem;
}
@media screen and (max-width: 640px) {
  .sec_ceremony .txt_wrap .elem_read {
    max-width: calc(100% - 0.4rem);
    font-size: 0.13rem;
    margin-top: 0.15rem;
  }
}
.sec_ceremony .link {
  margin-top: 0.7rem;
}
@media screen and (max-width: 640px) {
  .sec_ceremony .link {
    position: relative;
    left: calc(50% - 50vw);
    margin-top: 0.45rem;
    text-align: center;
  }
}

.bellia_info {
  position: relative;
  margin-top: 1.2rem;
  padding: 1.2rem 1rem 0.25rem;
  background: url(../img/bellia_bg.webp) center center/cover;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 640px) {
  .bellia_info {
    padding: 1.54rem 0 0.8rem;
  }
}
.bellia_info::before {
  content: "";
  position: absolute;
  top: 0.36rem;
  right: 0.36rem;
  display: block;
  width: 1.56rem;
  height: 1.04rem;
  background: url(../img/logo_mg.webp) center center/cover;
}
@media screen and (max-width: 640px) {
  .bellia_info::before {
    top: 0.24rem;
    right: 0.24rem;
    width: 83px;
    height: 56px;
  }
}
.bellia_info::after {
  content: "";
  display: block;
  margin-top: 0.56rem;
  width: 14rem;
  height: 1.29rem;
  background: url(../img/bellia_rebrand.webp) center center/cover;
}
@media screen and (max-width: 640px) {
  .bellia_info::after {
    position: absolute;
    top: 0.8rem;
    left: 50%;
    margin-top: 0;
    width: 3.33rem;
    height: 0.96rem;
    background: url(../img/bellia_rebrand_sp.webp) center center/cover;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.bellia_info .bellia_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.44rem;
}
@media screen and (max-width: 640px) {
  .bellia_info .bellia_wrap {
    display: block;
  }
}
.bellia_info .ph_wrap {
  width: 8rem;
}
@media screen and (max-width: 640px) {
  .bellia_info .ph_wrap {
    width: 100%;
  }
}
.bellia_info .txt_wrap {
  width: 3.6rem;
}
@media screen and (max-width: 640px) {
  .bellia_info .txt_wrap {
    margin-top: 0.32rem;
    padding: 0 0.48rem;
  }
}
@media screen and (max-width: 640px) {
  .bellia_info .-elem_tit {
    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;
  }
}
.bellia_info .-elem_tit::before {
  content: none;
}
.bellia_info .title_catch {
  color: #E9C64B;
  background: none;
  -webkit-text-fill-color: initial;
}
@media screen and (max-width: 640px) {
  .bellia_info .title_catch {
    font-size: 0.2rem;
    text-align: center;
  }
}
.bellia_info .elem_read {
  margin-top: 0.32rem;
  color: #fff;
  font-size: 0.15rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 640px) {
  .bellia_info .elem_read {
    font-size: 0.13rem;
    text-align: justify;
  }
}
.bellia_info .link {
  margin-top: 0.48rem;
}
@media screen and (max-width: 640px) {
  .bellia_info .link {
    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;
  }
}
.bellia_info .link a {
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 640px) {
  .bellia_info .link a {
    border: none;
  }
}
@media screen and (max-width: 640px) {
  .bellia_info .link a::before {
    border: 1px solid #fff;
  }
}
.bellia_info .link a span {
  color: #fff;
}
.bellia_info .link a span::before {
  border: 1px solid #fff;
}
.bellia_info .-bg_deco_circle.bg_deco03 {
  bottom: 5rem;
}
@media screen and (max-width: 640px) {
  .bellia_info .-bg_deco_circle.bg_deco03 {
    top: -2.4rem;
  }
}
.bellia_info .-bg_deco_circle.bg_deco01 {
  top: 6rem;
}
@media screen and (max-width: 640px) {
  .bellia_info .-bg_deco_circle.bg_deco01 {
    bottom: -1.5rem;
    top: auto;
    left: calc(50% + 0.28rem);
    width: 3.74rem;
    height: 3.49rem;
  }
}

.sec_plan {
  position: relative;
}
.sec_plan .bg_deco01 {
  top: -2.1rem;
  right: calc(50% - 11.7rem);
  width: 12rem;
  height: 12rem;
}
@media screen and (max-width: 640px) {
  .sec_plan .bg_deco01 {
    display: none;
  }
}
.sec_plan .bg_deco01 .element {
  stroke: #D0BF93;
  stroke-opacity: 0.2;
}
.sec_plan .plan_inner {
  position: relative;
  max-width: 14rem;
  width: 100%;
  margin: auto;
  margin-top: 2.5rem;
}
@media screen and (max-width: 640px) {
  .sec_plan .plan_inner {
    margin-top: 0;
    padding-top: 0.7rem;
    padding-bottom: 1.1rem;
  }
}
.sec_plan .plan_inner::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -1.3rem;
  bottom: 0.8rem;
  left: calc(50% - 5.6rem);
  right: calc(50% - 50vw + var(--scrollbar) * 0.5);
  background-color: rgba(229, 221, 210, 0.4);
  border-radius: 0.16rem 0 0 0.16rem;
}
@media screen and (max-width: 640px) {
  .sec_plan .plan_inner::before {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0.16rem;
  }
}
@media screen and (max-width: 640px) {
  .sec_plan .-sec_tit {
    text-align: center;
  }
}
.sec_plan .title_catch {
  font-size: 0.22rem;
  letter-spacing: 0.08em;
  line-height: 2;
  margin-top: 0.25rem;
}
@media screen and (max-width: 640px) {
  .sec_plan .title_catch {
    font-size: 0.16rem;
    margin-top: 0.2rem;
    text-align: center;
  }
}
.sec_plan .link {
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
}
@media screen and (max-width: 640px) {
  .sec_plan .link {
    display: block;
    text-align: center;
    margin-top: 0.25rem;
  }
}
.sec_plan .bestrate_bnr {
  display: block;
  width: 2.62rem;
  height: auto;
  margin-top: 0.64rem;
}
@media screen and (max-width: 640px) {
  .sec_plan .bestrate_bnr {
    max-width: calc(100% - 0.8rem);
    width: 100%;
    margin: auto;
    margin-top: 0.6rem;
  }
  .sec_plan .bestrate_bnr img {
    width: 100%;
    height: auto;
  }
}
.sec_plan .-deco_txt {
  position: relative;
  display: block;
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: rgba(223, 209, 174, 0.26);
  margin-top: 1.25rem;
}
@media screen and (max-width: 640px) {
  .sec_plan .-deco_txt {
    position: absolute;
    bottom: -0.3em;
    left: 0;
    right: 0;
    font-size: 0.6rem;
    letter-spacing: 0;
    line-height: 0.8;
    white-space: pre;
    text-align: center;
    margin-top: 0;
  }
}
.sec_plan .content_detail {
  position: absolute;
  left: 5.1rem;
  max-width: 8.35rem;
  width: 100%;
}
@media screen and (max-width: 640px) {
  .sec_plan .content_detail {
    position: static;
    max-width: 100%;
  }
}
.sec_plan .content_detail::before {
  content: "";
  position: absolute;
  left: -0.25rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #72441b;
}
@media screen and (max-width: 640px) {
  .sec_plan .content_detail::before {
    content: none;
  }
}
.sec_plan .content_detail .title_deco {
  position: absolute;
  top: 0;
  left: -0.45rem;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  font-family: "garamond-premier-pro-display", serif;
  font-weight: 300;
  font-style: normal;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.2rem;
  letter-spacing: 0.06em;
  line-height: 0.8;
  color: #68530A;
}
@media screen and (max-width: 640px) {
  .sec_plan .content_detail .title_deco {
    position: relative;
    display: block;
    padding: 0 0.4rem;
    -webkit-transform: none;
            transform: none;
    margin-bottom: 0.3rem;
  }
  .sec_plan .content_detail .title_deco span {
    position: relative;
    display: inline-block;
  }
  .sec_plan .content_detail .title_deco span::before {
    content: "";
    position: absolute;
    bottom: -0.1rem;
    left: -0.4rem;
    right: -0.4rem;
    display: inline-block;
    height: 1px;
    background: -webkit-gradient(linear, left bottom, left top, from(#D0BF93), color-stop(50%, #ECDBAE), color-stop(90%, #F4EDD9));
    background: linear-gradient(0deg, #D0BF93 0%, #ECDBAE 50%, #F4EDD9 90%);
    background: -webkit-linear-gradient(0deg, #D0BF93 0%, #ECDBAE 50%, #F4EDD9 90%);
  }
}
.sec_plan .content_detail.-plan {
  top: 0;
  height: 3.5rem;
}
@media screen and (max-width: 640px) {
  .sec_plan .content_detail.-plan {
    height: auto;
    margin-top: 0.45rem;
  }
}
@media screen and (max-width: 640px) {
  .sec_plan .content_detail.-plan .title_deco {
    left: 0;
  }
}
.sec_plan .content_detail.-style {
  top: 4.6rem;
  height: 2.4rem;
}
@media screen and (max-width: 640px) {
  .sec_plan .content_detail.-style {
    top: 0;
    height: auto;
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 640px) {
  .sec_plan .content_detail.-style .title_deco {
    text-align: right;
    left: auto;
    right: 0;
  }
  .sec_plan .content_detail.-style .title_deco span::before {
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
}
.sec_plan [data-slidearea01].plan_slide {
  padding: 0;
  overflow: hidden;
}
@media print, screen and (min-width: 641px) {
  .sec_plan [data-slidearea01].plan_slide .slidearea01_link.dammy {
    display: none;
  }
}
.sec_plan [data-slidearea01].plan_slide .slidearea01_wrap {
  width: 100%;
  margin: auto;
  position: relative;
}
@media print, screen and (min-width: 641px) {
  .sec_plan [data-slidearea01].plan_slide .slidearea01_wrap {
    max-width: 8.54rem;
  }
}
@media screen and (max-width: 640px) {
  .sec_plan [data-slidearea01].plan_slide .slidearea01_wrap {
    max-width: 82.66vw;
  }
}
.sec_plan [data-slidearea01].plan_slide .slidearea01_btns {
  top: 0;
  bottom: auto;
  pointer-events: none;
  height: 52.53vw;
}
@media print, screen and (min-width: 641px) {
  .sec_plan [data-slidearea01].plan_slide .slidearea01_btns {
    display: none;
  }
}
.sec_plan [data-slidearea01].plan_slide .slidearea01_btns button {
  pointer-events: all;
  z-index: 2;
}
@media screen and (max-width: 640px) {
  .sec_plan [data-slidearea01].plan_slide .slidearea01_btns button {
    width: 0.32rem;
    height: 0.32rem;
  }
}
.sec_plan [data-slidearea01].plan_slide .slidearea01_btns button:before {
  width: 40px;
  height: 40px;
  background-color: #FFF;
  border-radius: 50%;
}
@media screen and (max-width: 640px) {
  .sec_plan [data-slidearea01].plan_slide .slidearea01_btns button:before {
    width: 0.32rem;
    height: 0.32rem;
    background-color: rgba(208, 191, 147, 0.8);
  }
}
.sec_plan [data-slidearea01].plan_slide .slidearea01_btns button:after {
  background-color: #fff;
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 640px) {
  .sec_plan [data-slidearea01].plan_slide .slidearea01_btns button.next {
    right: -0.1rem;
  }
}
@media screen and (max-width: 640px) {
  .sec_plan [data-slidearea01].plan_slide .slidearea01_btns button.prev {
    left: -0.1rem;
  }
}
@media screen and (max-width: 640px) {
  .sec_plan [data-slidearea01].plan_slide .slidearea01_wrapin {
    overflow: hidden;
  }
}
.sec_plan [data-slidearea01].plan_slide .slidearea01_content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media print, screen and (min-width: 641px) {
  .sec_plan [data-slidearea01].plan_slide .slidearea01_content {
    -webkit-transform: none !important;
            transform: none !important;
    left: 0 !important;
    gap: 0.2rem;
  }
}
.sec_plan [data-slidearea01].plan_slide .slidearea01_content.disableTrs {
  -webkit-transition: none !important;
  transition: none !important;
}
.sec_plan [data-slidearea01].plan_slide .slidearea01_link {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  height: 100%;
}
@media print, screen and (min-width: 641px) {
  .sec_plan [data-slidearea01].plan_slide .slidearea01_link {
    width: auto !important;
  }
}
.sec_plan [data-slidearea01].plan_slide .slidearea01_pager {
  display: none;
}
.sec_plan .plan_slide .item {
  max-width: 2.64rem;
}
@media screen and (max-width: 640px) {
  .sec_plan .plan_slide .item {
    max-width: 78.66vw;
    margin: auto;
  }
}
.sec_plan .plan_slide .item .thumb {
  width: 100%;
  height: 1.76rem;
}
@media screen and (max-width: 640px) {
  .sec_plan .plan_slide .item .thumb {
    height: 52.53vw;
  }
}
.sec_plan .plan_slide .item .caption {
  font-size: 0.15rem;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: #68530A;
  padding: 0 0.1rem;
  margin-top: 0.25rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .sec_plan .plan_slide .item .caption {
    font-size: 0.14rem;
    padding: 0 0.05rem;
    margin-top: 0.15rem;
  }
}
.sec_plan .plan_slide .item .price {
  font-size: 0.18rem;
  letter-spacing: 0.04em;
  line-height: 1.7;
  padding: 0 0.1rem;
  margin-top: 0.1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .sec_plan .plan_slide .item .price {
    padding: 0 0.05rem;
  }
}
.sec_plan .plan_slide .item .price strong {
  font-family: "garamond-premier-pro-subhead", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.28rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 640px) {
  .sec_plan .plan_slide .item .price strong {
    font-family: "garamond-premier-pro-display", serif;
    font-weight: 400;
    font-style: normal;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 0.29rem;
  }
}
.sec_plan .plan_slide .item .price .person {
  font-size: 0.16rem;
}
.sec_plan .plan_slide .item .price .person::before {
  content: "/";
  font-size: 0.24rem;
  margin: 0 0.25em;
}
.sec_plan .plan_slide .item .price .person strong {
  font-size: 0.24rem;
}
.sec_plan .style_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 640px) {
  .sec_plan .style_detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.3rem;
    max-width: calc(100% - 0.8rem);
    width: 100%;
    margin: auto;
  }
}
.sec_plan .style_detail .item {
  position: relative;
  width: 4rem;
}
@media screen and (max-width: 640px) {
  .sec_plan .style_detail .item {
    width: 100%;
  }
}
.sec_plan .style_detail .item .thumb {
  width: 100%;
  height: 1.8rem;
}
@media screen and (max-width: 640px) {
  .sec_plan .style_detail .item .thumb {
    height: auto;
  }
}
.sec_plan .style_detail .item .title {
  font-size: 0.2rem;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: #68530A;
  padding: 0 0.1rem;
  margin-top: 0.1rem;
}
@media screen and (max-width: 640px) {
  .sec_plan .style_detail .item .title {
    font-size: 0.16rem;
    padding: 0 0.05rem;
  }
}

@media screen and (max-width: 640px) {
  .sec_cuisine {
    overflow: hidden;
  }
}
.sec_cuisine .cuisine_inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 14rem;
  width: 100%;
  margin: auto;
  margin-top: 1.25rem;
}
@media screen and (max-width: 640px) {
  .sec_cuisine .cuisine_inner {
    display: block;
    margin-top: 0.9rem;
    padding-bottom: 1rem;
  }
}
.sec_cuisine [data-slidearea01].cuisine_slide {
  position: relative;
  max-width: 7.1rem;
  width: 100%;
  height: 7.3rem;
  margin-left: -1rem;
}
@media screen and (max-width: 640px) {
  .sec_cuisine [data-slidearea01].cuisine_slide {
    max-width: 100vw;
    height: 89.86vw;
    margin: auto;
    overflow: visible;
  }
}
.sec_cuisine [data-slidearea01].cuisine_slide .slidearea01_wrap {
  max-width: 7.1rem;
  height: 7.3rem;
}
@media screen and (max-width: 640px) {
  .sec_cuisine [data-slidearea01].cuisine_slide .slidearea01_wrap {
    max-width: 100%;
    height: 89.86vw;
  }
}
.sec_cuisine [data-slidearea01].cuisine_slide .slidearea01_btns button {
  width: 0.6rem;
  height: 0.6rem;
}
@media screen and (max-width: 640px) {
  .sec_cuisine [data-slidearea01].cuisine_slide .slidearea01_btns button {
    width: 0.3rem;
    height: 0.3rem;
  }
}
.sec_cuisine [data-slidearea01].cuisine_slide .slidearea01_btns button:before {
  width: 0.4rem;
  height: 0.4rem;
  background-color: #fbfbfb;
  border: 1px solid #d0bf93;
}
@media screen and (max-width: 640px) {
  .sec_cuisine [data-slidearea01].cuisine_slide .slidearea01_btns button:before {
    width: 0.3rem;
    height: 0.3rem;
  }
}
.sec_cuisine [data-slidearea01].cuisine_slide .slidearea01_btns button:after {
  width: 0.4rem;
  height: 0.4rem;
  background-color: #452A00;
}
@media screen and (max-width: 640px) {
  .sec_cuisine [data-slidearea01].cuisine_slide .slidearea01_btns button:after {
    width: 0.24rem;
    height: 0.24rem;
  }
}
.sec_cuisine [data-slidearea01].cuisine_slide .slidearea01_btns button.next {
  right: -0.1rem;
}
.sec_cuisine [data-slidearea01].cuisine_slide .slidearea01_btns button.prev {
  left: -0.1rem;
}
.sec_cuisine [data-slidearea01].cuisine_slide .slidearea01_btns button.prev:after {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.no-touchevents .sec_cuisine [data-slidearea01].cuisine_slide .slidearea01_btns button:hover::before {
  background-color: #452A00;
  border: none;
}
.no-touchevents .sec_cuisine [data-slidearea01].cuisine_slide .slidearea01_btns button:hover::after {
  background-color: #fff;
}
.sec_cuisine [data-slidearea01].cuisine_slide .slidearea01_pager button::after {
  background-color: #452A00;
}
.sec_cuisine [data-slidearea01].cuisine_slide .slidearea01_count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1.5rem;
  height: 100%;
  margin: auto;
  font-size: 0.2rem;
}
@media screen and (max-width: 640px) {
  .sec_cuisine [data-slidearea01].cuisine_slide .slidearea01_count {
    width: 1.2rem;
    font-size: 0.14rem;
  }
}
.sec_cuisine [data-slidearea01].cuisine_slide .ui_wrap {
  position: absolute;
  bottom: 0.5rem;
  left: auto;
  right: 0.8rem;
  z-index: 1;
  width: 2.6rem;
  height: 0.4rem;
}
@media screen and (max-width: 640px) {
  .sec_cuisine [data-slidearea01].cuisine_slide .ui_wrap {
    bottom: -0.5rem;
    right: auto;
    left: 0.8rem;
    width: 1.9rem;
    height: 0.3rem;
  }
}
.sec_cuisine [data-slidearea01].cuisine_slide .item {
  width: 100%;
  height: 7.3rem;
}
@media screen and (max-width: 640px) {
  .sec_cuisine [data-slidearea01].cuisine_slide .item {
    height: 89.86vw;
  }
}
.sec_cuisine [data-slidearea01].cuisine_slide .item.active .item_inner .main, .sec_cuisine [data-slidearea01].cuisine_slide .item.active .item_inner .sub {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.sec_cuisine [data-slidearea01].cuisine_slide .item .item_inner {
  position: relative;
  width: 7.1rem;
  height: 7.3rem;
}
@media screen and (max-width: 640px) {
  .sec_cuisine [data-slidearea01].cuisine_slide .item .item_inner {
    width: 100vw;
    height: 89.86vw;
  }
}
.sec_cuisine [data-slidearea01].cuisine_slide .item .item_inner .main {
  display: block;
  width: 6.1rem;
  height: 6.1rem;
  margin-left: calc(100% - 6.1rem);
  -webkit-transform: translateX(-0.2rem);
          transform: translateX(-0.2rem);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 640px) {
  .sec_cuisine [data-slidearea01].cuisine_slide .item .item_inner .main {
    width: 81.33vw;
    height: 81.33vw;
    margin: 0;
  }
}
.sec_cuisine [data-slidearea01].cuisine_slide .item .item_inner .sub {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.88rem;
  height: 2.88rem;
  -webkit-transform: translateX(0.2rem);
          transform: translateX(0.2rem);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 640px) {
  .sec_cuisine [data-slidearea01].cuisine_slide .item .item_inner .sub {
    left: auto;
    right: 0;
    width: 38.4vw;
    height: 38.4vw;
  }
}
.sec_cuisine .txt_wrap {
  margin-left: 1.6rem;
  margin-top: 0.8rem;
}
@media screen and (max-width: 640px) {
  .sec_cuisine .txt_wrap {
    max-width: calc(100% - 0.8rem);
    width: 100%;
    margin: auto;
    margin-top: 1rem;
  }
}
.sec_cuisine .txt_wrap .link {
  margin-top: 0.8rem;
}
@media screen and (max-width: 640px) {
  .sec_cuisine .txt_wrap .link {
    text-align: center;
    margin-top: 0.9rem;
  }
}
.sec_cuisine .ph_wrap {
  position: absolute;
  top: 0.8rem;
  right: calc(50% - 7.6rem);
}
@media screen and (max-width: 640px) {
  .sec_cuisine .ph_wrap {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-left: -0.16rem;
    margin-right: -0.16rem;
    margin-top: 0.3rem;
    width: calc(100% + 0.32rem);
  }
}
.sec_cuisine .ph_wrap .ph01 {
  width: 2.4rem;
  height: 4.26rem;
}
@media screen and (max-width: 640px) {
  .sec_cuisine .ph_wrap .ph01 {
    width: 41.6vw;
    height: auto;
  }
}
@media screen and (max-width: 640px) {
  .sec_cuisine .ph_wrap .ph02 {
    position: relative;
    top: 0.4rem;
    width: 41.6vw;
    height: auto;
  }
}
.sec_cuisine .-deco_txt {
  position: absolute;
  bottom: -0.2rem;
  left: calc(50% + 0.65rem);
  color: rgba(223, 209, 174, 0.2);
}
@media screen and (max-width: 640px) {
  .sec_cuisine .-deco_txt {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    font-size: 0.68rem;
    z-index: 0;
    color: rgba(223, 209, 174, 0.3);
    left: calc(100% - 0.15rem);
    top: 96vw;
    bottom: auto;
  }
}

.sec_dress {
  position: relative;
}
.sec_dress .bg_deco01 {
  top: -8.2rem;
  left: calc(50% - 15.1rem);
  width: 15.1rem;
  height: 15.1rem;
}
@media screen and (max-width: 640px) {
  .sec_dress .bg_deco01 {
    display: none;
  }
}
.sec_dress .bg_deco01 .element {
  stroke-width: 0.08;
  stroke-opacity: 0.4;
}
.sec_dress .bg_deco02 {
  bottom: -0.5rem;
  right: calc(50% - 5.2rem);
  width: 4.4rem;
  height: 4.4rem;
}
.sec_dress .bg_deco02 .element {
  stroke: #DFD1AE;
  stroke-opacity: 1;
  stroke-width: 0.1;
}
.sec_dress .dress_inner {
  position: relative;
  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;
  max-width: 11.2rem;
  width: 100%;
  margin: auto;
  margin-top: 2.25rem;
}
@media screen and (max-width: 640px) {
  .sec_dress .dress_inner {
    display: block;
    margin: 0;
    padding-bottom: 0.7rem;
  }
}
.sec_dress .dress_inner::before {
  content: "";
  position: absolute;
  top: -0.85rem;
  left: calc(50% - 50vw);
  right: 50%;
  z-index: -1;
  height: 11rem;
  border-radius: 0 0.2rem 0.2rem 0;
  background-color: rgba(246, 246, 246, 0.9);
}
@media screen and (max-width: 640px) {
  .sec_dress .dress_inner::before {
    top: 48vw;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    border-radius: 0.2rem;
    background-color: #f3f3f3;
  }
}
.sec_dress .dress_mv {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sec_dress .dress_mv .mv_ph01 {
  position: relative;
  left: calc(50% - 6.2rem);
  margin-top: 1.2rem;
  width: 4.1rem;
  height: 5.58rem;
  -webkit-transform: rotate(-5.15deg);
          transform: rotate(-5.15deg);
}
.sec_dress .dress_mv .mv_ph02 {
  position: relative;
  right: calc(50% - 6.4rem);
  margin-top: 1.45rem;
  width: 4.1rem;
  height: 5.58rem;
  -webkit-transform: rotate(6.77deg);
          transform: rotate(6.77deg);
}
.sec_dress .dress_mv .mv_ph03 {
  position: absolute;
  top: 0;
  left: calc(50% - 2.25rem);
  width: 4.5rem;
  height: 6.26rem;
}
@media screen and (max-width: 640px) {
  .sec_dress .dress_mv .mv_ph03 {
    position: static;
    width: 78.66vw;
    height: 100vw;
    margin: auto;
  }
}
.sec_dress .dress_mv .-deco_txt {
  position: absolute;
  bottom: -0.8rem;
  width: 100%;
  font-size: 1.71rem;
  letter-spacing: 0.03em;
  line-height: 0.8;
  color: #f6f6f6;
  text-align: center;
}
.sec_dress .dress_mv .-deco_txt span {
  color: #fff;
}
.sec_dress .txt_wrap {
  position: relative;
  margin-top: 1.1rem;
  padding-left: 0.7rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .sec_dress .txt_wrap {
    margin-top: 0.4rem;
    padding-left: 0.4rem;
    padding-right: 0.1rem;
  }
}
.sec_dress .txt_wrap .link {
  margin-top: 0.7rem;
}
@media screen and (max-width: 640px) {
  .sec_dress .txt_wrap .link {
    position: relative;
    left: calc(50% - 50vw);
    padding-left: 0.16rem;
    margin-top: 0.45rem;
    text-align: center;
  }
}
.sec_dress .ph_wrap {
  position: absolute;
  top: 0;
  right: calc(100% - 11.2rem);
  width: 6.15rem;
  height: 4.28rem;
}
@media screen and (max-width: 640px) {
  .sec_dress .ph_wrap {
    position: relative;
    top: 0;
    right: 0;
    left: -0.16rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    height: auto;
    margin-top: 0.7rem;
  }
}
@media screen and (max-width: 640px) {
  .sec_dress .ph_wrap .-deco_txt {
    position: absolute;
    top: 1.8rem;
    left: 0.16rem;
    z-index: 2;
    color: #fff;
    text-shadow: 0 0 0.1rem rgba(136, 136, 136, 0.2);
  }
}
.sec_dress .ph_wrap .dress_ph01 {
  width: 4.66rem;
  height: 3.21rem;
}
@media screen and (max-width: 640px) {
  .sec_dress .ph_wrap .dress_ph01 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 73.86vw;
    height: 49.6vw;
    margin-top: 0.7rem;
  }
}
.sec_dress .ph_wrap .dress_ph02 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 2.07rem;
  height: 2.81rem;
}
@media screen and (max-width: 640px) {
  .sec_dress .ph_wrap .dress_ph02 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    position: relative;
    right: -0.1rem;
    z-index: 1;
    -webkit-transform: rotate(6.77deg);
            transform: rotate(6.77deg);
    width: 43.2vw;
    height: 58.66vw;
  }
}
@media screen and (max-width: 640px) {
  .sec_dress .ph_wrap .dress_ph03 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    position: relative;
    left: 0.5rem;
    top: -0.2rem;
    z-index: 0;
    -webkit-transform: rotate(-5.15deg);
            transform: rotate(-5.15deg);
    width: 43.2vw;
    height: 58.66vw;
  }
}

.sec_support {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 15.2rem;
  width: 100%;
  margin: auto;
  margin-top: 1.7rem;
  padding-bottom: 1rem;
}
@media screen and (max-width: 640px) {
  .sec_support {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0.7rem;
    padding-bottom: 0;
  }
}
.sec_support::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  right: calc(50% - 50vw + var(--scrollbar) * 0.5);
  background-color: rgba(229, 221, 210, 0.4);
  border-radius: 0.16rem 0 0 0;
}
@media screen and (max-width: 640px) {
  .sec_support::before {
    content: none;
  }
}
.sec_support .bg_deco01 {
  top: -0.5rem;
  left: calc(50% - 11.9rem);
  width: 11.9rem;
  height: 11.9rem;
}
@media screen and (max-width: 640px) {
  .sec_support .bg_deco01 {
    display: none;
  }
}
.sec_support > .-deco_txt {
  position: absolute;
  top: 1.45rem;
  left: calc(50% + 0.55rem);
  z-index: 1;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  font-size: 1.56rem;
  letter-spacing: 0.03em;
  color: rgba(223, 209, 174, 0.2);
}
@media screen and (max-width: 640px) {
  .sec_support > .-deco_txt {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    position: relative;
    margin-top: -0.35em;
    top: 0;
    left: 0;
    right: 0;
    -webkit-transform: none;
            transform: none;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    line-height: 0.8em;
    text-align: center;
  }
}
.sec_support .mv {
  position: relative;
  width: 6.82rem;
  height: 4.82rem;
}
@media screen and (max-width: 640px) {
  .sec_support .mv {
    width: 88.53vw;
    height: 62.4vw;
  }
}
.sec_support .mv .caption {
  position: absolute;
  z-index: 1;
  font-family: "garamond-premier-pro-display", serif;
  font-weight: 300;
  font-style: normal;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.93rem;
  letter-spacing: 0.03em;
  line-height: 0.8;
}
@media screen and (max-width: 640px) {
  .sec_support .mv .caption {
    font-size: 0.42rem;
  }
}
.sec_support .mv.-access .caption {
  top: 0;
  left: 0;
  color: rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 640px) {
  .sec_support .mv.-access .caption {
    top: auto;
    bottom: -0.03rem;
    color: rgba(255, 255, 255, 0.8);
  }
}
.sec_support .mv.-hospitality .caption {
  right: 0;
  bottom: -0.15em;
  color: rgba(255, 255, 255, 0.8);
}
@media print, screen and (min-width: 641px) {
  .sec_support .mv.-hospitality .caption {
    font-size: 0.86rem;
  }
}
@media screen and (max-width: 640px) {
  .sec_support .mv.-hospitality .caption {
    bottom: -0.03rem;
  }
}
@media screen and (max-width: 640px) {
  .sec_support .txt_wrap .-elem_tit .title_deco::before {
    width: 1.94rem;
  }
}
.sec_support .txt_wrap .-elem_tit .title_catch {
  font-size: 0.24rem;
  letter-spacing: 0.08em;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .sec_support .txt_wrap .-elem_tit .title_catch {
    font-size: 0.18rem;
    line-height: 2.1;
  }
}
.sec_support .txt_wrap .elem_read {
  font-size: 0.14rem;
}
@media screen and (max-width: 640px) {
  .sec_support .txt_wrap .elem_read {
    font-size: 0.13rem;
    letter-spacing: 0.08em;
    line-height: 2;
  }
}
.sec_support .txt_wrap .link {
  margin-top: 0.5rem;
}
@media screen and (max-width: 640px) {
  .sec_support .txt_wrap .link {
    text-align: center;
    margin-top: 0.45rem;
  }
}
.sec_support .support_endline {
  position: relative;
  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;
  width: 100%;
  margin-top: 1.6rem;
}
@media screen and (max-width: 640px) {
  .sec_support .support_endline {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
.sec_support .support_endline .bg_deco {
  position: relative;
  left: 0.1rem;
  width: 10.21rem;
  height: 2.33rem;
}
.sec_support .support_endline .endline_catch {
  position: absolute;
  top: 0.2rem;
  font-size: 0.26rem;
  letter-spacing: 0.14em;
  line-height: 4;
  color: #68530A;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .sec_support .support_endline .endline_catch {
    position: static;
  }
}

@media screen and (max-width: 640px) {
  .sec_access {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.sec_access .access_inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  width: 6.82rem;
  padding-top: 1rem;
}
@media screen and (max-width: 640px) {
  .sec_access .access_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    padding-top: 0;
    padding-bottom: 1rem;
  }
  .sec_access .access_inner::before {
    content: "";
    position: absolute;
    top: -0.4rem;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-color: rgba(229, 221, 210, 0.4);
  }
}
.sec_access .txt_wrap {
  padding-left: 1.5rem;
}
@media screen and (max-width: 640px) {
  .sec_access .txt_wrap {
    padding: 0;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    margin-top: 0.3rem;
  }
}
.sec_access .txt_wrap .elem_read {
  max-width: 3.7rem;
}
.sec_access .mv {
  margin-top: 0.8rem;
}
@media screen and (max-width: 640px) {
  .sec_access .mv {
    margin-top: 0.4rem;
    margin-left: calc(100% - 88.53vw);
  }
}

@media screen and (max-width: 640px) {
  .sec_hospitality {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.sec_hospitality .hospitality_inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 6.82rem;
  padding-top: 0.5rem;
}
@media screen and (max-width: 640px) {
  .sec_hospitality .hospitality_inner {
    width: 100%;
    padding-bottom: 0.8rem;
  }
}
.sec_hospitality .txt_wrap {
  padding-left: 2rem;
  margin-top: 0.8rem;
}
@media screen and (max-width: 640px) {
  .sec_hospitality .txt_wrap {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    margin-top: 0.3rem;
  }
}
.sec_hospitality .txt_wrap .elem_read {
  max-width: 4.1rem;
}
@media screen and (max-width: 640px) {
  .sec_hospitality .txt_wrap .elem_read {
    max-width: calc(100% + 0.1rem);
    margin-right: -0.05rem;
  }
}

.sec_bridalfair {
  position: relative;
}
.sec_bridalfair .bridalfair_mv_bg {
  position: sticky;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100vh;
}
.sec_bridalfair .bridalfair_detail {
  position: relative;
  max-width: 13.6rem;
  width: 100%;
  margin-left: calc(50% - 8rem);
  padding-top: 1.5rem;
  padding-bottom: 1.3rem;
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .bridalfair_detail {
    margin: 0;
    padding: 0;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }
}
.sec_bridalfair .bridalfair_detail::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  right: 0;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(7px);
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .bridalfair_detail::before {
    left: 0;
    background-color: rgba(255, 255, 255, 0.74);
  }
}
.sec_bridalfair .bridalfair_detail .link {
  text-align: center;
  margin-top: 0.45rem;
}
.sec_bridalfair .bridalfair_detail .link .-btn01 span {
  padding-right: 0.4rem;
}
.sec_bridalfair .bridalfair_title {
  position: relative;
  z-index: 0;
  text-align: center;
}
.sec_bridalfair .bridalfair_title .title {
  font-size: 0.14rem;
  font-weight: 400;
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .bridalfair_title .title {
    font-size: 0.13rem;
  }
}
.sec_bridalfair .bridalfair_title .title .-sub_txt {
  position: relative;
  top: 0.03rem;
  font-size: 0.34rem;
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .bridalfair_title .title .-sub_txt {
    font-size: 0.3rem;
  }
}
.sec_bridalfair .bridalfair_title .-deco_txt {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: -1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: center;
  color: #e2e1df;
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .bridalfair_title .-deco_txt {
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.5);
    -webkit-transform: translateY(calc(-50% + 0.05rem));
            transform: translateY(calc(-50% + 0.05rem));
    white-space: pre;
  }
}
.sec_bridalfair .title_catch {
  font-size: 0.2rem;
  letter-spacing: 0.12em;
  line-height: 2.1;
  text-align: center;
  color: #525252;
  margin-top: 0.5rem;
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .title_catch {
    font-size: 0.16rem;
    letter-spacing: 0.1em;
    text-align: center;
  }
  .sec_bridalfair .title_catch span {
    display: inline-block;
    background: -webkit-gradient(linear, left bottom, left top, from(#452A00), color-stop(65%, #694204), to(#875200));
    background: linear-gradient(0deg, #452A00, #694204 65%, #875200);
    background: -webkit-linear-gradient(0deg, #452A00, #694204 65%, #875200);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.sec_bridalfair .calendar_detail {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 10.24rem;
  width: 100%;
  margin: auto;
  margin-top: 0.7rem;
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .calendar_detail {
    display: block;
    margin-top: 0.4rem;
  }
}
.sec_bridalfair .calendar_detail .title_deco {
  position: absolute;
  font-family: "garamond-premier-pro-display", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.3rem;
  letter-spacing: 0.06em;
  line-height: 0.8;
  color: #68530A;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .calendar_detail .title_deco {
    position: static;
    display: block;
    font-size: 0.22rem;
    text-align: center;
    -webkit-transform: none;
            transform: none;
  }
}
.sec_bridalfair .calendar_detail .calendar_box {
  position: relative;
  width: 5.12rem;
  height: 5rem;
  background-color: rgba(229, 221, 210, 0.8);
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .calendar_detail .calendar_box {
    width: 100%;
    height: auto;
    padding-top: 0.3rem;
    padding-bottom: 0.15rem;
  }
}
.sec_bridalfair .calendar_detail .calendar_box::before {
  content: "";
  position: absolute;
  pointer-events: none;
}
@media print, screen and (min-width: 641px) {
  .sec_bridalfair .calendar_detail .calendar_box::before {
    top: 0;
    bottom: 0;
    left: 0.1rem;
    right: 0.1rem;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .calendar_detail .calendar_box::before {
    bottom: -0.45rem;
    left: calc(50% - 0.7rem);
    display: inline-block;
    width: 0;
    height: 0;
    z-index: 1;
    border-style: solid;
    border-width: 0.45rem 0.7rem 0 0.7rem;
    border-color: rgba(229, 221, 210, 0.8) transparent transparent transparent;
  }
}
.sec_bridalfair .calendar_detail .calendar_box .title_deco {
  -webkit-transform-origin: top left;
          transform-origin: top left;
  top: 0;
  left: -0.3rem;
}
.sec_bridalfair .calendar_detail .calendar_box .calendar {
  max-width: 4rem;
  width: 100%;
  margin: auto;
  font-family: "garamond-premier-pro", serif;
  font-weight: 400;
  font-style: italic;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .calendar_detail .calendar_box .calendar {
    position: relative;
    z-index: 0;
    width: calc(100% - 0.48rem);
  }
}
.sec_bridalfair .calendar_detail .calendar_box .calendar .thead {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.1rem;
  margin-top: 0.4rem;
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .calendar_detail .calendar_box .calendar .thead {
    margin-top: 0.1rem;
  }
}
.sec_bridalfair .calendar_detail .calendar_box .calendar .thead::before {
  content: "";
  position: absolute;
  bottom: 0.15rem;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #452A00;
}
.sec_bridalfair .calendar_detail .calendar_box .calendar .thead .th {
  display: block;
  text-align: center;
  width: 14.2857142857%;
  padding: 0.05rem 0 0.2rem;
  font-size: 0.2rem;
  letter-spacing: 0.04em;
  line-height: 2;
  color: #624315;
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .calendar_detail .calendar_box .calendar .thead .th {
    font-size: 0.16rem;
  }
}
.sec_bridalfair .calendar_detail .calendar_box .calendar .tbody {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0.1rem 1fr 0.1rem 1fr 0.1rem 1fr 0.1rem 1fr 0.1rem 1fr 0.1rem 1fr;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem 0.1rem;
  margin-top: 0.1rem;
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .calendar_detail .calendar_box .calendar .tbody {
    gap: 0.15rem 0.1rem;
    margin-top: 0;
  }
}
.sec_bridalfair .calendar_detail .calendar_box .calendar .tbody .td {
  position: relative;
  z-index: 0;
  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: 0.42rem;
  font-size: 0.22rem;
  letter-spacing: 0;
  line-height: 0.8;
  text-align: center;
  color: #3D3D3D;
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .calendar_detail .calendar_box .calendar .tbody .td {
    font-size: 0.17rem;
    height: 0.35rem;
  }
}
.sec_bridalfair .calendar_detail .calendar_box .calendar .tbody .td > span {
  position: relative;
  top: 0.02rem;
}
.sec_bridalfair .calendar_detail .calendar_box .calendar .tbody .td .month {
  font-size: 1.2em;
  letter-spacing: -0.1em;
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .calendar_detail .calendar_box .calendar .tbody .td .month {
    letter-spacing: -0.15em;
  }
}
.sec_bridalfair .calendar_detail .calendar_box .calendar .tbody .td .month::after {
  content: "/";
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .calendar_detail .calendar_box .calendar .tbody .td .month::after {
    font-size: 0.14rem;
    margin: 0 0.15em;
  }
}
.sec_bridalfair .calendar_detail .calendar_box .calendar .tbody .td:not([data-rel]) {
  color: #646464;
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .calendar_detail .calendar_box .calendar .tbody .td:not([data-rel]) {
    color: #969696;
  }
}
.sec_bridalfair .calendar_detail .calendar_box .calendar .tbody .td:not([data-rel]).holyday {
  color: #fff;
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .calendar_detail .calendar_box .calendar .tbody .td:not([data-rel]).holyday {
    color: #3D3D3D;
  }
}
.sec_bridalfair .calendar_detail .calendar_box .calendar .tbody .td.sat {
  color: #346FBB;
}
.sec_bridalfair .calendar_detail .calendar_box .calendar .tbody .td.sun {
  color: #B78F78;
}
.sec_bridalfair .calendar_detail .calendar_box .calendar .tbody .td[data-rel] {
  cursor: pointer;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.sec_bridalfair .calendar_detail .calendar_box .calendar .tbody .td[data-rel]::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: calc(50% - 0.21rem);
  left: calc(50% - 0.21rem);
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .calendar_detail .calendar_box .calendar .tbody .td[data-rel]::before {
    top: calc(50% - 0.18rem);
    left: calc(50% - 0.18rem);
    width: 0.36rem;
    height: 0.36rem;
  }
}
.sec_bridalfair .calendar_detail .calendar_box .calendar .tbody .td.current, .no-touchevents .sec_bridalfair .calendar_detail .calendar_box .calendar .tbody .td[data-rel]:hover {
  color: #fff;
}
.sec_bridalfair .calendar_detail .calendar_box .calendar .tbody .td.current::before, .no-touchevents .sec_bridalfair .calendar_detail .calendar_box .calendar .tbody .td[data-rel]:hover::before {
  background-color: #452A00;
}
.sec_bridalfair .calendar_detail .calendar_box .-caption {
  font-size: 0.14rem;
  letter-spacing: 0.08em;
  line-height: 2;
  color: #452A00;
  text-align: right;
  margin-top: 0.2rem;
  margin-right: 0.6rem;
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .calendar_detail .calendar_box .-caption {
    font-size: 0.12rem;
    margin-right: 0.25rem;
  }
}
.sec_bridalfair .calendar_detail .calendar_box .-caption span {
  position: relative;
}
.sec_bridalfair .calendar_detail .calendar_box .-caption span::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.08rem);
  left: -0.25rem;
  display: block;
  width: 0.16rem;
  height: 0.16rem;
  border-radius: 50%;
  background-color: #fff;
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .calendar_detail .calendar_box .-caption span::before {
    width: 0.1rem;
    height: 0.1rem;
    top: calc(50% - 0.05rem);
    left: -0.14rem;
  }
}
.sec_bridalfair .calendar_detail .fair_box {
  position: relative;
  width: 5.12rem;
  height: 5.2rem;
  margin-top: 0.6rem;
  background-color: #fff;
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .calendar_detail .fair_box {
    width: calc(100% - 0.32rem);
    height: auto;
    margin: auto;
    margin-top: 0.25rem;
    padding-bottom: 0.45rem;
  }
}
.sec_bridalfair .calendar_detail .fair_box .title_deco {
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  bottom: 0;
  right: -0.25rem;
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .calendar_detail .fair_box .title_deco {
    display: none;
  }
}
.sec_bridalfair .calendar_detail .fair_box .fair_inner {
  width: calc(100% - 0.9rem);
  margin: auto;
  padding-top: 0.5rem;
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .calendar_detail .fair_box .fair_inner {
    width: calc(100% - 0.48rem);
  }
}
.sec_bridalfair .calendar_detail .fair_box .fair_title {
  display: block;
  font-size: 0.2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2.1;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .calendar_detail .fair_box .fair_title {
    font-size: 0.19rem;
  }
}
.sec_bridalfair .calendar_detail .fair_box .fair_title .week {
  position: relative;
}
.not-firefox .sec_bridalfair .calendar_detail .fair_box .fair_title .week {
  -webkit-text-fill-color: #68530A;
}
.sec_bridalfair .calendar_detail .fair_box .fair_title .week::before {
  content: "（";
}
.sec_bridalfair .calendar_detail .fair_box .fair_title .week::after {
  content: "）";
}
.sec_bridalfair .calendar_detail .fair_box .fair_link {
  margin-top: 0.25rem;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .calendar_detail .fair_box .fair_link {
    margin-top: 0.3rem;
  }
}
.sec_bridalfair .calendar_detail .fair_box .fair_link .-btn01 span {
  padding-right: 0.4rem;
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .calendar_detail .fair_box .fair_link .-btn01 span {
    padding-left: 0.15rem;
    padding-right: 0.35rem;
  }
}
.sec_bridalfair .calendar_detail .fair_detail {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  margin-top: 0.25rem;
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .calendar_detail .fair_detail {
    gap: 0.15rem;
  }
}
.sec_bridalfair .calendar_detail .fair_detail .thumb {
  display: block;
  width: 1.62rem;
  height: 1.34rem;
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .calendar_detail .fair_detail .thumb {
    width: 27.73vw;
    height: 32vw;
  }
}
.sec_bridalfair .calendar_detail .fair_detail .txt_box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.sec_bridalfair .calendar_detail .fair_detail .time {
  font-family: "garamond-premier-pro-display", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.19rem;
  letter-spacing: 0.06em;
  line-height: 1.2;
  color: #955B5B;
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .calendar_detail .fair_detail .time {
    font-size: 0.16rem;
  }
}
.sec_bridalfair .calendar_detail .fair_detail .time span::after {
  content: "~ /";
  margin: 0 0.15em;
}
.sec_bridalfair .calendar_detail .fair_detail .time span:nth-child(3n)::after, .sec_bridalfair .calendar_detail .fair_detail .time span:last-child::after {
  content: "~";
}
.sec_bridalfair .calendar_detail .fair_detail .title {
  font-size: 0.15rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: #3D3D3D;
  margin-top: 0.25em;
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .calendar_detail .fair_detail .title {
    font-size: 0.13rem;
    margin-top: 0;
  }
}
.sec_bridalfair .presents_detail {
  position: relative;
}
.sec_bridalfair .presents_detail .presents_inner {
  position: relative;
  max-width: 8.58rem;
  width: 100%;
  margin: auto;
  margin-top: 1.2rem;
  padding: 0.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .presents_detail .presents_inner {
    max-width: calc(100% - 0.8rem);
    padding: 0.3rem 0.2rem;
  }
}
.sec_bridalfair .presents_detail .title_deco {
  position: absolute;
  top: 0;
  left: -0.4rem;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  font-family: "garamond-premier-pro-display", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.3rem;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #68530A;
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .presents_detail .title_deco {
    top: -0.5rem;
    left: 0;
    right: 0;
    -webkit-transform: none;
            transform: none;
    font-size: 0.24rem;
    text-align: center;
  }
}
.sec_bridalfair .presents_detail .item_detail {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.7rem;
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .presents_detail .item_detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.4rem;
  }
}
.sec_bridalfair .presents_detail .item_detail .item {
  width: 100%;
  text-align: center;
}
.sec_bridalfair .presents_detail .item_detail .item > dt span {
  position: relative;
  z-index: 1;
  font-size: 0.2rem;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #fff;
  padding: 0 0.14rem;
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .presents_detail .item_detail .item > dt span {
    font-size: 0.15rem;
  }
}
.sec_bridalfair .presents_detail .item_detail .item > dt span::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: calc(50% - 0.16rem);
  left: 0;
  right: 0;
  height: 0.34rem;
  border-radius: 0.18rem;
  opacity: 0.6;
  background: -webkit-gradient(linear, left top, right top, from(#452A00), color-stop(65%, #694204), to(#875200));
  background: linear-gradient(90deg, #452A00 0%, #694204 65%, #875200 100%);
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .presents_detail .item_detail .item > dt span::before {
    top: calc(50% - 0.14rem);
    height: 0.3rem;
  }
}
.sec_bridalfair .presents_detail .item_detail .item > dd {
  margin-top: 0.3rem;
  font-size: 0.15rem;
  letter-spacing: 0.08em;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .presents_detail .item_detail .item > dd {
    margin-top: 0.2rem;
    font-size: 0.14rem;
    letter-spacing: 0.04em;
  }
}
.sec_bridalfair .presents_detail .item_detail .item > dd p + p {
  margin-top: 2em;
}
@media screen and (max-width: 640px) {
  .sec_bridalfair .presents_detail .item_detail .item > dd p + p {
    margin-top: 1em;
  }
}

.sec_faq > .faq_inner {
  max-width: 11.2rem;
  width: 100%;
  margin: auto;
  margin-top: 0.9rem;
  padding-top: 0.7rem;
  padding-bottom: 0.8rem;
  background-color: #fefbf5;
}
@media screen and (max-width: 640px) {
  .sec_faq > .faq_inner {
    max-width: 100%;
    margin-top: 0;
    padding: 0.5rem 0.24rem 0.75rem;
  }
}
.sec_faq .-sec_tit {
  text-align: center;
}
.sec_faq .faq_detail {
  max-width: 8.32rem;
  width: 100%;
  margin: auto;
  margin-top: 0.4rem;
}
.sec_faq .faq_item {
  text-align: left;
}
.sec_faq .faq_item + .faq_item {
  margin-top: 0.5rem;
}
@media screen and (max-width: 640px) {
  .sec_faq .faq_item + .faq_item {
    margin-top: 0.4rem;
  }
}
.sec_faq .faq_item .-trigger {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0.5rem;
  padding-right: 0.45rem;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .sec_faq .faq_item .-trigger {
    padding-left: 0.35rem;
    padding-right: 0.35rem;
  }
}
.sec_faq .faq_item .-trigger::before {
  content: "Q";
  position: absolute;
  top: 0.25em;
  left: 0;
  font-family: "garamond-premier-pro-display", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.28rem;
  letter-spacing: 0;
  line-height: 1;
  color: #624315;
}
@media screen and (max-width: 640px) {
  .sec_faq .faq_item .-trigger::before {
    top: 0.1em;
    font-size: 0.24rem;
  }
}
.sec_faq .faq_item .-trigger span {
  font-size: 0.18rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .sec_faq .faq_item .-trigger span {
    font-size: 0.15rem;
    letter-spacing: 0.06em;
    line-height: 1.8;
  }
}
.sec_faq .faq_item .-trigger i {
  position: absolute;
  right: 0;
  top: 50%;
  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;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.25rem;
  height: 0.25rem;
  background-color: #452A00;
  border-radius: 50%;
}
@media screen and (max-width: 640px) {
  .sec_faq .faq_item .-trigger i {
    right: -0.06rem;
    width: 0.21rem;
    height: 0.21rem;
  }
}
.sec_faq .faq_item .-trigger i::before, .sec_faq .faq_item .-trigger i::after {
  content: "";
  position: absolute;
  width: 0.13rem;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 640px) {
  .sec_faq .faq_item .-trigger i::before, .sec_faq .faq_item .-trigger i::after {
    width: 0.09rem;
  }
}
.sec_faq .faq_item .-trigger i::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.sec_faq .faq_item .-trigger.-open i::before {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.sec_faq .faq_item .-detail {
  position: relative;
  margin-top: 0.25rem;
  padding-left: 0.45rem;
  padding-right: 0.45rem;
}
@media screen and (max-width: 640px) {
  .sec_faq .faq_item .-detail {
    margin-top: 0.2rem;
    padding-left: 0.35rem;
    padding-right: 0.15rem;
  }
}
.sec_faq .faq_item .-detail span {
  position: relative;
  display: inline-block;
  font-size: 0.15rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.8;
  color: #452A00;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media screen and (max-width: 640px) {
  .sec_faq .faq_item .-detail span {
    font-size: 0.13rem;
  }
}
.sec_faq .faq_item .-detail span::before {
  content: "A";
  position: absolute;
  top: 0.15em;
  left: -0.42rem;
  font-family: "garamond-premier-pro-display", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.28rem;
  letter-spacing: 0;
  line-height: 1;
  color: #A57171;
}
@media screen and (max-width: 640px) {
  .sec_faq .faq_item .-detail span::before {
    left: -0.33rem;
    font-size: 0.24rem;
  }
}
.sec_faq .link {
  margin-top: 0.5rem;
}
.sec_faq .link .-btn01 {
  margin: auto;
}
@media print, screen and (min-width: 641px) {
  .sec_faq .link .-btn01 span {
    width: 1.8rem;
  }
}

.mice_banner {
  margin-top: 0.8rem;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .mice_banner {
    margin-top: 0.6rem;
  }
}
.mice_banner .title {
  font-size: 0.18rem;
  letter-spacing: 0.03em;
  line-height: 1;
  color: #452A00;
}
@media screen and (max-width: 640px) {
  .mice_banner .title {
    font-size: 0.16rem;
  }
}
.mice_banner .-catch {
  font-size: 0.15rem;
  letter-spacing: 0.06em;
  line-height: 2.34;
  margin-top: 0.1rem;
}
@media screen and (max-width: 640px) {
  .mice_banner .-catch {
    font-size: 0.14rem;
    line-height: 2.2;
  }
}
.mice_banner .-catch span {
  position: relative;
}
.mice_banner .-catch span::before {
  content: "";
  position: absolute;
  bottom: -0.05rem;
  left: -0.05rem;
  right: -0.05rem;
  opacity: 0.6;
  background-image: -webkit-gradient(linear, right top, left top, from(#452A00), color-stop(50%, #452A00), color-stop(50%, transparent), to(transparent));
  background-image: linear-gradient(to left, #452A00, #452A00 50%, transparent 50%, transparent 100%);
  background-size: 8px 8px;
  height: 1px;
  border: none;
}
.mice_banner a {
  display: inline-block;
  margin-top: 0.3rem;
  line-height: 0;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-box-shadow: 0.03rem 0.06rem 0.07rem rgba(174, 174, 174, 0.25);
          box-shadow: 0.03rem 0.06rem 0.07rem rgba(174, 174, 174, 0.25);
}
@media screen and (max-width: 640px) {
  .mice_banner a {
    -webkit-box-shadow: 0.02rem 0.03rem 0.05rem rgba(174, 174, 174, 0.25);
            box-shadow: 0.02rem 0.03rem 0.05rem rgba(174, 174, 174, 0.25);
  }
}
.no-touchevents .mice_banner a:hover {
  opacity: 0.5;
}
.mice_banner .bnr {
  display: block;
  width: 6.67rem;
  height: auto;
}
@media screen and (max-width: 640px) {
  .mice_banner .bnr {
    width: 87.2vw;
  }
}
.mice_banner .bnr img {
  width: 100%;
  height: auto;
}
/*# sourceMappingURL=index.css.map */