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

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

:root {
  --c-base: #fff;
  --c-primary: #003557;
  --c-primary-rgb: 0,53,87;
  --c-secondary: #0067A9;
  --c-accent: #E2171A;
  --space-content: clamp(20px, 6vw, 70px);
  --c-gra: linear-gradient(90deg, #FF9E36, #FE3827);
  --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: "Zen Kaku Gothic New","游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  --ff-midashi: "Zen Kaku Gothic New", serif;
  --ff-serif: "Zen Old Mincho","游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

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

.grecaptcha-badge {
  visibility: hidden;
}

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

.js-ani.ani-item > * {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 2s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 2s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 2s ease-out, transform 0.8s ease-out;
  transition: opacity 2s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.js-ani.ani-item.js-ani-on > * {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.js-ani.ani-item.js-ani-on > *:nth-child(1) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.js-ani.ani-item.js-ani-on > *:nth-child(2) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.js-ani.ani-item.js-ani-on > *:nth-child(3) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.js-ani.ani-item.js-ani-on > *:nth-child(4) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.js-ani.ani-item.js-ani-on > *:nth-child(5) {
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}
.js-ani.ani-item.js-ani-on > *:nth-child(6) {
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}
.js-ani.ani-item.js-ani-on > *:nth-child(7) {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
.js-ani.ani-item.js-ani-on > *:nth-child(8) {
  -webkit-transition-delay: 1.7s;
          transition-delay: 1.7s;
}
.js-ani.ani-item.js-ani-on > *:nth-child(9) {
  -webkit-transition-delay: 1.9s;
          transition-delay: 1.9s;
}
.js-ani.ani-item.js-ani-on > *:nth-child(10) {
  -webkit-transition-delay: 2.1s;
          transition-delay: 2.1s;
}

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

.passingBarTextLine {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50%, #434343));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, #434343 50%);
  background-position: 100% 0;
  background-size: 201%;
  display: inline;
  overflow: hidden;
  -webkit-transition: 2s;
  transition: 2s;
}
.passingBarTextLine.js-ani-on {
  background-position: 0 0%;
}

@-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;
  background: #fff;
  clip-path: inset(0 100% 0 0);
}
.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 .reveal__text {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.reveal.js-ani-on.reveal--delay2 .reveal__text {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.reveal.js-ani-on.reveal--delay3 .reveal__text {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.reveal.js-ani-on.reveal--delay4 .reveal__text {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.reveal.js-ani-on.reveal--delay5 .reveal__text {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.reveal.reveal--fast.js-ani-on .reveal__text {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}
.reveal.reveal--slow.js-ani-on .reveal__text {
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
}

/*
HTML使用例:
<!-- 基本 -->
<div class="reveal js-ani">
  <span class="reveal__text">基本のテキスト</span>
</div>

<!-- 遅延付き -->
<div class="reveal reveal--delay1 js-ani">
  <span class="reveal__text">遅延1のテキスト</span>
</div>

<!-- スピード調整 -->
<div class="reveal reveal--fast js-ani">
  <span class="reveal__text">高速アニメーション</span>
</div>
*/
@-webkit-keyframes passingBar {
  0% {
    left: 0;
    width: 0;
  }
  100% {
    left: 0;
    width: 100%;
  }
}
@keyframes passingBar {
  0% {
    left: 0;
    width: 0;
  }
  100% {
    left: 0;
    width: 100%;
  }
}
@-webkit-keyframes passingBarIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes passingBarIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.passingBarIn {
  opacity: 0;
}

.passingBar.js-ani-on {
  opacity: 1;
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.passingBar.js-ani-on::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-animation: passingBar 1s ease 0s 1 normal forwards;
          animation: passingBar 1s ease 0s 1 normal forwards;
  /* 任意の値 */
  background: #fff;
}
.passingBar.js-ani-on .passingBarIn {
  -webkit-animation: passingBarIn 0s ease 0.5s 1 normal forwards;
          animation: passingBarIn 0s ease 0.5s 1 normal forwards;
}
.passingBar.js-ani-on.delay1::before {
  -webkit-animation: passingBar 1s ease 0.2s 1 normal forwards;
          animation: passingBar 1s ease 0.2s 1 normal forwards;
}
.passingBar.js-ani-on.delay1 .passingBarIn {
  -webkit-animation: passingBarIn 0.3s ease 0.7s 1 normal forwards;
          animation: passingBarIn 0.3s ease 0.7s 1 normal forwards;
}
.passingBar.js-ani-on.delay2::before {
  -webkit-animation: passingBar 1s ease 0.4s 1 normal forwards;
          animation: passingBar 1s ease 0.4s 1 normal forwards;
}
.passingBar.js-ani-on.delay2 .passingBarIn {
  -webkit-animation: passingBarIn 0s ease 0.9s 1 normal forwards;
          animation: passingBarIn 0s ease 0.9s 1 normal forwards;
}
.passingBar.js-ani-on.delay3::before {
  -webkit-animation: passingBar 1s ease 0.6s 1 normal forwards;
          animation: passingBar 1s ease 0.6s 1 normal forwards;
}
.passingBar.js-ani-on.delay3 .passingBarIn {
  -webkit-animation: passingBarIn 0s ease 1.2s 1 normal forwards;
          animation: passingBarIn 0s ease 1.2s 1 normal forwards;
}

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

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

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

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

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

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

.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: var(--c-primary);
    -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-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;
}
.p-info__address {
  margin-bottom: 0;
}
.p-info__logo {
  margin-bottom: 10px;
}
.p-info__logo img {
  width: 210px;
}
@media (max-width: 768px) {
  .p-info__logo img {
    width: 138px;
  }
}

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

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

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

.c-accent {
  color: var(--c-accent);
}

@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: inline-block;
  position: relative;
  z-index: 1;
  padding: 14px 60px 14px 50px;
  background: var(--c-primary);
  border-radius: 5px;
  color: #fff;
  font-size: clamp(1rem, 0.9705882353rem + 0.1470588235vw, 1.125rem);
  font-weight: 400;
  text-decoration: 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;
  border-radius: 2px;
  background: #fff;
  -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% - 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;
}
.more a:hover {
  color: var(--c-primary);
}
.more a:hover::before {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.more a:hover::after {
  background-color: var(--c-primary);
}

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

body {
  font-family: var(--ff-base) !important;
  -webkit-text-size-adjust: 100%;
}
.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;
  }
}
.l-header__logo img {
  width: 210px;
}
@media (max-width: 1199px) {
  .l-header__logo {
    padding-left: 0;
  }
  .l-header__logo img {
    width: 160px;
  }
}
@media (max-width: 576px) {
  .l-header__logo img {
    width: 138px;
  }
}
.l-header .p-global-nav {
  margin-left: auto;
  margin-right: min(3vw, 30px);
}
.l-header .header-contact a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
  padding: 18px 20px;
  background: #fff;
  color: #fff;
  background: #E21818;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-box-shadow: inset -6px -6px 8px rgba(243, 137, 0, 0.5);
          box-shadow: inset -6px -6px 8px rgba(243, 137, 0, 0.5);
}
.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;
  border-radius: 6px;
  background: #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
}
.l-header .header-contact a span {
  position: relative;
  padding-left: 20px;
  padding-right: 15px;
}
.l-header .header-contact a span::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 5px);
  width: 16px;
  height: 12px;
  background-color: #fff;
  -webkit-mask-image: url("/wp-content/uploads/parts/i_mail2.svg");
          mask-image: url("/wp-content/uploads/parts/i_mail2.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.l-header .header-contact a span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 4px;
  height: 4px;
  margin: auto;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.l-header .header-contact a:hover {
  color: var(--c-primary);
}
.l-header .header-contact a:hover::before {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.l-header .header-contact a:hover span::before {
  background-color: var(--c-primary);
}
.l-header .header-contact a:hover span::after {
  border-top: 1px solid var(--c-primary);
  border-right: 1px solid var(--c-primary);
}
@media (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: #fff;
    -webkit-mask-image: url("/wp-content/uploads/parts/i_mail2.svg");
            mask-image: url("/wp-content/uploads/parts/i_mail2.svg");
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  .l-header .header-contact a::after {
    content: "Contact";
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    color: #fff;
    font-size: 9px;
    text-align: center;
  }
  .l-header .header-contact a span {
    display: none;
  }
}

.p-global-nav .sp-show {
  display: none;
}
@media only screen and (max-width: 1199px) {
  .p-global-nav .sp-show {
    display: block;
  }
  .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 {
  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: 10%;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 80%;
  margin: auto;
}
@media (max-width: 768px) {
  .mv__copy {
    max-width: 80%;
  }
}
.mv__text-box div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--c-primary);
  font-size: clamp(1.125rem, 0.5073529412rem + 3.0882352941vw, 3.75rem);
  font-weight: 900;
}
.mv__text-box div + div {
  margin-top: 10px;
}
.mv__text-box div .reveal__text {
  display: block;
  padding: 5px min(1vw, 15px) 7px;
}
.mv__copy-img {
  max-width: 50%;
}
.home .p-cb {
  padding-top: 0;
}

.title .reveal__text {
  padding: 5px;
  background-color: var(--c-accent);
  color: #fff;
  font-weight: 700;
}

.top-about {
  padding-right: var(--space-content);
  background: url(/wp-content/uploads/illust001.png) no-repeat right -200px bottom;
  background-size: 20%;
  -webkit-transition: all 1.6s;
  transition: all 1.6s;
}
@media (max-width: 768px) {
  .top-about {
    padding-bottom: min(6vw, 60px);
    padding-left: var(--space-content);
    background-size: 40%;
  }
}
.top-about.js-ani-on {
  background-position: right bottom;
}
.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-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 768px) {
  .top-about__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top-about__img {
  position: relative;
  z-index: -1;
  width: calc(50% + 120px);
  margin-right: -120px;
  clip-path: polygon(0 0, 100% 0, 60% 100%, 0% 100%);
}
.top-about__img img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .top-about__img {
    width: 100%;
    margin-right: 0;
    clip-path: polygon(0 10%, 100% 0, 90% 100%, 5% 100%);
  }
}
.top-about__box {
  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;
  z-index: 1;
  width: 50%;
  max-width: 520px;
  padding: min(6vw, 60px) 0;
}
@media (max-width: 768px) {
  .top-about__box {
    width: 100%;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    padding-bottom: 15px;
  }
}
.top-about .h-box {
  margin-left: -120px;
}
.top-about .h-box .sub-title {
  margin-bottom: 8px;
  font-size: clamp(1rem, 0.8676470588rem + 0.6617647059vw, 1.5625rem);
}
.top-about .h-box h2 {
  font-size: clamp(1.25rem, 1.0294117647rem + 1.1029411765vw, 2.1875rem);
}
.top-about .h-box h2 .t1 {
  font-size: clamp(1.125rem, 0.9485294118rem + 0.8823529412vw, 1.875rem);
}
@media (max-width: 768px) {
  .top-about .h-box {
    margin-left: 0;
  }
}
.top-about .text-box {
  font-size: clamp(1rem, 0.9705882353rem + 0.1470588235vw, 1.125rem);
  line-height: 1.4;
}
.top-about .text-box p {
  text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff;
}
.top-about .more {
  margin-top: min(4vw, 40px);
}

.top-style {
  padding: min(10vw, 100px) var(--space-content) min(20vw, 200px);
  background: #F7F2E7 url(/wp-content/uploads/illust003.png) no-repeat center bottom;
  background-size: contain;
}
.top-style__box {
  max-width: 800px;
  margin: 0 auto 3em;
}
.top-style__box .h-box {
  padding-bottom: 50px;
  margin-bottom: 2em;
  background: url(/wp-content/uploads/illust002.png) no-repeat -100px bottom;
  text-align: center;
  background-position: bottom 100px;
  -webkit-transition: all 1.6s;
  transition: all 1.6s;
}
@media (max-width: 768px) {
  .top-style__box .h-box {
    background-size: 60px;
  }
}
.top-style__box .h-box.js-ani-on {
  background-position: center bottom;
}
.top-style__box h2 {
  font-size: clamp(1rem, 0.8676470588rem + 0.6617647059vw, 1.5625rem);
}
.top-style__box h3 {
  margin-bottom: 0.5em;
  font-size: clamp(1.375rem, 1.1838235294rem + 0.9558823529vw, 2.1875rem);
  line-height: 1.3;
}
.top-style__box h3 span {
  background: transparent;
}
.top-style__box .text-box {
  line-height: 1.4;
}
.top-style__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: min(4vw, 20px);
  max-width: 1200px;
  margin: auto;
}
.top-style__inner .item {
  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(25% - min(4vw, 20px) * 3 / 4);
}
.top-style__inner .item__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: min(3vw, 30px);
  background-color: var(--c-primary);
  color: #fff;
  line-height: 1.4;
}
.top-style__inner .item h4 {
  margin-bottom: 0.5em;
  font-size: clamp(1rem, 0.9117647059rem + 0.4411764706vw, 1.375rem);
}
@media (max-width: 992px) {
  .top-style__inner .item {
    width: calc(50% - min(4vw, 20px) * 1 / 2);
  }
}
@media (max-width: 992px) and (max-width: 374px) {
  .top-style__inner .item {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .top-service {
    padding-top: min(10vw, 100px);
  }
}
.top-service__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-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: var(--space-content);
}
@media (max-width: 768px) {
  .top-service__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: var(--space-content);
    margin-bottom: 40px;
  }
}
.top-service__inner:nth-of-type(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-right: 0;
  padding-left: var(--space-content);
}
@media (max-width: 768px) {
  .top-service__inner:nth-of-type(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: var(--space-content);
  }
}
.top-service__inner:nth-of-type(2) .top-service__img {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
}
@media (max-width: 768px) {
  .top-service__inner:nth-of-type(2) .top-service__img {
    clip-path: polygon(0 0, 100% 10%, 90% 100%, 5% 100%);
  }
}
.top-service__inner:nth-of-type(2) .top-service__box {
  padding: min(6vw, 60px) min(6vw, 60px) min(6vw, 60px) 0;
}
@media (max-width: 768px) {
  .top-service__inner:nth-of-type(2) .top-service__box {
    padding-right: 0;
  }
}
.top-service__img {
  width: calc(50% + 60px);
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
}
.top-service__img img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .top-service__img {
    width: 100%;
    clip-path: polygon(0 10%, 100% 0, 90% 100%, 5% 100%);
  }
}
.top-service__box {
  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;
  z-index: 1;
  width: calc(50% - 60px);
  max-width: 520px;
  padding: min(6vw, 60px) 0 min(6vw, 60px) min(6vw, 60px);
}
@media (max-width: 768px) {
  .top-service__box {
    width: 100%;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    padding-bottom: 15px;
    padding-left: 0;
  }
}
.top-service h2 {
  font-size: clamp(1.25rem, 1.0294117647rem + 1.1029411765vw, 2.1875rem);
}
.top-service h2.title .reveal__text {
  padding: 10px 15px;
}
.top-service .text-box {
  font-size: clamp(1rem, 0.9705882353rem + 0.1470588235vw, 1.125rem);
  line-height: 1.4;
}
.top-service .text-box p {
  text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff;
}
.top-service .more {
  margin-top: min(4vw, 40px);
}

