@charset "utf-8";

/* CSS Document */

/***********
pageHeading
************/

.pageHeading {
  position: relative;
  overflow: hidden;
  padding-left: var(--side-padding);
  margin-top: var(--header-height);
}

.pageHeading-container {
  width: 100%;
  height: 100%;
  background: url(../../img/pagevisual01.jpg) no-repeat right center / cover ;
  background-color: #060b30;
  font-size: clamp(18px,1.2vw, 32px);
  padding-left: calc(var(--side-padding) + 3em);
  height: 12em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pageHeading-title {
  display: inline-block;
  font-weight: 700;
  font-size: 200%;
  font-feature-settings: "palt";
  color: var(--color-base);
  position: relative;
}
.pageHeading-title::after {
  content: "";
  display: block;
  width: 3em;
  height: 2px;
  background-color: var(--color-base);
  position: absolute;
  top: 50%;
  left: calc(100% + 0.5em);
  z-index: 9;
  scale: 0 1;
  transform-origin: left;
  transition: scale 0.4s cubic-bezier(0.5, 1, 0.89, 1) 0.1s;
}
body.is-loaded .pageHeading-title::after {
  scale: 1 1;
}

@media screen and (max-width:834px) {

  .pageHeading {
    padding-left: 0;
    margin-top: var(--header-height);
  }

  .pageHeading-container {
    font-size: clamp(18px,3.4vw, 32px);
    padding-left: calc(var(--side-padding) + 3em);
    height: 8em;
    padding-left: 3vw;
    background-position: left center;
  }

  .pageHeading-title {
    display: inline-block;
    font-weight: 700;
    font-size: 120%;
    font-feature-settings: "palt";
    color: var(--color-base);
    position: relative;
  }
  .pageHeading-title::after {
    content: "";
    display: block;
    width: 3em;
    height: 2px;
    background-color: var(--color-base);
    position: absolute;
    top: 50%;
    left: calc(100% + 0.5em);
    z-index: 9;
    scale: 0 1;
    transform-origin: left;
    transition: scale 0.4s cubic-bezier(0.5, 1, 0.89, 1) 0.1s;
  }
  body.is-loaded .pageHeading-title::after {
    scale: 1 1;
  }
}

/***********
box
************/

.box {
  border: 2px solid var(--color-sub03);
  padding: min(7vw,2em) min(4vw,3em);
}

/***********
pagination
************/

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: min(12vw,8em);
  padding-bottom: 2em;
}

.pagination:empty {
  display: none;
}

.pagination span,
.pagination a {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 2.5em;
  height: 3em;
  color: var(--color-brand01);
  text-decoration: none;
  text-align: center;
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  font-size: 1.1rem;
  margin: 0 5px;
}
.pagination a {
  background-color: var(--color-base);
  box-shadow: 0 0 0 1px var(--color-brand01) inset ;
}
.pagination a.prev ,
.pagination a.next {
  box-shadow: none;
  background-color: transparent;
}
.pagination span.dots{
  border-color: transparent;
}
body.is-pc .pagination a:hover ,
.pagination span:not(.dots){
  background-color: var(--color-brand01);
  color: var(--color-base);
  box-shadow: 0 0 0 1px var(--color-brand01) inset ;
}

.pagination a.prev,
.pagination a.next{
}

@media screen and (max-width:834px) {

  .pagination {
    padding-top: 3em;
    margin-left: -4vw;
    margin-right: -4vw;
  }
  .pagination span,
  .pagination a {
    margin: 0 1px 2px;
    font-size: 1rem;
  }
}


/***********
article
************/

.article {
}

.article-heading {
  position: relative;
  margin-bottom: 3em;
}
.article-inner {
}

.article-heading-data {
  display: flex;
  align-items: center;
  padding-bottom: 1em;
}
.article-heading-time {
  display: inline-block;
  width: 6em;
  white-space: nowrap;
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
}
.article-heading-cat {
  display: inline-block;
  min-width: 5em;
  padding: 0.3em 1em;
  margin: 3px;
  color: var(--color-base);
  background-color: var(--color-brand02);
  border-radius: 3px;
  font-weight: 400;
  font-size: 85%;
  font-feature-settings: "palt";
  text-align: center;
  white-space: nowrap;
}

.article-heading-title {
  font-weight: 700;
  font-size: 1.6rem;
}

