@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-old-mincho-regular {
  font-family: "Zen Old Mincho", serif;
}

:root {
  --c-base: #fff;
  --c-primary: #000;
  --c-primary-rgb: 51,26,7;
  --c-secondary: #BF0808;
  --c-tertiary: #90CA1B;
  --c-accent: #ffd511;
  --c-gra: linear-gradient(90deg, #a4c217, #64cc33);
  --c-text: #444;
  --c-text-reversal: #fff;
  --c-body-bg: #eee;
  --c-hover: var(--c-primary);
  --space-content: clamp(20px, 6vw, 70px);
  --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-gothic);
  --ff-gothic: "Zen Kaku Gothic New","游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  --ff-midashi: 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);
}

.fadeInRotate {
  -webkit-transform: scale(0.8) rotate(-10deg) translateY(80px);
          transform: scale(0.8) rotate(-10deg) translateY(80px);
  opacity: 0;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.fadeInRotate.js-ani-on {
  -webkit-transform: scale(1) rotate(0deg) translateY(0);
          transform: scale(1) rotate(0deg) translateY(0);
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
  opacity: 1;
}

.cover-slide {
  position: relative;
  overflow: hidden;
}
.cover-slide::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #eaebe6;
  opacity: 0;
}
.cover-slide.js-ani-on::after {
  opacity: 1;
  -webkit-animation-name: kf-cover-slide;
          animation-name: kf-cover-slide;
  -webkit-animation-duration: 1.6s;
          animation-duration: 1.6s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes kf-cover-slide {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.1% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes kf-cover-slide {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.1% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
.img-zoom {
  opacity: 0;
}
.js-ani-on .img-zoom {
  opacity: 1;
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
  -webkit-animation-name: kf-img-show;
          animation-name: kf-img-show;
  -webkit-animation-duration: 1.6s;
          animation-duration: 1.6s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
}

@-webkit-keyframes kf-img-show {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  50.1% {
    opacity: 1;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  100% {
    opacity: 1;
  }
}

@keyframes kf-img-show {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  50.1% {
    opacity: 1;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  100% {
    opacity: 1;
  }
}
a .hover-darken::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
a:hover .hover-darken::before {
  background-color: rgba(0, 0, 0, 0.4);
}
a .hover-img-zoom {
  overflow: hidden;
}
a:hover .hover-img-zoom img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.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: 1s, 0.3s;
          transition-duration: 1s, 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(40px);
          transform: translateY(40px);
}
.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;
  }
}

.p-plan__meta {
  display: none;
}

.p-page-header__upper {
  position: relative;
}
.p-page-header__upper::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
}

#page_type5_c {
  position: relative;
}
#page_type5_c::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
}
#page_type5_c .p-visual__content {
  z-index: 1;
}

.l-primary {
  width: 100%;
}

.l-secondary {
  display: none;
}

.p-footer-slider {
  display: none;
}

.l-footer {
  border-top: 1px solid #F4F1ED;
}

body:not(.home) .p-recommended-plan {
  display: none;
}

h2.style_h2,
h2.styled_h2 {
  color: var(--c-primary);
  font-size: 30px;
}
@media screen and (max-width: 800px) {
  h2.style_h2,
  h2.styled_h2 {
    font-size: 20px;
  }
}

h3.style_h3,
h3.styled_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,
  h3.styled_h3 {
    padding: 15px 0;
    font-size: 24px;
  }
}

h4.style_h4,
h4.styled_h4 {
  padding: 0 0;
  font-size: 18px;
}
h4.style_h4::before,
h4.styled_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 (max-width: 992px) {
  .lg-only {
    display: none !important;
  }
}
@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;
}

.note-box {
  margin-bottom: min(4vw, 40px);
}
.note-box p {
  margin-bottom: 0;
  line-height: 1.5;
}

.note {
  position: relative;
  padding-left: 1.3em;
}
.note + .note {
  margin-top: 8px;
}
.note::before {
  content: "※";
  position: absolute;
  left: 0;
  margin: 0;
  top: 0.4px;
}

