@charset "utf-8";
/*--------------------------------------------------------------------------------
  header
--------------------------------------------------------------------------------*/
:root { --hd-height: 6.25em; }
body { padding-top: var(--hd-height); }
header {
  width: 100%;
  position: relative;
  background-color: #FFF;
  z-index: 1000;
}
header a,
header a:visited,
header a:hover {
  text-decoration: none;
}
.l-hd {
  width: 100%;
  min-width: 360px;
  height: var(--hd-height);
  position: fixed;
  top: 0;
  left: 0;
  display: grid;
  background-color: #FFF;
}
.l-hd-scrollSet.is-upMove {
  animation: hd-up 0.3s forwards;
}
.l-hd-scrollSet.is-downMove {
  animation: hd-down 0.3s forwards;
}
@keyframes hd-up {
  from { transform: translateY(0); }
  to { transform: translateY(-110%); }
}
@keyframes hd-down {
  from { transform: translateY(-110%); }
  to { transform: translateY(0); }
}
@media print, screen and (min-width:1201px) {
  .l-hd {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "hd-logo hd-gnav";
  }
}
@media print, screen and (max-width:1200px) {
  .l-hd {
    grid-template-columns: 1fr auto auto auto;
    grid-template-rows: auto 0;
    grid-template-areas:
      "hd-logo hd-sns hd-tel hd-menuBtn"
      "hd-gnav hd-gnav hd-gnav hd-gnav";
  }
  html.is-gNav-open .l-hd {
    grid-template-rows: auto 1fr;
    width: 100%;
    min-width: 360px;
    height: 100%;
    position: fixed;
    left: 0;
    top:0;
    z-index: 1000;
    background-color: #FFF;
  }
}
@media print, screen and (max-width:760px) {
  .l-hd {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "hd-logo hd-menuBtn"
      "hd-gnav hd-gnav";
  }
}

/* logo
----------------------------------------*/
.l-hdLogo {
  grid-area: hd-logo;
  grid-column: 1 / 2;
  text-align: left;
  line-height: 1;
  display: flex;
  padding: clamp(15px, (20 / 1200 * 100vw), 20px);
}
.l-hdLogo-container {
  display: flex;
}
.l-hdLogo .logo {
  align-self: flex-end;
}
.l-hdLogo .logo img {
  margin-bottom: 0.2em;
}
.l-hdLogo .ttl {
  font-family: var(--ff-wf);
  align-self: flex-end;
  white-space: nowrap;
  padding-left: 0.75em;
}
.l-hdLogo .ttl_sub {
  display: inline-block;
  width: 9.2em;
  text-align: center;
  color: var(--gblue);
  font-weight: 500;
  border: 1px solid var(--gblue);
  padding: 0.4em 0.3em 0.3em 0.3em;
  font-size: 0.7em;
}
.l-hdLogo h1 {
  font-weight: 700;
  font-size: 1.6em;
  margin-top: 0.4em;
}
.l-hdLogo .ttl_corp {
  font-size: 0.7em;
  display: inline-block;
  margin-left: 0.25rem;
}
.l-hdLogo a,
.l-hdLogo a:visited,
.l-hdLogo a:hover,
.l-hdLogo .js_linkBox:hover a {
  color: inherit;
}
@media print, screen and (min-width:961px) {
  .l-hdLogo .logo img {
    width: clamp(80px, (100 / 1400 * 100vw), 100px);
  }
}
@media print, screen and (max-width:960px) {
  .l-hdLogo .logo {
    white-space: nowrap;
  }
  .l-hdLogo .logo img {
    width: clamp(65px, (80 / 640 * 100vw), 80px);
  }
}
@media print, screen and (max-width:1200px) {
  .l-hdLogo-container {
    align-self: center;
  }
  html.is-gNav-open .l-hdLogo,
  html.is-gNav-close .l-hdLogo {
    position: relative;
    z-index: 2000;
  }
}

