<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html {
  scroll-behavior: smooth;
}
.view {
  position: relative;
  overflow: hidden;
}

.view img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 1s ease-in-out;
}

.view iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 1s ease-in-out;
}

.view::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 1)
  );
  mix-blend-mode: color;
  transform: translateX(-100%);
  transition: transform 1.5s ease-in-out;
}

.view.active img {
  filter: grayscale(0%);
}

.view.active iframe {
  filter: grayscale(0%);
}

.view.active::before {
  transform: translateX(100%);
}
/*繝励Λ繧､繝舌す繝ｼ繝昴Μ繧ｷ繝ｼ*/
.privacy-policy-item {
  margin: auto;
  margin-top: 5rem;
  width: var(--container-width);
  max-width: var(--container-max-width);
}
p.contact-txt {
  line-height: 2;
}
p.contact-txt-1 {
  line-height: 2;
}
ol.contact-list {
  line-height: 2;
}
/*繝励Λ繧､繝舌す繝ｼ繝昴Μ繧ｷ繝ｼ菴ｿ逕ｨ荳ｭ縺ｮ逍台ｼｼ隕∫ｴ� ::marker縺ｯ蠕後〒莉悶↓蠖ｱ髻ｿ蜿翫⊂縺吶°繧ゅ□縺九ｉ豕ｨ諢�*/
.contact-list li::marker {
  font-size: 140%;
  font-weight: 800;
  color: var(--color-primary);
}
h3.section-ttl::before {
  content: "";
  display: inline-block;
  width: 2em;
  border-top: 3px solid;
  vertical-align: middle;
  margin-right: 0.5em;
  padding-bottom: 4px;
  color: var(--color-primary);
}
@media screen and (max-width: 768px) {
  .privacy-policy-item {
    margin: auto 1.25rem 100px;
  }
  h3.section-ttl {
    margin: 60px 0 20px;
  }
  p.contact-txt-1 {
    line-height: 2;
    margin-top: 60px;
  }
  p.contact-txt {
    line-height: 2;
  }
  ol.contact-list {
    line-height: 2;
  }
  /*繝励Λ繧､繝舌す繝ｼ繝昴Μ繧ｷ繝ｼ菴ｿ逕ｨ荳ｭ縺ｮ逍台ｼｼ隕∫ｴ� ::marker縺ｯ蠕後〒莉悶↓蠖ｱ髻ｿ蜿翫⊂縺吶°繧ゅ□縺九ｉ豕ｨ諢�*/
  .contact-list li::marker {
    font-size: 120%;
    font-weight: 800;
    color: var(--color-primary);
  }
  h3.section-ttl::before {
    content: "";
    display: inline-block;
    width: 1.8em;
    border-top: 2px solid;
    vertical-align: middle;
    margin-right: 1em;
    padding-bottom: 4px;
    color: var(--color-primary);
  }
}
/*繝輔ャ繧ｿ繝ｼ繧ｳ繝ｳ繧ｿ繧ｯ繝医ヰ繝翫�*/
.contact-entry {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid #3d3c38;
  border-bottom: 1px solid #3d3c38;
  overflow: hidden;
  margin-top: 10rem;
}
a.contact-link {
  width: 100%;
  padding: 4rem 0 7rem;
  text-decoration: none;
  transition: background-color 0.2s;
  background-color: #eeeeee;
  cursor: url(../img/contact-banner.png), pointer;
}
a.contact-link:hover {
  background-color: var(--color-primary);
}
.contact-entry-text {
  text-align: center;
}
.contact-entry-text-title {
  text-decoration: none;
  display: inline-block;
  background-color: #000;
  padding: 0.25em 0.5em;
  overflow: hidden;
  font-weight: bold;
  color: #fff;
  font-size: 2rem;
  transition: background-color 0.2s;
}
a.contact-link:hover .contact-entry-text-title {
  background-color: transparent;
}
.loop_wrap {
  display: flex;
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.loop_wrap div {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 150px;
  overflow: hidden;
  font-family: sans-serif;
  font-weight: bolder;
}
.loop_wrap div:nth-child(odd) {
  animation: loop 50s -25s linear infinite;
}
.loop_wrap div:nth-child(even) {
  animation: loop2 50s linear infinite;
}

.contact-color {
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: var(--color-primary);
  color: #fff;
  font-weight: bold;
  transition: -webkit-text-stroke-color 0.3s, color 0.3s;
}

/* hover譎ゅ↓繧｢繝九Γ繝ｼ繧ｷ繝ｧ繝ｳ繧貞●豁｢ */
a.contact-link:hover .loop_wrap div {
  animation-play-state: paused;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@media screen and (max-width: 768px) {
  .contact-entry {
    margin-top: 7.5rem;
  }
  a.contact-link {
    padding: 1.5rem 0 4rem;
  }
  .contact-entry-text-title {
    font-size: 1.5rem;
  }
  .loop_wrap div {
    font-size: 120px;
  }
}

/*繝輔ャ繧ｿ繝ｼ�壹Ο繧ｴ,莨夂､ｾ諠��ｱ*/
footer#colophon {
  z-index: 100;
  margin-top: -50px;
}
.footer-item {
  display: flex;
  padding-bottom: 30px;
  gap: 2rem;
}
.footer-name {
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 1rem;
}
.footer-address {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.footer-address p {
  color: #ffffff;
  margin: 0;
}
.site__footer .site__logo {
  background: var(--color-background);
  padding: 1rem;
  margin-left: 0;
  width: 180px;
}

a.instagram {
  display: block;
  text-decoration: none;
  width: 220px;
  position: relative;
  padding: 1.5rem 0;
  color: #000;
  background-color: #fff;
  font-weight: bold;
  border: 1px solid #000;
  transition: border 0.3s;
  margin-top: 1.5rem;
  transition: color 0.3s;
  border-radius: 5px;
}
a.instagram span {
  position: absolute;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
a.instagram::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  transition: width 0.3s;
  background-color: #000;
}
a.instagram:hover {
  color: var(--color-primary);
}
a.instagram:hover::after {
  width: 100%;
}
.navigation__footer .navigation__parent__item::after {
  content: "";
  position: absolute;
  background: var(--color-background);
  width: 1px;
  height: 3em;
  right: 0;
  bottom: 0;
}
.navigation__footer .navigation__parent__item:last-child::after {
  width: 0;
  height: 0;
}
.navigation__footer ul.navigation__parent {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
  margin-top: 4rem;
  flex-wrap: wrap;
  row-gap: 2rem;
}
.navigation__footer .navigation__parent__item {
  flex: 1;
}
copyright {
  color: #ffffff;
  font-size: var(--font-size-small);
  display: flex;
  padding-bottom: 0.5rem;
  font-size: 0.8rem;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  a.instagram {
    width: 120px;
    padding: 2rem 0;
    background-color: #000;
    color: var(--color-primary);
  }
  a.instagram span {
    gap: 0.5em;
  }
  .footer-contents {
    display: flex;
    flex-direction: column-reverse;
  }
  .navigation__footer ul.navigation__parent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 1.5rem;
  }
  .footer-item {
    margin: 4rem 0 2rem;
    padding: 0;
    gap: 1rem;
    align-items: flex-start;
  }
  .site__footer .site__logo {
    width: 120px;
    margin: 0;
    height: auto;
    padding: 0.5rem;
  }
  .navigation__footer .navigation__parent__item::after {
    display: none;
  }
  .footer-name {
    font-size: 20px;
    margin-bottom: 0.5rem;
  }
  .navigation__footer .link__navigation__parent {
    padding: 0;
  }
  nav.navigation__footer {
    border-top: 0.5px solid #fff;
    padding-top: 2rem;
  }
  .footer-address {
    flex-direction: column;
    gap: 0;
  }
  .footer-address-text {
    padding-left: 1rem;
  }
}

/*繧ｵ繧､繝峨ヰ繝ｼ*/
a.link__navigation__parent {
  text-decoration: none;
  color: var(--color-headline-primary);
  font-weight: bold;
  transition: color 0.25s;
}
li.navigation__child__item a {
  text-decoration: none;
  color: var(--color-darkblue);
  font-size: 0.8rem;
  font-family: var(--fontawesome-sharp);
  content: content "\f105";
}
li.navigation__child__item a::after {
  font-family: var(--fontawesome-sharp);
  content: "\f105";
  padding-left: 1rem;
}
.aside-tel-btn-item {
  background: var(--gradient-secondary-horizonal);
  border-radius: 2.5rem;
  padding: 1rem 3rem;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 4px 2px #24446a5c;
  transition: transform 0.25s, box-shadow 0.25s;
}
.aside-contact-btn-item {
  background: var(--gradient-secondary-horizonal);
  border-radius: 2.5rem;
  padding: 1rem 3rem;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 4px 2px #24446a5c;
  transition: transform 0.25s, box-shadow 0.25s;
}
a.link__navigation__parent__privacy-policy {
  text-decoration: none;
  font-weight: bold;
  color: var(--color-headline-primary);
  text-align: center;
  font-size: var(--font-size-small);
}
/*繧ｵ繧､繝峨ヰ繝ｼ繝懊ち繝ｳ縲√�繝舌�*/
.aside-tel-btn-item:hover {
  transform: translateY(4px);
  box-shadow: none;
}
.aside-contact-btn-item:hover {
  transform: translateY(4px);
  box-shadow: none;
}
a.link__navigation__parent:hover {
  color: var(--color-primary);
}
li.navigation__child__item a:hover {
  color: var(--color-primary);
}
a.link__navigation__parent__privacy-policy:hover {
  color: var(--color-primary);
}
label.accordion__label.navigation__accordion__label:hover {
  transform: scale(1.1);
}
/*閭梧勹逕ｻ蜒�*/
.image__cover.site__background__image {
  position: relative;
}
.image__cover.site__background__image:before {
  content: "";
  position: absolute;
  background-color: #049dd94d;
  width: 100%;
  height: 100%;
}
.site-mainWrapper,
.site-main {
  background-image: url(../img/background.png);
  background-attachment: fixed;
  background-position: center;
  background-size: 750px;
  background-repeat: repeat;
}
.site-main {
  position: relative;
}
/*繝医ャ繝励�繝ｼ繧ｸ縲√ヵ繧｡繝ｼ繧ｹ繝医ン繝･繝ｼ*/
.first-view-content {
  position: relative;
  height: calc(100vh - var(--header-height));
}
.fist-view-pic {
  height: 100%;
}
div#splide__first-view {
  height: 100%;
}
div#splide__first-view-track {
  height: 100%;
}
.splide__slide {
  position: relative;
}
.splide__slide img {
  width: 80%;
  height: 90%;
  position: absolute;
  left: 0;
  object-fit: cover;
}
.fist-view-text-wrapper {
  position: absolute;
  top: 50%;
  right: 3em;
}
p.fist-view-text {
  position: relative;
  margin: 0;
  z-index: 1;
  color: #000;
  filter: drop-shadow(1px 1px 0px #fff) drop-shadow(-1px -1px 0px #fff)
    drop-shadow(-1px 1px 0px #fff) drop-shadow(1px -1px 0px #fff);
  font-family: "ta-kakugo-gf-01", sans-serif;
  font-size: min(5rem, 7vw);
  line-height: 1em;
}
p.fist-view-text:before {
  content: "";
  position: absolute;
  width: 3rem;
  height: 3rem;
  bottom: 2rem;
  right: -1rem;
  z-index: -1;
  background-color: #049dd9;
}
.fist-view-text-span {
  position: relative;
  text-align: right;
  filter: none;
  font-weight: bold;
}
.fist-view-text-span span {
  font-size: 1rem;
  display: block;
}
.fist-view-text-span::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 80%;
  background-color: #000;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
/*繝医ャ繝励�繝ｼ繧ｸ縲√ヵ繧｡繝ｼ繧ｹ繝医ン繝･繝ｼ縲√せ繧ｯ繝ｭ繝ｼ繝ｫ*/
.fist-view-scroll-wrapper {
  position: relative;
  width: 22px;
  margin-right: 12px;
  margin-left: auto;
  margin-top: -4vh;
  padding-bottom: 4vh;
}
span.scroll-text {
  writing-mode: vertical-rl;
}
.fist-view-scroll .scroll-line:before,
.fist-view-scroll .scroll-line:after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  right: 0.8rem;
}
.fist-view-main .scroll-line:after {
  background: #049dd9;
  animation-name: scroll-lineAfter;
  animation-duration: 2.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@keyframes scroll-lineAfter {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
@media screen and (max-width: 768px) {
  .fist-view-pic {
    width: 100%;
  }
  .fist-view-text-wrapper {
    left: 1em;
    top: auto;
    bottom: 10%;
  }
  p.fist-view-text {
    font-size: max(3rem, 10vw);
  }
  p.fist-view-text:before {
    width: 2rem;
    height: 2rem;
    bottom: -0.5rem;
    left: -0.75rem;
  }
  .fist-view-pic img {
    height: 70vh;
    width: 100%;
  }
  .fist-view-text-span {
    margin-top: 1em;
  }
  .fist-view-text-span span {
    text-align: left;
  }
  .fist-view-text-span::before {
    display: none;
  }
  .fist-view-scroll-wrapper {
    margin-top: -7vh;
    padding-bottom: 7vh;
  }
}
/*繝医ャ繝励�繝ｼ繧ｸ縲√ヵ繧｡繝ｼ繧ｹ繝医ン繝･繝ｼ縲√せ繧ｯ繝ｭ繝ｼ繝ｫ*/
@media screen and (max-width: 768px) {
  span.scroll-text {
    writing-mode: vertical-rl;
  }
  .fist-view-scroll .scroll-line:before,
  .fist-view-scroll .scroll-line:after {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 100%;
    right: 0.8rem;
  }
  .fist-view-main .scroll-line:after {
    background: #049dd9;
    animation-name: scroll-lineAfter;
    animation-duration: 2.5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
  }
  @keyframes scroll-lineAfter {
    0% {
      transform: scaleY(0);
      transform-origin: top;
    }
    50% {
      transform: scaleY(1);
      transform-origin: top;
    }
    50.1% {
      transform: scaleY(1);
      transform-origin: bottom;
    }
    100% {
      transform: scaleY(0);
      transform-origin: bottom;
    }
  }
}
/*繝医ャ繝励�繝ｼ繧ｸ縲√そ繧ｯ繧ｷ繝ｧ繝ｳ繧ｿ繧､繝医Ν*/
.top-section-title {
  position: relative;
  margin-bottom: 2rem;
  zoom: 1;
}
.top-section-title h2 {
  font-size: 1.4rem;
  font-weight: bold;
  display: flex;
  flex-direction: column-reverse;
  align-items: baseline;
}
.top-section-title span.en {
  display: block;
  font-weight: bold;
  font-size: 4rem;
  line-height: 1;
  position: relative;
  float: left;
  padding: 0 4rem 0 0.5rem;
  color: #000;
  z-index: 1;
  overflow: hidden;
}
.top-section-title span.en::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: linear-gradient(to right, #049dd9, #d9d9d9);
  background-size: 100%;
  background-position: left -100%;
  transition: left 0.3s ease-in-out;
  z-index: -1;
}
.top-section-title span.en.active::after {
  left: 0;
}
.top-section-title span.jp {
  font-size: 1rem;
  font-weight: bold;
  color: #000;
}

@media screen and (max-width: 768px) {
  .top-section-title {
    margin-bottom: 0;
  }
  .top-section-title span.en {
    display: block;
    font-weight: bold;
    font-size: 2.25rem;
    line-height: 1.2;
    position: relative;
    float: left;
    padding-right: 5rem;
    z-index: 1;
  }
  .top-section-title span.jp {
    position: relative;
    font-size: 1rem;
    font-weight: 100;
  }
  .top-section-title span.jp:after {
    position: absolute;
    content: "";
    width: 4rem;
    height: 1px;
    background: #b0b0b0;
    right: 103%;
    top: 50%;
  }
}
/*繝医ャ繝励�繝ｼ繧ｸ縲√�繧ｿ繝ｳ*/
.news-button.news-button-pc,
.works-button.works-button-pc {
  padding-right: 2em;
}
a.mod-btn {
  display: block;
  text-decoration: none;
  width: 220px;
  position: relative;
  padding: 0.75rem 0;
  padding-left: 1rem;
  background-color: #fff;
  font-weight: bold;
  border: 1px solid #000;
  transition: border 0.3s;
}
a.mod-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  transition: width 0.3s;
  background-color: #000;
}
span.mod-btn-inner {
  position: relative;
  z-index: 10;
  color: #000;
  transition: color 0.3s;
}
a.mod-btn:hover span.mod-btn-inner {
  color: var(--color-primary);
}
a.mod-btn:hover::after {
  width: 100%;
}
a.mod-btn:before {
  content: "";
  position: absolute;
  width: 3rem;
  height: 1px;
  top: 50%;
  right: -10%;
  background: #049dd9;
  z-index: 10;
}
@keyframes shine {
  0% {
    background: #000;
  }
  10% {
    background: #ccc;
  }
  100% {
    background: #000;
  }
}
@media screen and (max-width: 768px) {
  a.mod-btn {
    text-decoration: none;
    position: relative;
    padding-top: 1rem;
    padding-right: 7rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
    background-color: #000;
  }
  span.mod-btn-inner {
    color: var(--color-primary);
    font-weight: bold;
  }
  a.mod-btn:before {
    content: "";
    position: absolute;
    width: 3rem;
    height: 1px;
    top: 50%;
    right: -13%;
    background: #049dd9;
  }
}
/*繝医ャ繝励�繝ｼ繧ｸ縲、BOUT*/
.about-item {
  display: flex;
  flex-direction: row-reverse;
  margin-top: 4rem;
  max-width: 100%;
  box-sizing: border-box;
}
.top-section-about-space {
  width: var(--container-width);
  max-width: var(--container-max-width);
  margin: 10rem auto;
}
.about-text-title {
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
}
.about-text-title::before {
  content: "";
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  top: -0.1rem;
  left: 0.3rem;
  background-color: var(--color-primary);
}
.about-text-title span {
  position: relative;
  z-index: 10;
}
p.text {
  line-height: 2;
  margin: 0;
  background-color: #fff;
  max-width: var(--container-max-width);
  margin: auto;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-wrapper {
  display: flex;
  align-items: stretch;
  margin-left: 2rem;
  flex: 1;
  max-width: 100%;
  box-sizing: border-box;
}
.about-img {
  display: flex;
  align-items: stretch;
  margin-left: 2rem;
  flex: 1;
  aspect-ratio: 2 / 3;
  max-width: 100%;
  box-sizing: border-box;
}
.about-text {
  flex: 1;
  max-width: 100%;
  box-sizing: border-box;
}
.about-img.about-img1 {
  padding-bottom: 1rem;
}
.about-img.about-img2 {
  padding-top: 1rem;
}
.about-button {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .top-section-about-space {
    margin-top: 0;
    margin-bottom: 7.5rem;
  }
  .about-text-title {
    text-align: center;
    font-weight: bold;
  }

  .about-item {
    flex-direction: column;
    margin-top: 3rem;
  }
  .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .about-img-wrapper {
    display: flex;
    align-items: stretch;
    margin-left: 0;
    flex: 1;
    max-width: 100%;
    box-sizing: border-box;
    margin-bottom: 2rem;
  }
  .about-img {
    display: flex;
    align-items: stretch;
    margin-left: 2rem;
    flex: 1;
    aspect-ratio: 2 / 3;
    max-width: 100%;
    box-sizing: border-box;
  }
  .about-text {
    flex: 1;
    max-width: 100%;
    box-sizing: border-box;
  }
  .about-img.about-img1 {
    padding-bottom: 1rem;
    margin-left: 0;
  }
  .about-img.about-img2 {
    padding-top: 1rem;
    margin-left: 1rem;
  }
  .about-button {
    margin-top: 2rem;
  }
}
/*繝医ャ繝励�繝ｼ繧ｸ縲ヾERVICE*/
.top-section-services-space {
  width: var(--container-width);
  max-width: var(--container-max-width);
  margin: auto;
  margin-bottom: 10rem;
}
.services-button {
  margin-top: 5rem;
}
.services-item-group {
  position: relative; /* 隕ｪ隕∫ｴ�縺ｫ逶ｸ蟇ｾ菴咲ｽｮ繧定ｨｭ螳� */
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 2rem;
  row-gap: 3rem;
  margin-top: 4rem;
}
.services-content-item {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s, transform 0.3s;
}
a.services-link {
  text-decoration: none;
  color: #000;
}
.services-item-pic {
  aspect-ratio: 3/2;
  overflow: hidden;
}
a.services-link:hover .services-content-item {
  filter: grayscale(0%);
  transform: scale(1.1);
}
.services-text-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.services-item-text {
  color: #000;
  font-weight: bold;
  text-shadow: 1px 1px 2px #dcdde1;
  position: relative;
  margin: 0.5rem;
}
.services-item-text::before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: -0.1rem;
  left: -0.3rem;
  background-color: var(--color-primary);
}
.services-item-text span {
  position: relative;
  z-index: 10;
}
.arrow-with-line {
  display: flex;
  align-items: center;
  position: relative;
  flex: 1;
  height: 20px;
}
.arrow-with-line::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.5px;
  background: black;
}
.arrow-with-line::after {
  content: "";
  position: absolute;
  right: 0;
  border-style: solid;
  border-width: 3px 0 3px 8px;
  border-color: transparent transparent transparent black;
}
@media screen and (max-width: 768px) {
  .top-section-services-space {
    margin-top: 0;
    margin-bottom: 7.5rem;
  }
  .services-button {
    margin-top: 2rem;
  }
  .services-item-group {
    position: relative; /* 隕ｪ隕∫ｴ�縺ｫ逶ｸ蟇ｾ菴咲ｽｮ繧定ｨｭ螳� */
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 2rem;
    margin-top: 3rem;
  }
  .services-item {
    position: relative; /* 蟄占ｦ∫ｴ�繧ら嶌蟇ｾ菴咲ｽｮ繧定ｨｭ螳� */
  }
}
/*繝医ャ繝励�繝ｼ繧ｸ縲：LOW*/
.top-section-flow-space {
  width: var(--container-width);
  max-width: var(--container-max-width);
  margin: auto;
  margin-bottom: 7rem;
}
.flow-item {
  display: flex;
  flex-direction: row-reverse;
  margin-top: 4rem;
}
h2.flow-title {
  margin: 0;
}
.flow-text-title {
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
}
.flow-text-title::before {
  content: "";
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  top: -0.1rem;
  left: -0.7rem;
  background-color: var(--color-primary);
}
.flow-text-title span {
  position: relative;
  z-index: 10;
}
.flow-img {
  margin-left: 2rem;
  aspect-ratio: 3/2;
  flex: 1;
}
.flow-text {
  flex: 1;
}
.flow-button {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .top-section-flow-space {
    margin-bottom: 4.5rem;
  }
  .flow-item {
    display: flex;
    flex-direction: column;
    margin-top: 0;
  }
  h2.flow-title {
    margin: 0;
  }
  .flow-text-title {
    font-weight: bold;
  }
  .flow-img {
    margin-top: 3rem;
    margin-bottom: 2rem;
    margin-left: 0;
  }
  .flow-button {
    margin-top: 2rem;
  }
}

/*繝医ャ繝励�繝ｼ繧ｸ縲仝ORKS*/
.top-section-works-space {
  width: var(--container-width);
  max-width: var(--container-max-width);
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.front__section {
  padding-top: 2rem;
  padding-bottom: 10rem;
  background-color: #fff;
}
.works_section {
  padding-top: 3rem;
  margin-bottom: 5rem;
  background-color: #eeeeee;
  padding-bottom: 5rem;
}
h2.works-title {
  margin: 0;
}
.top-section-title-works {
  margin: 0;
}

div#splide__works {
  max-width: var(--container-max-width);
  margin: auto;
  margin-top: 5rem;
}

.works-button-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .front__section {
    padding: 3rem 0;
    margin-bottom: 4.5rem;
  }
  .works-button {
    margin-top: 3rem;
    padding-left: 2rem;
  }
  h2.works-title {
    margin-left: 0;
  }
  div#splide__works {
    margin-top: 3rem;
  }
  .works-button-pc {
    display: none;
  }
  .works-button-sp {
    display: block;
    margin-top: 2rem;
  }
}
/*繝医ャ繝励�繝ｼ繧ｸ縲ゝOPICS*/
h2.news-title {
  max-width: var(--container-width);
  margin: 0 auto;
}
.news_section {
  padding-top: 2rem;
  padding-bottom: 10rem;
  background-color: #fff;
}
article.archive__article__news:hover {
  background-color: #f1f1f1;
}
article.archive__article__news a {
  text-decoration: none;
  display: flex;
  align-items: center;
  padding-top: 1.5rem;
  gap: 3rem;
  padding-bottom: 1.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  color: var(--color-text-primary);
  border-top: 0.5px solid #989898;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
article.archive__article__news a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-color: #eeeeee;
  transition: left 0.3s;
}
article.archive__article__news a:hover::after {
  left: 0;
}
article.archive__article__news a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 13%;
  background-color: #000;
  transform: translateY(-50%);
}
article.archive__article__news:last-child a {
  border-bottom: 0.5px solid var(--color-grey);
  position: relative;
}
.archive-article-news-wrapper {
  border-bottom: 0.5px solid #989898;
  position: relative;
}
.archive-article-news-wrapper:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 1px;
  width: 13%;
  background-color: #000;
  transform: translateY(-50%);
}
.top-section-news-space {
  width: var(--container-width);
  max-width: var(--container-max-width);
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.top-section-news-title {
  margin-bottom: 0;
}
.archive-article-news-wrapper {
  max-width: var(--container-max-width);
  margin: auto;
  margin-top: 5rem;
}
.archive__article__news__post-date {
  font-size: var(--wp--preset--font-size--normal);
  line-height: 2;
  position: relative;
  z-index: 10;
}
.arrow-with-line-news::before {
  right: 0;
  width: 50px;
}
.arrow-with-line-news {
  position: relative;
  z-index: 10;
}
.news-button-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  h2.news-title {
    margin-left: 0;
    margin-bottom: 0;
  }
  .archive-article-news-wrapper {
    margin-top: 3rem;
  }
  article.archive__article__news a {
    padding: 1rem 0.5rem;
    gap: 1rem;
    display: block;
  }
  article.archive__article__news:last-child a {
    border-bottom: 0.5px solid var(--color-grey);
  }
  .home .archive__article__news__post-title {
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: bold;
    position: relative;
    z-index: 10;
    white-space: initial;
  }
  .news-button-pc {
    display: none;
  }
  .news-button-sp {
    max-width: var(--container-width);
    margin: auto;
    display: block;
    margin-top: 3rem;
  }
  .archive__article__news__post-date {
    font-size: var(--font-size-small);
  }
}
/*繝医ャ繝励�繝ｼ繧ｸ縲ヽECRUIT*/
.top-section-recruit-space {
  width: var(--container-width);
  max-width: var(--container-max-width);
  margin: auto;
  margin-bottom: 10rem;
}
.recruit-button {
  margin-top: 4rem;
}
.recruit-item {
  display: flex;
  flex-direction: row-reverse;
  margin-top: 4rem;
  max-width: 100%;
  box-sizing: border-box;
}
.recruit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recruit-img-wrapper {
  display: flex;
  align-items: stretch;
  margin-left: 2rem;
  flex: 1;
  max-width: 100%;
  box-sizing: border-box;
}
.recruit-img {
  display: flex;
  align-items: stretch;
  margin-left: 2rem;
  flex: 1;
  aspect-ratio: 2 / 3;
  max-width: 100%;
  box-sizing: border-box;
}
.recruit-text {
  flex: 1;
  max-width: 100%;
  box-sizing: border-box;
}
.recruit-img.recruit-img1 {
  padding-bottom: 1rem;
}
.recruit-img.recruit-img2 {
  padding-top: 1rem;
}

