@charset "UTF-8";
/* color */
/* thickness */
.c-headline {
  display: flex;
  align-items: center;
  padding: 0 160px;
  height: 400px;
  color: #ffffff;
  background-image: url(../images/top-visual.jpg);
  background-size: 100% auto;
}
.c-headline h1 {
  font-size: 60px;
}
@media screen and (max-width: 1280px) {
  .c-headline {
    padding: 0 80px;
    height: 320px;
  }
  .c-headline h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  .c-headline {
    padding: 0 48px;
    height: 240px;
    background-size: auto 200%;
  }
  .c-headline h1 {
    font-size: 32px;
  }
}

.bg-gray {
  background-color: #fafcff;
}

.c-title {
  font-size: 48px;
  font-weight: 600;
  color: #0368b6;
  line-height: 64px;
  margin-bottom: 64px;
}
.c-title span {
  font-size: 24px;
  color: #8eaed5;
}
.c-title span.sp {
  margin-left: 32px;
}
.c-title br.sp {
  display: none;
}
@media screen and (max-width: 1280px) {
  .c-title {
    line-height: 48px;
    font-size: 32px;
    margin-bottom: 56px;
  }
  .c-title span {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .c-title {
    text-align: center;
  }
  .c-title br.sp {
    display: block;
  }
  .c-title span.sp {
    margin-left: 0;
  }
}

.c-subtitle {
  font-size: 36px;
  font-weight: 600;
  color: #0368b6;
  line-height: 48px;
  margin-bottom: 48px;
}
@media screen and (max-width: 1280px) {
  .c-subtitle {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 32px;
  }
}

.c-point span {
  display: inline-block;
  background-color: rgba(255, 154, 0, 0.1);
  padding: 5px;
  font-weight: 600;
}
.c-point span strong {
  font-weight: 600;
  color: #0368b6;
}
.c-point span:first-child {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .c-point {
    text-align: center;
  }
}

.c-button {
  text-align: left;
  min-width: 300px;
}
.c-button a {
  padding: 20px 64px 20px 32px;
  display: block;
  width: 100%;
  border: 1px solid #ff9a00;
  background-color: #ff9a00;
  color: #ffffff;
  font-weight: 600;
}
.c-button a::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../images/icon-arrow.png);
  width: 16px;
  height: 24px;
  background-size: 100%;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
}
.c-button a:hover {
  background-color: #ffffff;
  color: #ff9a00;
}
.c-button a:hover::after {
  background-image: url(../images/icon-arrow--orange.png);
}
@media screen and (max-width: 1280px) {
  .c-button {
    display: block;
    width: 100%;
    min-width: initial;
    max-width: 400px;
  }
}

.c-content {
  padding: 80px 7vw;
  margin: 80px 0;
}
.c-content:first-of-type {
  margin: 160px 0;
}
@media screen and (max-width: 1280px) {
  .c-content {
    margin: 0 0 40px;
    padding: 40px 5vw 60px;
  }
}
.c-content:first-of-type {
  margin: 50px 0;
}

.c-subcontent {
  padding: 50px 0;
}

.c-table {
  width: 100%;
}
.c-table th,
.c-table td {
  padding: 32px 48px;
}
.c-table th {
  width: 280px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #0368b6;
  font-size: 18px;
}
.c-table td {
  width: calc(100% - 280px);
  text-align: left;
  border-bottom: 1px solid #8eaed5;
  line-height: 1.8;
}
.c-table h3 {
  color: #0368b6;
  padding: 0 24px;
  font-size: 16px;
  margin-bottom: 32px;
}
.c-table a {
  color: #0368b6;
  text-decoration: underline;
  transition: all 0.6s;
  font-weight: 500;
}
.c-table a:hover {
  color: #8eaed5;
}
@media screen and (max-width: 1280px) {
  .c-table h3 {
    padding: 0;
  }
  .c-table th,
  .c-table td {
    padding: 24px 32px;
  }
}
@media screen and (max-width: 768px) {
  .c-table th,
  .c-table td {
    width: 100%;
    display: block;
  }
  .c-table th {
    border-bottom: none;
    padding: 32px 16px 16px;
  }
  .c-table td {
    padding: 16px 16px 32px;
  }
}

