@charset "UTF-8";
#what-is-header-title {
  width: 100%;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  background-color: #eaeef2;
  padding: 48px 0 56px;
  color: #333;
}

#what-is-header-title > br {
  display: none;
}

@media only screen and (max-width: 425px) {
  #what-is-header-title {
    font: normal normal bold 28px/38px Noto Sans JP;
    padding: 40px 0 32px;
    min-height: 198px;
  }

  #what-is-header-title > br {
    display: inline-block;
  }
}

#what-is-intro-advantage {
  background-color: #f5f9fa;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333333;
}

#what-is-intro-advantage .what-is-container {
  width: 100%;
  padding: 80px 0;
  background-color: #f5f9fa;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#what-is-intro-advantage .what-is-container:nth-child(2) {
  padding-top: 0;
}

#what-is-intro-advantage .what-is-container:nth-child(odd) {
  background-color: #eaeef2;
}

#what-is-intro-advantage
  .what-is-container:last-child
  .what-is-more
  .what-is-content:first-child {
  grid-column-start: 2;
}

#what-is-intro-advantage .what-is-container .what-is-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 45px;
  row-gap: 48px;
  padding: 0 30px 32px;
  width: 100%;
  max-width: 1080px;
}

#what-is-intro-advantage .what-is-container .what-is-block .what-is-item {
  display: flex;
  flex-direction: column;
}

#what-is-intro-advantage .what-is-container .what-is-block .what-is-item > img {
  width: 100%;
  min-height: 200px;
}

#what-is-intro-advantage
  .what-is-container
  .what-is-block
  .what-is-item
  > .what-is-content
  > .more {
  display: none;
}

#what-is-intro-advantage
  .what-is-container
  .what-is-block
  .what-is-item
  > .what-is-content
  > h2 {
  margin: 24px 0 16px;
  font: normal normal bold 24px/37px Noto Sans JP;
}

#what-is-intro-advantage
  .what-is-container
  .what-is-block
  .what-is-item
  > .what-is-content
  > p {
  margin: 0;
  text-align: justify;
  font: normal normal normal 16px/27px Noto Sans JP;
}

#what-is-intro-advantage
  .what-is-container
  .what-is-block
  .what-is-item:first-child {
  grid-column-start: 1;
  grid-column-end: 4;
  flex-direction: row;
}

#what-is-intro-advantage
  .what-is-container:nth-child(odd)
  .what-is-block
  .what-is-item:first-child {
  flex-direction: row-reverse;
}

#what-is-intro-advantage
  .what-is-container
  .what-is-block
  .what-is-item:first-child
  > img {
  flex: 1;
  padding-right: 30px;
  max-height: 297px;
}

#what-is-intro-advantage
  .what-is-container:nth-child(odd)
  .what-is-block
  .what-is-item:first-child
  > img {
  padding-right: 0;
  padding-left: 30px;
}

#what-is-intro-advantage
  .what-is-container
  .what-is-block
  .what-is-item:first-child
  > .what-is-content {
  flex: 1;
  padding-left: 18px;
  padding-right: 53px;
}

#what-is-intro-advantage
  .what-is-container
  .what-is-block
  .what-is-item:first-child
  > .what-is-content
  > h2 {
  margin: 0 0 24px;
}

#what-is-intro-advantage .what-is-container > h2 {
  margin: 0;
  width: 100%;
  text-align: center;
}

#what-is-intro-advantage .what-is-more {
  width: 100%;
  max-width: 1080px;
  display: grid;
  column-gap: 30px;
  row-gap: 30px;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 24px;
}

#what-is-intro-advantage .what-is-more .what-is-content {
  height: 96px;
  border: 2px solid #e8e8e8;
  border-radius: 16px;
  background-color: #fff;
  padding: 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
  grid-column-end: span 2;
}

#what-is-intro-advantage .what-is-more .what-is-content:hover {
  border: 2px solid #2faecb;
}

#what-is-intro-advantage
  .what-is-more
  .what-is-content
  .what-is-image-container {
  height: 100%;
  width: 100%;
  max-height: 64px;
  max-width: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f9fa;
  border-radius: 50%;
  padding: 12px;
  margin-right: 16px;
}

#what-is-intro-advantage
  .what-is-more
  .what-is-content
  .what-is-image-container
  > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#what-is-intro-advantage .what-is-more .what-is-content > span {
  font-size: 1.125em;
  font-weight: bold;
}