.recruit-text-title {
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
}
.recruit-text-title::before {
  content: "";
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  top: -0.1rem;
  left: 0.3rem;
  background-color: var(--color-primary);
}
.recruit-text-title span {
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .top-section-recruit-space {
    margin-bottom: 7.5rem;
  }
  .recruit-item {
    display: flex;
    flex-direction: column;
    margin-top: 3rem;
    max-width: 100%;
    box-sizing: border-box;
  }
  .recruit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .recruit-img-wrapper {
    display: flex;
    align-items: stretch;
    margin-left: 0;
    flex: 1;
    max-width: 100%;
    box-sizing: border-box;
    margin-bottom: 2rem;
  }
  .recruit-img {
    display: flex;
    align-items: stretch;
    margin-left: 2rem;
    flex: 1;
    aspect-ratio: 2 / 3;
    max-width: 100%;
    box-sizing: border-box;
  }
  .recruit-text {
    flex: 1;
    max-width: 100%;
    box-sizing: border-box;
  }
  .recruit-img.recruit-img1 {
    padding-bottom: 1rem;
    margin-left: 0;
  }
  .recruit-img.recruit-img2 {
    padding-top: 1rem;
    margin-left: 1rem;
  }
  .recruit-button {
    margin-top: 2rem;
  }
}

