@charset "UTF-8";
/* Rectangle 7 */
:root {
  --c-base: #fff;
  --c-primary: #1A4185;
  --c-primary-rgb: 26,65,133;
  --c-secondary: #0A165F;
  --c-tertiary: #C0DDC3;
  --c-accent: #FFE187;
  --space-content: clamp(20px, 6vw, 70px);
  --c-gra: linear-gradient(90deg, #1A4185 0%, #0A165F 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: "Roboto Condensed", sans-serif;
}

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

.grecaptcha-badge {
  visibility: hidden;
}

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

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

@keyframes textReveal {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0% 0 0);
  }
}
.reveal {
  position: relative;
  display: inline-block;
}
.reveal__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: 240px;
  padding: 22px 20px;
  margin: auto;
  background: var(--c-gra);
  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;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
}
.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);
}

.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;
}
.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: 100px;
  }
}
.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: 20px 50px 20px 30px;
  background: #fff;
  color: var(--c-primary);
  background: #fff;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--ff-serif);
  white-space: nowrap;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.l-header .header-contact a::before {
  content: "";
  position: absolute;
  right: 10px;
  top: calc(50% - 20px);
  width: 40px;
  height: 40px;
  background: var(--c-primary);
  border-radius: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.l-header .header-contact a::after {
  content: "";
  position: absolute;
  right: 21px;
  top: calc(50% - 8px);
  width: 15px;
  height: 15px;
  background-color: #fff;
  -webkit-mask-image: url("/wp-content/uploads/parts/i_arrow_r6.svg");
          mask-image: url("/wp-content/uploads/parts/i_arrow_r6.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: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.l-header .header-contact a > span {
  position: relative;
  padding-left: 23px;
  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: var(--c-primary);
  -webkit-mask-image: url("/wp-content/uploads/parts/i_mail2.svg");
          mask-image: url("/wp-content/uploads/parts/i_mail2.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.l-header .header-contact a:hover {
  color: #fff;
  background-color: var(--c-primary);
}
.l-header .header-contact a:hover::before {
  right: 5px;
  background-color: #fff;
}
.l-header .header-contact a:hover::after {
  right: 17px;
  background: var(--c-primary);
}
.l-header .header-contact a:hover > span::before {
  background-color: #fff;
}
@media (max-width: 1199px) {
  .l-header .header-contact {
    position: absolute;
    top: 6px;
    right: 60px;
  }
  .l-header .header-contact a {
    padding: 13px 50px 13px 30px;
    line-height: 1;
  }
  .l-header .header-contact a::before {
    right: 7px;
    top: calc(50% - 15px);
    width: 30px;
    height: 30px;
  }
  .l-header .header-contact a::after {
    right: 14px;
    top: calc(50% - 8px);
    width: 15px;
    height: 15px;
  }
  .l-header .header-contact a:hover::before {
    right: 7px;
  }
  .l-header .header-contact a:hover::after {
    right: 14px;
  }
}
@media (max-width: 576px) {
  .l-header .header-contact {
    top: 10px;
  }
  .l-header .header-contact a {
    position: relative;
    display: block;
    height: 40px;
    width: 46px;
    padding: 0;
    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: var(--c-primary);
    -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;
    bottom: -16px;
    width: 100%;
    margin: auto;
    color: var(--c-primary);
    font-size: 9px;
    text-align: center;
    -webkit-mask-image: none;
            mask-image: none;
    background: transparent;
  }
  .l-header .header-contact a span {
    display: none;
  }
  .l-header .header-contact a:hover {
    background-color: #fff;
  }
  .l-header .header-contact a:hover::before {
    background-color: var(--c-primary);
  }
  .l-header .header-contact a:hover::after {
    background: transparent;
  }
}
.l-header--fixed.is-active .header-contact a {
  border: 2px solid #fff;
}

@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%;
  mask-image: linear-gradient(135deg, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(135deg, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0) 100%);
  mask-size: 250% 250%;
  -webkit-mask-size: 250% 250%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: 130% 130%;
  -webkit-mask-position: 130% 130%;
}
@media (max-width: 768px) {
  .mv__copy p {
    left: 5%;
    bottom: 10%;
    max-width: 80%;
  }
}
.js-ani-mv .mv__copy p:nth-of-type(1) {
  -webkit-animation: mask-animation 1.5s linear forwards;
          animation: mask-animation 1.5s linear forwards;
}
.js-ani-mv .mv__copy p:nth-of-type(2) {
  -webkit-animation: mask-animation 2s linear forwards;
          animation: mask-animation 2s linear forwards;
}

@keyframes mask-animation {
  0% {
    mask-position: 130% 130%;
    -webkit-mask-position: 130% 130%;
  }
  100% {
    mask-position: 0 0;
    -webkit-mask-position: 0 0;
  }
}
.top-studio {
  background-color: #F4F4F4;
}
.top-studio__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .top-studio__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.top-studio__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 40%;
  background: url(/wp-content/uploads/bg001.webp) no-repeat right top;
  background-size: cover;
}
.top-studio__img img {
  margin-top: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .top-studio__img {
    width: 100%;
  }
}
.top-studio__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60%;
  max-width: 650px;
  padding: min(16vw, 160px) 0;
  padding-right: var(--space-content);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media (max-width: 768px) {
  .top-studio__text {
    width: 100%;
    max-width: none;
    padding-left: var(--space-content);
    margin: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.top-studio .h-box .sub-title {
  font-size: clamp(1.25rem, 1.1029411765rem + 0.7352941176vw, 1.875rem);
  font-weight: 800;
}
@media (max-width: 576px) {
  .top-studio .h-box .sub-title {
    font-size: clamp(0.875rem, 0.6397058824rem + 1.1764705882vw, 1.875rem);
  }
}
.top-studio .h-box h2 {
  margin-top: 10px;
  font-size: clamp(1.625rem, 1.4191176471rem + 1.0294117647vw, 2.5rem);
  font-weight: 800;
}
.top-studio .h-box h2 .t1 {
  margin-left: 5px;
  font-size: clamp(2.125rem, 1.8897058824rem + 1.1764705882vw, 3.125rem);
}
.top-studio .h-box h2 .t2 {
  font-size: clamp(1.1875rem, 1.0992647059rem + 0.4411764706vw, 1.5625rem);
}
@media (max-width: 576px) {
  .top-studio .h-box h2 {
    font-size: clamp(1.1875rem, 0.8786764706rem + 1.5441176471vw, 2.5rem);
  }
  .top-studio .h-box h2 .t1 {
    margin-left: 5px;
    font-size: clamp(1.3125rem, 0.8860294118rem + 2.1323529412vw, 3.125rem);
  }
  .top-studio .h-box h2 .t2 {
    font-size: clamp(0.875rem, 0.7132352941rem + 0.8088235294vw, 1.5625rem);
  }
}
.top-studio .more {
  margin-top: min(4vw, 40px);
}

.top-img001 img {
  width: 100%;
}

.top-menu h2 {
  padding: min(5vw, 50px) var(--space-content);
  margin-bottom: 0;
  background: var(--c-gra);
  color: #fff;
  font-size: clamp(1.625rem, 1.4191176471rem + 1.0294117647vw, 2.5rem);
  font-weight: 800;
  text-align: center;
}
.top-menu__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #DBDFED;
}
.top-menu__box:nth-of-type(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .top-menu__box:nth-of-type(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top-menu__box:nth-of-type(2) h3 {
  background: url(/wp-content/uploads/num02.webp) no-repeat left center;
  background-size: contain;
}
.top-menu__box:nth-of-type(3) h3 {
  background: url(/wp-content/uploads/num03.webp) no-repeat left center;
  background-size: contain;
}
@media (max-width: 768px) {
  .top-menu__box:nth-of-type(3) {
    padding-bottom: min(6vw, 40px);
  }
}
@media (max-width: 768px) {
  .top-menu__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top-menu__img {
  width: 50%;
}
.top-menu__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .top-menu__img {
    width: 100%;
    padding-left: min(6vw, 40px);
    padding-right: min(6vw, 40px);
  }
}
.top-menu__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50%;
  padding: min(6vw, 40px) min(6vw, 40px);
}
.top-menu__text .text-box {
  max-width: 540px;
  padding-right: var(--space-content);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media (max-width: 768px) {
  .top-menu__text {
    width: 100%;
  }
  .top-menu__text .text-box {
    max-width: none;
    padding-right: 0;
  }
}
.top-menu h3 {
  margin-bottom: 0;
  padding: 80px 0 40px;
  background: url(/wp-content/uploads/num01.webp) no-repeat left center;
  background-size: contain;
  font-size: clamp(1.1875rem, 1.0992647059rem + 0.4411764706vw, 1.5625rem);
  font-weight: 800;
}
.top-menu h3::before {
  content: "";
  position: relative;
  top: -2px;
  display: inline-block;
  margin-right: 5px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #000;
  vertical-align: middle;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.top-menu .more {
  margin-top: min(5vw, 50px);
}
.top-menu .more a {
  margin-left: 0;
}

.top-features {
  padding: min(15vw, 150px) var(--space-content) min(20vw, 200px);
  background: url(/wp-content/uploads/bg002.webp) no-repeat left bottom calc(min(40vw, 400px) * -1);
  background-size: cover;
}
@media (max-width: 1400px) {
  .top-features {
    background-position: 0 center;
    background-size: contain;
  }
}
@media (max-width: 768px) {
  .top-features {
    padding: min(10vw, 100px) var(--space-content) min(10vw, 100px);
    background-size: cover;
  }
}
.top-features .h-box {
  max-width: 680px;
  padding: min(6vw, 60px) 0 0;
  margin: 0 auto min(6vw, 60px);
  background: url(/wp-content/uploads/title001.webp) no-repeat center center;
  background-size: contain;
}
.top-features .h-box h2 {
  background: var(--c-gra);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(1.375rem, 1.1838235294rem + 0.9558823529vw, 2.1875rem);
  font-weight: 800;
  text-align: center;
}
.top-features__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(2vw, 20px);
  max-width: 1200px;
  margin: auto;
}
@media (max-width: 768px) {
  .top-features__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top-features__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.top-features__text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: min(5vw, 40px) min(3vw, 20px);
  background-color: #F8F8F8;
}
.top-features h3 {
  position: relative;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 24px;
  margin-bottom: min(3vw, 20px);
  font-weight: 800;
  font-size: clamp(1.25rem, 1.1764705882rem + 0.3676470588vw, 1.5625rem);
  line-height: 1.2;
}
.top-features h3 span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--c-gra);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(1rem, 0.9411764706rem + 0.2941176471vw, 1.25rem);
  font-family: var(--ff-eng);
  font-weight: 900;
}
.top-features h3 span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  background: var(--c-gra);
  border-radius: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.link-box {
  padding: min(15vw, 150px) var(--space-content);
  background-image: url("/wp-content/uploads/bg003.webp");
  background-size: cover;
  background-position: right top;
  background-attachment: fixed;
}
@media (max-width: 1200px) {
  .link-box {
    background-attachment: scroll;
  }
}
.link-box__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(5vw, 50px);
  max-width: 1200px;
  margin: auto;
}
@media (max-width: 768px) {
  .link-box__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.link-box__item {
  overflow: hidden;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  display: block;
  position: relative;
  padding: min(20vw, 200px) min(6vw, 30px) min(6vw, 30px);
  color: #fff;
  font-size: clamp(0.875rem, 0.8455882353rem + 0.1470588235vw, 1rem);
  text-decoration: none;
  -webkit-box-shadow: 0px 2px 40px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 2px 40px rgba(0, 0, 0, 0.15);
}
.link-box__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/wp-content/uploads/top_img009.webp);
  background-position: left center;
  background-size: cover;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
.link-box__item:nth-of-type(2)::before {
  background-image: url(/wp-content/uploads/top_img010.webp);
}
.link-box__item:hover::before {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.link-box__item:hover h3::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.link-box h3 {
  position: relative;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 24px;
  margin-bottom: min(3vw, 20px);
  font-size: clamp(1.25rem, 1.1764705882rem + 0.3676470588vw, 1.5625rem);
  line-height: 1.2;
}
.link-box h3 span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(1rem, 0.9411764706rem + 0.2941176471vw, 1.25rem);
  font-family: var(--ff-eng);
}
.link-box h3 span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.link-box__item-text {
  position: relative;
  z-index: 1;
}
.link-box__item-text p {
  line-height: 1.4;
}

.top-post {
  padding: min(10vw, 100px) var(--space-content);
  background-color: #F4F4F4;
}
.top-post__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(6vw, 60px);
  max-width: 1200px;
  margin: auto;
}
.top-post__box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.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 {
  background: var(--c-gra);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  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: 16px;
  height: 16px;
  background-color: currentColor;
  -webkit-mask-image: url("/wp-content/uploads/parts/i_arrow_r2.svg");
          mask-image: url("/wp-content/uploads/parts/i_arrow_r2.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-contact {
  background: var(--c-gra);
  color: #fff;
}
.footer-contact::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1050px;
  height: min(20vw, 200px);
  margin: auto;
  background: url(/wp-content/uploads/title_contact.webp) no-repeat center top;
  background-size: contain;
  mix-blend-mode: screen;
}
.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__mail a {
  display: table;
  position: relative;
  padding: 20px min(11vw, 60px) 20px min(11vw, 60px);
  margin: auto;
  border: min(0.2vw, 2px) solid #fff;
  border-radius: 100px;
  color: #fff;
  font-size: clamp(1rem, 0.9117647059rem + 0.4411764706vw, 1.375rem);
  font-weight: 700;
  line-height: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  text-align: center;
}
@media (max-width: 992px) {
  .footer-contact__mail a {
    display: table;
  }
}
.footer-contact__mail a span {
  position: relative;
  padding-left: 30px;
}
.footer-contact__mail a span::after {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 8px);
  width: 20px;
  height: 20px;
  background-color: #fff;
  -webkit-mask-image: url("/wp-content/uploads/parts/i_mail2.svg");
          mask-image: url("/wp-content/uploads/parts/i_mail2.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media (max-width: 576px) {
  .footer-contact__mail a span {
    padding-left: 30px;
  }
  .footer-contact__mail a span::after {
    top: calc(50% - 9px);
    width: 22px;
    height: 22px;
  }
}
.footer-contact__mail a:hover {
  background-color: #fff;
  border: 2px solid var(--c-primary);
  color: var(--c-primary);
}
.footer-contact__mail a:hover span::after {
  background-color: var(--c-primary);
}

