@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, ::before, ::after {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* =========================================================
modal
========================================================= */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  padding: 120px 0 60px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}
@media (max-width: 767px) {
  .modal {
    padding: 70px 5% 20px;
  }
}
.modal.is_show {
  transition-delay: 0s;
  opacity: 1;
  visibility: visible;
}
.modal.is_show .modalBlock {
  top: 0;
}
.modalBlock {
  position: relative;
  top: 10px;
  border-radius: 8px;
  background: #fff;
  width: 100%;
  max-width: 1250px;
  margin: 0 auto 0;
  color: #14230A;
  transition: all 0.2s;
}
@media (max-width: 1400px) {
  .modalBlock {
    max-width: 90%;
  }
}
@media (max-width: 767px) {
  .modalBlock {
    max-width: 100%;
  }
}
.modalHeader {
  position: relative;
  border-radius: 8px 8px 0 0;
  border-radius: 8px;
  padding: 50px 75px 70px;
}
@media (max-width: 767px) {
  .modalHeader {
    padding: 20px 20px 30px;
  }
}
.modalHeader:has(.bookModalTitle:only-child) {
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .modalHeader:has(.bookModalTitle:only-child) {
    padding-bottom: 5px;
  }
}
.modal:has(.modalContents:not([style="display:none;"])) .modalHeader {
  border-radius: 8px;
  border-radius: 8px 8px 0 0;
}
.modal .closeBtn {
  position: absolute;
  top: -64px;
  right: 0;
  border-radius: 50%;
  border: 1px solid;
  width: 57px;
  height: 57px;
  color: #fff;
  cursor: pointer;
  text-indent: -9999px;
}
@media (max-width: 767px) {
  .modal .closeBtn {
    top: -50px;
    width: 40px;
    height: 40px;
  }
}
.modal .closeBtn::before, .modal .closeBtn::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: #fff;
  width: 25px;
  height: 1px;
  margin: auto;
  rotate: 45deg;
}
@media (max-width: 767px) {
  .modal .closeBtn::before, .modal .closeBtn::after {
    width: 20px;
  }
}
.modal .closeBtn::after {
  rotate: -45deg;
}
.modal .arrowBtn {
  position: absolute;
  top: -64px;
  right: 67px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  cursor: pointer;
}
@media (max-width: 767px) {
  .modal .arrowBtn {
    top: -50px;
    right: 50px;
  }
}
.modal .arrowBtn li button {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid;
  width: 57px;
  height: 57px;
}
@media (max-width: 767px) {
  .modal .arrowBtn li button {
    width: 40px;
    height: 40px;
  }
}
.modal .arrowBtn li button:disabled {
  pointer-events: none;
  cursor: auto;
  opacity: 0.5;
}
.modal .arrowBtn li button svg {
  fill: currentColor;
  margin: 0;
}
.modal .arrowBtn li.prev button svg {
  scale: -1 1;
}
.modalContents {
  padding: 65px 80px;
}
@media (max-width: 767px) {
  .modalContents {
    padding: 25px 20px;
  }
}
.modal .selectWrap {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .modal .selectWrap {
    display: block;
  }
}

/* =========================================================
bookModal
========================================================= */
.bookModal {
  /* IE 10+ */
}
.bookModal input[type=text],
.bookModal input[type=tel],
.bookModal input[type=number],
.bookModal input[type=email],
.bookModal input[type=submit],
.bookModal input[type=button],
.bookModal button,
.bookModal select,
.bookModal textarea {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background-color: #fff;
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding: 0 15px;
  font-size: 1.5rem;
  font-family: "Yu Gothic", YuGothic, "游ゴシック", Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN", "Noto Sans JP", Roboto, "Droid Sans", Meiryo, "メイリオ", Verdana, sans-serif;
}
@media (max-width: 767px) {
  .bookModal input[type=text],
  .bookModal input[type=tel],
  .bookModal input[type=number],
  .bookModal input[type=email],
  .bookModal input[type=submit],
  .bookModal input[type=button],
  .bookModal button,
  .bookModal select,
  .bookModal textarea {
    font-size: 1.3rem;
  }
}
.bookModal select {
  background: #fff url("../img/common/icon_select02.svg") no-repeat right 15px center;
}
.bookModal select::-ms-expand {
  display: none;
}
.bookModal ::placeholder {
  color: #999999;
}
.bookModal :-ms-input-placeholder {
  color: #999999;
}
.bookModalTitle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  text-align: center;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-size: 1.8rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .bookModalTitle {
    font-size: 1.6rem;
  }
}
.bookModalTitle::before, .bookModalTitle::after {
  content: "";
  display: block;
  background: rgba(255, 255, 255, 0.3);
  width: calc(50% - 3em);
  height: 1px;
}
.bookModal .selectWrap {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .bookModal .selectWrap {
    gap: 2vw;
  }
}
@media (max-width: 767px) {
  .bookModal .selectWrap {
    display: block;
  }
}
@media (max-width: 767px) {
  .bookModal .selectWrap.pc {
    display: none;
  }
}
.bookModal .selectWrap .title {
  flex-shrink: 0;
  margin-left: 20px;
  font-weight: 700;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .bookModal .selectWrap .title {
    margin-left: 10px;
  }
}
@media (max-width: 767px) {
  .bookModal .selectWrap .title {
    margin: 20px 0 0 0;
  }
}
.bookModal .selectWrap .title:first-child {
  margin-left: 0;
}
.bookModal .selectWrap select {
  border-bottom-color: rgba(255, 255, 255, 0.3);
  background: #000 url("../img/common/icon_select_w.svg") no-repeat right center;
  height: 60px;
  line-height: 60px;
  padding: 0 10px;
  color: inherit;
  mix-blend-mode: screen;
}
@media (max-width: 767px) {
  .bookModal .selectWrap select {
    height: 50px;
    line-height: 50px;
    padding: 0;
  }
}
.bookModal .modalHeader {
  background: #801D20;
  color: #fff;
}
@media (max-width: 767px) {
  .bookModal .modalHeader {
    display: block;
  }
}
.bookModal .modalContents .shopName {
  border-bottom: 1px solid #BBBAB8;
  padding-bottom: 30px;
  margin: 0 0 30px;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-size: 2.6rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .bookModal .modalContents .shopName {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
}
.bookModal .modalContents .bookBoxWrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
  margin: 0 0 70px;
}
@media (max-width: 767px) {
  .bookModal .modalContents .bookBoxWrap {
    display: block;
    margin-bottom: 35px;
  }
}
.bookModal .modalContents .bookBox {
  display: flex;
  flex-direction: column;
  padding: 55px;
}
@media (max-width: 767px) {
  .bookModal .modalContents .bookBox {
    display: block;
    width: 100%;
    padding: 35px 25px;
    margin: 20px 0 0;
    text-align: center;
  }
}
.bookModal .modalContents .bookBox h4 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  color: #14230A;
  text-align: center;
  letter-spacing: -0.05em;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-size: 1.8rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .bookModal .modalContents .bookBox h4 {
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
}
.bookModal .modalContents .bookBox .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 38px;
  height: 38px;
}
@media (max-width: 767px) {
  .bookModal .modalContents .bookBox .icon {
    width: 24px;
    height: 24px;
  }
}
.bookModal .modalContents .bookBox .icon .icon_tel {
  display: block;
  width: 18px;
  height: 21px;
}
@media (max-width: 767px) {
  .bookModal .modalContents .bookBox .icon .icon_tel {
    width: 10px;
    height: 12px;
  }
}
.bookModal .modalContents .bookBox .icon:has(.icon_tel) {
  background: #B8A684;
}
.bookModal .modalContents .bookBox p:not([class]) {
  margin-bottom: 25px;
}
.bookModal .modalContents .bookBox .telLink {
  text-align: center;
}
.bookModal .modalContents .bookBox .telLink a {
  font-size: 3rem;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
}
@media (max-width: 767px) {
  .bookModal .modalContents .bookBox .telLink a {
    font-size: 2.2rem;
  }
}
.bookModal .modalContents .bookBox .telLink a[href$=営業開始前] span {
  display: none;
}
.bookModal .modalContents .bookBox .telLink + p {
  text-align: center;
}
.bookModal .modalContents .bookBox .btn02 {
  margin-top: auto;
}
.bookModal .modalContents .bookBox .btn02 a {
  min-width: 100%;
}
.bookModal .modalContents .bookBox .btn02.web a {
  background: #801D20;
  color: #fff;
}
.bookModal .modalContents .bookBox .btn02.line a {
  background: #008015;
  color: #fff;
}
.bookModal .modalContents .bookBox .btn02.tel a {
  border-color: #B8A684;
  background: #B8A684;
  color: #14230A;
}
.bookModal .modalContents .bookBox .btn02.tel a .icon_tel {
  width: 13px;
  height: 15px;
}
@media (max-width: 767px) {
  .bookModal .modalContents .bookBox .btn02.tel a .icon_tel {
    width: 10px;
    height: 12px;
  }
}
.bookModal .modalContents .note {
  border: 1px solid #A72A2E;
  padding: 45px 50px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .bookModal .modalContents .note {
    padding: 25px;
    margin-bottom: 15px;
  }
}
.bookModal .modalContents .note .title {
  border-bottom: 1px solid #A72A2E;
  padding-bottom: 15px;
  margin-bottom: 15px;
  color: #A72A2E;
  font-weight: 700;
}
.bookModal .modalContents .iconLinkList {
  display: flex;
}
@media (max-width: 767px) {
  .bookModal .modalContents .iconLinkList {
    display: block;
  }
}
.bookModal .modalContents .iconLinkList li + li {
  margin-left: 20px;
}
@media (max-width: 767px) {
  .bookModal .modalContents .iconLinkList li + li {
    margin: 0;
  }
}
.bookModal .modalContents .iconLinkList li a {
  text-decoration: underline;
}
.bookModal .modalContents .iconLinkList li a:hover {
  text-decoration: none;
}
.bookModal .modalContents .iconLinkList li a::after {
  content: "";
  display: inline-block;
  border-top: 1px solid;
  border-right: 1px solid;
  width: 9px;
  height: 9px;
  margin: 0 0 1px 5px;
  rotate: 45deg;
}
.bookModal.salonBookModal .modalTitle {
  margin-bottom: 0;
}

