@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@400;500&family=Poppins:wght@400;500;600;700&display=swap");
/* CSS Document */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

body {
  width: 100%;
  max-width: 100vw;
  min-width: 1000px;
  color: #000;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0;
  text-align: left;
}

main {
  position: relative;
  overflow: hidden;
}

h2 {
  font-size: 1.6rem;
  font-weight: 400;
  color: #000;
}

h3 {
  font-size: 1.6rem;
  font-weight: 400;
  color: #000;
}

p {
  font-size: 1.6rem;
}

a {
  display: block;
  font-size: 1.8rem;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

ul li {
  list-style: none;
}

li {
  list-style-position: inside;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

address {
  text-decoration: none;
  font-style: normal;
  color: #000;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.wrapper {
  width: 87%;
  min-width: 900px;
  max-width: 1440px;
  margin: 0 auto;
}

mark {
  background-color: transparent;
  color: #dd5252;
  font-style: unset;
  font-weight: 700;
}

.mobile {
  display: none;
}

@-webkit-keyframes loop {
  100% {
    transform: translateX(calc(-100vw - 2300px));
  }
}
@keyframes loop {
  100% {
    transform: translateX(calc(-100vw - 2300px));
  }
}
@media (max-width: 420px) {
  body {
    min-width: auto;
    font-size: 1.4rem;
  }
  h2,
h3,
p,
a {
    font-size: 1.4rem;
  }
  .wrapper {
    width: 93%;
    min-width: auto;
  }
  .pc {
    display: none;
  }
  .mobile {
    display: block;
  }
}
.accent {
  color: #005ad2;
}

/* header */
#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 9999;
  transition: background-color 0.6s;
}
@media screen and (max-width: 420px) {
  #header {
    border-bottom: 1px solid #f6f7f9;
  }
}
#header .only_sp {
  display: none;
}
@media screen and (max-width: 420px) {
  #header .only_sp {
    display: flex;
  }
}
@media screen and (max-width: 420px) {
  #header .only_pc {
    display: none;
  }
}
#header .sp_text {
  display: none;
}
@media screen and (max-width: 420px) {
  #header .sp_text {
    display: inline-block;
    color: #808080;
    font-size: 1.2rem;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.02em;
  }
}
@media screen and (max-width: 420px) {
  #header .flex {
    justify-content: space-between;
  }
}
#header .contact-btns {
  margin: 5rem calc(50% - 50vw) 0;
  gap: 10px;
  padding: 0 10px;
}
#header .contact-btns .common__btn {
  height: 50px;
  width: 172px;
}
@media screen and (max-width: 420px) {
  #header .contact-btns .common__btn .cmn-parts-btn-bg {
    width: 172px;
    height: 50px;
  }
}
@media (min-width: 575px) {
  #header .contact-btns .common__btn.download:hover .cmn-parts-btn-bg {
    background-color: #8996b1;
  }
  #header .contact-btns .common__btn.download:hover .cmn-parts-btn-text {
    color: #fff;
  }
}
#header .contact-btns .contact-btn__item.download::before {
  width: 11px;
  height: 12px;
  margin-right: 4px;
}
#header .contact-btns .contact-btn__item.contact-btn02::before {
  width: 15px;
  height: 12px;
  margin-right: 4px;
}
@media screen and (max-width: 420px) {
  #header .contact-btns .contact-btn__item.contact-btn02 {
    margin-top: 0;
  }
}

.header-wrapper {
  justify-content: space-between;
  width: 93%;
  max-width: 1440px;
}

.header-wrapper h1 {
  width: 15%;
}

.header__nav__list {
  gap: 5px;
}

.header__nav__item {
  height: 26px;
  padding: 0 12px;
}
@media screen and (max-width: 420px) {
  .header__nav__item {
    padding: 0;
    height: 65px;
    border-bottom: 1px solid #e6e9ef;
  }
}

.botton_flex {
  display: flex;
}

.header__nav__item a {
  font-weight: 500;
  font-size: 14px;
  position: relative;
}
.header__nav__item a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #37bef0;
  transition: width 0.3s ease;
}
.header__nav__item a:hover::after {
  width: 100%;
}
@media screen and (max-width: 420px) {
  .header__nav__item a {
    justify-content: space-between;
    display: flex;
    width: 100%;
  }
}

.header__nav__item.active a {
  display: flex;
  align-items: baseline;
}
.header__nav__item.active a::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #37bef0;
  margin-right: 6px;
}
@media screen and (max-width: 420px) {
  .header__nav__item.active a::before {
    display: none;
  }
}