@media only screen and (max-width: 425px) {
  #what-is-intro-advantage .what-is-container {
    padding-top: 48px;
    padding-bottom: 0;
  }

  #what-is-intro-advantage .what-is-container .what-is-block {
    grid-template-columns: 1fr;
    padding: 0 16px 48px;
  }

  #what-is-intro-advantage
    .what-is-container
    .what-is-block
    .what-is-item:first-child {
    grid-column-start: unset;
    grid-column-end: unset;
    flex-direction: column;
  }

  #what-is-intro-advantage
    .what-is-container
    .what-is-block
    .what-is-item:first-child
    > img {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  #what-is-intro-advantage
    .what-is-container
    .what-is-block
    .what-is-item
    > img {
    min-height: 212px;
  }

  #what-is-intro-advantage
    .what-is-container
    .what-is-block
    .what-is-item:first-child
    > .what-is-content {
    padding: 0;
  }

  #what-is-intro-advantage
    .what-is-container
    .what-is-block
    .what-is-item:first-child
    > .what-is-content
    > h2,
  #what-is-intro-advantage
    .what-is-container
    .what-is-block
    .what-is-item
    > .what-is-content
    > h2 {
    font: normal normal bold 20px/30px Noto Sans JP;
    margin: 16px 0;
    text-align: justify;
  }

  #what-is-intro-advantage
    .what-is-container
    .what-is-block
    .what-is-item
    > .what-is-content
    > p {
    font: normal normal normal 15px/26px Noto Sans JP;
  }

  #what-is-intro-advantage
    .what-is-container:nth-child(odd)
    .what-is-block
    .what-is-item:first-child {
    flex-direction: column;
  }

  #what-is-intro-advantage
    .what-is-container
    .what-is-block
    .what-is-item
    > .what-is-content
    > .more {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #what-is-intro-advantage
    .what-is-container
    .what-is-block
    .what-is-item
    > .what-is-content
    > .more
    > h3 {
    font-size: 15px;
    margin: 24px 0 8px;
    width: 100%;
    text-align: center;
  }

  #what-is-intro-advantage
    .what-is-container
    .what-is-block
    .what-is-item
    > .what-is-content
    > .more
    > .more-block {
    width: 264px;
    height: 72px;
    background-color: #fff;
    border-radius: 16px;
    padding: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid #e8e8e8;
  }

  #what-is-intro-advantage
    .what-is-container
    .what-is-block
    .what-is-item
    > .what-is-content
    > .more
    > .more-block
    > .more-container {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    background-color: #f5f9fa;
    margin-right: 12px;
    padding: 12px;
  }

  #what-is-intro-advantage
    .what-is-container
    .what-is-block
    .what-is-item
    > .what-is-content
    > .more
    > .more-block
    > span {
    font-size: 15px;
    font-weight: bold;
  }

  #what-is-intro-advantage
    .what-is-container
    .what-is-block
    .what-is-item
    > .what-is-content
    > .more
    > .more-block
    > .more-container
    > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  #what-is-intro-advantage .what-is-more,
  #what-is-intro-advantage .what-is-container > h2 {
    display: none;
  }
}

#reason {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333333;
}

#reason .reason-container {
  width: 100%;
  max-width: 1080px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#reason .reason-container .reason-block {
  display: flex;
  margin-bottom: 80px;
}

#reason .reason-container .reason-block:nth-child(even) {
  flex-direction: row-reverse;
}

#reason .reason-container .reason-block .reason-img {
  width: 50%;
  padding: 0 30px;
}

#reason .reason-container .reason-block .reason-content {
  width: 50%;
  padding-left: 18px;
  padding-right: 68px;
}

#reason .reason-container .reason-block .reason-content .reason-more {
  display: flex;
  max-height: 96px;
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  padding: 10px;
  align-items: center;
}
#reason .reason-container .reason-block .reason-content .reason-more > img {
  width: 100px;
  height: 76px;
  object-fit: contain;
}
#reason .reason-container .reason-block .reason-content .reason-more > p {
  padding-left: 19px;
  margin: 0;
  font: normal normal bold 16px/24px Noto Sans JP;
}

#reason .reason-container .reason-block:nth-child(even) .reason-content {
  padding-left: 68px;
  padding-right: 18px;
}

#reason .reason-container .reason-block .reason-img > img {
  width: 100%;
  height: 297px;
  object-fit: cover;
  border-radius: 16px;
}

#reason .reason-container .reason-block .reason-content > h2 {
  margin-top: 0;
  margin-bottom: 24px;
}

