@import url('https://fonts.googleapis.com/css2?family=Goblin+One&family=M+PLUS+1:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Overlock+SC&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inknut+Antiqua:wght@300;400;500;600;700;800;900&display=swap');

body {
  font-family: "M PLUS 1", serif;
}

.mv {
  height: 100vh;
  position: relative;
  max-width: 1400px;
  padding-inline: 30px;
  margin-inline: auto;
}

.mv-inner {
  position: absolute;
  width: 100%;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mv-title {
  font-size: 40px;
  color: #2e2e2e;
  letter-spacing: 10px;
  font-weight: bold;
  color: #fff;
  padding-inline: 10px;
  text-align: center;
}

.mv-title span,
.mv-title2 span {
  /* transformプロパティを有効にするため */
  display: inline-block;
}

.mv-title2 {
  font-size: 40px;
  text-align: center;
  color: #2e2e2e;
  padding-inline: 10px;
  color: #fff;
  margin-top: 8px;
  letter-spacing: 10px;
  font-weight: bold;
}

.mv-sub-title {
  color: #fff;
  text-align: center;
  font-size: 1.4em;
  margin-top: 16px;
  font-family:'Chillax', sans-serif;
}

.mv-btn__container {
  margin-top: 16px;
  text-align: center;
}

.mv-btn {
  position: relative;
  display: inline-block;
  text-decoration: none;
  padding-right: 20px;
  width: 270px;
  height: 60px;
  font-weight: bold;
  line-height: 60px;
  color: #fff !important;
  text-align: center;
  border: none;
  border-radius: 30px;
  background: #0b57d0;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 4px,
    rgba(255, 255, 255, 0.25) 4px 4px 4px 0px inset,
    rgba(255, 255, 255, 0.25) 8px 8px 16px 0px inset;
  transition: all 0.3s ease !important;
}

.mv-btn::after {
  position: absolute;
  content: "";
  background: url(https://e-moscom.jp/wp-content/uploads/2025/01/title.png?ver=1.0.2)
    no-repeat center center / contain;
  width: 20px;
  height: 20px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.mv-btn:hover {
  opacity: 0.8;
  letter-spacing: 3px;
}

/* scroll */
.scrolldown2 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 100px;
  left: 0;
  z-index: 200;
  animation: blurAnime 2s both 2s;
}

/*Scrollテキストの描写*/
.scrolldown2 span {
  /*描画位置*/
  position: absolute;
  z-index: 200;
  left: 10px;
  bottom: 0px;
  /*テキストの形状*/
  color: #fff;
  font-family:'Chillax', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 3px;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown2:before {
  content: "";
  /*描画位置*/
  position: absolute;
  z-index: 200;
  bottom: 0;
  left: -4px;
  /*丸の形状*/
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation: circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    bottom: 95px;
  }
  100% {
    bottom: -5px;
  }
}

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

@keyframes blurAnime {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: scale(1.02);
  }

  to {
    filter: blur(0);
    transform: scale(1);
  }
}

/* 線の描写 */
.scrolldown2:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 1px;
  height: 100px;
  background: #fff;
  z-index: 200;
}

/* btn */
.c-navbar__item {
  align-items: center;
}

.smf-action .smf-button-control__control {
  position: relative;
  text-decoration: none;
  width: 180px;
  height: 50px;
  font-weight: bold;
  color: #fff !important;
  text-align: center;
  border: none;
  border-radius: 30px;
  background: #0b57d0 !important;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 4px,
    rgba(255, 255, 255, 0.25) 4px 4px 4px 0px inset,
    rgba(255, 255, 255, 0.25) 8px 8px 16px 0px inset;
  transition: all 0.3s ease !important;
}

.smf-action .smf-button-control__control:hover {
  opacity: 0.6;
  letter-spacing: 2px;
}

