@charset "UTF-8";
:root {
  --font-barlow-noto: "Barlow", "Noto Sans JP", sans-serif;
  --font-noto: "Noto Sans JP", sans-serif;
  --font-barlow: "Barlow", sans-serif;
  --color-primary: #0A0EA5;
  --color-pick-up01: #00B0C7;
  --color-pick-up02: #32B597;
  --color-pick-up03: #177BD0;
  --color-pick-up04: #FF862B;
  --color-product01: #00A2DE;
  --color-product02: #63B503;
  --color-product03: #7A0FD5;
  --color-product04: #13D1C3;
  --color-technology: #00A2DE;
  --color-our-company: #00A2DE;
  --color-csr: #238D48;
  --color-ir: #7A0FD5;
  --color-recruit: #4E4ED9;
  --bg-color-primary: #F4F4FB;
  --bg-color-pick-up01: #F5FCFD;
  --bg-color-pick-up02: #F7FCFB;
  --bg-color-pick-up03: #F5FAFD;
  --bg-color-pick-up04: #FFFAF6;
  --bg-color-product01: #F7FCFE;
  --bg-color-product02: #F9FCF5;
  --bg-color-product03: #FAF5FE;
  --bg-color-product04: #F5FDFD;
  --bg-color-technology: #F7FCFE;
  --bg-color-our-company: #EFF9FD;
  --bg-color-csr: #F8FBF9;
  --bg-color-ir: #F7FCFE;
  --bg-color-recruit: #F9F9FE;
  --bg-color-contact: #E5E5F5;
  --padding-variable-lr: min(6.25vw, 120px);
}

html:focus-within {
  scroll-behavior: auto;
}

@media (max-width: 1200px) {
  html {
    scroll-padding-top: 70px;
  }
}

body {
  font-family: var(--font-noto);
  font-size: 16px;
  font-weight: 400;
}

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

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

img {
  vertical-align: bottom;
}

input, select {
  -webkit-appearance: none;
  appearance: none;
}

.font-barlow {
  font-family: var(--font-barlow);
}

.font-weight100 {
  font-weight: 100;
}

.font-weight200 {
  font-weight: 200;
}

.font-weight300 {
  font-weight: 300;
}

.font-weight400 {
  font-weight: 400;
}

.font-weight500 {
  font-weight: 500;
}

.font-weight600 {
  font-weight: 600;
}

.font-weight700 {
  font-weight: 700;
}

.font-weight800 {
  font-weight: 800;
}

.font-weight900 {
  font-weight: 900;
}

.textAlignRight {
  text-align: right !important;
}

.textAlignCenter {
  text-align: center !important;
}

.textAlignLeft {
  text-align: left !important;
}

.verticalAlignTop {
  vertical-align: top;
}

.verticalAlignCenter {
  vertical-align: center;
}

.verticalAlignBottom {
  vertical-align: bottom;
}

.alignItemsCenter {
  align-items: center;
}

.alignItemsStart {
  align-items: flex-start;
}

.alignItemsEnd {
  align-items: flex-end;
}

.justifyContentStart {
  justify-content: flex-start;
}

.justifyContentEnd {
  justify-content: flex-end;
}

.mixBlendModeDarken {
  mix-blend-mode: darken;
}

/*PC，SP出し分け*/
.is-pc {
  display: block;
}

.is-sp {
  display: none;
}

@media (max-width: 1200px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
}
/*改行のPC，SP出し分け*/
.br-is-pc {
  display: block;
}

.br-is-sp {
  display: none;
}

@media (max-width: 767px) {
  .br-is-pc {
    display: none;
  }
  .br-is-sp {
    display: block;
  }
}
/*----------------------------------------------
 SP image
----------------------------------------------*/
@media (max-width: 1200px) {
  .contents .contents__body img,
.contents .contents__body figure,
.contents .contents__body picture {
    width: 100%;
    height: auto;
  }
}