.contact-link {
  width: 170px;
  margin-left: 10px;
  border-radius: 20px;
  box-shadow: 3px 3px 16px rgba(43, 43, 43, 0.2);
}
.contact-link a {
  font-size: 14px;
}

.contact-link.dl {
  width: auto;
  box-shadow: none;
  border-radius: inherit;
  position: relative;
  padding-left: 26px;
  border-left: 1px solid #000;
}
.contact-link.dl a {
  color: #000;
  font-size: 14px;
  display: flex;
  align-items: center;
}
.contact-link.dl a::before {
  content: "";
  display: block;
  width: 13px;
  height: 14px;
  background: url("../img/icon-download.svg") no-repeat center top/cover;
  margin-right: 6px;
  border-radius: 0 !important;
}

.contact-link.mail {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 40px;
  box-shadow: none;
  padding: 0;
}
.contact-link.mail a {
  border: 1px solid #ffcc00;
  background-color: #ffcc00;
  transition: background-color 0.6s;
  position: relative;
  width: 170px;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  transition: background-color 0.6s;
  padding: 0 20px;
  border-radius: 20px;
  line-height: 40px;
  height: 40px;
  box-shadow: none;
  align-items: center;
}
.contact-link.mail a::after {
  display: none;
}
.contact-link.mail a::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  transform: rotate(-45deg);
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  border-radius: 0 !important;
  background: none !important;
}
.contact-link.mail a:hover {
  background-color: #005ad2;
  color: #fff;
  border: 1px solid #005ad2;
}
.contact-link.mail a:hover::before {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}

.contact-link a {
  color: #000;
  font-size: 1.4rem;
}

.hamburger-area {
  display: none;
}

@media (max-width: 1100px) {
  #header {
    height: 50px;
  }
  .header-wrapper h1 {
    width: 130px;
  }
  .header-nav {
    position: fixed;
    top: 50px;
    right: 0;
    width: 100%;
    height: calc(100vh - 50px);
    height: calc(100dvh - 50px);
    padding-top: 20px;
    background-color: #fff;
    transform: translateX(100%);
    transition: transform 0.6s;
  }
  .header__nav__list {
    display: block;
  }
  /* .hamburger.open */
}
@media screen and (max-width: 1280px) and (max-width: 420px) {
  .header__nav__list {
    padding: 0 24px;
  }
}
@media (max-width: 1280px) {
  .contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    margin: 10px auto 0;
    padding: 10px 0;
    box-shadow: none;
  }
}
@media (max-width: 1280px) {
  .contact-link.dl {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    margin: 10px auto 0;
    padding: 10px 0;
    box-shadow: none;
  }
}
@media (max-width: 1280px) {
  .hamburger-area {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    gap: 0px;
  }
}
@media (max-width: 1280px) {
  .hamburger {
    display: block;
    position: relative;
    width: 28px;
    height: 20px;
  }
  .hamburger::after {
    content: "MENU";
    display: block;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    line-height: 1;
    margin-top: 13px;
    text-align: center;
  }
}
@media (max-width: 1280px) {
  .hamburger span {
    display: block;
    position: absolute;
    left: 0;
    width: 28px;
    height: 2px;
    transition: all 0.6s;
    background: #000;
  }
}
@media (max-width: 1280px) {
  .hamburger span:nth-child(1) {
    top: 0;
    background-color: #000;
  }
}
@media (max-width: 1280px) {
  .hamburger span:nth-child(2) {
    background-color: #000;
    top: 6px;
  }
}
@media (max-width: 1280px) {
  #header.open {
    background-color: #fff;
  }
}
@media (max-width: 1280px) {
  .hamburger.open span:nth-child(1) {
    top: 4px;
    transform: rotate(25deg);
  }
}
@media (max-width: 1280px) {
  .hamburger.open span:nth-child(2) {
    top: 4px;
    transform: rotate(-25deg);
  }
}
@media (max-width: 1280px) {
  .hamburger.open::after {
    content: "CLOSE";
  }
}
@media (max-width: 1280px) {
  .header-nav.open {
    transform: translateX(0);
  }
}
/* section-title */
.section-title {
  transform: skew(-15deg);
  margin-bottom: 50px;
  font-size: 7rem;
  font-weight: 700;
  color: #005aaa;
  white-space: nowrap;
}

.section-title::after {
  display: inline-block;
  transform: skew(15deg);
  padding-left: 20px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
  vertical-align: middle;
}