.c-subtable {
  display: flex;
  flex-wrap: wrap;
  font-weight: 500;
}
.c-subtable dt {
  font-weight: 500;
  width: 230px;
  border-bottom: solid 1px rgba(15, 15, 15, 0.3);
}
.c-subtable dd {
  font-weight: 200;
  width: calc(100% - 230px);
  border-bottom: solid 1px rgba(15, 15, 15, 0.1);
}
.c-subtable dt,
.c-subtable dd {
  padding: 16px 24px;
}
.c-subtable dt:first-of-type,
.c-subtable dd:first-of-type {
  padding: 0px 24px 16px;
}
.c-subtable dt:last-of-type,
.c-subtable dd:last-of-type {
  padding: 16px 24px 0px;
  border-bottom: none;
}
@media screen and (max-width: 1024px) {
  .c-subtable {
    display: block;
  }
  .c-subtable dt,
  .c-subtable dd {
    width: 100%;
  }
  .c-subtable dt:first-of-type,
  .c-subtable dd:first-of-type {
    padding: 0px 0px 24px;
  }
  .c-subtable dt:last-of-type,
  .c-subtable dd:last-of-type {
    padding: 24px 0px 0px;
    border-bottom: none;
  }
  .c-subtable dt {
    font-size: 16px;
    border-bottom: none;
    padding: 24px 0px 12px;
  }
  .c-subtable dd {
    font-size: 15px;
    padding: 12px 0px 24px;
    border-bottom: solid 1px rgba(15, 15, 15, 0.1);
  }
}

.c-rollback {
  display: block;
  position: fixed;
  bottom: 0;
  right: 0;
  height: 64px;
  width: 64px;
}
.c-rollback a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  height: 64px;
  width: 64px;
  background-color: #0368b6;
  transition: all 0.6s;
  opacity: 0;
  /* フェードイン用のクラス */
}
.c-rollback a:hover {
  background-color: #8eaed5;
}
.c-rollback a.fadeIn {
  opacity: 1;
}
.c-rollback img {
  width: 16px;
  transform: rotate(-90deg);
}

/*toppage*/
.p-index-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  min-height: 800px;
  width: 100%;
  background-image: url(../images/top-visual.jpg);
  background-position: center;
  color: #ffffff;
  font-weight: 600;
  padding: 160px;
  animation: VisualImg 1.5s forwards;
  animation-delay: 2.5s;
}
@media screen and (max-width: 1280px) {
  .p-index-visual {
    padding: 80px;
    min-height: 700px;
  }
}
@media screen and (max-width: 768px) {
  .p-index-visual {
    padding: 48px;
    min-height: initial;
    max-height: 700px;
  }
}

@keyframes VisualImg {
  from {
    background-size: auto 160%;
  }
  to {
    background-size: auto 130%;
  }
}
.p-index-visual__title {
  font-size: 72px;
  margin-bottom: 32px;
  letter-spacing: -0.25em;
  overflow: hidden;
  /* 1文字目 */
  /* 2文字目 */
  /* 3文字目 */
  /* 4文字目 */
  /* 5文字目 */
  /* 6文字目 */
  /* 7文字目 */
  /* 8文字目 */
  /* 9文字目 */
  /* 10文字目 */
}
.p-index-visual__title span {
  display: inline-block;
  animation: VisualTitle 1.5s forwards;
  opacity: 0;
}
.p-index-visual__title span:nth-child(1) {
  animation-delay: 2.2s;
}
.p-index-visual__title span:nth-child(2) {
  animation-delay: 2.3s;
}
.p-index-visual__title span:nth-child(3) {
  animation-delay: 2.4s;
}
.p-index-visual__title span:nth-child(4) {
  animation-delay: 2.5s;
}
.p-index-visual__title span:nth-child(5) {
  animation-delay: 2.6s;
}
.p-index-visual__title span:nth-child(6) {
  animation-delay: 2.7s;
}
.p-index-visual__title span:nth-child(7) {
  padding: 0 0.25em;
}
.p-index-visual__title span:nth-child(8) {
  animation-delay: 2.8s;
}
.p-index-visual__title span:nth-child(9) {
  animation-delay: 2.9s;
}
.p-index-visual__title span:nth-child(10) {
  animation-delay: 3s;
}
.p-index-visual__title span:nth-child(11) {
  animation-delay: 3.1s;
}
@media screen and (max-width: 1280px) {
  .p-index-visual__title {
    font-size: 64px;
  }
}
@media screen and (max-width: 768px) {
  .p-index-visual__title {
    font-size: 32px;
  }
}