/*----------------------------------------------
 header,globalNav
----------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  z-index: 10;
}
@media (max-width: 1200px) {
  .header {
    width: 100%;
    height: 70px;
    z-index: 100;
  }
}
.header .header__head {
  position: absolute;
  top: 0;
  width: 100%;
  height: 277px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 17px;
}
@media (max-width: 1200px) {
  .header .header__head {
    height: auto;
    position: relative;
    top: auto;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 16px;
    background-color: #ffffff;
  }
}
.header .header__body {
  padding-top: 277px;
  background-color: #FFF;
  z-index: 100;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 1200px) {
  .header .header__body {
    position: fixed;
    left: 0;
    right: 0;
    height: calc(100% - 70px);
    padding: 0;
    overflow: hidden;
    transition: opacity 0.3s, visibility 0s ease 0.3s, transform 0s ease 0.3s;
    opacity: 0;
    visibility: hidden;
    transform: translateX(150%);
  }
  .header .header__body.is-navOpen {
    transition-delay: 0s;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}
.header .header__logoWrap .header__logo {
  width: 160px;
}
@media (max-width: 1200px) {
  .header .header__logoWrap .header__logo {
    width: 181px;
  }
}
@media (hover: hover) {
  .header .header__logoWrap .header__logoLink:hover {
    opacity: 0.7;
  }
}

.navOpenBtn {
  display: none;
  position: fixed;
  top: 21px;
  right: 12px;
  width: 30px;
  height: 30px;
}
.navOpenBtn.is-navOpen .navOpenBtn__line {
  width: 30px;
  pointer-events: none;
}
.navOpenBtn.is-navOpen .navOpenBtn__line:first-child {
  transform: translateY(0) rotate(-20deg);
}
.navOpenBtn.is-navOpen .navOpenBtn__line:last-child {
  transform: translateY(0) rotate(20deg);
}
.navOpenBtn .navOpenBtn__line {
  display: block;
  width: 25px;
  height: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 2px;
  background-color: var(--color-primary);
  transition: all 0.3s;
}
.navOpenBtn .navOpenBtn__line:first-child {
  transform: translateY(-5px) rotate(0);
}
.navOpenBtn .navOpenBtn__line:last-child {
  transform: translateY(5px) rotate(0);
}
@media (max-width: 1200px) {
  .navOpenBtn {
    display: block;
  }
}

.globalNav {
  color: var(--color-primary);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
@media (max-width: 1200px) {
  .globalNav .globalNav__list {
    padding-left: 28px;
    margin-top: 33px;
  }
}
.globalNav .globalNav__list + .globalNav__list {
  margin-top: auto;
}
@media (max-width: 1200px) {
  .globalNav .globalNav__list + .globalNav__list {
    padding: 40px 0 40px 28px;
  }
}
@media (max-width: 1200px) {
  .globalNav .globalNav__listItem.is-close .globalNav__childList {
    max-height: 0 !important;
    padding: 0;
  }
}
@media (max-width: 1200px) {
  .globalNav .globalNav__listItem.is-open:after {
    transform: rotate(-90deg);
  }
}
@media (max-width: 1200px) {
  .globalNav .globalNav__listItem.globalNav__listItem--notChildList:after {
    transform: rotate(0);
  }
}
@media (max-width: 1200px) {
  .globalNav .globalNav__listItem.globalNav__listItem--notChildList > a {
    display: flex;
    padding: 10px 90px 10px 0;
    margin-right: 0;
  }
}
@media (max-width: 1200px) {
  .globalNav .globalNav__listItem:after {
    content: "";
    display: block;
    width: 5px;
    height: 9px;
    background: url(../images/common/icon-arrow-blue.svg) no-repeat;
    background-size: contain;
    position: absolute;
    top: 25px;
    right: 47px;
    margin: auto 0;
    transform: rotate(90deg);
  }
}
@media (max-width: 1200px) {
  .globalNav .globalNav__listItem:last-child {
    border-bottom: 1px solid var(--color-primary);
  }
}
@media (max-width: 1200px) {
  .globalNav .globalNav__listItem {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--color-primary);
  }
}
@media (hover: hover) {
  .globalNav .globalNav__listItem:hover {
    background-color: #E5E5ED;
  }
  .globalNav .globalNav__listItem:hover .globalNav__childList {
    display: block;
    transition-delay: 0.1s;
    opacity: 1;
    visibility: visible;
  }
}
.globalNav .globalNav__listItemLink {
  font-size: 17px;
  font-weight: 500;
  display: block;
  padding: 15px 40px 16px 32px;
  position: relative;
}
@media (max-width: 1200px) {
  .globalNav .globalNav__listItemLink {
    margin-right: 90px;
    display: inline-flex;
    padding: 10px 0;
    min-height: 57px;
    align-items: center;
  }
}
.globalNav .globalNav__listItemLink:after {
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  background: url(../images/common/icon-arrow-blue.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 28px;
  margin: auto 0;
}
@media (max-width: 1200px) {
  .globalNav .globalNav__listItemLink:after {
    content: none;
  }
}
.globalNav .globalNav__listTextEn {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font-barlow);
}
.globalNav .globalNav__childListTextEn {
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-barlow);
}
.globalNav .globalNav__childList {
  color: #ffffff;
  background-color: var(--color-primary);
  width: 300px;
  position: absolute;
  left: 300px;
  top: 0;
  bottom: 0;
  padding: 162px 0 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s, visibility 0s ease 0.4s;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1200px) {
  .globalNav .globalNav__childList {
    width: 100%;
    position: relative;
    left: 0;
    top: 0;
    bottom: 0;
    visibility: visible;
    opacity: 1;
    transition: max-height 0.4s, padding 0.4s;
    box-shadow: none;
    padding: 29px 0;
  }
}
@media (max-width: 1200px) {
  .globalNav .globalNav__childListItem.globalNav__childListItem--parent {
    display: none;
  }
}
.globalNav .globalNav__childListItem.globalNav__childListItem--parent + .globalNav__childListItem {
  margin-top: 7px;
}
@media (max-width: 1200px) {
  .globalNav .globalNav__childListItem.globalNav__childListItem--parent + .globalNav__childListItem {
    margin-top: 0;
  }
}
.globalNav .globalNav__childListItem.globalNav__childListItem--parent .globalNav__childListItemLink:after {
  content: none;
}
@media (hover: hover) {
  .globalNav .globalNav__childListItem.globalNav__childListItem--parent .globalNav__childListItemLink:hover {
    background-color: inherit;
    color: inherit;
  }
}
.globalNav .globalNav__childListItemLink {
  font-size: 15px;
  font-weight: 500;
  padding: 15px 42px 16px 20px;
  display: block;
  position: relative;
}
@media (max-width: 1200px) {
  .globalNav .globalNav__childListItemLink {
    padding: 21px 80px 21px 68px;
  }
}
.globalNav .globalNav__childListItemLink:after {
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  background: url(../images/common/icon-arrow-white.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 31px;
  margin: auto 0;
}
@media (max-width: 1200px) {
  .globalNav .globalNav__childListItemLink:after {
    right: 53px;
  }
}
.globalNav .globalNav__childListItemLink .globalNav__childListTextEn {
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-barlow);
}
@media (hover: hover) {
  .globalNav .globalNav__childListItemLink:hover {
    background-color: #E5E5ED;
    color: var(--color-primary);
  }
  .globalNav .globalNav__childListItemLink:hover:after {
    background: url(../images/common/icon-arrow-blue.svg) no-repeat;
  }
}
.globalNav .globalNav__otherLinkList {
  margin-top: auto;
  padding: 60px 0 12px;
}
.globalNav .globalNav__otherLinkListItem {
  padding: 15px 40px 16px 32px;
}
@media (max-width: 1200px) {
  .globalNav .globalNav__otherLinkListItem {
    padding: 0;
  }
}
.globalNav .globalNav__otherLinkListItem.globalNav__otherLinkListItem--contact > a {
  display: flex;
  flex-wrap: nowrap;
  gap: 0 10px;
  align-items: center;
}
@media (hover: hover) {
  .globalNav .globalNav__otherLinkListItem.globalNav__otherLinkListItem--contact > a:hover {
    opacity: 0.7;
  }
}
.globalNav .globalNav__otherLinkListItem.globalNav__otherLinkListItem--contact > a:before {
  content: "";
  display: block;
  width: 23px;
  height: 16px;
  background: url(../images/common/icon-mail.svg) no-repeat;
  background-size: contain;
  margin-right: 7px;
}
.globalNav .globalNav__otherLinkListItem.globalNav__otherLinkListItem--lang {
  display: flex;
  flex-wrap: nowrap;
  gap: 0 10px;
  align-items: center;
  margin-top: 2vh;
}
@media (max-width: 1200px) {
  .globalNav .globalNav__otherLinkListItem.globalNav__otherLinkListItem--lang {
    margin-top: 90px;
  }
}
@media (hover: hover) {
  .globalNav .globalNav__otherLinkListItem.globalNav__otherLinkListItem--lang > a:hover {
    opacity: 0.7;
  }
}
.globalNav .globalNav__otherLinkListTextEn {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font-barlow);
}

/*----------------------------------------------
 main
----------------------------------------------*/
.main {
  display: block;
  width: auto;
  height: auto;
  padding: 0 0 0 300px;
}
@media (max-width: 1200px) {
  .main {
    padding: 0;
  }
}