/*--------------------------------------------------------------------------------
  global navigation
--------------------------------------------------------------------------------*/
.l-gNav {
  grid-area: hd-gnav;
}
@media print, screen and (min-width:1201px) {
  .l-gNav {
    height: 100%;
    align-self: center;
  }
  .l-gNav-item {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr auto auto auto auto;
    grid-template-areas:
      "hd-menu hd-sns hd-tel hd-btns";
  }
}
@media print, screen and (max-width:1200px) {
  html.is-gNav-open {
    overflow: hidden;
  }
  html.is-gNav-open,
  html.is-gNav-open body,
  html.is-gNav-close,
  html.is-gNav-close body {
    width: 100%;
    height: 100%;
  }
  .l-gNav {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s var(--cubic-bezier);
    pointer-events: none;
  }
  html.is-gNav-open .l-gNav:before,
  html.is-gNav-close .l-gNav:before {
    content: "";
    width: 100%;
    min-width: 360px;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
  }
  html.is-gNav-open .l-gNav {
    opacity: 1;
    pointer-events: auto;
  }
  html.is-gNav-close .l-gNav {
    transition: opacity 0.4s var(--cubic-bezier);
  }
  .l-gNav-item {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow-y: auto;
    z-index: 2000;
    padding: clamp(20px, (40 / 980 * 100vw), 40px) clamp(20px, (80 / 980 * 100vw), 80px) clamp(20px, (60 / 980 * 100vw), 60px) clamp(20px, (80 / 980 * 100vw), 80px);
    text-align: left;
  }
  html.is-gNav-open .l-gNav-item,
  html.is-gNav-close .l-gNav-item {
    display: inherit;
  }
  html.is-gNav-close .l-gNav-item {
    opacity: 0;
  }
  html.is-gNav-open .l-gNav:before,
  html.is-gNav-close .l-gNav:before,
  .l-gNav-item {
    background-color: #FFF;
  }
  .l-gNav a,
  .l-gNav a:visited,
  .l-gNav a:hover {
    color: inherit;
  }
}

/* nav
----------------------------------------*/
.l-gNavMenu {
  grid-area: hd-menu;
  list-style: none;
  font-family: var(--ff-wf);
  font-weight: 500;
}
.l-gNavMenu li a {
  display: block;
}
.l-gNavMenu a,
.l-gNavMenu a:visited,
.l-gNavMenu a:hover {
  color: inherit;
}
@media (hover: hover) and (min-width:1201px) {
  .l-gNavMenu a:hover {
    color: var(--blue);
  }
  .l-gNavMenu li a {
    padding: 0.6em 0;
    position: relative;
  }
  .l-gNavMenu li a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--blue);
    width: 100%;
    height: 3px;
    transform-origin: center top;
    transform: scale(0,1);
    transition: transform 0.4s var(--cubic-bezier);
  }
  .l-gNavMenu li a:hover:after {
    transform-origin: center top;
    transform: scale(1,1);
  }
}
@media print, screen and (min-width:1201px) {
  .l-gNavMenu {
    display: flex;
    align-items: center;
    gap: 1.8em;
    padding-left: 1em;
    padding-right: 2em;
  }
}
@media print, screen and (max-width:1200px) {
  .l-gNavMenu {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 3em;
    font-size: clamp(1.2em, 2vw, 1.3em);
  }
  .l-gNavMenu li {
    border-bottom: 1px solid rgba(var(--black-rgba),0.12);
  }
  .l-gNavMenu li a {
    display: block;
    padding: 1.2em 0;
  }
}
@media print, screen and (max-width:760px) {
  .l-gNavMenu {
    grid-template-columns: 1fr;
  }
  .l-gNavMenu li a {
    padding: 1em 0;
  }
}

