@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900&display=swap");

/* common
---------------------------------------------------------------- */
body {
  letter-spacing: 0.05em;
  word-wrap: break-word;
}
p {
  line-height: 1.7;
  font-size: var(--fs-default);
}

/* bg */
.bg-base {
  background: var(--cl-base);
}
.bg-main {
  background: var(--cl-main);
}
.bg-accent {
  background: var(--cl-accent);
}

.bg-black {
  background: var(--black);
}
.bg-white {
  background: var(--white);
}
.bg-gray {
  background: var(--gray);
}
.bg-d-gray {
  background: var(--d-gray);
}

/* color */
.cl-white {
  color: var(--white);
}
.cl-red {
  color: var(--red);
}

.cl-base {
  color: var(--cl-base);
}
.cl-main {
  color: var(--cl-main);
}
.cl-accent {
  color: var(--cl-accent);
}

/* font-size */
.fs-ttl-ll {
  font-size: var(--fs-ttl-ll);
}
.fs-ttl-l {
  font-size: var(--fs-ttl-l);
}
.fs-ttl-m {
  font-size: var(--fs-ttl-m);
}
.fs-ttl-s {
  font-size: var(--fs-ttl-s);
}
.fs-ttl-xs {
  font-size: var(--fs-ttl-xs);
}
.fs-lead {
  font-size: var(--fs-lead);
}
.fs-default {
  font-size: var(--fs-default);
}
.fs-notes {
  font-size: var(--fs-notes);
}

/* hover */
.hov-op1:hover {
  opacity: 1;
}

/* title
---------------------------------------------------------------- */
/* トップページタイトル */
.ttl-top {
  font-size: 5rem;
  text-align: center;
  letter-spacing: 3px;
  margin-bottom: 1em;
  color: var(--cl-main);
}
.ttl-top::first-letter{
  color: var(--cl-accent);
}
.ttl-top span,
.dropdown-ttl span,
.sub-hero span {
  display: block;
}
.ttl-top .sub,
.sub-hero .sub {
  padding-top: 0.2em;
  font-size: 0.4em;
  letter-spacing: normal;
  color: var(--black);
}

/* ドロップダウン */
.dropdown-ttl {
  font-size: 5rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 3px;
  margin-bottom: 0.4em;
  color: var(--cl-main);
}
.dropdown-ttl .sub {
  font-size: 0.4em;
  letter-spacing: normal;
  margin-top: -0.4em;
  color: var(--black);
}
/* 下層h2下 */
.ttl-top-text {
  font-size: var(--fs-ttl-m);
  font-weight: bold;
  text-align: center;
}
/* 下層h2 */
.ttl-01 {
  position: relative;
  font-size: var(--fs-ttl-l);
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 2em;
}
.ttl-01::after {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  width: 4rem;
  height: 3px;
  background: var(--cl-main);
  margin: auto;
}
/* 下層h3 */
.ttl-02 {
  position: relative;
  font-size: var(--fs-ttl-m);
  padding-left: 0.8em;
  margin: 2.5em 0 1.2em;
}
.ttl-02::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 4px;
  height: 110%;
  background: var(--cl-main);
  transform: translateY(-50%);
}
/* 下層h4 */
.ttl-03 {
  font-size: var(--fs-ttl-s);
  border-bottom: solid 2px var(--cl-main);
  padding-bottom: 0.4em;
  margin: 2.5em 0 1em;
}
.ttl-04 {
  position: relative;
  font-size: var(--fs-ttl-s);
  padding: 0 0 0.5em;
  margin: 2.5em 0 1em;
}
.ttl-04::before {
  position: absolute;
  content: "";
  display: block;
  background: var(--gray);
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  border-radius: 8px;
}
.ttl-04::after {
  position: absolute;
  content: "";
  display: block;
  background: var(--cl-main);
  left: 0;
  bottom: -4px;
  width: 25%;
  height: 2px;
  border-radius: 8px 0 0 8px;
}

@media only screen and (max-width: 599px) {
  .ttl-top {
    font-size: 4rem;
  }
}

/* text
---------------------------------------------------------------- */
.txt-lead {
  font-size: var(--fs-ttl-s);
  font-weight: bold;
  margin-bottom: 2em;
}
.map-link a{
  font-size: var(--fs-notes);
  color: var(--white);
  background: var(--cl-accent);
  padding: .3em .5em;
  margin-left: .5em;
  border-radius: 5px;
}

/* btn
---------------------------------------------------------------- */
.btn {
  display: inline-block;
  position: relative;
  font-weight: bold;
  text-align: center;
  padding: 1em;
  width: 100%;
  border-radius: 4px;
}

/* メインカラーボタン */
.btn-main {
  background: var(--cl-main);
  color: var(--white);
}
/* アクセントカラーボタン */
.btn-accent {
  background: var(--cl-accent);
  color: var(--white);
}

/* ctaボタン */
.btn-cta{
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  width: 100%;
  height: 100%;
}

.btn-cta::before {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 1em;
  transform: translateY(-50%);
  font-family: "Font Awesome 6 Free";

  font-weight: 900;
  color: var(--white);
  border-radius: 50%;
  width: 2em;
  height: 2em;
  transition: 0.3s;
}