/*莨夂､ｾ譯亥�繝壹�繧ｸ隕句�縺�*/
div#company-message {
  width: var(--container-width);
  max-width: var(--container-max-width);
  margin-right: auto;
  margin-left: auto;
  margin-top: 7rem;
}
.section-ttl-wrapper {
  width: fit-content;
}

h2.section-ttl-english {
  font-size: 4em;
  font-weight: bold;
  position: relative;
  color: transparent;
  background-image: linear-gradient(to right, #049dd9, #d9d9d9);
  -webkit-background-clip: text;
  background-clip: text;
  width: fit-content;
  margin: 0;
  line-height: 1em;
}
h4.section-ttl {
  margin: 0;
  font-size: 1rem;
  text-align: right;
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 0.5em;
}
.section-ttl-before {
  width: 100%;
  height: 1px;
  flex: auto;
  background-color: var(--color-primary);
}

/*莨夂､ｾ譯亥�縲∽ｻ｣陦ｨ謖ｨ諡ｶ*/
.company-message-item {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5em;
  margin-top: 3rem;
}
p.company-message-text {
  line-height: 2;
  margin: 0;
}
.company-message-ceo {
  font-family: serif;
  font-weight: bold;
  margin-top: 0;
  gap: 1rem;
  font-size: 1.25rem;
  padding-left: 1.5em;
  position: relative;
}
.company-message-ceo::before {
  content: "";
  width: 1em;
  height: 1px;
  background-color: var(--color-primary);
  display: block;
  left: 0em;
  top: 0.75em;
  position: absolute;
}
.company-message-text-box {
  flex: 1;
}
.company-message-catch {
  flex: 1;
}
h3.company-message-catch-text {
  margin: 0;
  font-size: 1.5rem;
  line-height: 2em;
}

@media screen and (max-width: 768px) {
  h3.company-message-catch-text {
    line-height: 1.75em;
  }
  .company-message-ceo {
    font-size: 1rem;
    justify-content: right;
  }
  div#company-message {
    margin-top: 5rem;
  }
  h2.section-ttl-english {
    font-size: 2.25rem;
  }
  .company-message-item {
    flex-direction: column-reverse;
  }
  .scompany-message-pic {
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    flex: 1;
    margin-left: 0;
  }
  .company-message-catch {
    margin-right: 0;
    margin-left: auto;
  }
}
/*莨夂､ｾ譯亥�縲∽ｼ∵･ｭ逅�ｿｵ*/
.company-rinen {
  background-color: #eeeeee;
  margin-top: 7rem;
  padding-top: 3rem;
  padding-bottom: 5rem;
}
div#rinen-box {
  width: var(--container-width);
  max-width: var(--container-max-width);
  margin-right: auto;
  margin-left: auto;
}
p.company-rinen-text {
  font-weight: bold;
  line-height: 2;
  margin: 0;
  margin-top: 3rem;
  font-size: 1.75rem;
  text-align: center;
  filter: drop-shadow(1px 1px 0px #fff) drop-shadow(-1px -1px 0px #fff)
    drop-shadow(-1px 1px 0px #fff) drop-shadow(1px -1px 0px #fff);
}
@media screen and (max-width: 768px) {
  .company-rinen {
    margin-top: 5rem;
    padding-bottom: 3rem;
  }
  p.company-rinen-text {
    font-size: 1.5rem;
    line-height: 1.5em;
  }
}

/*莨夂､ｾ譯亥�縲∽ｼ夂､ｾ讎りｦ�*/
.table-box {
  width: 100%;
  border-collapse: collapse;
  border-bottom: 1px solid #dddddd;
  border-top: 1px solid #dddddd;
  margin-top: 3rem;
}
.table-box th,
.table-box td {
  border-collapse: collapse;
  padding: 2rem;
  line-height: 1.4;
  border-bottom: 1px solid #dddddd;
}
th {
  text-align: left;
  vertical-align: top;
}
.table-box th {
  font-weight: bold;
  background: #ededed;
  position: relative;
  width: 13.5rem;
  padding-left: 1.5em;
}
.table-box th:before {
  position: absolute;
  left: 0;
  top: 2.75rem;
  content: "";
  display: block;
  width: 1rem;
  height: 1px;
  background: #049dd9;
}
.table-box tr {
  background-color: #fff;
}
.table-box tr:nth-child(even) {
  background-color: #f8fafb;
}
div#company-overview {
  width: var(--container-width);
  max-width: var(--container-max-width);
  margin-right: auto;
  margin-left: auto;
  padding-top: 5rem;
}
.table-box th,
.table-box td {
  line-height: 2em;
}
@media screen and (max-width: 768px) {
  div#company-overview {
    padding-top: 3rem;
  }
  .table-box {
    border-top: none;
    margin-top: 1.5rem;
  }
  .table-box th:before {
    top: 1.9rem;
  }
  .table-box td {
    border-bottom: none;
    padding: 1.6rem 0;
  }
  .table-box th,
  .table-box td {
    box-sizing: border-box;
    display: block;
    width: 100%;
    border-collapse: collapse;
    padding: 1.2rem 1.6rem;
  }
  .table-box th {
    width: auto;
    font-size: 16px;
  }
}
/*莨夂､ｾ譯亥�縲√い繧ｯ繧ｻ繧ｹ*/