.top-features {
  padding: min(15vw, 150px) var(--space-content) min(18vw, 180px);
  background: #F7F2E7 url(/wp-content/uploads/illust004.png) no-repeat center bottom;
  background-size: contain;
}
@media (max-width: 768px) {
  .top-features {
    background-size: 140%;
  }
}
.top-features__box {
  max-width: 800px;
  margin: 0 auto 3em;
}
.top-features__box .h-box {
  padding-bottom: 50px;
  margin-bottom: 2em;
  background: url(/wp-content/uploads/illust002.png) no-repeat -100px bottom;
  text-align: center;
  background-position: bottom 100px;
  -webkit-transition: all 1.6s;
  transition: all 1.6s;
}
@media (max-width: 768px) {
  .top-features__box .h-box {
    background-size: 60px;
  }
}
.top-features__box .h-box.js-ani-on {
  background-position: center bottom;
}
.top-features__box h2 {
  font-size: clamp(1rem, 0.8676470588rem + 0.6617647059vw, 1.5625rem);
}
.top-features__box h3 {
  margin-bottom: 0.5em;
  font-size: clamp(1.375rem, 1.1838235294rem + 0.9558823529vw, 2.1875rem);
  line-height: 1.3;
}
.top-features__box h3 span {
  background: transparent;
}
.top-features__box .text-box {
  line-height: 1.4;
}
.top-features__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: min(4vw, 20px);
  max-width: 1200px;
  margin: auto;
}
.top-features__inner .item {
  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(33.3333333333% - min(4vw, 20px) * 2 / 3);
}
.top-features__inner .item figure {
  margin-bottom: 1em;
}
.top-features__inner .item__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1.4;
}
.top-features__inner .item h4 {
  padding-bottom: 0.3em;
  margin-bottom: 0.5em;
  border-bottom: 1px solid var(--c-primary);
  color: var(--c-primary);
  font-size: clamp(1.125rem, 1.0661764706rem + 0.2941176471vw, 1.375rem);
  font-weight: 500;
}
@media (max-width: 768px) {
  .top-features__inner {
    gap: 40px;
  }
  .top-features__inner .item {
    width: 100%;
    max-width: 570px;
    margin: auto;
  }
}