.service .section-title::after {
  content: "サービス";
}

.voice .section-title::after {
  content: "お客さまの声";
}

.blog .section-title::after {
  content: "つむらぼ";
}

.company .section-title {
  color: #fff;
}

.company .section-title::after {
  content: "会社概要";
  color: #fff;
}

.recruit .section-title {
  color: #fff;
}

.recruit .section-title::after {
  content: "採用情報";
  color: #fff;
}

.contact .section-title {
  color: #fff;
}

.contact .section-title::after {
  content: "お問い合わせ";
  color: #fff;
}

.news .section-title {
  margin-bottom: 0;
}

.news .section-title::after {
  content: "ニュース";
}

@media (max-width: 420px) {
  .section-title {
    margin-bottom: 30px;
    font-size: 3rem;
  }
  .section-title::after {
    font-size: 1.4rem;
    font-weight: 400;
  }
  .voice .section-title {
    padding-left: calc((100vw - 345px) / 2);
  }
}
/* button */
.button {
  position: relative;
  width: 200px;
  padding: 20px 0;
  margin: 0 0 0 auto;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  z-index: 1;
  transition: all 0.3s;
}

.button svg {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
}

.button svg circle {
  fill: #fff;
  stroke: #fff;
  transition: all 0.3s;
}

.button svg path {
  fill: #015cab;
  transition: all 0.3s;
}

/* button:hover */
.button:hover svg circle {
  fill: #015cab;
  stroke: #015cab;
}

.button:hover svg path {
  fill: #fff;
}

/* .button-bg */
.button.button-bg {
  width: 46%;
  padding: 20px 0;
  margin: 0 auto 80px;
  border-radius: 35px;
  border: 1px solid #015cab;
  background-color: #015cab;
  text-align: center;
}

.button.button-bg:hover {
  background-color: #fff;
  border: 1px solid #015cab;
  color: #015cab;
}

.button.button-bg svg {
  right: 30px;
}

.button.button-bg:hover svg circle {
  transition: all 0.5s;
}

.button.button-bg:hover svg circle {
  fill: #015cab;
  stroke: #015cab;
}

/* btn-reverse */
.btn-reverse {
  color: #015cab;
}

.btn-reverse svg circle {
  fill: #015cab;
  stroke: #015cab;
}

.btn-reverse svg path {
  fill: #fff;
}

/* btn-reverse:hover */
.btn-reverse:hover svg circle {
  fill: #fff;
  stroke: #015cab;
}

.btn-reverse:hover svg path {
  fill: #015cab;
}

/* company-banner .button */
.company-banner:hover .button svg circle {
  fill: #015cab;
  stroke: #015cab;
}

.company-banner:hover .button svg path {
  fill: #fff;
}

/* recruit-banner .button */
.recruit-banner:hover .button svg circle {
  fill: #015cab;
  stroke: #015cab;
}

.recruit-banner:hover .button svg path {
  fill: #fff;
}

/* news .button */
.news .news-wrapper .title-header .button {
  margin: 0;
}

@media (max-width: 420px) {
  .button {
    width: 130px;
    padding: 10px 0;
    font-size: 1.6rem;
  }
  .button svg {
    right: 0;
    width: 25px;
    height: 25px;
  }
  .button.button-bg {
    width: 100%;
  }
  .company-banner .button {
    position: absolute;
    bottom: 10px;
    right: 30px;
  }
  .recruit-banner .button {
    position: absolute;
    bottom: 10px;
    right: 30px;
  }
}
/* cta-btn */
.cta {
  position: fixed;
  top: 100vh;
  top: 100dvh;
  left: 0;
  width: 100vw;
  min-width: 1000px;
  height: 130px;
  background-color: #fff;
  z-index: 9999;
  transition: transform 0.6s;
	flex-direction: column;
}
@media screen and (max-width: 420px) {
  .cta {
    min-width: 100%;
	      height: auto;
  }
}

#cta {
  transform: translateY(0);
  transition: transform 0.6s;
}

#cta.up {
  transform: translateY(-100%);
}

@media screen and (max-width: 420px) {
  .cta {
    display: flex;
    gap: 3px;
  }
}
.cta .common__btn {
  position: relative;
  width: 400px;
  height: 70px;
  border-radius: 70px;
  color: #fff;
  font-size: 1.8rem;
  margin: 0;
}
@media screen and (max-width: 420px) {
	.cta-copy{
		font-size: 1.2rem;
	}
	
  .cta .common__btn {
    width: 99%;
    font-size: 1.3rem;
    height: 50px;
    border-radius: 25px;
    letter-spacing: 0;
    padding: 0 6px;
  }
}

