@charset "UTF-8";
/* reset
--------------------------- */
/* 
 * destyle.css v1.0.14
 * https://github.com/nicolas-cusan/destyle.css 
 */
* {
  box-sizing: border-box;
}

::after,
::before {
  box-sizing: inherit;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

address,
blockquote,
dl,
figure,
form,
iframe,
p,
pre,
table {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  vertical-align: bottom;
}

embed,
iframe,
object {
  border: 0;
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: 0 0;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[type=button],
[type=reset],
[type=submit],
button {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled],
button[disabled] {
  cursor: default;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

select::-ms-expand {
  display: none;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable] {
  outline: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

.pc-only {
  display: none;
}

@media (min-width: 1024px) {
  .pc-only {
    display: inline-block;
  }
}
/* base
--------------------------- */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  line-height: 1.6;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  color: #1E1E1E;
  background-color: #fff;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  min-width: 320px;
  width: 100%;
  overflow-x: hidden;
}

::selection {
  background-color: #BBDEFB;
  color: #1976D2;
}

img,
video,
object {
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
}

a {
  text-decoration: underline;
  position: relative;
  word-wrap: inherit;
}
a:hover {
  text-decoration: none;
}

a:hover img {
  text-decoration: none;
  transition: all 0.2s;
}

a,
label,
input,
button {
  transition: all 0.2s;
}

/* animation
--------------------------- */
.fade {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 1.5s, transform 1s;
}
.fade.active {
	opacity: 1;
	transform: translateY(0px);
}

/* l-body
--------------------------- */
.l-body {
  position: relative;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* l-header
--------------------------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  padding: 10px;
  height: 60px;
  width: 100%;
  z-index: 100;
  background-color: #fff;
}
@media (min-width: 768px) {
  .l-header {
    flex-wrap: nowrap;
    padding: 30px 30px 10px;
    height: 90px;
  }
}

.l-header__nav-small {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 10px;
  height: 100%;
}
@media (min-width: 768px) {
  .l-header__nav-small {
    position: fixed;
    top: 0;
    left: 0;
    margin-right: 10px;
    padding-top: 0;
    align-items: center;
    justify-content: flex-end;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    height: 30px;
    width: 100%;
    line-height: 30px;
  }
}

.l-header__nav-main {
  height: 100%;
}

/* l-body
--------------------------- */
.l-main {
  overflow-x: hidden;
  margin-top: 60px;
  min-height: calc(100vh - 60px);
}
@media (min-width: 768px) {
  .l-main {
    margin-top: 90px;
    min-height: calc(100vh - 90px);
  }
}

/* l-footer
--------------------------- */
.l-footer {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  background-color: #666;
  padding: 30px;
}
.l-footer a {
  text-decoration: none;
  max-width: 150px;
}
.l-footer .c-text__logo {
  margin-bottom: 5px;
}
.p-footer-nav-child-link {
  font-size: 12px;
  font-weight: normal;
}
.p-footer-nav-child-link::before {
  content: "-";
  padding-right: 5px;
}

/* c-text
--------------------------- */
.c-text__logo {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  color: #097AE1;
  word-wrap: nowrap;
  word-break: keep-all;
}

/* p-section
--------------------------- */
.p-toppage .p-section {
  overflow-x: hidden;
  padding: 60px 30px;
  height: auto;
  width: 100%;
  max-width: 100vw;
  z-index: 1;
}
.p-toppage .p-works.p-section {
  padding: 60px 45px;
}
.p-toppage .p-recrut.p-section {
  padding: 0;
}
.p-toppage .p-business.p-section {
  padding: 60px 0;
}
.p-toppage .p-access.p-section {
  padding: 0 30px;
}
@media (min-width: 1024px) {
  .p-toppage .p-access.p-section {
    padding: 0;
  }
}
.p-toppage .p-news.p-section {
  padding: 60px 30px 90px;
}

.p-section {
  position: relative;
  padding: 102px 30px;
  background-color: #fff;
}

@media (min-width: 768px) {
  .p-section {
    padding: 142px 30px 90px;
  }
}

@media (min-width: 1024px) {
  .p-section {
    padding: 182px 30px 90px;
  }
}

.p-thanks.p-section {
  position: relative;
  padding: 120px 30px 30px;
}

.p-contact.p-section {
  overflow: hidden;
  position: relative;
  padding: 190px 30px 30px;
}

.p-section-sub {
  position: relative;
  padding: 30px;
}

/* c-cta
--------------------------- */
.c-button__displaynone {
  display: none;
}

.c-button__smartphone-nav {
  position: relative;
  height: 24px;
  width: 24px;
}
.c-button__smartphone-nav::before, .c-button__smartphone-nav::after {
  content: "";
  position: relative;
  display: block;
  border-radius: 3px;
  height: 3px;
  width: 24px;
  background-color: #757575;
  transition: 0.2s all;
}
.c-button__smartphone-nav::before {
  top: -8px;
}
.c-button__smartphone-nav::after {
  bottom: 3px;
  box-shadow: 0 8px 0 #757575;
}
.c-button__smartphone-nav.u-button-open::before {
  transition: 0.2s all;
  top: 0;
  transform: rotate(-140deg);
}
.c-button__smartphone-nav.u-button-open::after {
  transition: 0.2s all;
  transform: rotate(135deg);
  box-shadow: none;
}
@media (min-width: 768px) {
  .c-button__smartphone-nav {
    display: none;
  }
}

.c-button__header-nav-contact {
  background-color: transparent;
  color: #fff;
  height: 100%;
  width: 60px;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}
@media (min-width: 768px) {
  .c-button__header-nav-contact {
    position: static;
    width: auto;
  }
  .c-button__header-nav-contact[type=button] {
    cursor: default;
  }
}
.c-button__header-nav-contact:hover {
  background-color: transparent;
}
.c-button__header-nav-contact::before {
  background-color: transparent;
}

.c-button__tel-number {
  cursor: pointer;
}
.c-button__tel-number a {
  display: flex;
  text-decoration: none;
  padding: 5px 10px;
}
.c-button__tel-number a i {
  font-style: inherit;
}
.c-button__tel-number a i::before {
  content: "\f095";
  padding: 0 5px 0 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 20px;
}
.c-button__tel-number a p {
  display: none;
}
@media (min-width: 768px) {
  .c-button__tel-number a {
    cursor: default;
    padding: 0;
  }
  .c-button__tel-number a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
  .c-button__tel-number a i::before {
    font-size: 14px;
  }
  .c-button__tel-number a p {
    visibility: visible;
    display: block;
    width: auto;
    height: auto;
    font-weight: 700;
  }
}

.c-button__mail-form {
  cursor: pointer;
}
.c-button__mail-form a {
  display: flex;
  text-decoration: none;
  padding: 5px 10px;
}
.c-button__mail-form a i {
  font-style: inherit;
}
.c-button__mail-form a i::before {
  content: "\f0e0";
  padding: 0 3px 0 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 20px;
}
.c-button__mail-form a p {
  display: none;
}
@media (min-width: 768px) {
  .c-button__mail-form a {
    cursor: pointer;
    padding: 0;
  }
  .c-button__mail-form a i::before {
    font-size: 14px;
  }
  .c-button__mail-form a p {
    visibility: visible;
    display: block;
    width: auto;
    height: auto;
    font-weight: 700;
  }
  .c-button__mail-form a:hover {
    color: #F5D83C;
  }
}

.c-button__primary {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 30px auto;
  gap: 10px;
  height: 36px;
  width: calc(100% - 60px);
  line-height: 34px;
  border: 1px solid #097AE1;
  border-radius: 8px;
  text-decoration: none;
  color: #097AE1;
  transition: 0.2s all;
  background-color: #fff;
  text-align: center;
}
.c-button__primary:hover {
  transition: 0.2s all;
  color: #fff;
  background-color: #097AE1;
}
@media (min-width: 768px) {
  .c-button__primary {
    max-width: 250px;
  }
}

.p-section.p-contact .c-text.u-color__white .c-button__primary {
  margin: 30px auto;
}

/* c-title
--------------------------- */
.c-title__first-view {
  position: fixed;
  top: 30%;
  left: 5vw;
  line-height: 36px;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 0 40px #FFF;
  z-index: -2;
  animation-name: chengeColor;
  animation-duration: 2.2s;
  animation-fill-mode: forwards;
  color: #1E1E1E;
}
@media (min-width: 768px) {
  .c-title__first-view {
    top: 50%;
    transform: translate(0, -50%);
    line-height: 88px;
    font-size: 48px;
  }
}

.c-title__section-english,
.c-title__toppage-section {
  color: #D9D9D9;
  font-weight: bold;
  font-size: 60px;
  line-height: 1;
  letter-spacing: -0.05em;
  text-align: center;
}
@media (min-width: 768px) {
  .c-title__section-english,
  .c-title__toppage-section {
    font-size: 90px;
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .c-title__section-english,
  .c-title__toppage-section {
    font-size: 128px;
  }
}

.c-title__toppage-section {
  overflow: hidden;
  width: 100%;
  text-align: center;
}

.c-title__section-english {
  position: absolute;
  top: 0;
  left: 30px;
  color: #F5F5F5;
  z-index: 0;
}
.c-title__section-english::before, .c-title__section-english::after {
  content: "";
  position: absolute;
  bottom: -10px;
  height: 5px;
  display: block;
}
.c-title__section-english::before {
  background-color: #D9D9D9;
  left: 0;
  width: 100%;
}
.c-title__section-english::after {
  background-color: #097AE1;
  left: -30px;
  width: 30px;
}

.c-title__section-japanese {
  position: absolute;
  top: 16px;
  left: 30px;
  z-index: 1;
  font-family: Noto Sans JP;
  font-size: min(60px, 5.8593vw);
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0.004em;
  text-align: left;
}
@media (min-width: 768px) {
  .c-title__section-japanese {
    top: 35px;
  }
}
@media (min-width: 1024px) {
  .c-title__section-japanese {
    top: 70px;
  }
}

.p-news-details .c-title__news,
.c-title__section-sub {
  position: relative;
  margin-bottom: 20px;
  padding-left: 30px;
  font-weight: 700;
  font-family: Noto Sans JP;
  font-size: 20px;
  letter-spacing: 0.004em;
  line-height: 24px;
}
@media (min-width: 768px) {
  .p-news-details .c-title__news,
  .c-title__section-sub {
    font-size: 24px;
  }
}
.p-news-details .c-title__news::before, .p-news-details .c-title__news::after,
.c-title__section-sub::before,
.c-title__section-sub::after {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
}
.p-news-details .c-title__news::before,
.c-title__section-sub::before {
  top: 0;
  border-width: 24px 24px 0 0;
  border-color: #097AE1 transparent transparent transparent;
  line-height: 0px;
  _border-color: #097AE1 #000000 #000000 #000000;
  _filter: progid:DXImageTransform.Microsoft.Chroma(color="#000000");
}
.p-news-details .c-title__news::after,
.c-title__section-sub::after {
  top: 4px;
  border-width: 24px 0 0 24px;
  border-color: transparent transparent transparent #097AE1;
  line-height: 0px;
  _border-color: #000000 #000000 #000000 #097AE1;
  _filter: progid:DXImageTransform.Microsoft.Chroma(color="#000000");
}

.c-title__business {
  font-weight: 700;
  text-align: left;
  text-indent: 0;
}

.c-title__work {
  font-weight: 700;
  font-size: 1.6em;
}

.c-image__work {
  width: 100%;
}

/* p-header
--------------------------- */
.p-header-home-link {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-content: flex-start;
  align-items: flex-start;
  height: 100%;
  text-decoration: none;
}
.p-header-home-link img {
  max-height: 20px;
  width: auto;
  display: block;
}
.p-header-home-link:hover {
  opacity: 0.64;
}

.p-header-nav {
  cursor: pointer;
  height: 24px;
  width: 24px;
}
@media (min-width: 768px) {
  .p-header-nav {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    align-content: center;
    height: 100%;
    width: calc(100% - 165px - 10px);
  }
}

.p-header-nav-list {
  overflow: hidden;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  box-shadow: 4px 4px 8px rgba(148, 148, 148, 0.64);
  margin: 0 calc(50vw - 50%);
  padding: 20px 0;
  background-color: rgba(9, 122, 225, 0.9);
  height: auto;
  width: 0;
  transition: 0.2s all;
  flex: 1;
  z-index: 10;
  color: #FFF;
}
.p-header-nav-list.open {
  overflow: visible;
  visibility: visible;
  width: 100vw;
  transition: 0.2s all;
}
@media (min-width: 768px) {
  .p-header-nav-list {
    overflow: visible;
    visibility: visible;
    position: static;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    box-shadow: 0 0 0 transparent;
    background-color: transparent;
    margin: 0;
    padding: 0;
    height: 100%;
    width: auto;
    transition: none;
    color: #1E1E1E;
  }
}

.p-header-nav-item {
  position: relative;
  flex: 1;
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .p-header-nav-item {
    height: 100%;
    width: auto;
    max-width: 100px;
  }
}
@media (min-width: 768px) {
  .p-header-nav-item:nth-last-of-type(1) {
    width: 0;
    flex: 0;
  }
  .p-header-nav-item:nth-last-of-type(1)::before {
    height: 0;
    content: none;
  }
}
@media (min-width: 768px) {
  .p-header-nav-item:nth-of-type(1)::before {
    height: 0;
    content: none;
  }
}
.p-header-nav-item:not(:last-child)::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  height: 1px;
  width: 60%;
  background-color: #D9D9D9;
}
@media (min-width: 768px) {
  .p-header-nav-item::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    height: 1px;
    width: 60%;
    background-color: #D9D9D9;
    bottom: auto;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    height: 60px;
    width: 1px;
  }
  .p-header-nav-item:not(:last-child)::before {
    content: none;
  }
}

.p-header-nav-link {
  cursor: pointer;
  display: flex;
  padding: 10px 0;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s all;
  word-break: keep-all;
}

@media (min-width: 768px) {
  .p-header-nav-link {
    padding: 0;
    height: 100%;
    width: auto;
  }
  .p-header-nav-link:hover {
    color: #F5D83C;
    transition: 0.2s all;
  }
}

.p-header-nav-contact {
  position: fixed;
  bottom: 30px;
  right: -100px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  background-color: #097AE1;
  box-shadow: 2px 2px 4px rgba(148, 148, 148, 0.64);
  border-radius: 35px 0 0 35px;
  padding: 10px 10px 10px 20px;
  height: 70px;
  width: 180px;
  transition: 0.2s all;
}
@media (min-width: 768px) {
  .p-header-nav-contact {
    position: static;
    margin-right: -30px;
    padding: 5px 10px 5px 20px;
    height: 50px;
    width: auto;
  }
}

.p-header-nav-contact-contents {
  overflow: hidden;
  visibility: hidden;
  display: flex;
  justify-content: space-around;
  align-items: center;
  align-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  height: auto;
  width: auto;
  opacity: 0;
  background-color: #097AE1;
  border-radius: 0;
  margin-right: -10px;
  color: #fff;
  line-height: 20px;
  font-size: 14px;
  color: transparent;
  transition: 0.2s all;
}
@media (min-width: 768px) {
  .p-header-nav-contact-contents {
    overflow: visible;
    visibility: visible;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    opacity: 1;
    padding: 0 10px;
    height: 50px;
    color: #fff;
  }
}

.p-header-nav-contact.active {
  right: 0;
  transition: 0.2s all;
}

.p-header-nav-contact.active .p-header-nav-contact-contents {
  overflow: visible;
  visibility: visible;
  width: auto;
  transition: 0.2s all;
  color: #fff;
  opacity: 1;
}
@media (min-width: 768px) {
  .p-header-nav-contact.active .p-header-nav-contact-contents {
    padding: 0 10px;
    width: auto;
  }
}

.p-header-nav-child-list {
  width: calc(4em + 40px);
  margin: 0 auto 10px;
}

.p-header-nav-child-list li {
  width: 100%;
}

.p-header-nav-child-list li a {
  display: flex;
  justify-content: flex-start;
  font-size: .85em;
  padding: 10px 20px;
  width: 100%;
  text-align: left;
}

.p-header-nav-child-list li a::before {
  content: "-";
  padding-right: 5px;
}

.p-header-nav-child-list.dropdown-open {
  display: block;
}

.p-header-nav-link.dropdown {
  position: relative;
  height: auto;
}

.p-header-nav-link.dropdown::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translate(0, -50%) rotate(-45deg);
  display: block;
  width: 5px;
  height: 5px;
  border-bottom: 1px solid #555;
  border-left: 1px solid #555;
  transition: .2s;
}
.p-header-nav-link.dropdown:has(.dropdown-open)::after {
  transform: translate(0, -50%) rotate(-180deg);
}

@media (min-width: 768px) {
  .p-header-nav-child-list {
    display: none;
    border-top: 5px solid #097AE1;
    position: absolute;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
    background-color: #FFF;
    width: 100%;
  }
  .p-header-nav-link.dropdown {
    height: 100%;
    /* margin-top: 0; */
  }
}

.p-header-nav-small-item {
  margin-right: 10px;
}

.p-nav-link__header-small {
  transition: 0.2s all;
  font-size: 1rem;
  font-weight: 700;
}
.p-nav-link__header-small:hover {
  transition: 0.2s all;
  opacity: 0.7;
}

/* p-first-view
--------------------------- */
.p-first-view {
  overflow: hidden;
  position: relative;
  margin: 60px 0 0 0;
  height: 100vh;
  height: calc(70vh - 60px);
}
@media (min-width: 768px) {
  .p-first-view {
    background-size: 1000px auto;
    margin: 90px 0 0 auto;
    height: calc(100vh - 90px);
    background-size: 70vw auto;
  }
}
.p-first-view .c-text__firstview {
  position: fixed;
  top: calc(30% + 108px);
  left: 5vw;
  padding: 10px 0;
  width: 90vw;
  line-height: 18px;
  font-size: 14px;
  font-weight: 300;
  word-break: inherit;
  letter-spacing: 0.1em;
  text-shadow: 0 0 40px #FFF;
  z-index: -2;
}
@media (min-width: 768px) {
  .p-first-view .c-text__firstview {
    top: calc(50% + 203px);
    transform: translate(0, -50%);
    width: 100%;
    line-height: 40px;
    font-size: 20px;
  }
}
.p-first-view .c-iamge__firstview {
  position: fixed;
  left: 20vw;
  top: 50%;
  transform: translate(0, -50%);
  z-index: -10;
  height: auto;
  width: 80vw;
  object-fit: cover;
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@media (min-width: 768px) {
  .p-first-view .c-iamge__firstview {
    width: 50vw;
    left: 50vw;
  }
}

@keyframes chengeColor {
  0% {
    opacity: 0;
  }
  50% {
    color: #fff;
    opacity: 1;
  }
  85% {
    color: #fff;
  }
  100% {
    color: #1E1E1E;
  }
}
@keyframes fadeInAnime {
  0% {
    opacity: 0;
    top: 52%;
  }
  2% {
    opacity: 0;
    top: 52%;
  }
  100% {
    opacity: 1;
    top: 50%;
  }
}
.c-scrolldown {
  display: none;
}
@media (min-width: 768px) {
  .c-scrolldown {
    position: fixed;
    bottom: 0;
    left: 30px;
    display: block;
    z-index: -2;
  }
  .c-scrolldown span {
    position: absolute;
    left: -6px;
    bottom: calc(50vh + 10px);
    color: #949494;
    font-size: 12px;
    letter-spacing: 0.05em;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
  }
  .c-scrolldown::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #949494;
    animation: circlemove 7.2s ease-in-out infinite;
  }
  .c-scrolldown::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1px;
    height: 50vh;
    background: #949494;
  }
}