/* =========================================================
shopModal
========================================================= */
.shopModal .modalHeader {
  background: rgba(204, 176, 114, 0.16);
}
.shopModal .modalHeader .modalTitle {
  margin-bottom: 10px;
}
.shopModal .modalHeader .selectWrap {
  margin: 0 0 20px;
}
@media (max-width: 767px) {
  .shopModal .modalHeader .selectWrap {
    margin: 0;
  }
}
.shopModal .modalHeader .selectWrap .title {
  width: 15%;
  margin-right: 0;
}
@media (max-width: 767px) {
  .shopModal .modalHeader .selectWrap .title {
    width: 100%;
  }
}
.shopModal .modalHeader .selectWrap select {
  width: 85%;
}
@media (max-width: 767px) {
  .shopModal .modalHeader .selectWrap select {
    width: 100%;
  }
}
.shopModal .modalHeader input[type=submit] {
  display: block;
  border: none;
  background: #801D20;
  width: 210px;
  margin: 0 auto;
  color: #fff;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  cursor: pointer;
}
@media (max-width: 767px) {
  .shopModal .modalHeader input[type=submit] {
    width: 100%;
  }
}
.shopModal .modalContents .shopModalList {
  display: flex;
  flex-wrap: wrap;
  margin: -35px -35px 0 0;
}
@media (max-width: 767px) {
  .shopModal .modalContents .shopModalList {
    display: block;
    margin: -30px 0 0;
  }
}
.shopModal .modalContents .shopModalList > li {
  display: flex;
  flex-direction: column;
  width: 270px;
  margin: 35px 35px 0 0;
}
@media (max-width: 767px) {
  .shopModal .modalContents .shopModalList > li {
    width: 100%;
    margin: 30px 0 0;
  }
}
.shopModal .modalContents .shopModalList > li .shopAddress {
  overflow: hidden;
  margin: 0 0 14px;
  color: #666;
  line-height: 1.5;
  font-size: 1.3rem;
}
.shopModal .modalContents .shopModalList > li .shopAddress .photo {
  float: left;
  width: 110px;
  margin-right: 20px;
}
.shopModal .modalContents .shopModalList > li .shopAddress .shopName {
  margin: 0 0 5px;
  color: #14230A;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-size: 1.6rem;
}
.shopModal .modalContents .shopModalList > li .shopAddress p {
  overflow: hidden;
}
.shopModal .modalContents .shopModalList > li .shopInfo {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 10px;
}
.shopModal .modalContents .shopModalList > li .shopInfo dt {
  width: 6.5em;
  font-weight: bold;
  letter-spacing: -0.05em;
}
@media (max-width: 767px) {
  .shopModal .modalContents .shopModalList > li .shopInfo dt {
    font-weight: 600;
  }
}
.shopModal .modalContents .shopModalList > li .shopInfo dd {
  width: calc(100% - 6.5em);
  color: #666;
}
.shopModal .modalContents .shopModalList > li .shopInfo dd a {
  color: #801D20;
  font-weight: bold;
}
.shopModal .modalContents .shopModalList > li .btn {
  margin: auto 0 10px;
}
.shopModal .modalContents .shopModalList > li .snsList {
  height: 22px;
}

/* =========================================================
newsModal
========================================================= */
.newsModal .modalBlock {
  max-width: 650px;
}
.newsModal .closeBtn {
  right: 30px;
}
@media (max-width: 767px) {
  .newsModal .closeBtn {
    top: 20px;
    right: 20px;
  }
}
.newsModal .closeBtn svg {
  fill: #801D20;
}
@media (max-width: 767px) {
  .newsModal .modalContents {
    padding-top: 60px;
  }
}
.newsModalTitle {
  margin: 0 0 30px;
  text-align: center;
  line-height: 1.6;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .newsModalTitle {
    margin: 0 0 20px;
  }
}
.newsModal .checkiconList {
  margin: 20px 0;
}
@media (max-width: 767px) {
  .newsModal .checkiconList {
    margin: 15px 0;
  }
}
.newsModal .checkiconList li {
  font-weight: bold;
}
@media (max-width: 767px) {
  .newsModal .checkiconList li {
    font-weight: 600;
  }
}
.newsModal .checkiconList li + li {
  margin-top: 5px;
}

/* =========================================================
パーツ
========================================================= */
@media (max-width: 767px) {
  .pc {
    display: none;
  }
}

@media (min-width: 768px) {
  .sp {
    display: none;
  }
}

@media (max-width: 321px) {
  .exsp {
    display: none;
  }
}

img,
svg {
  vertical-align: top;
  max-width: 100%;
}
@media (max-width: 1024px) {
  img,
  svg {
    height: auto;
  }
}

button {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  color: inherit;
  font-family: "Yu Gothic", YuGothic, "游ゴシック", Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN", "Noto Sans JP", Roboto, "Droid Sans", Meiryo, "メイリオ", Verdana, sans-serif;
  font-size: inherit;
  cursor: pointer;
  touch-action: manipulation;
}

.spAnchor {
  background: rgba(219, 211, 191, 0.57);
  padding: 18px 20px;
}
.spAnchor .title {
  margin-bottom: 5px;
  font-weight: 600;
}
.spAnchorSelect {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #E6E6E6;
  background: #fff url("../img/common/icon_select02.svg") no-repeat right 15px center;
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0 15px;
  color: inherit;
  font-size: 1.3rem;
  font-family: "Yu Gothic", YuGothic, "游ゴシック", Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN", "Noto Sans JP", Roboto, "Droid Sans", Meiryo, "メイリオ", Verdana, sans-serif;
}

/* =========================================================
見出し、テキスト
========================================================= */
.secTitle01 {
  margin: 30px 0 50px;
}
@media (max-width: 767px) {
  .secTitle01 {
    margin: 20px 0 10px;
  }
}
.secTitle01 .en {
  display: block;
  margin-bottom: 5px;
  line-height: 1;
  color: #A72A2E;
  letter-spacing: 0.025em;
  font-family: "Cormorant Garamond", serif;
  font-size: 5.2rem;
}
@media (max-width: 767px) {
  .secTitle01 .en {
    font-size: 3.2rem;
  }
}
.secTitle01 .jp {
  display: block;
  letter-spacing: -0.05em;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .secTitle01 .jp {
    font-size: 1.3rem;
  }
}
.secTitle01.center {
  text-align: center;
}
.secTitle01:first-child {
  margin-top: 0;
}