@media screen and (max-width:834px) {

  .article-heading-time {
    width: 6em;
    font-size: 0.85rem;
  }
  .article-heading-cat {
    padding: 0.1em 1em;
  }
  .article-heading-title {
    font-size: 1.2rem;
  }

}


/***********
post
************/

.post {
  font-size: 0.9rem;
}

.post p:not([class]) {
  line-height: 2;
}
.post p:not([class]) + p {
  padding-top: 1em;
}

.post h2:not([class]) {
  font-size: 1.4rem;
  margin: 2.5em 0 1em 0;
  padding: 0.5em 1em;
  line-height: 1.4;
  background-color: var(--color-brand01);
  color: var(--color-base);
  border-radius: 5px;
}

.post h3:not([class]) {
  font-size: 1.4rem;
  margin: 2.5em 0 1em 0;
  padding-bottom: 0.5em;
  border-bottom: 1px solid var(--color-brand01);
}

.post h4:not([class]) {
  font-size: 1.2rem;
  margin: 2em 0 1em 0;
  border-left: 4px solid var(--color-brand01);
  padding: 0.5em 0em 0.5em 1em;
}

.post h5:not([class]) {
  font-size: 1.1rem;
  margin: 2em 0 0.5em 0;
  padding-left: 1em;
  position: relative;
}
.post h5:not([class])::before {
  content: "";
  display: block;
  width: 0.3em;
  height: 0.3em;
  background-color: var(--color-base);
  box-shadow: 0 0 0 0.2em var(--color-brand01);
  position: absolute;
  left: 0;
  top: 0.6em;
  border-radius: 50%;
}

.post h6:not([class]) {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 2em 0 0.5em 0;
}


