/*
$4ewsColor: 
    /*col01: #238561,
  col02: #67a2b7,
  col03: #d2843e,
  col04: #cf775b,
  col05: #cf9942,
  col06: #926c28,
  col07: #cc7175,
  col08: #608ea1,
  col09: #5b609a,
  col10: #487390,
  col11: #4e9386,
  col12: #79a153,
  col13: #817499
);
*/
/**/
.image_box {
  border-radius: 0.6rem;
  overflow: hidden;
}

.general_txt.signature {
  text-align: right;
}
@media screen and (min-width: 769px) {
  .general_txt.signature {
    margin-bottom: 1rem;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .general_txt.signature {
    margin-bottom: 2rem;
    font-size: 2.8rem;
  }
}

.management_list {
  display: grid;
}
@media screen and (min-width: 769px) {
  .management_list {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 4rem;
    row-gap: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .management_list {
    grid-template-columns: 1fr;
    row-gap: 6rem;
  }
}

.management_link {
  display: grid;
  position: relative;
  transition: ease-out 0.6s all;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .management_link {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .management_link {
    grid-template-columns: 30rem 1fr;
    grid-template-rows: auto 1fr;
    column-gap: 4rem;
    row-gap: 2rem;
  }
}
.management_link::after {
  content: "";
  position: absolute;
  background-image: url(../../common/img/icon_zoom.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 769px) {
  .management_link::after {
    width: 3rem;
    height: 3rem;
    right: 0;
    bottom: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .management_link::after {
    width: 6rem;
    height: 6rem;
    left: 34rem;
    bottom: 0;
  }
}
.management_link > dt {
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .management_link > dt {
    margin-top: 1.5rem;
  }
}
.management_link > dt p {
  color: #9d9d9d;
}
@media screen and (min-width: 769px) {
  .management_link > dt p {
    line-height: 1.2em;
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .management_link > dt p {
    line-height: 1.2em;
    font-size: 2rem;
  }
}
.management_link > dt h3 {
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .management_link > dt h3 {
    line-height: 1.5em;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .management_link > dt h3 {
    line-height: 1.5em;
    font-size: 4rem;
  }
}
@media screen and (min-width: 769px) {
  .management_link > dt + dd {
    margin-top: 0.5rem;
    padding-right: 4rem;
  }
}
.management_link > dd {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .management_link > dd:first-of-type {
    grid-row: 1/3;
  }
}
@media screen and (min-width: 769px) {
  .management_link > dd p {
    line-height: 1.429em;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .management_link > dd p {
    line-height: 1.429em;
    font-size: 2.8rem;
  }
}
.management_link:hover {
  opacity: 0.6;
}

.table_area {
  background: #cfcfcf;
  border-collapse: separate;
  border-spacing: 1px;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .table_area {
    line-height: 1.7em;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 768px) {
  .table_area {
    line-height: 1.7em;
    font-size: 3.2rem;
    letter-spacing: 0.05em;
  }
}
.table_area th {
  background: #f7f7f7;
  font-weight: 500;
  text-align: left;
}
@media screen and (min-width: 769px) {
  .table_area th {
    padding: 1.4rem 2rem;
  }
}
@media screen and (max-width: 768px) {
  .table_area th {
    padding: 2rem 3rem;
  }
}
.table_area td {
  background: #fff;
}
@media screen and (min-width: 769px) {
  .table_area td {
    padding: 1.4rem 2rem;
  }
}
@media screen and (max-width: 768px) {
  .table_area td {
    padding: 2rem 3rem;
  }
}
.table_area td a {
  text-decoration: underline;
  color: #0068b2;
  cursor: pointer;
  transition: ease-out 0.6s all;
}
.table_area td a:hover {
  opacity: 0.6;
}
.table_area td small {
  font-size: 0.75em;
}
@media screen and (max-width: 768px) {
  .table_area thead {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .table_area thead th:nth-of-type(1) {
    width: 16.667%;
  }
}
@media screen and (min-width: 769px) {
  .table_area thead th:nth-of-type(2) {
    width: 33.334%;
  }
}
@media screen and (min-width: 769px) {
  .table_area thead th:nth-of-type(3) {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .table_area tbody {
    display: flex;
    flex-direction: column;
    row-gap: 1px;
  }
}
@media screen and (min-width: 769px) {
  .table_area tbody th {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .table_area tbody th {
    grid-column: 1/2;
    display: flex;
    align-items: center;
    font-size: 3rem;
  }
  .table_area tbody th:nth-of-type(2) {
    line-height: 1.667em;
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 769px) {
  .table_area tbody td:first-of-type {
    font-weight: 500;
  }
}
@media screen and (max-width: 768px) {
  .table_area tbody td {
    grid-column: 2/3;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .table_area tbody td:first-of-type {
    background: #f7f7f7;
    grid-column: 1/3;
  }
  .table_area tbody td:nth-of-type(2) {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .table_area tbody tr {
    display: grid;
    grid-template-columns: 27rem 1fr;
    column-gap: 1px;
    row-gap: 1px;
  }
}

.dialog_outer {
  position: fixed;
  inset: 0;
  opacity: 0;
  transition: ease-out 0.4s all;
  pointer-events: none;
  z-index: 999990;
}
.dialog_outer .dialog_bg {
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  inset: 0;
}
.dialog_outer .dialog_inner {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  translate: -100% 0;
  transition: ease-out 0.9s all;
}
@media screen and (min-width: 769px) {
  .dialog_outer .dialog_inner {
    width: 75rem;
  }
}
@media screen and (max-width: 768px) {
  .dialog_outer .dialog_inner {
    width: 100%;
    padding: 0 4rem 0 0;
  }
}
.dialog_outer .dialog_close {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  transition: ease-out 0.6s all;
  z-index: 10;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .dialog_outer .dialog_close {
    row-gap: 1rem;
    width: 2.8rem;
    left: 69.9rem;
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .dialog_outer .dialog_close {
    row-gap: 2rem;
    width: 5.5rem;
    left: 60.5rem;
    font-size: 2rem;
  }
}
.dialog_outer .dialog_close::before {
  content: "";
  display: block;
  background-image: url(../img/management/close.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 57.143%;
  height: 67.742%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .dialog_outer .dialog_close::before {
    width: 1.6rem;
    height: 4.2rem;
  }
}
@media screen and (max-width: 768px) {
  .dialog_outer .dialog_close::before {
    width: 3.2rem;
    height: 8.5rem;
  }
}
.dialog_outer .dialog_close > span {
  white-space: nowrap;
}
.dialog_outer .dialog_close:hover {
  opacity: 0.6;
}
.dialog_outer .dialog_area {
  position: relative;
  background: #fff;
  width: 100%;
  height: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.dialog_outer .dialog_area::-webkit-scrollbar {
  display: none;
}
.dialog_outer .dialog_block {
  display: grid;
  position: relative;
}
@media screen and (min-width: 769px) {
  .dialog_outer .dialog_block {
    grid-template-columns: 30rem 1fr;
    grid-template-rows: 30rem auto;
    column-gap: 4rem;
    row-gap: 4rem;
    padding: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .dialog_outer .dialog_block {
    grid-template-rows: 51rem auto 1fr;
    row-gap: 6rem;
    padding: 6rem 12rem 6rem 6rem;
  }
}
.dialog_outer .dialog_profile {
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
}
@media screen and (max-width: 768px) {
  .dialog_outer .dialog_profile {
    padding: 0 0 2rem;
  }
}
.dialog_outer .dialog_profile > dt {
  display: flex;
}
@media screen and (min-width: 769px) {
  .dialog_outer .dialog_profile > dt {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .dialog_outer .dialog_profile > dt {
    flex-wrap: wrap;
    align-items: center;
    column-gap: 2rem;
  }
}
.dialog_outer .dialog_profile > dt p {
  line-height: 1;
  color: #9d9d9d;
}
@media screen and (min-width: 769px) {
  .dialog_outer .dialog_profile > dt p {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .dialog_outer .dialog_profile > dt p {
    font-size: 2rem;
  }
}
.dialog_outer .dialog_profile > dt h3 {
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .dialog_outer .dialog_profile > dt h3 {
    line-height: 1.5em;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .dialog_outer .dialog_profile > dt h3 {
    order: -5;
    line-height: 1.5em;
    font-size: 4rem;
  }
}
.dialog_outer .dialog_profile > dt h4 {
  font-weight: 400;
}
@media screen and (min-width: 769px) {
  .dialog_outer .dialog_profile > dt h4 {
    margin-top: 1rem;
    line-height: 1.7em;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .dialog_outer .dialog_profile > dt h4 {
    width: 100%;
    line-height: 1.7em;
    font-size: 3.2rem;
  }
}
.dialog_outer .dialog_profile > dd p {
  font-weight: 400;
}
@media screen and (min-width: 769px) {
  .dialog_outer .dialog_profile > dd p {
    line-height: 2em;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .dialog_outer .dialog_profile > dd p {
    line-height: 2em;
    font-size: 2.4rem;
  }
}
.dialog_outer .dialog_detail {
  position: relative;
}
@media screen and (min-width: 769px) {
  .dialog_outer .dialog_detail {
    grid-column: 1/3;
  }
}
.dialog_outer .dialog_detail > dt {
  line-height: 1;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .dialog_outer .dialog_detail > dt {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .dialog_outer .dialog_detail > dt {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 769px) {
  .dialog_outer .dialog_detail > dd {
    padding: 2rem 0 0;
  }
}
@media screen and (max-width: 768px) {
  .dialog_outer .dialog_detail > dd {
    padding: 3rem 0 0;
  }
}
.dialog_outer .dialog_timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) {
  .dialog_outer .dialog_timeline {
    row-gap: 0.5rem;
    padding: 0 0 3rem 6rem;
    line-height: 1.7em;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .dialog_outer .dialog_timeline {
    row-gap: 2.4rem;
    padding: 0 0 4rem 6rem;
    line-height: 1.7em;
    font-size: 2.6rem;
  }
}
.dialog_outer .dialog_timeline::before {
  content: "";
  position: absolute;
  border-left: 1px solid #cfcfcf;
  left: 2rem;
  top: 0;
  bottom: 0;
  pointer-events: none;
}
.dialog_outer .dialog_timeline > li {
  display: flex;
}
@media screen and (min-width: 769px) {
  .dialog_outer .dialog_timeline > li {
    column-gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .dialog_outer .dialog_timeline > li {
    flex-direction: column;
  }
}
.dialog_outer .dialog_timeline > li p:nth-of-type(1) {
  flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .dialog_outer .dialog_timeline > li p:nth-of-type(1) {
    width: 9rem;
  }
}
@media screen and (max-width: 768px) {
  .dialog_outer .dialog_timeline > li p:nth-of-type(1) {
    min-width: 9rem;
  }
}
.dialog_outer .dialog_timeline > li p:nth-of-type(2) {
  width: 100%;
}
.dialog_outer .dialog_career {
  position: relative;
}
@media screen and (min-width: 769px) {
  .dialog_outer .dialog_career {
    padding: 0 0 2rem 6rem;
  }
}
@media screen and (max-width: 768px) {
  .dialog_outer .dialog_career {
    padding: 0 0 3rem 6rem;
  }
}
.dialog_outer .dialog_career::before {
  content: "";
  position: absolute;
  border-left: 1px solid #cfcfcf;
  left: 2rem;
  top: 0;
  bottom: 0;
  pointer-events: none;
}
.dialog_outer .dialog_career > dt {
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .dialog_outer .dialog_career > dt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .dialog_outer .dialog_career > dt {
    font-size: 2.6rem;
  }
}
.dialog_outer .dialog_career > dd {
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) {
  .dialog_outer .dialog_career > dd {
    margin-top: 1rem;
    line-height: 1.7em;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .dialog_outer .dialog_career > dd {
    margin-top: 1.5rem;
    line-height: 1.7em;
    font-size: 2.4rem;
  }
}
.dialog_outer.open {
  opacity: 1;
  transition: none;
  pointer-events: auto;
}
.dialog_outer.open .dialog_inner {
  translate: 0 0;
}