@keyframes circlemove {
  0% {
    bottom: 49vh;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    bottom: 1vh;
    opacity: 0;
  }
}
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden; /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*中の要素*/
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*左から右*/
.bgLRextend::before {
  content: "";
  position: absolute;
  animation-name: bgLRextendAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  width: 120%;
  height: 110%;
  background-color: #097AE1;
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

/* p-contact
--------------------------- */
.p-business {
  overflow: hidden;
  position: relative;
}
.p-business .c-title__toppage-section {
  line-height: 55px;
  margin-left: -5px;
  text-align: left;
}
@media (min-width: 768px) {
  .p-business .c-title__toppage-section {
    margin-left: -10px;
    line-height: 115px;
  }
}
@media (min-width: 1024px) {
  .p-business .c-title__toppage-section {
    position: absolute;
    left: 50vw;
    top: 41px;
    margin-left: 0;
    left: 518px;
  }
}
.p-business__slide {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  height: auto;
  width: 100%;
}
.p-business__image-wrap {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: auto;
  width: 100%;
}
@media (min-width: 1024px) {
  .p-business__image-wrap {
    flex-direction: row;
  }
}
.p-business__image-wrap .c-image__business {
  margin: 0 auto;
  height: 50vw;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .p-business__image-wrap .c-image__business {
    margin: 0;
    height: 620px;
    width: 496px;
    max-width: 50vw;
  }
}
.p-business__image-wrap .c-title__business {
  max-width: calc(100vw - 60px);
  line-height: 32px;
  font-size: 20px;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .p-business__image-wrap .c-title__business {
    line-height: 60px;
    font-size: 40px;
  }
}
.p-business__image-wrap .c-text {
  width: 100%;
  max-width: calc(100vw - 60px);
  word-break: break-all;
  word-wrap: break-word;
  font-size: 16px;
  line-height: 32px;
}
@media (min-width: 1024px) {
  .p-business__image-wrap .c-text {
    font-size: 20px;
    line-height: 40px;
  }
}
.p-business__summry {
  margin: 10px 0;
  width: 100%;
  max-width: calc(100vw - 60px);
  height: auto;
}
@media (min-width: 768px) {
  .p-business__summry {
    margin-left: 30px;
  }
}
@media (min-width: 1024px) {
  .p-business__summry {
    margin: 112px 0 0 30px;
    width: calc(60vw - 30px);
  }
}

/*		Slick　カスタム		*/
.p-business__slide-item .slick-slide {
  width: 100vw;
}

.p-business__slide.slider .slick-slide {
  padding: 0 30px;
  overflow: hidden;
  height: auto;
}
@media (min-width: 768px) {
  .p-business__slide.slider .slick-slide {
    padding: 0;
    margin: 0 60px 0 0;
  }
}

.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
  background: #FFF;
}

