@charset "UTF-8";
/* ==========================================================================
   variables
========================================================================== */
/*===========================================
# Color
/*===========================================*/
/*===========================================
# Font Famiry
/*===========================================*/
/*===========================================
# root
/*===========================================*/
/* ==========================================================================
   function
========================================================================== */
/* ==========================================================================
  mixin
========================================================================== */
/* --------------------------------------------------------------------------
  media query (SP（小）→ PC（大）の順に適用)
-------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
  arrow 
-------------------------------------------------------------------------- */
/*# アロー
/*===========================================*/
/* --------------------------------------------------------------------------
  login icon
-------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
  button size
-------------------------------------------------------------------------- */
/* ==========================================================================
  company
========================================================================== */
.p-company__hero img {
  width: 100%;
  height: auto;
}

.p-company-menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .p-company-menu-list {
    grid-template-columns: 1fr;
    gap: 2.6666666667vw;
  }
}
.p-company-menu-list .c-more-list__item {
  width: 100% !important;
  height: auto;
}
.p-company-menu-list .c-more-list__image--no_shodow::before {
  display: none;
}
.p-company-menu-list .c-more-list__image::before {
  background: linear-gradient(180deg, var(--Border-gray, rgba(44, 45, 49, 0.06)) 0%, var(--Main-black, rgba(44, 45, 49, 0.3)) 100%);
}

/* ==========================================================================
データで見るウエットマスター
========================================================================== */
.p-data-title {
  color: #0089A8;
}

.p-data-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .p-data-2col {
    width: 100%;
    grid-template-columns: 1fr;
  }
}

.p-data-2col__item {
  background-color: #F7F5F1;
  background-size: auto;
  background-position: top 55px right 55px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .p-data-2col__item {
    background-size: 30%;
    background-position: top 9.3333333333vw right 6.6666666667vw;
  }
}
.p-data-2col__item:nth-child(1) {
  background-image: url("../../assets/img/company/data/data-graph_01.svg");
}
.p-data-2col__item:nth-child(2) {
  background-image: url("../../assets/img/company/data/data-graph_02.svg");
}

.p-data-2col__item-inner {
  padding: 55px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-data-2col__item-inner {
    padding: 5.3333333333vw;
  }
}

.p-data-2col__item-subtitle {
  color: #0089A8;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.p-data-2col__item-number {
  font-family: "Alumni Sans", sans-serif;
  font-size: 140px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-data-2col__item-number {
    font-size: 21.3333333333vw;
  }
}

.p-data-1col {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.p-data-1col__item-title {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-data-1col__item-title {
    text-align: left;
  }
}

.p-data__item-inner {
  background-color: #F7F5F1;
  padding: 55px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-data__item-inner {
    width: 100%;
    padding: 5.3333333333vw;
  }
}

.p-data-1col__item-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 60px;
  padding: 0 50px;
}
@media screen and (max-width: 767px) {
  .p-data-1col__item-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0;
  }
}

.p-data-1col__item-graph {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-data-1col__item-graph {
    width: 80%;
    height: auto;
    margin-top: 2.6666666667vw;
    margin-inline: auto;
  }
}

.p-data-1col__item-list-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
}
@media screen and (max-width: 767px) {
  .p-data-1col__item-list-inner {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 1.3333333333vw;
  }
}

.p-data-1col__item-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-data-1col__item-list li {
    width: auto;
  }
}
.p-data-1col__item-list li div {
  font-size: 31px;
  font-weight: bold;
  font-family: "Alumni Sans", sans-serif;
  color: #0089A8;
}
.p-data-1col__item-list li div span {
  font-size: 17px;
  font-family: "Noto Sans JP", sans-serif;
}