#reason .reason-container .reason-block .reason-content > p {
  text-align: justify;
  margin: 0;
  font: normal normal normal 16px/28px Noto Sans JP;
}

#reason .reason-container .reason-block:last-child .reason-content > p {
  margin-bottom: 24px;
}

@media only screen and (max-width: 425px) {
  #reason .reason-container .reason-block {
    flex-direction: column;
    margin-bottom: 48px;
  }

  #reason .reason-container .reason-block:last-child {
    margin-bottom: 56px;
  }

  #reason .reason-container .reason-block:nth-child(even) {
    flex-direction: column;
  }

  #reason .reason-container .reason-block:nth-child(even) .reason-content {
    padding: 16px 16px 0;
  }

  #reason .reason-container .reason-block .reason-content {
    width: 100%;
    padding: 16px 16px 0;
  }

  #reason .reason-container .reason-block .reason-content > h2 {
    font: normal normal bold 20px/30px Noto Sans JP;
    margin-bottom: 16px;
    text-align: justify;
  }

  #reason .reason-container .reason-block .reason-content > p {
    font: normal normal normal 15px/26px Noto Sans JP;
    margin-bottom: 0;
  }

  #reason .reason-container .reason-block:last-child .reason-content > p {
    margin-bottom: 24px;
  }

  #reason .reason-container .reason-block .reason-content .reason-more {
    padding: 16px 14px;
  }

  #reason .reason-container .reason-block .reason-content .reason-more > img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
  }

  #reason .reason-container .reason-block .reason-content .reason-more > p {
    font: normal normal bold 16px/24px Noto Sans JP;
    padding-left: 14px;
  }

  #reason
    .reason-container
    .reason-block
    .reason-content
    .reason-more
    > p
    > br {
    display: none;
  }

  #reason .reason-container .reason-block .reason-img {
    width: 100%;
    height: 212px;
    padding: 0 16px;
  }

  #reason .reason-container .reason-block .reason-img > img {
    height: 212px;
  }
}

#ads {
  display: flex;
  background-color: #2faecb;
  height: 314px;
  justify-content: center;
}

#ads .ads-container {
  width: 100%;
  max-width: 1080px;
  padding: 64px 30px;
  display: grid;
  column-gap: 30px;
  grid-template-columns: repeat(2, 1fr);
}

#ads .ads-container .ads-content-block {
  border-radius: 16px;
  background-color: #fff;
  padding: 2em;
  height: 186px;
  display: flex;
}

#ads .ads-container .ads-content-block .ads-desc {
  width: 100%;
  margin-left: 2em;
}

#ads .ads-container .ads-content-block .ads-desc > button {
  min-width: 164px;
  min-height: 42px;
  font: normal normal bold 14px/30px Noto Sans JP;
  padding-bottom: 4px;
}

#ads .ads-container .ads-content-block .ads-desc > button:after {
  right: 8px;
  top: calc(50% - 5px);
}

#ads .ads-container .ads-content-block .ads-desc img {
  width: 177px;
  height: 122px;
  object-fit: cover;
}

#ads .ads-container .ads-content-block .ads-desc .ads-title-block {
  font-size: 1.125em;
  font-weight: bold;
  margin-bottom: 16px;
}

#ads .ads-container .ads-content-block .ads-desc > button:hover {
  opacity: 1;
  background-color: #0b768d;
  color: #ffffff;
}

@media only screen and (max-width: 425px) {
  #ads {
    height: unset;
  }

  #ads .ads-container {
    grid-template-columns: repeat(1, 1fr);
    padding: 48px 16px;
    column-gap: unset;
    row-gap: 16px;
  }

  #ads .ads-container .ads-content-block {
    padding: 16px;
    height: 123px;
  }

  #ads .ads-container .ads-content-block > img {
    max-width: 132px;
  }

  #ads .ads-container .ads-content-block .ads-desc {
    margin-left: 16px;
  }

  #ads .ads-container .ads-content-block .ads-desc > button {
    min-width: 132px !important;
    min-height: 32px !important;
    padding-bottom: 2px;
    font: normal normal bold 12px/30px Noto Sans JP !important;
  }

  #ads .ads-container .ads-content-block .ads-desc > button:after {
    right: 4px !important;
    transform: scale(0.8) !important;
  }

  #ads .ads-container .ads-content-block .ads-desc .ads-title-block {
    font-size: 14px;
    margin-bottom: 8px;
  }
}