.slick-next,
.slick-prev {
  position: absolute;
  top: auto;
  left: auto;
  bottom: -165px;
  transition: 0.2s all;
  padding: 0 8px;
  z-index: 5;
  border: 1px solid #097AE1;
  height: 110px;
  width: 30px;
  background-color: #fff;
}
.slick-next:before,
.slick-prev:before {
  color: #097AE1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.slick-next:hover, .slick-next:active,
.slick-prev:hover,
.slick-prev:active {
  background-color: #F5F5F5;
  color: #fff;
  transition: 0.2s all;
}
@media (min-width: 1024px) {
  .slick-next,
  .slick-prev {
    bottom: -55px;
  }
}

.slick-prev {
  left: 0;
}
.slick-prev:before {
  content: "\f104";
}
.slick-prev:hover {
  padding: 0 12px 0 4px;
}
@media (min-width: 1024px) {
  .slick-prev {
    left: calc(50vw + 15px);
  }
}

.slick-next {
  right: 0;
}
.slick-next:before {
  content: "\f105";
}
.slick-next:hover {
  padding: 0 4px 0 12px;
}

.thumbnail {
  overflow: hidden;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  margin: 0 auto;
  height: 110px;
  width: calc(100% - 60px);
}
@media (min-width: 1024px) {
  .thumbnail {
    position: absolute;
    bottom: 60px;
    right: 30px;
    margin-left: auto;
    width: calc(50vw - 75px);
  }
}
.thumbnail .slick-list {
  height: 100%;
  width: 100%;
}
.thumbnail .slick-track {
  transform: unset !important;
  width: 100% !important;
  height: 100% !important;
}
@media (min-width: 1024px) {
  .thumbnail .slick-track {
    width: calc(50vw - 30px) !important;
  }
}
.thumbnail .slick-slide {
  width: 25% !important;
}
.thumbnail img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/*		固定ページ 会社概要
------------------------------*/
.p-business__list-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-business__list-figure .c-image__business {
  object-fit: cover;
  max-width: 572px;
  max-height: 315px;
  z-index: 1;
}
.p-business__list-figure .p-summry__business {
  background-color: #F5F5F5;
  padding: 60px;
  margin: -30px 0 60px;
  z-index: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .p-business__list-figure .p-summry__business {
    margin: 0;
    width: auto;
  }
}
.p-business__list-figure .c-title__business {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .p-business__list-item {
    margin-bottom: 60px;
  }
  .p-business__list-item:nth-of-type(odd) .p-business__list-figure {
    flex-direction: row;
  }
  .p-business__list-item:nth-of-type(even) .p-business__list-figure {
    flex-direction: row-reverse;
  }
}

/* p-work
--------------------------- */
.p-summry__work {
  margin-bottom: 60px;
  text-align: right;
}

/* p-news
--------------------------- */

.p-news {
  margin: 0 auto;
  position: relative;
  max-width: 1200px;
  z-index: 1;
}
.p-news::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 120px;
  height: calc(100% - 120px);
  width: 10px;
  background-color: #097AE1;
}
@media (min-width: 768px) {
  .p-news::before {
    left: 25px;
    top: 148px;
    height: calc(100% - 145px);
  }
}
@media (min-width: 1024px) {
  .p-news::before {
    left: 30px;
    top: 180px;
    height: calc(100% - 180px);
  }
}
.p-news::after {
  content: "";
  position: absolute;
  left: calc(-50vw + 50%);
  top: -3px;
  display: block;
  height: calc(100% + 6px);
  width: 100vw;
  z-index: -1;
  background-color: #fff;
}
.p-news .c-title__toppage-section {
  margin-left: -5px;
}
@media (min-width: 768px) {
  .p-news .c-title__toppage-section {
    margin-left: -15px;
  }
}
.p-news .p-list__news {
  padding: 30px;
  height: auto;
  width: 100%;
  max-width: calc(100vw - 60px);
}