/* 採用ボタン */
.btn-recruit {
  background: var(--cl-accent);
}
.btn-recruit::before{
  content: "\f007";
}

/* お問い合わせボタン */
.btn-contact {
  background: var(--cl-main);
}
.btn-contact::before{
  content: "\f0e0";
}


/* 戻る装飾 */
.btn-back::before {
  content: "";
  position: absolute;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  width: 0.5em;
  height: 0.5em;
  top: 0;
  bottom: 0;
  left: 1.5em;
  margin: auto;
  transition: 0.3s;
  transform: rotate(-135deg);
}
.btn-back:hover::before {
  left: 1em;
}
/* 次へ装飾 */
.btn-next::after {
  content: "";
  position: absolute;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  width: 0.5em;
  height: 0.5em;
  top: 0;
  bottom: 0;
  right: 1.5em;
  margin: auto;
  transition: 0.3s;
  transform: rotate(45deg);
}
.btn-next:hover::after {
  right: 1em;
}
/* キラ装飾 */
.btn-LtoR::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.2);
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.btn-LtoR:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.btn-next.btn-LtoR:hover::after {
  transition-delay: 0.4s;
}
/* 編集ボタン */
.btn-edit {
  margin-bottom: 2em;
  text-align: right;
}
.btn-edit a {
  background: var(--cl-accent02);
  color: var(--white) !important;
  padding: 0.8em;
  border-radius: 8px;
  font-size: var(--fs-default);
  box-shadow: 0 3px 6px rgb(0 0 0 / 20%);
}
.btn-edit a i {
  font-size: 1.5em;
  margin-right: 0.3em;
}
/* ボタン並べる */
.btn-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--gap-02);
}
.btn-list .btn{
  min-width: 240px;
}
@media only screen and (max-width: 599px) {
  .btn-list {
    flex-direction: column;
  }
}
/* box
---------------------------------------------------------------- */
.box-basic {
  padding: 2em 1.5em;
  border: var(--l-gray) 4px solid;
  background: var(--white);
}
.box-basic .ttl-03{
  margin-top: 1em;
}
.box-01 {
  padding: 2em 1.5em;
  border: var(--l-gray) 2px solid;
  text-align: center;
  border-radius: 8px;
}
.box-02 {
  padding: 2em 1.5em;
  background-color: var(--cl-base);
  border-radius: 8px;
  text-align: center;
}
.box-02-img img {
  width: 140px;
  height: 140px;
  border-radius: 1000px;
}
.box-02 h5 {
  color: var(--cl-main);
  font-size: var(--fs-ttl-xs);
  text-align: center;
}
.box-02 p {
  text-align: left;
}
.box-03 {
  background-color: var(--cl-base);
  border-radius: 8px;
  padding: 1.5em;
}
@media only screen and (max-width: 767px) {
  .box-01 {
    padding: 2em 1em;
  }
  .box-02 .col-3-1 {
    display: block;
    padding: 1em;
  }
  .box-03 {
    padding: 1em;
  }
}
/* メニュー */
.box-menu {
  margin-top: 3.5em;
}
.box-menu a {
  border: 2px solid var(--gray);
  border-radius: 8px;
}
.box-menu a > .col-item:nth-of-type(1) {
  overflow: hidden;
}
.box-menu a > .col-item:nth-of-type(1) img {
  object-fit: cover;
}
.box-menu a > .col-item:nth-of-type(2) {
  padding: 2em;
}
.text-next{
  font-size: var(--fs-default);
  font-weight: bold;
  color: var(--cl-main);
  display: flex;
  align-items: center;
}
.text-next::after {
  font-family: "Font Awesome 6 Free";
  content: "\f138";
  font-weight: 900;
  font-size: 1.4em;
  margin-left: 8px;
}
@media only screen and (max-width: 599px) {
  .box-menu a > .col-item:nth-of-type(2) {
    padding: 1.3em 1em 1em;
  }
}
/* table
---------------------------------------------------------------- */

/* dl
---------------------------------------------------------------- */
.dl-list-01{
  display: flex;
  flex-wrap: wrap;
  font-size: var(--fs-default);
  border-bottom: var(--gray) 1px solid;
}
.dl-list-01 dt{
  width: 18%;
  background: var(--cl-base);
  font-weight: bold;
  padding: 1em;
  border-top: var(--gray) 1px solid;
}
.dl-list-01 dd{
  width: 82%;
  padding: 1em;
  border-top: var(--gray) 1px solid;
}
@media only screen and (max-width: 1024px) {
  .dl-list-01 dt{
    width: 25%;
  }
  .dl-list-01 dd{
    width: 75%;
  }
}
@media only screen and (max-width: 599px) {
  .dl-list-01 dt{
    width: 100%;
  }
  .dl-list-01 dd{
    width: 100%;
    border-top: none;
  }
}