div#company-access {
  width: var(--container-width);
  max-width: var(--container-max-width);
  margin-right: auto;
  margin-left: auto;
  margin-top: 10rem;
}
.company-access-item {
  display: flex;
  margin-top: 3rem;
  gap: 2em;
}
.company-access-item-iframe {
  width: 100%;
  aspect-ratio: 3/2;
  flex: 2;
}
.company-access-item-iframe iframe {
  width: 100%;
  height: 100%;
}
.company-access-text {
  flex: 3;
  line-height: 2em;
}
.company-access-title {
  font-size: 1.25rem;
  font-weight: bold;
  border-bottom: 1px solid #049dd9;
}
p.company-access-text {
  display: flex;
  flex-direction: column;
  margin-left: 3rem;
  line-height: 2;
}
span.company-access-train {
  padding-top: 16px;
}
.company-access-train tr {
  display: flex;
}
.company-access-train th {
  flex: 1;
  white-space: nowrap;
}
.company-access-train td {
  flex: 9;
}
@media screen and (max-width: 768px) {
  div#company-access {
    margin-top: 5rem;
  }
  .company-access-item {
    display: block;
  }
  p.company-access-text {
    display: flex;
    flex-direction: column;
    margin-left: 0;
    line-height: 2;
  }
  .company-access-text {
    margin-top: 1rem;
  }
  .company-access-text p {
    margin-bottom: 0;
  }
  .company-access-train {
    margin-top: 0.5rem;
  }
}
/*404*/
.page-404 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 60vw;
  width: var(--container-width);
  max-width: var(--container-max-width);
  margin-right: auto;
  margin-left: auto;
}
p.\34 04en {
  font-size: 32px;
  text-align: center;
  position: relative;
  margin-bottom: 0;
  margin-top: 0;
}
p.\34 04jp {
  font-size: 20px;
  text-align: center;
}
p.\34 04en:before {
  position: absolute;
  top: -4rem;
  left: 0;
  font-family: "icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  content: "窶�";
  font-size: 3rem;
  color: #ddd;
}
p.\34 04en:after {
  position: absolute;
  bottom: -4rem;
  right: 0;
  font-family: "icon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "窶�";
  font-size: 3rem;
  color: #ddd;
}
.page-404-button {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .page-404 {
    height: 100vw;
  }
  p.\34 04en {
    font-size: 24px;
  }
  p.\34 04jp {
    font-size: 16px;
  }
  .page-404-button {
    margin-top: 3rem;
  }
}
/*莠区･ｭ蜀�ｮｹ*/
.content-services-space {
  width: var(--container-width);
  max-width: var(--container-max-width);
  margin-right: auto;
  margin-left: auto;
}
.services-text-box {
  margin-top: 0;
  width: var(--container-width);
  margin: auto;
  margin-top: 5rem;
}
.services-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.content-services-item {
  display: flex;
  align-items: center;
  margin-bottom: 5rem;
  gap: 4rem;
}
.content-services-item-even {
  flex-direction: row-reverse;
}
.section-ttl-english-service {
  font-size: 2.5rem !important;
}
.content-services-item-img-wrapper {
  flex: 3;
  padding: 0 1em 1em 0;
}
.content-services-item-img {
  position: relative;
  overflow: visible;
  aspect-ratio: 3 / 2;
  z-index: 10;
}
.content-services-item-img::after {
  content: "";
  position: absolute;
  top: 1em;
  left: 1em;
  width: 100%;
  height: 100%;
  background-color: #eee;
  z-index: -1;
}
.content-services-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-services-item-text {
  flex: 4;
  background-color: #fff;
  height: fit-content;
}
.content-services-wrapper {
  margin: auto;
  margin-top: 7.5rem;
  width: var(--container-width);
}
.services-area-wrapper {
  margin-top: 10rem;
}
.services-area {
  display: flex;
  margin-top: 3rem;
  gap: 2em;
  padding: 0 2rem;
}
.services-area-inner {
  flex: 1;
}
.services-area-title {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 0.5em;
  font-weight: bold;
  border-radius: 8px;
}
h4.section-catch {
  font-size: 2rem;
}
p.services-area-text {
  line-height: 2em;
}
.services-area-img {
  flex: 1;
}
p.content-services-item-letter {
  margin-top: 2.5rem;
  line-height: 2em;
}
p.content-services-item-detail {
  position: relative;
  padding-left: 1.5em;
  line-height: 2em;
}
p.content-services-item-detail::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 1em;
  height: 1px;
  background-color: var(--color-primary);
}
@media screen and (max-width: 768px) {
  .content-services-item {
    display: block;
    margin-bottom: 3rem;
  }
  .content-services-wrapper {
    margin-top: 5rem;
  }
  .content-services-item-text {
    padding: 0;
    margin: 1rem 0;
  }
  p.content-services-item-letter {
    margin-top: 1.5rem;
    margin-bottom: 0;
  }
  .section-ttl-english-service {
    font-size: 2.25rem !important;
  }
  .services-area-wrapper {
    margin-top: 5rem;
  }
  .services-area {
    flex-direction: column-reverse;
    margin-top: 2rem;
    padding: 0;
    gap: 1em;
  }
  h4.section-catch {
    margin: 0;
    font-size: 1.75rem;
  }
  p.services-area-text {
    margin-right: 0;
  }
}
/*莉穂ｺ九�豬√ｌ*/
.content-flow-space {
  width: var(--container-width);
  max-width: var(--container-max-width);
  margin-right: auto;
  margin-left: auto;
}
.content-flow-item {
  display: flex;
  margin-top: 2rem;
}
.flow-item-img img {
  padding: 1rem;
}
.flow-imgbox {
  flex: 1;
  width: 50%;
  padding-top: 44px;
  position: relative;
}
.flow-step {
  position: absolute;
  top: 0;
  right: 0;
  left: 1rem;
  width: 100%;
  height: 59px;
  background: no-repeat right top / contain;
  content: "";
  font-size: 20px;
  color: #049dd9a6;
  font-weight: bold;
}
span.flow-step-number {
  font-size: 65px;
  vertical-align: middle;
}
.flow-item-text {
  flex: 1;
  align-content: center;
  margin-left: 2rem;
  margin-top: 1rem;
}
p.flow-item-heading {
  font-size: 1.3rem;
  font-weight: bold;
}
p.flow-item-heading::after {
  content: "";
  background: #049dd9;
  width: 5rem;
  height: 1.5px;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  display: block;
}
p.flow-item-letter {
  line-height: 2;
}
.content-flow-box {
  margin-bottom: 13rem;
}
@media screen and (max-width: 768px) {
  .content-flow-item {
    display: block;
    margin-top: 2rem;
  }
  .flow-imgbox {
    width: 100%;
  }
  .flow-item-text {
    margin-top: 0;
    margin-left: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  p.flow-item-heading {
    margin-top: 0;
  }
  p.flow-item-heading::after {
    content: "";
    background: #049dd9;
    width: 5rem;
    height: 1.5px;
    margin-top: 1.5rem;
    display: block;
  }
  .content-flow-box {
    margin-bottom: 10rem;
  }
}
/*謗｡逕ｨ諠��ｱ*/
.content-recruit-space {
  width: var(--container-width);
  max-width: var(--container-max-width);
  margin-right: auto;
  margin-left: auto;
}
.content-recruit-item {
  display: flex;
  margin-top: 10rem;
  gap: 1.5rem;
}
.privacypolicy-local {
  width: 600px;
  margin-top: 0;
}
.content-recruit-text-box {
  flex: 1;
}
.content-recruit-pic {
  flex: 1;
  aspect-ratio: 3/2;
}
.content-recruit-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
p.content-recruit-heading {
  font-size: 1.5rem;
  font-weight: bold;
}
.content-recruit-wrapper {
  margin-top: 10rem;
}
p.content-recruit-detail {
  line-height: 2;
}
@media screen and (max-width: 1000px) {
  .content-contact-flex {
    flex-direction: column;
    gap: 3rem;
  }
  .content-contact-wrapper {
    width: 100% !important;
  }
}

@media screen and (max-width: 768px) {
  .content-contact-flex {
    margin-top: 5rem !important;
  }
  .content-recruit-item {
    display: block;
    margin-top: 5rem;
  }
  p.content-recruit-heading {
    text-align: center;
    margin-bottom: 1rem;
  }
  .content-recruit-pic {
    padding-left: 0;
  }
  .content-recruit-wrapper {
    margin-top: 5rem;
  }
}
/*謗｡逕ｨ諠��ｱ繧ｳ繝ｳ繧ｿ繧ｯ繝�*/
.content-recruit-contact {
  margin-top: 10rem;
}
.content-recruit-contact-input {
  width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.content-recruit-contact-text {
  line-height: 2em;
  flex: 1;
}
.privacypolicy-local .privacy-policy-item {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  border: 1px solid #ccc;
  max-height: 320px;
  min-height: 100px;
  width: 100%;
  padding: 16px;
  overflow-y: scroll;
  overflow-x: hidden;
  background-color: #fff;
}
.窶拂f7-submit窶� {
  display: flex;
  justify-content: center;
  align-items: center;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
  display: block;
  text-decoration: none;
  width: 220px;
  position: relative;
  padding: 0.75rem 0;
  background-color: #fff;
  font-weight: bold;
  border: 1px solid #000;
  transition: border 0.3s;
  border-radius: 0;
  margin: auto;
  transition: background-color 0.3s, color 0.3s;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
  background-color: #000;
  color: var(--color-primary);
}
.wpcf7-spinner {
  display: none;
}
.窶拂f7-submit p {
  margin: 3rem 0;
}
.google-recaptha {
  font-size: 0.8rem;
}
.google-recaptha p br {
  display: none;
}
.grecaptcha-badge {
  visibility: hidden;
}

@media screen and (max-width: 768px) {
  .content-recruit-contact {
    margin-top: 5rem;
  }
}

/******************************/
/** 繧ｳ繝ｳ繧ｿ繧ｯ繝医ヵ繧ｩ繝ｼ繝�縺ｮ陬�｣ｾ **/
/******************************/
/*縲繝輔か繝ｼ繝�蜈ｨ菴薙*/
div#窶拂f7-area窶� {
  width: 100%;
  padding: 2rem;
  border: 1px solid #eee;
  background-color: #f9f9f9;
}
.窶拂f7-item窶� {
  margin-bottom: 1.75em;
}
.窶拂f7-q窶� {
  width: 100%;
  margin-left: 0.5rem;
}
.窶拂f7-a窶� {
  width: 100%;
}
/*縲隕句�縺励*/
.窶拉orm-heading窶� {
  width: 100%;
  background-color: #24446a;
  border-left: 1em solid #049dd9;
  border-radius: 2px;
  color: #ffffff;
  font-weight: bold;
  padding: 0.5em 0.8em;
  margin-top: 5rem;
}
/* 蜷���岼蜈ｱ騾� */
div#窶拂f7-area窶� label {
  font-weight: bold;
}
/*縲蠢��医Λ繝吶Ν縲*/
span.窶拂f7-req窶� {
  font-size: 0.8em;
  padding: 5px 6px;
  background: #049dd9;
  color: #ffffff;
  margin-right: 10px;
  display: inline-block;
}
/*繝ｩ繧ｸ繧ｪ繝懊ち繝ｳ*/
span.wpcf7-list-item + span.wpcf7-list-item {
  margin-top: 20px;
}
.窶拂f7-q窶� p {
  margin-bottom: 0;
  margin-top: 0;
}
/*蠕後�螟画峩*/
.content-contact-tel-wrapper {
  width: var(--container-width);
  max-width: var(--container-max-width);
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 5rem;
}
form.wpcf7-form.init {
  background-color: #fff;
}
form.wpcf7-form.invalid {
  background-color: #fff;
  border-radius: 10px;
}
.content-contact-flex {
  width: var(--container-width);
  max-width: var(--container-max-width);
  margin: auto;
  margin-top: 10rem;
  display: flex;
  gap: 1.5rem;
}
.content-contact-text {
  flex: 1;
}
.content-contact-wrapper {
  width: 600px;
}
.content-contact-space h4 {
  width: var(--container-width);
  max-width: var(--container-max-width);
  margin-right: auto;
  margin-left: auto;
}
.content-recruit-contact-flex {
  display: flex;
  gap: 1.5rem;
  margin-top: 3em;
}
.content-contact-wrapper div#窶拂f7-area窶� {
  background-color: #fff;
}
@media screen and (max-width: 1000px) {
  .content-recruit-contact-flex {
    flex-direction: column;
    margin-top: 1.5rem;
  }
  .privacypolicy-local {
    width: 100%;
  }
  div#窶拂f7-area窶� {
    width: 100%;
    padding: 3rem 1rem;
  }
}
@media screen and (max-width: 768px) {
  form.wpcf7-form.invalid {
    background-color: #fff;
    border-radius: 0 0 10px 10px;
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .窶拂f7-item窶� {
    margin-bottom: 2em;
    margin-top: 0;
  }
  div#窶拂f7-area窶� label {
    display: block;
    margin-bottom: 10px;
  }
  .窶拂f7-q窶� {
    width: 100%;
    margin: 0;
  }
  .窶拂f7-q窶� p {
    display: flex;
    align-content: stretch;
    align-items: flex-start;
    margin-bottom: 0;
  }
  .窶拂f7-a窶� {
    width: 100%;
  }
  .privacypolicy-local .privacy-policy-item {
    margin-top: 0;
    margin-bottom: 2rem;
    padding: 12px;
    max-height: 250px;
  }
  .menu__tab {
    display: flex;
    flex-wrap: wrap;
    max-width: 768px;
    width: 310px;
    margin-left: auto;
    margin-right: auto;
  }
}
/*縺雁撫縺�粋繧上○繝壹�繧ｸ*/
.contact-tel-btn-item {
  background: var(--gradient-secondary-horizonal);
  border-radius: 2.5rem;
  padding: 1rem 3rem;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 4px 2px #c3c4c7;
  transition: transform 0.25s, box-shadow 0.25s;
  font-weight: bold;
}
.contact-tel-btn a {
  text-decoration: none;
  color: var(--color-text-primary);
  font-weight: bold;
}
.contact-tel-btn-text-1 {
  font-size: 20px;
}
.contact-tel-btn-text-2 {
  font-size: var(--font-size-small);
}
li.contact-tel-btn {
  max-width: 600px;
  margin-left: 0;
}
.contact-tel-btn-item:hover {
  transform: translateY(4px);
  box-shadow: none;
}
.content-contact-tel-wrapper ul {
  list-style: none;
  padding-left: 0;
  width: var(--container-width);
  max-width: var(--container-max-width);
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .窶拉orm-heading窶� {
    margin-top: 2.5rem;
  }
  .窶拉orm-heading窶� p {
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
  }
  .窶拂f7-submit p {
    margin-bottom: 1.5rem;
  }
}
/*繧ｳ繝ｳ繧ｿ繧ｯ繝医√ち繝�*/
.menu__tab {
  display: flex;
  flex-wrap: wrap;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.menu__tab__item {
  flex: 1 1;
  order: -1;
  min-width: 70px;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  margin: 0 4px;
  border-radius: 5px 5px 0 0;
  background-color: #f1f1f1;
  color: #535353;
  text-align: center;
  cursor: pointer;
}
li.menu__tab__item a {
  text-decoration: none;
  color: #000;
  padding: 10px 20px;
  display: block;
}
.menu__tab__item:hover {
  opacity: 0.8;
}
.menu__tab__item input {
  display: none;
}
.menu__tab__item.active {
  background-color: #fff;
  border-color: #049dd9 #f1f1f1 #fff;
  border-style: solid;
  border-width: 4px 1px 1px;
  border-radius: 5px 5px 0 0;
  color: #333333;
}
span.wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-direction: column;
}
.窶拉orm-heading窶� p {
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  font-weight: 100;
}
/*繝九Η繝ｼ繧ｹ*/
.news-group {
  margin-top: 5rem;
  margin-bottom: 10rem;
  width: var(--container-width);
  max-width: var(--container-max-width);
  margin-right: auto;
  margin-left: auto;
}
.archive__article__post__thumbnail {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.archive__article__post__thumbnail img {
  filter: grayscale(100%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s, filter 0.3s;
}
.archive__article__post a {
  text-decoration: none;
  color: #000;
}
.archive__article__post a:hover .archive__article__post__thumbnail img {
  transform: scale(1.1);
  filter: grayscale(0%);
}
.archive__article__post__post-title {
  position: relative;
  overflow: visible;
}
.archive__article__post__post-title span {
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: bold;
  font-size: 1.1rem;
}
.archive__article__post__post-title::before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: -0.1rem;
  left: -0.5rem;
  background-color: var(--color-primary);
}
.archive__article__post__post-date {
  margin-top: 1rem;
}
.nav-previous a,
.nav-next a {
  display: block;
  text-decoration: none;
  width: 220px;
  position: relative;
  padding: 0.75rem 1rem;
  background-color: #fff;
  font-weight: bold;
  border: 1px solid #000;
  transition: border 0.3s;
}
.nav-next a {
  text-align: right;
}
.nav-previous a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  transition: width 0.3s;
  background-color: #000;
}
.nav-next a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  transition: width 0.3s;
  background-color: #000;
}
.nav-previous a:hover::after,
.nav-next a:hover::after {
  width: 100%;
}
.nav-previous a span,
.nav-next a span {
  position: relative;
  color: #000;
  z-index: 10;
}
.nav-previous a:hover span,
.nav-next a:hover span {
  color: var(--color-primary);
}
a.mod-btn:hover::after {
  width: 100%;
}
.nav-previous a::before {
  content: "";
  position: absolute;
  width: 3rem;
  height: 1px;
  top: 50%;
  right: -10%;
  background: #049dd9;
  z-index: 10;
}
.nav-next a::before {
  content: "";
  position: absolute;
  width: 3rem;
  height: 1px;
  top: 50%;
  left: -10%;
  background: #049dd9;
  z-index: 10;
}
@keyframes shine {
  0% {
    background: #000;
  }
  10% {
    background: #ccc;
  }
  100% {
    background: #000;
  }
}

