@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Work+Sans:wght@400;500;600;700;800;900&display=swap");
/*-- リセット --*/
h1,
h2,
h3,
h4,
h5,
p,
b,
dt,
dd,
li,
span,
a,
strong {
  margin: 0;
  padding: 0;
}

img {
  width: auto;
  min-height: 0%;
  vertical-align: top;
  height: auto;
  max-width: 100%;
}

figure {
  width: 100%;
  min-height: 0%;
  line-height: 0;
  margin: 0 auto;
  padding: 0;
}

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

a {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a img {
  display: inline-block;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  background-size: 100%;
  position: relative;
  overflow-x: hidden;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  color: #444;
}

@media only screen and (max-width: 767px) {
  body {
    overflow: hidden;
    overflow-y: scroll;
  }
}
.pc {
  display: block;
}

@media only screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
.tab {
  display: none;
}

@media only screen and (max-width: 1400px) {
  .tab {
    display: block;
  }
}
.sp {
  display: none;
}

@media only screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}
.inline-pc {
  display: inline;
}

@media only screen and (max-width: 767px) {
  .inline-pc {
    display: none;
  }
}
.inline-sp {
  display: none;
}

@media only screen and (max-width: 767px) {
  .inline-sp {
    display: inline;
  }
}
.l-main {
  display: block;
}

@media only screen and (max-width: 767px) {
  .l-main {
    margin-top: 6.5rem;
  }
}
.l-corporate-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 6.5rem;
  background-color: #fff;
  z-index: 10;
}
@media (min-width: 768px) {
  .l-corporate-header {
    height: 10rem;
  }
}
.l-corporate-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2.4rem 1rem;
}
@media (min-width: 768px) {
  .l-corporate-header__inner {
    padding: 3rem 4.6rem;
  }
}
.l-corporate-header__logo {
  width: 14rem;
}
@media (min-width: 768px) {
  .l-corporate-header__logo {
    width: 30rem;
  }
}
.l-corporate-header__menutrigger {
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 50%;
  background: #26BEDE;
  position: fixed;
  right: 1rem;
  top: 1rem;
}
@media (min-width: 768px) {
  .l-corporate-header__menutrigger {
    display: none;
  }
}
.l-corporate-header__menutrigger span {
  position: absolute;
  height: 0.2rem;
  background: #fff;
  display: block;
  left: 25%;
  width: 50%;
}
.l-corporate-header__menutrigger span:first-child {
  top: 30%;
}
.l-corporate-header__menutrigger span:nth-child(2) {
  top: calc(50% - 0.1rem);
}
.l-corporate-header__menutrigger span:last-child {
  bottom: 30%;
}
.l-corporate-header__menutrigger.js-close span:first-child {
  rotate: 40deg;
  top: 47%;
}
.l-corporate-header__menutrigger.js-close span:nth-child(2) {
  opacity: 0;
}
.l-corporate-header__menutrigger.js-close span:last-child {
  rotate: -40deg;
  bottom: 47%;
}
.l-corporate-header__nav {
  display: none;
  position: absolute;
  width: 100%;
  left: 0;
  top: 6.5rem;
  background: #fff;
}
@media (min-width: 768px) {
  .l-corporate-header__nav {
    position: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    opacity: 1;
    width: auto;
  }
}
.l-corporate-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
  font-weight: bold;
  gap: 0rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .l-corporate-header__nav-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 5rem;
  }
}
.l-corporate-header__nav-list a {
  text-decoration: none;
  color: #444;
  display: block;
  padding: 1.5rem;
  text-align: left;
  border-bottom: 0.1rem solid #AFAFAF;
}
@media (min-width: 768px) {
  .l-corporate-header__nav-list a {
    border: none;
    padding: 0;
  }
}
.l-corporate-header__nav-list a:hover {
  opacity: 0.8;
}
.l-corporate-header__nav-contact {
  margin-left: 0;
  margin: 2rem 3rem;
}
@media (min-width: 768px) {
  .l-corporate-header__nav-contact {
    margin: 0;
    margin-left: 5rem;
  }
}
.l-corporate-header__nav-contact_link {
  color: #fff;
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  padding: 1rem 3rem;
  background: #26BEDE;
  border-radius: 4rem;
}
@media (min-width: 768px) {
  .l-corporate-header__nav-contact_link {
    padding: 1rem 5.4rem;
  }
}
.l-corporate-header__nav-contact_link:hover {
  opacity: 0.8;
}

