@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
:root {
  --c-base: #fff;
  --c-primary: #221303;
  --c-secondary: #000;
  --c-tertiary: #707070;
  --c-accent: #ffd511;
  --c-text: #555;
  --c-text-reversal: #fff;
  --c-body-bg: #eee;
  --c-hover: #bf0000;
  --c-gra: linear-gradient(90deg, rgba(255,132,50,1) 0%, rgba(255,66,29,1) 100%);
  --c-h1-text: var(--c-white);
  --c-h1-bg: var(--c-secondary);
  --c-h2-text: var(--c-white);
  --c-h2-bg: var(--c-primary);
  --c-h3-text: var(--c-primary);
  --c-h3-bg: var(--c-primary);
  --c-h4-text: var(--c-primary);
  --c-h4-bg: var(--c-primary);
  --c-white: #fff;
  --c-white-rgb: 255,255,255;
  --c-red: #ff2626;
  --c-pink: #ffe1e1;
  --c-blue: #e8e9ff;
  --c-green: #edffe8;
  --c-gray: #efefef;
  --c-black: #000;
  --c-black-rgb: 0,0,0;
  --ff-base: var(--ff-serif);
  --ff-gothic: "Zen Kaku Gothic New","游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  --ff-main: var(--ff-serif);
  --ff-serif: "Zen Old Mincho","游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.recaptcha-text {
  margin-bottom: 20px;
  font-size: 12px;
}
@media (min-width: 768px) {
  .recaptcha-text {
    font-size: 14px;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

.wpcf7 .required {
  margin-left: 5px;
  color: var(--c-red);
}

.left-mask {
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%);
  -webkit-transition: all 1s cubic-bezier(0.5, 1, 0.89, 1);
  transition: all 1s cubic-bezier(0.5, 1, 0.89, 1);
}
.left-mask.js-ani-on {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
}
.left-mask.js-ani-on img {
  -webkit-animation: zoomOutSection 10s linear 0s normal both;
          animation: zoomOutSection 10s linear 0s normal both;
}
@-webkit-keyframes zoomOutSection {
  0% {
    -webkit-transform: scale(1.25);
            transform: scale(1.25);
  }
  99.9%, to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoomOutSection {
  0% {
    -webkit-transform: scale(1.25);
            transform: scale(1.25);
  }
  99.9%, to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.left-top-fade-mask p {
  display: block;
  mask-image: linear-gradient(135deg, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(135deg, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0) 100%);
  mask-size: 250% 250%;
  -webkit-mask-size: 250% 250%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: 130% 130%;
  -webkit-mask-position: 130% 130%;
}
.left-top-fade-mask.js-ani-on p {
  -webkit-animation: mask-animation 0.8s linear forwards;
          animation: mask-animation 0.8s linear forwards;
}

@-webkit-keyframes mask-animation {
  0% {
    mask-position: 130% 130%;
    -webkit-mask-position: 130% 130%;
  }
  100% {
    mask-position: 0 0;
    -webkit-mask-position: 0 0;
  }
}

@keyframes mask-animation {
  0% {
    mask-position: 130% 130%;
    -webkit-mask-position: 130% 130%;
  }
  100% {
    mask-position: 0 0;
    -webkit-mask-position: 0 0;
  }
}
.ani-list > * {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition-duration: 1.5s;
          transition-duration: 1.5s;
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
.ani-list.js-ani-on > * {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  -webkit-filter: blur(0);
          filter: blur(0);
}
.ani-list.js-ani-on > *:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.ani-list.js-ani-on > *:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.ani-list.js-ani-on > *:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.ani-list.js-ani-on > *:nth-child(4) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.ani-list.js-ani-on > *:nth-child(5) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.ani-list.js-ani-on > *:nth-child(6) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.ani-list.js-ani-on > *:nth-child(7) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.ani-list.js-ani-on > *:nth-child(8) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.ani-list.js-ani-on > *:nth-child(9) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.ani-list.js-ani-on > *:nth-child(10) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.ani-list.js-ani-on > *:nth-child(11) {
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}
.ani-list.js-ani-on > *:nth-child(12) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.js-ani.fadeIn, .js-ani.fadeInDown, .js-ani.fadeInDownBig, .js-ani.fadeInLeft, .js-ani.fadeInLeftBig, .js-ani.fadeInRight, .js-ani.fadeInRightBig, .js-ani.fadeInUp, .js-ani.fadeInUpBig, .js-ani.fadeInTopLeft, .js-ani.fadeInTopRight, .js-ani.fadeInBottomLeft, .js-ani.fadeInBottomRight {
  opacity: 0;
  -webkit-transition-duration: 0.7s, 0.3s;
          transition-duration: 0.7s, 0.3s;
}
.js-ani.filterBlur {
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transition: 1.2s;
  transition: 1.2s;
}
.js-ani.fadeInDown {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}
.js-ani.fadeInDownBig {
  -webkit-transform: translateY(-80px);
          transform: translateY(-80px);
}
.js-ani.fadeInLeft {
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}
.js-ani.fadeInLeftBig {
  -webkit-transform: translateX(-80px);
          transform: translateX(-80px);
}
.js-ani.fadeInRight {
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}
.js-ani.fadeInRightBig {
  -webkit-transform: translateX(80px);
          transform: translateX(80px);
}
.js-ani.fadeInUp {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.js-ani.fadeInUpBig {
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
}
.js-ani.fadeInTopLeft {
  -webkit-transform: translate(-30px, -30px);
          transform: translate(-30px, -30px);
}
.js-ani.fadeInTopRight {
  -webkit-transform: translate(30px, -30px);
          transform: translate(30px, -30px);
}
.js-ani.fadeInBottomLeft {
  -webkit-transform: translate(-30px, 30px);
          transform: translate(-30px, 30px);
}
.js-ani.fadeInBottomRight {
  -webkit-transform: translate(30px, 30px);
          transform: translate(30px, 30px);
}
.js-ani.js-ani-on.fadeIn, .js-ani.js-ani-on.fadeInDown, .js-ani.js-ani-on.fadeInDownBig, .js-ani.js-ani-on.fadeInLeft, .js-ani.js-ani-on.fadeInLeftBig, .js-ani.js-ani-on.fadeInRight, .js-ani.js-ani-on.fadeInRightBig, .js-ani.js-ani-on.fadeInUp, .js-ani.js-ani-on.fadeInUpBig, .js-ani.js-ani-on.fadeInTopLeft, .js-ani.js-ani-on.fadeInTopRight, .js-ani.js-ani-on.fadeInBottomLeft, .js-ani.js-ani-on.fadeInBottomRight {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.js-ani.js-ani-on.filterBlur {
  -webkit-filter: blur(0);
          filter: blur(0);
}

.js-ani-on.delay1 {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.js-ani-on.delay2 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.js-ani-on.delay3 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.js-ani-on.delay4 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.js-ani-on.delay5 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.js-ani-on.delay6 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.js-ani-on.delay7 {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.js-ani-on.delay8 {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.js-ani-on.delay9 {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.js-ani-on.delay10 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.js-ani-on.delay11 {
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}
.js-ani-on.delay12 {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
@media only screen and (max-width: 768px) {
  .js-ani-on.delay1, .js-ani-on.delay2, .js-ani-on.delay3, .js-ani-on.delay4, .js-ani-on.delay4, .js-ani-on.delay5, .js-ani-on.delay6, .js-ani-on.delay7, .js-ani-on.delay8, .js-ani-on.delay9, .js-ani-on.delay10, .js-ani-on.delay11, .js-ani-on.delay12 {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
}

body {
  font-family: var(--ff-base) !important;
  font-weight: 400;
}
body h1, body h2, body h3, body h4, body h5 {
  font-family: var(--ff-base);
  font-weight: 400;
}

.l-header__inner {
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .l-header__logo {
    padding-left: 2%;
  }
  .l-header__logo.c-logo img {
    width: auto;
    max-height: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .l-header__logo {
    padding-left: 0;
  }
}
.l-header--fixed.is-active .l-header__inner {
  height: 70px;
}
.l-header .p-global-nav {
  margin: 0;
}
.l-header .p-global-nav .menu-item-has-children > a > .p-global-nav__toggle::before {
  border-color: #fff;
}

.p-global-nav .sub-menu a {
  width: 250px;
}
@media screen and (max-width: 1199px) {
  .p-global-nav > ul > li + * {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}
@media screen and (min-width: 1200px) {
  .p-global-nav {
    height: auto;
    line-height: 1;
  }
  .p-global-nav > ul {
    height: auto;
  }
  .p-global-nav > ul > li {
    height: auto;
  }
  .p-global-nav > ul > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 700;
    white-space: nowrap;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .p-global-nav > ul > li > a::after {
    position: absolute;
    bottom: -2px;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    background: #fff;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .p-global-nav > ul > li > a:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

.p-footer-nav {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  border-bottom: none;
  line-height: 1.8;
}
.p-footer-nav li + li::before {
  content: none;
}
@media screen and (max-width: 767px) {
  .p-footer-nav {
    gap: 5px 20px;
  }
  .p-footer-nav li {
    width: calc(50% - 10px);
    line-height: 1.8;
    font-size: 12px;
  }
}

.l-contents .l-primary {
  width: 100%;
}
.l-contents .l-secondary {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-page-header__title {
    min-width: 260px;
    font-size: 18px;
  }
}
h2.style_h2 {
  color: var(--c-primary);
  font-size: 30px;
}
@media screen and (max-width: 800px) {
  h2.style_h2 {
    font-size: 20px;
  }
}

h3.style_h3 {
  padding: 10px 0;
  margin-top: 0;
  border-top: 2px solid var(--c-primary);
  border-bottom: 2px solid var(--c-primary);
  color: var(--c-primary);
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  h3.style_h3 {
    padding: 15px 0;
    font-size: 24px;
  }
}

.tcd-pb-col h3.style_h3:first-child {
  margin-top: 0;
}

h4.style_h4 {
  padding: 0 0;
  font-size: 18px;
}
h4.style_h4::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 5px;
  background-color: #000;
  border-radius: 50%;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
}
.bold {
  font-weight: bold;
}

@media (min-width: 576px) {
  .sm-only {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.more a {
  overflow: hidden;
  display: inline-block;
  position: relative;
  z-index: 1;
  min-width: 230px;
  padding: 15px 30px 20px 30px;
  border: 1px solid #fff;
  color: #fff !important;
  font-size: clamp(1.125rem, 1.0661764706rem + 0.2941176471vw, 1.375rem);
  line-height: 1;
  font-weight: 500;
  font-family: var(--ff-serif);
  font-weight: 400;
  letter-spacing: 1px;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
}
@media (max-width: 768px) {
  .more a {
    min-width: 200px;
    padding: 10px 20px 10px 20px;
  }
}
.more a::before, .more a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: -3px;
  right: 30px;
  margin: auto;
  vertical-align: middle;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.more a:hover {
  background-color: #fff;
  color: var(--c-primary) !important;
  text-decoration: none;
}
.more.more-s a {
  min-width: 0;
  padding: 7px 20px 7px 20px;
  font-size: 14px;
}
.more.more-s a::after {
  right: 20px;
  width: 4px;
  height: 4px;
}
@media (max-width: 768px) {
  .more.more-s a {
    padding: 5px 20px 5px 20px;
  }
}
.more.inverse a {
  border: 2px solid var(--c-primary);
  color: #000 !important;
}
.more.inverse a:hover {
  color: #fff !important;
  background: var(--c-primary);
}
.more.hpb a {
  background-color: #963059;
  border: 2px solid #963059;
}
.more.hpb a:hover {
  background: #fff;
  color: #963059 !important;
}

.home .p-cb {
  padding-top: 0;
}

.mv {
  overflow: hidden;
  position: relative;
}
.mv__copy p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10%;
  margin: auto;
  max-width: 50%;
  mask-image: linear-gradient(135deg, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(135deg, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0) 100%);
  mask-size: 250% 250%;
  -webkit-mask-size: 250% 250%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: 130% 130%;
  -webkit-mask-position: 130% 130%;
}
@media (max-width: 768px) {
  .mv__copy p {
    right: 5%;
    max-width: 70%;
  }
}
.js-ani-mv .mv__copy p:nth-of-type(1) {
  -webkit-animation: mask-animation 1.5s linear forwards;
          animation: mask-animation 1.5s linear forwards;
}
.js-ani-mv .mv__copy p:nth-of-type(2) {
  -webkit-animation: mask-animation 2.5s linear forwards;
          animation: mask-animation 2.5s linear forwards;
}

@keyframes mask-animation {
  0% {
    mask-position: 130% 130%;
    -webkit-mask-position: 130% 130%;
  }
  100% {
    mask-position: 0 0;
    -webkit-mask-position: 0 0;
  }
}
.top-concept {
  padding: min(15vw, 150px) 20px;
  background: var(--c-primary) url(/wp-content/uploads/bg_title001.png) no-repeat left bottom;
  background-size: contain;
}
.top-concept__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(3vw, 50px);
  max-width: 1480px;
  margin: auto;
}
@media (max-width: 768px) {
  .top-concept__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top-concept .img-box {
  max-width: 240px;
}
.top-concept__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(3vw, 50px);
  width: 47%;
  color: #fff;
}
.top-concept__left h2 {
  margin-bottom: 1em;
  font-size: clamp(1.375rem, -0.5rem + 2.5vw, 2.5rem);
  line-height: 1.5;
}
.top-concept__left .img-box {
  width: 240px;
}
.top-concept__left .text-box {
  width: calc(100% - 240px - min(3vw, 50px));
  font-size: clamp(1rem, 0.9705882353rem + 0.1470588235vw, 1.125rem);
  line-height: 1.8;
}
.top-concept__left .more {
  margin-top: min(4vw, 40px);
}
@media (max-width: 1200px) {
  .top-concept__left {
    width: 60%;
  }
  .top-concept__left h2 {
    margin-bottom: 1em;
    font-size: clamp(1.375rem, -0.625rem + 4.1666666667vw, 2.5rem);
  }
  .top-concept__left .img-box {
    display: none;
  }
  .top-concept__left .text-box {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .top-concept__left {
    width: 100%;
  }
}
.top-concept__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.top-menu {
  padding: min(15vw, 100px) 20px min(18vw, 180px);
  background: var(--c-primary) url(/wp-content/uploads/top_img005.jpg) no-repeat center top;
  background-size: cover;
  color: #fff;
  text-align: center;
}
.top-menu__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(8vw, 80px);
}
.top-menu__inner h2 {
  font-size: clamp(1.375rem, 1.1838235294rem + 0.9558823529vw, 2.1875rem);
  line-height: 1.4;
}
.top-menu__inner .text-box {
  max-width: 450px;
  margin: auto;
  font-size: clamp(1rem, 0.9705882353rem + 0.1470588235vw, 1.125rem);
  text-align: left;
  line-height: 1.7;
}

.title {
  margin: 0;
  font-size: clamp(2.5rem, 1.6176470588rem + 4.4117647059vw, 6.25rem);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 1;
}
.title::first-letter {
  font-style: italic;
}
.title.ls2 {
  letter-spacing: -0.11em;
}

.top-gallery {
  padding: min(10vw, 150px) 0 min(13vw, 150px);
  background-color: #000;
  color: #fff;
}
.top-gallery__inner {
  max-width: 1480px;
  padding: 0 20px;
  margin: auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.top-gallery__box {
  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;
}
@media (max-width: 768px) {
  .top-gallery__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px;
  }
}
.top-gallery .h-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.top-gallery .h-box .title {
  margin-bottom: 1em;
}
.top-gallery .h-box .sub-title {
  position: relative;
  top: -15px;
}
.top-gallery .more {
  position: relative;
  top: -15px;
}
.top-gallery .slide {
  margin: 0 min(2vw, 20px);
}

.link-box__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .link-box__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.link-box .img-box {
  width: 50%;
  padding: min(18vw, 180px) 20px;
  background: url(/wp-content/uploads/top_img006.jpg) no-repeat right center;
  background-size: cover;
  color: #fff;
  text-align: center;
}
.link-box .img-box .title {
  margin-bottom: 0.15em;
}
.link-box .img-box .more {
  margin-top: 2em;
}
.link-box .img-box:nth-of-type(2) {
  background: url(/wp-content/uploads/top_img007.jpg) no-repeat center center;
  background-size: cover;
}
@media (max-width: 768px) {
  .link-box .img-box {
    width: 100%;
  }
}

.mk-post01 {
  position: relative;
  padding: min(10vw, 100px) 15px min(10vw, 100px) 15px;
}
.mk-post01__inner {
  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: 1480px;
  margin: auto;
}
.mk-post01__box {
  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;
}
@media (max-width: 768px) {
  .mk-post01__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px;
  }
}
.mk-post01 .h-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 20px;
  margin-bottom: 1em;
}
.mk-post01 .h-box .title {
  margin-bottom: 0.1em;
}
.mk-post01 .h-box .sub-title {
  position: relative;
  top: -30px;
}
@media (max-width: 768px) {
  .mk-post01 .h-box {
    margin-bottom: 0.5em;
  }
  .mk-post01 .h-box .sub-title {
    top: -10px;
  }
}
.mk-post01 .more {
  position: relative;
}
@media (max-width: 767px) {
  .mk-post01 .news-box {
    margin-bottom: 20px;
  }
}
.mk-post01 .news-box ul {
  margin-bottom: 0;
}
.mk-post01 .news-box li {
  list-style-type: none;
}
.mk-post01 .news-box li + li {
  margin-top: 5px;
}
.mk-post01 .news-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  padding: 30px 40px 30px 20px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  line-height: 1.4;
  -webkit-transition: all, 0.6s;
  transition: all, 0.6s;
}
.mk-post01 .news-box a span.data {
  display: block;
  display: inline-block;
  margin-right: 20px;
}
.mk-post01 .news-box a:hover {
  background-color: #5c3915;
  color: #fff;
}
.mk-post01 .news-box a:hover::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
@media (max-width: 767px) {
  .mk-post01 .news-box a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 15px 30px 15px 15px;
  }
  .mk-post01 .news-box a span.data {
    font-size: 12px;
  }
}
.mk-post01 .news-box a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 7px;
  height: 7px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.top-insta {
  padding: min(8vw, 100px) 20px;
  background-color: var(--c-primary);
  background-repeat: no-repeat;
  background-size: cover;
}
.top-insta__inner {
  max-width: 1200px;
  margin: auto;
}
.top-insta .title {
  color: #fff;
  text-align: right;
}

.footer-contact {
  padding: min(10vw, 100px) 15px;
  background-color: #000;
  color: #fff;
}
.footer-contact .title a {
  display: table;
  margin: auto;
  position: relative;
  padding-bottom: 0.2em;
  margin-bottom: 0.2em;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer-contact .title a::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 4px;
  background: #fff;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.footer-contact .title a span {
  font-style: italic;
}
.footer-contact .title a:hover {
  opacity: 0.9;
}
.footer-contact .title a:hover::after {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}
@media (max-width: 768px) {
  .footer-contact .title a::after {
    height: 2px;
  }
}
.footer-contact__tel {
  font-size: 20px;
  text-align: center;
}
.footer-contact__tel a {
  margin-left: 5px;
  color: #fff;
  font-size: 28px;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .footer-contact__tel {
    font-size: 16px;
  }
  .footer-contact__tel a {
    font-size: 22px;
  }
}

.l-footer__inner {
  background: url(/wp-content/uploads/bg_footer.png) no-repeat;
  background-size: cover;
}
.l-footer__inner .p-info {
  background: transparent;
  border-bottom: none;
}
.l-footer__inner .p-info__address {
  margin-bottom: 5px;
  color: #fff;
  font-size: 16px;
  text-shadow: 0 0 5px #000;
}
.l-footer__inner .p-footer-nav {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10px;
  background: rgba(33, 19, 3, 0.63);
  border-bottom: none;
  line-height: 2;
}
@media (max-width: 768px) {
  .l-footer__inner .p-footer-nav {
    padding: 30px 20px;
  }
}
.l-footer__inner .p-footer-nav a:hover {
  color: #fff;
  text-decoration: underline;
}
.l-footer__inner .p-social-nav__item {
  font-size: 35px;
}
.l-footer__inner .p-social-nav__item a {
  color: #fff;
}
.l-footer__inner .p-social-nav__item a:hover {
  opacity: 0.8;
}
.l-footer__inner .footer-bnr {
  margin-top: 20px;
}
.l-footer__inner .footer-bnr a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-footer__inner .footer-bnr a:hover {
  opacity: 0.8;
}
/*# sourceMappingURL=custom.css.map */