.secTitle02 {
  margin: 30px 0 20px;
  font-size: 2.3rem;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-weight: 600;
  line-height: 1.7;
}
@media (max-width: 1024px) {
  .secTitle02 {
    margin: 30px 0 15px;
    font-size: 1.8rem;
  }
}
.secTitle02 .en {
  display: block;
  margin: 10px 0 30px;
  line-height: 1;
  color: inherit;
  letter-spacing: 0.1em;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .secTitle02 .en {
    margin-bottom: 20px;
    font-size: 1.3rem;
  }
}
.secTitle02.center {
  text-align: center;
}
.secTitle02:first-child {
  margin-top: 0;
}

.secTitle03 {
  margin: 20px 0 5px;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-weight: 600;
  font-size: 2rem;
}
@media (max-width: 1024px) {
  .secTitle03 {
    margin: 15px 0 10px;
    line-height: 1.8;
    font-size: 1.8rem;
  }
}
.secTitle03.center {
  text-align: center;
}
.secTitle03:first-child {
  margin-top: 0;
}
@media (max-width: 767px) {
  .wrapper > .secTitle03:first-child {
    font-size: 1.5rem;
  }
}

.secTitle04 {
  margin: 20px 0 20px;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-weight: 600;
  font-size: 2.6rem;
}
@media (max-width: 1024px) {
  .secTitle04 {
    margin: 15px 0 5px;
    line-height: 1.8;
    font-size: 1.8rem;
  }
}
.secTitle04.center {
  text-align: center;
}
.secTitle04:first-child {
  margin-top: 0;
}

.secTitle05 {
  margin: 20px 0 5px;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-weight: 600;
  font-size: 3rem;
}
@media (max-width: 1024px) {
  .secTitle05 {
    margin: 15px 0 5px;
    line-height: 1.7;
    font-size: 2.3rem;
  }
}
.secTitle05.center {
  text-align: center;
}
.secTitle05:first-child {
  margin-top: 0;
}

.secTitle06 {
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-weight: 600;
  font-size: 1.5rem;
}
@media (max-width: 1024px) {
  .secTitle06 {
    font-size: 1.3rem;
  }
}
.secTitle06.center {
  text-align: center;
}

.secTitle07 {
  margin: 20px 0 5px;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-weight: 600;
  font-size: 1.8rem;
}
@media (max-width: 1024px) {
  .secTitle07 {
    margin: 15px 0 10px;
    font-size: 1.5rem;
  }
}
.secTitle07.center {
  text-align: center;
}

[class*=secTitle] {
  font-weight: 600;
}

.enTitle {
  margin: 30px 0 5px;
  color: rgba(219, 211, 191, 0.57);
  letter-spacing: 0.1em;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
}
@media (max-width: 767px) {
  .enTitle {
    margin: 15px 0 0;
  }
}

.leadText {
  margin: 0 0 40px;
  text-align: center;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
}
@media (max-width: 767px) {
  .leadText {
    margin: 0 0 20px;
    font-weight: 500;
  }
}

.c_red {
  color: #A72A2E;
}

.c_sub {
  color: rgba(219, 211, 191, 0.57);
}

strong {
  font-weight: 600;
}
/* =========================================================
block
========================================================= */
.bg_color {
  background: #801D20;
  color: #fff;
}

.bg_color2 {
  background: rgba(219, 211, 191, 0.57) url("../img/common/bg_noise.jpg") repeat top left/100px auto;
  background-blend-mode: multiply;
}

.round01 {
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .round01 {
    border-radius: 5px;
  }
}

.round02 {
  overflow: hidden;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .round02 {
    border-radius: 3px;
  }
}

.bg_white {
  background: #fff;
}

.flex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .flex {
    display: block;
  }
}
.flex .photo {
  flex-shrink: 0;
}

.wide img {
  width: 100%;
  height: auto;
}

hr.separator {
  border: none;
  border-top: 1px solid rgba(187, 186, 184, 0.46);
  margin: 80px 0;
}
@media (max-width: 767px) {
  hr.separator {
    margin: 50px 0;
  }
}
hr.separator.gray {
  border-color: #BBBAB8;
}

/* =========================================================
リンクボタン
========================================================= */
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none !important;
  }
}
a svg {
  transition: all 0.25s;
}
a .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(219, 211, 191, 0.57);
  width: 45px;
  height: 45px;
}
@media (max-width: 767px) {
  a .icon {
    width: 32px;
    height: 32px;
  }
}
a .icon svg {
  fill: #614E3D;
  width: 16px;
  height: 7px;
}
@media (max-width: 767px) {
  a .icon svg {
    width: 13px;
    height: 6px;
  }
}

.icon_arrow {
  fill: #614E3D;
  width: 28px;
  height: 14px;
  vertical-align: middle;
  margin: 0 0 2px 8px;
}
@media (max-width: 767px) {
  .icon_arrow {
    width: 23px;
    height: 13px;
    margin-left: 5px;
  }
}

.icon_ex {
  fill: #808080;
  width: 17px;
  height: 13px;
  vertical-align: middle;
  margin: 0 0 3px 5px;
}

.icon_pdf,
.icon_dl {
  fill: #808080;
  width: 13px;
  height: 14px;
  vertical-align: middle;
  margin: 0 0 2px 8px;
}

.contents a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
}

.btn {
  margin-block: 40px;
}
@media (max-width: 767px) {
  .btn {
    margin-block: 25px;
  }
}
.btn .btnLink,
.btn a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  letter-spacing: -0.05em;
  font-size: 1.5rem;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
}
@media (max-width: 767px) {
  .btn .btnLink,
  .btn a {
    gap: 15px;
    font-size: 1.3rem;
  }
}
@media (any-hover: hover) {
  .btn .btnLink:hover,
  .btn a:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
.btn .btnLink .icon,
.btn a .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(219, 211, 191, 0.57);
  width: 45px;
  height: 45px;
}
@media (max-width: 767px) {
  .btn .btnLink .icon,
  .btn a .icon {
    width: 32px;
    height: 32px;
  }
}
.btn .btnLink .icon svg,
.btn a .icon svg {
  fill: #614E3D;
  width: 16px;
  height: 7px;
}
@media (max-width: 767px) {
  .btn .btnLink .icon svg,
  .btn a .icon svg {
    width: 13px;
    height: 6px;
  }
}
@media (any-hover: hover) {
  .btn .btnLink:hover svg,
  .btn a:hover svg {
    margin-right: -7px;
  }
}
.btn:last-child {
  margin-bottom: 0;
}
.btn.clear .btnLink,
.btn.clear a {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: transparent;
  color: #fff;
}
.btn.clear .btnLink::before,
.btn.clear a::before {
  background: rgba(255, 255, 255, 0.5);
}
.btn.white .btnLink,
.btn.white a {
  border: 1px solid none;
  background-color: #fff;
  color: #801D20;
}
.btn.white .btnLink::before,
.btn.white a::before {
  background: #801D20;
}
.btn.gold .btnLink,
.btn.gold a {
  background-color: rgba(219, 211, 191, 0.57);
  color: #fff;
}
.btn.center {
  text-align: center;
}

.btn02 {
  margin-block: 40px;
}
@media (max-width: 767px) {
  .btn02 {
    margin-block: 20px;
  }
}
.btn02 .btnLink,
.btn02 a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: rgba(219, 211, 191, 0.57);
  min-width: 340px;
  height: 65px;
  cursor: pointer;
  text-decoration: none;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-weight: 500;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .btn02 .btnLink,
  .btn02 a {
    min-width: 0;
    width: 100%;
  }
}
@media (hover: hover) {
  .btn02 .btnLink:hover,
  .btn02 a:hover {
    opacity: 0.8;
    text-decoration: none;
  }
  .btn02 .btnLink:hover .icon_arrow,
  .btn02 a:hover .icon_arrow {
    right: 15px;
  }
}
.btn02 .btnLink .icon_ex,
.btn02 a .icon_ex {
  fill: currentColor;
  margin: 0;
}
.btn02 .btnLink .icon_arrow,
.btn02 a .icon_arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 18px;
  height: 9px;
  margin: auto;
  fill: currentColor;
  transition: all 0.25s;
}
.btn02:last-child {
  margin-bottom: 0;
}
.btn02.clear .btnLink,
.btn02.clear a {
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: none;
  color: #fff;
}
.btn02.bd .btnLink,
.btn02.bd a {
  border: 1px solid #000;
  background: none;
}
.btn02.brown .btnLink,
.btn02.brown a {
  background: #c6ba9a;
}
.btn02.center {
  text-align: center;
}