@keyframes VisualTitle {
  0% {
    opacity: 0;
    transform: translateY(1em);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-index-visual__lead {
  font-size: 36px;
  line-height: 64px;
  /* 1文字目 */
  /* 2文字目 */
}
.p-index-visual__lead span {
  display: inline-block;
  animation: VisualTitle 1.5s forwards;
  opacity: 0;
}
.p-index-visual__lead span:nth-child(1) {
  animation-delay: 3s;
}
.p-index-visual__lead span:nth-child(3) {
  animation-delay: 3.2s;
}
@media screen and (max-width: 1280px) {
  .p-index-visual__lead {
    font-size: 24px;
    line-height: 48px;
  }
}
@media screen and (max-width: 768px) {
  .p-index-visual__lead {
    font-size: 16px;
    line-height: 32px;
  }
}

.p-index-visual__background {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  height: 100svh;
  width: 100svw;
  background-color: #ffffff;
  z-index: 300;
  animation: VisualBack 1s ease 3s forwards;
}

@keyframes VisualBack {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    pointer-events: none;
  }
}
.p-index-visual__img {
  width: 100%;
  max-width: 400px;
  z-index: 301;
  position: absolute;
  animation: VisualLogo 3s ease 0s forwards;
}
@media screen and (max-width: 768px) {
  .p-index-visual__img {
    max-width: 300px;
    padding: 0 5vw;
    display: block;
  }
}

@keyframes VisualLogo {
  0% {
    transform: translateY(1em);
    opacity: 0;
  }
  40% {
    transform: translateY(0);
    opacity: 1;
  }
  60% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-1em);
    opacity: 0;
    pointer-events: none;
  }
}
.p-index-technology {
  margin-bottom: 160px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-index-technology {
    margin-bottom: 100px;
    display: block;
  }
}

.p-index-technology__content {
  position: relative;
  padding: 7vw;
  width: 60%;
}
@media screen and (max-width: 768px) {
  .p-index-technology__content {
    width: 100%;
    padding: 80px 5vw 48px;
  }
}

.p-index-technology__img {
  position: absolute;
  right: 0;
  width: 40%;
  height: 100%;
}
.p-index-technology__img figure {
  height: 33.3333333333%;
}
.p-index-technology__img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-index-technology__img {
    position: static;
    width: 100%;
    height: 250px;
    display: flex;
  }
  .p-index-technology__img figure {
    height: 100%;
  }
}

.p-index-technology__lead {
  margin: 64px 0 64px;
  line-height: 48px;
}
@media screen and (max-width: 1280px) {
  .p-index-technology__lead {
    line-height: 32px;
    margin: 48px 0 48px;
  }
}

.p-index-technology__core {
  border: 1px solid #0368b6;
  margin-bottom: 140px;
  max-width: 800px;
}
.p-index-technology__core::after {
  position: absolute;
  display: block;
  content: "";
  width: 0;
  height: 0;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 40px solid #0368b6;
}
.p-index-technology__core h3 {
  font-size: 24px;
  padding: 18px 0;
  border-bottom: 1px solid #0368b6;
  text-align: center;
  color: #0368b6;
}
.p-index-technology__core ul {
  display: flex;
  flex-wrap: wrap;
  padding: 48px 32px 24px;
}
.p-index-technology__core li {
  font-size: 20px;
  padding-left: 32px;
  margin-bottom: 24px;
  font-weight: 600;
}
.p-index-technology__core li::before {
  position: absolute;
  display: block;
  content: "";
  background-color: #8eaed5;
  top: 50%;
  width: 16px;
  height: 16px;
  left: 0;
  transform: translatey(-50%);
}
.p-index-technology__core li:not(:last-child) {
  margin-right: 40px;
}
@media screen and (max-width: 1280px) {
  .p-index-technology__core {
    margin-bottom: 100px;
  }
  .p-index-technology__core::after {
    position: absolute;
    display: block;
    content: "";
    width: 0;
    height: 0;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 30px solid #0368b6;
  }
  .p-index-technology__core h3 {
    font-size: 18px;
  }
  .p-index-technology__core ul {
    padding: 32px 24px 16px;
  }
  .p-index-technology__core li {
    font-size: 16px;
    padding-left: 24px;
    margin-bottom: 16px;
    font-weight: 600;
  }
  .p-index-technology__core li::before {
    width: 12px;
    height: 12px;
  }
}