/*----------------------------------------------
 pageTop
----------------------------------------------*/
body {
  position: relative;
}

.pageTop {
  position: absolute;
  top: 0;
  border: 0;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
}
.pageTop .pageTop__link {
  display: block;
  position: sticky;
  right: 16px;
  bottom: 30px;
  border-radius: 50%;
  width: 68px;
  height: 68px;
  background: #ffffff;
  border: 1px solid #0A0EA5;
  transition: opacity 0.3s, border 0.3s, background-color 0.3s;
  margin-left: auto;
  z-index: 10;
  pointer-events: auto;
}
.pageTop .pageTop__link.is-top {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .pageTop .pageTop__link {
    right: 20px;
    height: 58px;
    width: 58px;
  }
}
@media (hover: hover) {
  .pageTop .pageTop__link:hover {
    background-color: #0A0EA5;
    border: 1px solid #ffffff;
  }
  .pageTop .pageTop__link:hover:after {
    background: url(../images/common/icon-go-top-white.svg) no-repeat;
  }
}
@media (hover: hover) and (max-width: 1200px) {
  .pageTop .pageTop__link:hover:after {
    background: url(../images/common/icon-go-top-white-sp.svg) no-repeat;
  }
}
.pageTop .pageTop__link:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 20px;
  height: 35px;
  background: url(../images/common/icon-go-top-blue.svg) no-repeat;
}
@media (max-width: 1200px) {
  .pageTop .pageTop__link:after {
    background: url(../images/common/icon-go-top-blue-sp.svg) no-repeat;
  }
}
.pageTop .pageTop__spacer {
  height: 187px;
  width: 100%;
  display: block;
  z-index: 10;
  position: relative;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .pageTop .pageTop__spacer {
    height: 350px;
  }
}

