@charset "UTF-8";

:root {
  --sectionPaddingHorizontal: 24px;
  --sectionPaddingVertical: 48px;
}

/*==== COMMON =====================*/

body {
  background-color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
}
.heading01,
.heading02,
.heading03,
.heading04,
.heading05 {
  line-height: 1.4;
}
.heading01 {
  font-family: "Noto Serif JP", serif;
  color: #00467e;
  font-size: 4rem;
  font-weight: 500;
}
.heading01 + * {
  margin-top: 48px;
}
.heading02 {
  padding: 16px 0;
  color: #001c32;
  background-color: #fff;
  font-size: 3.2rem;
  font-weight: 500;
  border-bottom: 1px solid #001c32;
  margin-top: 32px;
}
.heading02 + * {
  margin-top: 32px;
}
.heading03 {
  padding: 16px;
  background-color: #f2f4f5;
  color: #001526;
  font-size: 2.4rem;
  font-weight: 500;
}
.heading03 + * {
  margin-top: 32px;
}
.heading04 {
  padding-bottom: 16px;
  border-bottom: 1px solid #00467e;
  font-size: 2.4rem;
  font-weight: 500;
}
.heading04 + * {
  margin-top: 24px;
}
.heading05 {
  padding-left: 16px;
  font-size: 2rem;
  line-height: 1.4;
  position: relative;
}
.heading05::before {
  content: "";
  display: block;
  width: 2px;
  height: 22px;
  background-color: #00467e;
  position: absolute;
  top: 3px;
  left: 0;
}
.heading05 + * {
  margin-top: 24px;
}
.main p {
  line-height: 1.8;
}
.main strong,
.main .strong,
.main .lead {
  color: #00467e;
  font-weight: 500;
}
.main section {
}
.main section a {
  color: #00467e;
  text-decoration: underline;
}
.pic-single {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 0;
}
.pic-single2 {
  margin-left: auto;
  margin-right: auto;
  padding: 40px 0;
}

.caption,
.caution {
  display: table;
  margin-top: 2rem;
}

.caption > li,
.caution > li {
  display: table-row;
}

.caption > li > div,
.caption > li > small,
.caption > li > span,
.caution > li > div,
.caution > li > small,
.caution > li > span {
  font-size: 1em !important;
  display: table-cell;
  padding: 0.25em 0 0.25em 0.25em;
  vertical-align: top;
}

.caption > li::before,
.caution > li::before {
  display: table-cell;
  padding: 0.25em 0;
  vertical-align: top;
  width: 1%;
  white-space: nowrap;
  content: attr(data-indent-head);
}
.time-stamp {
  text-align: right;
  color: #666;
  font-size: 0.875em;
  margin: 1rem 0;
}

/*==== KV =====================*/
.kv-area {
  height: 348px;
  background-image: url(../img/page/company_kv.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #001c32;
  position: relative;
}
.kv-area__inner {
  /*max-width: var(--globalContentWidth);*/
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--sectionPaddingHorizontal);
  position: relative;
}
.kv-text {
  position: absolute;
  top: 50%;
  left: var(--sectionPaddingHorizontal);
  transform: translate(0, -32%);
}
.page-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  line-height: 1.2;
  gap: 18px;
}
.page-title .main-text {
  padding-bottom: 4px;
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-size: 8rem;
  font-weight: 400;
  position: relative;
}
.page-title .main-text::before {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}
.page-title .sub-text {
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
}

/*====BREADCRUMB=====================*/

.breadcrumb {
  background-color: #001c32;
  margin-bottom: 16px;
}
.breadcrumb__inner {
  /*max-width: var(--globalContentWidth);*/
  margin: 0 auto;
  padding: var(--globalContentPadding);
  padding-top: 16px;
  padding-bottom: 16px;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 0 48px;
}
.breadcrumb__item:not(:first-of-type) {
  position: relative;
}
.breadcrumb__item:not(:first-of-type)::before {
  content: "";
  display: block;
  height: 2px;
  width: 16px;
  background-color: #99b5cb;
  position: absolute;
  top: 50%;
  left: -24px;
  transform: translate(-50%, -50%);
}
.breadcrumb__item,
.breadcrumb__item span,
.breadcrumb__item a {
  color: #fff;
  font-size: 1.4rem;
}
.breadcrumb__item a:hover {
  opacity: 1;
  text-decoration: underline;
}