.p-data-1col__item-dotline {
  content: "";
  width: 100%;
  display: inline-block;
  background: repeating-linear-gradient(to right, #0089A8 0, #0089A8 2px, transparent 2px, transparent 5px);
  height: 1px;
}

.p-data-4col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media screen and (min-width: 980px) {
  .p-data-4col {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-data-4col {
    grid-template-columns: 1fr;
    gap: 1.3333333333vw;
  }
}

.p-data-4col__item {
  display: flex;
  align-items: center;
  background-color: #F7F5F1;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-data-4col__item {
    width: 100%;
    gap: 1.3333333333vw;
  }
}

.p-data-4col__item-inner {
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .p-data-4col__item-inner {
    padding: 5.3333333333vw;
  }
}

.p-data-4col__item-subtitle {
  color: #0089A8;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 28px;
}

.p-data-4col__item-number {
  font-family: "Alumni Sans", sans-serif;
  font-size: 60px;
  font-weight: bold;
}

.p-data-4col__caption {
  color: #0089A8;
  font-size: 13px;
  margin-top: 10px;
}

.p-data-3col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media screen and (min-width: 980px) {
  .p-data-3col {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-data-3col {
    grid-template-columns: 1fr;
  }
}

.p-data-3col__item {
  display: flex;
  background-color: #F7F5F1;
  height: 100%;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .p-data-3col__item {
    padding: 5.3333333333vw;
  }
}
.p-data-3col__item img {
  margin-top: 24px;
  margin-bottom: 24px;
  width: auto;
  height: 153px;
}

.p-data-3col__item-inner {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-data-3col__item-inner .u-ts-cap {
    font-size: 13px;
  }
}

.p-data-3col__item-subtitle {
  color: #0089A8;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 28px;
}

.p-data-3col__item-number {
  font-family: "Alumni Sans", sans-serif;
  font-size: 80px;
  font-weight: bold;
}
.p-data-3col__item-number2 {
  font-size: 54px;
  line-height: 1.5;
}

.p-data-3col__item-caption {
  font-size: 13px;
  font-weight: normal;
  color: #0089A8;
}

/* ==========================================================================
    環境・品質ISOへの取り組み
========================================================================== */
.p-environment-guidelines {
  display: grid;
  grid-template-columns: auto 1fr;
}
.p-environment-guidelines dt {
  font-weight: bold;
  color: #0089A8;
  margin-right: 10px;
}
.p-environment-guidelines dd {
  margin-bottom: 10px;
}

.p-environment-guidelines__sign {
  text-align: right;
}

.p-environment-list dl {
  grid-template-columns: 300px 1fr;
}
@media screen and (max-width: 767px) {
  .p-environment-list dl {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
  事業拠点一覧
========================================================================== */
.p-company-head-address,
.u-ts-p.p-company-branch-address {
  font-weight: bold;
}

.p-company-head-office__2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .p-company-head-office__2col {
    display: flex;
    flex-direction: column-reverse;
  }
}

.p-company-head-office__2col_right iframe {
  width: 100%;
  height: 500px;
  border: 0;
}
@media screen and (max-width: 767px) {
  .p-company-head-office__2col_right iframe {
    height: 80vw;
  }
}

.p-company-head-office__contact dl {
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 767px) {
  .p-company-head-office__contact dl {
    grid-template-columns: 1fr;
  }
}
.p-company-head-office__contact dl dt, .p-company-head-office__contact dl dd {
  padding: 20px 16px;
}
@media screen and (max-width: 767px) {
  .p-company-head-office__contact dl dt, .p-company-head-office__contact dl dd {
    padding: 2.6666666667vw 2.1333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-company-head-office__contact dl dt {
    line-height: 1.5;
  }
}

.p-company-branch-office__3col {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .p-company-branch-office__3col {
    grid-template-columns: 1fr;
    gap: 13.3333333333vw;
  }
}

.p-company-branch-office__map iframe {
  width: 100%;
  height: 280px;
  border: 0;
}
@media screen and (max-width: 767px) {
  .p-company-branch-office__map iframe {
    height: 80vw;
  }
}

/* ==========================================================================
代表挨拶/企業理念
========================================================================== */
.p-greeting-message__wrap {
  display: grid;
  grid-template-columns: 700px auto;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .p-greeting-message__wrap {
    grid-template-columns: 1fr;
  }
}

.p-greeting-message__right img {
  width: 100%;
  height: auto;
}

.p-greeting-message__sign {
  width: 100%;
  text-align: right;
}
.p-greeting-message__sign img {
  width: 207px;
  height: auto;
}

.p-greeting-message__left :nth-last-child(2) {
  margin-bottom: 0;
}

/* ==========================================================================
    会社概要
========================================================================== */
.p-overview-list dt {
  display: flex;
  height: 100%;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-overview-list dt {
    display: block;
    height: auto;
  }
}
.p-overview-list dl {
  grid-template-columns: 400px 1fr;
}
@media screen and (max-width: 767px) {
  .p-overview-list dl {
    grid-template-columns: 1fr;
  }
}
.p-overview-list a {
  font-weight: bold;
  color: #0089A8;
  text-decoration: underline;
}
.p-overview-list ul {
  list-style: disc;
  padding-left: 20px;
}

/* ==========================================================================
  施設情報
========================================================================== */
.p-company-r_and_d__2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.p-company-r_and_d__2col_img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .p-company-r_and_d__2col_img {
    grid-template-columns: 1fr;
    gap: 2.6666666667vw;
  }
}
.p-company-r_and_d__2col_left, .p-company-r_and_d__2col_right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.p-company-r_and_d__2col img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-company-r_and_d__2col {
    display: flex;
    flex-direction: column;
    gap: 6.4vw;
  }
}
.p-company-r_and_d__2col .u-ts-p {
  height: 100%;
}

.p-company-r_and_d-list a {
  font-weight: bold;
  color: #0089A8;
  text-decoration: underline;
}

.p-company-r_and_d__movie1 {
  width: 100%;
  aspect-ratio: 16/9;
}
.p-company-r_and_d__movie1 iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
  沿革
========================================================================== */
.p-history__wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}
.p-history__wrap > ::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 3px);
  width: 6px;
  height: 100%;
  background-color: #D5D5D6;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-history__wrap > ::before {
    width: 1vw;
    left: calc(50% - 0.5vw);
  }
}