#usage {
  background-color: #e9eef0;
  display: flex;
  flex-direction: column;
  align-items: center;

  padding-bottom: 64px;
}

#usage h1.top-title {
  margin: 48px 0 32px;
  padding-bottom: 0;
}

#usage h1.top-title:after {
  content: none;
}

#usage .usage-container {
  width: 100%;
  max-width: 1080px;
  display: grid;
  column-gap: 30px;
  row-gap: 30px;
  grid-template-columns: repeat(3, 1fr);

  margin-bottom: 40px;
}

#usage .usage-container .usage-content {
  height: 240px;
  border-radius: 16px;
  position: relative;
  cursor: pointer;
  background-color: #ffffff;
  border: #2faecb00 solid 2px;
}

#usage .usage-container .usage-content:hover {
  border: #2faecb solid 2px;
  background: #eef5f6 0 0 no-repeat padding-box;
}

#usage .usage-container .usage-content .usage-image {
  border-radius: 16px;
  position: absolute;
  width: 230px;
  height: auto;
  object-fit: contain;
  top: 16px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

#usage .usage-container .usage-content .usage-desc {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  font-size: 1.125em;
  font-weight: bold;
  bottom: 40px;
  min-height: 52px;
}

@media only screen and (max-width: 425px) {
  #usage {
    padding-bottom: 56px;
  }

  #usage h1.top-title {
    font: normal normal bold 28px/38px Noto Sans JP;

    margin: 40px 0 24px;
  }

  #usage .usage-container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 9px;
    column-gap: 9px;
    padding: 0 16px;
    margin-bottom: 24px;
  }

  #usage .usage-container .usage-content {
    height: 200px;
  }

  #usage .usage-container .usage-content .usage-image {
    width: 115px;
    height: 75px;
  }

  #usage .usage-container .usage-content .usage-desc {
    padding: 0 10px;
    text-align: left;
font-size: 1em;
  }

  #usage .usage-container .usage-content .usage-desc br {
    display: none;
  }

  #usage .btn {
    min-width: 184px !important;
    min-height: 48px !important;
    font: normal normal bold 15px/30px Noto Sans JP !important;
  }
}

#contact {
  display: flex;
  flex-direction: column;
  background-color: #2faecb;
  align-items: center;
  padding-bottom: 64px;
}

#contact .contact-container {
  width: 100%;
  max-width: 1080px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#contact .contact-container .contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 45px;
  margin-bottom: 48px;
}

#contact .contact-container .contact-info .contact-item {
  background-color: #fff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 29px 32px;
  min-height: 356px;
}

#contact .contact-container .contact-info .contact-item > img {
  width: fit-content;
}

#contact .contact-container .contact-info .contact-item > h3 {
  margin: 16px 0 8px;
  font-size: 22px;
}

#contact .contact-container .contact-info .contact-item > p {
  font: normal normal normal 16px/28px Noto Sans JP;
  text-align: justify;
  margin: 0 0 24px;
}

#contact .contact-container .contact-info .contact-item > button {
  margin-top: auto;
  padding: 0 26px 0 19px;
}

#contact .contact-container .contact-info .contact-item > button:after {
  right: 10px;
  top: calc(50% - 5px);
}

#contact .contact-container .contact-document {
  background-color: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 705px;
  display: flex;
  padding: 0 83px 0 67px;
}

#contact .contact-container .contact-document.pp-func {
  display: none;
}

#contact .contact-container .contact-document > img {
  flex: 1;

  max-width: 285px;
  padding: 42px 0 48px;
}

#contact .contact-container .contact-document .contact-document-info {
  flex: 1;
  padding: 30px 0 34px 24px;
}
#contact .contact-container .contact-document .contact-document-info > p {
  margin: 0;
  font-weight: bold;
}

#contact .contact-container .contact-document .contact-document-info > h3 {
  margin: 2px 0 16px;
  font: normal normal bold 22px/28px Noto Sans JP;
}

#contact .contact-container button:hover {
  opacity: 1;
  background-color: #0b768d;
  color: #ffffff;
}

