@charset "UTF-8";
/* Rectangle 7 */
:root {
  --c-base: #fff;
  --c-primary: #1374BF;
  --c-primary-rgb: 19,116,191;
  --c-secondary: #003D8A;
  --c-tertiary: #07AC49;
  --c-accent: #FFE187;
  --space-content: clamp(20px, 6vw, 70px);
  --c-gra: linear-gradient(90deg, #0772B9 0%, #07AC49 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-serif);
  --ff-serif: "Noto Serif JP","游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  --ff-eng: "Oswald", sans-serif;
}

.font-sample {
  /* Noto Sans JP */
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500; /* Medium */
  font-weight: 700; /* Bold */
  font-weight: 900; /* Black */
  /* Oswald */
  font-family: "Oswald", sans-serif;
  font-weight: 500; /* Medium */
  font-weight: 700; /* Bold */
}

.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__text {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 10px 20px 13px;
  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);
}

@-webkit-keyframes charFadeIn {
  from {
    opacity: 0;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes charFadeIn {
  from {
    opacity: 0;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.js-ani-split .js-split {
  opacity: 0;
}
.js-ani-split .js-split.is-split {
  opacity: 1;
}
.js-ani-split .char {
  display: inline-block;
  opacity: 0;
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
  -webkit-animation: charFadeIn 1.2s ease forwards;
          animation: charFadeIn 1.2s ease forwards;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.js-ani-split.js-ani-on .char {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

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

@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: #fff;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .p-global-nav > ul > li > a:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

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

.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 {
  display: block;
  position: relative;
  z-index: 1;
  max-width: 300px;
  padding: 22px 50px 22px 20px;
  margin: auto;
  background: var(--c-primary);
  border-radius: 100px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--ff-heading);
  text-align: center;
  white-space: nowrap;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 768px) {
  .more a {
    font-size: 14px;
  }
}
.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::after {
  content: "";
  position: absolute;
  right: 20px;
  top: calc(50% - 6px);
  width: 12px;
  height: 12px;
  background-color: #fff;
  -webkit-mask-image: url("/wp-content/uploads/parts/i_arrow_r3.svg");
          mask-image: url("/wp-content/uploads/parts/i_arrow_r3.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;
}
.more a:hover {
  color: #1A4185;
}
.more a:hover::before {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.more a:hover::after {
  background-color: #1A4185;
}
.more.inverse a {
  color: var(--c-btn-bg);
  background: #fff;
}
.more.inverse a.add_arrow::before, .more.inverse a.add_arrow::after {
  border-top: 1px solid var(--c-btn-bg);
  border-right: 1px solid var(--c-btn-bg);
}
.more.inverse a:hover {
  background: var(--c-btn-bg);
  border: 1px solid #fff;
  color: #fff;
}
.more.inverse a:hover.add_arrow::before, .more.inverse a:hover.add_arrow::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.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-size-memo {
  font-size: clamp(2.125rem, 1.8897058824rem + 1.1764705882vw, 3.125rem);
  font-size: clamp(1.875rem, 1.6544117647rem + 1.1029411765vw, 2.8125rem);
  font-size: clamp(1.625rem, 1.4191176471rem + 1.0294117647vw, 2.5rem);
  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.1875rem, 1.0992647059rem + 0.4411764706vw, 1.5625rem);
  font-size: clamp(1.125rem, 1.0367647059rem + 0.4411764706vw, 1.5rem);
  font-size: clamp(1rem, 0.9117647059rem + 0.4411764706vw, 1.375rem);
  font-size: clamp(1rem, 0.9411764706rem + 0.2941176471vw, 1.25rem);
  font-size: clamp(1rem, 0.9705882353rem + 0.1470588235vw, 1.125rem);
}

.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;
  font-weight: 500;
}
.l-header__inner {
  width: 100%;
  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;
  }
}
@media (max-width: 1199px) {
  .l-header__logo {
    padding-left: 0;
  }
  .l-header__logo img {
    width: 180px;
  }
}
.l-header .p-global-nav {
  margin-left: auto;
  margin-right: min(3vw, 20px);
}
.l-header .header-sns {
  max-width: 45px;
}
.l-header .header-sns img {
  width: 100%;
  height: auto;
}
@media (max-width: 1199px) {
  .l-header .header-sns {
    position: absolute;
    top: 12px;
    right: 50px;
    max-width: 35px;
  }
  .l-header .header-sns img {
    width: 100%;
    height: auto;
  }
}
.p-global-nav > ul > li > a {
  padding-right: 14px;
  padding-left: 14px;
}
@media only screen and (max-width: 1199px) {
  .p-global-nav > ul > li > a {
    padding: 0 5.55556%;
  }
}
@media only screen and (max-width: 1199px) {
  .p-global-nav .p-global-nav__toggle {
    display: none;
  }
  .p-global-nav .sub-menu {
    display: block;
  }
  .p-global-nav .sub-menu a::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 10px;
    background-color: #fff;
    border-radius: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.mv {
  overflow: hidden;
  position: relative;
}
.mv__copy p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 15%;
  left: 10%;
  margin: auto;
  max-width: 60%;
  clip-path: inset(100% 0 0 0);
}
@media (max-width: 768px) {
  .mv__copy p {
    left: 5%;
    bottom: 15%;
    max-width: 70%;
  }
}
@media (max-width: 576px) {
  .mv__copy p {
    max-width: 280px;
  }
}
.js-ani-mv .mv__copy p:nth-of-type(1) {
  -webkit-animation: slide-up-mask 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
          animation: slide-up-mask 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}
.js-ani-mv .mv__copy p:nth-of-type(2) {
  -webkit-animation: slide-up-mask 9.4s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
          animation: slide-up-mask 9.4s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

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

@keyframes slide-up-mask {
  0% {
    clip-path: inset(100% 0 0 0);
  }
  100% {
    clip-path: inset(0% 0 0 0);
  }
}
.cta {
  padding: 17px 10px 12px;
  background-color: #F4F4F4;
}
@media (max-width: 768px) {
  .cta {
    padding: 20px 10px;
  }
}
.cta__text {
  margin-bottom: 15px;
  font-weight: 700;
  text-align: center;
  font-size: clamp(1rem, 0.9117647059rem + 0.4411764706vw, 1.375rem);
}
.cta__text::before {
  content: "＼";
  padding-right: 10px;
}
.cta__text::after {
  content: "／";
  padding-left: 10px;
}
@media (max-width: 768px) {
  .cta__text {
    font-size: clamp(0.75rem, 0.6911764706rem + 0.2941176471vw, 1rem);
  }
}
.cta__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px min(3vw, 30px);
}
@media (max-width: 992px) {
  .cta__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.cta__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--c-primary);
  font-size: clamp(1.875rem, 1.7279411765rem + 0.7352941176vw, 2.5rem);
  font-family: var(--ff-eng);
}
.cta__tel span {
  position: relative;
  padding-left: 33px;
}
.cta__tel span::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 13px);
  width: 32px;
  height: 32px;
  background-color: var(--c-primary);
  -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.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 992px) {
  .cta__tel {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.cta__line, .cta__contact {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
}
@media (max-width: 992px) {
  .cta__line, .cta__contact {
    width: 100%;
    max-width: 342px;
    margin: auto;
  }
}
.cta__line::before, .cta__contact::before {
  content: "";
  position: absolute;
  right: 15px;
  top: calc(50% - 7px);
  width: 14px;
  height: 14px;
  background-color: #fff;
  -webkit-mask-image: url("/wp-content/uploads/parts/i_arrow_r3.svg");
          mask-image: url("/wp-content/uploads/parts/i_arrow_r3.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;
}
@media (max-width: 992px) {
  .cta__line, .cta__contact {
    text-align: center;
  }
  .cta__line span, .cta__contact span {
    margin: auto;
  }
}
.cta__line {
  padding: 15px 45px 15px 15px;
  background-color: #06C755;
  border-radius: 100px;
  color: #fff;
  font-size: clamp(1.1875rem, 1.0992647059rem + 0.4411764706vw, 1.5625rem);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media (max-width: 992px) {
  .cta__line {
    font-size: clamp(1rem, 0.9411764706rem + 0.2941176471vw, 1.25rem);
  }
}
.cta__line span {
  position: relative;
  padding-left: 36px;
}
.cta__line span::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 13px);
  width: 30px;
  height: 30px;
  background-color: #fff;
  -webkit-mask-image: url("/wp-content/uploads/parts/i_line2.svg");
          mask-image: url("/wp-content/uploads/parts/i_line2.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;
}
.cta__line:hover {
  background-color: #039D42;
}
.cta__contact {
  padding: 15px 45px 15px 15px;
  background: var(--c-gra);
  border-radius: 100px;
  color: #fff;
  font-size: clamp(1rem, 0.9411764706rem + 0.2941176471vw, 1.25rem);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.cta__contact span {
  position: relative;
  padding-left: 36px;
}
.cta__contact span::before {
  content: "";
  position: absolute;
  left: 5px;
  top: calc(50% - 9px);
  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.4s ease;
  transition: all 0.4s ease;
}
.cta__contact:hover {
  opacity: 0.8;
}

.top-service {
  padding: min(9vw, 90px) var(--space-content) min(10vw, 100px);
}
.top-service__box {
  margin-bottom: min(10vw, 100px);
  text-align: center;
}
.top-service h2 {
  margin-bottom: min(4vw, 40px);
  color: #111827;
  font-size: clamp(1.375rem, 1.1838235294rem + 0.9558823529vw, 2.1875rem);
  font-weight: 700;
}
.top-service__text {
  color: #444;
  font-size: clamp(1rem, 0.9705882353rem + 0.1470588235vw, 1.125rem);
  font-weight: 700;
  line-height: 1.4;
}
.top-service__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(20vw, 100px) min(5vw, 50px);
  max-width: 1200px;
  margin: auto;
  text-align: center;
}
@media (max-width: 768px) {
  .top-service__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top-service__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 400px;
  padding: min(6.5vw, 45px) 20px;
  margin: auto;
  border-radius: 10px;
  -webkit-box-shadow: 4px 4px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 25px rgba(0, 0, 0, 0.1);
}
.top-service__num {
  margin-top: calc(min(4.5vw, 45px) * -1 - 40px);
  margin-bottom: min(3vw, 20px);
  color: var(--c-secondary);
  font-size: clamp(1rem, 0.9705882353rem + 0.1470588235vw, 1.125rem);
  font-weight: 900;
}
.top-service__num span {
  display: block;
  font-size: clamp(2.125rem, 1.8897058824rem + 1.1764705882vw, 3.125rem);
  font-family: var(--ff-eng);
}
.top-service h3 {
  margin-bottom: min(3vw, 30px);
  color: var(--c-secondary);
  font-size: clamp(1.1875rem, 1.0992647059rem + 0.4411764706vw, 1.5625rem);
}
.top-service figure img {
  margin-bottom: min(2vw, 20px);
}
.top-service figure figcaption {
  line-height: 1.6;
  text-align: left;
}
.top-service__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px min(4vw, 40px);
  padding: min(5vw, 50px) 20px;
  margin-top: min(7vw, 70px);
  background-color: #F4F4F4;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .top-service__btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top-nayami {
  background-color: #DBECF6;
}
.top-nayami h2 {
  padding: min(6vw, 60px) var(--space-content);
  background-color: var(--c-primary);
  color: #fff;
  font-size: clamp(1.375rem, 1.1838235294rem + 0.9558823529vw, 2.1875rem);
  text-align: center;
  line-height: 1.4;
}
.top-nayami h2 span {
  color: #FFEE00;
}
.top-nayami__box {
  padding: min(5vw, 50px) 0 min(10vw, 100px);
}
.top-nayami .mk-slick001 {
  position: relative;
  padding-bottom: min(18vw, 180px);
}
.top-nayami .mk-slick001::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(60vw, 800px);
  height: min(10vw, 140px);
  background-image: url("/wp-content/uploads/arrow.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 768px) {
  .top-nayami .mk-slick001::after {
    width: 60vw;
    height: 15vw;
  }
}
.top-nayami__omakase {
  padding: 0 15px;
  margin-top: min(5vw, 50px);
  color: #9E0800;
  font-size: clamp(1rem, 0.7205882353rem + 1.3970588235vw, 2.1875rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
}

.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 {
  overflow: hidden;
}
.mk-slick001__slider .item figure {
  position: relative;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px 10px 0 0;
}
@media (max-width: 768px) {
  .mk-slick001__slider .item figure {
    padding: min(3vw, 20px);
  }
}
.mk-slick001__slider .item figure figcaption {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
@media (max-width: 768px) {
  .mk-slick001__slider .item figure figcaption {
    bottom: min(3vw, 20px);
  }
}
.mk-slick001__slider .item figure figcaption h3 {
  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;
  padding: 0 0;
  margin: min(2vw, 20px) 0 0;
  border-radius: 10px 10px 0 0;
  color: var(--c-secondary);
  font-size: clamp(1.125rem, 1.0661764706rem + 0.2941176471vw, 1.375rem);
  line-height: 1.4;
}
.mk-slick001__slider .item__text {
  padding: 0 20px min(6vw, 30px) min(2vw, 20px);
  background-color: #fff;
  border-radius: 0 0 10px 10px;
}
.mk-slick001__slider .item__text .text-box {
  min-height: 110px;
}
.mk-slick001__slider img {
  width: 100%;
  -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;
}
.mk-slick001__slider .slick-next,
.mk-slick001__slider .slick-prev {
  width: 60px;
  height: 60px;
  z-index: 1;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (max-width: 768px) {
  .mk-slick001__slider .slick-next,
  .mk-slick001__slider .slick-prev {
    width: 40px;
    height: 40px;
  }
}
.mk-slick001__slider .slick-next::before,
.mk-slick001__slider .slick-prev::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  border: none;
  -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));
}
.mk-slick001__slider .slick-next:hover,
.mk-slick001__slider .slick-prev:hover {
  background-color: transparent;
}
.mk-slick001__slider .slick-next:focus,
.mk-slick001__slider .slick-prev:focus {
  background-color: transparent;
}
.mk-slick001__slider .slick-prev {
  left: 20px;
}
.mk-slick001__slider .slick-prev::before {
  background-image: url("/wp-content/uploads/slide_arrow_l.svg");
  -webkit-transform: none;
          transform: none;
}
.mk-slick001__slider .slick-next {
  right: 20px;
}
.mk-slick001__slider .slick-next::before {
  background-image: url("/wp-content/uploads/slide_arrow_r.svg");
  -webkit-transform: none;
          transform: none;
}
.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-feature {
  padding: min(9vw, 90px) var(--space-content) min(10vw, 100px);
  background-color: #F8F8F8;
}
.top-feature__box {
  margin-bottom: min(10vw, 100px);
  text-align: center;
}
.top-feature__sub-title {
  position: relative;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 10px;
  padding: min(2vw, 16px) min(4vw, 32px);
  background-color: #DBECF6;
  border-radius: 50px;
  text-align: center;
}
.top-feature__sub-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 8px 0 8px;
  border-color: #DBECF6 transparent transparent transparent;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.top-feature__sub-title span {
  font-size: clamp(1rem, 0.9411764706rem + 0.2941176471vw, 1.25rem);
  font-weight: bold;
}
.top-feature__title {
  font-size: clamp(1.375rem, 1.1838235294rem + 0.9558823529vw, 2.1875rem);
}
.top-feature__title span {
  color: #9E0800;
  font-size: clamp(1.875rem, 1.6544117647rem + 1.1029411765vw, 2.8125rem);
}
.top-feature h2 {
  margin-bottom: min(4vw, 40px);
  color: #111827;
  font-size: clamp(1.375rem, 1.1838235294rem + 0.9558823529vw, 2.1875rem);
  font-weight: 700;
}
.top-feature__text {
  color: #444;
  font-size: clamp(1rem, 0.9705882353rem + 0.1470588235vw, 1.125rem);
  font-weight: 700;
  line-height: 1.4;
}
.top-feature__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(20vw, 100px) min(4vw, 40px);
  max-width: 1200px;
  margin: auto;
  text-align: center;
}
@media (max-width: 768px) {
  .top-feature__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top-feature__item {
  max-width: 400px;
  padding: min(6.5vw, 45px) 20px min(3vw, 30px);
  margin: auto;
  border-radius: 10px;
  background-color: #fff;
  -webkit-filter: drop-shadow(4px 4px 25px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(4px 4px 25px rgba(0, 0, 0, 0.1));
}
.top-feature__num {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 30px 44px 10px;
  margin: auto;
  margin-top: calc(min(4.5vw, 45px) * -1 - 60px);
  margin-bottom: min(2vw, 10px);
  background-color: #fff;
  border-radius: 100px 100px 0 0;
  color: var(--c-secondary);
  font-size: clamp(1rem, 0.9705882353rem + 0.1470588235vw, 1.125rem);
  font-weight: 900;
}
.top-feature__num span {
  display: block;
  font-size: clamp(2.125rem, 1.8897058824rem + 1.1764705882vw, 3.125rem);
  font-family: var(--ff-eng);
}
.top-feature h3 {
  color: var(--c-secondary);
  font-size: clamp(1.125rem, 1.0661764706rem + 0.2941176471vw, 1.375rem);
}
.top-feature figure img {
  margin-bottom: min(2vw, 10px);
}
.top-feature figure figcaption {
  line-height: 1.6;
  text-align: left;
}

.top-works {
  padding-top: min(5vw, 50px);
  padding-bottom: min(8vw, 80px);
}
.top-works h2 {
  position: relative;
  display: table;
  margin: auto;
  text-align: center;
}
.top-works h2 span {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding-top: min(7vw, 70px);
  padding-bottom: min(7vw, 70px);
  margin: auto;
  font-size: clamp(1.5rem, 1.3235294118rem + 0.8823529412vw, 2.25rem);
  font-weight: bold;
  line-height: 1.4;
}
.top-works h2 span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(12vw, 120px);
  height: min(12vw, 120px);
  background-color: #DBECF6;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
.top-works h2 span::after {
  content: "";
  position: absolute;
  top: min(2.5vw, 25px);
  left: 50%;
  width: min(4vw, 40px);
  height: min(4vw, 40px);
  background-image: url("/wp-content/uploads/parts/i_house.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
.top-works .more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: min(12vw, 60px);
}
.top-works .more a {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.slider-slick.slider-works {
  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));
}
.slider-slick.slider-works .slick-slide {
  padding: 0 min(1vw, 10px);
}
@media (max-width: 768px) {
  .slider-slick.slider-works .slick-slide {
    padding: 0 5px;
  }
}
.slider-slick.slider-works a {
  overflow: hidden;
  display: block;
}
.slider-slick.slider-works img {
  width: 100%;
  height: min(24vw, 500px);
  -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) {
  .slider-slick.slider-works img {
    height: 360px;
  }
}
@media (max-width: 576px) {
  .slider-slick.slider-works img {
    height: min(46vw, 260px);
  }
}
.slider-slick.slider-works a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.slider-slick.slider-works .slick-dots li button:before {
  color: var(--c-primary);
  font-size: 32px;
}
.slider-slick.slider-works .slick-dots li.slick-active button:before {
  color: var(--c-primary);
}

.top-flow {
  padding: 0 var(--space-content) min(10vw, 100px);
}
.top-flow__inner {
  max-width: 1200px;
  margin: auto;
}
.top-flow h2 {
  margin-bottom: min(6vw, 60px);
  font-size: clamp(1.375rem, 1.1838235294rem + 0.9558823529vw, 2.1875rem);
  text-align: center;
}
.top-flow__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: min(6vw, 60px);
}
@media (max-width: 768px) {
  .top-flow__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.top-flow__item {
  position: relative;
  padding: 20px 0;
  max-width: 400px;
  margin: 0 auto 10px;
  border-radius: 10px;
  -webkit-box-shadow: 4px 4px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 25px rgba(0, 0, 0, 0.1);
}
.top-flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: min(5vw, 50px);
  height: min(10vw, 100px);
  background-image: url("/wp-content/uploads/arrow2.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  z-index: 1;
}
@media (max-width: 768px) {
  .top-flow__item:not(:last-child)::after {
    width: 50px;
    height: 100px;
    top: 105%;
    right: 50%;
    -webkit-transform: translate(50%, -50%) rotate(90deg);
            transform: translate(50%, -50%) rotate(90deg);
  }
}
.top-flow__num {
  margin-bottom: 10px;
  color: var(--c-secondary);
  font-size: clamp(1rem, 0.9117647059rem + 0.4411764706vw, 1.375rem);
  font-weight: 700;
  line-height: 1;
}
.top-flow__num span {
  display: inline-block;
  padding: 3px 10px 7px;
  margin-right: 10px;
  background-color: var(--c-secondary);
  color: #fff;
  font-size: clamp(1.25rem, 1.1029411765rem + 0.7352941176vw, 1.875rem);
}

.top-voice {
  padding: min(10vw, 100px) var(--space-content);
  background-color: #F8F8F8;
}
.top-voice h2 {
  margin-bottom: min(6vw, 60px);
  font-size: clamp(1.375rem, 1.1838235294rem + 0.9558823529vw, 2.1875rem);
  text-align: center;
}
.top-voice h2 span {
  display: block;
  margin-bottom: 5px;
  color: var(--c-primary);
  font-size: clamp(1rem, 0.9411764706rem + 0.2941176471vw, 1.25rem);
  font-family: var(--ff-eng);
}
.top-voice__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr min(3vw, 30px) 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: min(4vw, 40px) min(3vw, 30px);
  max-width: 1200px;
  margin: auto;
}
@media (max-width: 768px) {
  .top-voice__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: min(10vw, 60px);
  }
}
.top-voice__item {
  position: relative;
  padding: min(6vw, 30px);
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 4px 4px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 25px rgba(0, 0, 0, 0.1);
}
.top-voice__icon {
  position: absolute;
  top: 0;
  right: min(3vw, 30px);
  width: min(8vw, 80px);
  height: min(8vw, 80px);
  -webkit-transform: translateY(-20%);
          transform: translateY(-20%);
}
@media (max-width: 576px) {
  .top-voice__icon {
    width: min(16vw, 80px);
    height: min(16vw, 80px);
    -webkit-transform: translateY(-30%);
            transform: translateY(-30%);
  }
}
.top-voice__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.top-voice h3 {
  position: relative;
  padding-left: min(10vw, 50px);
  padding-right: calc(min(8vw, 80px) + 10px);
  margin-bottom: min(1.5vw, 15px);
  color: var(--c-secondary);
  line-height: 1.4;
  font-size: clamp(1rem, 0.9411764706rem + 0.2941176471vw, 1.25rem);
  font-weight: bold;
}
.top-voice h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: min(8vw, 40px);
  height: min(8vw, 40px);
  background-image: url("/wp-content/uploads/i_message.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.top-voice .text-box p {
  color: #333;
  font-size: clamp(0.875rem, 0.8455882353rem + 0.1470588235vw, 1rem);
  line-height: 1.8;
}
.top-voice .more {
  margin-top: min(6vw, 60px);
}

.top-faq {
  padding: min(10vw, 100px) 0;
}
@media (max-width: 1200px) {
  .top-faq {
    padding: 0;
  }
}
.top-faq h2 {
  margin-bottom: min(6vw, 60px);
  font-size: clamp(1.375rem, 1.1838235294rem + 0.9558823529vw, 2.1875rem);
  text-align: center;
}
.top-faq h2 span {
  display: block;
  margin-bottom: 5px;
  color: var(--c-primary);
  font-size: clamp(1rem, 0.9411764706rem + 0.2941176471vw, 1.25rem);
  font-family: var(--ff-eng);
}
.top-faq__inner {
  max-width: 1200px;
  padding: min(10vw, 100px) var(--space-content);
  margin: auto;
  background-color: #DBECF6;
  border-top: 10px solid var(--c-primary);
}
.top-faq .more {
  margin-top: min(6vw, 60px);
}

.parts-faq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}
.parts-faq__set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.parts-faq__q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 25px 70px 25px 90px;
  background-color: #fff;
  color: var(--c-text);
  font-size: clamp(1rem, 0.9411764706rem + 0.2941176471vw, 1.25rem);
  font-family: var(--ff-heading);
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
}
.parts-faq__q::before {
  content: "Q";
  position: absolute;
  top: 0;
  left: 0;
  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;
  width: 70px;
  height: 100%;
  background-color: var(--c-primary);
  color: #fff;
  font-size: clamp(1.125rem, 1.0661764706rem + 0.2941176471vw, 1.375rem);
  font-weight: 700;
}
.parts-faq__q span::before, .parts-faq__q span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 20px;
  height: 3px;
  background-color: var(--c-primary);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.parts-faq__q span::before {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.parts-faq__q span::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.parts-faq__q.open span::after {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}
.parts-faq__a {
  display: none;
  padding: 25px 30px;
  background-color: #F4F4F4;
  line-height: 1.7;
}
.parts-faq__a div *:last-child {
  margin-bottom: 0 !important;
}

.top-recruit {
  padding: min(10vw, 100px) var(--space-content);
}
.top-recruit__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(6vw, 60px);
  max-width: 1200px;
  margin: auto;
}
@media (max-width: 768px) {
  .top-recruit__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.top-recruit__fig {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 44%;
          flex: 0 0 44%;
}
@media (max-width: 768px) {
  .top-recruit__fig {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
.top-recruit__fig img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .top-recruit__fig img {
    padding: 0 var(--space-content);
    margin: auto;
  }
}
.top-recruit__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.top-recruit__text h2 {
  font-size: clamp(1.375rem, 1.1838235294rem + 0.9558823529vw, 2.1875rem);
  font-weight: 700;
  color: var(--c-secondary);
}
.top-recruit__text .sub-title {
  font-size: clamp(1rem, 0.9705882353rem + 0.1470588235vw, 1.125rem);
  line-height: 1.8;
  font-weight: 600;
}
.top-recruit__text .text-box {
  margin-top: min(2vw, 15px);
}
.top-recruit__text .text-box p {
  line-height: 1.8;
  color: var(--c-text);
}
.top-recruit__text .more {
  margin-top: min(6vw, 60px);
}

.top-insta {
  padding: min(10vw, 100px) var(--space-content);
  background-color: #757575;
}
.top-insta h2 {
  color: #fff;
  font-size: clamp(2.125rem, 1.8897058824rem + 1.1764705882vw, 3.125rem);
  font-family: var(--ff-eng);
  font-weight: 700;
  text-align: center;
}
.top-insta__inner {
  max-width: 1200px;
  margin: auto;
}

.top-post {
  padding: min(10vw, 100px) var(--space-content);
  background-color: #F8F8F8;
}
.top-post__inner {
  max-width: 1200px;
  margin: auto;
}
.top-post h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 10px;
  margin-bottom: clamp(1rem, 0.8823529412rem + 0.5882352941vw, 1.5rem);
  font-weight: 700;
  font-size: clamp(0.75rem, 0.7058823529rem + 0.2205882353vw, 0.9375rem);
}
.top-post h2 span {
  color: var(--c-primary);
  font-size: clamp(1.875rem, 1.6544117647rem + 1.1029411765vw, 2.8125rem);
  font-family: var(--ff-eng);
}
.top-post__list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid #D8D8D8;
  background: #fff;
}
.top-post__list li {
  border-bottom: 1px solid #E8E8E8;
}
.top-post__list li:last-child {
  border-bottom: none;
}
.top-post__list a {
  display: block;
  padding: 14px 20px;
  text-decoration: none;
  color: inherit;
  font-size: clamp(0.8125rem, 0.7977941176rem + 0.0735294118vw, 0.875rem);
  line-height: 1.6;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.top-post__list a:hover {
  background: #F8F8F8;
}
.top-post__list time {
  display: block;
  margin-bottom: 4px;
  color: #888;
  font-size: clamp(0.6875rem, 0.6727941176rem + 0.0735294118vw, 0.75rem);
}
.top-post__list p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .top-post__list p {
    overflow: visible;
    white-space: normal;
    text-overflow: unset;
  }
}
.top-post__more {
  margin-top: clamp(0.75rem, 0.6911764706rem + 0.2941176471vw, 1rem);
  text-align: right;
}
.top-post__more a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  color: inherit;
  font-size: clamp(0.75rem, 0.7205882353rem + 0.1470588235vw, 0.875rem);
  font-weight: 500;
  text-decoration: none;
}
.top-post__more a::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-top: 2px;
  background-color: currentColor;
  -webkit-mask-image: url("/wp-content/uploads/parts/i_arrow_r5.svg");
          mask-image: url("/wp-content/uploads/parts/i_arrow_r5.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.top-post__more a:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .top-post__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer-floating {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 17px 10px 12px;
  background-color: #F4F4F4;
  font-size: clamp(1rem, 0.9117647059rem + 0.4411764706vw, 1.375rem);
}
@media (max-width: 768px) {
  .footer-floating {
    padding: 10px;
  }
}
.footer-floating__text {
  margin-bottom: 15px;
  font-weight: 700;
  text-align: center;
}
.footer-floating__text::before {
  content: "＼";
  padding-right: 10px;
}
.footer-floating__text::after {
  content: "／";
  padding-left: 10px;
}
@media (max-width: 768px) {
  .footer-floating__text {
    display: none;
  }
}
.footer-floating__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: min(3vw, 30px);
}
@media (max-width: 992px) {
  .footer-floating__box {
    display: none;
  }
}
.footer-floating__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--c-primary);
  font-size: clamp(1.875rem, 1.7279411765rem + 0.7352941176vw, 2.5rem);
  font-family: var(--ff-eng);
}
.footer-floating__tel span {
  position: relative;
  padding-left: 33px;
}
.footer-floating__tel span::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 13px);
  width: 32px;
  height: 32px;
  background-color: var(--c-primary);
  -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.4s ease;
  transition: all 0.4s ease;
}
.footer-floating__line, .footer-floating__contact {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
}
.footer-floating__line::before, .footer-floating__contact::before {
  content: "";
  position: absolute;
  right: 15px;
  top: calc(50% - 7px);
  width: 14px;
  height: 14px;
  background-color: #fff;
  -webkit-mask-image: url("/wp-content/uploads/parts/i_arrow_r3.svg");
          mask-image: url("/wp-content/uploads/parts/i_arrow_r3.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;
}
.footer-floating__line {
  padding: 15px 45px 15px 15px;
  background-color: #06C755;
  border-radius: 100px;
  color: #fff;
  font-size: clamp(1.1875rem, 1.0992647059rem + 0.4411764706vw, 1.5625rem);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.footer-floating__line span {
  position: relative;
  padding-left: 36px;
}
.footer-floating__line span::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 13px);
  width: 30px;
  height: 30px;
  background-color: #fff;
  -webkit-mask-image: url("/wp-content/uploads/parts/i_line2.svg");
          mask-image: url("/wp-content/uploads/parts/i_line2.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;
}
.footer-floating__line:hover {
  background-color: #039D42;
}
.footer-floating__contact {
  padding: 15px 45px 15px 15px;
  background: var(--c-gra);
  border-radius: 100px;
  color: #fff;
  font-size: clamp(1rem, 0.9411764706rem + 0.2941176471vw, 1.25rem);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.footer-floating__contact span {
  position: relative;
  padding-left: 36px;
}
.footer-floating__contact span::before {
  content: "";
  position: absolute;
  left: 5px;
  top: calc(50% - 9px);
  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.4s ease;
  transition: all 0.4s ease;
}
.footer-floating__contact:hover {
  opacity: 0.8;
}
.footer-floating__box--sp {
  display: none;
}
@media (max-width: 992px) {
  .footer-floating__box--sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
  }
}
.footer-floating__box--sp .footer-floating__tel,
.footer-floating__box--sp .footer-floating__line,
.footer-floating__box--sp .footer-floating__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 33.3333%;
}
.footer-floating__box--sp .footer-floating__tel {
  color: #fff;
  background-color: var(--c-primary);
  padding: 10px;
  font-size: 12px;
}
.footer-floating__box--sp .footer-floating__tel span {
  padding: 24px 0 0;
}
.footer-floating__box--sp .footer-floating__tel span::before {
  top: 0;
  left: 0;
  right: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  background-color: #fff;
}
.footer-floating__box--sp .footer-floating__line,
.footer-floating__box--sp .footer-floating__contact {
  padding: 10px;
  font-size: 12px;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.footer-floating__box--sp .footer-floating__line::before,
.footer-floating__box--sp .footer-floating__contact::before {
  content: none;
}
.footer-floating__box--sp .footer-floating__line span,
.footer-floating__box--sp .footer-floating__contact span {
  padding: 24px 0 0;
}
.footer-floating__box--sp .footer-floating__line span::before,
.footer-floating__box--sp .footer-floating__contact span::before {
  top: 0;
  left: 0;
  right: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  background-color: #fff;
}

.p-pagetop {
  bottom: 115px;
}
@media (max-width: 768px) {
  .p-pagetop {
    bottom: 76px;
  }
}

.footer-contact {
  background: url(/wp-content/uploads/bg_contact.webp) no-repeat center center;
  background-size: cover;
  color: #fff;
}
.footer-contact__inner {
  padding: min(12vw, 120px) min(5vw, 50px);
}
.footer-contact__title {
  display: table;
  margin: 0 auto min(3vw, 30px);
  font-size: clamp(1.625rem, 1.4191176471rem + 1.0294117647vw, 2.5rem);
  font-weight: 500;
}
.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: 38px;
}
.footer-contact__tel span::after {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 14px);
  width: 32px;
  height: 32px;
  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__line, .footer-contact__mail {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 400px;
  margin: auto;
}
.footer-contact__line a, .footer-contact__mail a {
  display: block;
  width: 100%;
  padding: 20px 15px 20px 15px;
  border-radius: 100px;
  color: #fff;
  font-size: clamp(1.1875rem, 1.0992647059rem + 0.4411764706vw, 1.5625rem);
  text-align: center;
  -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.footer-contact__line {
  margin-top: min(2vw, 20px);
}
.footer-contact__line a {
  background-color: #06C755;
}
.footer-contact__line a:hover {
  background-color: #039D42;
}
.footer-contact__line span {
  position: relative;
  padding-left: 36px;
}
.footer-contact__line span::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 13px);
  width: 30px;
  height: 30px;
  background-color: #fff;
  -webkit-mask-image: url("/wp-content/uploads/parts/i_line2.svg");
          mask-image: url("/wp-content/uploads/parts/i_line2.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;
}
.footer-contact__mail a {
  background: var(--c-gra);
}
.footer-contact__mail a:hover {
  opacity: 0.8;
}
.footer-contact__mail span {
  position: relative;
  padding-left: 36px;
}
.footer-contact__mail span::before {
  content: "";
  position: absolute;
  left: 5px;
  top: calc(50% - 9px);
  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.4s ease;
  transition: all 0.4s ease;
}

.l-footer {
  padding-bottom: 115px;
}
@media (max-width: 768px) {
  .l-footer {
    padding-bottom: 76px;
  }
}
.l-footer .p-info__logo img {
  max-width: 220px;
}
@media (max-width: 576px) {
  .l-footer .p-info__logo img {
    max-width: 140px;
  }
}
/*# sourceMappingURL=custom.css.map */