\n \n
\n 実績紹介
\n \n \n works
\n \n \n \n
\n \n \n {workInfo.map((work, index) => {\n return (\n \n {work.link === 'production-management-system' ? (\n \n \n \n ) : (\n \n \n \n )}\n {work.title.join('\\n')}\n \n {work.description.join('\\n')}\n \n {work.text}\n {work.buttonlabel === 'Comming Soon...' ? (\n \n \n {work.buttonlabel}\n \n \n ) : (\n \n \n {work.buttonlabel}\n \n \n )}\n \n );\n })}\n \n
\n \n );\n};\nexport default Works;\n","import { useStaticQuery, graphql } from 'gatsby';\n\nconst WorkDetailFluidImages = image => {\n const data = useStaticQuery(graphql`\n query {\n workproductDevelopmentDescktop01: file(\n relativePath: { eq: \"v2-work-detail/productDevelopment_img_01.png\" }\n ) {\n childImageSharp {\n fluid(maxWidth: 608, maxHeight: 320) {\n ...GatsbyImageSharpFluid_withWebp\n ...GatsbyImageSharpFluidLimitPresentationSize\n }\n }\n }\n workproductDevelopmentMobile01: file(\n relativePath: { eq: \"v2-work-detail/productDevelopment_img_sp_01.png\" }\n ) {\n childImageSharp {\n fluid(maxWidth: 360, maxHeight: 238) {\n ...GatsbyImageSharpFluid_withWebp\n ...GatsbyImageSharpFluidLimitPresentationSize\n }\n }\n }\n workproductDevelopmentDescktop02: file(\n relativePath: { eq: \"v2-work-detail/productDevelopment_img_02.png\" }\n ) {\n childImageSharp {\n fluid(maxWidth: 608, maxHeight: 320) {\n ...GatsbyImageSharpFluid_withWebp\n ...GatsbyImageSharpFluidLimitPresentationSize\n }\n }\n }\n workproductDevelopmentMobile02: file(\n relativePath: { eq: \"v2-work-detail/productDevelopment_img_sp_02.png\" }\n ) {\n childImageSharp {\n fluid(maxWidth: 360, maxHeight: 238) {\n ...GatsbyImageSharpFluid_withWebp\n ...GatsbyImageSharpFluidLimitPresentationSize\n }\n }\n }\n\n valveMaintenanceSystemDescktop01: file(\n relativePath: { eq: \"v2-work-detail/valveMaintenanceSystem_img_01.png\" }\n ) {\n childImageSharp {\n fluid(maxWidth: 608, maxHeight: 320) {\n ...GatsbyImageSharpFluid_withWebp\n ...GatsbyImageSharpFluidLimitPresentationSize\n }\n }\n }\n valveMaintenanceSystemMobile01: file(\n relativePath: {\n eq: \"v2-work-detail/valveMaintenanceSystem_img_sp_01.png\"\n }\n ) {\n childImageSharp {\n fluid(maxWidth: 360, maxHeight: 238) {\n ...GatsbyImageSharpFluid_withWebp\n ...GatsbyImageSharpFluidLimitPresentationSize\n }\n }\n }\n\n dxsolutionDescktop01: file(\n relativePath: { eq: \"v2-work-detail/dxsolution_img_01.png\" }\n ) {\n childImageSharp {\n fluid(maxWidth: 608, maxHeight: 320) {\n ...GatsbyImageSharpFluid_withWebp\n ...GatsbyImageSharpFluidLimitPresentationSize\n }\n }\n }\n dxsolutionMobile01: file(\n relativePath: { eq: \"v2-work-detail/dxsolution_img_sp_01.png\" }\n ) {\n childImageSharp {\n fluid(maxWidth: 360, maxHeight: 238) {\n ...GatsbyImageSharpFluid_withWebp\n ...GatsbyImageSharpFluidLimitPresentationSize\n }\n }\n }\n\n dxHumanIntroduceDescktop01: file(\n relativePath: { eq: \"v2-work-detail/dxHumanIntroduce_img_01.png\" }\n ) {\n childImageSharp {\n fluid(maxWidth: 608, maxHeight: 320) {\n ...GatsbyImageSharpFluid_withWebp\n ...GatsbyImageSharpFluidLimitPresentationSize\n }\n }\n }\n dxHumanIntroduceMobile01: file(\n relativePath: { eq: \"v2-work-detail/dxHumanIntroduce_img_sp_01.png\" }\n ) {\n childImageSharp {\n fluid(maxWidth: 360, maxHeight: 238) {\n ...GatsbyImageSharpFluid_withWebp\n ...GatsbyImageSharpFluidLimitPresentationSize\n }\n }\n }\n }\n `);\n\n return data[image].childImageSharp.fluid;\n};\n\nexport default WorkDetailFluidImages;\n","import React from 'react';\nimport styled from 'styled-components';\nimport { Link } from 'gatsby';\nimport Img from 'gatsby-image';\nimport PageRoot from '../../components/common-components/templates/page-root-v2';\nimport Works from '../../components/work-v2/index';\nimport colorPaletteV2 from '../../styles/color-palette-v2';\nimport '../../styles/foundation-v2.css';\nimport WorkFluidImages from '../../images/gatsby-image/v2-work-page/fluid-images';\nimport WorkDetailFluidImages from '../../images/gatsby-image/work-detail-page/fluid-images';\nimport pagesV2 from '../../constants-v2/pages-v2';\nimport SEOHeaderV2 from '../../components/common-components/templates/page-root-v2/seo-v2';\n\nconst wpContentSideMarginSp = 2.4;\n\nconst captionWidthPc = '608px';\nconst captionWidthSp = `calc(100% - ${wpContentSideMarginSp * 2}px)`;\n\nconst contentFontH = {\n sp: {\n h1: {\n font: '24px',\n line: '36px',\n },\n h2: {\n font: '24px',\n line: '36px',\n },\n h3: {\n font: '21px',\n line: '31.5px',\n },\n h4: {\n font: '17px',\n line: '27px',\n },\n },\n pc: {\n h1: {\n font: '24px',\n line: '34.75px',\n },\n h2: {\n font: '24px',\n line: '34.75px',\n },\n h3: {\n font: '18px',\n line: '24.06px',\n },\n h4: {\n font: '16px',\n line: '23.17px',\n },\n },\n};\n\nconst Root = styled.div`\n display: flex;\n flex-direction: column;\n align-items: center;\n min-height: 60vh;\n`;\n\nconst BodyWrapper = styled.div`\n z-index: 1;\n margin-bottom: 160px;\n @media (max-width: 1023px) {\n width: 100%;\n margin-bottom: 100px;\n }\n`;\n\nconst CaptionRightAlign = styled(Link)`\n display: flex;\n align-items: center;\n width: 110px;\n margin: 0 0 24px auto;\n @media (max-width: 1023px) {\n margin-bottom: 18px;\n }\n @media (min-width: 1024px) {\n margin-bottom: 24px;\n }\n`;\n\nconst TopAttention = styled.h2`\n font-weight: 400;\n color: ${colorPaletteV2.blue};\n @media (max-width: 1023px) {\n font-size: 16px;\n line-height: 16px;\n }\n @media (min-width: 1024px) {\n font-size: 16px;\n line-height: 16px;\n margin-left: 4px;\n }\n`;\n\nconst WorkContentWrapper = styled.div`\n @media (min-width: 1024px) {\n width: ${captionWidthPc};\n }\n`;\n\nconst EyeCatchPic = styled(Img)`\n border: 0;\n background-size: cover;\n @media (max-width: 1023px) {\n width: ${captionWidthSp};\n height: 320px;\n margin: 0 auto 24px;\n }\n @media (min-width: 1024px) {\n width: ${captionWidthPc};\n height: 420px;\n margin-bottom: 28px;\n }\n @media (max-width: 640px) {\n height: 210px;\n }\n`;\n\nconst WorkTitle = styled.h1`\n font-size: 24px;\n line-height: 34.75px;\n font-weight: 700;\n @media (max-width: 1023px) {\n margin-bottom: 12px;\n }\n @media (min-width: 1024px) {\n margin-bottom: 14px;\n }\n`;\n\nconst WorkTags = styled.div`\n @media (max-width: 1023px) {\n display: block;\n line-height: 28.8px;\n }\n @media (min-width: 1024px) {\n margin-bottom: 40px;\n margin-bottom: 40px;\n }\n`;\n\nconst WorkTagsItem = styled.span`\n font-size: 16px;\n color: ${colorPaletteV2.blue};\n display: inline;\n margin-right: 5px;\n cursor: pointer;\n white-space: nowrap;\n &:hover {\n text-decoration: underline;\n }\n`;\n\nconst WorksOuter = styled.div`\n margin-bottom: 100px;\n`;\n\nconst WorkDescriptionWrapper = styled.div`\n font-size: 16px;\n font-size: 16px;\n line-height: 28.8px;\n line-height: 28.8px;\n\n & h2 {\n padding: 2px 8px;\n border-left: solid 6px ${colorPaletteV2.blue};\n margin-top: 20px;\n margin-top: 20px;\n margin-bottom: 20px;\n margin-bottom: 20px;\n\n @media (max-width: 1023px) {\n font-size: ${contentFontH.sp.h2.font};\n line-height: ${contentFontH.sp.h2.line};\n }\n @media (min-width: 1024px) {\n font-size: ${contentFontH.pc.h2.font};\n line-height: ${contentFontH.pc.h2.line};\n }\n }\n`;\n\nconst WorkParagraph = styled.p`\n font-size: 16px;\n font-size: 16px;\n line-height: 28.8px;\n line-height: 28.8px;\n font-weight: 400;\n display: inline-block;\n margin-bottom: 24px;\n`;\n\nconst WorkBlockImagePC = styled(Img)`\n @media (min-width: 1024px) {\n width: 100%;\n height: auto;\n margin: 0 auto 20px;\n }\n @media (max-width: 1023px) {\n display: none;\n }\n //TO DO:2021/03/30:公開後タブレット用画像用意する?\n`;\n\nconst WorkBlockImageSP = styled(Img)`\n @media (min-width: 1024px) {\n display: none;\n }\n @media (max-width: 1023px) {\n width: 100%;\n height: auto;\n margin: 0 auto 20px;\n }\n //TO DO:2021/03/30:公開後タブレット用画像用意する?\n`;\n\nconst WorkProductDevelopment = () => {\n return (\n