.p-list-item__news {
  margin-bottom: 30px;
  width: 100%;
}
.p-list-item__news a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-decoration: none;
}
@media (min-width: 768px) {
  .p-list-item__news a {
    flex-direction: row;
    align-items: center;
  }
  .p-list-item__news a:hover {
    color: #949494;
  }
}
.p-list-item__news time {
  margin-bottom: 10px;
  width: 5.8em;
  font-size: 12px;
  color: #757575;
}
@media (min-width: 768px) {
  .p-list-item__news time {
    margin: 0 30px 0 0;
  }
}
.p-list-item__news .c-title__news {
  white-space: wrap;
  width: 100%;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .p-list-item__news .c-title__news {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}

/* p-works
--------------------------- */
#work {
  min-height: 910px;
}
#work .p-section {
  padding: 60px 30px 30px;
}
@media (min-width: 768px) {
  #work .p-section {
    padding: 90px 30px 30px;
  }
}
@media (min-width: 1024px) {
  #work .p-section {
    padding: 120px 30px 30px;
  }
}
#work .p-section-sub {
  margin: 0 0 0 auto;
  width: calc(100% - 30px);
}
/* @media (min-width: 768px) {
  #work .p-section-sub {
    width: calc(100% - 220px - 30px);
  }
} */
/* @media (min-width: 1024px) {
  #work .p-section-sub {
    width: calc(100% - 240px - 30px);
  }
} */

.p-work__article {
  position: relative;
  /* margin: 0 auto min(150px, 10.4166666vw) auto; */
  /* width: calc(100% - 30px); */
}

/* @media (min-width: 768px) {
  .p-work__article {
    margin: 0 0 min(150px, 10.4166666vw) auto;
    width: calc(100% - 220px - 30px);
  }
} */

@media (min-width: 1024px) {
  .p-work__article, {
    width: calc(100% - 240px - 30px);
  }
}

.p-toppage .p-works {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  height: auto;
  width: 100%;
}
.p-toppage .p-works::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15px;
  display: block;
  background-color: #D9D9D9;
  min-height: 368px;
  height: 50%;
  width: calc(100vw - 30px);
  z-index: -1;
}
@media (min-width: 1024px) {
  .p-toppage .p-works::before {
    min-height: 450px;
  }
}
.p-works-text-wrap {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 128px;
  width: 100%;
}