/* icon
---------------------------------------------------------------- */
.icon,
.fa-icon {
  display: flex;
  align-items: center;
}
/* 画像 */
.icon::before {
  content: "";
  display: inline-block;
  margin-right: 0.5em;
}
.icon-mail::before {
  background: url(../images/common/icon-mail.svg) center center no-repeat;
  background-size: contain;
  width: 1.5em;
  height: 1em;
}
/* font-awesome */
.fa-icon::before {
  font-family: "Font Awesome 6 Free";
  margin-right: 0.3em;
}
.fa-icon-tel::before {
  content: "\f095";
  font-weight: 900;
}
.fa-icon-arrow::before {
  content: "\f054";
  font-weight: 900;
  font-size: 1em;
  color: var(--cl-accent);
  text-align: right;
}

/* 外部リンクアイコン */
.ex-link {
  position: relative;
  padding-right: 1.2em;
}
.ex-link::after {
  font-family: "Font Awesome 6 Free";
  content: "\f35d";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-weight: 900;
  font-size: 0.8em;
}
/* 矢印 */
.arrow {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: var(--white);
  /* border: 2px solid var(--cl-main); */
  border-radius: 50%;
}
.arrow-item::after {
  position: absolute;
  content: "";
  top: 48%;
  right: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--cl-main);
  border-right: 2px solid var(--cl-main);
  transform: rotate(45deg) translateY(-50%);
}
/* header
---------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  background: var(--white);
  width: 100%;
  height: var(--header-height);
  /* padding: 0 15px; */
  z-index: 999;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
/* ロゴ */
.header-logo-wrap {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  height: 100%;
  z-index: 2;
}
.header-logo {
  text-indent: -9999px;
  height: 100%;
  padding: 3% 0;
}
.header-logo a {
  display: block;
  background: url(../images/common/logo.svg) center left no-repeat;
  background-size: contain;
  width: 180px;
  height: inherit;
}

/* ヘッダーコンテンツ */
.header-contents-wrap {
  width: 100%;
  height: 100%;
  padding-right: var(--hamburger-width);
}
.header-contents-row {
  height: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.header-cta-wrap {
  height: 100%;
}
.header-cta-wrap a {
  color: white;
  border-radius: 0;
  height: 100%;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding:0 1.5em;
}
.header-cta-wrap i{
  margin-right: 0.5em;
}

@media only screen and (max-width: 1024px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    width: 100%;
    z-index: 999;
  }
  .header.fixed {
    height: var(--header-height);
  }
}

/* ハンバーガーボタン */
.btn-hamburger {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: var(--hamburger-width);
  height: var(--hamburger-width);
  z-index: 99;
  background: var(--black);
  padding: 10px;
}
.btn-hamburger button {
  position: relative;
  width: 100%;
  height: 100%;
}
.btn-hamburger button::after {
  position: absolute;
  content: "メニュー";
  font-size: 1rem;
  font-weight: bold;
  color: var(--white);
  left: 0;
  bottom: 0;
  text-align: center;
  width: 100%;
}
.btn-hamburger button.is-active::after {
  content: "閉じる";
}
.btn-hamburger button span {
  background-color: var(--white);
  content: "";
  display: block;
  width: 60%;
  height: 2px;
  left: calc(50%);
  position: absolute;
  top: 40%;
  transform: translateX(-50%) translateY(-50%);
  transform-origin: 50% 50%;
  transition: all 0.4s;
}
.btn-hamburger button span:before,
.btn-hamburger button span:after {
  background-color: var(--white);
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  transition: all 0.4s;
}
.btn-hamburger button span:before {
  top: 10px;
}
.btn-hamburger button span:after {
  top: -10px;
}
.btn-hamburger button.is-active {
  background: transparent;
}
.btn-hamburger button.is-active span {
  background-color: transparent;
}
.btn-hamburger button.is-active span:before {
  top: 0;
  transform: rotate(45deg);
}
.btn-hamburger button.is-active span:after {
  top: 0;
  transform: rotate(-45deg);
}

@media only screen and (max-width: 1024px) {
  .btn-hamburger {
    right: 0;
    padding: 5px;
  }
}

/* global nav
---------------------------------------------------------------- */
.nav-global-wrap {
  height: 100%;
}
.nav-global-list {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  margin-right: 1.5em;
}
.nav-global-list > li > a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-weight: bold;
  padding: 0 1.2em;
  color: var(--black);
  height: 100%;
}
.nav-global-list > li > a > span {
  position: relative;
  display: inline-block;
}
.nav-global-list > li > a:hover {
  opacity: 1;
  background-color: var(--cl-base);
}
.dropdown-trigger > a::after {
  content: "";
  position: absolute;
  top: 40%;
  right: 0;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid var(--cl-main);
  border-right: 2px solid var(--cl-main);
  transform: rotate(135deg) translateX(50%);
}
.nav-global-dropdown-area {
  position: absolute;
  top: calc(100%);
  right: -76px;
  width: 100vw;
  height: auto;
  background: var(--cl-base);
  padding: 2em 2em 4em 2em;
  visibility: hidden;
  opacity: 0;
  overflow-y: scroll;
  transition: 0.3s all;
}
.dropdown-trigger.is-open .nav-global-dropdown-area {
  visibility: visible;
  opacity: 1;
}
.col-dropdown a {
  position: relative;
  display: inline-block;
  width: 100%;
  color: var(--black);
  font-size: var(--fs-read);
  font-weight: bold;
  padding: 1em;
  border-bottom: 1px solid var(--d-gray);
}
.col-dropdown a::after {
  content: "";
  position: absolute;
  top: 40%;
  right: 1em;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid var(--cl-main);
  border-right: 2px solid var(--cl-main);
  transform: rotate(45deg) translateX(50%);
}
@media only screen and (max-width: 1399px) {

  .header-logo a {
    width: 180px;
  }
}
/* mobile nav
---------------------------------------------------------------- */
.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100vh);
  background: var(--white);
  overflow: auto;
  opacity: 0;
  z-index: -999;
}
.nav-mobile.is-open {
  opacity: 1;
  z-index: 110;
}
.nav-mobile-header {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  top: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 99;
}
.nav-mobile-cta {
  margin-top: calc(var(--header-height) + 4em);
}
.nav-mobile-cta .btn{
  font-size: var(--fs-default);
}
.nav-mobile-cta i{
  margin-right: .5em;
}

