:root {
    --color-txt: #1a1a1a;
    --color-blue: #10386b;
    --color-blue01: #dbe1e9;
    --color-blue02: #eceff3;
    --color-blue03: #f1f3f6;
    --color-orange: #ff5400;
    --color-orange01: #fff3ed;
    --color-orange02: #ffccb2;
    --color-gray: #5D5D5D;
    --font-base:  "Noto Sans JP", sans-serif;
    --font-en: "Roboto", sans-serif;
    --font-size-base: 1.4rem;
    --rem-base: 10;
    --viewport-min: 375;
    --breakpoint-sp: 768;
    --content-max-width: 1232;
    --breakpoint-pc: 1432;
    --viewport-max: 1600;
    --space-md: 2.5em;
    --space-lg: 5em;
}
html { font-size: calc(10 / var(--viewport-min) * 100vw); }
@media screen and (min-width: 768px) {
    :root {
        --font-size-base: 1.6rem;
        --space-md: 5em;
        --space-lg: 10em;
    }
    html { font-size: calc(10 / var(--breakpoint-pc) * 100vw);}
}
@media screen and (min-width: 1432px) {
    html { font-size: 62.5%; }
}
*,*::before,*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-base);
  font-size: var(--font-size-base);
  font-optical-sizing: auto;
  line-height: 1.6em;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  color: var(--color-txt);
  background: transparent;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
  margin: 0;
}
ul, ol, li {
  list-style: none;
  padding: 0;
}
blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after, q::before, q::after {
  content: '';
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
  transition: .3s;
  color: var(--color-blue);
  word-break: break-word;
  overflow-wrap: break-word;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
picture img,figure img {
  width: 100%;
  height: auto;
}
input, textarea, select, button {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: none;
  font: inherit;
  color: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input[type="submit"], input[type="button"] {
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
  font-weight: 700;
  line-height: 1em;
  font-size: 1em;
  text-rendering: optimizeLegibility;
}
p {
  line-height: 2em;
}
p.clear {
  margin-bottom: 1em;
}
small {
  font-size: 0.875em;
}
strong {
	font-size: 1.25em;
	font-weight: 700;
}
b {
	font-weight: 700;
}
a.txtlink {
  text-decoration: underline;
}
a.txtlink:hover {
  text-decoration: none;
}
.clear {
  clear: both;
  display: block;
  overflow: hidden;
}
p.clear {
  margin-bottom: 1em;
}
p:has(small) {
  line-height: 2em;
}
.textleft { text-align: left; }
.textright { text-align: right; }
.textcenter { text-align: center; }
hr { border:none; border-bottom: 1px solid  var(--color-blue01);}
hr.w-full {width: 100vw; transform: translateX(-1em); border-color: var(--color-blue);}

@media only screen and (max-width:767px) {
  .pc { display: none !important; }
  .--sp-textright { text-align: right; }
}
@media only screen and (min-width: 768px) {
  .sp { display: none !important; }
  a img,.hover-op a { transition: .3s;}
  .hover-op a:hover { opacity: .5; }
}
/** list **/
.list > li {
	padding-left: 1.25em;
  line-height: 2em;
	position: relative;
}
.list > li::before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
.list.list-maru > li::before {
	content: "●";
}
.list.list-nom > li::before {
	content: "・";
}
.list.list-note > li::before {
	content: "※";
}
ol.list-mark {
	counter-reset: item;
}
ol.list-mark > li {
	padding-left: 1.95em;
  position: relative;
}
ol.list-mark > li:before {
  counter-increment: item;
  content: counter(item, decimal-leading-zero);
  display: block;
  width: 1em;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  hr.w-full { width: calc(100vw + 100%);transform: translateX(-50%);}
}
.wrapper { overflow: hidden;}
.container {
    display: block;
    padding-left: 1em;
    padding-right: 1em;
    margin: 0 auto;
    width: 100%;
}
.content {
    padding-top: var(--space-md);
    padding-bottom: var(--space-lg);
}
/** header **/
body.admin-bar .header {
    top: 32px;
}
.header {
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 90;
    background-color: white;
    border-bottom: 1px solid var(--color-blue);
}
.header.fixed {
    position: fixed;
    animation: fade01 .5s ease-in-out;
    background-color: rgba(255, 255, 255);
}
@keyframes fade01 {
    from { opacity: 0; transform: translateY(-10%); }
    to { opacity: 1; transform: translateY(0); }
}
.header .header__area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    height: 5.8rem;
    z-index: 100;
}
.header .header__logo {
    margin: 0 1em;
}
.header .header__logo a {
    display: flex;
    gap: .75em;
    align-items: flex-end;
}
.header .header__logo img {
    width: 11rem;
}
.header .header__logo .header__logo--name {
    line-height: 1em;
}
.hamburger__nav {
    display: none;
}
/** nav **/
.menu-nav {
    line-height: 1em;
    display: grid;
    column-gap: 1em;
    row-gap: 2em;
}
.menu-nav .menu-nav__list {
    display: grid;
    row-gap: 2em;
}
.menu-nav .menu-nav__sub {
    padding-left: 1em;
    position: relative;
    display: grid;
    row-gap: 2em;
    margin-top: 2em;
}
.menu-nav .menu-nav__sub li {
    white-space: nowrap;
}
.menu-nav .menu-nav__sub::before {
    content: "";
    display: block;
    width: 2px;
    height: 100%;
    background-color: white;
    position: absolute;
    left: 0;
    top: 0;
}
.footer__nav .menu-nav__sub::before {
    background-color: var(--color-blue);
}
/** footer **/
.footer {
    margin-bottom: 1.5em;
    padding-top: 2em;
    border-top: 1px solid var(--color-blue);
    position: relative;
}
.footer .page-top {
   position: absolute;
   bottom: 8.5em;
   right: 1em;
   z-index: 10;
}
.footer a {
    color: var(--color-blue);
}
.footer__copy .copy {
    font-size: .8rem;
    font-family: var(--font-en);
    font-weight: 500;
}
/** page **/
.media-content {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}
.block-border {
  display: block;
  border: 1px solid var(--color-blue);
  position: relative;
  padding: 2.5em 1.5em 2em 1.5em;
}
.block-border .block-border__ttl {
  font-size: 1.9rem;
  line-height: 1em;
  color: var(--color-blue);
  background-color: white;
  font-size: 700;
  display: inline-block;
  padding: 0 .5em;
  position: absolute;
  top: -.25em;
  left: 1.5em;
}
@media only screen and (max-width:767px){
    .header__nav,.header__button {
        display: none;
    }
    body.admin-bar .header,
    body.admin-bar.nav_open .header {
        top: 46px;
    }
    body.nav_open {
        overflow: hidden;
    }
    .nav_open .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1001;
    }
    .nav_open .header .header__area {
        position: fixed;
        top: 0;
        left: 0;
        background: white;
        z-index: 1002;
    }
    .hamburger {
        display: block;
        width: 5.8rem;
        height: 5.8rem;
    }
    .hamburger .hamburger__btn {
        display: block;
        width: 100%;
        height: 100%;
        cursor: pointer;
        transition: .3s;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 100;
        position: relative;
    }
    .hamburger .hamburger__btn > span {
        width: 60%;
        height: 50%;
        display: block;
        position: relative;
    }
    .hamburger .hamburger__btn > span::before,
    .hamburger .hamburger__btn > span::after {
        content: " ";
        display: block;
        background: var(--color-blue);
        width: 100%;
        height: 3px;
        position: absolute;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: .5s;
    }
    .hamburger .hamburger__btn > span::before { top: 0; }
    .hamburger .hamburger__btn > span::after { top: 35%; }
    .nav_open .hamburger .hamburger__btn > span::before,
    .nav_open .hamburger .hamburger__btn > span::after { top: 30%;}
    .nav_open .hamburger .hamburger__btn > span::before { transform: translate(-50%,-50%) rotate(15deg); }
    .nav_open .hamburger .hamburger__btn > span::after { transform: translate(-50%,-50%) rotate(-15deg); }
    .hamburger .hamburger__btn::after {
        content: "MENU";
        display: block;
        width: 100%;
        text-align: center;
        color: var(--color-blue);
        font-size: 1.2rem;
        line-height: 1em;
        font-weight: 700;
        position: absolute;
        bottom: 1em;
        left: 0;
    }
    .nav_open .hamburger .hamburger__btn::after {
        content: "CLOSE"; 
    }
    .hamburger__nav {
        background-color: var(--color-orange);
    }
    .nav_open .header .hamburger__nav {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        display: block;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: none;
        scrollbar-width: none;
        z-index: 1001;
        padding-top: 5.8rem;
    }
    .nav_open .header::-webkit-scrollbar {
        display: none;
    }
    .hamburger__nav .menu-nav a {
        color: white;
    }
    .hamburger__nav .nav__botton {
        text-align: center;
    }
    .hamburger__nav-inner {
        padding-top: 4em;
        padding-bottom: 4em;
    }
    .hamburger__nav .nav__botton .button {
        background-color: var(--color-blue);
    }
    /** nav **/
    .menu-nav {
        font-size: 1.2rem;
        font-weight: 600;
        grid-template-columns: 16em auto;
        column-gap: 1em;
        row-gap: 2em;
    }
    .menu-nav .menu-nav__list.--product__nav {
        grid-row: 1 / 4;
        grid-column: 2 / 3;
    }
    .nav__botton,.footer__nav__botton {
        text-align: center;
        margin: 1em 0;
    }
    .nav__botton ul,.footer__nav__botton ul {
        display: inline-block;
        width: auto;
        margin: auto;
    }
    .nav__botton ul li,.footer__nav__botton ul li {
        margin: 1.5em 0;
        white-space: nowrap;
    }
    .nav__botton .button,.footer__nav__botton .button {
        color: white;
        font-size: 1.3rem;
    }
    .footer__area .footer__info {
        padding-top: 2em;
        position: relative;
        margin-bottom: 2.5em;
    }
    .footer__area .footer__info::before {
        content: "";
        display: block;
        width: 100vw;
        height: 1px;
        background-color: var(--color-blue);
        position: absolute;
        left: -1em;
        top: 0;
    }
    .footer__area .footer__info .footer__info-logo {
        width: 13rem;
        margin-bottom: 2em;
    }
    .footer__area .footer__info dd {
        font-size: 1.2rem;
    }
    .page-top a {
        display: block;
        width: 5rem;
    }
    .page-top a img {
        width: 100%;
    }
}
@media (min-width: 768px) {
    .container {
        width: calc(var(--content-max-width) / var(--rem-base) * 1rem);
        padding-left: 1em;
        padding-right: 1em;
    }
    .header .header__area {
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 7.2rem;
        padding: 0 1.5em 0 2em;
    }
    .header .header__logo img {
        width: 16rem;
    }
    .header__g-nav,
    .header__g-nav .header__nav__links,
    .header__g-nav .header__button  {
        display: flex;
        align-items: center;
        column-gap: 2em;
        font-size: 1.5rem;
    }
    .header__g-nav .header__button {
        column-gap: 1.1rem;
    }
    .header__g-nav .header__button .button {
        max-width: auto !important;
        font-size: 0.85em;
        padding: 1.5em 2.75em 1.5em 1.5em;
    }
    .header__g-nav .header__button .button::before {
        right: 1em;
    }
    .header__g-nav .header__nav__links > li > a {
        position: relative;
    }
    .header__g-nav .header__nav__links > li > a::before {
        content: "";
        display: block;
        position: absolute;
        bottom: -1rem;
        width: 0;
        height: 3px;
        background-color: var(--color-orange);
        transition: .3s;
    }
    .header__g-nav .header__nav__links > li {
        position: relative;
        cursor: pointer;
        padding: 1.75em 0;
        line-height: 1em;
        overflow: visible;
    }
    .header__g-nav .header__nav__links > li:hover > a::before,
    .header__g-nav .header__nav__links > li.is-active > a::before {
        width: 100%;
    }
    .header__nav .header__nav__sub {
        position: absolute;
        top: 100%;
        left: 0;
        width: 17em;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-0.5rem);
        transition: opacity .3s, transform .3s, visibility .3s;
        pointer-events: none;
        white-space: nowrap;
    }
    .header__nav .header__nav__sub.--product-nav {
        width: 12em;
    }
    .header__g-nav .header__nav__links > li:hover .header__nav__sub {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    .header__nav .header__nav__sub li a {
        display: block;
        padding: 1em;
        border-bottom: 1px solid var(--color-blue);
        background-color: white;
    }
    .header__nav .header__nav__sub li a:hover {
        opacity: 1;
        background-color: var(--color-blue);
        color: white;
    }
    /** footer **/
    .footer__nav .menu-nav {
        font-size: 1.5rem;
        font-weight: 500;
        grid-template-columns: 10em 26rem auto;
        column-gap: 0;
        row-gap: 2em;
        grid-auto-rows: auto;
    }
    .footer__nav .menu-nav__list {
        align-self: start;
        height: auto;
    }
    .footer__nav .menu-nav .menu-nav__list.--product__nav {
        grid-column: 3 / 4;
        grid-row: 1 / 3;
    }
    .footer__nav .menu-nav .menu-nav__list.--business__nav {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }
    .footer__nav .menu-nav .menu-nav__list.--recruit__nav {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }
    .footer__area {
        display: grid;
        grid-template-columns: auto 1fr;
        column-gap: 10em;
        padding-top: 6em;
    }
    .footer__area .footer__nav {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
    }
    .footer__area .footer__info {
        grid-row: 1 / 2;
        grid-column: 1 / 2;
    }
    .footer__area .footer__nav__botton {
        grid-row: 2 / 3;
        grid-column: 1 / 2;
        align-self: end;
    }
    .footer__area .footer__copy {
        grid-row: 3 / 4;
        grid-column: 1 / 3;
    }
    .footer__info .footer__info-logo {
        width: 16rem;
        margin-bottom: 2em;
    }
    .footer__area .footer__nav__botton ul {
        display: flex;
        gap: 2em;
    }
    .footer__area .footer__nav__botton a.button {
        color: white;
        width: 20rem;
    }
    .footer__area .footer__nav a:hover {
        color: var(--color-orange);
    }
    .footer__area .footer__copy {
        margin-top: 8.2rem;
    }
    .footer__copy .copy {
        font-size: 0.75em;
    }
    .footer .page-top {
        bottom: auto;
        top: 1.5em;
    }
    /** page ***/
    .media-content {
        flex-direction: row;
    }
    .media-content.--lay-reverse {
        flex-direction: row-reverse;
        justify-content: space-between;
    }
    .media-content > picture {
        display: block;
        width: 48.5rem;
    }
    .media-content .media-content__txt {
        display: block;
        width: 65.6rem;
    }
    .block-border {
        padding: 5.4rem;
    }
    .block-border .block-border__ttl {
        font-size: 2.4rem;
    }
}
.fade-in {
  opacity: 0;
  transition: opacity 1.2s ease;
}
.fade-in.inview {
  opacity: 1;
}
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 0.8s ease;
}
.fade-up.inview {
  opacity: 1;
  transform: translateY(0);
}
.char-ja {
  font-family: var(--font-base);
  font-weight: 500;
}
.char-en {
  font-family: var(--font-en);
  font-weight: 500;
}
.button {
  width: auto;
  max-width: 21rem;
  display: block;
  background-color: var(--color-orange);
  border: 1px solid var(--color-orange);
  font-size: 1.4rem;
  line-height: 1em;
  padding: 1.5em 2.5em 1.5em 1.75em;
  border-radius: 2.5em;
  text-align: center;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: color .3s ease;
  isolation: isolate;
}
.button.--blue {
  border-color: var(--color-blue);
  background-color: var(--color-blue);
}
.button span {
  color: white;
  position: relative;
  z-index: 1;
  transition: color .3s ease;
}
.button::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background-image: url('../images/arrow_white.svg');
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  position: absolute;
  top: 50%;
  right: 1.25em;
  transform: translateY(-50%);
  z-index: 1;
  transition:
  background-image 0.3s ease 0.5s,
  transform 0.3s ease 0.5s;
}
.button.--bule::after {
  background-image: url('../images/arrow_blue.svg');
}
.button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 1/1;
  width: 0;
  height: 0;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease-in-out, height 0.6s ease-in-out;
  z-index: -1;
}
.button:hover::before {
  width: 22rem;
  height: 22rem;
}
.button:hover span {
  color: var(--color-orange);
}
.button.--blue:hover span {
  color: var(--color-blue);
}
.button:hover::after {
  background-image: url('../images/arrow_orange.svg');
  transform: translate(0.4em, -50%);
}
.button.--blue:hover::after {
  background-image: url('../images/arrow_blue.svg');
  transform: translate(0.4em, -50%);
}
@keyframes expandCircle {
    0% {
        width: 0;
        height: 0;
    }
    20% {
        width: 1em;
        height: 1em;
    }
    100% {
        width: 20rem;
        height: 20rem;
    }
}
.mv-slide {
  position: relative;
}
.mv-slide [class^="mv-slide"] {
  display: block;
  position: relative;
}
.animeLeft,.animeRight {
  display: block;
  position: relative;
}
.animeLeft > span,.animeRight > span {
  display: inline-block;
  position: relative;
  clip-path: inset(0 100% 0 0);
  transition: none;
}
.mv-slide .animeLeft > span {
  transition: clip-path 0.7s cubic-bezier(0, 0, 0.2, 1);
}
.mv-slide.inview .animeLeft > span,.mv-slide.inview .animeRight > span {
  clip-path: inset(0 0 0 0);
}
.animeRight {
  text-align: right;
}
.mv-slide .animeRight > span {
  clip-path: inset(0 0 0 100%);
  transition: clip-path 0.7s cubic-bezier(0, 0, 0.2, 1);
}
.mv-slide .mv-slide03.aniFade > span {
  clip-path: none !important;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .6s ease;
}
.mv-slide.show-third .mv-slide03.aniFade > span {
  opacity: 1;
  transform: translateY(0);
}
/** heading **/
.page-heading {
  padding-top: 5.4rem;
  margin-bottom: 4rem;
}
.page-heading__ttl-wrap {
  display: block;
  width: 100%;
  height: 21rem;
  padding-top: 7rem;
}
.page-heading__ttl .page-heading__ttl--en {
    font-size: 4.5rem;
    line-height: 1em;
    font-weight: 700;
    display: flex;
    align-items: center;
    color: var(--color-blue);
    column-gap: .5em;
}
.page-heading__ttl.mv-slide .page-heading__ttl--en::after {
    content: "";
    display: inline-block;
    width: .85em;
    height: 4px;
    background-color: var(--color-blue);
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.page-heading__ttl.mv-slide.inview .page-heading__ttl--en::after {
   clip-path: inset(0 0 0 0);
   transition-delay: 0.5s;
}
.page-heading__ttl .page-heading__ttl--jp {
  color: var(--color-orange);
  font-weight: 1.6rem;
  line-height: 1.2em;
  font-weight: 700;
  margin-top: 1em;
}
.page-heading__lead {
  position: relative;
  display: block;
  padding-top: 1px;
}
.page-heading__lead::after {
  content: "";
  display: block;
  width: 6rem;
  height: calc(100% +  2.7rem);
  background-color: var(--color-blue);
  background-image: url('../images/heading-slit.svg');
  background-repeat: no-repeat;
  background-position: bottom -1px left;
  background-size: 3rem auto;
  position: absolute;
  top: 0;
  right: -1em;
  z-index: -1;
}
.page-heading__img {
    width: 100vw;
    transform: translateX(-1em);
    display: block;
}
.page-heading .page-heading__txt {
  margin-top: 6rem;
}
.page-heading .page-heading__txt dt {
    font-size: 2.6rem;
    line-height: 1.5em;
    font-weight: 700;
    margin-bottom: 1em;
    color: var(--color-blue);
    white-space: nowrap;
}
.page-heading .page-heading__txt dt small {
  font-size: .6em;
}
.page-heading .page-heading__txt dd p {
    font-size: 1em;
    line-height: 2em;
}
.page-heading .page-heading__line {
  margin-top: 5rem;
  width: 102vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -51vw;
  margin-right: -51vw;
}
.page-heading__line picture {
  display: block;
  width: 100%;
}
.page-heading__line picture img {
  display: block;
  width: 100%;
  height: auto;
}
/** heading sub **/
.page-heading__ttl-wrap:has(.sub-heading__ttl--no) {
  padding-top: 4.5rem;
}
.page-heading__ttl .sub-heading__ttl--no {
  font-size: 3.9rem;
  line-height: 1em;
  font-family: var(--font-en);
  color: var(--color-blue);
  display: inline-block;
}
.page-heading__ttl .sub-heading__ttl--no > span {
  position: relative;
  display: block;
  padding-right: 3em;
}
.page-heading__ttl .sub-heading__ttl--no span::before {
  content: "PRODUCTS";
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.5em;
  color: var(--color-orange);
  font-family: var(--font-en);
  border-bottom: 2px solid var(--color-blue);
  padding-bottom: .25em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5em;
}
.page-heading__ttl.--service .sub-heading__ttl--no span::before {
  content: "SERVICE";
}
.page-heading__ttl .sub-heading__ttl--jp {
  font-size: 2.8rem;
  line-height: 1.5em;
  color: var(--color-blue);
}
.breadcrumbs {
    font-size: 0.75em;
    color: #767676;
    margin: .5em 0;
}
.breadcrumbs a {
    color: #767676;
}
/** title **/
.pg-index__title {
  font-size: 2.1rem;
  font-weight: 700;
  background-color: var(--color-blue);
  color: white;
  position: relative;
  padding: 1.25em 0 .75em 0;
}
.pg-index__title::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background-color: var(--color-blue);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.pg-index__title > span {
  display: inline-block;
  position: relative;
}
.pg-index__title > span::after {
  content: "";
  display: block;
  width: 100vw;
  height: .75em;
  position: absolute;
  top: -1.3em;
  left: calc(100% + .5em);
  background-color: white;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 1.7% 100%);
}
.pg-title__sub {
  font-size: 2.1rem;
  line-height: 1.6em;
  color: var(--color-blue);
}
.pg-title__sub > span {
  display: inline-block;
  padding-bottom: .4em;
  border-bottom: 4px solid var(--color-blue);
}
.pg-title__sub1 {
  font-size: 1.9rem;
  line-height: 1.5em;
  color: var(--color-blue);
  text-align: center;
}
/** table **/
.products-table table {
  width: 100%;
}
.products-table table thead th {
  background: var(--color-blue);
  color: white;
  text-align: center;
  padding: .5em;
  white-space: nowrap;
}
.products-table table th,
.products-table table td {
  border-bottom: 1px solid var(--color-blue);
  border-right: 1px solid var(--color-blue01);
  position: relative;
}
.products-table tbody th,
.products-table tbody td {
  padding: 1em;
  text-align: left;
  vertical-align: top;
}
.products-table tbody th {
  width: 9em;
  color: var(--color-blue);
  background-color: var(--color-blue03);
}
.products-table thead tr th:last-child {
  border-right-color: var(--color-blue);
}
/** page **/
.sv-page__links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5em;
  margin: var(--space-lg) 0 3em 0;
}
.sv-page__links a {
  display: grid;
  grid-template-columns: auto 12rem;
  border: 1px solid var(--color-blue);
}
.sv-page__links a .sv-page__links__ttl {
  position: relative;
  padding: 1.5em 1em 0 1.5em;
}
.sv-page__links a .sv-page__links__ttl::before {
  content: "";
  display: block;
  width: 1.5em;
  height: 1.5em;
  background: url('../images/arrow_orange.svg') no-repeat center / contain;
  position: absolute;
  bottom: 1em;
  right: 1em;
  transition: .3s;
}
.sv-page__links a:hover .sv-page__links__ttl::before  {
  transform: translateX(.5em);
}
.sv-page__links a .sv-page__links__ttl span {
  color: var(--color-blue);
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 1.5em;
  white-space: nowrap;
}
.sv-page__links a .sv-page__links__ttl span::before,
.contact__link dl dt span::before {
  content: "SERVICE";
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-en);
  font-style: italic;
  display: block;
  color: var(--color-orange);
  margin-bottom: .25em;
}
.sv-page__links a .sv-page__links__ttl.--products span::before {
  content: "PRODUCTS";
}
.sv-page__links a .sv-page__links__ttl.--recruit span::before {
  content: "RECRUIT";
}
.contact__link dl dt span::before {
  content: "CONTACT";
  margin-bottom: 1em;
}
.contact__link {
  position: relative;
}
.contact__link dl {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  align-items: center;
  text-align: center;
}
.contact__link dl dt span {
  display: inline-block;
  font-size: 2.6rem;
  padding-bottom: .6em;
  border-bottom: 4px solid white;
}
.contact__link dl dt span::before 
.contact__link dl dd > p {
  font-size: 1.3rem;
}
.contact__link a.button {
  color: white;
}
.contact__link a.button:hover {
  color: var(--color-orange);
}
.recruit-contact {
  background-color: var(--color-blue03);
  padding: 1.5em 1em;
  margin: var(--space-lg) auto;
}
.recruit-contact .recruit-contact__ttl {
  text-align: center;
  font-size: 2.3rem;
  margin: 1em auto;
  color: var(--color-blue);
}
.recruit-contact .recruit-contact__ttl span {
  display: inline-block;
  padding: 0 1em;
  position: relative;
}
.recruit-contact .recruit-contact__ttl span::before,
.recruit-contact .recruit-contact__ttl span::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  background-color: var(--color-blue);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) skewX(15deg);
}
.recruit-contact .recruit-contact__ttl span::after {
  left: auto;
  right: 0;
  transform: translateY(-50%) skewX(-15deg);
}
.recruit-contact .recruit-contact__lead {
  text-align: center;
  margin: 1.5em 0;
}
.recruit-contact .recruit-contact__links {
  display: grid;
  gap: 1em;
  margin: 2em 0;
}
.recruit-contact .recruit-contact__links a {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: .1em;
  display: block;
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
  background-color: white;
  text-align: center;
  padding: 1.5em;
  background-image: url('../images/arrow_orange.svg');
  background-repeat: no-repeat;
  background-position: center right 1em;
  background-size: 1em auto;
  transform: .3s;
}
.recruit-contact .recruit-contact__links a:hover {
  background-position: center right .5em;
}
.wpcf7,.contact__inner {
    display: block;
    max-width: 83rem;
    margin: 0 auto var(--space-lg) auto;
}
.contact-info {
    display: block;
    background-color: var(--color-orange01);
    padding: 1.5em;
    margin-bottom: 3em;
}
.contact-info .contact-info__ttl {
    font-size: 1.9rem;
    line-height: 1.5em;
    color: var(--color-blue);
    font-weight: 700;
    display: inline-block;
    border-bottom: 4px solid var(--color-blue);
    padding-bottom: .25em;
    margin-bottom: 1.5em;
}
.contact-info .button {
    margin: 1.5em auto 0 auto;
}
@media (max-width: 767px) {
  /** table **/
  .--scrol:has(table) {
    overflow-x: auto;
    display: block;
    padding-bottom: 1em;
  }
  .--scrol table {
    width: 120rem;
  }
  /*
  .products-table table tbody td,
  .products-table table tbody th {
    white-space: nowrap;
  }*/
  .--scrol::-webkit-scrollbar {
    width: 1rem;
    height: 1rem;
  }
  .--scrol::-webkit-scrollbar-track {
    background: var(--color-blue01);
  }
  .--scrol::-webkit-scrollbar-thumb {
    background: var(--color-blue);
    border-radius: .5em;
  }
  /** page **/
  .sv-page__links a picture img {
    width: 12rem;
    height: 13.5rem;
    object-fit: cover;
  }
}
@media (min-width: 768px) {
  /** heading **/
  .page-heading {
    padding-top: 7.2rem;
    margin-bottom: 12rem;
  }
  .page-heading__ttl-wrap {
    padding-top: 11rem;
    height: 25rem;
  }
  .page-heading__ttl .page-heading__ttl--en {
      font-size: 8rem;
  }
  .page-heading__ttl.mv-slide .page-heading__ttl--en::after {
      width: 1.5em;
  }
  .page-heading__ttl .page-heading__ttl--jp {
      font-size: 1.8rem;
  }
  .page-heading__inner {
    position: relative;
  }
  .page-heading__img {
    width: 80rem;
    margin: 0;
    transform: translateX(calc(60rem + 2em));
    display: block;
  }
  .page-heading__lead {
    margin-bottom: 10rem;
  }
  .page-heading__lead::after {
    width: 20rem;
    right: calc(-20rem - 1em);
    height: calc(100% + 5.8rem);
  }
  .page-heading__lead::before {
    content: "";
    display: block;
    background-color: var(--color-blue);
    width: 100vw;
    height: calc(100% + 5.8rem);
    position: absolute;
    top: 0;
    right: calc(-100vw - 20rem) ;
  }
  .page-heading__inner .page-heading__txt {
    width: 50.5rem;
    position: absolute;
    bottom: 0;
    left: 1em;
    margin: 0;
  }
  .page-heading .page-heading__txt dt {
      font-size: 4rem;
  }
  .page-heading .page-heading__txt dd p {
    line-height: 2em;
  }
  .page-heading__ttl-wrap:has(.sub-heading__ttl--no) {
    padding-top: 7.2rem;
  }
  .page-heading__ttl:has(.sub-heading__ttl--no) {
    display: flex;
    align-items: flex-end;
  }
  .page-heading__ttl .sub-heading__ttl--no {
    font-size: 7.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-heading__ttl .sub-heading__ttl--no > span {
    padding-right: .5em;
    padding-top: .65em;
  }
  .page-heading__ttl .sub-heading__ttl--no span::before {
    font-size: 1.8rem;
    left: 0;
    top: 0;
    transform: translateY(0);
  }
  .page-heading__ttl .sub-heading__ttl--jp {
    font-size: 5rem;
    line-height: 1em;
    padding-bottom: .25em;
  }
  .breadcrumbs {
      font-size: 1.2rem;
      text-align: right;
      margin: 1em 1em 0 1em;
  }
  /** title **/
  .pg-index__title {
    font-size: 3.2rem;
    padding-bottom: 1em;
  }
  .pg-index__title > span::after {
    height: 1.25em;
  }
  .pg-title__sub {
    font-size: 3.2rem;
  }
  .pg-title__sub1 {
    font-size: 2.4rem;
  }
  /** page **/
  .sv-page__links {
    grid-template-columns: 1fr 1fr;
    column-gap: 4em;
    margin: var(--space-lg) 0 4em 0;
  }
  .sv-page__links.--col3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .sv-page__links a {
    grid-template-columns: auto 22.3rem;
  }
  .sv-page__links.--col3 a {
    grid-template-columns: auto 15rem;
  }
  .sv-page__links a .sv-page__links__ttl {
    padding-top: 4em;
    padding-left: 1.5em;
  }
  .sv-page__links a .sv-page__links__ttl span {
    font-size: 2.4rem;
  }
  .sv-page__links a .sv-page__links__ttl::before {
    right: 1.75em;
    bottom: 1.75em;
    width: 1.75em;
    height: 1.75em;
  }
  .sv-page__links a .sv-page__links__ttl span::before,
  .contact__link dl dt span::before {
    font-size: 1.4rem;
  }
  .contact__link dl dt {
    position: relative;
    padding-left: 12rem;
  }
  .contact__link dl dt span::before {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .contact__link dl {
    flex-direction: row;
    justify-content: center;
    width: 100%;
    text-align: left;
    gap: 3.5em;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }
  .contact__link dl dt span {
    font-size: 3.6rem;
  }
  .contact__link dl dd > p {
    font-size: 1.4rem;
    margin-right: 3em;
  }
  .recruit-contact {
    padding: 4.8rem;
  }
  .recruit-contact .recruit-contact__ttl {
    font-size: 3rem;
  }
  .recruit-contact .recruit-contact__links {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
    margin: 5.8rem auto 4.2rem auto;
  }
  .recruit-contact .recruit-contact__links a {
    font-size: 2.4rem;
  }
  .contact-info {
    padding: 2.5em;
    margin-bottom: 6em;
  }
  .contact-info .catalog-info__ttl {
    font-size: 2.6rem;
  }
  .contact-info .button {
    margin-top: 2.5em;
  }
}
/*
Theme Name: sanwakasei 2025
*/