.moreBtn .btnLink .icon {
  background: rgba(219, 211, 191, 0.57) url("../img/common/icon_select02.svg") no-repeat center;
}

.btnList {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .btnList {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .btnList {
    flex-direction: column;
    gap: 15px;
  }
}
.btnList.center {
  justify-content: center;
}
.btnList .btn,
.btnList .btn02 {
  margin: 0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .btnList.btn02 .btnLink,
  .btnList.btn02 a,
  .btnList .btn02 .btnLink,
  .btnList .btn02 a {
    min-width: 320px;
  }
}

.photoLink a {
  display: flex;
  border: 1px solid #BBBAB8;
  color: inherit;
  text-decoration: none;
}
@media (max-width: 767px) {
  .photoLink a {
    flex-direction: column-reverse;
  }
}
.photoLink a .textBlock {
  width: 50%;
  padding: 45px;
}
@media (max-width: 767px) {
  .photoLink a .textBlock {
    width: 100%;
    padding: 30px 25px;
  }
}
.photoLink a .textBlock .secTitle01 {
  margin-bottom: 10px;
}
.photoLink a .textBlock .secTitle01 .en {
  font-size: 4.7rem;
}
@media (max-width: 767px) {
  .photoLink a .textBlock .secTitle01 .en {
    font-size: 2.8rem;
  }
}
.photoLink a .photo {
  position: relative;
  max-width: 50%;
}
@media (max-width: 767px) {
  .photoLink a .photo {
    max-width: 100%;
    width: 100%;
  }
}
.photoLink a .photo img {
  object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
}

/* =========================================================
リスト
========================================================= */
.dash > li {
  margin-left: 1.5em;
  text-indent: -1.5em;
}
.dash > li::before {
  content: "-";
  margin-right: 10px;
}

.disc li {
  margin-left: 0.75em;
  text-indent: -0.75em;
}
.disc li::before {
  content: "・";
  margin-right: 5px;
}

.numList > li {
  counter-increment: li_count;
  margin-left: 1em;
  text-indent: -1em;
}
.numList > li::before {
  content: counter(li_count) ". ";
}

.checkiconList li {
  background: url("../img/common/icon_check02.svg") no-repeat left 0.4em/15px auto;
  padding-left: 20px;
}
.checkiconList li + li {
  margin-top: 1em;
}

@media (max-width: 767px) {
  .anchorLinkBtn {
    margin: 0;
  }
  .anchorLinkBtn .btnLink {
    position: relative;
    justify-content: flex-start;
    border-radius: 5px;
    background: rgba(235, 235, 234, 0.47);
    padding: 0 30px;
    -webkit-tap-highlight-color: transparent;
  }
  .anchorLinkBtn .btnLink::before, .anchorLinkBtn .btnLink::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 15px;
    height: 1px;
    background: #000;
    margin: auto;
  }
  .anchorLinkBtn .btnLink::after {
    right: 27px;
    width: 1px;
    height: 15px;
    transition: height 0.3s;
  }
  .anchorLinkBtn.on .btnLink {
    border-radius: 5px 5px 0 0;
  }
  .anchorLinkBtn.on .btnLink::after {
    height: 0;
  }
  .anchorLinkBtn.on + .anchorLinkList {
    opacity: 1;
    visibility: visible;
  }
}

.anchorLinkListWrap {
  position: relative;
  z-index: 1;
}

.anchorLinkList {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .anchorLinkList {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px 0;
  }
}
@media (max-width: 767px) {
  .anchorLinkList {
    display: block;
    border-radius: 0 0 5px 5px;
    background: #F3F3F2;
    width: 100%;
    margin-top: 0;
    padding: 0 30px 20px;
    color: #14230A;
    font-size: 1.3rem;
    overflow: hidden;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: height 0.4s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.3s, visibility 0.3s;
  }
}
.anchorLinkList li {
  border-right: 1px solid #BBBAB8;
  width: 100%;
  max-width: 208.3333333333px;
  text-align: center;
  line-height: 1.6;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-size: 1.6rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .anchorLinkList li {
    max-width: 33.3333333333%;
  }
  .anchorLinkList li:nth-child(3n+1) {
    border-left: 1px solid #BBBAB8;
  }
}
@media (max-width: 767px) {
  .anchorLinkList li {
    max-width: none;
    border-right: none;
    margin-top: 10px;
    text-align: left;
    font-size: 1.3rem;
    opacity: 0;
    transition: opacity 0.4s;
  }
  .anchorLinkList li.show {
    opacity: 1;
  }
}
.anchorLinkList li:first-child {
  border-left: 1px solid #BBBAB8;
}
@media (max-width: 767px) {
  .anchorLinkList li:first-child {
    border-left: none;
    margin-top: 0;
  }
}
.anchorLinkList li a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 20px 0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .anchorLinkList li a {
    padding-top: 0;
    padding-inline: 10px;
  }
}
@media (max-width: 767px) {
  .anchorLinkList li a {
    display: block;
    padding: 0;
  }
  .anchorLinkList li a br {
    display: none;
  }
}
.anchorLinkList li a .icon_arrow {
  fill: #A72A2E;
  position: relative;
  bottom: 0;
  rotate: 90deg;
  margin: 20px 0 0;
  transition: all 0.2s;
}
@media (max-width: 767px) {
  .anchorLinkList li a .icon_arrow {
    display: none;
  }
}
@media (any-hover: hover) {
  .anchorLinkList li a:hover .icon_arrow {
    bottom: -5px;
  }
}
.anchorLinkList.serialNum li {
  counter-increment: li_count;
}
.anchorLinkList.serialNum li a::before {
  content: counter(li_count, decimal-leading-zero);
  border-radius: 50%;
  background: #A72A2E;
  display: grid;
  place-content: center;
  width: 33px;
  height: 33px;
  margin: 0 0 10px;
  line-height: 1;
  color: #fff;
  font-size: 1.375rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .anchorLinkList.serialNum li a::before {
    content: none;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .anchorLinkList.tabList li:nth-child(3n+1) {
    border-left: none;
  }
}
@media (max-width: 767px) {
  .anchorLinkList.tabList li.active a {
    border-bottom: 1px solid transparent !important;
  }
}

.tabList {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid #BBBAB8;
  margin: 10px 0 40px;
  color: #666;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .tabList {
    flex-wrap: wrap;
    margin: 20px 0 30px;
  }
}
.tabList li {
  margin-bottom: -1px;
}
.tabList li a {
  position: relative;
  display: block;
  border-bottom: 1px solid transparent;
  padding-bottom: 15px;
}
.tabList li.active a {
  color: #A72A2E;
  border-bottom-color: #A72A2E;
  font-weight: 600;
}

.columnList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px;
  margin-bottom: 50px;
}
@media (max-width: 1400px) {
  .columnList {
    gap: 4vw;
  }
}
@media (max-width: 767px) {
  .columnList {
    display: block;
    margin-top: 40px;
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .columnList.column2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .columnList.column3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .columnList.column4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 46px;
  }
}
.columnList .listItem {
  counter-increment: li_count;
}
@media (max-width: 767px) {
  .columnList .listItem + .listItem {
    margin-top: 20px;
  }
}
@media (max-width: 1400px) {
  .columnList .listItem .photo img {
    max-width: 100%;
    height: auto;
  }
}
@media (max-width: 767px) {
  .columnList .listItem .photo img {
    width: 100%;
  }
}
.columnList .listItem .columnTitle {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .columnList .listItem .columnTitle {
    margin-bottom: 5px;
  }
}
.columnList .listItem .columnTitle::after {
  content: "";
  display: block;
  background: #D0161B;
  width: 75px;
  height: 1px;
  margin-block: 15px;
}
@media (max-width: 767px) {
  .columnList .listItem .columnTitle::after {
    content: none;
  }
}
@media (any-hover: hover) {
  .columnList .listItem a:hover .icon_arrow {
    margin-right: -7px;
  }
}