/*----------------------------------------------
 footer
----------------------------------------------*/
.footer {
  width: 100%;
  padding: 0 0 0 300px;
  color: #ffffff;
  background: var(--color-primary);
}
@media (max-width: 1200px) {
  .footer {
    padding: 0;
  }
}
.footer .footer__inner {
  position: relative;
  max-width: 1620px;
  margin: 0 auto;
  padding: 80px 75px 249px;
}
@media (max-width: 1200px) {
  .footer .footer__inner {
    padding: 43px 20px 32px;
  }
}
.footer .footer__navContainer {
  display: flex;
  flex-wrap: nowrap;
  max-width: 1383px;
}
@media (max-width: 1200px) {
  .footer .footer__navContainer {
    flex-direction: column;
  }
}
.footer .footer__nav {
  padding-right: min(8vw, 152px);
  font-family: var(--font-barlow-noto);
}
@media (max-width: 1200px) {
  .footer .footer__nav {
    padding: 0;
  }
}
@media (max-width: 1200px) {
  .footer .footer__nav + .footer__nav {
    margin-top: 30px;
  }
}
.footer .footer__navItem + .footer__navItem {
  margin-top: 30px;
}
.footer .footer__navItem > a {
  font-size: 14px;
  font-weight: 700;
  line-height: 2.1428571429;
  font-family: var(--font-barlow-noto);
}
@media (hover: hover) {
  .footer .footer__navItem > a:hover {
    text-decoration: underline;
  }
}
.footer .footer__navItem > p {
  font-size: 14px;
  font-weight: 700;
  line-height: 2.1428571429;
  font-family: var(--font-barlow-noto);
}
.footer .footer__navItemTextEn {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-barlow);
}
@media (max-width: 1200px) {
  .footer .footer__navChildListItem.footer__navChildListItem--small > a {
    font-size: 13px;
  }
}
.footer .footer__navChildListItem > a {
  font-size: 14px;
  padding-left: 1em;
  display: inline-block;
  line-height: 2.1428571429;
}
@media (hover: hover) {
  .footer .footer__navChildListItem > a:hover {
    text-decoration: underline;
  }
}
.footer .footer__navChildListTextEn {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-barlow);
}
.footer .footer__otherLinkList {
  display: flex;
  flex-wrap: nowrap;
  position: absolute;
  left: 60px;
  bottom: 110px;
  font-size: 14px;
}
@media (max-width: 1200px) {
  .footer .footer__otherLinkList {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 74px;
  }
}
.footer .footer__otherLinkListItem {
  font-size: 14px;
}
.footer .footer__otherLinkListItem > a {
  color: #ffffff;
}
@media (hover: hover) {
  .footer .footer__otherLinkListItem > a:hover {
    text-decoration: underline;
  }
}
.footer .footer__otherLinkListItem + .footer__otherLinkListItem:before {
  content: "　｜　";
}
.footer .footer__address {
  font-size: 16px;
  position: absolute;
  bottom: 40px;
  left: 60px;
}
@media (max-width: 1200px) {
  .footer .footer__address {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 49px;
    line-height: 1.25;
  }
}
@media (max-width: 1400px) {
  .footer .footer__address .br-is-sp:first-child {
    display: block;
  }
}
.footer .footer__logo {
  position: absolute;
  bottom: 99px;
  right: 51px;
  width: 287px;
}
@media (max-width: 1200px) {
  .footer .footer__logo {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 55px;
  }
}
.footer .footer__logo img {
  width: 100%;
  height: auto;
}
.footer .footer__logoLink {
  display: block;
}
@media (hover: hover) {
  .footer .footer__logoLink:hover {
    opacity: 0.7;
  }
}
.footer .footer__copyright {
  position: absolute;
  bottom: 37px;
  right: 51px;
  text-align: right;
  font-size: 16px;
}
@media (max-width: 1200px) {
  .footer .footer__copyright {
    text-align: left;
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 22px;
  }
}