.post img {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
.post img[src$="jpg"],
.post img[src$="jpeg"] {
}

.post blockquote:not([class]) {
  background-color: var(--color-sub01);
  padding: min(5vw,4em) min(4vw,6%);
  margin: 2em 0;
}
.post blockquote:not([class]) h2:first-child,
.post blockquote:not([class]) h3:first-child,
.post blockquote:not([class]) h4:first-child,
.post blockquote:not([class]) h5:first-child{
  margin-top: 0;
}

.post table:not([class]) {
  width: 100%;
  border: 1px solid var(--color-sub02);
}

.post table:not([class]) thead th{
  border: 1px solid var(--color-sub02);
  padding: 1em 1.5em;
  text-align: center;
  font-weight: 500;
  line-height: 1.8;
  background-color: var(--color-brand01);
  color: var(--color-base);
}
.post table:not([class]) thead td {
  border: 1px solid var(--color-sub02);
  padding: 1em 0.8em;
  text-align: center;
  line-height: 1.8;
  background-color: var(--color-sub01);
}

.post table:not([class]) tbody th {
  border: 1px solid var(--color-sub02);
  padding: 1em 1.5em;
  text-align: left;
  font-weight: 500;
  vertical-align: top;
  line-height: 1.8;
  background-color: var(--color-sub01);
}

.post table:not([class]) tbody td {
  border: 1px solid var(--color-sub02);
  padding: 1em 1.5em;
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
}

.post ul:not([class]){
  line-height: 1.8;
  list-style: disc;
  margin-left: 1.8em;
  padding: 1em 0;
}
.post ol:not([class]){
  line-height: 1.8;
  list-style: decimal;
  margin-left: 1.8em;
  padding: 1em 0;
}
.post ol:not([class]) li{
  padding-left: 0.5em;
}

/*
youtube比率対策
*/

.post iframe[src*="youtube"] {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.post table:not([class]) p:not([class]) {
  font-size: 100%;
}

@media screen and (max-width:834px) {

  .post p:not([class]) {
    line-height: 1.8;
  }

  .post h2:not([class]) {
    font-size: 1.25rem;
  }

  .post h3:not([class]) {
    font-size: 1.2rem;
  }

  .post h4:not([class]) {
    font-size: 1.15rem;
  }

  .post h5:not([class]) {
    font-size: 1rem;
  }

  .post h6:not([class]) {
    font-size: 1rem;
  }

  .post table:not([class]) {
    font-size: 0.9rem;
  }
  .post table:not([class]) thead th,
  .post table:not([class]) tbody th ,
  .post table:not([class]) tbody td {
    padding: 0.8em;
  }

}

.post > *:first-child,
.post blockquote > *:first-child{
  margin-top: 0 !important;
}

.post *[class^="l-"] img:not([class]){
  padding-bottom: 0 !important;
}

.post h2 + ul,
.post h3 + ul,
.post h4 + ul,
.post h5 + ul,
.post h6 + ul,
.post h2 + ol,
.post h3 + ol,
.post h4 + ol,
.post h5 + ol,
.post h6 + ol{
  padding-top: 0 !important;
}


/***********
dataTable
************/

.dataTable {
  width: 100%;
  line-height: 1.6;
  border: 1px solid var(--color-sub02);
}

.dataTable thead td {
  padding: 1.2em 1.2em ;
}
.dataTable thead th {
  border: 1px solid var(--color-sub02);
  padding: 1em 1.5em;
  text-align: center;
  font-weight: 500;
  background-color: var(--color-brand01);
  color: var(--color-base);
}
.dataTable thead td {
  border: 1px solid var(--color-sub02);
  padding: 1em 0.8em;
  text-align: center;
  background-color: var(--color-sub01);
}

.dataTable tbody th {
  border: 1px solid var(--color-sub02);
  padding: 1em 1.5em;
  text-align: left;
  font-weight: 500;
  vertical-align: top;
  background-color: var(--color-sub01);
}
.dataTable tbody td {
  border: 1px solid var(--color-sub02);
  padding: 1em 1.5em;
  text-align: left;
  vertical-align: top;
}

/*
setting
*/

.dataTable.-fixed {
  table-layout: fixed;
}

.dataTable.-vwide thead td ,
.dataTable.-vwide thead th{
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}
.dataTable.-vwide tbody td ,
.dataTable.-vwide tbody th{
  padding-top: 1.2em;
  padding-bottom: 1.2em;
}


.dataTable.-vtop,
.dataTable.-vtop th,
.dataTable.-vtop td {
  vertical-align: top;
}

.dataTable.-alignLeft,
.dataTable.-alignLeft th,
.dataTable.-alignLeft td {
}

.dataTable.-alignCenter,
.dataTable.-alignCenter th,
.dataTable.-alignCenter td {
  text-align: center;
}


/*
size
*/

.dataTable-th.-trisect {
  width: 33%;
}
.dataTable-th.-small {
  width: 18em;
}
.dataTable-th.-xsmall {
  width: 15em;
}
.dataTable-th.-xxsmall {
  width: 12em;
}
.dataTable-th.-alignLeft {
  text-align: left;
}



@media screen and (max-width:834px) {

  .dataTable {
    font-feature-settings: "palt";
    border-spacing: 2px;
  }
  .dataTable th,
  .dataTable td {
  }

  .dataTable thead td {
    padding: 1em 0.5em ;
  }
  .dataTable thead th {
    padding: 1em 0.5em ;
  }
  .dataTable tbody th {
    padding: 1em 0.5em ;
  }
  .dataTable tbody td {
    padding: 1em 1em ;
  }

  /*
  setting
  */

  .dataTable.-fixed {
    table-layout: fixed;
  }

  .dataTable.-vwide thead td ,
  .dataTable.-vwide thead th{
    padding-top: 1em;
    padding-bottom: 1em;
  }
  .dataTable.-vwide tbody td ,
  .dataTable.-vwide tbody th{
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .dataTable.-fixed {
    table-layout: fixed;
  }
  .dataTable-th.-small {
    width: 8em;
  }
  .dataTable-th.-xsmall {
    width: 8em;
  }
  .dataTable-th.-xxsmall {
    width: 22%;
  }


}

@media screen and (max-width:520px) {

  .dataTable {
    font-size: 0.9rem;
  }

  /*
  spBlock
  */

  .dataTable.-spBlock ,
  .dataTable.-spBlock tbody ,
  .dataTable.-spBlock th ,
  .dataTable.-spBlock td ,
  .dataTable.-spBlock tr {
    display: block;
    width: 100% !important;
    border: none;
    font-size: 1rem;
  }

  .dataTable.-spBlock {
    border: none;
  }
  .dataTable.-spBlock tbody tr {
    border: none;
  }

  .dataTable.-spBlock tbody th {
    border: 1px solid var(--color-brand01);
    border-left: none;
    border-right: none;
    border-top: none;
    padding: 0.5em 1em ;
    text-align: left;
  }
  .dataTable.-spBlock tbody td {
    padding: 1em 0em 2em ;
    line-height: 1.7;
    text-align: left;
  }
  .dataTable.-spBlock tbody td::before,
  .dataTable.-spBlock tbody td::after {
    display: none;
  }

  .dataTable.-spBlock .dataTable-linkList {
    display: block;
    max-width: 19em;
    margin: 0 auto;
  }

}



/***********
fileLink
************/

.fileLink {
  font-weight: 500;
}
.fileLink li {
  padding: 0.8em 0;
  border-bottom: 1px dashed var(--color-sub02);
}
.fileLink.-single li {
  padding: 0.2em 0;
  border-bottom: none;
}
.fileLink a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  position: relative;
  padding-bottom: 0.5em;
}
.fileLink a:hover {
  text-decoration: underline;
}
.fileLink a{
  padding-left: 4.2em;
}
.fileLink a::after {
  content: "";
  display: block;
  width: 3.5em;
  height: 1.5em;
  position: absolute;
  left: 0;
  top: 0.2em;
}
.fileLink a[href*="pdf"]::after {
  background: url(../../img/icon/pdf.png) no-repeat left top / 100% auto;
}
.fileLink a[href*="jpg"]::after,
.fileLink a[href*="jpeg"]::after {
  background: url(../../img/icon/jpg.png) no-repeat left top / 100% auto;
}
.fileLink a[href*="png"]::after {
  background: url(../../img/icon/png.png) no-repeat left top / 100% auto;
}
.fileLink a[href*="doc"]::after,
.fileLink a[href*="docx"]::after {
  background: url(../../img/icon/doc.png) no-repeat left top / 100% auto;
}
.fileLink a[href*="xls"]::after,
.fileLink a[href*="xlsx"]::after {
  background: url(../../img/icon/xls.png) no-repeat left top / 100% auto;
}
.fileLink a[href*="ppt"]::after,
.fileLink a[href*="pptx"]::after {
  background: url(../../img/icon/ppt.png) no-repeat left top / 100% auto;
}
.fileLink a[href*="zip"]::after {
  background: url(../../img/icon/zip.png) no-repeat left top / 100% auto;
}



/***********
siteLink
************/

.siteLink {
  font-weight: 500;
}
.siteLink li {
  padding: 0.8em 0;
  border-bottom: 1px dashed var(--color-sub02);
}
.siteLink.-single li {
  padding: 0em 0;
  border-bottom: none;
}
.siteLink a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  position: relative;
  padding-bottom: 0.5em;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
  transition: 0.2s;

}
.siteLink a:hover {
  text-decoration-color: inherit;
}
.siteLink a{
  padding-left: 1em;
}
.siteLink a::before {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f0da";
  position: absolute;
  left: 0;
  top: 0.35em;
  scale: 0.9;
}
.siteLink a[target*="_blank"]::after {
  content: "\f08e";
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f08e";
  margin-left: 0.3em;
  color: var(--color-brand01);
  scale: 0.9;
}


/***********
gallery
************/

.gallery {
  display: flex;
  flex-wrap: wrap;
}
.gallery > li{
  width: 33.3%;
  padding-right: 1px;
  padding-bottom: 1px;
}
.gallery > li > a {
  display: block;
  text-decoration: none;
  color: inherit;
}
body.is-pc .gallery > li > a:hover {
  cursor: zoom-in;
}
.gallery-img {
  position: relative;
}
.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 14;
}
.gallery-img figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  text-align: left;
  font-size: 0.9rem;
  padding: 0 1em 0.8em 1em;
  color: var(--color-base);
  line-height: 1.3;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
}