.nav-mobile-inner {
  background: var(--white);
  padding: 1.5em 0 3em;
}
.nav-mobile-list > li {
  border-bottom: var(--l-gray) 1px solid;
}
.nav-mobile-list > li > a,
.nav-mobile-list > li .btn-dropdown {
  display: block;
  color: var(--black);
  font-size: var(--fs-default);
  font-weight: bold;
  padding: 1em;
  width: 100%;
  text-align: left;
}
.nav-mobile-list li.dropdown {
  display: flex;
  flex-wrap: wrap;
}
.nav-mobile-list li.dropdown > a {
  width: 85%;
}
.nav-mobile-list .btn-dropdown {
  width: 15%;
  position: relative;
}
.nav-mobile-list .btn-dropdown:before,
.nav-mobile-list .btn-dropdown:after {
  position: absolute;
  content: "";
  display: block;
  transition: all 0.4s;
  background: var(--cl-main);
  right: 0;
  top: 50%;
  width: 1em;
  height: 2px;
  transform: translate(-50%, -50%);
}
.nav-mobile-list .btn-dropdown:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.nav-mobile-list .btn-dropdown.is-open:before {
  transform: translate(-50%, -50%) rotate(0deg);
}
.nav-mobile-list .btn-dropdown.is-open:after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.nav-mobile-list .dropdown-menu {
  display: none;
  width: 100%;
  padding-bottom: 0.5em;
}
.nav-mobile-list .dropdown-menu li {
  padding: 0 1em;
}
.nav-mobile-list .dropdown-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  color: var(--black);
  padding: 0.5em 0;
}
.nav-mobile-list .dropdown-menu li a::before {
  content: "";
  border-top: 1px solid var(--cl-main);
  width: 0.8em;
  margin-right: 0.5em;
}

/* footer
---------------------------------------------------------------- */
.footer {
  width: 100%;
}
/* cta */
.cta {
  background-color: var(--cl-base);
}
.cta p {
  font-size: var(--fs-ttl-m);
}
.cta i{
  margin-right: .5em;
}
.cta .cta-btn {
  gap: 1em 2em;
}
.cta .cta-btn a {
  font-size: var(--fs-ttl-l);
  border-radius: 8px;
}
.cta-btn a {
  color: var(--white);
}
.cta-doc {
  background-color: var(--cl-accent);
}
.cta-tell {
  border: 1px solid var(--black);
  padding: 1.6em 1em;
}
.cta-tell a {
  display: inline-block;
  font-weight: bold;
  font-size: var(--fs-ttl-ll);
}
@media only screen and (max-width: 768px) {
  .cta .cta-btn {
    flex-direction: column;
  }
}
/* footer-pagetop */
.footer-pagetop {
  background-color: var(--d-gray);
  padding: 1.5em 0 2em;
}
.pagetop-arrow {
  position: relative;
}
.pagetop-arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-top: 3px solid var(--white);
  border-right: 3px solid var(--white);
  transform: translateX(-50%) rotate(-45deg);
}
/* footer-main */
.footer-main {
  background-color: var(--white);
  padding: 5em 0;
  min-height: 350px;
}
.footer-main-inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 2em;
}
.footer-left-wrap{
  display: flex;
  width: 25%;
  padding-top: .5em;
}
.footer-logo a {
  display: inline-block;
  height: 100px;
  width: 180px;
  max-width: 300px;
}
/* footer sitemap */
.footer-sitemap {
  gap: 1em 1em;
  max-width: 500px;
}
.footer-sitemap-ttl {
  font-size: var(--fs-default);
}
.footer-sitemap-ttl a {
  display: inline-block;
  font-weight: bold;
  padding: 0.4em 0.2em;
}
.footer-sitemap-section ul li a {
  display: inline-block;
  padding: 0.4em 0.2em;
}
/* footer-bottom */
.footer-bottom {
  background-color: var(--black);
  font-size: var(--fs-notes);
  color: var(--white);
  padding: 2em 0;
}
.footer-bottom-wrap {
  display: flex;
  align-items: center;
  gap: 1em 4em;
}
/* footer link */
.footer-link-list .footer-link-item + .footer-link-item {
  margin-left: 2em;
}
.footer-link-item a {
  display: flex;
  align-items: center;
  color: var(--white);
}
.footer-bottom ul {
  gap: 1em 1em;
}
.footer-link-line {
  border-left: 1px solid var(--white);
  padding-left: 1em;
}