.fixed-contact {
  position: fixed;
  right: 0;
  top: 40%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 100;
}
.fixed-contact__item {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 52px;
  padding: 16px 0 12px;
  text-decoration: none;
  gap: 8px;
  position: relative;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.fixed-contact__item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  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;
}
.fixed-contact__item:hover {
  opacity: 0.8;
}
.fixed-contact__item--inquiry {
  background-color: #333;
  padding-top: 42px;
}
.fixed-contact__item--campaign {
  background-color: #cc0000;
  padding-top: 42px;
}
.fixed-contact__item--campaign::before {
  -webkit-mask-image: url("/wp-content/uploads/parts/i_campaign.svg");
          mask-image: url("/wp-content/uploads/parts/i_campaign.svg");
}
.fixed-contact__item--line {
  background-color: #06c755;
  padding-top: 42px;
}
.fixed-contact__item--line::before {
  -webkit-mask-image: url("/wp-content/uploads/parts/i_line2.svg");
          mask-image: url("/wp-content/uploads/parts/i_line2.svg");
}
.fixed-contact__label {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
.fixed-contact__label .upright {
  text-orientation: upright;
}
@media (max-width: 768px) {
  .fixed-contact {
    right: auto;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    -webkit-transform: none;
            transform: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .fixed-contact__item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: auto;
    padding: 10px 4px 8px;
    gap: 5px;
  }
  .fixed-contact__item::before {
    position: static;
    -webkit-transform: none;
            transform: none;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .fixed-contact__item--inquiry {
    padding-top: 10px;
  }
  .fixed-contact__item--line {
    padding-top: 10px;
  }
  .fixed-contact__label {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    font-size: 10px;
    text-align: center;
  }
}

.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 */