.more-btn a {
  position: relative;
  text-decoration: none;
  width: 300px;
  padding-right: 60px !important;
  line-height: 50px;
  color: #fff !important;
  text-align: center;
  border: none;
  border: #0b57d0 1px solid !important;
  font-weight: bold;
  border-radius: 40px;
  background: #0b57d0 !important;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 4px,
    rgba(255, 255, 255, 0.25) 4px 4px 4px 0px inset,
    rgba(255, 255, 255, 0.25) 8px 8px 16px 0px inset;
  transition: all 0.3s ease !important;
}

.more-btn a::after {
  position: absolute;
  content: "";
  background: url(https://e-moscom.jp/wp-content/uploads/2025/01/title.png?ver=1.0.2)
    no-repeat center center / contain;
  width: 20px;
  height: 20px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.more-btn a:hover {
  opacity: 0.6;
  letter-spacing: 2px;
}

.ser-btn a {
  position: relative;
  text-decoration: none;
  width: 300px;
  padding-right: 60px !important;
  line-height: 30px;
  color: #fff !important;
  text-align: center;
  border: none;
  border: #00B5CF 1px solid !important;
  font-weight: bold;
  border-radius: 40px;
  background: #00B5CF !important;
  transition: all 0.3s ease !important;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 4px,
    rgba(255, 255, 255, 0.4) 4px 4px 4px 0px inset,
    rgba(255, 255, 255, 0.4) 8px 8px 16px 0px inset;
}

.ser-btn a::after {
  position: absolute;
  content: "";
  background: url(https://e-moscom.jp/wp-content/uploads/2025/01/title.png?ver=1.0.2)
    no-repeat center center / contain;
  width: 20px;
  height: 20px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.ser-btn a:hover {
  background: #fff !important;
  color: #00B5CF !important;
  filter: none !important;
}

.ser-btn a:hover::after {
  background: url(https://e-moscom.jp/wp-content/uploads/2025/02/footer-7.png)
    no-repeat center center / contain;
}

/* opening */
.c-loader-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff9f2;
  z-index: 1000;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.c-loader-bg2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 999;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.c-loader-dot {
  display: inline-flex;
  align-items: center;
  justify-content: start;
  pointer-events: none;
}

.c-loader-dot img {
  display: block;
  width: 300px;
  opacity: 0;
}

.body-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.body-bg img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.body-bg::before {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

#particles-js2 {
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#particles-js3 {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

#particles-js4 {
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#particles-js5 {
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#particles-js6 {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#particles-js7 {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#particles-js8 {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#particles-js9 {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#particles-js10 {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* header */
.l-header--sticky-overlay-lg {
  backdrop-filter: blur(30px);
  background-color: unset;
}

.p-global-nav .c-navbar__item > a span {
  padding-inline: 5px !important;
}

.p-global-nav .c-navbar__item > a:hover span::after {
  color: #00B5CF !important;
}

.menu-item a:hover span{
  color: #00B5CF !important;
}

#menu-item-446 a span,
#menu-item-115 a span,
#menu-item-147 a span,
#menu-item-116 a span,
#menu-item-117 a span {
  position: relative;
  color: #2e2e2e;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  font-size: 0.9em !important;
  padding-bottom: 15px;

}

#menu-item-446 a span::after,
#menu-item-115 a span::after,
#menu-item-147 a span::after,
#menu-item-116 a span::after,
#menu-item-117 a span::after {
  position: absolute;
  content: "Home";
  font-size: 1.35em;
  letter-spacing: 2px;
  color: #2e2e2e;
  bottom: -10px;
  transition: all 0.3s ease;
  font-family:'Chillax', sans-serif;
  left: 50%;
  transform: translateX(-50%);
}

#menu-item-115 a span::after {
  content: "Quality";
}

#menu-item-147 a span::after {
  content: "Service";
}

#menu-item-116 a span::after {
  content: "Company";
}

#menu-item-117 a span::after {
  content: "Contact";
}

.l-header {
  padding-top: 40px;
}

.header__sub-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #0b57d0;
  z-index: 999;
}