@media screen and (max-width: 768px) {
  .nav-previous a,
  .nav-next a {
    width: 140px;
    background-color: #000;
  }
  .nav-previous a span,
  .nav-next a span {
    color: var(--color-primary);
  }
  .nav-next a::before,
  .nav-previous a::before {
    width: 2rem;
  }
}

/*news繧ｷ繝ｳ繧ｰ繝ｫ*/
.news-single {
  width: var(--container-width);
  max-width: var(--container-max-width);
  margin: auto;
  margin-top: 10rem;
}
a.button__back {
  display: block;
  text-decoration: none;
  width: 220px;
  position: relative;
  padding: 0.75rem 0;
  padding-left: 1rem;
  background-color: #fff;
  font-weight: bold;
  border: 1px solid #000;
  transition: border 0.3s;
  margin-top: 5rem;
}
a.button__back::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  transition: width 0.3s;
  background-color: #000;
}
a.button__back span {
  position: relative;
  z-index: 10;
  color: #000;
  transition: color 0.3s;
}
a.button__back:hover span {
  color: var(--color-primary);
}
a.button__back:hover::after {
  width: 100%;
}
a.button__back:before {
  content: "";
  position: absolute;
  width: 3rem;
  height: 1px;
  top: 50%;
  right: -10%;
  background: #049dd9;
  z-index: 10;
}
@keyframes shine {
  0% {
    background: #000;
  }
  10% {
    background: #ccc;
  }
  100% {
    background: #000;
  }
}
@media screen and (max-width: 768px) {
  .news-single {
    margin-top: 5rem;
  }
  a.button__back {
    margin: auto;
    margin-top: 5rem;
    background-color: #000;
  }
  a.button__back span {
    color: var(--color-primary);
  }
}