/*----------------------------------------------
 Image Pop Up
----------------------------------------------*/
.lum-lightbox {
  z-index: 100;
}

.lum-lightbox-inner {
  padding: 0 100px;
}
@media (max-width: 1200px) {
  .lum-lightbox-inner {
    padding: 0;
    top: 0;
    right: 0;
    left: 0;
    border: 0;
  }
}
.lum-lightbox-inner img {
  position: relative;
  margin: 0 auto;
  max-height: 60vh;
}
@media (max-width: 460px) {
  .lum-lightbox-inner .lum-lightbox-image-wrapper {
    -webkit-overflow-scrolling: touch;
    display: flex;
    overflow: auto;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100% !important;
    max-height: 100% !important;
  }
}
.lum-lightbox-inner .lum-gallery-button {
  display: none !important;
}

/*----------------------------------------------
 pickUpList
----------------------------------------------*/
.sectionPickUpList {
  padding: 115px 0;
  background: #ffffff;
}
@media (max-width: 1200px) {
  .sectionPickUpList {
    padding: 70px 0;
  }
}

.pickUpList {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 46px 16px;
}
@media (max-width: 1200px) {
  .pickUpList {
    grid-template-columns: 1fr;
    padding-left: 20px;
    grid-gap: 70px 0;
  }
}
.pickUpList .pickUpList__item {
  position: relative;
}
.pickUpList .pickUpList__item.pickUpList__item--1 .pickUpList__linkTitleWrap {
  background: var(--color-pick-up01);
}
.pickUpList .pickUpList__item.pickUpList__item--2 .pickUpList__linkTitleWrap {
  background: var(--color-pick-up02);
}
.pickUpList .pickUpList__item.pickUpList__item--3 .pickUpList__linkTitleWrap {
  background: var(--color-pick-up03);
}
.pickUpList .pickUpList__item.pickUpList__item--4 .pickUpList__linkTitleWrap {
  background: var(--color-pick-up04);
}
.pickUpList .pickUpList__link {
  position: relative;
  display: block;
  padding-left: 30px;
  padding-top: 30px;
}
@media (max-width: 1200px) {
  .pickUpList .pickUpList__link {
    padding-left: 21px;
    padding-top: 21px;
  }
}
@media (max-width: 1200px) {
  .pickUpList .pickUpList__link.is-spHover .pickUpList__linkTitleWrap {
    top: 7px;
    left: 10px;
  }
  .pickUpList .pickUpList__link.is-spHover .pickUpList__linkImage img {
    transform: scale(1.1);
    transition: transform 0.3s;
  }
}
@media (hover: hover) {
  .pickUpList .pickUpList__link:hover .pickUpList__linkTitleWrap {
    top: 7px;
    left: 10px;
  }
  .pickUpList .pickUpList__link:hover .pickUpList__linkImage img {
    transform: scale(1.1);
    transition: transform 0.3s;
  }
}
.pickUpList .pickUpList__linkImage {
  overflow: hidden;
}
.pickUpList .pickUpList__linkImage img {
  width: 100%;
  height: 100%;
  min-height: 285px;
  object-fit: cover;
  transition: transform 0.3s;
}
@media (max-width: 1200px) {
  .pickUpList .pickUpList__linkImage img {
    min-height: 200px;
  }
}
.pickUpList .pickUpList__linkTitleWrap {
  position: absolute;
  top: 0;
  left: 0;
  /* max-height: 252px; */
  /* max-width: 589px; */
  min-width: 68.6%;
  /* height: 60%; */
  min-height: 170px;
  transition: top 0.3s, left 0.3s;
  padding: 12px 17px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .pickUpList .pickUpList__linkTitleWrap {
    padding: 12px;
    min-width: 254px;
    min-height: 119px;
  }
}
.pickUpList .pickUpList__linkSubTitle {
  color: #ffffff;
  font-size: 19px;
  font-size: clamp(0.625rem, -0.13rem + 1.1vw, 1.188rem);
  font-family: var(--font-barlow);
  font-weight: 600;
  line-height: 1;
  margin-left: -3px;
}
@media (max-width: 1200px) {
  .pickUpList .pickUpList__linkSubTitle {
    font-size: 12px;
  }
}
.pickUpList .pickUpList__linkTitleNum {
  color: #ffffff;
  font-size: 47px;
  font-size: clamp(1.25rem, -1.014rem + 3.29vw, 2.938rem);
  font-family: var(--font-barlow);
  font-weight: 600;
  line-height: 1.2;
  margin-left: -3px;
  margin-top: -2px;
}
@media (max-width: 1200px) {
  .pickUpList .pickUpList__linkTitleNum {
    font-size: 32px;
  }
}
.pickUpList .pickUpList__linkTitle {
  color: #ffffff;
  font-size: 23px;
  font-size: clamp(0.625rem, -0.465rem + 1.59vw, 1.438rem);
  letter-spacing: 0.1em;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .pickUpList .pickUpList__linkTitle {
    font-size: 15px;
  }
}