.p-index-technology__example {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 80px;
  max-width: 800px;
}
.p-index-technology__example li {
  width: 20%;
  padding: 24px 2%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.p-index-technology__example li:nth-of-type(-n+4) {
  border-right: 1px solid #0368b6;
}
.p-index-technology__example li:last-of-type {
  padding: 0 2%;
}
.p-index-technology__example li:last-of-type img {
  margin-bottom: 0;
}
.p-index-technology__example img {
  margin-bottom: 32px;
}
.p-index-technology__example span {
  width: 80px;
  height: 80px;
}
.p-index-technology__example span::before {
  content: "";
  width: 32px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #0368b6;
}
.p-index-technology__example span::after {
  content: "";
  width: 1px;
  height: 32px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(0, -50%);
  background-color: #0368b6;
}
@media screen and (max-width: 1280px) {
  .p-index-technology__example {
    margin-bottom: 64px;
  }
  .p-index-technology__example li {
    width: 33.3333333333%;
  }
  .p-index-technology__example li:nth-of-type(-n+4) {
    border-right: none;
  }
  .p-index-technology__example li:nth-of-type(-n+3) {
    border-bottom: 1px solid #0368b6;
  }
  .p-index-technology__example li:not(:nth-of-type(3n)) {
    border-right: 1px solid #0368b6;
  }
  .p-index-technology__example li:last-of-type {
    padding: 0 2%;
  }
  .p-index-technology__example li span {
    margin-bottom: 32px;
  }
}

.p-index-technology__button {
  display: flex;
  flex-wrap: wrap;
  max-width: 800px;
}
.p-index-technology__button button {
  width: calc(50% - 16px);
  margin-bottom: 32px;
}
.p-index-technology__button button:first-of-type {
  margin-right: 32px;
}
@media screen and (max-width: 1280px) {
  .p-index-technology__button {
    display: block;
  }
  .p-index-technology__button button {
    width: 100%;
  }
}

.p-index-business__headline {
  padding: 80px 25vw 80px 7vw;
  margin-bottom: 120px;
  background-image: url(../images/top-business-headline.jpg);
  background-position: right 0%;
}
@media screen and (max-width: 1280px) {
  .p-index-business__headline {
    padding: 64px 5vw;
    background-size: 130% auto;
    background-position: left 100%;
    background-image: url(../images/top-business-headline--sp.jpg);
  }
}
@media screen and (max-width: 768px) {
  .p-index-business__headline {
    padding: 64px 5vw;
    background-size: auto 130%;
    background-position: left 100%;
  }
}

.p-index-business__lead {
  margin: 36px 0 0;
  line-height: 48px;
  font-weight: 500;
}
@media screen and (max-width: 1280px) {
  .p-index-business__lead {
    margin: 24px 0 0;
    line-height: 32px;
  }
}

.p-index-business__flow {
  text-align: center;
  margin-bottom: 160px;
}
.p-index-business__flow button {
  margin: 0 auto;
  min-width: 400px;
}
@media screen and (max-width: 1280px) {
  .p-index-business__flow button {
    min-width: 400px;
  }
}
@media screen and (max-width: 768px) {
  .p-index-business__flow button {
    min-width: initial;
    padding: 0 5vw;
  }
}

.p-index-business__step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 64px;
}
.p-index-business__step:nth-of-type(even) {
  flex-direction: row-reverse;
}
.p-index-business__step img {
  height: 350px;
  width: 48%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1280px) {
  .p-index-business__step {
    flex-direction: column-reverse;
  }
  .p-index-business__step:nth-of-type(even) {
    flex-direction: column-reverse;
  }
  .p-index-business__step img {
    width: 90%;
    height: 250px;
  }
}

.p-index-business__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 350px;
  width: 48%;
  overflow: hidden;
}
.p-index-business__content h3 {
  display: flex;
  align-items: center;
  line-height: 60px;
  font-size: 32px;
  margin-bottom: 48px;
}
.p-index-business__content p {
  padding-left: 120px;
  text-align: left;
}
.p-index-business__content span {
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 45px;
  font-size: 60px;
  line-height: 60px;
  color: #8eaed5;
  font-weight: 600;
  height: 100%;
}
@media screen and (max-width: 1280px) {
  .p-index-business__content {
    display: block;
    width: 100%;
    height: auto;
  }
  .p-index-business__content h3 {
    flex-direction: column;
    font-size: 24px;
    margin: 24px 0;
    width: 100%;
  }
  .p-index-business__content p {
    padding-left: 0;
    text-align: center;
  }
  .p-index-business__content span {
    padding-right: 0;
    font-size: 48px;
    line-height: 48px;
  }
}
@media screen and (max-width: 768px) {
  .p-index-business__content p {
    text-align: left;
  }
}