/*譁ｽ蟾･螳溽ｸｾ*/
ul.works-category-btn {
  display: flex;
  justify-content: center;
  align-content: center;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  list-style: none;
  column-gap: 3rem;
  padding: 0;
  flex-wrap: wrap;
}
ul.works-category-btn a {
  padding: 0.5em 1em;
  column-gap: 1rem;
  display: inline-block;
  text-decoration: none;
  color: #bbb;
  border: 2px solid #bbb;
  border-radius: 10px;
}
ul.works-category-btn a:hover {
  background: linear-gradient(20deg, #049dd97d, #fff, #049dd97d);
  color: #949494;
  border: 2px solid #949494;
}
.works-page {
  width: var(--container-width);
  max-width: var(--container-max-width);
  margin-right: auto;
  margin-left: auto;
}
.works-category {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin-top: 5rem;
  margin-bottom: 3rem;
  margin-bottom: 5rem;
}
ul.works-category-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
}
ul.works-category-list a {
  margin-right: 2rem;
  margin-bottom: 1rem;
  text-decoration: none;
  color: var(--border-color);
  border: 1px solid var(--border-color);
  padding: 0.5em 1em;
  border-radius: 10px;
  display: block;
}
.works-article-grid {
  width: var(--container-width);
  max-width: var(--container-max-width);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 2rem;
  row-gap: 3rem;
  margin: auto;
  margin-top: 7rem;
}
.image__cover {
  overflow: hidden;
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  margin-bottom: 0.5em;
}
.image__cover img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.works-list-btn {
  width: 400px;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .works-article-grid {
    grid-template-columns: 1fr;
    row-gap: 5rem;
    margin-top: 5rem;
  }

  ul.works-category-btn {
    font-size: var(--font-size-small);
    display: flex;
    justify-content: center;
    padding-left: 0;
    column-gap: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    list-style: none;
    flex-wrap: wrap;
  }
  ul.works-category-btn a {
    padding: 0.5em 1em;
    display: inline-block;
    text-decoration: none;
    color: #949494;
    border: 2px solid #949494;
    border-radius: 10px;
  }
  ul.works-category-btn span {
    writing-mode: vertical-rl;
  }
  .works-category {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin-top: 4rem;
    margin-bottom: 3rem;
  }
  ul.works-category-list a {
    margin-right: 2rem;
    text-decoration: none;
    color: var(--border-color);
    border: 1px solid var(--border-color);
    padding: 0.5em 1em;
    border-radius: 10px;
    font-size: var(--wp--preset--font-size--small);
  }
}
/*workd-list螳溽ｸｾ荳隕ｧ逾ｨ*/
.works-list {
  width: var(--container-width);
  max-width: var(--container-max-width);
  margin: auto;
  margin-top: 5rem;
}
</pre></body></html>