/* =========================================================
table
========================================================= */
.table01 {
  width: 100%;
  margin: 20px 0;
}
@media (max-width: 767px) {
  .table01 {
    margin: 15px 0;
  }
}
.table01:first-child {
  margin-top: 0;
}
.table01:last-child {
  margin-bottom: 0;
}
.table01 th,
.table01 td {
  border: 1px solid #BBBAB8;
  padding: 18px 30px 18px 36px;
}
@media (max-width: 767px) {
  .table01 th,
  .table01 td {
    display: block;
    padding: 15px 0;
    vertical-align: middle;
  }
}
.table01 th {
  text-align: left;
  width: 24%;
  max-width: 300px;
}
@media (max-width: 767px) {
  .table01 th {
    text-align: center;
    width: 100%;
    max-width: none;
    background-color: rgba(204, 176, 114, 0.16);
  }
}
@media (max-width: 767px) {
  .table01.spFixed th,
  .table01.spFixed td {
    display: table-cell;
    width: auto;
  }
}

/* =========================================================
SLICK
========================================================= */
@media (max-width: 767px) {
  .slick-slider .slick-slide .pc {
    display: none;
  }
}
@media (min-width: 768px) {
  .slick-slider .slick-slide .sp {
    display: none;
  }
}

.slick-arrow {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #fff;
  width: 74px;
  height: 74px;
  margin: auto;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s;
  text-indent: 0;
}
@media (max-width: 767px) {
  .slick-arrow {
    width: 27px;
    height: 27px;
  }
}
.slick-arrow svg {
  fill: #A72A2E;
  width: 20px;
  height: 30px;
}
.slick-prev {
  left: 0;
  transform: scale(-1, 1);
}
@media (max-width: 767px) {
  .slick-prev {
    left: 5px;
  }
}

.slick-next {
  right: 0;
}
@media (max-width: 767px) {
  .slick-next {
    right: 5px;
  }
}

.slick-dots,
.slick-dotsWrap .slick-dots {
  position: static;
  text-align: center;
  font-size: 0;
}
@media (max-width: 767px) {
  .slick-dots,
  .slick-dotsWrap .slick-dots {
    margin: 30px auto 0;
    text-align: center;
  }
}
.slick-dots li,
.slick-dotsWrap .slick-dots li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  font-size: 12px;
}
@media (max-width: 767px) {
  .slick-dots li,
  .slick-dotsWrap .slick-dots li {
    margin: 0 5px;
  }
}
.slick-dots li:only-child,
.slick-dotsWrap .slick-dots li:only-child {
  display: none;
  margin-top: -30px;
}
.slick-dots li button,
.slick-dotsWrap .slick-dots li button {
  border: none;
  border-radius: 50%;
  border: none;
  background: #bbbab8;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  text-indent: -9999px;
  cursor: pointer;
}
.slick-dots li.slick-active button,
.slick-dotsWrap .slick-dots li.slick-active button {
  background: #A72A2E;
}

.slick-dotsWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.slick-dotsWrap .slick-dots {
  display: inline-flex;
}
@media (max-width: 767px) {
  .slick-dotsWrap .slick-dots {
    flex-wrap: wrap;
    margin: 0;
  }
}
.slick-dotsWrap .slick-pause {
  order: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  width: 10px;
  height: 10px;
  padding: 0;
  margin: 0 0 -3px;
  color: #A72A2E;
}
.slick-dotsWrap .slick-pause .icon_play {
  display: none;
}
.slick-dotsWrap .slick-pause.paused .icon_play {
  display: block;
}
.slick-dotsWrap .slick-pause.paused .icon_stop {
  display: none;
}
.slick-dotsWrap .slick-pause svg {
  fill: currentColor;
  width: 10px;
  height: 10px;
}
.slick-arrowsWrap {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (max-width: 767px) {
  .slick-arrowsWrap {
    justify-content: space-between;
  }
}
.slick-arrowsWrap .slick-arrow {
  position: static;
  margin: 0;
  border: 1px solid;
  background: none;
  width: 50px;
  height: 50px;
  color: #14230A;
}
@media (max-width: 767px) {
  .slick-arrowsWrap .slick-arrow {
    width: 27px;
    height: 27px;
  }
}
.slick-arrowsWrap .slick-arrow svg {
  fill: currentColor;
  width: 13px;
  height: 13px;
  transition: all 0.25s;
}
@media (max-width: 767px) {
  .slick-arrowsWrap .slick-arrow svg {
    width: 10px;
    height: 10px;
  }
}
@media (any-hover: hover) {
  .slick-arrowsWrap .slick-arrow:hover svg {
    margin-right: -7px;
  }
}
@media (max-width: 767px) {
  .slick-arrowsWrap .slick-next {
    order: 1;
  }
}

/* =========================================================
colorbox
========================================================= */
#cboxOverlay {
  opacity: 1 !important;
  background: rgba(0, 0, 0, 0.6) !important;
}

#cboxCurrent,
#cboxTopRight,
#cboxTopLeft,
#cboxTopCenter,
#cboxMiddleLeft,
#cboxMiddleRight,
#cboxBottomCenter,
#cboxBottomLeft,
#cboxBottomRight {
  background: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

#colorbox {
  background: #fff;
  box-shadow: 3px 3px 15px 0 rgba(0, 0, 0, 0.2);
}

#cboxContent {
  overflow: visible !important;
  margin: 0 auto;
  padding-bottom: 0;
}
#cboxLoadedContent {
  padding: 20px 50px 0;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  #cboxLoadedContent {
    padding: 0;
  }
}

#cboxClose {
  opacity: 1 !important;
  right: 0 !important;
  top: -64px !important;
  border-radius: 50%;
  border: 1px solid !important;
  width: 57px !important;
  height: 57px !important;
  text-align: left !important;
  color: #fff !important;
  text-indent: -9999px !important;
}
@media (max-width: 767px) {
  #cboxClose {
    top: -50px !important;
    width: 40px !important;
    height: 40px !important;
  }
}
#cboxClose::before, #cboxClose::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  width: 25px;
  height: 1px;
  margin: auto;
  transform: rotate(45deg);
}
@media (max-width: 767px) {
  #cboxClose::before, #cboxClose::after {
    width: 16px;
  }
}
#cboxClose::after {
  transform: rotate(-45deg);
}

#cboxPrevious,
#cboxNext {
  display: block;
  left: auto !important;
  right: 67px !important;
  top: -64px !important;
  bottom: auto !important;
  width: 57px !important;
  height: 57px !important;
  text-indent: -99999px;
  margin: auto !important;
}
@media (max-width: 767px) {
  #cboxPrevious,
  #cboxNext {
    top: -50px !important;
    right: 50px !important;
    width: 40px !important;
    height: 40px !important;
  }
}

#cboxPrevious {
  right: 134px !important;
  scale: -1 1;
}
@media (max-width: 767px) {
  #cboxPrevious {
    right: 100px !important;
  }
}

#cboxTitle {
  float: none !important;
  position: static !important;
  margin-top: 0 !important;
  font-weight: 600;
  font-size: 2.4rem;
  color: #14230A !important;
}
@media (max-width: 767px) {
  #cboxTitle {
    font-size: 1.5rem;
  }
}

