﻿@charset "utf-8";
/*--------------------------------------------------------------------------------

  base

--------------------------------------------------------------------------------*/
.pc { display: inline; }
.sp { display: none; }
@media (max-width: 760px) {
.pc { display: none; }
.sp { display: inline; }
}


/*--------------------------------------------------------------------------------

  company

--------------------------------------------------------------------------------*/
#company {
}

#company .eyecatch {
  background: #ffffff url("../../assets/img/company/eyecatch.jpg") center center / cover no-repeat;
}


/*--------------------------------------------------------------------------------
  greeting
--------------------------------------------------------------------------------*/
#company .sec-greeting {
  padding: var(--space-2l) 0 0 0;
}

/*
#company .sec-greeting p.catchcopy {
  padding: var(--space-m) 0 0 0;
}
*/
#company .sec-greeting p.catchcopy span {
  display: block;
  font-size: var(--fs-3s) !important;
}

#company .sec-greeting .float-container {
  padding: var(--space-s) 0 0 0;
}

#company .sec-greeting .float-container figure {
  display: inline-block;
  float: right;
  width: calc((100% - var(--space-s)) / 2);
  margin: 0 0 var(--space-s) var(--space-s);
}
#company .sec-greeting .float-container figure img {
  width: 100%;
  height: auto;
  border-radius: var(--rd-q);
}

#company .sec-greeting .float-container > p:nth-of-type(1) {
  padding: 0 !important;
}

@media (max-width: 760px) {
#company .sec-greeting .float-container {
  flex-direction: column;
}

#company .sec-greeting .float-container figure {
  float: none;
  width: 100%;
  margin: 0;
}
#company .sec-greeting .float-container > p:nth-of-type(1) {
  padding: var(--space-s) 0 0 0 !important;
}
}


/*--------------------------------------------------------------------------------
  internal-signage
--------------------------------------------------------------------------------*/
#company .sec-internal-signage {
  padding: var(--space-l) 0 0 0;
}
#company .sec-internal-signage .flex-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  gap: var(--space-l) var(--space-s);
  width: 100%;
  margin: var(--space-m) 0 0 0;
}
#company .sec-internal-signage .flex-container figure {
  width: calc((100% - var(--space-s)) / 2);
}
#company .sec-internal-signage .flex-container figure img {
  width: 100%;
  height: auto;
}

@media (max-width: 760px) {
#company .sec-internal-signage .flex-container {
  flex-direction: column;
}
#company .sec-internal-signage .flex-container figure {
  width: 100%;
}
}

/*--------------------------------------------------------------------------------
  internal-company
--------------------------------------------------------------------------------*/
#company .sec-company {
  padding: var(--space-l) 0 var(--space-2l) 0;
}
#company .sec-company table {
  width: 100%;
  border-top: solid 1px var(--border-color);
  margin-top: var(--space-m);
}
#company .sec-company table colgroup:nth-of-type(1) {
  width: 7em;
}
#company .sec-company table colgroup:nth-of-type(2) {
  width: auto;
}
#company .sec-company table tbody {
}
#company .sec-company table tbody tr {
  border-bottom: solid 1px var(--border-color);
}
#company .sec-company table tbody tr th {
  padding: var(--space-3s) 0;
}
#company .sec-company table tbody tr td {
  padding: var(--space-3s) 0;
}

#company .sec-company table tbody tr td dl.location:not(:first-child) {
  margin: var(--space-3s) 0 0 0;
}
#company .sec-company table tbody tr td dl.location > dt {
}
#company .sec-company table tbody tr td dl.location > dd {
}

#company .sec-company table tbody tr td ul.history {
}
#company .sec-company table tbody tr td ul.history > li {
}
#company .sec-company table tbody tr td ul.history > li > dl {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  column-gap: 1em;
}
#company .sec-company table tbody tr td ul.history > li > dl > dt {
  width: 6.5em;
  font-weight: normal;
}
#company .sec-company table tbody tr td ul.history > li > dl > dd {
  width: calc(100% - 7.5em);
}

@media (max-width: 760px) {
#company .sec-company table,
#company .sec-company table tbody,
#company .sec-company table tbody tr,
#company .sec-company table tbody tr th,
#company .sec-company table tbody tr td {
  display: block;
  width: 100%;
}
#company .sec-company table tbody tr th {
  padding: var(--space-s) 0 0 0;
}
#company .sec-company table tbody tr td {
  padding: var(--space-3s) 0 var(--space-s) 0;
}
}