.p-works-text-wrap .c-text__work {
  line-height: 1;
}
@media (min-width: 1024px) {
  .p-works-text-wrap .c-text__work {
    font-size: 32px;
    margin: 15px 0 0 30px;
  }
}
.p-works-text-wrap .c-button__primary {
  margin: 30px 0 0 0;
}
@media (min-width: 1024px) {
  .p-works-text-wrap .c-button__primary {
    margin: 30px auto;
  }
}
.p-slide__work {
  display: flex;
  margin: 15px calc(-50vw + 50%);
  width: 100vw;
}
.p-slide__work img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.p-slide-item__work {
  overflow: hidden;
  margin: 0 10px 0 0;
  height: 200px;
  width: 25%;
}

.p-slide-item__work:nth-last-of-type(1) {
  margin: 0;
}

.p-category {
  position: absolute;
  left: -201px;
  top: 160px;
  width: 220px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #FFF;
  box-shadow: 4px 4px 3px rgba(0,0,0, .1);
  transition: .2s;
  z-index: 10;

}
@media (min-width: 768px) {
  .p-category {
    top: 230px;
    /* left: -1px; */
  }
}
@media (min-width: 1024px) {
  .p-category {
    top: 270px;
    /* left: -1px;
    width: 240px; */
  }
}

#category.p-category.active {
  left: -1px;
  transition: .2s;
}

.p-category__inner {
  position: relative;
  padding: 30px;
}

.button-category-wrap {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
}

.button-category {
  width: 30px;
  height: 60px;
  padding: 20px 5px 20px 0;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-radius: 0 4px 4px 0;
  background-color: #FFF;
  box-shadow: 4px 4px 3px rgba(0,0,0, .1);
}
.button-category::before,
.button-category::after {
  content: "";
  display: block;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  transform: rotate(-45deg);
  width: 16px;
  height: 16px;
  position: absolute;
  top: calc(50% - 8px);
}
.button-category::before {
  transform: rotate(-45deg) translate(-2px, -2px);
  transition: .1s ease-out;
}
.button-category:hover::before {
  transform: rotate(-45deg) translate(0, 0);
  transition: .2s .1s ease-out;
}
.button-category::after {
  transition: .2s ease-out;
  transform: rotate(-45deg) translate(2px, 2px);
}
.button-category:hover::after {
    transform: rotate(-45deg) translate(4px, 4px);
    transition: .2s ease-out;
}
/* @media (min-width: 786px) {
  .button-category {
    display: none;
  }
} */

.title-category {
  margin-bottom: 15px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #ccc;
}
.p-work-category__list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
}
.p-work-category__list .p-work-caregory__item {
  margin: 0 auto 30px;
  width: min(90%, 120px);
  height: auto;
}
.p-work-category__list .p-work-caregory__item .p-work-category__link {
  cursor: pointer;
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
}
.p-work-category__list .p-work-caregory__item .p-work-category__link img {
  height: auto;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}
.p-work-category__list .p-work-caregory__item .p-work-category__link p {
  padding: 10px;
  width: 100%;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}
.p-work-category__list .p-work-caregory__item .p-work-category__link:hover {
  opacity: 0.64;
  transition: 0.2s all;
}
.p-work-list-wrap .p-work__list {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  flex-direction: row;
  text-indent: 99999px;
}
.p-work-list-wrap .p-works__list-item {
  overflow: hidden;
  box-shadow: 4px 4px 0 #F5F5F5;
  width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .p-work-list-wrap .p-works__list-item {
    width: calc(50% - 15px);
  }
.p-work-list-wrap .p-works__list-item:nth-of-type(odd) {
  margin-right: 30px;
}
}
.p-work-list-wrap .p-works__list-link {
  display: block;
  text-decoration: none;
}
.p-work-list-wrap .p-works__list-link:hover {
  opacity: 0.64;
}
.p-work-list-wrap .p-summry__business {
  padding: 10px;
  text-align: center;
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .p-work-list-wrap.l-main .p-works__list-item {
    width: calc(33.3333333333% - 20px);
    margin-right: 30px;
  }
  .p-work-list-wrap.l-main .p-works__list-item:nth-of-type(3n) {
    margin-right: 0;
  }
}

.p-works__list-item .p-work__list-figure .c-image__business {
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

/* p-access
--------------------------- */
@media (min-width: 1024px) {
  .p-access {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
  }
}
.p-access .c-title__toppage-section {
  line-height: 256px;
  text-align: center;
}
@media (min-width: 1024px) {
  .p-access .c-title__toppage-section {
    line-height: 450px;
    width: 50%;
  }
}
.p-access__access {
  width: 100%;
  background-color: #D9D9D9;
}
@media (min-width: 1024px) {
  .p-access__access {
    width: 50%;
  }
}

/* p-recruit
--------------------------- */
.p-toppage .p-recrut {
  overflow: hidden;
  position: relative;
  height: 240px;
  width: 100%;
}
@media (min-width: 768px) {
  .p-toppage .p-recrut {
    height: 450px;
  }
}
.p-toppage .p-recrut .c-title__toppage-section {
  position: absolute;
  left: 15px;
  top: 30px;
  z-index: 1;
  font-size: 30px;
  text-align: left;
}
@media (min-width: 768px) {
  .p-toppage .p-recrut .c-title__toppage-section {
    left: 60px;
    font-size: 60px;
  }
}
.p-toppage .p-recrut .c-text {
  position: absolute;
  left: 15px;
  top: 75px;
  font-size: 16px;
}
@media (min-width: 768px) {
  .p-toppage .p-recrut .c-text {
    left: 60px;
    top: 90px;
    font-size: 30px;
  }
}
.p-toppage .p-recrut .c-button__recrut {
  display: block;
  cursor: pointer;
  height: 100%;
  width: 100%;
}
.p-toppage .p-recrut .c-button__recrut img {
  object-fit: cover;
  object-position: center 30%;
  height: 100%;
  width: 100%;
}

.recruit-mv {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  width: 100%;
  height: 596px;
  color: #FFF;
  font-size: 64px;
  font-weight: bold;
  text-align: center;
  line-height: 102.4px;
}

@media (min-width: 768px) {
  .recruit-mv {
    margin-top: 90px;  
  }
}

.recruit-mv::before,
.recruit-mv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.recruit-mv::before {
  background-image: url('../images/mv-recruit.jpg');
  background-size: cover;
  z-index: -2;
  animation: bg-slideshow-left 30s infinite linear both;
}

.recruit-mv::after {
  background: rgb(9,122,225);
  background: -moz-linear-gradient(19deg, rgba(9,122,225,1) 15%, rgba(0,212,255,1) 100%);
  background: -webkit-linear-gradient(19deg, rgba(9,122,225,1) 15%, rgba(0,212,255,1) 100%);
  background: linear-gradient(19deg, rgba(9,122,225,1) 15%, rgba(0,212,255,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#097ae1",endColorstr="#00d4ff",GradientType=1);
  z-index: -1;
  opacity: .82;
}

@keyframes bg-slideshow-left {
  0% {
    background-position: -100% 50%;
  }
  50% {
      background-position: -50% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}

.bg-primary-color {
  background-color: #097AE1;
}

.conditions {
  width: 100vw;
  margin: 60px calc(50vw - 50%);
  padding: 30px calc(50% - 50vw);
}

.title-recruit-section {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 40px;
  letter-spacing: 40%;
  margin-bottom: 20px;
}

.recruit-conditions-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content:center;
  gap: 10px;
}

.conditions-label {
  display: inline-block;
  min-width: 10em;
  background-color: #FFF;
  font-weight: bold;
  color: #097AE1;
  text-align: center;
  padding: 15px 30px;
  line-height: 1;
}

.conditions-label br {
  display: none;
}

.c-button__accordion-switch {
  display: none;
}

.conditions .title-recruit-section {
  color: #FFF;
}

.p-recruit__list {
  display: none;
}

.c-title__recruit-list {
  margin-right: 30px;
  min-width: 5em;
}

.conditions-label-wrap {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin: 0 auto;
}

.conditions-contents-wrap {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: min(calc(100% - 40px), 708px);
  margin: 0 auto;
}

#conditions-01-contents,
#conditions-02-contents {
  display: none;
  overflow: hidden;
  padding: 0;
  background-color: #FFF;
  height: 0;
  width: min(100%, 708px);
  margin: 0 auto;
  border-radius: 15px;
  transition: .2s;
}

#conditions-01-contents.clicked,
#conditions-02-contents.clicked {
  overflow: auto;
  display: block;
  padding: 30px;
  margin: 20px auto;
  height: auto;
}

#conditions-01-contents.clicked .p-recruit__list,
#conditions-02-contents.clicked .p-recruit__list {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 1200px;
}