@media screen and (max-width:834px) {

  .gallery-img figcaption {
    padding: 0 1em 0.8em 1em;
    font-size: 85%;
  }
}

@media screen and (max-width:520px) {

  .gallery > li{
    width: 33.3%;
    padding-right: 1px;
    padding-bottom: 1px;
  }
  .gallery-img figcaption {
    padding: 0 0.5em 0.5em 0.5em;
    font-size: 77%;
  }
}

/***********
photoGallery
************/

.photoGallery {
}

.photoGallery-item {
  width: calc(100% / 4);
  padding: 0 10px 20px;
}
.photoGallery-item.-x2 {
  width: calc(100% / 2);
}
.photoGallery-item a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.photoGallery-img {
  background-color: var(--color-base);
  padding: clamp(10px,1vw, 12px);
  box-shadow: 0.1em 0.1em 0.6em rgba(0, 0, 0, 0.15);
}
.photoGallery-img figcaption {
  font-size: 0.9rem;
  text-align: center;
  margin-top: clamp(10px,1vw, 12px);
  padding: 0.4em 0 0.5em;
}

@media screen and (max-width:1024px) {

  .photoGallery-item {
    width: calc(100% / 3);
    padding: 0 5px 10px;
  }

}


@media screen and (max-width:640px) {

  .photoGallery-item {
    width: calc(100% / 2);
    padding: 0 5px 10px;
  }
  .photoGallery-img {
    padding: 5px;
  }
  .photoGallery-img figcaption {
    font-size: 0.7rem;
    margin-top: 5px;
    padding: 0.1em 0 0.2em;
  }


}