@media only screen and (max-width: 767px) {
  .tcd-pb-row.row3 .tcd-pb-row-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.more a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding: 20px 30px 20px 30px;
  background-color: var(--c-secondary);
  border: 1px solid #fff;
  text-decoration: none;
  color: #fff;
  font-size: clamp(0.875rem, 0.8455882353rem + 0.1470588235vw, 1rem);
  font-family: var(--ff-serif);
  line-height: 1;
  letter-spacing: 1px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media (max-width: 768px) {
  .more a {
    padding: 15px 30px 15px 30px;
  }
}
.more a:hover {
  background-color: var(--c-primary);
  color: #fff;
}
.more a:hover::before {
  background-color: #fff;
}
.more a:hover::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.more.inverse a {
  color: #fff;
  background-color: var(--c-secondary);
  border: 1px solid var(--c-secondary);
}
.more.inverse a::before {
  background-color: #fff;
}
.more.inverse a::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.more.inverse a:hover {
  background-color: #fff;
  color: var(--c-secondary);
}
.more.inverse a:hover::before {
  background-color: var(--c-secondary);
}
.more.inverse a:hover::after {
  border-top: 1px solid var(--c-secondary);
  border-right: 1px solid var(--c-secondary);
}

.more2 a {
  display: block;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0 8px 0;
  text-decoration: none;
  color: #fff;
  font-size: clamp(0.875rem, 0.8455882353rem + 0.1470588235vw, 1rem);
  line-height: 1;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.more2 a::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.more2 a span {
  padding-right: 40px;
  line-height: 1.4;
}
.more2 a span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 16px;
  height: 1px;
  margin: auto;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.more2 a span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
  margin: auto;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.more2 a span {
  display: block;
  position: relative;
}
.more2 a:hover {
  background-color: var(--c-primary);
  color: #fff;
}
.more2 a:hover::after {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.more2 a:hover span::before {
  background-color: #fff;
}
.more2 a:hover span::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.pc-text-center {
  text-align: center;
}
@media (max-width: 768px) {
  .pc-text-center {
    text-align: left;
  }
}

.text-box p {
  line-height: 1.7;
}

.t-gra {
  background: var(--c-gra);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.l-header__inner {
  width: 100%;
  height: 90px;
  max-width: none;
  padding: 0 min(2vw, 50px);
}
@media (max-width: 768px) {
  .l-header__inner {
    padding: 0 20px;
  }
}
@media (max-width: 576px) {
  .l-header__inner {
    padding: 0 0 0 10px;
  }
}
.l-header__logo {
  height: auto;
  margin: 10px 0;
  padding: 0;
}
.l-header .p-global-nav {
  margin-left: auto;
  margin-right: min(3vw, 30px);
}
.l-header .header-contact a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
  padding: 18px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border: 1px solid #fff;
}
.l-header .header-contact a::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background: #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
}
.l-header .header-contact a span {
  position: relative;
  padding-left: 20px;
  padding-right: 15px;
}
.l-header .header-contact a span::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 5px);
  width: 16px;
  height: 12px;
  background-color: #fff;
  -webkit-mask-image: url("/wp-content/uploads/parts/i_mail2.svg");
          mask-image: url("/wp-content/uploads/parts/i_mail2.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.l-header .header-contact a span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 4px;
  height: 4px;
  margin: auto;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.l-header .header-contact a:hover {
  color: var(--c-primary);
}
.l-header .header-contact a:hover::before {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.l-header .header-contact a:hover span::before {
  background-color: var(--c-primary);
}
.l-header .header-contact a:hover span::after {
  border-top: 1px solid var(--c-primary);
  border-right: 1px solid var(--c-primary);
}
@media only screen and (max-width: 991px) {
  .l-header .header-contact {
    position: absolute;
    top: 0;
    right: 60px;
  }
  .l-header .header-contact a {
    margin-top: 10px;
    padding: 0 20px;
    height: 40px;
  }
}
@media (max-width: 576px) {
  .l-header .header-contact a {
    position: relative;
    display: block;
    border-radius: 5px;
  }
  .l-header .header-contact a::before {
    content: "";
    display: table;
    position: absolute;
    left: calc(50% - 9px);
    top: calc(50% - 15px);
    right: auto;
    z-index: 1;
    bottom: auto;
    border-radius: 0;
    width: 18px;
    height: 18px;
    background-color: #fff;
    -webkit-mask-image: url("/wp-content/uploads/parts/i_mail2.svg");
            mask-image: url("/wp-content/uploads/parts/i_mail2.svg");
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  .l-header .header-contact a::after {
    content: "Contact";
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    color: #fff;
    font-size: 9px;
    text-align: center;
  }
  .l-header .header-contact a span {
    display: none;
  }
}
.l-header--fixed.is-active {
  background-color: #000;
  height: auto;
}
.l-header--fixed.is-active .l-header__inner {
  height: 70px;
}
@media (max-width: 576px) {
  .l-header--fixed.is-active .l-header__inner {
    height: 50px;
  }
  .l-header--fixed.is-active .l-header__inner .l-header__logo img {
    max-height: 42px;
  }
  .l-header--fixed.is-active .l-header__inner .p-menu-btn {
    line-height: 42px;
  }
  .l-header--fixed.is-active .l-header__inner .p-global-nav {
    top: 50px;
  }
}
.l-header--fixed.is-active .header-contact a {
  border: 2px solid #fff;
}
@media (max-width: 576px) {
  .l-header--fixed.is-active .header-contact a {
    margin-top: 0;
  }
}

.p-global-nav {
  height: auto;
}
.p-global-nav .menu {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 1200px) {
  .p-global-nav > ul > li > a {
    padding-right: 10px;
    padding-left: 10px;
  }
}
.p-global-nav a {
  font-weight: 700;
}
.p-global-nav a span {
  font-size: 16px;
}
.p-index-slider .slick-slide {
  height: 100vh;
}

.mv {
  position: relative;
}
.mv__copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: min(3vw, 35px);
  position: absolute;
  z-index: 2;
  top: 30%;
  right: 20%;
  margin: auto;
}
@media (max-width: 576px) {
  .mv__copy {
    right: 10%;
  }
}
.mv__copy p {
  position: relative;
  padding: 0;
  margin: 0;
  color: #fff;
  font-size: clamp(1.625rem, 1.4191176471rem + 1.0294117647vw, 2.5rem);
  font-weight: 500;
  font-family: var(--ff-serif);
  letter-spacing: 5px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.mv__copy p .char {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateX(-10px) rotate(-5deg);
          transform: translateX(-10px) rotate(-5deg);
  -webkit-animation: none;
          animation: none;
}
.mv__copy .yoko {
  position: absolute;
  bottom: -40%;
  right: -20%;
  font-size: clamp(1rem, 0.9411764706rem + 0.2941176471vw, 1.25rem);
  font-weight: 400;
  font-family: var(--ff-serif);
  letter-spacing: 2px;
  white-space: nowrap;
  -webkit-writing-mode: horizontal-tb !important;
      -ms-writing-mode: lr-tb !important;
          writing-mode: horizontal-tb !important;
  opacity: 0;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
}
@media (max-width: 768px) {
  .mv__copy .yoko {
    bottom: -30%;
    right: 0;
  }
}
@media (max-width: 768px) {
  .mv__copy .yoko {
    text-align: right;
  }
}
.mv__copy .yoko .char {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateY(10px) scale(0.9);
          transform: translateY(10px) scale(0.9);
}
.mv__copy.js-ani-on p:not(.yoko) .char {
  -webkit-animation: waCharFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: waCharFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.mv__copy.js-ani-on p:not(.yoko) .char:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.mv__copy.js-ani-on p:not(.yoko) .char:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.mv__copy.js-ani-on p:not(.yoko) .char:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.mv__copy.js-ani-on p:not(.yoko) .char:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.mv__copy.js-ani-on p:not(.yoko) .char:nth-child(5) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.mv__copy.js-ani-on p:not(.yoko) .char:nth-child(6) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.mv__copy.js-ani-on p:not(.yoko) .char:nth-child(7) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.mv__copy.js-ani-on p:not(.yoko) .char:nth-child(8) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.mv__copy.js-ani-on p:not(.yoko) .char:nth-child(9) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.mv__copy.js-ani-on p:not(.yoko) .char:nth-child(10) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.mv__copy.js-ani-on p:not(.yoko) .char:nth-child(11) {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}
.mv__copy.js-ani-on p:not(.yoko) .char:nth-child(12) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.mv__copy.js-ani-on p:not(.yoko) .char:nth-child(13) {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}
.mv__copy.js-ani-on p:not(.yoko) .char:nth-child(14) {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.mv__copy.js-ani-on p:not(.yoko) .char:nth-child(15) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.mv__copy.js-ani-on p:not(.yoko) .char:nth-child(16) {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}
.mv__copy.js-ani-on p:not(.yoko) .char:nth-child(17) {
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}
.mv__copy.js-ani-on p:not(.yoko) .char:nth-child(18) {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
.mv__copy.js-ani-on p:not(.yoko) .char:nth-child(19) {
  -webkit-animation-delay: 1.9s;
          animation-delay: 1.9s;
}
.mv__copy.js-ani-on p:not(.yoko) .char:nth-child(20) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.mv__copy.js-ani-on p:nth-child(2):not(.yoko) .char:nth-child(1) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.mv__copy.js-ani-on p:nth-child(2):not(.yoko) .char:nth-child(2) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.mv__copy.js-ani-on p:nth-child(2):not(.yoko) .char:nth-child(3) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.mv__copy.js-ani-on p:nth-child(2):not(.yoko) .char:nth-child(4) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.mv__copy.js-ani-on p:nth-child(2):not(.yoko) .char:nth-child(5) {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}
.mv__copy.js-ani-on p:nth-child(2):not(.yoko) .char:nth-child(6) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.mv__copy.js-ani-on p:nth-child(2):not(.yoko) .char:nth-child(7) {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}
.mv__copy.js-ani-on p:nth-child(2):not(.yoko) .char:nth-child(8) {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.mv__copy.js-ani-on p:nth-child(2):not(.yoko) .char:nth-child(9) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.mv__copy.js-ani-on p:nth-child(2):not(.yoko) .char:nth-child(10) {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}
.mv__copy.js-ani-on p:nth-child(2):not(.yoko) .char:nth-child(11) {
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}
.mv__copy.js-ani-on p:nth-child(2):not(.yoko) .char:nth-child(12) {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
.mv__copy.js-ani-on p:nth-child(2):not(.yoko) .char:nth-child(13) {
  -webkit-animation-delay: 1.9s;
          animation-delay: 1.9s;
}
.mv__copy.js-ani-on p:nth-child(2):not(.yoko) .char:nth-child(14) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.mv__copy.js-ani-on p:nth-child(2):not(.yoko) .char:nth-child(15) {
  -webkit-animation-delay: 2.1s;
          animation-delay: 2.1s;
}
.mv__copy.js-ani-on p:nth-child(2):not(.yoko) .char:nth-child(16) {
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}
.mv__copy.js-ani-on p:nth-child(2):not(.yoko) .char:nth-child(17) {
  -webkit-animation-delay: 2.3s;
          animation-delay: 2.3s;
}
.mv__copy.js-ani-on p:nth-child(2):not(.yoko) .char:nth-child(18) {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}
.mv__copy.js-ani-on p:nth-child(2):not(.yoko) .char:nth-child(19) {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}
.mv__copy.js-ani-on p:nth-child(2):not(.yoko) .char:nth-child(20) {
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
}
.mv__copy.js-ani-on .yoko {
  -webkit-animation: yokoFadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s forwards;
          animation: yokoFadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s forwards;
}
.mv__copy.js-ani-on .yoko .char {
  -webkit-animation: yokoCharFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: yokoCharFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.mv__copy.js-ani-on .yoko .char:nth-child(1) {
  -webkit-animation-delay: 1.53s;
          animation-delay: 1.53s;
}
.mv__copy.js-ani-on .yoko .char:nth-child(2) {
  -webkit-animation-delay: 1.56s;
          animation-delay: 1.56s;
}
.mv__copy.js-ani-on .yoko .char:nth-child(3) {
  -webkit-animation-delay: 1.59s;
          animation-delay: 1.59s;
}
.mv__copy.js-ani-on .yoko .char:nth-child(4) {
  -webkit-animation-delay: 1.62s;
          animation-delay: 1.62s;
}
.mv__copy.js-ani-on .yoko .char:nth-child(5) {
  -webkit-animation-delay: 1.65s;
          animation-delay: 1.65s;
}
.mv__copy.js-ani-on .yoko .char:nth-child(6) {
  -webkit-animation-delay: 1.68s;
          animation-delay: 1.68s;
}
.mv__copy.js-ani-on .yoko .char:nth-child(7) {
  -webkit-animation-delay: 1.71s;
          animation-delay: 1.71s;
}
.mv__copy.js-ani-on .yoko .char:nth-child(8) {
  -webkit-animation-delay: 1.74s;
          animation-delay: 1.74s;
}
.mv__copy.js-ani-on .yoko .char:nth-child(9) {
  -webkit-animation-delay: 1.77s;
          animation-delay: 1.77s;
}
.mv__copy.js-ani-on .yoko .char:nth-child(10) {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
.mv__copy.js-ani-on .yoko .char:nth-child(11) {
  -webkit-animation-delay: 1.83s;
          animation-delay: 1.83s;
}
.mv__copy.js-ani-on .yoko .char:nth-child(12) {
  -webkit-animation-delay: 1.86s;
          animation-delay: 1.86s;
}
.mv__copy.js-ani-on .yoko .char:nth-child(13) {
  -webkit-animation-delay: 1.89s;
          animation-delay: 1.89s;
}
.mv__copy.js-ani-on .yoko .char:nth-child(14) {
  -webkit-animation-delay: 1.92s;
          animation-delay: 1.92s;
}
.mv__copy.js-ani-on .yoko .char:nth-child(15) {
  -webkit-animation-delay: 1.95s;
          animation-delay: 1.95s;
}
.mv__copy.js-ani-on .yoko .char:nth-child(16) {
  -webkit-animation-delay: 1.98s;
          animation-delay: 1.98s;
}
.mv__copy.js-ani-on .yoko .char:nth-child(17) {
  -webkit-animation-delay: 2.01s;
          animation-delay: 2.01s;
}
.mv__copy.js-ani-on .yoko .char:nth-child(18) {
  -webkit-animation-delay: 2.04s;
          animation-delay: 2.04s;
}
.mv__copy.js-ani-on .yoko .char:nth-child(19) {
  -webkit-animation-delay: 2.07s;
          animation-delay: 2.07s;
}
.mv__copy.js-ani-on .yoko .char:nth-child(20) {
  -webkit-animation-delay: 2.1s;
          animation-delay: 2.1s;
}
.mv__copy.js-ani-on .yoko .char:nth-child(21) {
  -webkit-animation-delay: 2.13s;
          animation-delay: 2.13s;
}
.mv__copy.js-ani-on .yoko .char:nth-child(22) {
  -webkit-animation-delay: 2.16s;
          animation-delay: 2.16s;
}
.mv__copy.js-ani-on .yoko .char:nth-child(23) {
  -webkit-animation-delay: 2.19s;
          animation-delay: 2.19s;
}
.mv__copy.js-ani-on .yoko .char:nth-child(24) {
  -webkit-animation-delay: 2.22s;
          animation-delay: 2.22s;
}
.mv__copy.js-ani-on .yoko .char:nth-child(25) {
  -webkit-animation-delay: 2.25s;
          animation-delay: 2.25s;
}
.mv__copy.js-ani-on .yoko .char:nth-child(26) {
  -webkit-animation-delay: 2.28s;
          animation-delay: 2.28s;
}
.mv__copy.js-ani-on .yoko .char:nth-child(27) {
  -webkit-animation-delay: 2.31s;
          animation-delay: 2.31s;
}
.mv__copy.js-ani-on .yoko .char:nth-child(28) {
  -webkit-animation-delay: 2.34s;
          animation-delay: 2.34s;
}
.mv__copy.js-ani-on .yoko .char:nth-child(29) {
  -webkit-animation-delay: 2.37s;
          animation-delay: 2.37s;
}
.mv__copy.js-ani-on .yoko .char:nth-child(30) {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}

@-webkit-keyframes waCharFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10px) rotate(-5deg) scale(0.7);
            transform: translateX(-10px) rotate(-5deg) scale(0.7);
    -webkit-filter: blur(3px);
            filter: blur(3px);
  }
  50% {
    opacity: 0.7;
    -webkit-transform: translateX(-2px) rotate(-1deg) scale(0.95);
            transform: translateX(-2px) rotate(-1deg) scale(0.95);
    -webkit-filter: blur(1px);
            filter: blur(1px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) rotate(0) scale(1);
            transform: translateX(0) rotate(0) scale(1);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes waCharFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10px) rotate(-5deg) scale(0.7);
            transform: translateX(-10px) rotate(-5deg) scale(0.7);
    -webkit-filter: blur(3px);
            filter: blur(3px);
  }
  50% {
    opacity: 0.7;
    -webkit-transform: translateX(-2px) rotate(-1deg) scale(0.95);
            transform: translateX(-2px) rotate(-1deg) scale(0.95);
    -webkit-filter: blur(1px);
            filter: blur(1px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) rotate(0) scale(1);
            transform: translateX(0) rotate(0) scale(1);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@-webkit-keyframes yokoFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes yokoFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes yokoCharFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px) scale(0.9);
            transform: translateY(10px) scale(0.9);
    -webkit-filter: blur(2px);
            filter: blur(2px);
  }
  70% {
    opacity: 0.8;
    -webkit-transform: translateY(-1px) scale(1.02);
            transform: translateY(-1px) scale(1.02);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes yokoCharFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px) scale(0.9);
            transform: translateY(10px) scale(0.9);
    -webkit-filter: blur(2px);
            filter: blur(2px);
  }
  70% {
    opacity: 0.8;
    -webkit-transform: translateY(-1px) scale(1.02);
            transform: translateY(-1px) scale(1.02);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
.top-about {
  padding: min(15vw, 150px) var(--space-content) 0;
  background: url(/wp-content/uploads/bg001.webp) no-repeat center bottom;
  background-size: cover;
  color: #444;
}
.top-about .h-box {
  margin-bottom: min(6vw, 60px);
  text-align: center;
}
.top-about .sub-title {
  margin-bottom: min(5vw, 30px);
  font-size: clamp(1.125rem, 1.0367647059rem + 0.4411764706vw, 1.5rem);
  font-family: var(--ff-serif);
}
.top-about h2 {
  margin-bottom: 0;
  color: #000;
  font-size: clamp(1.375rem, 1.1838235294rem + 0.9558823529vw, 2.1875rem);
  line-height: 1.4;
}
@media (max-width: 768px) {
  .top-about h2 {
    line-height: 2;
  }
}
.top-about__inner {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1000px;
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}
@media (max-width: 768px) {
  .top-about__inner {
    -ms-writing-mode: initial;
    -webkit-writing-mode: initial;
            writing-mode: initial;
  }
}
.top-about .text-box {
  font-size: clamp(1rem, 0.9705882353rem + 0.1470588235vw, 1.125rem);
}
.top-about .text-box p {
  height: 520px;
  padding-top: 20px;
  padding-bottom: 5px;
  letter-spacing: 0.3em;
  line-height: 380%;
  background: linear-gradient(to left, #888 1px, transparent 1px) transparent;
  background-size: 3.8em auto;
  border-left: 1px solid #888;
  border-right: 1px solid rgba(136, 136, 136, 0.1);
  text-shadow: #fff 2px 0px 2px, #fff -2px 0px 2px, #fff 0px -2px 2px, #fff -2px 0px 2px, #fff 2px 2px 2px, #fff -2px 2px 2px, #fff 2px -2px 2px, #fff -2px -2px 2px, #fff 1px 2px 2px, #fff -1px 2px 2px, #fff 1px -2px 2px, #fff -1px -2px 2px, #fff 2px 1px 2px, #fff -2px 1px 2px, #fff 2px -1px 2px, #fff -2px -1px 2px, #fff 1px 1px 2px, #fff -1px 1px 2px, #fff 1px -1px 2px, #fff -1px -1px 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 992px) {
  .top-about .text-box p {
    height: auto;
    line-height: 280%;
    background-size: 2.8em auto;
  }
}
@media (max-width: 768px) {
  .top-about .text-box p {
    padding-top: 0;
    border-left: none;
    border-right: none;
    background: none;
    line-height: 2;
    letter-spacing: 0.1em;
  }
}
.top-about__btn {
  position: relative;
  z-index: 1;
  margin-top: calc(min(8vw, 80px) * -1);
  text-align: center;
}
@media (max-width: 768px) {
  .top-about__btn {
    margin-top: min(3vw, 30px);
  }
}
.top-about__btn .more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

.bg001 {
  margin-top: calc(min(8vw, 80px) * -1);
}
.bg001 img {
  width: 100%;
}

.top-service * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.top-service {
  padding: min(20vw, 200px) 0;
  background-image: url(/wp-content/uploads/bg002.webp);
  background-size: cover;
}
@media (max-width: 768px) {
  .top-service {
    padding-top: min(4vw, 40px);
    padding-bottom: min(4vw, 40px);
  }
}
.top-service__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top-service__inner:nth-of-type(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .top-service__inner:nth-of-type(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top-service__inner:nth-of-type(2) .top-service__text {
  margin-right: auto;
  margin-left: 0;
}
@media (max-width: 768px) {
  .top-service__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top-service__img {
  width: 50%;
  margin: 0;
}
@media (max-width: 768px) {
  .top-service__img {
    padding: 20px 20px;
    width: 100%;
  }
}
.top-service__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-service__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  padding: min(6vw, 100px) min(5vw, 80px);
}
@media (max-width: 768px) {
  .top-service__box {
    width: 100%;
    max-width: none;
    padding: min(5vw, 50px) var(--space-content);
  }
}
.top-service__text {
  max-width: 520px;
  margin-left: auto;
}
@media (max-width: 768px) {
  .top-service__text {
    max-width: none;
  }
}
.top-service__text h3 {
  margin-bottom: 1.2em;
  color: #000;
  font-size: clamp(1.375rem, 1.1838235294rem + 0.9558823529vw, 2.1875rem);
  line-height: 1.4;
}
.top-service__text h3::after {
  content: "";
  display: block;
  margin-top: min(3vw, 30px);
  width: 30%;
  height: 1px;
  background: #888;
}
.top-service__text h3 span {
  display: block;
  margin-bottom: 10px;
  color: #444;
  font-size: clamp(1rem, 0.9411764706rem + 0.2941176471vw, 1.25rem);
}
.top-service__text h4 {
  color: var(--c-primary);
  font-weight: 500;
  font-size: clamp(1.125rem, 1.0955882353rem + 0.1470588235vw, 1.25rem);
}
.top-service .more {
  margin-top: min(6vw, 40px);
}

.top-online {
  padding: min(20vw, 200px) var(--space-content);
  background: url(/wp-content/uploads/top_img006.webp);
  background-size: cover;
  color: #fff;
  text-align: center;
}
.top-online__inner {
  max-width: 500px;
  margin: auto;
}
.top-online__inner h2 {
  font-size: clamp(1.375rem, 1.1838235294rem + 0.9558823529vw, 2.1875rem);
}
.top-online__inner h2 span {
  display: block;
  margin-top: min(4vw, 30px);
  font-size: clamp(1rem, 0.9411764706rem + 0.2941176471vw, 1.25rem);
}
@media (max-width: 576px) {
  .top-online__inner .text-box {
    text-align: left;
  }
}
.top-online__inner .more {
  margin-top: min(4vw, 40px);
}
.top-online__inner .more a {
  margin: auto;
}

.top-wrap {
  padding: min(16vw, 100px) var(--space-content) min(32vw, 160px);
  background: url(/wp-content/uploads/bg003.webp);
}

.top-faq {
  margin-bottom: min(10vw, 100px);
}
.top-faq__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1200px;
  margin: auto;
}
@media (max-width: 768px) {
  .top-faq__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top-faq__img {
  position: relative;
  width: 50%;
  margin: 0 0;
}
@media (max-width: 768px) {
  .top-faq__img {
    width: 100%;
  }
}
.top-faq__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-faq__img .sub-title {
  position: absolute;
  top: 50%;
  right: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px;
  margin: 0;
  background-color: #000;
  border: 1px solid #fff;
  color: #fff;
  font-size: clamp(1.375rem, 1.1102941176rem + 1.3235294118vw, 2.5rem);
  font-family: var(--ff-serif);
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  text-orientation: upright;
}
@media (max-width: 768px) {
  .top-faq__img .sub-title {
    top: auto;
    bottom: 0;
    left: 0;
    margin: auto;
    -webkit-transform: translate(0, 50%);
            transform: translate(0, 50%);
  }
}
.top-faq__text {
  width: 50%;
  padding: min(6vw, 60px) min(6vw, 60px) min(6vw, 60px) min(8vw, 80px);
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .top-faq__text {
    width: 100%;
    padding: min(16vw, 80px) min(6vw, 60px) min(8vw, 60px) min(6vw, 60px);
  }
}
.top-faq__text h2 {
  margin-bottom: 1.2em;
  font-size: clamp(1.375rem, 1.1838235294rem + 0.9558823529vw, 2.1875rem);
  line-height: 1.4;
}
.top-faq__text h2::after {
  content: "";
  display: block;
  margin-top: min(3vw, 30px);
  width: 30%;
  height: 1px;
  background: #888;
}
@media (max-width: 768px) {
  .top-faq__text h2 {
    line-height: 2;
  }
}
.top-faq .more a {
  margin: min(4vw, 40px) 0 0;
}
@media (max-width: 768px) {
  .top-faq .more a {
    margin: min(6vw, 40px) auto 0;
  }
}

.top-shop__inner {
  max-width: 1200px;
  margin: auto;
}
.top-shop__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top-shop__img img {
  width: 33.3333333333%;
}
.top-shop__text {
  padding: min(16vw, 100px) var(--space-content);
  background-color: #000;
  color: #fff;
  text-align: center;
}
.top-shop__text h2 {
  margin-bottom: 1.2em;
  font-size: clamp(1.25rem, 1.0294117647rem + 1.1029411765vw, 2.1875rem);
  line-height: 1.4;
}
@media (max-width: 768px) {
  .top-shop__text h2 {
    line-height: 2;
  }
}
.top-shop .more a {
  margin: min(8vw, 60px) auto 0;
}

.mk-post01 {
  padding: 0 var(--space-content);
  background-color: #F4F4F4;
}
.mk-post01__inner {
  max-width: 1200px;
  padding: 0 0 min(8vw, 80px);
  margin: auto;
}
.mk-post01__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin-bottom: min(6vw, 60px);
}
@media (max-width: 576px) {
  .mk-post01__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.mk-post01 h2 {
  padding: 20px 40px;
  margin: auto;
  background-color: #000;
  color: #fff;
  font-size: clamp(1.125rem, 1.0220588235rem + 0.5147058824vw, 1.5625rem);
  text-align: center;
  line-height: 1.4;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 1s;
  transition: all 1s;
  opacity: 0;
}
.mk-post01 h2.js-ani-on {
  opacity: 1;
}
.mk-post01 .more a {
  margin: min(6vw, 60px) auto 0;
}
.mk-post01 .news-box {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.mk-post01 .news-box li {
  list-style-type: none;
  line-height: 1.7;
}
.mk-post01 .news-box li:first-child a {
  border-top: 1px solid #ddd;
}
.mk-post01 .news-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  padding: 15px 30px 15px 10px;
  border-bottom: 1px solid #ddd;
  text-decoration: none;
  -webkit-transition: all, 0.6s;
  transition: all, 0.6s;
}
.mk-post01 .news-box a span.data {
  display: block;
  margin-right: 20px;
}
@media (min-width: 768px) {
  .mk-post01 .news-box a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .mk-post01 .news-box a span.data {
    display: inline-block;
  }
}
.mk-post01 .news-box a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 7px;
  height: 7px;
  margin: auto;
  border-top: 1px solid var(--c-primary);
  border-right: 1px solid var(--c-primary);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mk-post01 .news-box a:hover {
  background-color: rgba(55, 22, 8, 0.1);
}
@media (min-width: 576px) {
  .mk-post01 .news-box a {
    padding: 25px 40px 25px 20px;
  }
}
@media (min-width: 768px) {
  .mk-post01__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .mk-post01 .text-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 240px;
    margin: 0 20px 0 0;
  }
  .mk-post01 .text-box .box {
    margin-bottom: 0;
  }
  .mk-post01 .text-box .box p {
    display: block;
  }
}

.footer-contact {
  overflow: hidden;
  padding: min(14vw, 100px) var(--space-content);
  background: url(/wp-content/uploads/bg_contact.webp) no-repeat center center;
  background-size: cover;
  color: #fff;
}
.footer-contact__title {
  display: table;
  padding-bottom: 15px;
  margin: 0 auto 1em;
  font-size: clamp(1.625rem, 1.4779411765rem + 0.7352941176vw, 2.25rem);
  font-weight: 500;
  border-bottom: 1px solid #fff;
}
.footer-contact__text {
  margin-bottom: min(3vw, 30px);
  text-align: center;
  line-height: 1.6;
}
.footer-contact__tel {
  text-align: center;
  margin-bottom: min(6vw, 30px);
}
.footer-contact__tel a {
  color: #fff;
  font-size: clamp(1.875rem, 1.7279411765rem + 0.7352941176vw, 2.5rem);
  font-weight: 600;
  font-family: var(--ff-serif);
  letter-spacing: 3px;
}
.footer-contact__tel span {
  position: relative;
  padding-left: 46px;
}
.footer-contact__tel span::after {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 14px);
  width: 36px;
  height: 36px;
  background-color: #fff;
  -webkit-mask-image: url("/wp-content/uploads/parts/i_tel2.svg");
          mask-image: url("/wp-content/uploads/parts/i_tel2.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media (max-width: 576px) {
  .footer-contact__tel span {
    padding-left: 30px;
  }
  .footer-contact__tel span::after {
    top: calc(50% - 10px);
    width: 26px;
    height: 26px;
  }
}
@media (max-width: 992px) {
  .footer-contact__tel {
    letter-spacing: 2px;
  }
}
.footer-contact__mail a {
  display: table;
  position: relative;
  padding: 18px min(5vw, 50px) 19px;
  margin: auto;
  border: 1px solid #fff;
  background: #222;
  border-radius: 100px;
  color: #fff;
  font-size: clamp(1.125rem, 1.0661764706rem + 0.2941176471vw, 1.375rem);
  font-weight: 700;
  font-family: var(--ff-serif);
  line-height: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  text-align: center;
}
@media (max-width: 992px) {
  .footer-contact__mail a {
    display: table;
  }
}
.footer-contact__mail a span {
  position: relative;
  padding-left: 30px;
}
.footer-contact__mail a span::after {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 8px);
  width: 20px;
  height: 20px;
  background-color: #fff;
  -webkit-mask-image: url("/wp-content/uploads/parts/i_mail2.svg");
          mask-image: url("/wp-content/uploads/parts/i_mail2.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media (max-width: 576px) {
  .footer-contact__mail a span {
    padding-left: 30px;
  }
  .footer-contact__mail a span::after {
    top: calc(50% - 10px);
    width: 24px;
    height: 24px;
  }
}
.footer-contact__mail a:hover {
  background-color: #fff;
  color: var(--c-primary);
}
.footer-contact__mail a:hover span::after {
  background: var(--c-primary);
}

.menu-fnav-container .p-footer-nav {
  padding: 15px 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .menu-fnav-container .p-footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 10px;
  }
  .menu-fnav-container .p-footer-nav li {
    width: calc(50% - 5px);
  }
}

.footer-info {
  padding: min(8vw, 80px) 20px;
  text-align: center;
}
.footer-info__logo {
  max-width: 152px;
  margin: auto;
}
@media (max-width: 576px) {
  .footer-info__logo {
    max-width: 110px;
  }
}
.footer-info__address {
  margin-top: 20px;
  font-size: 14px;
}

.l-footer .p-copyright {
  background-color: #000;
}

body.page .slick-arrow--square {
  top: auto;
  bottom: 0;
  width: 50px;
  height: 50px;
}
body.page .slick-next, body.page .slick-prev {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
body.page .slick-prev::before {
  content: "\e90f";
}
body.page .slick-next::before {
  content: "\e910";
}
@media screen and (max-width: 767px) {
  body.page .slick-arrow--square {
    width: 40px;
    height: 40px;
  }
}
/*# sourceMappingURL=custom.css.map */