#conditions-01-contents.clicked .p-recruit__list:not(:last-child),
#conditions-02-contents.clicked .p-recruit__list:not(:last-child) {
  margin: 0 auto 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #F5F5F5;
}

.recruit-about-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}

@media screen and (max-width:768px) {
  .recruit-about-wrap.rev {
    flex-direction: column-reverse;
  }
}

.recruit-about {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 30px;
  width: 100%;
  color: #FFF;
  background-size: cover;
  align-items: flex-start;
  gap: 20px;
}

.bg-primary-064 {
  position: relative;
}

.bg-primary-064::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 122, 255, .64)
}

.recruit-about.color-black {
  color: #1E1E1E;
}

@media screen and (min-width:768px) {
  .recruit-about {
    width: 50%;
  }  
}
.recruit-bg-01 {
  background-image: url("../images/tool-2222458_1280.jpg");
}
.recruit-bg-02 {
  background-image: url("../images/30880346_m.jpg");
}
.recruit-bg-03 {
  background-image: url("../images/24859590_s.jpg");
}

.recruit-title-wrap {
  position: relative;
  border-left: 10px solid #097AE1;
  padding: 0 30px;
  width: min(100%, 768px);
  margin: 0 auto;
}

.recruit-about-title {
  display: flex;
  flex-direction: colmun;
  gap: 20px;
  font-weight: bold;
  font-size: clamp(24px, 4.16666vw, 60px);
  line-height: 1;
}

.recruit-about-title-sub {
  font-weight: bold;
  font-size: clamp(16px, 1.6666vw, 24px);
  width: min(100%, 768px);
  margin: 0 auto;
}

.recruit-textbox {
  position: relative;
  width: min(100%, 600px);
  width: min(100%, 768px);
  margin: 0 auto;
}

.recruit-textbox ~ p {
  position: relative;
}

.bg-green {
  padding: 30px;
  background-color: #08AEB9;
}

.venefit {
  margin: 60px auto;
  width: min(calc(100% - 60px), 980px);
}

.venefit-list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.venefit-item {
  padding: 40px 60px;
  width: min(100%, 375px);
  box-shadow: 0 4px 20px rgba(217, 217, 217, .7);
}

.venefit-title-sub {
  line-height: 1;
  font-weight: bold;
  font-size: clamp(16px, 1.6666vw, 24px);
  text-align: center;
}

.recruit-flow-list {
  margin: 60px auto;
  width: min(calc(100% - 60px), 768px);
}

.recruit-flow-item {
  position: relative;
  margin-bottom: 20px;
  padding: 30px;
  background-color: #F5F5F5;
}

.recruit-flow-item:nth-child(1) {
  padding: 30px 0 0;
}

.recruit-flow-item:nth-child(2) {
  padding: 90px 0 0;
}

.recruit-flow-item:nth-child(3) {
  padding: 90px 0 60px;
}

.recruit-flow-item::before,
.recruit-flow-item::after {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  display: block;
  width:0;
  height:0;
  border-style:solid;
  border-width: 60px min(350px, 45vw) 0 min(350px, 45vw);
}

@media screen and (min-width: 1024px) {
  .recruit-flow-item::before,
  .recruit-flow-item::after {
    border-width: 60px min(390px,45.5729vw) 0 min(390px,45.5729vw);
  }
}

.recruit-flow-item:not(:first-child)::before {
  content: "";
}

.recruit-flow-item::before {
  top: 0;
  z-index: 1;
  border-color: #FFF transparent transparent transparent;
}

.recruit-flow-item:not(:last-child)::after {
  content: "";
}

.recruit-flow-item::after {
  bottom: -60px;
  z-index: 2;
  border-color: #F5F5F5 transparent transparent transparent;
}

.recruit-flow-title-sub {
  margin: 20px auto 16px;
  line-height: 1;
  font-weight: bold;
  font-size: clamp(16px, 1.6666vw, 24px);
  text-align: center;
}

.recruit-flow-text {
  line-height: 1.6;
  text-align: center;
}

.recruit_wrap .wp-block-contact-form-7-contact-form-selector {
  background-color: #097AE1;
}

.entry-form {
  width: 100%;
}

.entry-form-inner {
  margin: 0 auto;
  width: min(100%, 980px);
  padding: 60px 30px;
  color: #FFF;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .entry-form-inner {
    padding: 60px 0;
  }
}

.entry-form-title {
  margin-bottom: 40px;
  font-size: clamp(24px, 4.16666vw, 60px);
  line-height: 1;
  text-align: center;
}

.entry-form-text {
  margin-bottom: 40px;
  font-size: clamp(16px, 1.25vw, 18px);
}

.entry-form-list {
  margin-inline: auto;
  height: auto;
  width: min(100%, 450px);
}

.entry-form-item {
  margin-top: 40px;
  width: 100%;
  min-height: 30px;
}

.recruit_wrap .entry-form-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #FFF;
}

.entry-form-item p{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  width: 100%;
  height: 100%;  
}

.entry-form-item br,
.entry-form-item br{
  display: none;
}

.entry-form-item.file .entry-form-input {
  font-weight: normal;
  font-size: 14px;
}

.entry-form-label {
  padding-right: 8px;
  width: 100%;
  line-height: 30px;
  font-weight: bold;
}

.entry-form-item .wpcf7-form-control-wrap:has(input) {
  width: 100%;
}

.entry-form-input {
  padding: 7px;
  width: max(300px, 100%);
  background-color: #FFF;
  border-radius: 4px;
  height: 100%;
  line-height: 1;
  color: #1E1E1E;
  text-align: left;
}

.entry-form .c-button__primary {
  margin-inline: auto;
}

.entry-form .c-button__primary:hover {
  border-color: #FFF;
}