/* SNS
----------------------------------------*/
.l-gNavSns,
.l-hdSns {
  grid-area: hd-sns;
  list-style: none;
  align-self: center;
  display: flex;
  align-items: center;
}
html.is-gNav-open .l-hdSns {
  display: none;
}
.l-gNavSns .fb svg,
.l-hdSns .fb svg { fill: var(--blue); }
.l-gNavSns .line svg,
.l-hdSns .line svg { fill: #00b300; }
@media (hover: hover) {
  .l-gNavSns .fb a:hover svg,
  .l-hdSns .fb a:hover svg { filter: brightness(125%); }
  .l-gNavSns .line a:hover svg,
  .l-hdSns .line a:hover svg { filter: brightness(115%); }
}
@media print, screen and (min-width:1201px) {
  .l-gNavSns {
    gap: 0.8em;
  }
  .l-gNavSns li svg {
    width: 1.8em;
    height: 1.8em;
  }
}
@media print, screen and (min-width:1201px) and (max-width:1560px) {
  .l-gNavSns {
    padding-right: 2em;
  }
}
@media print, screen and (max-width:1200px) {
  .l-gNavSns {
    padding-top: clamp(40px, (60 / 980 * 100vw), 60px);
    gap: clamp(1.5em, 4vw, 2em);
    justify-content: center;
  }
  .l-gNavSns li svg {
    width: clamp(2.4em, 6vw + 1em, 2.8em);
    height: clamp(2.4em, 6vw + 1em, 2.8em);
  }
  .l-hdSns {
    gap: 0.8em;
  }
  .l-hdSns li svg {
    width: 2.2em;
    height: 2.2em;
    margin-bottom: 0;
  }
}
@media print, screen and (min-width:1201px) {
  .l-hdSns {
    display: none;
  }
}
@media print, screen and (max-width:760px) {
  .l-hdSns {
    display: none;
  }
}

/* address / TEL
----------------------------------------*/
.l-gNavAd,
.l-hdTel {
  grid-area: hd-tel;
  align-self: center;
  text-align: left;
  color: var(--bnavy);
  line-height: 0.8;
  font-family: var(--ff-wf);
}
.l-gNavAd .no,
.l-hdTel .no {
  font-weight: 700;
  line-height: 1;
  color: var(--bnavy);
  display: inline-block;
  margin-bottom: -0.2em;
}
.l-gNavAd .no svg,
.l-hdTel .no svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
  margin-bottom: 0.2em;
  width: 1.2em;
  height: 1.2em;
  filter: #28B4BE;
  color: #28B4BE;
}
.l-gNavAd .time {
  font-weight: 500;
}
html.is-gNav-open .l-hdTel {
  display: none;
}
.l-gNavAd .no[href^="tel:"],
.l-gNavAd .no[href^="tel:"]:visited,
.l-gNavAd .no[href^="tel:"]:hover,
.l-hdTel .no[href^="tel:"],
.l-hdTel .no[href^="tel:"]:visited,
.l-hdTel .no[href^="tel:"]:hover {
  color: inherit;
}
@media print, screen and (min-width:1201px) and (max-width:1560px) {
  .l-gNavAd {
    display: none;
  }
}
@media print, screen and (min-width:1201px) {
  .l-gNavAd address {
    display: none;
  }
  .l-hdTel {
    display: none;
  }
}
@media print, screen and (min-width:761px) {
  .l-gNavAd {
    padding: 0 2em;
  }
  .l-gNavAd .no {
    font-size: 1.5em;
  }
  .l-gNavAd .time {
    font-size: 0.8em;
  }
}
@media print, screen and (max-width:1200px) {
  .l-gNavAd {
    padding-top: clamp(40px, (60 / 980 * 100vw), 60px);
    text-align: center;
  }
  .l-gNavAd address {
    line-height: 1.8;
    padding-top: 2em;
  }
  .l-gNavAd .no {
    font-size: clamp(2em, 6vw, 2.4em);
  }
  .l-gNavAd .time {
    font-size: 1em;
  }
  .l-hdTel {
    padding: 0 2em;
  }
  .l-hdTel .no {
    font-size: 1.5em;
  }
  .l-hdTel .time {
    font-size: 0.8em;
  }
}
@media print, screen and (max-width:760px) {
  .l-hdTel {
    display: none;
  }
}