.p-index-business__step:not(:first-of-type) .p-index-business__content span::before {
  content: "";
  width: 1px;
  height: 100vh;
  position: absolute;
  bottom: 80px;
  background-color: #8eaed5;
}
@media screen and (max-width: 1280px) {
  .p-index-business__step:not(:first-of-type) .p-index-business__content span::before {
    width: 100vw;
    height: 1px;
    top: 24px;
    right: 100%;
    background-color: rgba(142, 174, 213, 0.3);
  }
}

.p-index-business__step:not(:last-of-type) .p-index-business__content span::after {
  content: "";
  width: 1px;
  height: 100vh;
  position: absolute;
  top: 80px;
  background-color: #8eaed5;
}
@media screen and (max-width: 1280px) {
  .p-index-business__step:not(:last-of-type) .p-index-business__content span::after {
    width: 100vw;
    height: 1px;
    top: 24px;
    left: 100%;
    background-color: rgba(142, 174, 213, 0.3);
  }
}

.p-index-business__step:nth-of-type(odd) .p-index-business__content {
  padding-right: 0;
  padding-left: 7vw;
}
@media screen and (max-width: 1280px) {
  .p-index-business__step:nth-of-type(odd) .p-index-business__content {
    padding-left: 0;
    padding: 5vw;
  }
}

.p-index-business__step:nth-of-type(even) .p-index-business__content {
  padding-right: 80px;
  padding-left: 80px;
}
@media screen and (max-width: 1280px) {
  .p-index-business__step:nth-of-type(even) .p-index-business__content {
    padding: 5vw;
  }
}

.p-index-business__button {
  margin: 0 auto;
}

.p-index-news {
  text-align: center;
  padding: 0 7vw;
  margin-bottom: 160px;
}
@media screen and (max-width: 1280px) {
  .p-index-news {
    padding: 0 5vw;
  }
}

.p-index-news__content {
  width: 100%;
  height: 400px;
}

/* company */
.p-company-message p {
  margin-bottom: 24px;
  line-height: 2.5;
}
.p-company-message .signature {
  text-align: right;
}

.p-company-office {
  display: flex;
  justify-content: space-between;
}
.p-company-office:first-of-type {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .p-company-office {
    display: block;
  }
}

.p-company-office__content {
  width: 50%;
}
.p-company-office__content p {
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .p-company-office__content {
    width: 100%;
    margin-bottom: 48px;
  }
}

.p-company-office__table th {
  width: 40%;
}
.p-company-office__table td {
  width: 60%;
}
@media screen and (max-width: 1280px) {
  .p-company-office__table th,
  .p-company-office__table td {
    width: 100%;
    display: block;
  }
  .p-company-office__table th {
    border-bottom: none;
    padding: 32px 16px 16px;
  }
  .p-company-office__table td {
    padding: 16px 16px 32px;
  }
}

.p-company-office__map {
  border: none;
  width: calc(50% - 80px);
}
@media screen and (max-width: 768px) {
  .p-company-office__map {
    width: 100%;
    height: 300px;
  }
}

.p-company-office__gallery {
  display: flex;
  justify-content: space-between;
  margin: 20px auto;
}
.p-company-office__gallery .gallery_img {
  width: 48%;
  margin: 0 2% 0 0;
  display: flex;
  align-items: stretch;
}
.p-company-office__gallery .gallery_img img {
  width: 100%;
  height: 360px;
  /*object-fit: cover; どちらにするか*/
  -o-object-fit: contain;
     object-fit: contain;
}
.p-company-office__gallery .gallery_thumbnails {
  width: 50%;
}
.p-company-office__gallery .gallery_thumbnails ul {
  display: flex;
  flex-wrap: wrap;
}
.p-company-office__gallery .gallery_thumbnails ul li {
  width: 31.3%;
  margin: 1%;
  border: solid 1px #e8e8e8;
  max-height: 110px;
  overflow: hidden;
}
.p-company-office__gallery .gallery_thumbnails ul li img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-company-office__gallery {
    flex-wrap: wrap;
  }
  .p-company-office__gallery .gallery_img {
    width: 100%;
    height: 280px;
    margin: 0 0 2% 0;
  }
  .p-company-office__gallery .gallery_thumbnails {
    width: 100%;
  }
  .p-company-office__gallery .gallery_thumbnails ul li img {
    height: 88px;
  }
}