/* =========================================================
articleDetail
========================================================= */
.articleDetail .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .articleDetail .wrapper {
    display: block;
  }
}
.articleDetail .wrapper .secTitle01 {
  width: 100%;
}
.articleDetail .article {
  width: 66%;
}
@media (max-width: 767px) {
  .articleDetail .article {
    width: 100%;
  }
}
.articleDetail .articleHeader {
  border-bottom: 1px solid #BBBAB8;
  padding-bottom: 15px;
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .articleDetail .articleHeader {
    padding-bottom: 10px;
    margin-bottom: 30px;
  }
}
.articleDetail .articleHeader .date {
  color: #666;
}
@media (max-width: 767px) {
  .articleDetail .articleHeader .date {
    font-size: 1.2rem;
  }
}
.articleDetail .articleHeader .title {
  margin-top: 5px;
}
.articleDetail .articleContent p {
  margin: 2.5em 0;
}
.articleDetail .articleContent a {
  color: #A72A2E;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .articleDetail .articleContent a:hover {
    text-decoration: none;
  }
}
.articleDetail .articleContent img {
  display: block;
  border-radius: 5px;
  margin-block: 30px;
}
.articleDetail .articleContent .btnList {
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .articleDetail .articleContent .btnList {
    margin-bottom: 20px;
  }
}
.articleDetail .articleContent .btnList li {
  width: calc(50% - 10px);
}
@media (max-width: 767px) {
  .articleDetail .articleContent .btnList li {
    width: 100%;
  }
}
.articleDetail .articleContent .btnList li a {
  color: #14230A;
  text-decoration: none;
  min-width: 0;
  width: 100%;
}
.articleDetail .articleContent .btnList li a.pdf {
  position: relative;
}
.articleDetail .articleContent .btnList li a.pdf::after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 14px;
  margin: 0 0 -3px 10px;
  background: url(../img/common/icon_pdf_black.svg) no-repeat;
  background-size: 100%;
  vertical-align: middle;
}
@media (max-width: 1024px) {
  .articleDetail .articleContent pre {
    white-space: pre-wrap;
    word-break: break-all;
  }
}
.articleDetail .articleFooter .snsListWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background: rgba(235, 235, 234, 0.47);
  padding: 20px 0;
}
.articleDetail .articleFooter .snsList {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .articleDetail .articleFooter .snsList li img {
    width: 30px;
    height: 30px;
  }
}
.articleDetail .articleFooter .footerLink {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #BBBAB8;
  margin-top: 40px;
  padding-top: 30px;
}
@media (max-width: 767px) {
  .articleDetail .articleFooter .footerLink {
    margin-top: 30px;
    padding-top: 20px;
  }
}
.articleDetail .articleFooter .footerLink .btn {
  margin: 0;
}
@media (max-width: 767px) {
  .articleDetail .articleFooter .footerLink .btn a {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .articleDetail .articleFooter .footerLink .btn .icon {
    width: 22px;
    height: 22px;
  }
}
.articleDetail .articleFooter .footerLink .prev {
  margin-right: auto;
}
.articleDetail .articleFooter .footerLink .prev .icon {
  scale: -1 1;
}
.articleDetail .articleFooter .footerLink .menu {
  position: absolute;
  left: 0;
  right: 0;
  width: fit-content;
  margin: auto;
}
.articleDetail .articleFooter .footerLink .menu a .icon svg {
  width: 12px;
  height: 12px;
}
@media (max-width: 767px) {
  .articleDetail .articleFooter .footerLink .menu a .icon svg {
    width: 6px;
    height: 6px;
  }
}
@media (any-hover: hover) {
  .articleDetail .articleFooter .footerLink .menu a:hover .icon svg {
    margin: 0;
  }
}
.articleDetail .articleFooter .footerLink .next {
  margin-left: auto;
}
.articleDetail .archive {
  width: 28%;
  margin-top: 5px;
}
@media (max-width: 767px) {
  .articleDetail .archive {
    width: 100%;
    margin-top: 50px;
  }
}
.articleDetail .archive .secTitle01 {
  margin-bottom: 20px;
}
.articleDetail .archive .secTitle01 .en {
  font-size: 4.7rem;
}
@media (max-width: 1024px) {
  .articleDetail .archive .secTitle01 .en {
    font-size: 2.8rem;
  }
}
.articleDetail .archive select {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: rgba(219, 211, 191, 0.57) url("../img/common/icon_select02.svg") no-repeat right 15px center;
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0 15px;
  color: inherit;
  font-size: 1.3rem;
  font-family: "Yu Gothic", YuGothic, "游ゴシック", Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN", "Noto Sans JP", Roboto, "Droid Sans", Meiryo, "メイリオ", Verdana, sans-serif;
}
.articleDetail .archive .sidebarList {
  width: 100%;
  background: rgba(219, 211, 191, 0.57);
  color: inherit;
  font-size: 1.3rem;
}
.articleDetail .archive .sidebarListWrap {
  position: relative;
  width: 100%;
}
.articleDetail .archive .sidebarListWrap .closeBtn {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 50px;
  cursor: pointer;
  font-size: 0;
}
.articleDetail .archive .sidebarList li {
  display: none;
}
.articleDetail .archive .sidebarList li a {
  position: relative;
  display: block;
  height: 0;
  line-height: 50px;
  padding-inline: 15px;
  color: transparent;
  transition: height 0.4s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.3s, color 0s;
}
.articleDetail .archive .sidebarList li.current {
  display: list-item;
}
.articleDetail .archive .sidebarList li.current::before {
  content: "";
  position: absolute;
  right: 15px;
  top: 22px;
  bottom: 0;
  display: block;
  width: 12px;
  height: 7px;
  background: url("../img/common/icon_select02.svg") no-repeat;
  background-size: 12px 7px;
}
.articleDetail .archive .sidebarList li.current a {
  pointer-events: none;
  height: 50px;
  color: inherit;
}
@media (any-hover: hover) {
  .articleDetail .archive .sidebarList li.current a:hover {
    opacity: 1;
  }
}
.articleDetail .archive .sidebarList li:only-of-type::before {
  content: none;
}
.articleDetail .archive .sidebarList li:only-of-type a {
  pointer-events: auto;
}
.articleDetail .archive .sidebarList:not(.open) li.current {
  cursor: pointer;
}
.articleDetail .archive .sidebarList.open li a {
  height: 50px;
  color: inherit;
  pointer-events: auto;
}
@media (any-hover: hover) {
  .articleDetail .archive .sidebarList.open li.current a:hover {
    opacity: 0.8;
  }
}
.articleDetail .archive .sidebarList.open + .closeBtn {
  display: block;
}

/* =========================================================
layout.css
========================================================= */
html,
body {
  font-size: 62.5%;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 56px;
  }
}

