@charset "UTF-8";
/* 共通 */
* {
  min-width: 0;
  min-height: 0;
  font-family: shippori-mincho, sans-serif;
  color: #231815;
  letter-spacing: 0.1em;
}

/* 共通 */
body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

#content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

a {
  text-decoration: none;
}
a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.wrap {
  max-width: 80%;
  /* full-width 1400pxに対して、1000px maxを想定 */
  margin: 0 auto;
}
@media (max-width: 800px) {
  .wrap {
    max-width: 100%;
    padding: 0 3%;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

br.pc {
  display: block;
}
@media (max-width: 767px) {
  br.pc {
    display: none;
  }
}
br.sp {
  display: none;
}
@media (max-width: 767px) {
  br.sp {
    display: block;
  }
}

:target {
  /* ヘッダーの高さ分だけパディングを追加し、内容が隠れないようにする */
  padding-top: 110px;
  /* パディングで内容が下に押し出されるのを避けるために、同じ大きさのマイナスマージンを設定 */
  margin-top: -110px;
  /* ブラウザが要素を表示する際の挙動を補助する */
  display: block;
}

div img {
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: top;
}

/*ハンバーガーメニュー*/
nav {
  display: block;
  position: fixed;
  top: 0;
  right: -300px;
  bottom: 0;
  width: 300px;
  background: #000;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 3;
  opacity: 0;
}
nav .inner {
  padding: 25px;
}
nav .inner .list {
  margin-top: 60px;
}
nav .inner .list .box a {
  padding: 10px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  color: #fff;
}
nav .inner .list .sns {
  width: 30px;
  height: 30px;
  margin-top: 10px;
}
nav .inner .list .sns:last-of-type {
  margin-top: 20px;
}
nav .inner .list .sns img {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  nav {
    right: -220px;
    width: 220px;
  }
}

.toggle_btn {
  display: none;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 30px;
  height: 20px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 5;
}
@media (max-width: 970px) {
  .toggle_btn {
    display: block;
  }
}
.toggle_btn .toggle_line {
  width: 100%;
  height: 100%;
}
.toggle_btn .toggle_line span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.toggle_btn .toggle_line span:nth-child(1) {
  top: 25%;
}
.toggle_btn .toggle_line span:nth-child(2) {
  top: 75%;
}

.toggle_btn.open span {
  background-color: #fff;
}
.toggle_btn.open span:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(50%) rotate(45deg);
          transform: translateY(50%) rotate(45deg);
}
.toggle_btn.open span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
          transform: translateY(50%) rotate(-45deg);
}

.open nav {
  right: 0;
  opacity: 1;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.8;
  z-index: 2;
  cursor: pointer;
}

#mask {
  display: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

/* top scroll */
.top_jump {
  visibility: hidden;
  width: 60px;
  height: 60px;
  background-color: #666666;
  position: fixed;
  z-index: 999;
  bottom: 0;
  right: 0;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  opacity: 0;
}
.top_jump::before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-top: 2px solid #dddddd;
  border-right: 2px solid #dddddd;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -15%) rotate(-45deg);
}

.view {
  visibility: visible;
  opacity: 1;
}

.top_jump a {
  display: block;
  height: 100%;
}