/*==== CONTENT =====================*/
.section__inner {
  max-width: var(--globalContentWidth);
  margin: 0 auto;
  padding: var(--sectionPaddingVertical) var(--sectionPaddingHorizontal);
}
.heading02 + .content-block {
  margin-top: 48px;
}

.heading02 + .chartWrapper {
  margin-top: 32px !important;
}

.content-block > * + * {
  margin-top: 32px;
}

/*----- list -----*/

.list-disc > li + li,
.list-mark > li + li {
  margin-top: 1em;
}

.list-disc {
  padding-left: 24px;
}
.list-disc > li {
  position: relative;
}
.list-disc > li::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 2px;
  border-radius: 5px;
  background-color: #e00312;
  position: absolute;
  top: 1em;
  left: -8px;
  transform: translate(-100%, -50%);
}

.list-mark {
  padding-left: 2em;
}
.list-mark > li {
  position: relative;
}
.list-mark > li::before {
  content: attr(data-mark);
  font-size: 1em;
  position: absolute;
  top: 0.85em;
  left: -8px;
  transform: translate(-100%, -50%);
}

/*----- table -----*/
table {
  width: 100%;
}
th,
td {
  padding: 1em;
  font-size: 1.6rem;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
th {
  background-color: #001c32;
  color: #fff;
  border-right: 1px solid #ddd;
}
td {
  background-color: #f2f6f9;
  border-right: 1px solid #ddd;
}
tr + tr th,
tr + tr td {
  border-top: 1px solid #ddd;
}
.table-multi thead th {
  text-align: center;
}
.table-multi th + th,
.table-multi td + td,
.table-multi th + td {
  border-left: 1px solid #ddd;
}
.table-single th {
  width: 256px;
}

table.table-single tbody tr td ol {
  padding-left: 20px;
}

table.table-single tbody tr td ul {
  padding-left: 0;
}

table.table-single tbody tr td ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 2px;
}

table.table-single tbody tr td ul li::before {
  content: "•";
  color: #00467e;
  font-size: 2em;
  line-height: 1;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-4px);
}

/*----- page-about -----*/
.page-about .company-history__item {
  display: grid;
  grid-template-columns: 7em 1fr;
  gap: 0.5em 3em;
  padding: 2rem 0;
  border-bottom: 1px solid #ddd;
}

.page-about .company-history__item .date {
  width: 120px;
}

.page-about .section-scheme .pic-scheme01 {
  position: relative;
}
/*.page-about .section-scheme .pic-scheme01::after {
  content: "仕組み図はダミーです";
  aspect-ratio: 8 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background-color: #333;
  color: #fff;
  font-size: 3.2rem;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.4;
}*/

/*ul-sort
----------------------------------------------------------- */
.ul-sort {
  margin-bottom: 2rem;
}
.ul-sort li {
  line-height: 42px;
  height: 42px;
  margin: 0 8px 16px 0;
  display: inline-block;
}
.ul-sort li a {
  vertical-align: text-bottom;
  font-size: 18px;
  text-align: center;
  line-height: 42px;
  height: 42px;
  width: 112px;
  position: relative;
  background-color: #fff;
  color: #333;
  display: inline-block;
  border-style: solid;
  border-width: 1px;
  border-radius: 0;
  border-color: #ddd;
  text-decoration: none;
  transition: 0s all;
}
/* .ul-sort li a:before {
  position: absolute;
  top: 50%;
  left: 15px;
  margin: -3px 0 0;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 4px;
  border-color: transparent transparent transparent #aaa;
}
.ul-sort li a:hover:before {
  border-color: transparent transparent transparent #fff;
} */
.ul-sort li a:hover {
  border-color: transparent;
  text-decoration: none;
  color: #fff;
}
.ul-sort li a.current {
  cursor: default;
  border-color: transparent;
  color: #fff;
}
.ul-sort li a.current:before {
  border-color: transparent transparent transparent #fff;
  opacity: 0.2;
}

