@charset "UTF-8";
/* Rectangle 7 */
:root {
  --c-base: #fff;
  --c-primary: #FFD70E;
  --c-secondary: #FF9B0E;
  --c-tertiary: #2A1403;
  --c-accent: #FFE187;
  --space-content: clamp(20px, 6vw, 70px);
  --c-gra: linear-gradient(90deg, #FFD70E 0%, #FF9B0E 100%);
  --c-text: #444;
  --c-text-reversal: #fff;
  --c-body-bg: #eee;
  --c-hover: var(--c-primary);
  --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: "Noto Sans JP","游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  --ff-midashi: var(--ff-gothic);
  --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);
}

@-webkit-keyframes textReveal {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0% 0 0);
  }
}

@keyframes textReveal {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0% 0 0);
  }
}
.reveal {
  position: relative;
  display: inline-block;
}
.reveal::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  right: -5px;
  bottom: -5px;
  width: 100%;
  height: 100%;
  background-color: var(--c-primary);
  clip-path: inset(0 100% 0 0);
}
.reveal__text {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 5px 20px 8px;
  background: #fff;
  clip-path: inset(0 100% 0 0);
  white-space: nowrap;
}
.reveal.js-ani-on::after {
  -webkit-animation: textReveal 0.8s ease forwards;
          animation: textReveal 0.8s ease forwards;
}
.reveal.js-ani-on .reveal__text {
  -webkit-animation: textReveal 0.8s ease forwards;
          animation: textReveal 0.8s ease forwards;
}
.reveal.js-ani-on.reveal--delay1::after, .reveal.js-ani-on.reveal--delay1 .reveal__text {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.reveal.js-ani-on.reveal--delay2::after, .reveal.js-ani-on.reveal--delay2 .reveal__text {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.reveal.js-ani-on.reveal--delay3::after, .reveal.js-ani-on.reveal--delay3 .reveal__text {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.reveal.js-ani-on.reveal--delay4::after, .reveal.js-ani-on.reveal--delay4 .reveal__text {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.reveal.js-ani-on.reveal--delay5::after, .reveal.js-ani-on.reveal--delay5 .reveal__text {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.reveal.reveal--fast.js-ani-on::after, .reveal.reveal--fast.js-ani-on .reveal__text {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}
.reveal.reveal--slow.js-ani-on::after, .reveal.reveal--slow.js-ani-on .reveal__text {
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
}

.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;
  }
}
.caratLine {
  padding-bottom: 0px;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(96%, transparent), color-stop(0%, #fff));
  background-image: linear-gradient(transparent 96%, #fff 0%);
  -webkit-transition: all 1.4s;
  transition: all 1.4s;
}
.caratLine.js-ani-on {
  background-size: 100% 100%;
  -webkit-transition: all 1.4s;
  transition: all 1.4s;
}
.caratLine.delay.js-ani-on {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.ani-underline {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(70%, #f5ff00));
  background: linear-gradient(transparent 50%, #f5ff00 70%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: left;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.ani-underline.js-ani-on {
  -webkit-animation: underlineMultiline 0.5s ease-in forwards;
          animation: underlineMultiline 0.5s ease-in forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

@-webkit-keyframes underlineMultiline {
  0% {
    background-size: 0% 100%;
  }
  100% {
    background-size: 100% 100%;
  }
}

@keyframes underlineMultiline {
  0% {
    background-size: 0% 100%;
  }
  100% {
    background-size: 100% 100%;
  }
}
.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, .js-ani.scaleUpIn, .js-ani.scaleUpInLeft, .js-ani.scaleUpInRight, .js-ani.scaleDownIn, .js-ani.scaleDownInLeft, .js-ani.scaleDownInRight {
  opacity: 0;
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease, -webkit-filter 1.2s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease, -webkit-filter 1.2s ease;
  transition: transform 1s ease, opacity 1s ease, filter 1.2s ease;
  transition: transform 1s ease, opacity 1s ease, filter 1.2s ease, -webkit-transform 1s ease, -webkit-filter 1.2s ease;
}
.js-ani.filterBlur {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
.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.scaleUpIn {
  -webkit-transform: scale(0.93);
          transform: scale(0.93);
}
.js-ani.scaleUpInLeft {
  -webkit-transform: scale(0.85) translate(-90px, 0);
          transform: scale(0.85) translate(-90px, 0);
}
.js-ani.scaleUpInRight {
  -webkit-transform: scale(0.85) translate(30px, 0);
          transform: scale(0.85) translate(30px, 0);
}
.js-ani.scaleDownIn {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}
.js-ani.scaleDownInLeft {
  -webkit-transform: scale(1.15) translate(-30px, 0);
          transform: scale(1.15) translate(-30px, 0);
}
.js-ani.scaleDownInRight {
  -webkit-transform: scale(1.15) translate(30px, 0);
          transform: scale(1.15) translate(30px, 0);
}
.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, .js-ani.js-ani-on.scaleUpIn, .js-ani.js-ani-on.scaleUpInLeft, .js-ani.js-ani-on.scaleUpInRight, .js-ani.js-ani-on.scaleDownIn, .js-ani.js-ani-on.scaleDownInLeft, .js-ani.js-ani-on.scaleDownInRight {
  opacity: 1;
  -webkit-transform: scale(1) translate(0, 0);
          transform: scale(1) 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-page-header__title {
  font-weight: 600;
}

.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 {
  font-weight: 600;
}
@media screen and (max-width: 1199px) {
  .p-global-nav > ul > li + * {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .p-global-nav > ul > li a {
    font-weight: 700;
  }
}
@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: #333;
    -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-global-nav > ul > li .sub-menu a {
    width: 250px;
    font-weight: 600;
  }
}

.p-cb__item {
  margin-bottom: 0;
}

.p-index-content04 {
  padding: min(10vw, 100px) 20px;
  background-color: #e3e9eb !important;
}
.p-index-content04__col {
  width: 100%;
}
.p-index-content04__col--news .p-headline02__title {
  color: var(--c-primary) !important;
}
.p-index-content04__col--event {
  display: none;
}

.p-index-content04__col--news .p-headline02__title {
  color: #000000;
  font-size: 40px;
}

.p-info {
  border-bottom: none;
}

.p-footer-nav a {
  font-weight: 700;
}

.p-info {
  border-bottom: none;
  background-color: #fff !important;
}
.p-info__address {
  margin-bottom: 0;
  color: #444;
  font-weight: 500;
}
.p-info__logo {
  margin-bottom: 10px;
}
.p-footer-nav {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 20px;
  padding: 20px 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 {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 5px 20px;
  }
  .p-footer-nav li {
    width: calc(50% - 10px);
    line-height: 1.8;
    font-size: 12px;
  }
}
@media screen and (max-width: 576px) {
  .p-footer-nav {
    gap: 10px 10px;
    padding: 20px 20px;
  }
}

.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;
}
.tcd-pb-col h4.style_h4 {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .tcd-pb-col h4.style_h4 {
    background-size: 28px;
    font-size: 22px;
  }
}

@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;
}

.more a {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 25px 80px;
  background: var(--c-gra);
  text-decoration: none;
  border-radius: 100px;
  color: #000;
  font-size: clamp(0.875rem, 0.8161764706rem + 0.2941176471vw, 1.125rem);
  font-weight: 700;
  line-height: 1;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media (max-width: 768px) {
  .more a {
    padding: 15px 35px;
  }
}
.more a::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 5px solid #fff;
  outline: 2px solid #000;
  border-radius: 100px;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  pointer-events: none;
}
.more a::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  margin: auto;
  background: #fff;
  border-radius: 100px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
}
.more a span {
  position: relative;
}
.more a:hover::after {
  opacity: 0;
}
.more a:hover::before {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.more a:hover span::before {
  background-color: var(--c-primary);
}
.more.inverse a {
  color: var(--c-secondary);
  background: #fff;
}
.more.inverse a::after {
  border: 3px solid var(--c-secondary);
  outline: none;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
}
.more.inverse a::before {
  background-color: var(--c-secondary);
}
.more.inverse a:hover {
  background: var(--c-primary);
  color: #fff;
}
.more.inverse a:hover::before {
  background-color: var(--c-white);
}

.table-menu {
  width: 100%;
}
.table-menu tr th, .table-menu tr td {
  border: none;
  border-top: 1px solid var(--c-primary);
}
@media (max-width: 576px) {
  .table-menu tr th, .table-menu tr td {
    display: block;
    line-height: 1.4;
  }
}
.table-menu tr:last-child th, .table-menu tr:last-child td {
  border-bottom: 1px solid var(--c-primary);
}
@media (max-width: 576px) {
  .table-menu tr:last-child td:first-child {
    border-bottom: none;
  }
}
.table-menu tr th,
.table-menu tr td:first-child {
  background: transparent;
  text-align: left;
}
.table-menu tr th span,
.table-menu tr td:first-child span {
  color: #444;
  font-size: clamp(0.75rem, 0.7205882353rem + 0.1470588235vw, 0.875rem);
}
.table-menu tr td {
  text-align: right;
}
@media (max-width: 576px) {
  .table-menu tr td:last-child {
    padding-top: 0;
    border-top: none;
  }
}

.pc-text-center {
  text-align: center;
}
@media (max-width: 768px) {
  .pc-text-center {
    text-align: left;
  }
}

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

.font-style {
  font-size: clamp(1.375rem, 1.1838235294rem + 0.9558823529vw, 2.1875rem);
  font-size: clamp(1.25rem, 1.1029411765rem + 0.7352941176vw, 1.875rem);
  font-size: clamp(1.125rem, 1.0220588235rem + 0.5147058824vw, 1.5625rem);
  font-size: clamp(1rem, 0.9117647059rem + 0.4411764706vw, 1.375rem);
}

.mk {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.mk:hover {
  opacity: 0.8;
}

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

.text-box {
  font-size: clamp(0.875rem, 0.8455882353rem + 0.1470588235vw, 1rem);
}

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

.l-header__inner {
  width: 100%;
  max-width: none;
  padding: 0 min(3vw, 50px);
  padding-right: 0;
}
@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 img {
  width: 210px;
}
@media (max-width: 1199px) {
  .l-header__logo img {
    width: 140px;
  }
}
.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;
  height: 90px;
  padding: 18px 40px;
  color: #000;
  background: #FFD70E;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.l-header .header-contact a::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  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;
}
.l-header .header-contact a span::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 5px);
  width: 16px;
  height: 12px;
  background-color: #000;
  -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:hover {
  color: #000;
}
.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 (max-width: 1199px) {
  .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: #333;
    -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: #333;
    font-size: 9px;
    text-align: center;
  }
  .l-header .header-contact a span {
    display: none;
  }
}

@media only screen and (max-width: 1199px) {
  .p-global-nav .menu-item-has-children > a > .p-global-nav__toggle::before {
    color: #333;
    border-color: #333 !important;
  }
}
.mv {
  overflow: hidden;
  position: relative;
}
.mv__copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  z-index: 2;
  top: 60px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
}
@media (max-width: 576px) {
  .mv__copy {
    top: 30px;
  }
}
.mv__copy p {
  color: #fff;
  font-size: clamp(1.375rem, 0.2279411765rem + 5.7352941176vw, 6.25rem);
  font-weight: 900;
  -webkit-filter: drop-shadow(0px 0px 10px #030449);
          filter: drop-shadow(0px 0px 10px #030449);
}
.mv__copy .char {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.mv__copy .char.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.top-about {
  position: relative;
  padding: min(13vw, 130px) var(--space-content) min(10vw, 100px);
  background-color: #FFFCEB;
}
.top-about .sub-title {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 60%;
}
.top-about__inner {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(5vw, 50px);
  max-width: 1200px;
  margin: auto;
}
@media (max-width: 768px) {
  .top-about__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top-about__text {
  position: relative;
  z-index: 1;
  width: 50%;
}
@media (max-width: 768px) {
  .top-about__text {
    width: 100%;
  }
}
.top-about .h-box {
  margin-left: calc(-60px + min(5vw, 50px) * -1);
}
@media (max-width: 768px) {
  .top-about .h-box {
    margin-left: auto;
  }
}
.top-about .h-box p {
  font-size: clamp(1.125rem, 1.0220588235rem + 0.5147058824vw, 1.5625rem);
  font-weight: 700;
}
.top-about h2 {
  margin-top: 15px;
  font-size: clamp(1.375rem, 1.1838235294rem + 0.9558823529vw, 2.1875rem);
  font-weight: 700;
  line-height: 1.4;
}
.top-about .more {
  margin-top: min(4vw, 40px);
}
.top-about__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  width: calc((100vw - min(1200px, 100vw - var(--space-content) * 2)) / 2 + 50%);
  margin-left: calc((100vw - min(1200px, 100vw - var(--space-content) * 2)) / 2 * -1);
}
@media (max-width: 768px) {
  .top-about__img {
    width: 100%;
    margin-left: 0;
  }
}
.top-about__img img {
  width: 100%;
  height: min(36vw, 580px);
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .top-about__img img {
    height: auto;
    -o-object-fit: unset;
       object-fit: unset;
  }
}
.top-about .slick-prev,
.top-about .slick-next {
  width: 60px;
  height: 60px;
  z-index: 1;
  -webkit-filter: drop-shadow(0px 0px 20px rgba(42, 20, 3, 0.5));
          filter: drop-shadow(0px 0px 20px rgba(42, 20, 3, 0.5));
}
.top-about .slick-prev::before,
.top-about .slick-next::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
}
@media (max-width: 768px) {
  .top-about .slick-prev,
  .top-about .slick-next {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 576px) {
  .top-about .slick-prev,
  .top-about .slick-next {
    width: 30px;
    height: 30px;
  }
}
.top-about .slick-prev {
  left: 15px;
}
.top-about .slick-prev::before {
  background-image: url("/wp-content/uploads/slide_arrow_l.svg");
}
.top-about .slick-next {
  right: 15px;
}
.top-about .slick-next::before {
  background-image: url("/wp-content/uploads/slide_arrow_r.svg");
}

.top-feature {
  position: relative;
  padding: min(13vw, 130px) var(--space-content) min(10vw, 100px);
  background-color: #FFFCEB;
}
.top-feature .sub-title {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 60%;
}
.top-feature h2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 1;
  padding: 15px 40px;
  margin: auto;
  background-color: #fff;
  border-top: 5px solid var(--c-primary);
  font-size: clamp(1.25rem, 1.1029411765rem + 0.7352941176vw, 1.875rem);
  font-weight: 700;
}
.top-feature__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr min(3vw, 30px) 1fr min(3vw, 30px) 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px min(3vw, 30px);
  position: relative;
  z-index: 1;
  max-width: 1200px;
  padding: min(5vw, 50px);
  margin: auto;
  background-color: #fff;
}
@media (max-width: 768px) {
  .top-feature__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.top-feature .card {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 3;
  grid-row: span 3;
  padding: min(3vw, 30px);
  background-color: #FFF6CA;
}
@media (max-width: 768px) {
  .top-feature .card {
    display: block;
    grid-row: auto;
  }
}
.top-feature .card h3 {
  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;
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
  padding: 0;
  margin: 0 0;
  padding-left: 12px;
  height: 100%;
  border-left: 4px solid #FFD70E;
  font-size: clamp(1.125rem, 1.0661764706rem + 0.2941176471vw, 1.375rem);
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .top-feature .card h3 {
    height: auto;
    margin-bottom: 1em;
  }
}
@media (max-width: 768px) {
  .top-feature .card figure {
    margin-bottom: 1em;
  }
}
.top-service {
  position: relative;
  padding: min(6vw, 60px) var(--space-content) min(10vw, 100px);
  background: var(--c-gra);
}
.top-service .sub-title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-width: 60%;
  margin: auto;
}
.top-service h2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 1;
  margin: 0 auto 1em;
  font-size: clamp(1.25rem, 1.1029411765rem + 0.7352941176vw, 1.875rem);
  font-weight: 700;
}
.top-service__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: min(5vw, 50px);
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
}
@media (max-width: 768px) {
  .top-service__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top-service .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(50% - min(5vw, 50px) / 2);
  background-color: #fff;
  padding-bottom: min(3vw, 30px);
}
@media (max-width: 768px) {
  .top-service .card {
    width: 100%;
  }
}
.top-service .card figure {
  position: relative;
}
.top-service .card figure figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 min(3vw, 30px);
}
.top-service .card figure h3 {
  padding: 15px 5px 10px;
  margin-bottom: 0;
  font-size: clamp(1rem, 0.9117647059rem + 0.4411764706vw, 1.375rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  background-color: #fff;
}
.top-service .card .text-box {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: min(3vw, 30px) min(3vw, 30px);
  margin-top: 10px;
}
.top-service .card .more {
  text-align: center;
}
.top-service__slider {
  position: relative;
  margin-top: min(10vw, 100px);
  margin-left: calc(var(--space-content) * -1);
  margin-right: calc(var(--space-content) * -1);
}
.top-service__slider::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 80%;
  height: 100%;
  margin: auto;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(20%, #fff), color-stop(80%, #fff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff 20%, #fff 80%, rgba(255, 255, 255, 0));
}
.top-service__slider h2 {
  position: relative;
  margin-bottom: 0;
  padding: min(5vw, 50px) 0 min(5vw, 50px);
}
.top-service__slider h2::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 25px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--c-primary);
  border-bottom: 2px solid var(--c-primary);
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}
.top-service__slider .more {
  position: relative;
  z-index: 1;
  text-align: center;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
.top-works {
  position: relative;
  padding: min(15vw, 150px) var(--space-content) min(10vw, 100px);
  background-color: #F4F4F4;
}
.top-works .sub-title {
  position: absolute;
  top: 10%;
  right: 0;
  z-index: 1;
  max-width: 60%;
  margin: auto;
}
.top-works h2 {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  margin: 0 auto 10px;
  text-align: right;
}
.top-works h2 span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 40px;
  margin: 0 0 0 auto;
  background-color: #fff;
  font-size: clamp(1.25rem, 1.1029411765rem + 0.7352941176vw, 1.875rem);
  font-weight: 700;
}
.top-works__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(4vw, 40px);
  position: relative;
  z-index: 1;
  max-width: 1560px;
  margin: auto;
}
@media (max-width: 768px) {
  .top-works__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top-works__inner a {
  overflow: hidden;
  width: 33.3333333333%;
}
@media (max-width: 768px) {
  .top-works__inner a {
    width: 100%;
  }
}
.top-works__inner a img {
  width: 100%;
  height: min(20vw, 320px);
  border-radius: 0 0;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (max-width: 768px) {
  .top-works__inner a img {
    height: 360px;
  }
}
@media (max-width: 576px) {
  .top-works__inner a img {
    height: min(46vw, 260px);
  }
}
.top-works__inner a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  opacity: 0.9;
}
.top-works .more {
  margin-top: min(5vw, 50px);
  text-align: center;
}

.mk-slick001 {
  position: relative;
  z-index: 1;
}
.mk-slick001__slider {
  margin: 0;
  -webkit-filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.2));
}
.mk-slick001__slider .slick-slide {
  padding: 0 min(1vw, 10px);
}
@media (max-width: 768px) {
  .mk-slick001__slider .slick-slide {
    padding: 0 10px;
  }
}
.mk-slick001__slider .item img {
  width: 100%;
  height: min(26vw, 500px);
  border-radius: 0 0;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (max-width: 768px) {
  .mk-slick001__slider .item img {
    height: 360px;
  }
}
@media (max-width: 576px) {
  .mk-slick001__slider .item img {
    height: min(46vw, 260px);
  }
}
.mk-slick001__slider .item figcaption {
  padding: 10px;
  background-color: var(--c-primary);
  font-size: clamp(0.875rem, 0.7573529412rem + 0.5882352941vw, 1.375rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.mk-slick001__slider .slick-next,
.mk-slick001__slider .slick-prev {
  width: min(6vw, 60px);
  height: min(6vw, 60px);
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 1;
}
@media (max-width: 768px) {
  .mk-slick001__slider .slick-next,
  .mk-slick001__slider .slick-prev {
    width: 40px;
    height: 40px;
  }
}
.mk-slick001__slider .slick-next:hover,
.mk-slick001__slider .slick-prev:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
.mk-slick001__slider .slick-next:focus,
.mk-slick001__slider .slick-prev:focus {
  background-color: rgba(255, 255, 255, 0.8);
}
.mk-slick001__slider .slick-next::before,
.mk-slick001__slider .slick-prev::before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: min(2vw, 20px);
  height: min(2vw, 20px);
  border-top: 3px solid var(--c-primary);
  border-right: 3px solid var(--c-primary);
}
@media (max-width: 768px) {
  .mk-slick001__slider .slick-next::before,
  .mk-slick001__slider .slick-prev::before {
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--c-primary);
    border-right: 2px solid var(--c-primary);
  }
}
.mk-slick001__slider .slick-next {
  right: 20px;
}
.mk-slick001__slider .slick-next::before {
  -webkit-transform: translate(-70%, -50%) rotate(45deg);
          transform: translate(-70%, -50%) rotate(45deg);
}
.mk-slick001__slider .slick-prev {
  left: 20px;
}
.mk-slick001__slider .slick-prev::before {
  -webkit-transform: translate(-30%, -50%) rotate(225deg);
          transform: translate(-30%, -50%) rotate(225deg);
}
.mk-slick001__slider .slick-dots li button:before {
  color: var(--c-secondary);
  font-size: 32px;
}
.mk-slick001__slider .slick-dots li.slick-active button:before {
  color: var(--c-primary);
}

.top-faq {
  padding: min(10vw, 100px) var(--space-content);
}
.top-faq__inner {
  max-width: 1200px;
  margin: auto;
}
.top-faq__box {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .top-faq__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top-faq__box:nth-of-type(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top-faq__box figure {
  width: 50%;
}
.top-faq__box figure img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .top-faq__box figure {
    width: 100%;
  }
}
.top-faq__text {
  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;
  position: relative;
  width: 50%;
  padding: min(3vw, 30px) min(5vw, 60px);
  background: #F4F4F4;
}
@media (max-width: 768px) {
  .top-faq__text {
    width: 100%;
  }
}
.top-faq__text .sub-title {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 70%;
}
.top-faq__text h2 {
  position: relative;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: calc(min(5vw, 60px) * -1);
  padding: 20px 40px 20px min(5vw, 60px);
  background-color: #fff;
  font-size: clamp(1.375rem, 1.2573529412rem + 0.5882352941vw, 1.875rem);
  font-weight: 700;
}
.top-faq__text .text-box {
  position: relative;
  z-index: 1;
}
.top-faq__text .text-box p {
  line-height: 1.7;
}
.top-faq__text .more {
  margin-top: min(3vw, 20px);
  text-align: center;
}

.parts-post {
  padding: min(10vw, 100px) var(--space-content);
  background-color: #FFFCEB;
}
.parts-post__inner {
  max-width: 1200px;
  margin: auto;
}
.parts-post__text {
  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;
  gap: min(10vw, 100px);
  position: relative;
}
@media (max-width: 768px) {
  .parts-post__text {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.parts-post h2 {
  position: relative;
  margin: 0;
  color: var(--c-primary);
  font-size: clamp(1.25rem, 1.1029411765rem + 0.7352941176vw, 1.875rem);
  font-weight: 600;
  line-height: 1;
  text-align: center;
}
.parts-post h2 span {
  display: block;
  margin: 10px auto 0;
  color: #333;
  font-size: clamp(0.75rem, 0.7058823529rem + 0.2205882353vw, 0.9375rem);
}
.parts-post__more {
  position: absolute;
  right: 0;
}
.parts-post__more a {
  padding: 12px 30px;
  color: #fff;
  font-size: clamp(0.75rem, 0.7058823529rem + 0.2205882353vw, 0.9375rem);
  font-weight: 600;
}
.parts-post__more a::after {
  border: none;
  outline: none;
}
.parts-post__more a:hover {
  color: #333;
}
@media (max-width: 768px) {
  .parts-post__more {
    position: static;
    margin-top: 0;
    margin-left: auto;
  }
  .parts-post__more a {
    padding: 10px 20px;
  }
}
.parts-post__list {
  margin-top: min(4vw, 40px);
}
.parts-post__list ul {
  margin-bottom: 0;
}
.parts-post__list li {
  list-style-type: none;
}
.parts-post__list li:first-child a {
  border-top: 1px solid #ddd;
}
.parts-post__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 20px;
  position: relative;
  padding: 25px 40px 25px 20px;
  border-bottom: 1px solid #ddd;
  color: var(--c-text);
  font-size: clamp(0.875rem, 0.8455882353rem + 0.1470588235vw, 1rem);
  line-height: 1.4;
  text-decoration: none;
  -webkit-transition: all, 0.6s;
  transition: all, 0.6s;
}
.parts-post__list a span.data {
  font-weight: 500;
}
@media (max-width: 768px) {
  .parts-post__list a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 10px 30px 10px 10px;
  }
  .parts-post__list a span.data {
    display: block;
  }
}
.parts-post__list a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  width: 7px;
  height: 7px;
  margin: auto;
  border-top: 2px solid var(--c-primary);
  border-right: 2px solid var(--c-primary);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.parts-post__list a:hover {
  background-color: rgba(255, 215, 14, 0.1);
}
.footer-contact {
  color: #fff;
}
.footer-contact__inner {
  padding: min(12vw, 120px) min(5vw, 50px);
  margin: auto;
  background: url(/wp-content/uploads/bg_contact.webp) no-repeat;
  background-size: cover;
}
.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);
  font-size: clamp(0.875rem, 0.8161764706rem + 0.2941176471vw, 1.125rem);
  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.75rem, 1.5735294118rem + 0.8823529412vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 3px;
}
@media (max-width: 360px) {
  .footer-contact__tel a {
    font-size: 26px;
  }
}
@media (max-width: 360px) {
  .footer-contact__tel a {
    font-size: 25px;
  }
}
.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: 20px min(11vw, 60px) 20px min(6vw, 60px);
  margin: auto;
  background-color: #222;
  border: min(0.2vw, 2px) solid #fff;
  border-radius: 100px;
  color: #fff;
  font-size: clamp(1rem, 0.9117647059rem + 0.4411764706vw, 1.375rem);
  font-weight: 700;
  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% - 9px);
    width: 22px;
    height: 22px;
  }
}
.footer-contact__mail a:hover {
  background-color: #fff;
  color: var(--c-primary);
}
.footer-contact__mail a:hover::before {
  border-top: 2px solid var(--c-primary);
  border-right: 2px solid var(--c-primary);
}
.footer-contact__mail a:hover span::after {
  background-color: var(--c-primary);
}

.l-footer .p-info__logo img {
  max-width: 220px;
}
@media (max-width: 576px) {
  .l-footer .p-info__logo img {
    max-width: 140px;
  }
}
.l-footer .p-copyright {
  background: var(--c-gra);
}
/*# sourceMappingURL=custom.css.map */