/* technology */
.p-technology-lead {
  line-height: 1.8em;
  margin-bottom: 64px;
}
@media screen and (max-width: 1280px) {
  .p-technology-lead {
    line-height: 48px;
  }
}

.p-technology-handling {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-technology-handling {
    display: block;
    margin-bottom: 100px;
  }
}

.p-technology-handling__img {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .p-technology-handling__img {
    width: 100%;
    margin-bottom: 48px;
  }
}

.p-technology-handling__list {
  width: calc(40% - 80px);
}
.p-technology-handling__list.w100 {
  width: 100%;
}
.p-technology-handling__list li {
  padding: 14px 24px;
  border-bottom: 1px solid #0368b6;
  cursor: pointer;
  transition: all 0.6s;
}
.p-technology-handling__list li::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../images/icon-arrow--orange.png);
  width: 12px;
  height: 16px;
  background-size: 100%;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.p-technology-handling__list li span {
  font-weight: 600;
  color: #0368b6;
  padding-right: 24px;
  transition: all 0.6s;
}
.p-technology-handling__list li:hover {
  background-color: #0368b6;
  color: #ffffff;
}
.p-technology-handling__list li:hover::after {
  background-image: url(../images/icon-arrow.png);
}
.p-technology-handling__list li:hover span {
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .p-technology-handling__list {
    width: 100%;
  }
}

.p-technology-handling__list2 {
  padding-top: 20px;
}
.p-technology-handling__list2 li {
  margin: 0 0 10px;
  padding: 0 0 10px;
  border-bottom: 1px solid #e6e6e6;
}
.p-technology-handling__list2 li h5 {
  /*border-left: solid 3px #0a68b6;
  padding: 0 0 0 10px;*/
  margin: 0 0 10px;
}
.p-technology-handling__list2 li h5 span {
  color: #0368b6;
  margin-right: 10px;
}
.p-technology-handling__list2 li p {
  font-size: 15px;
}
.p-technology-handling__list2 li p.product-link {
  width: 80%;
  max-width: 320px;
  margin: 0;
}
.p-technology-handling__list2 li p.product-link a {
  display: block;
  border: 1px solid #2a68b6;
  border-radius: 20px;
  color: #2a68b6;
  text-align: center;
  margin: 5px 0 0;
  padding: 0 0;
  font-size: 15px;
}
.p-technology-handling__list2 li p.product-link a:hover {
  background-color: #c1d2e7;
}

.p-technology-partialsystem {
  display: flex;
  justify-content: space-between;
}
.p-technology-partialsystem > div {
  width: 50%;
}
.p-technology-partialsystem img {
  width: 50%;
  max-width: 100%;
  height: 100%;
  max-height: 500px;
  -o-object-fit: contain;
  object-fit: contain;
}
.p-technology-partialsystem img.sp {
  display: none;
}
.p-technology-partialsystem h4 {
  font-size: 20px;
  color: #0368b6;
  padding: 24px 0;
  margin-bottom: 24px;
  border-bottom: 1px solid #8eaed5;
}
.p-technology-partialsystem p {
  font-size: 16px;
  margin-bottom: 5px;
}
.p-technology-partialsystem .partialsystem_box {
  width: 50%;
}
.p-technology-partialsystem .partialsystem_box .drawing {
  display: flex;
}
.p-technology-partialsystem .partialsystem_box .drawing a {
  width: 40%;
  margin: 2% 2% 2% 0%;
  display: block;
  padding: 10px 0;
  background-color: #0368b6;
  color: #fff;
  text-align: center;
}
.p-technology-partialsystem .partialsystem_img {
  width: 48%;
  margin-left: 2%;
  text-align: center;
}
.p-technology-partialsystem .partialsystem_img.sp {
  display: none;
}
.p-technology-partialsystem .partialsystem_img .main_image img {
  width: 100%;
  max-height: 400px;
  -o-object-fit: contain;
  object-fit: contain;
}
.p-technology-partialsystem .partialsystem_img .thumbnails {
  max-width: 400px;
  margin: 0 auto;
}
.p-technology-partialsystem .partialsystem_img .thumbnails ul {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  justify-content: center;
}
.p-technology-partialsystem .partialsystem_img .thumbnails ul li {
  width: calc(33.3333333333% - 12px);
  margin: 0 6px;
  border: solid 1px #e8e8e8;
  background-color: #e8e8e8;
}
.p-technology-partialsystem .partialsystem_img .thumbnails ul li img {
  width: 100%;
  max-height: 110px;
  -o-object-fit: cover;
  object-fit: contain;
}
.p-technology-partialsystem:not(:last-of-type) {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .p-technology-partialsystem {
    display: block;
  }
  .p-technology-partialsystem > div {
    width: 100%;
  }
  .p-technology-partialsystem img {
    width: 100%;
    max-height: 380px;
  }
  .p-technology-partialsystem img.sp {
    display: block;
  }
  .p-technology-partialsystem img.pc {
    display: none;
  }
  .p-technology-partialsystem h4 {
    font-size: 18px;
  }
  .p-technology-partialsystem .partialsystem_box,
  .p-technology-partialsystem .partialsystem_img {
    width: 100%;
    margin-bottom: 20px;
    margin-left: 0;
  }
  .p-technology-partialsystem .partialsystem_img.pc {
    display: none;
  }
  .p-technology-partialsystem .partialsystem_img.sp {
    display: block;
  }
}