.flexctacas{
	display: flex;
    align-items: center;
	justify-content: center;
    gap: 20px;
}

@media screen and (max-width: 420px) {
.flexctacas {
    width: 100%;
    gap: 10px;
}
}
/* document */
.document {
  padding: 100px 0;
  background-image: url(../img/document.png);
  background-size: 85% 100%;
  background-repeat: no-repeat;
  background-position: left center;
  overflow: hidden;
}

.document__title {
  justify-content: flex-start;
  gap: 40px;
  margin-bottom: 50px;
}

.title {
  font-size: 4.6rem;
  font-weight: 700;
  color: #005aaa;
}

.title span {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
}

.document__title p {
  font-weight: 500;
}

.doc__list {
  justify-content: flex-start;
  gap: 40px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 1440px;
  margin-left: 15%;
  margin-bottom: 50px;
}

.doc__list-item {
  width: 30%;
  min-width: 420px;
}

.doc__list-item a {
  display: grid;
  grid-auto-rows: auto 4em 3em;
  gap: 15px;
}

.doc__list-item h3 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #005aaa;
}

.doc__list-item p {
  font-size: 1.6rem;
  font-weight: 500;
}

.document .button {
  margin-right: calc((100% - 900px) / 2);
}

@media (min-width: 2000px) {
  .doc__list {
    margin-left: calc((100% - 1440px) / 2);
  }
}
@media (max-width: 1250px) {
  .doc__list {
    margin-left: calc((100% - 900px) / 2);
  }
}
@media (max-width: 420px) {
  .document {
    padding: 50px 0;
    background-size: cover;
  }
  .title {
    font-size: 4rem;
  }
  .document__title p {
    font-weight: 400;
  }
  .doc__list {
    flex-direction: column;
    width: 93%;
    min-width: auto;
    margin: 0 auto;
  }
  .doc__list-item {
    width: 100%;
    min-width: auto;
  }
  .doc__list-item h3 {
    font-size: 1.6rem;
    margin: 10px 0;
  }
  .doc__list-item p {
    font-size: 1.4rem;
    font-weight: 400;
  }
}
.contact {
  max-width: 1440px;
  width: 95%;
  padding: 60px 50px;
  margin: 0 auto;
  background: #ebff7b;
  background: linear-gradient(90deg, rgb(235, 255, 123) 0%, rgb(96, 213, 255) 80%, rgb(88, 172, 255) 100%);
  border-radius: 10px;
}
@media screen and (max-width: 420px) {
  .contact {
    width: 94%;
    padding: 40px 18px;
    background: #ebff7b;
    background: linear-gradient(45deg, rgb(235, 255, 123) 0%, rgb(96, 213, 255) 95%, rgb(88, 172, 255) 100%);
  }
}
.contact .contact-wrapper {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 420px) {
  .contact .contact-wrapper {
    display: block;
  }
}
.contact h2 {
  font-size: 5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #000;
  writing-mode: sideways-lr;
  text-align: center;
  letter-spacing: 0.05em;
  margin-right: 100px;
}
@media screen and (max-width: 420px) {
  .contact h2 {
    font-size: 3rem;
    writing-mode: inherit;
    margin: 0 0 20px 0;
    text-align: left;
  }
}
.contact h2 span {
  display: block;
  font-size: 21px;
  font-family: "Noto Sans", sans-serif;
  writing-mode: vertical-lr;
}
@media screen and (max-width: 420px) {
  .contact h2 span {
    writing-mode: inherit;
  }
}
.contact .contact-content {
  margin-right: 90px;
}
@media screen and (max-width: 420px) {
  .contact .contact-content {
    margin: 0 0 20px 0;
  }
}
.contact .contact-content h3 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media screen and (max-width: 420px) {
  .contact .contact-content h3 {
    font-size: 2rem;
  }
}
.contact .contact-content p {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
}
@media screen and (max-width: 420px) {
  .contact .contact-content p {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 420px) {
  .contact-btns .common__btn .cmn-parts-btn-bg {
    border-radius: 35px;
    width: 280px;
    height: 70px;
  }
}
.contact-btns .common__btn {
  width: 375px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 44px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
}
.contact-btns .common__btn.download {
  margin-bottom: 24px;
}
@media screen and (max-width: 420px) {
  .contact-btns .common__btn {
    width: 280px;
    height: 70px;
    border-radius: 35px;
    font-size: 1.5rem;
    margin: 0 auto;
  }
}

/* footer */
.footer {
  position: relative;
  overflow: hidden;
}

.footer-wrapper {
  padding: 80px 0;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 420px) {
  .footer-wrapper {
    display: block;
    padding: 50px 0 0;
  }
}

.info figure {
  width: 290px;
  margin-bottom: 40px;
}
@media screen and (max-width: 420px) {
  .info figure {
    width: 212px;
    margin-bottom: 20px;
  }
}

.info .company-name {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media screen and (max-width: 420px) {
  .info .company-name {
    font-size: 1.6rem;
    margin-bottom: 0;
  }
}

.info address {
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  line-height: 1.8;
}
@media screen and (max-width: 420px) {
  .info address {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
  }
}

.footer__nav {
  justify-content: flex-end;
  align-items: flex-start;
  gap: 50px;
  padding-left: 7%;
}
@media screen and (max-width: 420px) {
  .footer__nav {
    padding-left: 0;
    margin-top: 1rem;
    display: block;
  }
}

.footer__nav_list {
  display: flex;
  flex-direction: column;
  min-height: 190px;
  justify-content: space-between;
}
@media screen and (max-width: 420px) {
  .footer__nav_list {
    display: block;
    min-height: auto;
  }
}

.footer__nav__item {
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (max-width: 420px) {
  .footer__nav__item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e6e9ef;
    width: 100%;
  }
  .footer__nav__item.last {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
}
.footer__nav__item a {
  position: relative;
}
.footer__nav__item a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #37bef0;
  transition: width 0.3s ease;
}
.footer__nav__item a:hover::after {
  width: 100%;
}
.footer__nav__item > a {
  display: inline-flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 420px) {
  .footer__nav__item > a {
    font-size: 1.5rem;
  }
}
.footer__nav__item > a::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #37bef0;
  border-radius: 50%;
  margin-right: 10px;
}
.footer__nav__item > ul {
  margin: 10px 0 0 30px;
}
@media screen and (max-width: 420px) {
  .footer__nav__item > ul {
    margin: 10px 0 0 15px;
    display: flex;
    flex-wrap: wrap;
  }
}
.footer__nav__item > ul li {
  margin-bottom: 10px;
}
@media screen and (max-width: 420px) {
  .footer__nav__item > ul li {
    width: 50%;
    margin-bottom: 4px;
  }
}
.footer__nav__item > ul li a {
  font-size: 1.5rem;
  font-weight: 500;
  display: inline;
  color: #333;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 420px) {
  .footer__nav__item > ul li a {
    font-size: 1.2rem;
  }
}

.pagetop {
  width: 115px;
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef1f2;
  border-radius: 50%;
  transition: background 0.3s ease;
}
@media screen and (max-width: 420px) {
  .pagetop {
    width: 92px;
    height: 92px;
    position: absolute;
    top: 18%;
    right: 5%;
  }
}
.pagetop:hover {
  background: #005ad2;
}
.pagetop:hover .text {
  background: url(../img/pagetop-white.png) no-repeat center top/cover;
}
.pagetop .text {
  height: 37px;
  width: 72px;
  display: block;
  margin: 0 auto;
  background: url(../img/pagetop.png) no-repeat center top/cover;
}

.copy-right {
  padding: 0 0 10px;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #6e7da0;
}
@media screen and (max-width: 420px) {
  .copy-right {
    padding: 14px 0;
  }
}

/* other common style */
.section__header {
  position: relative;
  height: 20dvh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
  overflow: hidden;
}

.section__header::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0px;
  transform: translateX(30%);
  width: 500px;
  height: 500px;
  background-image: url(../img/blur_obj02.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  filter: blur(200px);
  z-index: 1;
}

@media (max-width: 420px) {
  .section__header::after {
    width: 200px;
    height: 200px;
    filter: blur(120px);
  }
}
.section__header > .wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 2;
}