body {
  position: relative;
  overflow-x: hidden;
  background: #fff url("../img/common/bg_noise.jpg");
  background-size: 100px auto;
  color: #14230A;
  font-size: 15px;
  font-family: "Yu Gothic", YuGothic, "游ゴシック", Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN", "Noto Sans JP", Roboto, "Droid Sans", Meiryo, "メイリオ", Verdana, sans-serif;
  font-weight: 500;
  line-height: 1.8;
  min-width: 1250px;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  word-break: break-all;
  padding-top: 92px;
  /* フォントレンダリング設定: 1x解像度ではsubpixel、2x以上の解像度ではgrayscale */
  -webkit-font-smoothing: subpixel-antialiased;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /*Chrome,Safari*/
  -ms-text-size-adjust: 100%; /*EgdeMobile*/
  -moz-text-size-adjust: 100%; /*firefox*/
}
body.fixed, body.modalOn, body.navOn {
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 1024px) {
  body {
    padding-top: 92px;
  }
}
@media (max-width: 767px) {
  body {
    padding-top: 56px;
    font-size: 1.3rem;
    font-weight: 400;
  }
}
@media screen and (max-width: 1250px) {
  body {
    min-width: 0;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

.wrapper {
  position: relative;
  max-width: 1250px;
  margin-inline: auto;
  padding-block: 85px;
}
@media (max-width: 1400px) {
  .wrapper {
    max-width: 90%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .wrapper {
    max-width: 90%;
    padding-block: 60px;
  }
}
@media (max-width: 767px) {
  .wrapper {
    max-width: 90%;
    padding-block: 30px;
  }
}

/* =========================================================
globalHeader
========================================================= */
.globalHeader {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #F0F0F0;
  background: #fff;
  width: 100%;
  height: 92px;
  padding-inline: 45px 0;
  color: #14230A;
}
@media (max-width: 1024px) {
  .globalHeader {
    height: 92px;
    padding-top: 0;
    padding-inline: 5%;
  }
}
@media (max-width: 767px) {
  .globalHeader {
    height: 56px;
  }
}
.globalHeader a {
  transition: opacity 0.3s;
}
.globalHeader .siteLogo {
  flex-shrink: 0;
  margin-left: -20px;
  margin-right: auto;
}
@media (max-width: 767px) {
  .globalHeader .siteLogo {
    margin-left: 0;
  }
}
.globalHeader .siteLogo a img {
  display: block;
  height: auto;
}
@media (max-width: 767px) {
  .globalHeader .siteLogo a img {
    width: 50px;
  }
}
.globalHeader .siteLogo a img.logo01 {
  display: block;
}
.globalHeader .siteLogo a img.logo02 {
  display: none;
}
.globalHeader > .bookBtn {
  transition: all 0.2s;
}
@media (max-width: 1024px) {
  .globalHeader > .bookBtn {
    display: block;
  }
}
.globalHeader > .bookBtn a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #801D20;
  width: 125px;
  height: 40px;
  color: #fff;
  text-align: center;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-weight: 500;
}
.navOn .globalHeader > .bookBtn {
  opacity: 0;
  visibility: hidden;
}
.header_show .globalHeader {
  position: fixed;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
  animation: headerAnime 0.3s ease;
}
@media (max-width: 1024px) {
  .header_show .globalHeader {
    height: 92px;
    padding-right: 5%;
  }
}
@media (max-width: 767px) {
  .header_show .globalHeader {
    height: 56px;
  }
}
.header_show .globalHeader .siteLogo a img.logo01 {
  display: block;
}
.header_show .globalHeader .siteLogo a img.logo02 {
  display: none;
}

@keyframes headerAnime {
  0% {
    opacity: 0;
    top: -30px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
.spHeaderMenu {
  display: flex;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-weight: 500;
}
@media (min-width: 768px) {
  .spHeaderMenu {
    display: none;
  }
}
.spHeaderMenu > li {
  position: relative;
  width: 100%;
}
.spHeaderMenu > li + li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.3);
  width: 1px;
  height: 80%;
  margin: auto;
}
.spHeaderMenu > li > a {
  display: block;
  background: #801D20;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
}

.gnavBtn {
  color: #fff;
}
@media (max-width: 1024px) {
  .gnavBtn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 55px;
    height: 55px;
    margin-right: -10px;
    text-align: center;
    color: #14230A;
    font-family: "Cormorant Garamond", serif;
  }
}
.gnavBtn .line {
  position: relative;
  display: block;
  width: 34px;
  height: 1px;
  margin: 8px auto;
  transition: all 0.15s;
}
.gnavBtn .line::before, .gnavBtn .line::after {
  content: "";
  display: block;
  position: absolute;
  top: -4px;
  background: #14230A;
  width: 100%;
  height: 1px;
  transition: all 0.15s;
}
.gnavBtn .line::after {
  top: auto;
  bottom: -4px;
}
.navOn .gnavBtn .line {
  background: transparent;
}
.navOn .gnavBtn .line:before {
  top: 0;
  transform: rotate(15deg);
}
.navOn .gnavBtn .line:after {
  bottom: 0;
  transform: rotate(-15deg);
}
.gnavBtn .text {
  display: block;
  width: 100%;
}

.globalNav {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 5px 0;
  width: auto;
  padding-right: calc(30% + 20px);
  margin-left: auto;
  width: 100%;
  margin-top: -5px;
  color: inherit;
  letter-spacing: -0.025em;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  transition: opacity 0.2s ease;
}
@media (min-width: 1500px) {
  .globalNav {
    padding-right: 470px;
  }
}
@media (max-width: 1500px) {
  .globalNav {
    padding-right: calc(30% + 40px);
  }
}
@media (max-width: 1024px) {
  .globalNav {
    padding-right: 5%;
  }
}
@media (max-width: 1024px) {
  .globalNav {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 92px;
    left: 0;
    z-index: 3;
    display: block;
    overflow-y: auto;
    background: #fff;
    height: calc(100% - 92px);
    margin-top: 0;
    padding: 20px 5%;
    font-weight: 500;
    transition: all 0.2s ease;
  }
}
@media (max-width: 767px) {
  .globalNav {
    top: 56px;
    height: calc(100% - 56px);
  }
}
.navOn .globalNav {
  opacity: 1;
  visibility: visible;
}
.globalNav .icon_arrow {
  fill: currentColor;
  width: 16px;
  height: 9px;
}
@media (min-width: 768px) {
  .globalNav .icon_arrow {
    display: none;
  }
}
.globalNav .gnavList01 {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 1.8rem;
  font-size: 1.6rem;
}
@media (max-width: 1400px) {
  .globalNav .gnavList01 {
    gap: 2vw;
    font-size: 1.2vw;
  }
}
@media (max-width: 1024px) {
  .globalNav .gnavList01 {
    display: block;
    border-top: 1px solid #BBBAB8;
    font-size: 1.4rem;
  }
}
@media (max-width: 1024px) {
  .globalNav .gnavList01 > li {
    border-bottom: 1px solid #BBBAB8;
  }
}
.globalNav .gnavList01 > li > a {
  display: block;
}
@media (max-width: 1024px) {
  .globalNav .gnavList01 > li > a {
    position: relative;
    padding: 12px 5px;
  }
  .globalNav .gnavList01 > li > a .icon_arrow {
    fill: #801D20;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
  }
}
.globalNav .gnavList02 {
  position: static;
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  font-size: 1.5rem;
  margin-top: 5px;
  font-size: 1.4rem;
}
@media (max-width: 1400px) {
  .globalNav .gnavList02 {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0 0.7vw;
    font-size: 1vw;
  }
}
@media (max-width: 1024px) {
  .globalNav .gnavList02 {
    position: static;
    display: block;
    margin-block: 25px;
    font-weight: 400;
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .globalNav .gnavList02 > li + li {
    margin-top: 7px;
  }
}
.globalNav .gnavList02 > li > a {
  display: block;
}
.globalNav .gnavList02 > li > a svg {
  fill: currentColor;
}
.globalNav .gnavList03 {
  display: flex;
  width: 37.5%;
  max-width: 600px;
  margin-left: auto;
  margin-right: -45px;
  font-size: 1.8rem;
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  max-width: 440px;
  margin-right: 0;
  font-size: 1.6rem;
}
@media (max-width: 1400px) {
  .globalNav .gnavList03 {
    font-size: 1.5rem;
  }
}
@media (max-width: 1024px) {
  .globalNav .gnavList03 {
    position: static;
    display: block;
    max-width: 100%;
    width: auto;
    margin-right: 0;
    font-size: 1.3rem;
  }
}
.globalNav .gnavList03 > li {
  position: relative;
  width: 100%;
}
@media (max-width: 1024px) {
  .globalNav .gnavList03 > li + li {
    margin-top: 10px;
  }
}
.globalNav .gnavList03 > li + li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.3);
  width: 1px;
  height: 80%;
  margin: auto;
}
.globalNav .gnavList03 > li > a {
  display: block;
  background: #801D20;
  height: 92px;
  line-height: 92px;
  text-align: center;
  color: #fff;
}
@media (max-width: 1024px) {
  .globalNav .gnavList03 > li > a {
    height: 65px;
    line-height: 65px;
  }
}
@media (max-width: 767px) {
  .globalNav .gnavList03 > li > a {
    position: relative;
  }
  .globalNav .gnavList03 > li > a .icon_arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
  }
}
/* =========================================================
contents
========================================================= */
.contents {
  position: relative;
  display: block;
  overflow: hidden;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .contents {
    overflow: hidden;
    padding-bottom: 30px;
  }
}

.breadcrumbs {
  padding: 20px 40px;
  font-size: 1.3rem;
}
@media (max-width: 767px) {
  .breadcrumbs {
    padding: 25px 5% 0;
    line-height: 1.8;
    font-size: 1.2rem;
  }
}
.breadcrumbs li {
  display: inline;
}
.breadcrumbs li a {
  color: #666;
}
.breadcrumbs li a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 1px;
  background: #666;
  margin-inline: 15px 10px;
}
.breadcrumbs li:last-child {
  color: #A72A2E;
  text-decoration: underline;
}