@media only screen and (max-width: 1024px) {
  .footer-top-wrap {
    gap: 2em 2em;
  }
  .footer-left-wrap{
    width: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .footer-top-wrap,
  .footer-bottom-wrap {
    flex-direction: column;
  }
  .footer-logo {
    text-align: center;
  }
}
@media only screen and (max-width: 599px) {
  .footer-main {
    padding: 3em 0;
    min-height: auto;
  }
  .footer-main-inner {
    display: block;
  }
  .footer-left-wrap{
    width: 100%;
    justify-content: center;
  }
  .footer-sitemap{
    display: flex;
    justify-content: center;
    max-width : none;
    gap: 2em;
    margin-top: 3em;
  }
}

/* sitemap
---------------------------------------------------------------- */
.sitemap {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh);
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.58, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.58, 1);
  background: var(--cl-base);
  overflow-y: scroll;
}
.sitemap.is-open {
  visibility: visible;
  opacity: 1;
}
.sitemap-header {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 15px;
  top: 0;
  width: 100%;
  height: var(--header-height);
}
.sitemap-inner {
  padding: 8em 0;
}
.sitemap-cta-wrap a {
  font-size: var(--fs-ttl-xs);
}
.col-sitemap {
  gap: var(--gap-02);
  margin-top: 2em;
}
.sitemap-ttl {
  font-size: var(--fs-lead);
  color: var(--cl-main);
  padding: 1em 0;
  border-bottom: var(--cl-main) 1px solid;
}
.sitemap-list li a::before {
  content: "";
  border-top: 2px solid var(--black);
  width: 0.6em;
  margin-right: 0.5em;
}
.sitemap-children-list {
  margin: 1em 0 0 0;
  padding-left: 0.5em;
}
.sitemap-children-list li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.5em 1em 0.5em 0;
  font-size: var(--fs-default);
  font-weight: bold;
}
.sitemap-children-list li a::before {
  content: "";
  border-top: 2px solid var(--cl-main);
  width: 0.8em;
  margin-right: 0.5em;
}

@media only screen and (max-width: 1024px) {
  .sitemap-header {
    padding: 10px 5px;
  }
  .sitemap-cta-wrap>div{
    margin: auto;
  }
}
@media only screen and (max-width: 599px) {
  .sitemap-inner {
    padding: 4em 0;
  }
  .col-sitemap {
    margin-top: 1.5em;
  }
}