/* button
----------------------------------------*/
.l-gNavBtns {
  grid-area: hd-btns;
  list-style: none;
  font-family: var(--ff-wf);
  font-weight: 500;
  color: #FFF;
}
.l-gNavBtns li a {
  display: block;
  text-align: center;
  position: relative;
}
.l-gNavBtns li a:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.l-gNavBtns li.contact a:before {
  background-color: var(--red);
}
.l-gNavBtns li.recruit a:before {
  background-color: var(--blue);
}
.l-gNavBtns li a[target="_blank"] svg {
  display: inline-block;
  width: 0.85em;
  height: 0.85em;
  position: absolute;
  right: 1.25em;
  top: 50%;
  transform: translateY(-50%);
}
.l-gNavBtns a,
.l-gNavBtns a:visited,
.l-gNavBtns a:hover {
  color: #FFF;
}
@media (hover: hover) {
  .l-gNavBtns li a:before {
    transition: var(--hover-trans);
  }
  .l-gNavBtns .contact a:hover:before { filter: brightness(115%); }
  .l-gNavBtns .recruit a:hover:before { filter: brightness(125%); }
}
@media print, screen and (min-width:1201px) {
  .l-gNavBtns {
    display: flex;
    flex-direction: column;
    font-size: 0.9em;
  }
  .l-gNavBtns li {
    height: 100%;
  }
  .l-gNavBtns li a {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1.25em;
  }
}
@media print, screen and (max-width:1200px) {
  .l-gNavBtns {
    margin-top: 3em;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 0.8em;
    font-size: clamp(1.05em, 2vw, 1.2em);
  }
  .l-gNavBtns li a {
    padding: 1em 1.25em;
  }
}
@media print, screen and (min-width:761px) {
  .l-gNavBtns {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* menu button
----------------------------------------*/
@media print, screen and (min-width:741px) {
  :root {
    --gNavBtn-icon-width: 16px;
    --gNavBtn-icon-height: 16px;
  }
}
@media print, screen and (max-width:740px) {
  :root {
    --gNavBtn-icon-width: 14px;
    --gNavBtn-icon-height: 14px;
  }
}
.l-gNavBtn {
  padding-right: 2.2em;
  padding-left: 0.5em;
  z-index: 3000;
  line-height: 1;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: auto;
}
.l-gNavBtn_icon,
.l-gNavBtn_icon span,
.l-gNavBtn_icon span:before,
.l-gNavBtn_icon span:after {
  display: inline-block;
}
.l-gNavBtn_icon {
  position: relative;
  width: var(--gNavBtn-icon-width);
  height: var(--gNavBtn-icon-height);
  transition: all 0.1s ease-out;
}
.l-gNavBtn_icon:before {
  content: "";
  width: 2.8em;
  height: 2.8em;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  border: 1px solid var(--bnavy);
  border-radius: 100%;
}
.l-gNavBtn.is-close .l-gNavBtn_icon:before {
  border-color: transparent;
  background-color: var(--bnavy);
}
.l-gNavBtn_icon span {
  position: absolute;
  right: 0;
  height: 2px;
  transition: all 0.3s ease-out;
  background-color: var(--bnavy);
}
.l-gNavBtn.is-close .l-gNavBtn_icon span {
  background-color: #FFF;
}
.l-gNavBtn_icon span:nth-of-type(1) {
  width: 100%;
  top: calc(50% - 4px);
}
.l-gNavBtn_icon span:nth-of-type(2) {
  width: 100%;
  bottom: calc(50% - 4px);
}
.l-gNavBtn.is-close .l-gNavBtn_icon span:nth-of-type(1) {
  width: 100%;
  top: 0;
  transform: translateY(calc((var(--gNavBtn-icon-height) / 2) - 1px)) rotate(-45deg);
}
.l-gNavBtn.is-close .l-gNavBtn_icon span:nth-of-type(2) {
  width: 100%;
  bottom: 0;
  transform: translateY(calc(-1 * (var(--gNavBtn-icon-height) / 2) + 1px)) rotate(45deg);
}
@media print, screen and (min-width:1201px) {
  .l-gNavBtn {
    display: none;
  }
}
@media print, screen and (max-width:1200px) {
  .l-gNavBtn {
    grid-area: hd-menuBtn;
  }
}

/*--------------------------------------------------------------------------------
  ページタイトル
--------------------------------------------------------------------------------*/
.l-pgttl {
  width: 100%;
  position: relative;
  padding-left: clamp(20px, (60 / 960 * 100vw), 120px);
  padding-right: clamp(20px, (60 / 960 * 100vw), 120px);
  padding-top: min(var(--space-m), 120px);
  padding-bottom: min(var(--space-m), 120px);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.l-pgttl:after {
  content: "";
  display: block;
  width: clamp(42%, calc(700 / 1400 * 100vw), 50%);
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url("../image/visual_paint.svg") no-repeat right top;
  background-size: cover;
  z-index: 2;
}
.l-pgttl:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-color: rgba(var(--blue-rgba),0.15);
}
.l-pgttl-container {
  max-width: var(--base-width);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  position: relative;
  z-index: 3;
}
.l-pgttl-txt {
  color: #FFF;
  font-size: clamp(var(--fs-4l), 5.5vw, var(--fs-max));
  font-family: var(--ff-wf);
  font-weight: 700;
}

/*--------------------------------------------------------------------------------
  contact
--------------------------------------------------------------------------------*/
.l-contact {
  background-color: var(--blue);
  padding: var(--space-m) var(--side-space);
  color: #FFF;
}
.l-contact-container {
  max-width: var(--base-width);
  margin-left: auto;
  margin-right: auto;
}
.l-contact-lead {
  font-size: var(--fs-l);
  font-family: var(--ff-wf);
  font-weight: 500;
  padding-bottom: var(--space-s);
}
.l-contactBtns {
  list-style: none;
  display: grid;
  row-gap: var(--space-2s);
}
.l-contactBtns li {
  height: 100%;
  display: grid;
  align-items: center;
  padding: calc(var(--space-2s) * 1.8) var(--space-2s);
}
.l-contactBtns a,
.l-contactBtns a:visited,
.l-contactBtns a:hover,
.l-contactBtns .js_linkBox:hover a {
  color: inherit;
  text-decoration: none;
}
@media print, screen and (min-width:961px) {
  .l-contactBtns {
    grid-template-columns: repeat(2,1fr);
  }
}

/* TEL
----------------------------------------*/
.l-contactBtns li.tel { background-color: #FFF; }
.l-contactBtns li.tel {
  color: var(--bnavy);
  line-height: 0.8;
  font-family: var(--ff-wf);
}
.l-contactBtns li.tel .no {
  font-weight: 700;
  line-height: 1;
  color: var(--bnavy);
  font-size: clamp(2em, 6vw, 2.4em);
  display: inline-block;
  margin-bottom: -0.2em;
}
.l-contactBtns li.tel .no svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
  margin-bottom: 0.2em;
  width: 1.2em;
  height: 1.2em;
  filter: #28B4BE;
  color: #28B4BE;
}
.l-contactBtns li.tel .time {
  font-weight: 500;
  font-size: 1em;
}
@media (hover: hover) {
  .l-contactBtns li.tel.js_linkBox {
    cursor: none;
    pointer-events: none;
  }
}

/* form
----------------------------------------*/
.l-contactBtns li.fm {
  font-size: clamp(1.4em, 1.5vw + 1em, 1.6em);
  font-family: var(--ff-wf);
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.l-contactBtns li.fm:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background-color: var(--red);
}
@media (hover: hover) {
  .l-contactBtns li.fm:before {
    transition: var(--hover-trans);
  }
  .l-contactBtns li.fm:hover:before {
    filter: brightness(115%);
  }
}

/*--------------------------------------------------------------------------------
  footer
--------------------------------------------------------------------------------*/
footer {
  background-color: var(--black);
  padding: var(--space-m) var(--side-space);
  color: #FFF;
}
footer a,
footer a:visited,
footer a:hover {
  color: inherit;
  text-decoration: none;
}
.l-ft {
  max-width: var(--base-width);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
@media print, screen and (min-width:961px) {
  .l-ft {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "ft-logo ft-sns"
      "ft-ad ft-ad"
      "ft-links ft-copy";
  }
}
@media print, screen and (min-width:641px) and (max-width:960px) {
  .l-ft {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "ft-logo ft-sns"
      "ft-ad ft-ad"
      "ft-links ft-links"
      "ft-copy ft-copy";
  }
}

/* logo
----------------------------------------*/
.l-ftLogo {
  grid-area: ft-logo;
  font-family: var(--ff-wf);
  font-weight: 700;
  font-size: 2em;
}
.l-ftLogo .corp {
  font-size: 0.7em;
  display: inline-block;
  margin-left: 0.25rem;
}

/* address / TEL
----------------------------------------*/
.l-ftAd {
  grid-area: ft-ad;
  padding-top: 1em;
}

/* links
----------------------------------------*/
.l-ftLinks {
  grid-area: ft-links;
  padding-top: var(--space-m);
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  column-gap: 2em;
  row-gap: 0.5em;
  font-size: 0.95em;
}
.l-ftLinks li a[target="_blank"] svg {
  display: inline-block;
  width: 0.85em;
  height: 0.85em;
  margin-left: 0.75em;
}
@media (hover: hover) {
  .l-ftLinks a:hover {
    opacity: 0.6;
  }
}

/* SNS
----------------------------------------*/
.l-ftSns {
  grid-area: ft-sns;
  align-self: center;
  list-style: none;
  display: flex;
  gap: clamp(1.5em, 4vw, 2em);
}
.l-ftSns li svg {
  width: clamp(2.2em, 4vw + 1em, 2.4em);
  height: clamp(2.2em, 4vw + 1em, 2.4em);
  fill: #FFF;
}
@media (hover: hover) {
  .l-ftSns a:hover svg { opacity: 0.6; }
}
@media print, screen and (min-width:641px) {
  .l-ftSns {
    justify-content: flex-end;
  }
}
@media print, screen and (max-width:640px) {
  .l-ftSns {
    padding-top: var(--space-s);
  }
}

/* copyright
----------------------------------------*/
.l-ftCopy {
  grid-area: ft-copy;
  align-self: flex-end;
  font-size: 0.8em;
}
.l-ftCopy .jigyou-saikouchiku {
  display: inline-block;
  margin-top: 0.5em;
}
@media print, screen and (min-width:961px) {
  .l-ftCopy {
    text-align: right;
  }
}
@media print, screen and (max-width:960px) {
  .l-ftCopy {
    padding-top: var(--space-s);
  }
}