.p-history__index {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .p-history__index {
    gap: 5.3333333333vw;
  }
}

.p-history__index-left,
.p-history__index-right {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: solid 1px;
  padding: 12px;
}
@media screen and (max-width: 767px) {
  .p-history__index-left,
  .p-history__index-right {
    padding: 9px 10px;
    font-size: 3.2vw !important;
  }
}

.p-history__index-left {
  border-color: #0089A8;
  color: #0089A8;
}

.p-history__index-right {
  border-color: #00A2B4;
  color: #00A2B4;
}

.p-history__year {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}
.p-history__year span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 42px;
  padding-bottom: 2px;
  border-radius: 21px;
  background-color: #0089A8;
  text-align: center;
  font-weight: bold;
  color: #fff;
}

.p-history__year-wrap {
  position: relative;
}

.p-history__year-back {
  position: absolute;
  width: 100%;
  top: -140px;
  z-index: -1;
  text-align: center;
  font-family: "Alumni Sans", sans-serif;
  font-size: 320px;
  color: rgba(0, 137, 168, 0.1);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-history__year-back {
    font-size: 55vw;
    top: -26.6666666667vw;
  }
}

.p-history__formation {
  display: grid;
  grid-template-columns: 1fr;
  background-color: #EBF6F8;
  padding: 12px;
  margin-top: 24px;
  margin-bottom: 32px;
}
.p-history__formation dl {
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .p-history__formation dl {
    flex-direction: column;
    gap: 0;
    padding: 0 4vw;
  }
}
.p-history__formation dt {
  color: #0089A8;
  font-weight: bold;
}

.p-history__episode-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .p-history__episode-wrap {
    margin-top: 5.3333333333vw;
  }
}