.top-info {
  padding: min(15vw, 150px) var(--space-content) min(15vw, 150px);
  background: #F7F2E7 url(/wp-content/uploads/top_img012.jpg) no-repeat center top;
  background-size: cover;
}
@media (max-width: 768px) {
  .top-info {
    background-position: right 25% top;
    background-size: cover;
  }
}
.top-info h2 {
  margin-bottom: min(10vw, 80px);
  text-align: center;
  font-size: clamp(1.25rem, 1.0294117647rem + 1.1029411765vw, 2.1875rem);
}
.top-info h2 span {
  padding: 0 4px 2px 4px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(0%, #FCF12A));
  background: linear-gradient(transparent 50%, #FCF12A 0%);
}
.top-info__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: min(3vw, 60px);
  max-width: 1200px;
  margin: auto;
}
.top-info__inner .item {
  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: calc(33.3333333333% - min(3vw, 60px) * 2 / 3);
  height: 100%;
  max-height: 360px;
  background-color: var(--c-primary);
  background: linear-gradient(135deg, #07466E 0%, #07466E 50%, #003557 50%, #003557 100%);
  color: #fff;
  font-size: clamp(1rem, 0.8676470588rem + 0.6617647059vw, 1.5625rem);
  font-weight: 700;
  text-align: center;
  aspect-ratio: 1/1;
}
@media (max-width: 768px) {
  .top-info__inner .item {
    width: calc(50% - min(3vw, 60px) / 2);
  }
}
.top-info__inner .item__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: min(10vw, 91px);
}
.top-info__inner .item__img img {
  height: min(8vw, 91px);
  margin-bottom: 1em;
  -o-object-fit: contain;
     object-fit: contain;
}
.top-info__inner figure {
  -webkit-transform: translateY(4%);
          transform: translateY(4%);
}

.top-link {
  padding: min(10vw, 100px) var(--space-content) min(10vw, 100px);
}
.top-link__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(3vw, 60px);
  max-width: 1200px;
  margin: auto;
}
.top-link__box {
  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(3vw, 60px) / 2);
}
.top-link__box .text-box {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-bottom: min(6vw, 30px);
  line-height: 1.4;
}
.top-link figcaption {
  width: calc(100% - 80px);
  padding: 15px 10px;
  margin: 0 40px;
  background-color: var(--c-accent);
  color: #fff;
  font-size: clamp(1.125rem, 0.9485294118rem + 0.8823529412vw, 1.875rem);
  font-weight: 700;
  text-align: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.top-link .more a {
  width: 100%;
  text-align: center;
}

.mk-post01 {
  padding: min(10vw, 80px) 15px;
  background-color: #F7F2E7;
}
.mk-post01--blog {
  background-color: #F4F4F4;
}
.mk-post01__inner {
  max-width: 1200px;
  margin: auto;
}
.mk-post01__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin-bottom: min(6vw, 60px);
}
@media (max-width: 576px) {
  .mk-post01__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.mk-post01 h2 {
  margin-bottom: 0;
  color: var(--c-primary);
  font-size: clamp(1.25rem, 1.1029411765rem + 0.7352941176vw, 1.875rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
.mk-post01 h2 span {
  display: block;
  margin: auto;
  color: var(--c-accent);
  text-align: center;
  font-size: clamp(0.8125rem, 0.7830882353rem + 0.1470588235vw, 0.9375rem);
  font-weight: normal;
}
.mk-post01__btn {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
@media (max-width: 576px) {
  .mk-post01__btn {
    position: relative;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    margin: 20px auto 0;
  }
}
.mk-post01__btn a {
  padding: 10px 40px 10px 30px;
  font-size: 14px;
}
.mk-post01__btn a::after {
  top: calc(50% - 5px);
  width: 10px;
  height: 10px;
}
.mk-post01 .news-box {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.mk-post01 .news-box li {
  list-style-type: none;
  line-height: 1.7;
}
.mk-post01 .news-box li:first-child a {
  border-top: 1px solid #ddd;
}
.mk-post01 .news-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  padding: 10px 30px 10px 10px;
  border-bottom: 1px solid #ddd;
  color: var(--c-text);
  text-decoration: none;
  -webkit-transition: all, 0.6s;
  transition: all, 0.6s;
}
.mk-post01 .news-box a span.data {
  display: block;
  margin-right: 20px;
}
@media (min-width: 768px) {
  .mk-post01 .news-box a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .mk-post01 .news-box a span.data {
    display: inline-block;
  }
}
.mk-post01 .news-box a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 7px;
  height: 7px;
  margin: auto;
  border-top: 2px solid var(--c-secondary);
  border-right: 2px solid var(--c-secondary);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mk-post01 .news-box a:hover {
  background-color: rgba(255, 158, 54, 0.1);
}
@media (min-width: 576px) {
  .mk-post01 .news-box a {
    padding: 20px 40px 20px 20px;
  }
}
@media (min-width: 768px) {
  .mk-post01__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .mk-post01 .text-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 240px;
    margin: 0 20px 0 0;
  }
  .mk-post01 .text-box .box {
    margin-bottom: 0;
  }
  .mk-post01 .text-box .box p {
    display: block;
  }
  .mk-post01 h2 {
    font-size: 40px;
  }
}

.page-id-63 .footer-floating {
  display: none;
}
.page-id-63 .footer-floating .footer-fixed {
  display: block;
}

.req {
  display: inline-block;
  padding: 5px;
  margin-left: 10px;
  border-radius: 3px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  background-color: #f60;
}

.estimate-form table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.estimate-form table td {
  padding: 8px;
  vertical-align: top;
  border: 1px solid #ddd;
}
.estimate-form table td:first-child {
  background-color: #f9f9f9;
  font-weight: bold;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .estimate-form table td:first-child {
    background-color: #f9f9f9;
    padding-bottom: 4px;
  }
}
@media (max-width: 768px) {
  .estimate-form table td {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
  }
}
.estimate-form .form-control {
  width: 100%;
  padding: 6px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.estimate-form .form-control-sm {
  width: 60px;
  padding: 4px 8px;
  font-size: 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
}
@media (max-width: 768px) {
  .estimate-form .form-control-sm {
    width: 80px;
  }
}
.estimate-form .btn-primary {
  background-color: #007cba;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}
.estimate-form .btn-primary:hover {
  background-color: #005a87;
}
.estimate-form h3 {
  background-color: var(--c-primary);
  color: white;
  padding: 10px;
  margin: 20px 0 10px 0;
  border-radius: 4px;
}
.estimate-form h4 {
  background-color: #ffcc99;
  color: #333;
  padding: 8px;
  margin: 15px 0 10px 0;
  border-radius: 4px;
}
.estimate-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (max-width: 768px) {
  .estimate-form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.estimate-form__col4 {
  width: calc(33.3333333333% - 3.3333333333px);
}
@media (max-width: 768px) {
  .estimate-form__col4 {
    width: 100%;
  }
}
.estimate-form__col4 table td {
  display: block;
  width: 100%;
}
.estimate-form__col4 table td:first-child {
  font-weight: normal;
  white-space: initial;
}
.estimate-form__col4 table td p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 0;
}

.footer-contact {
  padding: min(15vw, 150px) 15px;
  background: url(/wp-content/uploads/bg-footer.jpg) no-repeat center center;
  background-size: cover;
  color: #fff;
}
.footer-contact__title {
  display: table;
  padding-bottom: 15px;
  margin: 0 auto 1em;
  font-size: clamp(1.625rem, 1.4779411765rem + 0.7352941176vw, 2.25rem);
  font-weight: 500;
  border-bottom: 1px solid #fff;
}
.footer-contact__text {
  margin-bottom: min(3vw, 30px);
  text-align: center;
  line-height: 1.6;
}
.footer-contact__tel {
  text-align: center;
  margin-bottom: min(6vw, 30px);
}
.footer-contact__tel a {
  color: #fff;
  font-size: clamp(1.875rem, 1.7279411765rem + 0.7352941176vw, 2.5rem);
  font-weight: 900;
  letter-spacing: 3px;
}
.footer-contact__tel span {
  position: relative;
  padding-left: 46px;
}
.footer-contact__tel span::after {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 14px);
  width: 36px;
  height: 36px;
  background-color: #fff;
  -webkit-mask-image: url("/wp-content/uploads/parts/i_tel2.svg");
          mask-image: url("/wp-content/uploads/parts/i_tel2.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media (max-width: 576px) {
  .footer-contact__tel span {
    padding-left: 30px;
  }
  .footer-contact__tel span::after {
    top: calc(50% - 10px);
    width: 26px;
    height: 26px;
  }
}
@media (max-width: 992px) {
  .footer-contact__tel {
    letter-spacing: 2px;
  }
}
.footer-contact__mail a {
  display: table;
  position: relative;
  padding: 13px min(5vw, 50px) 16px;
  margin: auto;
  background-color: var(--c-primary);
  border: 2px solid #fff;
  border-radius: 5px;
  color: #fff;
  font-size: clamp(1.125rem, 1.0661764706rem + 0.2941176471vw, 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% - 10px);
    width: 24px;
    height: 24px;
  }
}
.footer-contact__mail a:hover {
  background-color: #fff;
  border: 2px solid var(--c-primary);
  color: var(--c-primary);
}
.footer-contact__mail a:hover span::after {
  background: var(--c-primary);
}

.footer-floating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: min(1vw, 20px);
  position: fixed;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  right: 0;
  bottom: 70px;
  z-index: 2;
  width: 30%;
  max-width: 280px;
}
@media (max-width: 768px) {
  .footer-floating {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    right: 70px;
    bottom: 5px;
    max-width: none;
    max-width: 460px;
    padding-left: 10px;
    width: calc(100% - 70px);
  }
}
.footer-floating.footer-fixed {
  position: relative;
  bottom: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80%;
  max-width: none;
  margin: auto;
}
@media (max-width: 768px) {
  .footer-floating.footer-fixed {
    right: auto;
    max-width: 100%;
    width: 100%;
  }
}
/*# sourceMappingURL=custom.css.map */