.page-title {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  transform: skew(-15deg);
  font-size: 500%;
  font-weight: 700;
  color: #005aaa;
  white-space: nowrap;
  padding-top: 20px;
}

.page-title::after {
  display: inline-block;
  transform: skew(15deg);
  padding-left: 30px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
}

.breadcrumb {
  justify-content: flex-start;
  gap: 10px;
  position: absolute;
  bottom: 5px;
  left: 0;
}

.breadcrumb > p {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.breadcrumb p:not(:last-child)::after {
  content: ">";
  color: #000;
}

.breadcrumb > p,
.breadcrumb > p a {
  font-size: 1.6rem;
}

.page__section-title {
  display: block;
  transform: skew(-15deg);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 50px;
  font-size: 4.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  white-space: nowrap;
}

.page__section-title span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  transform: skew(15deg);
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
}

.page__section-title span::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 5px;
  margin-left: 10px;
  background-color: #37bef0;
}

@media (max-width: 420px) {
  .section__header {
    height: 150px;
  }
  .page-title {
    left: 2.5%;
    font-size: 4rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .page-title::after {
    padding-left: 15px;
    font-size: 1.4rem;
  }
  .page__section-title {
    margin-bottom: 30px;
    font-size: 3.2rem;
  }
  .page__section-title span {
    font-size: 1.4rem;
  }
  .page__section-title span::before {
    width: 30px;
  }
  .breadcrumb {
    left: 2.5%;
  }
  .breadcrumb > p,
.breadcrumb > p a {
    font-size: 1.4rem;
  }
}
.contact .button svg {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
}

@media (max-width: 420px) {
  .contact .button {
    width: 200px;
    padding: 10px 0;
    font-size: 1.6rem;
  }
  .contact .button svg {
    right: 0px;
  }
}
/* -- PS SP切り替え -- */
.dis_pc {
  display: block !important;
}

.dis_sp {
  display: none !important;
}

@media only screen and (max-width: 750px) {
  .dis_pc {
    display: none !important;
  }
  .dis_sp {
    display: block !important;
  }
}
.company .section-title {
  transform: skew(-15deg);
  margin-bottom: 50px;
  font-size: 7rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.recruit .section-title {
  transform: skew(-15deg);
  margin-bottom: 50px;
  font-size: 7rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

@media (max-width: 420px) {
  .recruit .section-title {
    margin-bottom: 30px;
    font-size: 4rem;
  }
  .company .section-title {
    margin-bottom: 30px;
    font-size: 4rem;
  }
}
.section__common-header {
  width: 76.171875%;
  margin: 100px auto 50px;
}
@media screen and (max-width: 420px) {
  .section__common-header {
    padding: 0 16px;
    margin: 80px auto 36px;
    width: 100%;
  }
}
.section__common-header h1,
.section__common-header h2 {
  font-size: 5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  position: relative;
  display: flex;
  align-items: center;
  letter-spacing: 0.04em;
  margin-bottom: 30px;
}
@media screen and (max-width: 420px) {
  .section__common-header h1,
  .section__common-header h2 {
    font-size: 3.5rem;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
  }
}
.section__common-header h1 span,
.section__common-header h2 span {
  font-size: 2.6rem;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0 0 0 30px;
}
@media screen and (max-width: 420px) {
  .section__common-header h1 span,
  .section__common-header h2 span {
    font-size: 1.8rem;
    margin: 0 0 0 20px;
  }
}
.section__common-header .common__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: 1.3rem;
  color: #6e7da0;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 420px) {
  .section__common-header .common__breadcrumb {
    font-size: 1rem;
  }
}
.section__common-header .common__breadcrumb p {
  font-size: 1.3rem;
}
@media screen and (max-width: 420px) {
  .section__common-header .common__breadcrumb p {
    font-size: 1rem;
  }
}
.section__common-header .common__breadcrumb a {
  font-size: 1.3rem;
  color: #6e7da0;
}
@media screen and (max-width: 420px) {
  .section__common-header .common__breadcrumb a {
    font-size: 1rem;
  }
}
.section__common-header ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 10px;
  row-gap: 20px;
}
@media screen and (max-width: 420px) {
  .section__common-header ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.section__common-header ul li {
  text-align: center;
  border-right: 1px solid #6e7da0;
}
@media screen and (max-width: 420px) {
  .section__common-header ul li {
    text-align: left;
  }
}
.section__common-header ul li a {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 2px 0;
  transition: color 0.3s ease;
}
@media screen and (max-width: 420px) {
  .section__common-header ul li a {
    font-size: 15px;
    padding: 0 18px;
  }
}
.section__common-header ul li a:hover span {
  color: #37bef0;
}
.section__common-header ul li a span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: color 0.3s ease;
}
.section__common-header ul li a span::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: url("../img/icon-bottom-arrow.svg") no-repeat center top/cover;
  flex-shrink: 0;
}
.section__common-header ul li:first-child {
  border-left: 1px solid #6e7da0;
}
@media screen and (max-width: 420px) {
  .section__common-header ul li:nth-child(3) {
    border-left: 1px solid #6e7da0;
  }
}
@media screen and (max-width: 420px) {
  .section__common-header ul li:nth-child(5) {
    border-left: 1px solid #6e7da0;
  }
}
.section__common-header ul li:nth-child(4) {
  border-left: 1px solid #6e7da0;
}
@media screen and (max-width: 420px) {
  .section__common-header ul li:nth-child(4) {
    border-left: none;
  }
}