.wpcf7-list-item label {
  display: flex;
}

.entry-form-item [type=checkbox] {
  appearance: none;
  display: flex;
  height: 24px;
  width: 24px;
  margin: 4px;
  border: 1px solid #FFF !important;
  border-radius: 4px;
  background-color: #ccc !important;
}

.entry-form-item [type=checkbox]:checked::before {
  content: "";
  display: grid;
  place-content: center;
  display: block;
  width: 16px;
  height: 8px;
  border-bottom: 3px solid #ce052c;
  border-left: 3px solid #ce052c;
  transform: rotate(-45deg) translate(-2px, 6px);
}

.entry-form-item [type=checkbox]:focus-visible {
  outline: 2px solid #1d9bf0;
  outline-offset: 2px;
}

@media screen and (min-width: 768px) {
  .entry-form-label {
    width: 170px;
    text-align: right;
  }
}

.recruit-confirmation {
  color: #1E1E1E;
  font-size: 18px;
  font-weight: bold;
}

p:has(.wpcf7-previous) {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.recruit-confirmation .c-button__primary {
  text-align: center;
  margin: 30px 0;
}

/* p-contact
--------------------------- */
.p-contact {
  position: relative;
}
.p-contact .c-title__toppage-section {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translate(-50%);
}
.p-contact .c-text {
  position: relative;
  text-align: center;
  color: #1E1E1E;
  background-color: #D9D9D9;
  margin: 0 calc(50% - 50vw) -30px;
  width: 100vw;
  padding: 30px;
  height: auto;
}
.c-comments__wrap {
  position: relative;
  width: min(100%, 600px);
  margin-inline: auto;
}
.c-comments__image {
  object-fit: contain;
  aspect-ratio: 16/9;
  display: block;
  margin: 90px auto 0;
  height: auto;
  width: min(600px, 75%);
}
@media (min-width: 768px) {
  .c-comments__image {
    margin: 150px auto 0;
  }  
}
.p-contact > .c-button__primary {
  margin: 60px auto 30px;
}
.p-contact .c-comments__contact-01 {
  position: absolute;
  top: -150px;
  left: calc(50% - 12em);
  border: 1px solid #949494;
  border-radius: 80px;
  padding: 30px;
  height: 120px;
  width: calc(10em + 60px);
  line-height: 30px;
  text-align: center;
  background-color: #fff;
}
@media (min-width: 1024px) {
  .p-contact .c-comments__contact-01 {
    top: 10%;
    left: calc(50% - 29em);
  }
}
.p-contact .c-comments__contact-01::before {
  content: "";
  position: absolute;
  top: 110px;
  left: 20%;
  display: block;
  border: 1px solid #949494;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  background-color: #fff;
}
@media (min-width: 1024px) {
  .p-contact .c-comments__contact-01::before {
    left: 55%;
  }
}
.p-contact .c-comments__contact-01::after {
  content: "";
  position: absolute;
  top: 144px;
  left: 28%;
  display: block;
  border: 1px solid #949494;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  background-color: #fff;
}
@media (min-width: 1024px) {
  .p-contact .c-comments__contact-01::after {
    top: 150px;
    left: 70%;
  }
}
.p-contact .c-comments__contact-02 {
  position: absolute;
  top: -170px;
  left: 50%;
  border: 1px solid #949494;
  border-radius: 80px;
  background-color: #fff;
  padding: 30px;
  height: 120px;
  width: calc(9em + 60px);
  line-height: 30px;
  text-align: center;
}
@media (min-width: 1024px) {
  .p-contact .c-comments__contact-02 {
    top: 20%;
    left: calc(50% + 13em);
  }
}
.p-contact .c-comments__contact-02::before {
  content: "";
  position: absolute;
  top: 110px;
  left: 60%;
  display: block;
  border: 1px solid #949494;
  border-radius: 50%;
  height: 25px;
  width: 25px;
  background-color: #fff;
}
@media (min-width: 1024px) {
  .p-contact .c-comments__contact-02::before {
    top: 130px;
    left: 30%;
  }
}
.p-contact .c-comments__contact-02::after {
  content: "";
  position: absolute;
  top: 140px;
  left: 55%;
  display: block;
  border: 1px solid #949494;
  border-radius: 50%;
  height: 15px;
  width: 15px;
  background-color: #fff;
}
@media (min-width: 1024px) {
  .p-contact .c-comments__contact-02::after {
    top: 150px;
    left: 20%;
  }
}

.p-contact .p-contact {
  display: none;
}

.p-thanks {
  position: relative;
}
.p-thanks .p-contact {
  display: none;
}

.no-js {
  overflow: hidden;
  height: auto;
}

/* 会社紹介
--------------------------- */
.p-contents-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: min(100%, 980px);
  margin-inline: auto;
}



.p-contents-item {
  height: auto;
  width: max(300px, calc(50% - 45px));
}

.c-contents-link {
  display: block;
  text-decoration: none;
  transition: .2s;
}

.c-contents-link:hover {
  opacity: .64;
  transition: .2s;
}

.c-content-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 160 / 100;
}

.p-contents-list .c-title__section-sub {
  margin-top: 16px;
}

@media (min-width: 1024px) {
  .p-contents-list {
    gap: 60px 90px;
  }
}

.c-image__nintei-higasimurayama {
  display: block;
}

.p-permit-certificate-list {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
  width: 100%;
}

.p-permit-certificate-item {
  width: 25%;
}