/* ul-backnumber
----------------------------------------------------------- */
.ul-backnumber {
  display: flex;
  flex-wrap: wrap;
  clear: both;
  margin: 0 0 25px;
  padding: 0 !important;
  line-height: 1;
}
.ul-backnumber li {
  float: left;
  overflow: hidden;
  margin: 0 0 10px;
  padding: 0 5px;
  border-right: solid 1px #ccc;
}
.ul-backnumber li:first-child {
  border-left: solid 1px #ccc;
}
.ul-backnumber li a {
  display: block;
  padding: 5px 10px;
  text-decoration: none;
}
.ul-backnumber li a.current {
  font-weight: bold;
  text-decoration: none;
}
.ul-backnumber li a:link,
.ul-backnumber li a:visited {
}
.ul-backnumber li a:hover {
}

.ul-sort li a:hover,
.ul-sort li a:hover span,
.ul-sort li a.current {
  background-color: #00a2d9;
} /*#ff000a*/
.ul-sort li.category--1 a:hover,
.ul-sort li.category--1 a:hover span,
.ul-sort li.category--1 a.current {
  background-color: #239e89;
} /*HP更新*/
.ul-sort li.category--2 a:hover,
.ul-sort li.category--2 a:hover span,
.ul-sort li.category--2 a.current {
  background-color: #09366c;
} /*お知らせ*/
.ul-sort li.category--3 a:hover,
.ul-sort li.category--3 a:hover span,
.ul-sort li.category--3 a.current {
  background-color: #7a60cf;
} /*物件*/
.ul-sort li.category--4 a:hover,
.ul-sort li.category--4 a:hover span,
.ul-sort li.category--4 a.current {
  background-color: #f98000;
} /*決算*/
.ul-sort li.category--5 a:hover,
.ul-sort li.category--5 a:hover span,
.ul-sort li.category--5 a.current {
  background-color: #28b070;
} /*借入*/
.ul-sort li.category--6 a:hover,
.ul-sort li.category--6 a:hover span,
.ul-sort li.category--6 a.current {
  background-color: #874a23;
} /*増資*/
.ul-sort li.category--7 a:hover,
.ul-sort li.category--7 a:hover span,
.ul-sort li.category--7 a.current {
  background-color: #a6a69c;
} /*その他*/
.ul-sort li.category--8 a:hover,
.ul-sort li.category--8 a:hover span,
.ul-sort li.category--8 a.current {
  background-color: #99cc6f;
} /*ESG*/

.ic-press1 {
  background-color: #239e89;
} /*お知らせ*/
.ic-press2 {
  background-color: #09366c;
} /*HP更新*/
.ic-press3 {
  background-color: #7a60cf;
} /*物件*/
.ic-press4 {
  background-color: #f98000;
} /*決算*/
.ic-press5 {
  background-color: #28b070;
} /*借入*/
.ic-press6 {
  background-color: #874a23;
} /*増資*/
.ic-press7 {
  background-color: #a6a69c;
} /*その他*/
.ic-press15 {
  background-color: #99cc6f;
} /*ESG*/

/* dl-date
----------------------------------------------------------- */
dl.dl-date {
  clear: both;
}
dl.dl-date dt {
  clear: both;
  float: left;
  margin: 0 0 10px;
  padding: 0 0 10px;
}
dl.dl-date dd {
  border-bottom: dotted 1px #ccc;
  margin: 0 0 10px;
  padding: 0 0 10px 8em;
}
dl.dl-date dd a {
  text-decoration: none;
}

.ic-pdf-s {
  font-size: 1.2rem;
  color: #00467e;
  border: 1px solid #00467e;
  padding: 3px 8px;
  line-height: 1;
  margin-left: 8px;
}

.cont-margin {
  margin-bottom: 40px;
}

.width--150 {
  width: 150px;
}

.height--150 {
  height: 150px;
}

p + table {
  margin-top: 2rem;
}

.section-banner {
  margin-top: 60px;
}