.common__title-area {
  padding: 100px 0;
  border-top: 1px solid #f6f7f9;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 420px) {
  .common__title-area {
    padding: 70px 16px;
  }
}
.common__title-area h2 {
  font-size: 4.2rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 420px) {
  .common__title-area h2 {
    font-size: 3rem;
  }
}
.common__title-area h3 {
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.7692307692;
}
@media screen and (max-width: 420px) {
  .common__title-area h3 {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.common__title-area p {
  letter-spacing: 0.06em;
}
@media screen and (max-width: 420px) {
  .common__title-area p {
    font-size: 1.5rem;
  }
}
.common__title-area .btn-area {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
@media screen and (max-width: 420px) {
  .common__title-area .btn-area {
    gap: 10px;
  }
}
.common__title-area .btn-area a {
  margin: 0;
}
.common__title-area.bottom {
  border-top: none;
}
.common__title-area.bottom p {
  line-height: 2;
}
@media screen and (max-width: 420px) {
  .common__title-area.bottom p {
    line-height: 1.5;
    letter-spacing: 0.03em;
  }
}

.common__btn {
  display: flex;
  align-items: center;
  margin: 0 auto;
  gap: 8px;
  justify-content: center;
  width: 225px;
  color: #ffffff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  height: 63px;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  transition: all 0.2s ease;
  background: #000;
  position: relative;
  overflow: hidden;
}

.common__btn.orange {
  display: flex;
  align-items: center;
  margin: 0 auto;
  gap: 8px;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  transition: all 0.2s ease;
  background: #fd7931;
  position: relative;
  overflow: hidden;
}
.contact-btns .common_btn.orange {
  width: 375px;
}
.common__btn::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%) rotate(-45deg);
  z-index: 11;
}
@media screen and (max-width: 420px) {
  .common__btn {
    width: 180px;
    height: 50px;
    font-size: 15px;
  }
}
.common__btn .cmn-parts-btn-bg {
  background-color: #005ad2;
  border-radius: 30px;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: translateY(100%) scale(0.8);
  transition: transform 0.3s cubic-bezier(0.43, 0.05, 0.17, 1), border-radius 0.3s cubic-bezier(0.43, 0.05, 0.17, 1);
  width: 100%;
}
@media screen and (max-width: 420px) {
  .common__btn .cmn-parts-btn-bg {
    border-radius: 25px;
    transition: transform 0.1s cubic-bezier(0.43, 0.05, 0.17, 1), border-radius 0.3s cubic-bezier(0.43, 0.05, 0.17, 1);
  }
}
.common__btn .cmn-parts-btn-text {
  position: relative;
  z-index: 1;
  display: block;
  line-height: 1.2;
}
@media (min-width: 575px) {
  .common__btn:hover .cmn-parts-btn-bg {
    border-radius: 999px;
    transform: translateY(0) scale(1);
  }
}
.common__btn.white {
  color: #000;
  background: #fff;
  border: 1px solid #e4e9eb;
  box-shadow: inherit;
}
.common__btn.green {
    color: #fff;
    background: #60ab0f;
    border: 1px solid #60ab0f;
    box-shadow: inherit;
}
.common__btn.white::before {
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
}
.common__btn.white .cmn-parts-btn-bg {
  background: #8996b1;
}
@media (min-width: 575px) {
  .common__btn.white:hover {
    color: #fff;
    border: none;
  }
  .common__btn.white:hover .cmn-parts-btn-text {
    color: #fff !important;
  }
  .common__btn.white:hover::before {
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}
.common__btn.download {
  display: flex;
  align-items: center;
}
.common__btn.download::before {
  border: none;
  width: 19px;
  height: 21px;
  background: url(../img/icon-download.svg) no-repeat center top/cover;
  transform: rotate(0);
  position: inherit;
  top: 0;
  left: 0;
  margin-right: 4px;
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 420px) {
  .common__btn.download::before {
    width: 11px;
    height: 12px;
  }
}
@media (min-width: 575px) {
  .common__btn.download:hover::before {
    border: none;
    background: url(../img/icon-download-white.svg) no-repeat center top/cover;
	filter: brightness(0) invert(1);
  }
}
.common__btn.contact-mail::before {
  border: none;
  width: 21px;
  height: 17px;
  background: url(../img/icon-mail-white.svg) no-repeat center top/cover;
  transform: rotate(0);
  position: inherit;
  top: 0;
  left: 0;
}
@media screen and (max-width: 420px) {
  .common__btn.contact-mail::before {
    width: 15px;
    height: 12px;
  }
}

.common__titile-en {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 420px) {
  .common__titile-en {
    font-size: 20px;
  }
}
.common__titile-en::before {
  content: "";
  display: block;
  margin: 0 auto;
}

.js-fadeIn {
  opacity: 0;
  transition: all 0.5s ease;
  transform: translateY(16px);
  transition-delay: 0.6s;
}
.js-fadeIn.is-show {
  opacity: 1;
  transform: translateY(0);
}

.common__form label {
  font-size: 1.6rem;
  line-height: 1.5;
}
.common__form label input,
.common__form label textarea,
.common__form label select {
  width: 100%;
  display: block;
  padding: 10px;
}
.common__form label input[type=checkbox],
.common__form label input[type=radio] {
  display: inline-block;
  width: auto;
}
.common__form input[type=submit] {
  width: 300px;
  display: block;
  padding: 10px;
  background: #005ad2;
  color: #fff;
  border: none;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
}
@media screen and (max-width: 420px) {
  .common__form input[type=submit] {
    width: 100%;
  }
}

/* 今時のページTOP */
#cta .back-to-top {
	
  position: absolute;
  top: -42px;
  right: 5%;

  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;

  background: #37BDF0;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 16px;
  font-weight: 600;
  line-height: 1;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  box-shadow:
    0 4px 10px rgba(0,0,0,0.18),
    inset 0 0 0 1px rgba(255,255,255,0.15);

  cursor: pointer;
  transition: all 0.2s ease;
}

@media (min-width: 1024px) {
  #cta .back-to-top {
    width: 55px;
    height: 55px;
    font-size: 19px;
  }
}