.p-global-nav .c-navbar__submenu {
  background: #0b57d0;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 4px,
    rgba(255, 255, 255, 0.25) 4px 4px 4px 0px inset,
    rgba(255, 255, 255, 0.25) 8px 8px 16px 0px inset;
}

.p-global-nav .c-navbar__item[aria-haspopup="true"]:before {
  border-bottom-color: #0b57d0;
}

.c-navbar__subitem {
  font-weight: bold;
  padding-left: 10px;
  position: relative;
}

.c-navbar__subitem::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}

.sub-nav__inner {
  max-width: 1300px;
  padding-inline: 30px;
  margin-inline: auto;
  padding-block: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sub-nav__info {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-right: 30px;
}

.sub-nav__txt {
  font-size: 0.9em;
  color: #fff !important;
}

.sub-nav__tel {
  font-weight: bold;
  padding-left: 30px;
  color: #fff !important;
  position: relative;
}

.sub-nav__tel::before {
  position: absolute;
  content: "";
  background: url(https://e-moscom.jp/wp-content/uploads/2025/01/名称未設定のデザイン-97.png?ver=1.0.2)
    no-repeat center center / contain;
  width: 20px;
  height: 20px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.sub-nav__mail {
  font-weight: bold;
  position: relative;
  padding-left: 30px;
  color: #fff !important;
}

.sub-nav__mail::before {
  position: absolute;
  content: "";
  background: url(https://e-moscom.jp/wp-content/uploads/2025/01/名称未設定のデザイン-96.png?ver=1.0.2)
    no-repeat center center / contain;
  width: 20px;
  height: 20px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* title */
.smb-section__title {
  color: transparent;
  font-size: 3em;
  font-weight: bold;
  font-family:'Chillax', sans-serif;
  letter-spacing: 3px;
  position: relative;
  overflow: hidden;
  display: inline-block;
  transition: color 0ms 700ms;
}

.smb-section__title::before {
  position: absolute;
  content: "";
  background: linear-gradient(to right, #083c8a 0%, #0b57d0 50%, #3a7bee 100%);
  bottom: 0;
  display: block;
  left: 0;
  right: 0;
  top: 0;
  transform: translate(0, 101%);
}

.smb-section__title.inview {
  color: #0b57d0;
}

.smb-section__title.inview::before {
  animation: mask-bg 1.6s 0.3s cubic-bezier(0.8, 0, 0.17, 1) forwards;
}

@keyframes mask-bg {
  0% {
    transform: translate(0, 102%);
  }
  40%,
  60% {
    transform: translate(0, 0%);
  }
  100% {
    transform: translate(0, -102%);
  }
}

.smb-section__lede-wrapper {
  margin-top: 0 !important;
}

.section-body .smb-section__lede {
  color: transparent;
  font-weight: 900;
  letter-spacing: 2px;
  overflow: hidden;
  position: relative;
  overflow: hidden;
  display: inline-block;
  transition: color 0ms 750ms;
}

.section-body .smb-section__lede::before {
  position: absolute;
  content: "";
  background: linear-gradient(to right, #083c8a 0%, #0b57d0 50%, #3a7bee 100%);
  bottom: 0;
  display: block;
  left: 0;
  right: 0;
  top: 0;
  transform: translate(0, 100%);
}

.section-body .smb-section__lede.inview {
  color: #0b57d0;
}

.smb-section__lede.inview::before {
  animation: mask-bg 1.6s 0.4s cubic-bezier(0.8, 0, 0.17, 1) forwards;
}

.page-header {
  margin-top: 120px !important;
  transform: translateX(-110%);
  opacity: 0;
  filter: blur(20px);
}

.page-header .smb-section__inner {
  opacity: 0;
  padding-top: 60px;
}

.page-header .smb-section__title {
  font-size: 4em;
  color: #fff;
  position: relative;
  display: inline-block;
}

.page-header .smb-section__title::before {
  display: none;
}

.page-header .smb-section__lede-wrapper {
  margin-top: 0 !important;
  padding-left: 40px;
  display: inline-block !important;
}

.page-header .smb-section__lede {
  color: #fff;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 2px;
}


.page-child .smb-section__lede {
  margin-bottom: 0;
}

/* about */
.reason-num {
  color: #fff;
  background: #00B5CF;
  font-family:'Chillax', sans-serif;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 4px,
    rgba(255, 255, 255, 0.4) 4px 4px 4px 0px inset,
    rgba(255, 255, 255, 0.4) 8px 8px 16px 0px inset;
  padding-inline: 15px;
  display: inline-block;
  font-size: 0.8em;
}

.wp-block-separator {
  border-top: 1px solid;
}

.smb-media-text__contents-wrapper {
  max-width: 550px;
  margin-right: auto !important;
}

.reason-contsnts .smb-media-text__contents-wrapper {
  margin-left: auto !important;
}

.strength-txt {
  font-weight: bold;
  line-height: 2;
  font-size: 1.1em;
}

.strength__title {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 5px !important;
  border-bottom: 1px solid #333;
}

.en-title {
  font-size: 1.5em;
  padding-left: 30px;
  position: relative;
  font-weight: bold;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
}

.en-title::after {
  position: absolute;
  content: "";
  left: 0;
  top: 3px;
  width: 5px;
  height: calc(100% - 15px);
  background: linear-gradient(to bottom, #00B5CF 50%, #00D0E6 51%);

}

.en-box + .en-box {
  margin-top: 32px !important;
}

/* company */
.philosophy-title {
  font-size: 1.6em;
  color: #fff;
  background: #00B5CF;
  display: inline-block;
  font-family:'Chillax', sans-serif;
  padding-inline: 25px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 4px,
    rgba(255, 255, 255, 0.4) 4px 4px 4px 0px inset,
    rgba(255, 255, 255, 0.4) 8px 8px 16px 0px inset;
}

.philosophy-txt {
  font-weight: 800;
  font-size: 1.3em;
}

.poyoyon {
  opacity: 0;
}

.poyoyon.inview {
  opacity: 0;
  animation: poyoyon 0.8s 0.5s cubic-bezier(0.12, 0, 0.39, 0) 1 forwards;
}

.poyoyon2 {
  opacity: 0;
}

.poyoyon2.inview {
  opacity: 0;
  animation: poyoyon2 0.8s 0.5s cubic-bezier(0.12, 0, 0.39, 0) 1 forwards;
}

@keyframes poyoyon {
  0% {
    transform: translateX(180px);
    opacity: 0;
  }
  50% {
    transform: translateX(0);
  }
  65% {
    transform: translateX(30px);
  }
  100% {
    transform: translateX(0);
  }
  20%,
  100% {
    opacity: 1;
  }
}

@keyframes poyoyon2 {
  0% {
    transform: translateX(-180px);
    opacity: 0;
  }
  50% {
    transform: translateX(0);
  }
  65% {
    transform: translateX(-30px);
  }
  100% {
    transform: translateX(0);
  }
  20%,
  100% {
    opacity: 1;
  }
}

.vision-box {
  padding-bottom: 40px;
  border-bottom: 1px solid #ddd;
}

.smb-information .smb-information__item__label {
  border-left: none;
}

.smb-information .smb-information__item__body,
.smb-information .smb-information__item__label {
  border-right: none;
}

.smb-information:not([data-sm-split-column="true"])
  .smb-information__item__body {
  border-left: none;
}

iframe {
  aspect-ratio: 600/300;
  width: 100%;
}

.footer__access {
  font-size: 1em;
  padding-left: 30px;
  position: relative;
  font-weight: bold;
  font-family:'Chillax', sans-serif;
}

.footer__access::after {
  position: absolute;
  content: "";
  background: #00B5CF;
  width: 20px;
  height: 2px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.footer__map {
  margin-top: 10px !important;
}

.footer__map iframe {
  aspect-ratio: 100/100 !important;
  width: 100%;
}

/* cta */

.cta-area::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: -10;
  width: 100%;
  height: 100%;
  background-image: url(https://e-moscom.jp/wp-content/uploads/2025/04/pixta_77869063_M.jpg);
  background-size: cover;
}

.cta-area::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.3);
}

.cta-area {
  padding-block: 60px;
  clip-path: inset(0);
}

.cta-area__title {
  color: #fff;
  font-size: 4em;
  letter-spacing: 3px;
  font-family:'Chillax', sans-serif;
  font-weight: 900;
  text-align: center;
}

.cta-area__sub-title {
  font-weight: 900;
  letter-spacing: 2px;
  text-align: center;
  color: #fff;
}

.cta-area__txt {
  color: #fff;
  text-align: center;
  margin-top: 10px;
}

.cta-area__items {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 16px;
  align-items: center;
}

.cta-area__tel {
  color: #0b57d0;
  background: #fff;
  text-align: center;
  text-decoration: none;
  max-width: 500px;
  width: 100%;
  border: 3px solid #0b57d0;
  height: 120px;
  display: grid;
  place-content: center;
  transition: all 0.3s ease;
}

.cta-area__tel:hover {
  color: #fff;
  background: #0b57d0;
}

.cta-area__tel:hover .cta-area__tel-num::after {
  background: url(https://e-moscom.jp/wp-content/uploads/2025/01/段落テキスト-3.png?ver=1.0.2)
    no-repeat center center / contain;
}

.cta-area__tel-txt {
  font-weight: bold;
  font-size: 1.1em;
}

.cta-area__tel-num {
  font-size: 3em;
  font-weight: 900;
  line-height: 1;
  position: relative;
  padding-left: 50px;
}

.cta-area__tel-num::after {
  position: absolute;
  content: "";
  background: url(https://e-moscom.jp/wp-content/uploads/2025/02/段落テキスト-7.png)
    no-repeat center center / contain;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
  left: 0;
  top: 55%;
  transform: translateY(-50%);
}

.cta-area__form {
  color: #fff;
  background: #0b57d0;
  text-align: center;
  text-decoration: none;
  max-width: 500px;
  width: 100%;
  border: 3px solid #0b57d0;
  height: 120px;
  display: grid;
  transition: all 0.3s ease;
  place-content: center;
}

.cta-area__form:hover {
  color: #0b57d0;
  background: #fff;
}

.cta-area__form:hover .cta-area__form-title::after {
  background: url(https://e-moscom.jp/wp-content/uploads/2025/02/段落テキスト-6.png)
    no-repeat center center / contain;
}

.cta-area__form-txt {
  font-weight: bold;
  font-size: 1.1em;
}

.cta-area__form-title {
  font-weight: 900;
  font-size: 1.8em;
  letter-spacing: 2.5px;
  position: relative;
  padding-left: 50px;
}

.cta-area__form-title::after {
  transition: all 0.3s ease;
  position: absolute;
  content: "";
  background: url(https://e-moscom.jp/wp-content/uploads/2025/01/段落テキスト.png?ver=1.0.2)
    no-repeat center center / contain;
  width: 40px;
  height: 40px;
  top: 55%;
  transform: translateY(-50%);
  left: 0;
}

/* form */
.form__privacy .smf-placeholder {
  margin-top: 0 !important;
  text-align: center;
}

/* top */

/* swiper */
.swiper {
  /* overflow: hidden; */
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 100%;
  margin-top: 100px !important;
}

.swiper2 {
  /* overflow: hidden; */
  margin-top: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 100%;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
  align-items: center;
}
/* 画像のサイズ調整 */

.swiper-slide img {
  height: 380px;
  width: 100%;
  object-fit: cover;
}

.c-entry-summary__title {
  font-size: 1.2em !important;
  font-weight: bold !important;
}

.l-contents__body {
  background-color: #fff !important;
  position: relative;
  z-index: 100;
}

.t-topic {
  position: relative;
}

.topic-day {
  background: #0b57d0;
  color: #fff;
  padding-inline: 15px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 4px,
    rgba(255, 255, 255, 0.25) 4px 4px 4px 0px inset,
    rgba(255, 255, 255, 0.25) 8px 8px 16px 0px inset;
  font-weight: bold;
  font-size: 1.2em;
  display: inline-block;
}

.topic-txt {
  font-weight: bold;
  position: relative;
  padding-left: 40px;
}

.topic-txt a {
  color: #00B5CF !important;
}

.topic-txt::after {
  position: absolute;
  content: "";
  background: url(https://e-moscom.jp/wp-content/uploads/2025/02/段落テキスト-15.png)
    no-repeat center center / contain;
  width: 25px;
  height: 25px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.topic-txt + .topic-txt {
  margin-top: 10px !important;
}

.topic-img1 {
  position: absolute;
  left: calc(50% + 200px);
  top: 50px;
  width: 100%;
}

.topic-img1 img {
  border-radius: 10px;
}

.topic-img2 {
  position: absolute;
  left: -280px;
  bottom: -100px;
  width: 100%;
  z-index: -1;
}

.topic-img3 {
  position: absolute;
  left: calc(50% + 300px);
  bottom: -150px;
  width: 100%;
}

.topic-img3 img {
  border-radius: 10px;
}

[data-content-position] {
  flex-direction: column;
}

.ser-section {
  position: relative;
}

.ser-img1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.ser-box {
  display: flex;
  flex-direction: column;
  background: #fff;
}

.smb-media-text {
  overflow: visible;
}

.smb-media-text__figure {
  opacity: 0;
}

/* animation */
.fadeup {
  opacity: 0;
}

.fadeup.inview {
  animation: fadeup 2s 0.3s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeup {
  0% {
    transform: translateY(60px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.smb-media-text__figure.inview {
  animation: zoomUp 1s cubic-bezier(0.42, 0, 0.58, 1) forwards;
}

.zoom-up {
  opacity: 0;
}

.zoom-up.inview {
  opacity: 0;
  animation: zoomUp 1s 0.6s cubic-bezier(0.42, 0, 0.58, 1) forwards;
}

@keyframes zoomUp {
  0% {
    scale: 1.2;
    transform: translateY(-50px);
    opacity: 0;
    filter: blur(20px);
  }

  100% {
    scale: 1;
    filter: blur(0px);
    transform: translateY(0);
    opacity: 1; /* 奥に進むにつれて少し透過 */
  }
}

.zoom-in {
  opacity: 0;
}

.zoom-in.inview {
  opacity: 0;
  animation: zoomIn 2s 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.7);
    opacity: 0;
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0px);
  }
}

.ser-box .smb-items__item.smb-items__item--free {
  border: 3px solid #2e2e2e;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ser-box
  .smb-items__item__body.is-layout-constrained.wp-block-items-item-free-is-layout-constrained {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ser-body {
  padding: 10px 20px 15px;
  margin-top: 10px !important;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ser-body__txt{
  flex-grow: 1;
}

.ser-sub {
  position: absolute;
  padding-inline: 15px;
  margin-left: 40px;
  top: -32px;
  left: -20px;
  font-family:'Chillax', sans-serif;
  color: #fff;
  background: #00B5CF;
  display: inline-block;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 4px,
    rgba(255, 255, 255, 0.4) 4px 4px 4px 0px inset,
    rgba(255, 255, 255, 0.4) 8px 8px 16px 0px inset;
  font-size: 0.8em;
}

.ser-title {
  font-size: 1.3em;
  letter-spacing: 1.5px;
  padding-left: 35px;
  display: block;
  margin-top: 0 !important;
  font-weight: bold;
  position: relative;
  border-bottom: 1px solid #2e2e2e;
}

.ser-title::after {
  position: absolute;
  content: "01";
  font-size: 0.8em;
  color: #2e2e2e;
  left: 0;
  bottom: 0;
}

.title2::after {
  content: "02";
}
.title3::after {
  content: "03";
}
.title4::after {
  content: "04";
}
.title5::after {
  content: "05";
}
.title6::after {
  content: "06";
}

.ser-txt {
  font-size: 0.9em;
  flex-grow: 1;
}

/* loop text */
.loop-contents {
  position: absolute;
  bottom: -30px;
  left: 0;
  z-index: 100;
}

.loop_wrap {
  display: flex;
  width: 100%;
}

.loop_wrap div {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: clamp(5rem, 15vw, 8rem);
  line-height: 1;
  font-weight: bold;
  padding-bottom: 40px;
  letter-spacing: -0.3rem;
  overflow: hidden;
  font-family:'Chillax', sans-serif;
  color: #f3f3f3;
}
.loop_wrap div:nth-child(odd) {
  animation: loop 120s -60s linear infinite;
  z-index: -1;
}

.loop_wrap div:nth-child(even) {
  animation: loop2 120s linear infinite;
  z-index: -1;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

/* footer */
.l-footer {
  border-top: none;
  position: relative;
  z-index: 100;
}

.l-footer__body,
.l-footer--footer-1 .l-footer__footer {
  background: #fff;
  color: #2e2e2e;
}
.l-footer__body {
}

.l-footer--footer-1 .l-footer__footer {
  margin-top: -10px;
}

.footer__link + .footer__link {
  margin-top: 16px !important;
}

.footer__link a {
  text-decoration: none;
  color: #2e2e2e;
  font-weight: bold;
  padding-left: 15px;
  position: relative;
}

.footer__link a::after {
  position: absolute;
  content: "";
  width: 7px;
  height: 14px;
  background-color: #00B5CF;
  clip-path: polygon(7px 50%, 0% 0%, 0% 14px);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.footer__link a:hover {
  color: #00B5CF;
}

.footer__nav {
  margin-top: 8px !important;
  font-size: 0.9em;
  padding-left: 10px;
  font-weight: bold;
}

.footer__ul a {
  color: #2e2e2e;
  text-decoration: none;
  position: relative;
  padding-left: 15px;
}

.footer__ul a::after {
  position: absolute;
  content: "";
  width: 7px;
  height: 14px;
  background-color: #00B5CF;
  clip-path: polygon(7px 50%, 0% 0%, 0% 14px);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.footer__ul a:hover {
  color: #00B5CF;
}

.footer__nav a {
  text-decoration: none;
  color: #2e2e2e;
}

.footer__nav .svg-inline--fa{
  color: #00B5CF;
}

.footer__nav a:hover {
  color: #00B5CF;
}

/* news */
.blog .c-entry__title {
  font-size: 3em;
  letter-spacing: 2px;
  padding-left: 20px;
  position: relative;
}

.blog .c-entry__title::after {
  position: absolute;
  background: #333;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.blog .c-entry__title::before {
  position: absolute;
  content: "お知らせ";
  font-size: 12px;
  color: #0b57d0;
  letter-spacing: 2px;
  bottom: -16px;
  left: 20px;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}

.blog .l-contents__body {
  margin-top: 100px;
  max-width: 800px;
  margin-inline: auto;
}

.blog .c-entry__body {
  margin-top: 32px;
}

.single .l-contents {
  margin-top: 100px;
}

.c-meta__item.c-meta__item--author {
  display: none;
}

/* service-child */
.no-photo.wp-block-snow-monkey-blocks-section-with-bgimage {
  background: linear-gradient(to right, #00B5CF 0%, #249FC0 50%, #4FC1D9 100%);
}

.page-child .wp-block-snow-monkey-blocks-section-with-bgimage {
  background: linear-gradient(to right, #00B5CF 0%, #249FC0 50%, #4FC1D9 100%);
}

.page-child .page-header .smb-section__title {
  font-size: 2.4em;
  font-family: "M PLUS 1", serif;
  font-weight: 900 !important;
  letter-spacing: 3px;
}

.page-header .smb-section__header {
  display: flex;
  align-items: baseline;
}

.page-child .smb-section__header {
  display: flex;
  align-items: baseline;
}

.no-photo .smb-section__header {
  display: flex;
  align-items: baseline;
}

.page-child .page-header .smb-section__lede {
  font-family:'Chillax', sans-serif;

}

.page-child .en-title {
}

.p-service__title {
  font-weight: bold;
  border-bottom: 1px solid #2e2e2e;
  color: #2e2e2e;
  font-size: 1.2em;
  letter-spacing: 2px;
  padding-left: 10px;
}

.wp-block-heading.is-style-plain {
  font-size: 1.5em;
  padding-left: 30px;
  position: relative;
  font-weight: bold;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
}

.wp-block-heading.is-style-plain::after {
  position: absolute;
  content: "";
  left: 0;
  top: 3px;
  width: 5px;
  height: calc(100% - 15px);
  background: linear-gradient(to bottom, #00B5CF 50%, #00D0E6 51%);
}

.sp__column{
  position: relative;
  height: 350px;
}

.topic-img1--sp{
  position: absolute;
  left: -100px;
  width: 250px;
}

.topic-img2--sp{
  position: absolute;
  width: 300px;
}

.topic-img3--sp{
  position: absolute;
  width: 250px;
  top: 160px;
  right: -100px;
}

.c-drawer__menu{
  width: fit-content;
  margin-inline: auto;
}

.c-drawer{
  background: #0b57d0 !important;
}

#menu-item-796 a,
#menu-item-800 a,
#menu-item-799 a,
#menu-item-797 a,
#menu-item-798 a{
  font-weight: bold;
  padding-block: 20px;
  position: relative;
}

#menu-item-796>a::after,
#menu-item-800>a::after,
#menu-item-799>a::after,
#menu-item-797>a::after,
#menu-item-798>a::after{
  position: absolute;
  content: "Home";
  font-size: 1.2em;
  letter-spacing: 2px;
  color: #fff;
  bottom: -10px;
  transition: all 0.3s ease;
  font-family:'Chillax', sans-serif;
  left: 0;
}

#menu-item-800>a::after{
  content: "Quality";
}

#menu-item-799>a::after{
  content: "Service";
}

#menu-item-797>a::after{
  content: "Company";

}

#menu-item-798>a::after{
  content: "Contact";

}

.c-drawer__submenu a{
  padding-block: 0 !important;
  position: relative;
  padding-left: 10px !important;
}

.c-drawer__submenu a::before{
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  z-index: 100;
}


@media only screen and (max-width: 768px){
  body{
    font-size: 12px;
  }

  .mv-title,
  .mv-title2{
    font-size: 20px;
    letter-spacing: 2px;
  }

  .mv-sub-title{
    font-size: 1.2em;
  }

  .cta-area__items{
    flex-direction: column;
    padding-inline: 15px;
    gap: 20px;

  }

  .smb-section__title{
    font-size: 2.5em;
  }

  .page-header .smb-section__title{
    font-size: 3em;
  }

  .page-child .smb-section__header,
  .no-photo .smb-section__header,
  .page-header .smb-section__header{
    flex-direction: column;
  }

  .page-header .smb-section__lede-wrapper{
    padding-left: 0;
  }

  .scrolldown2{
    left: 10px;
    bottom: 50px;
  }

  .scrolldown2 span{
    font-size: 1em;
  }

  .ser-box .smb-items__item.smb-items__item--free{
    max-width: 410px;
    margin-inline: auto;
  }

  .footer__link{
    font-size: 0.9em;
  }

  .footer__left{
    width: fit-content;
    margin-inline: auto;
  }

  .l-header{
    padding-top: 0;
  }

}