.c-permit-certificate-link {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.c-permit-certificate-image {
  display: block;
}


/* 挨拶
--------------------------- */
.president {
  margin-top: 30px;
  text-align: right!important;
}


/* 設備
--------------------------- */
.max-w-980 {
  margin-inline: auto;
  max-width: 980px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-60 {
  margin-top: min(60px, 8.3333333vw);
}

.title-small {
  text-align: center;
}

.facilities-mv {
  width: 100%;
  margin-inline: auto;
}

.facilities-mv img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.facilities-list {
  margin: 8.333vw auto 0;
  width: 100%;
}

.facilities-list > div {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  gap: 10px 1%;
}

.facilities-item {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  width: 49%;
  flex-direction: column;
}

@media (min-width: 768px) {
  .facilities-item {
    width: 23%;
  }
}

.facilities-item h2 {
  font-weight: 700;
  font-family: Noto Sans JP;
  font-size: clamp(16px, 2vw, 24px);
  letter-spacing: 0.004em;
  line-height: 160%;
}
/* 
.reverse {
  flex-direction: row-reverse;
  } */
  
  .facilities-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1.6;
    object-fit: cover;
  }
  
  .facilities-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 10 / 16;
  }
  
  .facilities-textwraap {
  width: 100%;
  padding: min(30px, 2.88888vw) min(30px, 2.8333333vw);
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Business
--------------------------- */
.business-images img {
  width: 100%;
  height: min(600px, 41.666vw);
  object-fit: cover;
}

/* p-works
--------------------------- */
.p-company__list {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #eee;
  margin: 0 auto 25px;
  padding-bottom: 25px;
  max-width: 1200px;
  line-height: 36px;
}

.p-company__list .c-title__company {
  margin-right: 30px;
  min-width: 10em;
  word-break: keep-all;
}

.p-company__list .c-ditail__company {
  min-width: 100%;
  width: 100%;
  margin-left: auto;
}

@media (min-width: 1024px) {
  .p-company__list .c-ditail__company {
    min-width: calc(100% - 10em - 30px);
    width: calc(100% - 10em - 30px);
  }
}

.p-company__list .c-ditail__company ul {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
}

.p-company-histry__list {
  margin: 0 auto;
  max-width: 1200px;
}

.p-company iframe {
  margin-bottom: 10px;
}
.p-company img {
  margin-top: 10px;
}

.p-company-histry__item {
  display: flex;
  border-bottom: 1px solid #eee;
  line-height: 36px;
  margin-bottom: 25px;
}

/* p-contact
--------------------------- */
.p-commendation .c-text {
  margin: 30px 0;
}
@media (min-width: 1024px) {
  .p-commendation .c-text {
    font-size: 32px;
  }
}
.p-commendation .c-title__toppage-section {
  word-break: break-all;
  text-align: left;
}
.p-commendation .p-commendation-list {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
  min-height: 280px;
  height: auto;
  width: 100%;
  max-width: 1200px;
}
@media (min-width: 1024px) {
  .p-commendation .p-commendation-list {
    flex-wrap: nowrap;
  }
}
.p-commendation .p-commendation-list a.lightbox {
  position: static !important;
  cursor: pointer;
  display: block;
  padding: 15px 30px;
  height: 100%;
  width: 100%;
  z-index: 0 !important;
}
@media (min-width: 1024px) {
  .p-commendation .p-commendation-list a.lightbox {
    padding: 0;
    min-height: 280px;
    width: calc(50% - 15px);
  }
}
.p-commendation .p-commendation-list a.lightbox:hover {
  opacity: 0.64;
}
.p-commendation .p-commendation-list img {
  border: 10px solid #D9D9D9;
  border-radius: 16px;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.p-commendation .p-commendation-list::before {
  content: "";
  position: absolute;
  top: 15%;
  left: calc(-50vw + 50% + 30px);
  display: block;
  height: 70%;
  width: calc(100vw - 60px);
  background-color: #F5F5F5;
}

/* p-contact
--------------------------- */
.p-footer__nav {
  margin-top: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
.p-footer__nav .p-footer__nav-item {
  padding: 10px 10px;
  font-size: 14px;
  font-weight: 700;
  color: #FFF;
}
.p-footer__nav a {
  transition: 0.2s all;
}
.p-footer__nav a:hover {
  transition: 0.2s all;
  text-decoration: underline;
  color: #097AE1;
}

.p-header-nav-child-link {
  font-weight: normal;
  color: #ccc;
}

.p-footer__nav-small {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
.p-footer__nav-small .p-footer__nav-item {
  padding: 10px 10px;
  font-size: 10px;
  color: #949494;
}

.c-text__footer {
  margin: 30px auto 0;
  width: 100%;
  height: auto;
  line-height: 1;
  font-size: 12px;
  color: #D9D9D9;
  text-align: center;
}

/*	施工実績　single.php
------------------------*/
.p-business .p-work__article .p-work__list-figure {
  position: relative;
  background-color: #097AE1;
}

.p-business .p-work__article .p-work__list-figure .c-image__business {
  aspect-ratio: 16 / 10;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .7;
}

@media screen and (min-width: 768px) {
  .p-business .p-work__article .p-work__list-figure .c-image__business{
    aspect-ratio: 16 / 5;
  }  
}

.p-business .p-work__article .p-summry__business {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2em;
  color: #FFF;
}

.p-single .wp-post-image {
  width: 100%;
  z-index: 1;
}

@media (min-width: 1024px) {
  .p-work-list-wrap.p-section-sub .p-works__list-item {
    width: calc(20% - 24px);
    margin-right: 30px;
  }
  .p-work-list-wrap.p-section-sub .p-works__list-item:nth-of-type(5n) {
    margin-right: 0;
  }
}

.photo-large {
  margin: 150px auto 60px;
}

@media (min-width: 768px) {
  .photo-large {
    margin: 206px auto 90px;
  }
}

.p-work-photo-large {
  width: 100%;
}

.p-work-photo-large:not(:last-child) {
  margin: 0 auto 60px;
}

@media (min-width: 1024px) {
  .p-work-photo-large {
    display: flex;
    gap: 16px;
  }
}

.p-work-photo-large figcaption {
  margin-top: 30px;
  width: 100%;
}

@media (min-width: 1024px) {
  .p-work-photo-large figcaption {
    margin-top: -6px;
    width: calc(100% - 346px);
  }
}
.p-work-photo-large img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .p-work-photo-large img {
    width: 330px;
    height: 165px;
  }
}
.photo-small {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-inline: auto;
  width: calc(100% - 60px);
  height: auto;
}
@media (min-width: 768px) {
  .photo-small {
    flex-direction: row;
    margin: 30px auto 90px;
  }
}
.photo-small li {
  width: min(100%, 270px);
}
@media (min-width: 768px) {
  .photo-small li {
    flex-direction: row;
    gap: 24px;
    width: calc(33.333% - 12px) ;
  }
}

/*	アーカイブ　archive.php
------------------------*/
.p-archive .c-title__section-japanese {
  top: 26px;
  font-size: 20px;
}
@media (min-width: 768px) {
  .p-archive .c-title__section-japanese {
    top: 46px;
    font-size: 40px;
  }
}
@media (min-width: 1024px) {
  .p-archive .c-title__section-japanese {
    top: 80px;
    font-size: 40px;
  }
}

/* p-contact
--------------------------- */
.p-privacy-polisy {
  margin-bottom: 30px;
}

.p-privacyporicy-item {
  margin-bottom: 30px;
}
.p-privacyporicy-item h3 {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 18px;
}
.p-privacyporicy-item span {
  font-size: 14px;
}
.p-privacyporicy-item dl {
  display: flex;
  margin-bottom: 10px;
}
.p-privacyporicy-item dl dt {
  margin-right: 30px;
  font-weight: 700;
}

.p-privacyporicy-details {
  margin-bottom: 30px;
  margin-left: 36px;
  list-style-type: decimal;
}

.p-privacyporicy-details-item {
  margin-bottom: 10px;
}

/* p-contact
--------------------------- */
.p-sitemap-contents {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 auto;
  height: auto;
  width: 100%;
  max-width: 1200px;
}
@media (min-width: 768px) {
  .p-sitemap-contents {
    justify-content: space-between;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: nowrap;
  }
}
.p-sitemap-contents p {
  margin-bottom: 30px;
}

/* p-contact
--------------------------- */
.p-error .c-button__primary {
  margin: 0 auto 90px;
}
.p-error ~ .p-contact {
  display: none;
}

#p-error-animetion {
  height: 100%;
  width: 100%;
}
@media (min-width: 768px) {
  #p-error-animetion {
    margin: 0 auto;
    max-height: 500px;
    max-width: 500px;
  }
}

/* utility
--------------------------- */
.u-inline-block {
  display: inline-block;
}

.u-sp {
  display: block;
}
@media (min-width: 1024px) {
  .u-sp {
    display: none;
  }
}

.u-color__white {
  color: #fff;
}

.u-fixed {
  position: fixed;
}

@media (max-width: 1023px) {
  .pc-only-flex {
    display: none;
  }
}