.l-corporate-footer {
  padding: 4rem 0 0;
}
@media (min-width: 768px) {
  .l-corporate-footer {
    padding: 6.7rem 0 0;
  }
}
.l-corporate-footer__inner {
  max-width: 117rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .l-corporate-footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.l-corporate-footer__infor {
  padding: 0 2.7rem;
  text-align: left;
}
@media (min-width: 768px) {
  .l-corporate-footer__infor {
    padding-left: 6.4rem;
  }
}
.l-corporate-footer__title {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .l-corporate-footer__title {
    margin-bottom: 1.7rem;
  }
}
.l-corporate-footer__address {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  margin-bottom: 2rem;
}
.l-corporate-footer__pmark {
  width: 7.6rem;
  margin-bottom: 3.4rem;
}
.l-corporate-footer__sitemap {
  padding: 0 2.7rem;
}
@media (min-width: 768px) {
  .l-corporate-footer__sitemap {
    padding: 0;
  }
}
.l-corporate-footer__sitemap-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .l-corporate-footer__sitemap-list {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 2.5rem;
  }
}
.l-corporate-footer__sitemap-list a {
  color: #444;
}
.l-corporate-footer__sitemap-list + .l-corporate-footer__sitemap-list {
  margin-top: 1.4rem;
}
.l-corporate-footer__contact {
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .l-corporate-footer__contact {
    padding-bottom: 0;
  }
}
.l-corporate-footer__contact_link {
  color: #fff;
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  padding: 1rem 0;
  background: #26BEDE;
  border-radius: 4rem;
  width: 20rem;
  margin-left: 0;
  margin-top: 3.3rem;
}
@media (min-width: 768px) {
  .l-corporate-footer__contact_link {
    margin-right: 0;
    margin-left: auto;
  }
}
.l-corporate-footer__contact_link:hover {
  opacity: 0.8;
}
.l-corporate-footer__copy {
  font-size: 1.2rem;
  background: #A8A8A8;
  color: #fff;
  padding: 2rem 0 3.4rem;
}

main {
  letter-spacing: 0.1rem;
  padding-top: 3rem;
}
@media (min-width: 768px) {
  main {
    padding-top: 0;
  }
}
main.bg-gray {
  background: #f5f5f5;
}

.bg-white {
  background: #fff;
}

@media (min-width: 768px) {
  .l-corporate {
    margin-top: 10rem;
    padding-bottom: 0.1rem;
  }
}
.l-corporate__breadcrumb {
  padding: 2rem 4rem;
  font-size: 1.4rem;
  text-align: left;
  display: none;
}
@media (min-width: 768px) {
  .l-corporate__breadcrumb {
    display: block;
  }
}
.l-corporate__breadcrumb a {
  color: #9cb151;
  text-decoration: none;
}
.l-corporate__breadcrumb span {
  margin: 0 0.8rem;
  color: #999;
}
.l-corporate__inner {
  max-width: 117rem;
  margin: 0 auto;
  padding: 0 3.6rem;
}
.l-corporate__header {
  text-align: center;
  margin-bottom: 4rem;
  margin-top: 6.4rem;
}
@media (min-width: 768px) {
  .l-corporate__header {
    margin-top: 0rem;
  }
  .l-corporate__header--nobreadcrumb {
    margin-top: 16rem;
  }
}
.l-corporate__title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
  padding-top: 2.4rem;
  background: url(/assets/img/common/icon_title.svg) no-repeat center top;
}
.l-corporate__subtitle {
  font-size: 1.2rem;
  color: #999;
}
.l-corporate__mini-title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 1.8rem;
  background: url(/assets/img/common/icon_title.svg) no-repeat left 1.4rem;
  padding-left: 2.4rem;
  text-align: left;
}