.page-technology .p-technology-partialsystem .partialsystem_img {
  margin-left: 0;
  margin-right: 2%;
}
@media screen and (max-width: 768px) {
  .page-technology .p-technology-partialsystem .partialsystem_img {
    margin: 0;
  }
}

.p-technology-dialog {
  display: block;
  opacity: 0;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 50vw;
  padding: 32px;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  z-index: 201 !important;
  transition: all 0.6s;
  pointer-events: none;
}
.p-technology-dialog.show-dialog {
  pointer-events: auto;
  opacity: 1;
}
.p-technology-dialog ::before {
  content: "";
  transition: all 0.6s;
  display: block;
  opacity: 0;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(3, 104, 182, 0.9);
  pointer-events: none;
  z-index: 200 !important;
}
.p-technology-dialog div {
  display: none;
  opacity: 0;
  pointer-events: none;
  margin-bottom: 32px;
  z-index: 202 !important;
}
.p-technology-dialog div.show-content {
  display: block;
  pointer-events: auto;
  opacity: 1;
}
.p-technology-dialog h3 {
  font-size: 20px;
  color: #0368b6;
  padding: 24px 0 24px 0;
  margin-bottom: 24px;
  border-bottom: 1px solid #8eaed5;
}
.p-technology-dialog img {
  max-height: 400px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-technology-dialog a {
  margin: 24px 0 0;
  display: block;
  text-decoration: underline;
  color: #0368b6;
  font-weight: 500;
  transition: all 0.6s;
}
.p-technology-dialog a:hover {
  color: #8eaed5;
}
.p-technology-dialog button {
  margin: 24px 0 0;
  padding: 8px 16px;
  color: #ffffff;
  background-color: #0368b6;
}
@media screen and (max-width: 1280px) {
  .p-technology-dialog {
    width: 80vw;
  }
  .p-technology-dialog h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .p-technology-dialog {
    width: 90vw;
    padding: 32px 5vw;
  }
}

.p-technology-dialog__background {
  transition: all 0.6s;
  display: block;
  opacity: 0;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(3, 104, 182, 0.9);
  pointer-events: none;
  z-index: 200 !important;
}
.p-technology-dialog__background.show-dialog {
  pointer-events: auto;
  opacity: 1;
}

.powder-list {
  display: flex;
  flex-wrap: wrap;
  padding: 5px 25px;
}
.powder-list li {
  width: 20%;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
}
.powder-list li::before {
  content: "";
  display: inline-block;
  background-size: cover;
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  background-image: url(../images/icon-powder.png);
  margin: 0 4px 0 0;
}
@media screen and (max-width: 768px) {
  .powder-list {
    padding: 10px 0;
  }
  .powder-list li {
    width: 50%;
  }
}

.c-temporary {
  width: 100%;
  margin: 0 0 20px;
}

.scroll-x {
  width: 100%;
  margin: 0 0 20px;
}
@media screen and (max-width: 768px) {
  .scroll-x {
    overflow-x: scroll;
  }
}

p.c-temporary-txt {
  text-align: right;
  font-size: 90%;
  color: #587da3;
  display: none;
}
@media screen and (max-width: 768px) {
  p.c-temporary-txt {
    display: block;
  }
}

.delivery-list {
  width: 100%;
}
.delivery-list thead th {
  border-bottom: 1px solid #4575ac;
  color: #4575ac;
  font-size: 15px;
  padding: 5px 10px;
}
.delivery-list thead:first-of-type {
  width: 25%;
}
.delivery-list thead:nth-child(2) {
  width: 35%;
}
.delivery-list thead:nth-child(3) {
  width: 40%;
}
.delivery-list tbody th {
  font-size: 15px;
  border-bottom: 2px solid #ffffff;
  padding: 5px 10px;
  background-color: #e2e2e2;
  font-weight: normal;
  text-align: left;
  width: 25%;
}
.delivery-list tbody td {
  border-bottom: 2px solid rgba(245, 245, 245, 0.9607843137);
  background-color: #ffffff;
  padding: 5px;
  font-size: 15px;
}
.delivery-list tbody td:nth-child(2) {
  width: 35%;
  border-right: 1px solid rgba(238, 221, 238, 0.8666666667);
}
.delivery-list tbody td:nth-child(3) {
  width: 40%;
}
.delivery-list tbody tr:nth-child(odd) th {
  background-color: #eaeaea;
}
.delivery-list tbody tr:nth-child(odd) td {
  background-color: #ffffff;
}
.delivery-list tbody tr th.bd_bg_none,
.delivery-list tbody tr td.bd_bg_none {
  border: none;
  background-color: #fff;
}
.delivery-list .bd_none {
  border: none;
}
@media screen and (max-width: 768px) {
  .delivery-list {
    width: 1600px;
    min-width: 670px;
    /*
    thead {
    	display: none;
    }

    tbody {
    	th {
    		font-size: 14px;
    		width: 100%;
    		display: flex;
    		align-items: stretch;
    		padding: 0;

    		&:nth-child(1) {
    			width: 100%;
    			margin-bottom: -1px;
    		}

    		&:nth-child(2) {
    			width: 100%;
    		}

    		&::before {
    			content: "概要";
    			font-size: 13px;
    			color: #ffffff;
    			background-color: #4575ac;
    			width: 12%;
    			min-width: 50px;
    			display: flex;
    			align-items: center;
    			justify-content: center;
    			padding: 5px;
    			margin-right: 5px;
    		}

    		span {
    			display: flex;
    			align-items: center;
    			width: 88%;
    			padding: 2px;
    		}
    	}

    	td {
    		width: 100%;
    		margin-bottom: -1px;
    		background-color: #fff;
    		display: flex;
    		align-items: stretch;
    		padding: 0;
    		font-size: 14px;
    		border-bottom: #fafcff solid 6px;
    		line-height: 1.2em;

    		&::before {
    			content: "規模";
    			font-size: 13px;
    			color: #ffffff;
    			justify-content: center;
    			display: flex;
    			align-items: center;
    			padding: 5px;
    			margin-right: 5px;
    			background-color: #4575ac;
    			width: 12%;
    			min-width: 50px;
    		}

    		span {
    			display: flex;
    			align-items: center;
    			width: 88%;
    			padding: 2px;
    		}
    	}

    	tr:last-child {
    		td {
    			border-bottom: none;
    		}
    	}

    }*/
  }
}

/* recruit */
.recruiting {
  width: 90%;
  max-width: 400px;
  margin: 30px auto 0;
}
.recruiting a {
  display: block;
  padding: 10px;
  background-color: #0368b6;
  color: #fff;
  font-size: 18px;
  text-align: center;
}

.stopped {
  width: 90%;
  max-width: 400px;
  margin: 30px auto 0;
}
.stopped a {
  display: block;
  padding: 10px;
  background-color: #ccc;
  pointer-events: none;
  font-size: 16px;
  text-align: center;
}

.p-recruit-contact {
  margin-top: 48px;
}
.p-recruit-contact h4 {
  display: block;
  color: #0368b6;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #d9d9d9;
}
.p-recruit-contact a {
  text-decoration: underline;
  color: #0368b6;
  font-weight: 500;
  transition: all 0.6s;
}
.p-recruit-contact a:hover {
  color: #8eaed5;
}/*# sourceMappingURL=style.css.map */