#cta .back-to-top:hover {
  background: rgba(0, 0, 0, 0.65);
  transform: translateY(-2px);
}

.recruit-messege {
    padding: 30px 30px 30px 30px;
    border-top: 1px solid #bfbfbf;
    font-weight: 500;
    vertical-align: middle;
    text-align: center;
	border-bottom: 1px solid #333;
}


/*# sourceMappingURL=common.css.map */


#header .desc{
    font-size: 10px;
    width: 100%;
    position: absolute;
    left: 0;
    top: -10px;
    white-space: nowrap;
	font-weight:400;
}
#header .header-wrapper .logobox{
	justify-content:flex-start;
	padding-left:0;
	position:relative;
}

.common__btn.orange{
	background:#ffcc00 url(../img/btn_arrow.png) no-repeat 92% center;
	background-size:0.5em auto;
	color:#000;
}

.common__btn.orange .cmn-parts-btn-bg{
	background:#ffb400;
}
.common__btn.contact-mail::before {
  background: url(../img/icon-mail-black.svg) no-repeat center top/cover;
}
.common__btn.green {
  background: #0090f5 url(../img/btn_arrow_white.png) no-repeat 92% center;
	background-size:0.5em auto;
	
  border: 1px solid #0090f5;
}

@media screen and (max-width:768px){
	#header .desc{display:none; }
}
@media screen and (min-width:1000px){
	.hamburger-area{display:none;}
	.contact-link.dl{border:none; height:40px; margin:0;padding:0;}
	.contact-link.mail{margin:0;}
	.contact-link.dl a{
    border: 1px solid #000;
    background-color: #fff;
    transition: background-color 0.6s;
    position: relative;
    width: 180px;
    display: flex;
    justify-content: space-between;
    transition: background-color 0.6s;
    padding: 0 20px;
    border-radius: 20px;
    line-height: 40px;
    height: 40px;
    box-shadow: none;
    align-items: center;
	}
	.contact-link.dl a::after{display:none;}
	.contact-link.dl a:hover{
      background-color: #005ad2;
      color: #fff;
      border: 1px solid #005ad2;
		
	}
	.contact-link.dl a:hover::before {
  background: url("../img/icon-download-white.svg") no-repeat center top/cover;
}
	
}

body.header-fixed {
  padding-top: 80px;
}
#header.fixed{
	position:fixed;
	left:0;
	top:0;
	z-index:9;
	background:#fff;
}
#header.fixed .desc{display:none;}