/* トップページ Top
---------------------------------------------------------------- */
.top-hero {
  margin-top: var(--header-height);
  width: 100%;
  position: relative;
  aspect-ratio: 1 / 0.4;
  height: auto;
  min-height: 400px;
  overflow: hidden;
}
.top-hero-text {
  position: absolute;
  inset: 0;
  margin: auto;
  font-size: 4rem;
  line-height: 1.5em;
  letter-spacing: 0.15em;
  color: var(--white);
  text-shadow: 0px 3px 6px rgb(0 0 0 / 20%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* スライダー */
.splide {
  z-index: -1;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}
.splide__arrows {
  display: none;
}
.splide-wrapper,
.splide__track,
.splide__slide,
.splide__slide img{
  width: 100%;
  height: 100%;
}
.splide__slide img{
  object-fit: cover;
}
.splide::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 1024px){
  .top-hero {
    aspect-ratio: 1 / 1.28125;
  }
}
@media only screen and (max-width: 768px){
  .top-hero-text {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 599px) {
  .top-hero {
    padding-top: 110%;
    min-height: auto;
    aspect-ratio: 1 / 1;
  }
  .top-hero-text {
    font-size: 2.6rem;
  }
}
@media only screen and (max-width: 400px){
  .top-hero-text br {
    display: none;
  }
}
/* top-company,top-service */
.box2-01{
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.box2-01.reverse{
  flex-direction: row-reverse;
}
/* 画像01 */
.box2-01 .img-wrap{
  position: relative;
  z-index: 3;
  height: 600px;
  width: 45%;
}
/* 画像01 */
.box2-01 .img-01{
  background: url(../images/top/top_service.jpg) center right no-repeat;
  background-size: cover;
}
/* 画像02 */
.box2-01 .img-02 {
  background: url(../images/top/top_company.jpg) center left no-repeat;
  background-size: cover;
}
/* テキスト */
.box2-01 .txt-wrap {
  max-width: 1000px;
  width: 55%;
  position: relative;
  z-index: 1;
  padding: 60px;
  padding-right: 8%;
  right: 0;
  top: 10%;
  min-height: 600px;
  box-sizing: border-box;
}
.box2-01.reverse .txt-wrap{
  padding-right: 60px;
  padding-left: 8%;
}
.box2-01 .txt-wrap::before {
  background: var(--cl-base);
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 100%;
  z-index: 1;
  right: 0;
}
.box2-01.reverse .txt-wrap{
  left: 0;
  right: auto;
}
.box2-01.reverse .txt-wrap::before{
  left: 0;
  right: auto;
}
.box2-01 .ttl-top{
  text-align: left;
  margin-bottom: 0;
}
.box2-01 .txt-inner {
  max-width: 500px;
  position: relative;
  z-index: 2;
  margin-top: 80px;
  margin-right: auto;
}
.box2-01.reverse .txt-inner {
  margin-right: 0;
  margin-left: auto;
}
/* 動き */
.box2-01 .txt-wrap.scroll-in-before::before{
  width: 130%;
}
.box2-01 .txt-wrap::before{
  transition-delay: .3s;
}
.box2-01 .txt-inner{
  transition-delay: .8s;
}
.box2-01.reverse .txt-wrap::before{
  transition-delay: .5s;
}
.box2-01.reverse .txt-inner{
  transition-delay: 1s;
}

@media only screen and (max-width: 950px){
  .box2-01 {
    display: block;
  }
  .box2-01 .img-wrap{
    padding-top: 60%;
    height: auto;
    width: 90%;
  }
  .box2-01.reverse .img-wrap{
    margin-left: auto;
  }
  .box2-01 .txt-wrap {
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 60px;
    padding-left: 20%;
    padding-right: 8%;
    left: 0;
    right: 0;
    top: 10%;
    min-height: auto;
    box-sizing: border-box;
  }
  .box2-01 .txt-wrap::before{
    top: -15%;
    width: 90%;
    height: 120%;
  }
  .box2-01 .txt-inner {
    max-width: none;
    margin: 0!important;
  }
  .box2-01.reverse .txt-wrap {
    padding-right: 20%;
    padding-left: 8%;
  }
  /* 動き */
  .box2-01 .txt-wrap.scroll-in-before::before{
    width: 100%;
  }

  .box2-01 .txt-wrap::before,
  .box2-01.reverse .txt-wrap::before{
    transition-delay: 0s;
  }
  .box2-01 .txt-inner,
  .box2-01.reverse .txt-inner{
    transition-delay: .0s;
  }
}
@media only screen and (max-width: 480px) {
  .box2-01 .img-wrap{
    padding-top: 60%;
    height: auto;
    width: 100%;
  }
  .box2-01 .txt-wrap {
    width: 100%;
    padding: 2em 1em!important;
  }
  .box2-01 .txt-wrap::before{
    width: 100%;
  }
  .box2-01 .txt-wrap .btn{
    display: block;
    margin-left: auto;
    margin-right: auto;  
  }
}


/* top-recruit */
.top-recruit-bg {
  background-image: url(../images/top/top_recruit.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  position: relative;
  min-height: 600px;
}
.top-recruit-bg .b-wrapper-reading {
  z-index: 1;
}
.top-recruit-text,
.top-recruit-bg .ttl-top,
.top-recruit-bg .ttl-top span {
  color: var(--white);
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 599px) {
  .top-recruit-bg {
    background-image: url(../images/top/top_recruit_sp.jpg);
    min-height: auto;
  }
}

/* サブページ（共通） Sub-common
---------------------------------------------------------------- */
.sub-hero {
  margin-top: var(--header-height);
  padding: 60px 0;
  width: 100%;
  background: var(--cl-base);
  line-height: 1.4;
  font-size: 20px;
  background-size: cover;
  text-align: center;
}
.sub-hero h1 {
  font-size: 5rem;
  text-align: center;
  letter-spacing: 3px;
  color: var(--cl-main);
}
@media only screen and (max-width: 599px) {
  .sub-hero h1 {
    font-size: 4rem;
  }
}

/* 投稿（共通）archive common
---------------------------------------------------------------- */
/* カテゴリーラベル */
.cat-label {
  --cl-cat: var(--cl-main);
  padding: 0.3em 1em;
  font-size: var(--fs-notes);
  background-color: var(--cl-cat);
  color: var(--white);
  min-width: 100px;
  text-align: center;
}

/* 記事カラム */
.col-archive {
  gap: 25px 15px;
}
.col-archive .col-item {
  position: relative;
}
.col-archive .cat-label {
  position: absolute;
  top: 0;
  left: 0;
  font-size: var(--fs-notes);
  color: var(--white);
  background: var(--cl-cat);
  border-radius: 0;
  padding: 0.2em 0.5em;
}
.col-archive .thumb-img {
  position: relative;
  overflow: hidden;
  padding-top: 75%;
}
.col-archive .thumb-img img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 記事リスト */
.article-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.article-list li{
  display: block;
  width: 100%;
  border-bottom: 1px solid var(--gray);
  border-right: 1px solid var(--gray);
  transition: 0.3s ease-in-out;
}
.article-list li:first-of-type,
.article-list li:nth-of-type(2){
  border-top: 1px solid var(--gray);
}
.article-list li:nth-of-type(odd){
  border-left: 1px solid var(--gray);
}
.article-list li a{
  display: block;
  width: 100%;
  padding: 1.5em;
}
.article-img-wrap{
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  min-height: 0;
  border: 1px solid var(--gray);
  overflow: hidden;
}
.article-list li a img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-list li:hover{
  background-color: var(--l-gray);
}
.article-list li a:hover {
  opacity: 1;
  /* color: var(--cl-main); */
}
.article-list li a:hover img {
  transform: scale(1.2);
}
@media only screen and (max-width: 768px){
  .article-list li{
    padding: 0.75em;
  }
}
@media only screen and (max-width: 500px){
  .article-list{
    grid-template-columns: repeat(1, 1fr);
  }
  .article-list li{
    border-left: 1px solid var(--gray);
    padding: 1em;
  }
  .article-list li:nth-of-type(2){
    border-top: none;
  }
}


/* 記事日付 */
.article-date {
  position: relative;
  display: inline-block;
  color: #999;
  font-size: var(--fs-notes);
}
.article-date.update {
  margin-left: 0.5em;
}
.article-date.update::before {
  display: inline-block;
  font-family: "Font Awesome 6 Free";
  font-size: 1em;
  content: "\f2f1";
  font-weight: 900;
  color: var(--d-gray);
}

/* カテゴリー、タームリスト */
.cat-list-wrap {
  position: relative;
  width: 100%;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 1em 0;
}
.cat-list-wrap::-webkit-scrollbar {
  display: none;
}
.cat-list {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  padding-right: 3em;
}
.cat-list li {
  text-align: center;
}
.cat-list li + li {
  margin-left: 10px;
}
.cat-list li a {
  font-size: var(--fs-default);
  background: var(--l-gray);
  color: var(--black);
  padding: 0.5em 2em;
  border-radius: 4px;
}
.cat-list li.current a {
  background: var(--cl-cat-list);
  color: var(--white);
}
.cat-area {
  position: relative;
}
.cat-area::after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0ec";
  top: 0.6em;
  right: 0;
  background: var(--cl-base);
  color: var(--cl-main);
  padding: 0.8em 1em;
  box-shadow: -8px 0px 30px 5px var(--white);
  border-radius: 5px 0 0 5px;
}
.cat-area.is-none::after {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .cat-area {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
  .cat-list-wrap {
    padding: 1em 3%;
  }
}

/* タグリスト */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.3em;
  gap: .8em;
}
.tag-list li {
  background: var(--cl-base);
  border-radius: 2px;
}
.tag-list li a {
  display: inline-block;
  position: relative;
  padding: 0 .8em 0 1.8em;
  font-size: var(--fs-notes);
}
.tag-list a::before {
  position: absolute;
  top: 0;
  left: .8em;
  font-family: "Font Awesome 6 Free";
  font-size: 1em;
  content: "\23";
  font-weight: 900;
  color: var(--cl-main);
}

/* 投稿（共通）single common
---------------------------------------------------------------- */
.type-single .l-primary .single-article {
  border: var(--gray) 1px solid;
  padding: 2em 1em;
  /* border-radius: 8px; */
}
.article-head {
  border-bottom: 2px solid var(--gray);
  padding-bottom: 1.6em;
}
.article-head .article-date {
  padding-left: 10px;
}
.type-single .l-primary .article-inner {
  max-width: 850px;
  margin: auto;
}
.single-thumbnail{
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
}
.single-thumbnail img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-content {
  margin: 3em 0;
}
@media only screen and (max-width: 599px) {
  .article-head {
    padding-bottom: 1em;
  }
}
/* 投稿サイドバー（共通）sidebar common
---------------------------------------------------------------- */
.l-secondary .sidebar-section + .sidebar-section {
  margin-top: 2.5em;
}
.sidebar-section-ttl {
  font-size: var(--fs-ttl-s);
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid var(--cl-main);
}
.sidebar-section ul li a {
  display: block;
  font-size: 1.4rem;
  padding: 0.8em 0;
  border-bottom: var(--gray) 1px solid;
}
.sidebar-tag-list a {
  display: inline-block;
  position: relative;
  padding: 0 0 0 1em;
  border-bottom: var(--black) 1px solid;
  margin-top: 10px;
}
.sidebar-tag-list a::before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Font Awesome 6 Free";
  font-size: 1em;
  content: "\23";
  font-weight: 900;
  color: var(--cl-main);
}
#sticky-area {
  position: -webkit-sticky; /*Safari*/
  position: sticky;
  top: 100px;
}

/* archive news
---------------------------------------------------------------- */

/* single news
---------------------------------------------------------------- */


/* 検索結果なし se-none
---------------------------------------------------------------- */
.box-none {
  padding: 2em 1em;
}

/* recruit 採用
---------------------------------------------------------------- */
.col-recruit{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5%;
}
.col-recruit .col-item{
  width: calc(calc(100% - 5%) / 2);
}
.col-recruit .col-item a:hover{
  opacity: 1;
}

.recruit-box {
  position: relative;
  border-radius: 8px;
  width: 100%;
  min-height: 270px;
  padding: 2em;
  overflow: hidden;
}
.recruit-box-bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.recruit-box-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s ease-out;
}
.col-recruit .col-item a:hover .recruit-box-bg img{ 
  transform: scale(1.1);
}
.recruit-box::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.65);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 8px;
}
.recruit-box-inner {
  position: relative;
  z-index: 1;
  color: var(--white);
}
.recruit-box-ttl {
  font-weight: bold;
  font-size: var(--fs-ttl-m);
}
.recruit-box-txt {
  font-size: var(--fs-default);
}
.recruit-box-ttl-wrap {
  position: relative;
}
.arrow-wrap {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.recruit .btn-back {
  background: var(--d-gray);
  color: var(--white);
}

@media only screen and (max-width: 1024px) {
  .col-recruit .col-item{
    width: 100%;
  }
}



/* company 会社情報
---------------------------------------------------------------- */
/* 代表メッセージ */
.msg-wrap {
  gap: 2em 2em;
}
.msg-img {
  flex-basis: 40%;
}
.msg-text {
  flex-basis: 60%;
}
.msg-name {
  font-weight: bold;
  font-size: var(--fs-ttl-m);
}
.msg-name span {
  display: block;
  font-size: var(--fs-default);
  color: var(--cl-main);
}
@media only screen and (max-width: 767px) {
  .msg-wrap {
    flex-direction: column;
  }
}
/* 企業理念 */
.company-box .ttl-05 {
  font-size: var(--fs-ttl-l);
}
.company-box-text {
  font-size: var(--fs-ttl-s);
}
/* 沿革 */
.timeline {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.timeline > li {
  margin-left: 2em !important;
  position: relative;
  list-style: none !important;
}
.timeline-content {
  width: 100%;
  border-left: 1px var(--cl-main) solid;
  padding: 0 0 2em 3em;
}
.timeline li:last-of-type .timeline-content {
  border: none;
}
.timeline-content:before {
  content: "";
  width: 1.2em;
  height: 1.2em;
  background: var(--cl-main);
  position: absolute;
  left: -0.56em;
  top: 0;
  border-radius: 100%;
}
.timeline-content h4 {
  color: var(--cl-main);
  font-size: var(--fs-lead);
  line-height: 16px;
}
.timeline-content p {
  font-size: var(--fs-default);
  padding: 1em 0 1.2em;
  border-bottom: 1px solid var(--gray);
}

@media only screen and (max-width: 599px) {
  .timeline > li {
    margin-left: 1em !important;
  }
  .timeline-content {
    padding-left: 2em;
  }
}
/* service 事業内容
---------------------------------------------------------------- */
/* サービスの流れ */
.box-flow {
  position: relative;
}
.box-flow + .box-flow {
  margin-top: 5em;
}
.box-flow::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 25px 0 25px;
  border-color: var(--d-gray) transparent transparent transparent;
  position: absolute;
  left: 50%;
  bottom: -5rem;
  transform: translateX(-50%);
}
.box-flow:last-of-type:after {
  border: none;
}
.box-flow-num {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 1000px;
  background-color: var(--cl-main);
  color: var(--white);
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.box-flow-num {
  font-weight: bold;
}
.box-flow-num small {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.box-flow-num span {
  font-size: 4rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
.box-flow-text {
  background-color: var(--cl-base);
  width: calc(100% - 50px);
  margin-left: auto;
  padding: 2em 2em 2em 5em;
}
.box-flow-text h3 {
  font-size: var(--fs-ttl-m);
  color: var(--cl-main);
}
.box-flow-text p {
  font-size: var(--fs-default);
}
@media only screen and (max-width: 599px) {
  .box-flow-wrap {
    margin-top: 5em;
  }
  .box-flow + .box-flow {
    margin-top: 6.4em;
  }
  .box-flow::after {
    bottom: -4rem;
  }
  .box-flow-num {
    width: 80px;
    height: 80px;
    left: 50%;
    top: -3em;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .box-flow-num small {
    font-size: 1.2rem;
  }
  .box-flow-num span {
    font-size: 3.2rem;
  }
  .box-flow-text {
    background-color: var(--cl-base);
    width: 100%;
    padding: 2.6em 1em 1em 1em;
    margin-left: 0;
  }
}

/* スタッフ紹介 */
.staff-wrap {
  display: flex;
  width: 100%;
  gap: 1em 5%;
}
.staff-img {
  flex-basis: 35%;
}
.staff-text {
  flex-basis: 60%;
}
.staff-name {
  font-size: var(--fs-ttl-ll);
}
.staff-name span {
  display: block;
  font-size: var(--fs-default);
  color: var(--cl-main);
}
.staff-career {
  margin-top: 30px;
}
.staff-text .ttl-03 {
  font-size: var(--fs-ttl-xs);
}
.staff-wrap .box-03 .ttl-02 {
  font-size: var(--fs-default);
}
@media only screen and (max-width: 599px) {
  .staff-wrap {
    flex-direction: column;
  }
  .staff-career {
    margin-top: 20px;
  }
}
/* 事例紹介一覧 */
.works .type-archive .card-item {
  margin: 0px;
}
.works .type-archive .col-archive {
  gap: 2em 2em;
}


/* editor-style
---------------------------------------------------------------- */
.block-col-4to6>div{
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  width: 100%;
  height: auto;
  gap: var(--gap-02);
}
@media only screen and (max-width: 599px) {
  .block-col-4to6>div{
    display: block;
  }
  .block-col-4to6>div>div+div{
    margin-top: 1.5em;
  }
}


/* youtube
---------------------------------------------------------------- */
.youtube-wrap{
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 16 / 9;
}
.youtube-wrap iframe {
  width: 100%;
  height: 100%;
}