.titleArea {
  position: relative;
}
.titleArea .wrapper {
  position: relative;
  padding-bottom: 70px;
}
@media (max-width: 767px) {
  .titleArea .wrapper {
    padding-bottom: 30px;
  }
}
.titleArea .wrapper::before {
  content: "";
  position: relative;
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  background: #A72A2E;
  width: 100px;
  height: 1px;
}
@media (max-width: 767px) {
  .titleArea .wrapper::before {
    width: 40px;
  }
}
.titleArea .pageTitle .en {
  display: block;
  line-height: 1;
  margin-bottom: 10px;
  color: #A72A2E;
  font-family: "Cormorant Garamond", serif;
  font-size: 7rem;
}
@media (max-width: 767px) {
  .titleArea .pageTitle .en {
    margin-bottom: 5px;
    font-size: 3.5rem;
  }
}
.titleArea .pageTitle .jp {
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-size: 2.6rem;
}
@media (max-width: 767px) {
  .titleArea .pageTitle .jp {
    font-size: 1.7rem;
  }
}
.titleArea .pageTitleLine {
  position: absolute;
  left: 0;
  right: calc(50% - 50vw);
  bottom: 0;
  display: block;
  border: none;
  border-top: 1px solid #BBBAB8;
  margin: 0;
}
.titleArea .bg {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -220px;
  margin: auto;
  max-width: none;
}
@media (max-width: 767px) {
  .titleArea .bg {
    right: -5%;
    width: 170px;
    height: auto;
  }
}
.titleArea .photo img {
  object-fit: cover;
  width: 100%;
  height: 380px;
}
@media (max-width: 767px) {
  .titleArea .photo img {
    height: auto;
  }
}
.titleArea:has(picture.photo)::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0) 100%);
}
.titleArea:has(picture.photo) .slick-dots li button {
  border: 1px solid #fff;
  background: #fff;
}
.titleArea:has(picture.photo) .slick-dots li.slick-active button {
  background: none;
}
.titleArea:has(picture.photo) .wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding-block: 0;
  margin: auto;
}
@media (max-width: 767px) {
  .titleArea:has(picture.photo) .wrapper {
    padding-block: 60px 60px;
  }
}
.titleArea:has(picture.photo) .wrapper::before {
  content: none;
}
.titleArea:has(picture.photo) .pageTitle {
  color: #fff;
}
.titleArea:has(picture.photo) .pageTitle .en {
  color: inherit;
}
@media (min-width: 768px) {
  .titleArea:has(picture.photo) + .breadcrumbs {
    color: #fff;
  }
  .titleArea:has(picture.photo) + .breadcrumbs li a {
    color: inherit;
  }
  .titleArea:has(picture.photo) + .breadcrumbs li a::after {
    background: #fff;
  }
  .titleArea:has(picture.photo) + .breadcrumbs li:last-child {
    color: inherit;
  }
}
@media (max-width: 767px) {
  .titleArea:has(picture.photo) + .breadcrumbs {
    padding-top: 15px;
  }
}
.titleArea:has(picture.photo) + .breadcrumbs + section .wrapper {
  padding-top: 70px;
}
@media (max-width: 1024px) {
  .titleArea:has(picture.photo) + .breadcrumbs + section .wrapper {
    padding-top: 25px;
  }
}
@media (min-width: 768px) {
  .titleArea + .breadcrumbs {
    position: absolute;
    top: 0;
  }
}
.titleArea + .breadcrumbs + section .wrapper {
  padding-top: 50px;
}
@media (max-width: 1024px) {
  .titleArea + .breadcrumbs + section .wrapper {
    padding-top: 25px;
  }
}

/* =========================================================
globalFooter
========================================================= */
.globalFooter .wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0 50px;
  padding-block: 80px;
}
@media (max-width: 1400px) {
  .globalFooter .wrapper {
    gap: 0 30px;
  }
}
@media (max-width: 767px) {
  .globalFooter .wrapper {
    flex-direction: column;
    gap: 20px;
    padding-block: 40px 80px;
  }
}
.globalFooter .siteInfo {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .globalFooter .siteInfo {
    display: block;
  }
}
@media (max-width: 767px) {
  .globalFooter .siteInfo > dt {
    margin-bottom: 5px;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .globalFooter .siteInfo > dt img {
    width: 15vw;
  }
}
@media (max-width: 767px) {
  .globalFooter .siteInfo > dt img {
    width: 145px;
  }
}
.globalFooter .siteInfo dd .siteName small {
  display: block;
  font-size: 1.2rem;
}
.globalFooter .siteInfo dd .snsListWrap {
  margin-top: 15px;
}
.globalFooter .snsListWrap {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media (max-width: 767px) {
  .globalFooter .snsListWrap {
    position: relative;
    justify-content: space-between;
  }
}
.globalFooter .snsListWrap dt {
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
}
@media (max-width: 767px) {
  .globalFooter .snsListWrap dt {
    font-size: 1.5rem;
  }
  .globalFooter .snsListWrap dt::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 5em;
    background: rgba(255, 255, 255, 0.3);
    width: calc(100% - 5em - 165px);
    height: 1px;
    margin: auto;
  }
}
.globalFooter .snsList {
  display: flex;
  align-items: center;
  gap: 10px;
}
.globalFooter .snsList li a {
  display: block;
}
.globalFooter .snsList li a img {
  display: block;
}
.globalFooter .footerSubNav {
  margin-left: auto;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .globalFooter .footerSubNav {
    width: 30vw;
  }
}
@media (max-width: 767px) {
  .globalFooter .footerSubNav {
    margin-left: 0;
    margin-bottom: -10px;
  }
}
.globalFooter .footerSubNav .btn02 {
  margin-block: 15px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .globalFooter .footerSubNav .btn02 a {
    min-width: 100%;
  }
}
.globalFooter .footerNav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 767px) {
  .globalFooter .footerNav {
    display: block;
    column-count: 2;
  }
  .globalFooter .footerNav li {
    white-space: nowrap;
  }
}
.globalFooter .separator {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  width: 100%;
  margin: 50px 0;
}
@media (max-width: 767px) {
  .globalFooter .separator {
    order: 1;
    margin: 30px 0;
  }
}

.copyright {
  padding-block: 35px;
  text-align: center;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
}
@media (max-width: 767px) {
  .copyright {
    padding-block: 25px;
    font-size: 1.2rem;
  }
}

.pagetop {
  position: -webkit-sticky;
  position: sticky;
  bottom: 20px;
  right: 30px;
  z-index: 1;
  width: 57px;
  height: 57px;
  margin: 8px 0 -65px auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s;
}
@media (max-width: 767px) {
  .pagetop {
    right: 0;
    bottom: 15px;
    width: 44px;
    height: 44px;
    margin: -84px auto 40px auto;
  }
}
body:has(.cookie[style="display: block;"]) .pagetop {
  bottom: 100px;
}
@media (max-width: 767px) {
  body:has(.cookie[style="display: block;"]) .pagetop {
    bottom: 120px;
  }
}
.pagetop a {
  position: relative;
  display: grid;
  place-content: center;
  border: 1px solid;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  color: #801D20;
  text-align: center;
}
.pagetop a .icon_arrow {
  fill: currentColor;
  width: 22px;
  height: 9px;
  rotate: -90deg;
  margin: 0;
}
.header_show .pagetop {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  .header_show .pagetop {
    opacity: 0.7;
  }
}
.footer_show .pagetop a, .pagetop.footer_show a {
  color: #fff;
}
body:has(.cookie:not([style*="display: none"])) .pagetop {
  bottom: 263px;
}
@media (max-width: 767px) {
  body:has(.cookie:not([style*="display: none"])) .pagetop {
    bottom: 160px;
  }
}

.cookie {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.75);
  width: 430px;
  padding: 25px 30px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .cookie {
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    margin: auto;
    padding: 15px 5%;
  }
}
.cookie .text a {
  text-decoration: underline;
}
.cookie .cookieLink {
  display: block;
  background: #801D20;
  width: 100%;
  height: 50px;
  line-height: 50px;
  margin-top: 15px;
  color: #fff;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
}
@media (max-width: 767px) {
  .cookie .cookieLink {
    width: 100%;
    line-height: 35px;
    height: 35px;
    margin-top: 10px;
  }
}/*# sourceMappingURL=style_new.css.map */