.p-news {
  background-color: #f5f5f5;
  padding-bottom: 8rem;
  color: #444;
}
.p-news__wrapper {
  background-color: #fff;
  padding: 3.2rem 2rem;
}
@media (min-width: 768px) {
  .p-news__wrapper {
    padding: 6rem 6rem;
  }
}
.p-news__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-news__item {
  border-bottom: 1px solid #AFAFAF;
}
.p-news__link {
  display: -ms-grid;
  display: grid;
  /* SP版: 日付と矢印が上段、テキストが下段 */
  -ms-grid-columns: 1fr 1.6rem auto;
  grid-template-columns: 1fr auto;
  -ms-grid-rows: auto 1.6rem auto;
      grid-template-areas: "date arrow" "text text";
  gap: 1.6rem 1.6rem;
  padding: 2.4rem 0;
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-news__link:hover {
  opacity: 0.6;
}
@media (min-width: 768px) {
  .p-news__link {
    /* PC版: 日付、テキスト、矢印が横一列 */
    -ms-grid-columns: auto 4rem 1fr 4rem auto;
    grid-template-columns: auto 1fr auto;
        grid-template-areas: "date text arrow";
    gap: 4rem;
    padding: 3.2rem 0;
  }
}
.p-news__date {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: date;
  font-size: 1.8rem;
  color: #666;
  text-align: left;
}
.p-news__text {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: text;
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 0;
  text-align: left;
}
.p-news__arrow {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: arrow;
  width: 4rem;
  height: 4rem;
  background-color: #f5f5f5;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media (min-width: 768px){
  .p-news__date {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .p-news__text {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
  }
  .p-news__arrow {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
}
.p-news__arrow::before {
  content: "";
  width: 1.3rem;
  border-top: 0.2rem solid #444;
  margin-left: -0.2rem;
  position: absolute;
  top: calc(50% - 1px);
}
.p-news__arrow::after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.2rem solid #444;
  border-right: 0.2rem solid #444;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: -0.2rem;
}
.p-news__pagination {
  margin-top: 6rem;
}
.p-news__pagination-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  gap: 0.8rem;
  padding: 0;
}
.p-news__pagination-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  text-decoration: none;
  color: #666;
  font-size: 1.6rem;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.p-news__pagination-link:hover {
  background-color: #f0f0f0;
}
.p-news__pagination-link--current {
  background-color: #25b7d9;
  color: #fff;
}
.p-news__pagination-link--current:hover {
  background-color: #25b7d9;
}
.p-news__pagination-link--prev::after {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-top: 0.2rem solid #666;
  border-right: 0.2rem solid #666;
  -webkit-transform: rotate(-136deg);
          transform: rotate(-136deg);
}
.p-news__pagination-link--next::after {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-top: 0.2rem solid #666;
  border-right: 0.2rem solid #666;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* --------------------------------
 * 個人情報保護方針 (p-privacy)
 * -------------------------------- */
.p-privacy__wrapper {
  background-color: #fff;
  padding: 3.2rem 2rem;
  text-align: left;
}
@media (min-width: 768px) {
  .p-privacy__wrapper {
    padding: 6rem 8rem;
    margin-bottom: 8rem;
  }
}
.p-privacy__h3 {
  font-size: 1.8rem;
  font-weight: bold;
  background-color: #f8f8f8;
  padding: 1.2rem 1.6rem;
  margin: 3.2rem 0 1.6rem;
  text-align: left;
}
.p-privacy__h4 {
  font-size: 1.8rem;
  font-weight: normal;
  border-bottom: 0.1rem solid #AFAFAF;
  padding-bottom: 0.8rem;
  margin-bottom: 0.8rem;
  text-align: left;
}
.p-privacy__text {
  font-size: 1.6rem;
  line-height: 2.125;
  margin-bottom: 5rem;
  text-align: left;
}
.p-privacy__text .--bold {
  font-weight: bold;
}

.p-recruit__inner {
  max-width: 100rem;
  margin: 0 auto;
  text-align: left;
}
.p-recruit__section {
  padding: 0 3.6rem 4rem;
  margin-bottom: 5.4rem;
}
@media (min-width: 768px) {
  .p-recruit__section {
    padding: 0 7.8rem 6rem;
  }
}
.p-recruit__section--cta {
  background: #fff;
  padding: 4rem 3.8rem 4.3rem;
  margin: 0 -3.6rem;
}
@media (min-width: 768px) {
  .p-recruit__section--cta {
    padding: 4rem 12rem 6.4rem;
  }
}
.p-recruit__h2 {
  font-size: 2.4rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 2.4rem;
}
.p-recruit__h2::before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  background-color: #25b7d9;
  display: inline-block;
  -webkit-box-shadow: 2px 2px 0 #fff inset, -2px -2px 0 #fff inset;
          box-shadow: 2px 2px 0 #fff inset, -2px -2px 0 #fff inset;
  mask: conic-gradient(from 0deg, #000 90deg, transparent 90deg 180deg, #000 180deg 270deg, transparent 270deg);
  -webkit-mask: conic-gradient(from 90deg at 50% 50%, #000 25%, transparent 25%, transparent 50%, #000 50%, #000 75%, transparent 75%);
}
.p-recruit__text {
  font-size: 1.6rem;
  line-height: 2.125;
  margin-bottom: 2.4rem;
  color: #444;
}
.p-recruit__text--center {
  text-align: center;
}
.p-recruit__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
  row-gap: 1.2rem;
  margin-bottom: 3.2rem;
  padding: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .p-recruit__list {
    -ms-grid-columns: (auto)[2];
    grid-template-columns: repeat(2, auto);
    margin-bottom: 6rem;
  }
}
.p-recruit__list--mb0 {
  margin-bottom: 0;
}
.p-recruit__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 1.2rem;
  font-size: 1.6rem;
}
.p-recruit__list-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  background-color: #444;
  color: #fff;
  font-size: 1.4rem;
  font-weight: normal;
  font-family: "Work Sans", sans-serif;
  border-radius: 0.4rem;
}
.p-recruit__btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .p-recruit__btn-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .p-recruit__btn-group--col3 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-recruit__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #25b7d9;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  height: 6.4rem;
  border-radius: 6rem;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  padding: 0 2.4rem;
  position: relative;
}
.p-recruit__btn.--large {
  width: 29.7rem;
  margin: 0 auto;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.p-recruit__btn:hover {
  opacity: 0.8;
}
.p-recruit__btn::before {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 0.1rem;
  background-color: #fff;
  position: absolute;
  right: 3.1rem;
  top: calc(50% - 1px);
}
.p-recruit__btn::after {
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: -2px;
  position: absolute;
  right: 3.1rem;
  top: calc(50% - 0.5rem);
}

/* パートナー募集 職種リスト */
.p-recruit__job-list {
  margin-top: 3.2rem;
  border-top: 1px solid #AFAFAF;
}
.p-recruit__job-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2.4rem 0;
  border-bottom: 1px solid #AFAFAF;
  gap: 1.2rem;
}
@media (min-width: 768px) {
  .p-recruit__job-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 6.7rem;
    padding: 2.8rem 0;
  }
}
.p-recruit__job-role {
  font-size: 1.6rem;
  font-weight: bold;
  color: #444;
  width: 100%;
  line-height: 2;
}
@media (min-width: 768px) {
  .p-recruit__job-role {
    width: 18rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.p-recruit__job-desc {
  font-size: 1.6rem;
  line-height: 2.125;
  color: #444;
  text-align: left;
  letter-spacing: 0.1rem;
}

.p-companytop {
  background-color: #f5f5f5;
}
.p-companytop__mv {
  width: 100%;
  margin: 0 auto;
  height: 30rem;
  overflow: hidden;
  background: #fff;
  padding-bottom: 5rem;
}
.p-companytop__mv img {
  width: 100%;
  max-width: 117rem;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .p-companytop__mv {
    height: 45rem;
  }
}
.p-companytop__section {
  padding: 6rem 0;
}
.p-companytop__section--bgwhite {
  background-color: #fff;
  padding-bottom: 11rem;
}
.p-companytop__h2 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 2.2rem;
  text-align: left;
  padding-left: 2.4rem;
  position: relative;
}
@media (min-width: 768px) {
  .p-companytop__h2 {
    font-size: 2.8rem;
  }
}
.p-companytop__h2--news {
  max-width: 104rem;
  margin: 0 3.6rem 2.2rem;
}
@media (min-width: 768px) {
  .p-companytop__h2--news {
    margin: 0 auto 2.2rem;
  }
}
.p-companytop__h2::before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  background: url(/assets/img/common/icon_title.svg) no-repeat left 0rem;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 1.2rem;
}
@media (min-width: 768px) {
  .p-companytop__h2::before {
    top: 1.5rem;
  }
}
.p-companytop__text {
  font-size: 1.6rem;
  line-height: 2.125;
  margin-bottom: 3.2rem;
  text-align: left;
}
.p-companytop__text--center {
  text-align: center;
}
.p-companytop__lead {
  font-size: 2.1rem;
  line-height: 2.125;
  margin-bottom: 3.2rem;
  text-align: left;
  font-weight: bold;
}
.p-companytop__lead--center {
  text-align: center;
}
.p-companytop__diagram {
  max-width: 60rem;
  margin: 4rem auto 6rem;
}
.p-companytop__diagram img {
  width: 100%;
}
.p-companytop__panels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  margin-bottom: 3.9rem;
  padding: 0 3.6rem;
}
@media (min-width: 768px) {
  .p-companytop__panels {
    gap: 4rem;
    max-width: 110rem;
    padding: 0;
    margin: 0 auto;
    margin-bottom: 6rem;
  }
}
.p-companytop__panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  color: #fff;
}
@media (min-width: 768px) {
  .p-companytop__panel {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.p-companytop__panel-body {
  padding: 4rem 2rem;
  text-align: left;
}
@media (min-width: 768px) {
  .p-companytop__panel-body {
    padding: 5rem 6rem 1rem 8rem;
    width: 68rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media (min-width: 768px) {
  .p-companytop__panel-body--media {
    padding: 5rem 8rem 0 4rem;
  }
}
.p-companytop__panel-ttl {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  line-height: 1.9047619048;
}
.p-companytop__panel-img {
  width: 100%;
}
@media (min-width: 768px) {
  .p-companytop__panel-img {
    width: 42rem;
  }
}
.p-companytop__panel-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-companytop__panel--research {
  background-color: #003366;
}
.p-companytop__panel--media {
  background-color: #0099ff;
}
@media (min-width: 768px) {
  .p-companytop__panel--media {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.p-companytop__panel--solution {
  background-color: #99e6ff;
  color: #444;
}
.p-companytop__panel--solution .p-companytop__list-num {
  background-color: #444;
}
.p-companytop__panel--solution .p-companytop__link {
  color: #444;
}
.p-companytop__list {
  margin-bottom: 0;
  display: -ms-grid;
  display: grid;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
@media (min-width: 768px) {
  .p-companytop__list {
    -ms-grid-columns: auto 3rem auto;
    grid-template-columns: repeat(2, auto);
    gap: 0rem 3rem;
    margin-bottom: 1.2rem;
  }
}
.p-companytop__list--media {
  -ms-grid-columns: auto;
  grid-template-columns: repeat(1, auto);
  gap: 0;
}
@media (min-width: 768px) {
  .p-companytop__list--media {
    gap: 1.4rem;
  }
}
.p-companytop__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.2rem;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
}
.p-companytop__list-item--link {
  color: #fff;
  background: url(/assets/img/company/ic_arrow.svg) no-repeat right center;
  background-size: 2.3rem;
  padding-right: 3rem;
}
.p-companytop__list-item--link_large {
  color: #fff;
  background: url(/assets/img/company/ic_arrow.svg) no-repeat right center;
  background-size: 3.6rem;
  padding-right: 5rem;
  margin-bottom: 0;
  padding: 1rem 5rem 1rem 0;
}
.p-companytop__list-num {
  width: 2.8rem;
  height: 2.8rem;
  background-color: #fff;
  color: #444;
  font-size: 1.4rem;
  font-family: work sans, sans-serif;
  font-weight: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0.4rem;
}
.p-companytop__list-num--solution {
  color: #fff;
}
.p-companytop__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding: 1rem 5rem 1rem 0;
  margin-right: 0;
  margin-left: auto;
  display: block;
}
.p-companytop__link:hover {
  opacity: 0.8;
}
.p-companytop__link::before {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 1.8rem);
  background: url(/assets/img/company/ic_arrow.svg) no-repeat center;
  background-size: contain;
  width: 3.6rem;
  height: 3.6rem;
}
.p-companytop__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 4rem;
}
.p-companytop__btn {
  background-color: #25b7d9;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  height: auto;
  border-radius: 8rem;
  text-decoration: none;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .p-companytop__btn {
    height: 6.4rem;
    padding: 0 4rem;
  }
}
.p-companytop__btn:hover {
  opacity: 0.8;
}
.p-companytop__btn--large {
  width: 64rem;
  max-width: 100%;
}
.p-companytop__btn span {
  display: block;
  width: 100%;
  position: relative;
  padding-right: 3rem;
}
.p-companytop__btn span::before {
  content: "";
  position: absolute;
  right: 0;
  width: 1.4rem;
  height: 1px;
  background: #fff;
  top: 50%;
}
.p-companytop__btn span::after {
  content: "";
  position: absolute;
  right: 0;
  width: 0.7rem;
  height: 0.7rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: calc(50% - 0.4rem);
}
.p-companytop__news-list {
  max-width: 117rem;
  margin: 0 3.6rem;
  background: #fff;
  padding: 2rem 2rem 5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 768px) {
  .p-companytop__news-list {
    margin: 0 auto;
    padding: 6rem;
  }
}

.p-company__greet {
  background: #f5f5f5;
  padding: 5.6rem 3.6rem 6rem;
  margin-bottom: 7rem;
}
@media (min-width: 768px) {
  .p-company__greet {
    padding: 7.1rem 10rem 6rem;
  }
}
.p-company__greet-inner {
  margin: 0 auto;
  gap: 3rem;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .p-company__greet-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 117rem;
    gap: 3.8rem;
  }
}
.p-company__greet-thumb {
  width: 100%;
}
@media (min-width: 768px) {
  .p-company__greet-thumb {
    width: 29rem;
  }
}
.p-company__greet-name {
  font-size: 2rem;
  margin-top: 1.7rem;
  line-height: 2;
}
.p-company__greet-text {
  font-size: 1.6rem;
  line-height: 2.125;
  color: #444;
  width: 100%;
}
@media (min-width: 768px) {
  .p-company__greet-text {
    width: calc(100% - 32.8rem);
  }
}
.p-company__infor {
  max-width: 117rem;
  margin: 0 auto;
  padding: 0 3.6rem;
}
@media (min-width: 768px) {
  .p-company__infor {
    padding: 0;
  }
}
.p-company__infor-table {
  font-size: 1.6rem;
  line-height: 2.125;
  text-align: left;
  border-spacing: 0;
  margin-bottom: 7.8rem;
}
.p-company__infor-table th, .p-company__infor-table td {
  border-bottom: 0.1rem solid #AFAFAF;
  padding: 2.5rem 0;
  font-weight: normal;
  vertical-align: top;
}
.p-company__infor-table th {
  width: 8em;
}
@media (min-width: 768px) {
  .p-company__infor-table th {
    width: 19rem;
  }
}
.p-company__map {
  width: 100%;
  margin: 0 auto 13rem;
  padding: 0 3.6rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 768px) {
  .p-company__map {
    padding: 0 0;
    width: 84.6rem;
  }
}
.p-company__map iframe {
  aspect-ratio: 846/530;
}