/***********
youtube
************/

.youtube {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  margin: 0 auto;
}

.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/***********
googleMap
************/

.googleMap iframe{
  width: 100%;
  height: 600px;
}


/***********
dataList
************/

.dataList {
  display: grid;
  grid-template-columns: minmax(6em, max-content) 1fr;
  row-gap: 0.2em;
  column-gap: 1em;
  margin: 0;
  padding: 0;
  line-height: 1.8;
}

/***********
pageNavi
************/

.pageNavi {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 4em;
}
.pageNavi li {
  padding-right: 5px;
  padding-bottom: 5px;
}
.pageNavi li a {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: inherit;
  text-decoration: none;
  min-height: 3.2em;
  padding: 0.5em 3em;
  font-size: 0.95rem;
  background-color: var(--color-sub03);
  position: relative;
}
.pageNavi li a::after {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f107";
  position: absolute;
  right: 0.5em;
  top: 50%;
  scale: 0.9;
  translate: 0 -50%;
  transition: translate 0.2s ease;
}
body.is-pc .pageNavi li a:hover {
  background-color: var(--color-brand01);
  color: var(--color-base);
}
body.is-pc .pageNavi li a:hover::after {
  translate: 0 -30%;
}

@media screen and (max-width:520px) {

  .pageNavi {
    padding-bottom: 2em;
  }
  .pageNavi li {
    padding-right: 2px;
    padding-bottom: 2px;
  }
  .pageNavi li a {
    min-height: 3.2em;
    padding: 0.5em 2em;
    font-size: 0.85rem;
  }
  .pageNavi li a::after {
    right: 0.3em;
    translate: 0 -40%;
  }
  body.is-pc .pageNavi li a:hover {
    background-color: var(--color-brand01);
    color: var(--color-base);
  }
  body.is-pc .pageNavi li a:hover::after {
    translate: 0 -30%;
  }

}

/***********
paperList
************/

.paperList {
}
.paperList-section {
  display: flex;
  padding: min(6vw,2em) 0;
}
.paperList-section.-reverse {
  flex-direction: row-reverse;
}
.paperList-section + .paperList-section {
  border-top: 2px solid var(--color-sub02);
}
.paperList-section-inner {
  flex: 1;
}
.paperList-text {
  font-size: 0.85rem;
  line-height: 1.7;
}

.paperList-section-img {
  width: clamp(200px,50%,600px);
  padding-left: 2%;
}
.paperList-section-book {
  width: clamp(120px,20%,180px);
  padding-left: 2%;
}

@media screen and (max-width:640px) {

  .paperList {
  }
  .paperList-section {
    display: block;
  }
  .paperList-section::after {
    content: "";
    display: table;
    clear: both;
  }
  .paperList-section.-reverse {
  }
  .paperList-section + .paperList-section {
  }
  .paperList-section-inner {
    flex: 1;
  }
  .paperList-text {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .paperList-section-img {
    width: auto;
    padding-left: 0;
    margin-top: 1.5em;
  }
  .paperList-section-book {
    width: clamp(80px,25%,140px);
    padding-left: 10px;
    padding-bottom: 10px;
    float: right;
  }
}



/***********
pageLink
************/

.pageIndex {
  border: 3px solid var(--color-sub03);
  background-color: var(--color-sub01);
  padding: min(7vw,2em) min(5vw,3em);
}
.pageIndex-title {
  font-weight: 600;
  font-family: var(--font-family-gothic-en);
  opacity: 0.8;
  padding-bottom: 0.2em;
}


.pageIndex-list {
}
.pageIndex-list li {
}
.pageIndex-list li a{
  color: inherit;
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding: 0.2em 0 0.2em 1em;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
  transition: 0.3s;
}
body.is-pc .pageIndex-list li a:hover{
  color: var(--color-brand01);
  text-decoration: underline;
  text-decoration-color: inherit;
}
.pageIndex-list li a::before {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f0da";
  position: absolute;
  left: 0;
  top: 0.5em;
  color: var(--color-brand01);
}


/***********
xxxxx
************/