@media only screen and (max-width: 425px) {
  #contact .contact-container {
    padding: 0 32px;
  }

  #contact .contact-container .contact-info {
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: unset;
    grid-row-gap: 16px;
    margin-bottom: 16px;
  }

  #contact .contact-container .contact-info .contact-item {
    min-height: unset;
    padding: 24px 21px 32px;
  }

  #contact .contact-container .contact-document {
    flex-direction: column;
    padding: 0 0 32px;
  }

  #contact .contact-container .contact-document.pp-func {
  }

  #contact .contact-container .contact-document > img {
    max-width: unset;
    align-self: center;

    padding: 24px 0 16px;
    width: 261px;
    height: 128px;
  }

  #contact .contact-container .contact-document .contact-document-info {
    padding: 0 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #contact .contact-container .contact-document .contact-document-info > h3 {
    margin-bottom: 24px;
    text-align: center;
  }

  #contact .contact-container .contact-info .contact-item > p {
    font: normal normal normal 15px/26px Noto Sans JP;
  }

  #contact .contact-container .contact-info .contact-item > button,
  #contact
    .contact-container
    .contact-document
    .contact-document-info
    > button {
    margin-top: auto;
    font: normal normal bold 15px/30px Noto Sans JP;
    min-width: 184px;
    min-height: 48px;
  }
  #contact .contact-container .contact-info .contact-item > button.--diff-pad {
    padding: 0 28px 0 21px;
  }

  #contact .contact-container .contact-info .contact-item > button:after,
  #contact
    .contact-container
    .contact-document
    .contact-document-info
    > button:after {
    right: 10px;
    top: calc(50% - 5px);
  }
}

#people-series {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 80px;
  background-color: #ffffff;
}

#people-series > h1 {
  width: 100%;
  text-align: center;
  margin: 48px 0 40px;
  color: #333333;
}

#people-series .people-series-container {
  width: 100%;
  max-width: 1080px;
  display: grid;
  grid-column-gap: 30px;
  grid-template-columns: repeat(2, 1fr);
}

#people-series .people-series-container .people-series-item {
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  display: flex;
  position: relative;
  padding: 32px 20px;
  transition: all 0.5s;
}

#people-series .people-series-container .people-series-item:hover {
  border: #2faecb solid 1px;
  background: #eef5f6 0 0 no-repeat padding-box;
}

#people-series .people-series-container .people-series-item > .lnk-with-arrow {
  position: absolute;
  bottom: 16px;
  right: 33px;
}

#people-series
  .people-series-container
  .people-series-item
  .people-series-item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 26px;
}

#people-series
  .people-series-container
  .people-series-item
  .people-series-item-content
  > p {
  margin: 0;
  font-weight: 500;
  color: #333333;
}

#people-series
  .people-series-container
  .people-series-item
  .people-series-item-content
  > img {
  margin: 0 0 17px;
}

#people-series .pointer {
  cursor: pointer;
}

#people-series .people-series-container .people-series-item img {
  max-height: 108px;
}

@media only screen and (max-width: 425px) {
  #people-series {
    padding: 0 16px 64px;
  }

  #people-series > h1 {
    margin-bottom: 24px;
    font-size: 28px;
  }

  #people-series .people-series-container {
    width: 100%;
    max-width: 1080px;
    display: grid;
    grid-column-gap: unset;
    grid-template-columns: 100%;
    grid-row-gap: 16px;
  }
  #people-series .people-series-container .people-series-item {
    padding: 17px 16px 32px;
    align-items: center;
  }

  #people-series .people-series-container .people-series-item > img {
    max-width: 120px;
    max-height: 70px;
    height: fit-content;
  }

  #people-series
    .people-series-container
    .people-series-item
    .people-series-item-content {
    padding-bottom: 15px;
    padding-left: 16px;
  }

  #people-series
    .people-series-container
    .people-series-item
    .people-series-item-content
    > img {
    margin-bottom: 11px;
    max-height: 12px;
  }

  #people-series
    .people-series-container
    .people-series-item
    .people-series-item-content
    > img.papeople-logo {
    max-height: 22px;
  }

  #people-series
    .people-series-container
    .people-series-item
    .people-series-item-content
    > p {
    font-size: 13px;
  }
}

/* 2025年4月運用追加 */
.us-item-more{
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #0B768D;
  position: absolute;
  bottom: 13px;
  right: 23px;
}
.us-item-more::after{
  width: 9px;
  height: 10px;
  content: "";
  display: inline-block;
  margin-left: 6px;
  background: url(/_images/icon_btn_cadetblue.svg) no-repeat;
  position: absolute;
  top: calc(50% - 4px);
}

@media screen and (min-width: 1024px){
  .us-item-more{
    font-size: 14px;
    bottom: 12px;
    right: 47px;
  }
  .us-item-more::after{
    margin-left: 8px;
  }
}