.p-history__episode-right,
.p-history__episode-left {
  position: relative;
  display: grid;
  border-bottom: 2px solid;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .p-history__episode-right,
  .p-history__episode-left {
    margin-bottom: 5.3333333333vw;
  }
}
.p-history__episode-right > ::after,
.p-history__episode-left > ::after {
  position: absolute;
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  bottom: -7px;
}
.p-history__episode-right dt,
.p-history__episode-left dt {
  color: #0089A8;
}
.p-history__episode-right dd,
.p-history__episode-left dd {
  margin-bottom: 2px;
}

.p-history__episode-left {
  grid-column: 1;
  border-color: #0089A8;
  padding-right: 20px;
}
@media screen and (max-width: 767px) {
  .p-history__episode-left {
    padding-right: 1.3333333333vw;
  }
}
.p-history__episode-left > ::after {
  right: -6px;
  background-color: #0089A8;
}

.p-history__episode-right {
  grid-column: 2;
  text-align: right;
  border-color: #00ADC1;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .p-history__episode-right {
    padding-left: 2.6666666667vw;
  }
}
.p-history__episode-right > ::after {
  left: -6px;
  background-color: #00ADC1;
}
.p-history__episode-right dt {
  color: #00A2B4;
}

/* ==========================================================================
ウエットマスターの強み
========================================================================== */
.p-advantage__img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-advantage__img {
    width: 100%;
    margin-top: 13.3333333333vw;
  }
}

.p-advantage__text-a,
.p-advantage__text-b,
.p-advantage__text-c,
.p-advantage__text-d {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-advantage__text-a,
  .p-advantage__text-b,
  .p-advantage__text-c,
  .p-advantage__text-d {
    display: block;
    margin-bottom: 13.3333333333vw;
  }
}

.p-advantage__text-left {
  width: 480px;
}
@media screen and (max-width: 767px) {
  .p-advantage__text-left {
    width: 100%;
    margin-bottom: 8vw;
  }
}

.p-advantage__text-right {
  width: 680px;
}
@media screen and (max-width: 767px) {
  .p-advantage__text-right {
    width: 100%;
  }
}

.p-advantage__text-a {
  flex-direction: row;
}

.p-advantage__text-b,
.p-advantage__text-d {
  flex-direction: row-reverse;
}
.p-advantage__text-b .p-advantage__text-left,
.p-advantage__text-d .p-advantage__text-left {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-advantage__text-b .p-advantage__text-left,
  .p-advantage__text-d .p-advantage__text-left {
    text-align: left;
  }
}

.p-advantage__text-c .p-advantage__text-left {
  width: 440px;
}
@media screen and (max-width: 767px) {
  .p-advantage__text-c .p-advantage__text-left {
    width: 100%;
  }
}
.p-advantage__text-c .p-advantage__text-right {
  width: 720px;
}
@media screen and (max-width: 767px) {
  .p-advantage__text-c .p-advantage__text-right {
    width: 100%;
  }
}

.p-advantage__text-d .p-advantage__text-left {
  width: 400px;
}
@media screen and (max-width: 767px) {
  .p-advantage__text-d .p-advantage__text-left {
    width: 100%;
  }
}
.p-advantage__text-d .p-advantage__text-right {
  width: 760px;
}
@media screen and (max-width: 767px) {
  .p-advantage__text-d .p-advantage__text-right {
    width: 100%;
  }
}

.p-advantage__map-wrap {
  display: grid;
  grid-template-columns: 320px auto;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-advantage__map-wrap {
    grid-template-columns: 100%;
  }
}
.p-advantage__map-wrap .c-button-black a {
  width: 100%;
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .c-button-black a {
    width: 100%;
    padding-left: 1.3333333333vw;
    padding-right: 1.3333333333vw;
    margin-bottom: 1.3333333333vw;
  }
}
/*# sourceMappingURL=maps/company.css.map */