/*----------------------------------------------
 productList
----------------------------------------------*/
.sectionProductList {
  padding: 70px 0;
  background: #ffffff;
}
@media (max-width: 1200px) {
  .sectionProductList {
    padding: 58px 0;
  }
}

.productList {
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 46px 48px;
}
@media (max-width: 1200px) {
  .productList {
    padding: 0 0 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 40px 0;
  }
}
.productList .productList__item {
  position: relative;
}
.productList .productList__item.productList__item--1 .productList__linkTitleWrap {
  background: var(--color-product01);
}
.productList .productList__item.productList__item--2 .productList__linkTitleWrap {
  background: var(--color-product02);
}
.productList .productList__item.productList__item--3 .productList__linkTitleWrap {
  background: var(--color-product03);
}
.productList .productList__item.productList__item--4 .productList__linkTitleWrap {
  background: var(--color-product04);
}
.productList .productList__link {
  position: relative;
  display: block;
  padding-right: 19px;
  padding-bottom: 43px;
}
@media (max-width: 1200px) {
  .productList .productList__link {
    padding-right: 16px;
    padding-bottom: 35px;
  }
}
@media (max-width: 1200px) {
  .productList .productList__link.is-spHover .productList__linkTitleWrap {
    bottom: 7px;
    right: 10px;
  }
  .productList .productList__link.is-spHover .productList__linkImage img {
    transform: scale(1.1);
    transition: transform 0.3s;
  }
}
@media (hover: hover) {
  .productList .productList__link:hover .productList__linkTitleWrap {
    bottom: 7px;
    right: 10px;
  }
  .productList .productList__link:hover .productList__linkImage img {
    transform: scale(1.1);
    transition: transform 0.3s;
  }
}
.productList .productList__linkImage {
  overflow: hidden;
}
.productList .productList__linkImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.productList .productList__linkTitleWrap {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 76.8%;
  min-height: 148px;
  transition: bottom 0.3s, right 0.3s;
  padding: 12px 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (max-width: 1200px) {
  .productList .productList__linkTitleWrap {
    min-height: 120px;
    width: 284px;
    padding: 8px 12px 10px;
  }
}
.productList .productList__linkSubTitle {
  color: #ffffff;
  font-size: 15px;
  font-size: clamp(0.625rem, -0.097rem + 0.86vw, 0.938rem);
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media (max-width: 1200px) {
  .productList .productList__linkSubTitle {
    font-size: 12px;
    line-height: 1.5;
  }
}
.productList .productList__linkTitleNum {
  color: #ffffff;
  font-size: 17px;
  font-family: var(--font-barlow);
  font-weight: 600;
  line-height: 1.2;
  margin-top: auto;
}
@media (max-width: 1200px) {
  .productList .productList__linkTitleNum {
    font-size: 13px;
    line-height: 1.23076923;
  }
}
.productList .productList__linkTitle {
  color: #ffffff;
  font-size: 17px;
  font-size: clamp(0.625rem, -0.522rem + 1.32vw, 1.063rem);
  font-weight: 700;
}
@media (max-width: 1200px) {
  .productList .productList__linkTitle {
    font-size: 13px;
    line-height: 1.46153846;
    margin-top: 4px;
  }
}

/*----------------------------------------------
 newsList
----------------------------------------------*/
.newsList {
  margin-top: 23px;
}
.newsList .newsList__list {
  border-bottom: 1px solid #000000;
}
.newsList .newsList__list.newsList__list--accordion .newsList__listItem:nth-child(n+11) {
  display: none;
}
.newsList .newsList__listItem {
  border-top: 1px solid #000000;
}
.newsList .newsList__listItem.newsList__listItem--info .newsList__category {
  background-color: #FF862B;
}
@media (hover: hover) {
  .newsList .newsList__listItem.newsList__listItem--info .newsList__link:hover {
    background: #FCF0E7;
  }
}
.newsList .newsList__listItem.newsList__listItem--recruit .newsList__category {
  background-color: #4E4ED9;
}
@media (hover: hover) {
  .newsList .newsList__listItem.newsList__listItem--recruit .newsList__link:hover {
    background: #ECEAF7;
  }
}
.newsList .newsList__listItem.newsList__listItem--csr .newsList__category {
  background-color: #238D48;
}
@media (hover: hover) {
  .newsList .newsList__listItem.newsList__listItem--csr .newsList__link:hover {
    background: #E8F0EA;
  }
}
.newsList .newsList__listItem.newsList__listItem--ir .newsList__category {
  background-color: #7A0FD5;
}
@media (hover: hover) {
  .newsList .newsList__listItem.newsList__listItem--ir .newsList__link:hover {
    background: #EEE3F9;
  }
}
.newsList .newsList__listItem.newsList__listItem--event .newsList__category {
  background-color: #00A2DE;
}
@media (hover: hover) {
  .newsList .newsList__listItem.newsList__listItem--event .newsList__link:hover {
    background: #E2F3FA;
  }
}
.newsList .newsList__link {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 22px;
  padding: 28px 20px;
  transition: background-color 0.3s;
}
@media (max-width: 1200px) {
  .newsList .newsList__link {
    flex-wrap: wrap;
    padding: 24px 14px 13px;
  }
}
@media (hover: hover) {
  .newsList .newsList__link:hover {
    background: rgba(253, 134, 43, 0.1);
  }
  .newsList .newsList__link:hover .newsList__newsTitle {
    text-decoration: underline;
    font-weight: 700;
  }
}
.newsList .newsList__date {
  font-size: 16px;
  min-width: 80px;
}
.newsList .newsList__category {
  width: 117px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: #000000;
  font-size: 11px;
  text-align: center;
}
.newsList .newsList__newsTitle {
  font-size: 16px;
  flex: 1;
}
@media (max-width: 1200px) {
  .newsList .newsList__newsTitle {
    font-size: 15px;
    flex: auto;
    width: 100%;
    display: block;
    margin-top: 17px;
  }
}
.newsList .newsList__btnWrap {
  margin-top: 30px;
  max-width: 328px;
  margin-left: auto;
}
@media (max-width: 1200px) {
  .newsList .newsList__btnWrap {
    max-width: 289px;
    margin-top: 44px;
  }
}

/*----------------------------------------------
 linkBtn
----------------------------------------------*/
.linkBtn {
  font-family: var(--font-barlow-noto);
  position: relative;
  font-weight: 600;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.6;
  background: #1C1C5D;
  padding: 6px 20px;
  display: inline-block;
  text-align: center;
  border: 3px solid #1C1C5D;
  transition: background-color 0.3s;
}
@media (hover: hover) {
  .linkBtn:hover {
    background: #FFFFFF;
    color: #1C1C5D;
  }
  .linkBtn:hover.linkBtn--download:before {
    background: url(../images/common/icon-download-blue.svg) no-repeat;
  }
}
@media (max-width: 1200px) {
  .linkBtn {
    font-size: 15px;
    padding: 4px 17px;
  }
}
.linkBtn.linkBtn--contact {
  padding: 6px 32px;
}
@media (max-width: 1200px) {
  .linkBtn.linkBtn--contact {
    font-size: 20px;
    padding: 4px 32px;
  }
}
.linkBtn.linkBtn--widthFull {
  display: block;
  width: 100%;
}
.linkBtn.linkBtn--download {
  padding-left: 56px;
}
@media (max-width: 1200px) {
  .linkBtn.linkBtn--download {
    padding-left: 35px;
  }
}
.linkBtn.linkBtn--download:before {
  content: "";
  display: block;
  width: 18px;
  height: 17px;
  background: url(../images/common/icon-download.svg) no-repeat;
  background-size: contain;
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
@media (max-width: 1200px) {
  .linkBtn.linkBtn--download:before {
    width: 13px;
    height: 13px;
    left: 12px;
  }
}

/*----------------------------------------------
 moreBtn
----------------------------------------------*/
.moreBtn {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  background-color: #ffffff;
  font-size: 26px;
  font-family: var(--font-barlow);
  font-weight: 700;
  line-height: 1.84615385;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
@media (max-width: 1200px) {
  .moreBtn {
    min-height: 65px;
  }
}
@media (max-width: 1200px) and (max-width: 1200px) {
  .moreBtn {
    min-height: 60px;
  }
}
@media (hover: hover) {
  .moreBtn:hover {
    background-color: var(--color-primary);
    color: #ffffff;
  }
}

/*----------------------------------------------
 sendBtn
----------------------------------------------*/
.sendBtn {
  border: 11px solid var(--color-primary);
  color: var(--color-primary);
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-direction: column;
  padding: 26px;
  width: 100%;
}
@media (max-width: 1200px) {
  .sendBtn {
    min-height: 150px;
    padding: 13px;
  }
}
.sendBtn.sendBtn--back {
  background: var(--color-primary);
  color: #ffffff;
  padding: 16px;
}
@media (max-width: 1200px) {
  .sendBtn.sendBtn--back {
    min-height: auto;
  }
}
@media (hover: hover) {
  .sendBtn.sendBtn--back:hover {
    background: #ffffff;
    color: var(--color-primary);
  }
}
.sendBtn.sendBtn--back .sendBtn__text {
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.35em;
  line-height: 1.05263158;
  display: inline-block;
}
@media (max-width: 1200px) {
  .sendBtn.sendBtn--back .sendBtn__text {
    font-size: 15px;
  }
}
.sendBtn .sendBtn__text {
  font-size: 40px;
  font-family: var(--font-barlow);
  font-weight: 600;
  line-height: 1.2;
  display: inline-block;
}
@media (max-width: 1200px) {
  .sendBtn .sendBtn__text {
    font-size: 33px;
  }
}
.sendBtn .sendBtn__textSmall {
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.35em;
  line-height: 1.05263158;
  display: inline-block;
}
@media (max-width: 1200px) {
  .sendBtn .sendBtn__textSmall {
    font-size: 15px;
    margin-top: 10px;
  }
}
@media (hover: hover) {
  .sendBtn:hover {
    cursor: hand;
    background-color: var(--color-primary);
    color: #ffffff;
  }
}

/*----------------------------------------------
 sectionContactLink
----------------------------------------------*/
@media (max-width: 1200px) {
  .sectionContactLink.sectionContactLink--consignmentTest .contactLink__subTitle {
    margin-top: 20px;
    font-weight: 700;
    font-size: 21px;
    line-height: 1.47619048;
    letter-spacing: 0.4em;
    text-align: center;
  }
}

.contactLink .contactLink__link {
  height: 474px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.contactLink .contactLink__link:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  border: 0 solid #00A2DE;
  z-index: 1;
  opacity: 0;
  transition: border 0.3s, opacity 0.2s;
}
@media (max-width: 1200px) {
  .contactLink .contactLink__link.is-spHover:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    border: 20px solid #00A2DE;
    opacity: 1;
  }
}
@media (hover: hover) {
  .contactLink .contactLink__link:hover:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    border: 20px solid #00A2DE;
    opacity: 1;
  }
}
.contactLink .contactLink__titleWrap {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.contactLink .contactLink__titleWrap path {
  fill: #00A2DE;
}
.contactLink .contactLink__title {
  margin-left: 41px;
  padding-bottom: 5px;
  color: #00A2DE;
  font-size: 46px;
  font-family: var(--font-barlow);
  font-weight: 600;
  line-height: 1.19565217;
}
.contactLink .contactLink__subTitle {
  margin-top: 20px;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.45em;
  text-align: center;
  color: #00A2DE;
}

/*----------------------------------------------
 アニメーション
----------------------------------------------*/
@keyframes slideClipPath {
  0% {
    clip-path: polygon(-200% 0%, -100% 0%, -200% 100%, -300% 100%);
  }
  100% {
    clip-path: polygon(0% 0%, 200% 0%, 100% 100%, -100% 100%);
  }
}

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