/* header */
header {
  width: 100%;
  top: 0;
  z-index: 10;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
header.scroll {
  background-color: #000;
}
header .header-wrap {
  padding: 20px 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1100px) {
  header .header-wrap {
    padding: 20px 30px;
  }
}
@media (max-width: 767px) {
  header .header-wrap {
    padding: 30px;
  }
}
header .header-wrap .header-menu {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .header-wrap .header-menu .logo {
  height: 70px;
  margin-right: 60px;
}
@media (max-width: 767px) {
  header .header-wrap .header-menu .logo {
    height: 55px;
    margin-right: 0px;
  }
}
header .header-wrap .header-menu .logo img {
  height: 100%;
}
header .header-wrap .header-menu .logo .black {
  display: none;
}
header .header-wrap .header-menu .list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 970px) {
  header .header-wrap .header-menu .list {
    display: none;
  }
}
header .header-wrap .header-menu .list .btn {
  margin-right: 30px;
}
@media (max-width: 1300px) {
  header .header-wrap .header-menu .list .btn {
    margin-right: 20px;
  }
}
header .header-wrap .header-menu .list .btn:last-child {
  margin-right: 0;
}
header .header-wrap .header-menu .list .btn a * {
  color: #fff;
}
@media (max-width: 1300px) {
  header .header-wrap .header-menu .list .btn a * {
    font-size: 14px;
  }
}
header .header-wrap .header-menu .list .btn.reserve a {
  display: block;
  padding: 15px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid #000;
  border-radius: 20px;
}
header .header-wrap .header-menu .list .btn.reserve a * {
  color: #231815;
}
@media (max-width: 1300px) {
  header .header-wrap .header-menu .list .btn.reserve a * {
    font-size: 14px;
  }
}

/* footer */
footer {
  background-color: #000;
  padding: 50px 0 20px 0;
}
footer .footer-menu {
  width: 90%;
  margin: 0 auto 80px auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .footer-menu * {
  color: #fff;
}
footer .footer-menu .logo {
  width: 175px;
}
@media (max-width: 767px) {
  footer .footer-menu .logo {
    margin-bottom: 30px;
  }
}
footer .footer-menu .logo a {
  width: 100%;
}
footer .footer-menu .logo a img {
  width: 100%;
}
footer .footer-menu .list .box {
  margin-right: 30px;
}
@media (max-width: 767px) {
  footer .footer-menu .list .box {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
}
footer .footer-menu .list .box a {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media (max-width: 767px) {
  footer .footer-menu .list .box a {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
}
footer .footer-menu .list .sns {
  width: 30px;
  height: 30px;
  margin-right: 20px;
}
footer .footer-menu .list .sns:last-child {
  margin-right: 0;
}
footer .footer-menu .list .sns img {
  width: 100%;
  height: 100%;
}
footer .contents {
  width: 90%;
  margin: 0 auto;
}
footer .contents * {
  color: #fff;
}
footer .contents .top {
  width: 100%;
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
  margin-bottom: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .contents .top span.head {
  font-size: 20px;
}
@media (max-width: 767px) {
  footer .contents .top span.head {
    display: block;
    margin-bottom: 5px;
  }
}
footer .contents .top .tel {
  margin-right: 30px;
  font-size: 20px;
}
@media (max-width: 767px) {
  footer .contents .top .tel {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
footer .contents .top .tel span {
  font-size: 14px;
}
footer .contents .top .tel span.head {
  font-size: 20px;
}
footer .contents .top .area {
  margin-right: 30px;
}
@media (max-width: 767px) {
  footer .contents .top .area {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
footer .contents .bottom {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .contents .bottom .box {
  margin-right: 30px;
}
@media (max-width: 767px) {
  footer .contents .bottom .box {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
}
footer .contents .bottom .box:last-child {
  margin-right: 0;
}

.anker-list,
.category-list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 60px;
}
@media (max-width: 850px) {
  .anker-list,
  .category-list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.anker-list .button,
.anker-list .anker-item,
.category-list .button,
.category-list .anker-item {
  width: 180px;
  border-left: 1px solid #231815;
}
@media (max-width: 1100px) {
  .anker-list .button,
  .anker-list .anker-item,
  .category-list .button,
  .category-list .anker-item {
    width: 150px;
  }
}
@media (max-width: 850px) {
  .anker-list .button,
  .anker-list .anker-item,
  .category-list .button,
  .category-list .anker-item {
    width: calc(50% - 3px);
    margin-bottom: 10px;
  }
  .anker-list .button:nth-child(2n),
  .anker-list .anker-item:nth-child(2n),
  .category-list .button:nth-child(2n),
  .category-list .anker-item:nth-child(2n) {
    border-right: 1px solid #231815;
  }
  .anker-list .button:nth-last-child(-n+2),
  .anker-list .anker-item:nth-last-child(-n+2),
  .category-list .button:nth-last-child(-n+2),
  .category-list .anker-item:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
}
.anker-list .button:last-child,
.anker-list .anker-item:last-child,
.category-list .button:last-child,
.category-list .anker-item:last-child {
  border-right: 1px solid #231815;
}
.anker-list .button a,
.anker-list .anker-item a,
.category-list .button a,
.category-list .anker-item a {
  padding: 10px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  text-align: center;
}

#contents-page .top-kv {
  margin-bottom: 130px;
}
#contents-page .top-kv img {
  width: 100%;
}
@media (max-width: 767px) {
  #contents-page .top-kv {
    margin-bottom: 60px;
    height: 300px;
  }
  #contents-page .top-kv img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#contents-page .inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  #contents-page .inner {
    width: 100%;
    padding: 0 3%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
#contents-page .page-slider {
  height: 480px;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  #contents-page .page-slider {
    height: 220px;
  }
}
#contents-page .page-slider .slick-list {
  height: 100%;
}
#contents-page .page-slider .slick-list .slick-track {
  height: 100%;
}
#contents-page .page-slider .slick-list .slick-track img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#contents-page .page-slider .slick-dots {
  bottom: -40px;
}
#contents-page .text {
  letter-spacing: 0.2em;
  line-height: 2;
  margin-bottom: 60px;
  text-align: center;
}
@media (max-width: 767px) {
  #contents-page .text {
    line-height: 1.3;
    letter-spacing: 0.1em;
    text-align: left;
  }
}
#contents-page .image {
  margin-bottom: 80px;
}
#contents-page .image img {
  width: 100%;
}

.inner-min {
  max-width: 800px;
  width: 90%;
  margin: 0 auto 60px auto;
}

.btn {
  display: inline-block;
}
.btn a ._line {
  display: inline-block;
}
.btn a ._o {
  display: inline-block;
}
.btn a ._i {
  display: inline-block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .inner {
    width: 100%;
    padding: 0 3%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.sub-headline {
  text-align: center;
  letter-spacing: 0.2em;
  margin-bottom: 70px;
  font-size: 18px;
  position: relative;
}
.sub-headline::before {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.sub-headline.nob::before {
  content: none;
}
@media (max-width: 767px) {
  .sub-headline {
    line-height: 1.3;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
  }
}

.headline {
  font-size: 34px;
  margin-bottom: 60px;
  letter-spacing: 0.2em;
  text-align: center;
}
@media (max-width: 767px) {
  .headline {
    line-height: 1.3;
    letter-spacing: 0.1em;
    font-size: 28px;
  }
}
.headline span {
  font-size: 20px;
  margin-top: 30px;
  letter-spacing: 0.2em;
  display: block;
}
@media (max-width: 767px) {
  .headline span {
    letter-spacing: 0.1em;
  }
}

#search-container {
  width: 100%;
  margin-bottom: 130px;
  text-align: center;
}
#search-container .search-widget-search-container-bf1818 {
  background-color: #e8e8e8;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 40px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 767px) {
  #search-container .search-widget-search-container-bf1818 {
    width: 100% !important;
    padding: 40px 3%;
  }
}
#search-container .search-widget-search-container-bf1818 .input-container-slot-239963 input {
  width: 100% !important;
}