@charset "utf-8";

/* CSS Document */


/***********
pageHeading
************/

.pageHeading {
  height: 20em;
  overflow: hidden;
  position: relative;
  z-index: 2;
  font-size: clamp(1rem,1.3vw, 1.5rem);
  color: var(--color-dark01);
  text-align: center;
}
.pageHeading-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.pageHeading-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pageHeading-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: 3vw;
  padding-top: calc(var(--header-height) / 2);
}

.pageHeading-parent {
  font-size: max(80%,15px);
  padding-bottom: 0.5em;
}
.pageHeading-parent-text {
  font-weight: 600;
  border-bottom: 2px solid var(--color-dark01);
  letter-spacing: 0.04em;
  padding-bottom: 0.1em;
  display: inline-block;
}

.pageHeading-title {
  line-height: 1.4;
  font-weight: 700;
  font-size: 220%;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.pageHeading-subTitle {
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  padding-top: 0.5em;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
}
.pageHeading-subTitle-text{
  display: inline-block;
  padding: 0.3em 1em;
  background-color: var(--color-brand01);
  color: var(--color-base);
  border-radius: 3em;
}

/*
small
*/

.pageHeading.-small {
  height: 18em;
  font-size: clamp(1rem,1vw, 1.3rem);
}

@media screen and (max-width:834px) {

  .pageHeading ,
  .pageHeading.-small{
    height: 19em;
    font-size: clamp(1rem,1.3vw, 1.5rem);
  }

}

@media screen and (max-width:520px) {

  .pageHeading,
  .pageHeading.-small {
    font-size: clamp(0.8rem,3.2vw, 1.2rem);
  }

  .pageHeading-img{
  }
  .pageHeading-img img {
    scale: 1.1;
    transform-origin: center top;
  }
  .pageHeading-container {
    padding-top: 30px;
    padding-inline: 3vw;
  }
  .pageHeading-parent {
    font-size: max(60%,13px);
  }
  .pageHeading-subTitle {
  }
  .pageHeading-title {
  }

}

/***********
breadcrumb
************/

.breadcrumb{
  font-size: clamp(0.65rem,1.2vw, 0.75rem);
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: 0;
  position: relative;
  z-index: 100;
}
.breadcrumb-lists{
  display: flex;
  position: absolute;
  width: 100%;
  padding-top: 1.2em;
}
.breadcrumb-lists li{
  position: relative;
}
.breadcrumb-lists li:not(:has(a)){
  opacity: 0.6;
}
.breadcrumb-lists li:not(:last-child)::after{
  content: ">";
  display: inline-block;
  padding: 0 0.5em;
  scale: 0.8 1.2;
  opacity: 0.5;
}
.breadcrumb-lists li a{
  color: inherit;
  text-decoration: none;
  transition: 0s;
}
body.is-pc .breadcrumb-lists li a:hover{
  text-decoration: underline;
  color: var(--color-brand01);
}

.breadcrumb-lists li:last-child {
  max-width: 12em;
  height: calc(1em * 1.5);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

@media screen and (max-width:834px) {

  .breadcrumb{
    font-size: clamp(0.5rem,3vw, 0.65rem);
    -webkit-overflow-scrolling: touch;
    translate: 0 -1.8em;
    letter-spacing: 0;
    opacity: 0.6;
  }
  .breadcrumb-lists{
    overflow: auto;
    display: flex;
    white-space: nowrap;
    height: 2em;
    padding: 0;
    padding-left: 3%;
  }
  .breadcrumb-lists li a{
    /* color: var(--color-base); */
  }
  .breadcrumb-lists li:last-child {
    max-width: 12em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .breadcrumb-lists li:not(:last-child)::after{
    padding: 0 0.3em;
  }

}

/***********
box
************/

.box {
  background-color: var(--color-base);
  padding: min(7vw,4em) min(5vw,3em);
}

/***********
pagination
************/

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 6em;
  padding-bottom: 2em;
}

.pagination:empty {
  display: none;
}

.pagination span,
.pagination a {
  display: inline-block;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  color: var(--color-dark01);
  border-radius: 50%;
  text-decoration: none;
  text-align: center;
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  font-size: 1.3rem;
  margin: 0 5px;
}
.pagination a {
  background-color: var(--color-base);
  box-shadow: 0 0 0 1px var(--color-sub02) 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-primary01);
  color: var(--color-base);
  box-shadow: 0 0 0 1px var(--color-primary01) inset ;
}

.pagination a.prev,
.pagination a.next{
}

@media screen and (max-width:834px) {

  .pagination {
    padding-top: 3em;
    margin-left: -3vw;
    margin-right: -3vw;
  }
  .pagination span,
  .pagination a {
    width: 2em;
    height: 2em;
    line-height: 2em;
    font-size: 1.2rem;
    margin: 0 1px 2px;
  }
}

/***********
article
************/

.article {
}

.article-heading {
  position: relative;
  margin-bottom: 3em;
}

.article-heading-data {
  display: flex;
  align-items: center;
  padding-bottom: 0.5em;
  gap: 0.2em 0.8em;
}
.article-heading-time {
  display: inline-block;
  white-space: nowrap;
  font-weight: 600;
  font-family: var(--font-family-gothic-en);
  font-size: 1rem;
}
.article-heading-cat {
  margin: 0.1em;
}

.article-heading-title {
  font-weight: 700;
  font-size: clamp(1.5rem,2vw, 2rem);
}


.article-box {
  margin-bottom: 3em;
  background-color: var(--color-base);
  border: 2px solid #e5e592;
  padding: min(7vw,2em) min(5vw,3em);
}

.article-pdf {
  max-width: 520px;
  margin: 0 auto ;
}
.article-pdf:not(:last-child) {
  margin-bottom: 3em;
}

@media screen and (max-width:640px) {

  .article {
    margin-bottom: 2em;
  }
  .article-heading {
    margin-bottom: 3em;
  }

  .article-heading-data {
    padding-bottom: 0.5em;
  }
  .article-heading-time {
    font-size: 0.9rem;
    padding-right: 0.5em;
  }
  .article-heading-cat {
    font-size: 0.9rem;
  }

  .article-heading-title {
    font-size: 1.3rem;
  }

}

/***********
post
************/

.post {
}

.post p:not([class]) {
  line-height: var(--lineheight-main);
}
.post p:not([class]) + p {
  padding-top: 1em;
}

.post h2:not([class]) {
  font-size: clamp(1.2rem,2vw, 1.8rem);
  border-block: 2px solid var(--color-primary01);
  margin: 2.5em 0 0.8em 0;
  padding: 0.3em 0 0.4em;
  position: relative;
}

.post h3:not([class]) {
  font-size: clamp(1.15rem,1.8vw, 1.6rem);
  border-left: 7px solid var(--color-primary01);
  padding: 0.3em 0 0.3em 0.8em;
  margin: 2.5em 0 0.8em 0;
}

.post h4:not([class]) {
  font-size: clamp(1.15rem,1.7vw, 1.5rem);
  background-color: #e5e592;
  padding: 0.5em 1em;
  margin: 2.5em 0 0.8em 0;
}
.post h5:not([class]) {
  font-size: 1.1rem;
  margin: 2.5em 0 0.8em 0;
  padding-left: 1.5em;
  position: relative;
}
.post h5:not([class])::before {
  content: "";
  display: block;
  width: 1em;
  height: 5px;
  background-color: var(--color-brand01);
  border-radius: 1em;
  position: absolute;
  left: 0;
  top: 0.65em;
}

.post h6:not([class]) {
  font-size: 1.1rem;
  margin: 2em 0 0.5em 0;
  position: relative;
}


.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]) {
  line-height: 1.6;
  border-top: 1px solid var(--color-sub02);
}

.post table:not([class]) thead td {
  padding: 1em 1.2em ;
}
.post table:not([class]) thead th{
  padding: 1em 1.2em ;
}

.post table:not([class]) tbody tr {
  border-bottom: 1px solid var(--color-sub02);
}
.post table:not([class]) tbody th {
  padding: 1.5em 0 1.5em 0 ;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
}

.post table:not([class]) tbody td {
  padding: 1.5em 0 1.5em 1.5em ;
  position: relative;
  text-align: left;
}

.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 h4:not([class]) {
    padding: 0.4em 0 0.4em 0.6em;
    border-left-width: 4px;
  }

  .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;
}


/***********
separate
************/

.separate {
  display: flex;
  justify-content: space-between;
  gap: 0 5%;
}
.separate-item.-large {
  width: 50%;
}
.separate-item.-small {
  width: 45%;
}
.separate-item.-xlarge {
  width: 55%;
}
.separate-item.-xsmall {
  width: 40%;
}
.separate-item.-xxlarge {
  width: 60%;
}
.separate-item.-xxsmall {
  width: 35%;
}
.separate-item.-half {
  width: 47.5%;
}
.separate.-reverse {
  flex-direction: row-reverse;
}

@media screen and (max-width:640px) {

  .separate {
    display: block;
  }
  .separate-item {
    width: auto !important;
  }
  .separate-item:first-child {
    padding-bottom: 2em;
  }

}

/***********
dataTable
************/

.dataTable {
  line-height: 1.6;
  border-top: 1px solid var(--color-sub02);
}

.dataTable thead td {
  padding: 1em 1.2em ;
  background-color: var(--color-main);
  border-inline: 1px solid var(--color-sub02);
  text-align: center;
}
.dataTable thead th {
  padding: 1em 1.2em ;
  background-color: var(--color-main);
  color: var(--color-base);
  font-weight: 500;
  border-inline: 1px solid var(--color-sub02);
  text-align: center;
}

.dataTable tbody tr {
  border-bottom: 1px solid var(--color-sub02);
}
.dataTable tbody th {
  padding: 1.2em 1.2em ;
  font-weight: 500;
  background-color: var(--color-sub01);
  line-height: 1.4;
}
.dataTable tbody td {
  padding: 1.2em 0 1.2em 1.5em ;
  position: relative;
}

/*
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 tbody th,
.dataTable.-alignLeft tbody td {
  text-align: left;
}

.dataTable.-alignCenter,
.dataTable.-alignCenter th,
.dataTable.-alignCenter td {
  text-align: center;
}


/*
size
*/

.dataTable-th.-trisect {
  width: 33%;
}
.dataTable-th.-small {
  width: 15em;
}
.dataTable-th.-xsmall {
  width: 12.5em;
}
.dataTable-th.-xxsmall {
  width: 10em;
}
.dataTable-th.-alignLeft {
  text-align: left;
}



@media screen and (max-width:834px) {

  .dataTable {
    font-feature-settings: "palt";
    line-height: 1.5;
  }
  .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 0.5em ;
  }

  /*
  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.-xxsmall {
    width: 7em;
  }


}

@media screen and (max-width:520px) {

  .dataTable {
    font-size: 0.9rem;
  }

  /*
  spBlock
  */

  .dataTable.-spBlock  {
    font-size: 1rem;
  }
  .dataTable.-spBlock ,
  .dataTable.-spBlock tbody ,
  .dataTable.-spBlock th ,
  .dataTable.-spBlock td ,
  .dataTable.-spBlock tr {
    display: block;
    width: 100% !important;
  }

  .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;
  }

}

/***********
priceTable
************/

.priceTable {
  line-height: 1.6;
}

.priceTable thead td {
  padding: 1em 1.2em ;
}
.priceTable thead th {
  padding: 1em 1.2em ;
}

.priceTable tbody tr {
  border-bottom: 1px solid var(--color-sub02);
}
.priceTable tbody th {
  padding: 1.2em 0 ;
  font-weight: 500;
  text-align: left;
  vertical-align: middle;
}
.priceTable tbody td {
  padding: 1.2em 0 1.2em 1.5em ;
  text-align: right;
  vertical-align: middle;
}

.priceTable-tips {
  font-size: 80%;
  font-weight: 400;
  display: block;
}

@media screen and (max-width:640px) {

  .priceTable {
    font-size: 0.9rem;
  }

}

/***********
fileLink
************/

.fileLink {
}
.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*="zip"]::after {
  background: url(../../img/icon/zip.png) no-repeat left top / 100% auto;
}
.fileLink a[href*="ppt"]::after {
  background: url(../../img/icon/ppt.png) no-repeat left top / 100% auto;
}

/***********
siteLink
************/

.siteLink {
}
.siteLink li {
  padding: 0.8em 0;
  border-bottom: 1px dashed var(--color-sub02);
}
.siteLink.-single li {
  padding: 0.2em 0;
  border-bottom: none;
}
.siteLink a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  position: relative;
  padding-bottom: 0.5em;
}
.siteLink a:hover {
  text-decoration: underline;
}
.siteLink a{
  padding-left: 1.5em;
}
.siteLink 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: "\f138";
  position: absolute;
  left: 0;
  top: 0.3em;
  color: var(--color-primary01);
}
.siteLink a[target*="_blank"]::after {
  content: "\f08e";
  color: var(--color-primary01);
}

/***********
catNavi
************/

.catNavi {
  margin-bottom: 3em;
}
.catNavi-list {
  display: flex;
  flex-wrap: wrap;
}
.catNavi-list li {
}
.catNavi-list li a{
  display: inline-block;
  cursor: pointer;
  padding: 0.5em 1.5em;
  background-color: var(--color-sub01);
  color: var(--color-main);
  border-radius: 3em;
  font-weight: 500;
  margin: 0.2em;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.catNavi-list li.current-cat a,
body.is-pc .catNavi-list li a:hover {
  background-color: var(--color-brand01);
}

@media screen and (max-width:834px) {

  .catNavi {
    overflow: auto;
    white-space: nowrap;
    margin-inline: calc(var(--padding-side) * -1);
  }

  .catNavi-list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: start;
    overflow: auto;
    padding-left: var(--padding-side);
    white-space: nowrap;
    font-size: 0.9rem;
  }
  .catNavi-list li {
    margin-right: 2px;
    margin-bottom: 0;
  }
  .catNavi-list li a {
    min-width: 5em;
    padding: 0.8em 1.2em ;
    margin: 0;
    font-size: 0.9rem;
  }

}

/***********
card
************/

.card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4em 3%;
}
.card.-quarter {
  grid-template-columns: repeat(4, 1fr);
}
.card.-half {
  grid-template-columns: repeat(2, 1fr);
}

.card li {
}
.card li a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.card-img {
  border-radius: var(--rounded-main);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  border: 1px solid var(--color-brand01);
  position: relative;
}
.card-img img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 16 / 11;
}
.card li.-close .card-img::after {
  content: "終了しました";
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.45);
  color: var(--color-base);
  font-weight: 500;
  font-size: 0.9rem;
}

.card-inner {
  padding-top: 0.5em;
}
.card-data {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 0 0.5em;
  align-items: center;
  padding-bottom: 0.7em;
}
.card-time {
  display: inline-block;
  padding-right: 0.5em;
  font-weight: 500;
  font-family: var(--font-family-gothic-en);
  font-size: 0.8rem;
  letter-spacing: 0;
  white-space: nowrap;
}
.card-term {
}
.card-cat.l-catIcon {
  font-size: 0.8rem;
  margin: 1px;
}

.card-title {
  font-size: 1rem;
  font-weight: 500;
}



@media screen and (max-width:1024px) {

  .card.-quarter {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media screen and (max-width:520px) {

  .card,
  .card.-quarter,
  .card.-half {
    display: block;
  }

  .card li {
    border-bottom: 1px solid var(--color-sub02);
  }
  .card li:first-child {
    border-top: 1px solid var(--color-sub02);
  }
  .card li a {
    display: flex;
    align-items: start;
    padding: 1.2em 0;
    gap: 0 1em;
  }
  .card-img {
    width: 33%;
  }
  .card-img img {
    aspect-ratio: 1 / 1;
  }
  .card li.-close .card-img::after {
    font-size: 0.8rem;
  }

  .card-inner {
    flex: 1;
    padding-top: 0;
  }
  .card-data {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    gap: 0 0.5em;
    padding-bottom: 0.5em;
  }
  .card-time {
    padding-right: 0;
    font-size: 0.8rem;
  }
  .card-term {
  }
  .card-cat.l-catIcon {
    font-size: 0.7rem;
    margin: 1px;
  }
  .card-title {
  }


}

/***********
basicCard
************/

.basicCard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5em 3%;
}

.basicCard.-half {
  grid-template-columns: repeat(2, 1fr);
}
.basicCard.-trisect  {
  grid-template-columns: repeat(3, 1fr);
}
.basicCard.-quarter  {
  grid-template-columns: repeat(4, 1fr);
}

.basicCard > li > a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.basicCard-img {
  text-align: center;
  border-radius: var(--rounded-small);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}
.basicCard-img img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}
.basicCard-inner {
  padding-top: 1em;
}

@media screen and (max-width:834px) {

  .basicCard {
    gap: 3em 3%;
  }
  .basicCard.-half {
    grid-template-columns: repeat(2, 1fr);
  }
  .basicCard.-trisect  {
    grid-template-columns: repeat(3, 1fr);
  }
  .basicCard.-quarter  {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media screen and (max-width:520px) {

  .basicCard ,
  .basicCard.-half ,
  .basicCard.-trisect ,
  .basicCard.-quarter {
    grid-template-columns: repeat(1, 1fr);
  }

}

/***********
standardCard
************/

.standardCard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2em;
}
.standardCard.-quarter {
  grid-template-columns: repeat(4, 1fr);
}
.standardCard.-half {
  grid-template-columns: repeat(2, 1fr);
}

.standardCard li {
  border: 2px solid var(--color-brand01);
  background-color: var(--color-base);
  padding: min(5vw,1em) min(5vw,1em) min(5vw,2em);
  border-radius: var(--rounded-small);

}
.standardCard li > a{
  display: block;
  color: inherit;
  text-decoration: none;
}

.standardcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--rounded-small);
  aspect-ratio: 16 / 10;
}
.standardCard-inner {
  margin-top: 0.8em;
}
.standardCard-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.standardCard-title {
  font-size: 1.1rem;
  font-weight: 600;
}
.standardCard-subTitle {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  padding-top: 0.2em;
  line-height: 1.3;
}
.standardCard-text {
  font-size: 0.9rem;
  line-height: 1.7;
  padding-top: 0.5em;
}

@media screen and (max-width:834px) {

  .standardCard ,
  .standardCard.-quarter ,
  .standardCard.-half {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5em;
  }

  .standardCard li {
    border-width: 2px;
    padding: min(5vw,2em) min(4vw,0.8em) min(8vw,2em);
  }
  .standardCard-title {
    font-size: 1.1rem;
  }
  .standardCard-subTitle {
    font-size: 0.8rem;
  }
  .standardCard-text {
    font-size: 1rem;
    line-height: 1.8;
  }

}

@media screen and (max-width:520px) {

  .standardCard ,
  .standardCard.-quarter ,
  .standardCard.-half {
    grid-template-columns: repeat(1, 1fr);
    gap: 1em 0;
  }
  .standardCard-img {
    width: 85%;
    margin-inline: auto;
  }

}


/***********
divide
************/

.divide {
  display: flex;
  justify-content: space-between;
}
.divide.-reverse {
  flex-direction: row-reverse;
}
.divide-item {
}
.divide-item > img {
  border-radius: var(--rounded-main);
}

.divide.-half .divide-item {
  width: 47%;
}

.divide.-ratio4_6 .divide-item:nth-child(1) {
  width: 42%;
}
.divide.-ratio4_6 .divide-item:nth-child(2) {
  width: 53%;
}

.divide.-ratio3_7 .divide-item:nth-child(1) {
  width: 38%;
}
.divide.-ratio3_7 .divide-item:nth-child(2) {
  width: 57%;
}

@media screen and (max-width:834px) {

  .divide {
    display: block;
  }
  .divide.-reverse {
  }
  .divide-item + .divide-item {
    padding-top: 1.5em;
  }

  .divide.-half .divide-item ,
  .divide.-ratio4_6 .divide-item:nth-child(1) ,
  .divide.-ratio4_6 .divide-item:nth-child(2) ,
  .divide.-ratio3_7 .divide-item:nth-child(1) ,
  .divide.-ratio3_7 .divide-item:nth-child(2) {
    width: auto;
  }

}

/***********
split
************/

.split {
  counter-reset : split_num;
  margin-top: 1em;
}
.split-section {
  background-color: var(--color-base);
  border-radius: 0.5em;
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 0 6%;
  padding: min(6vw,2.5em) min(5vw,3em);
  border-radius: var(--rounded-main);
  border: 2px solid var(--color-primary01);
  position: relative;
}
.split-section + .split-section {
  margin-top: 4em;
}
.split-img {
  width: 46%;
}
.split-img img {
  border-radius: var(--rounded-main);
}
.split-inner {
  flex: 1;
  padding-block: 1em;
}

/*
reverse
*/

.split-section.-reverse,
.split.-alternately .split-section:nth-child(even){
  flex-direction: row-reverse;
}

/*
numbering
*/

.split.-numbering .split-section::before{
  display: inline-block;
  counter-increment:split_num;
  content: counter(split_num, decimal-leading-zero) ;
  position: absolute;
  top: -0.4em;
  left: 0.5em;
  z-index: 9;
  font-size: 6rem;
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  letter-spacing: 0;
  color: var(--color-primary01);
  pointer-events: none;
  line-height: 1;
}
.split-section.-reverse::before,
.split.-alternately.-numbering .split-section:nth-child(even)::before {
  left: auto;
  right: 0.5em;
}

@media screen and (max-width:640px) {

  .split-section {
    display: block;
    padding: min(6vw,2.5em) min(5vw,3em);
  }
  .split-section + .split-section {
    margin-top: 3em;
  }
  .split-img {
    width: auto;
  }
  .split-inner {
    padding-block: 1.5em 0;
  }

  /*
  numbering
  */

  .split.-numbering .split-section::before,
  .split-section.-reverse::before,
  .split.-alternately.-numbering .split-section:nth-child(even)::before {
    left: 1vw;
    right: auto;
    font-size: 5rem;
  }

}

/***********
tabTrigger
************/

.tabTrigger {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3em;
}
.tabTrigger li {
  cursor: pointer;
  padding: 0.5em 1.5em;
  background-color: var(--color-sub01);
  color: var(--color-main);
  border-radius: 3em;
  font-weight: 500;
  margin: 0.2em;
  transition: background-color 0.2s ease;
}
body.is-pc .tabTrigger li:hover,
.tabTrigger li.is-active {
  background-color: var(--color-dark01);
  color: var(--color-base);
}

@media screen and (max-width:834px) {

  .tabTrigger {
    display: flex;
    flex-wrap: nowrap;
    justify-content: start;
    margin-bottom: 1.5em;
    overflow: auto;
    margin-left: -3vw;
    margin-right: -3vw;
    padding-left: 3vw;
    white-space: nowrap;
    font-size: 0.9rem;
  }

}


/***********
segmented
************/

.segmented {
  position: relative;
}
.segmented-container {
  display: flex;
  gap: 0 5%;
  min-height: 15em;
}
.segmented-heading {
  width: clamp(220px,25%, 300px);
}
.segmented-inner {
  flex: 1;
}
.segmented-link {
  position: absolute;
  left: 0;
  top: 8.5em;
}

.segmented-link .l-btn {
  min-width: 11em;
  min-height: 3.2em;

}

@media screen and (max-width:834px) {

  .segmented-container {
    display: block;
  }
  .segmented-heading {
    width: auto;
  }
  .segmented-inner {
    flex: 1;
  }
  .segmented-link {
    position: static;
    padding-top: 2em;
    text-align: center;
  }

  .segmented-link .l-btn {
    min-width: 16em;
    min-height: 3.8em;
    padding: 1em 2.5em ;
    font-size: 1.05rem;
  }

}

/***********
newsList
************/

.newsList {
}
.newsList li {
  border-bottom: 1px solid var(--color-sub01);
}
.newsList li:first-child {
  border-top: 1px solid var(--color-sub01);
}
.newsList a {
  display: flex;
  align-items: center;
  width: 100%;
  color: inherit;
  text-decoration: none;
  padding: 2em 0;
  padding-right: 3em;
}
.newsList 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;
  background-color: var(--color-sub01);
  color: var(--color-dark01);
  content: "\f054";
  width: 3em;
  height: 3em;
  font-size: 0.7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  scale: 0.9;
  transition: 0.3s;
}
body.is-pc .newsList a:hover::after {
  scale: 1.1;
}
.newsList-container {
  display: flex;
  align-items: start;
  align-items: center;
  gap: 0 4%;
}
.newsList-img {
  width: clamp(160px,33%, 220px);
  border: 1px solid var(--color-brand01);
  border-radius: var(--rounded-main);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}
.newsList li.-close .newsList-img::after {
  content: "終了しました";
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.45);
  color: var(--color-base);
  font-weight: 500;
  font-size: 0.9rem;
}

.newsList-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 16 / 12;
}
.newsList-inner {
  flex: 1;
  padding-bottom: 0.8em;
}

.newsList-data {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 0.7em;
  gap: 0 0.8em;
}

.newsList-time {
  display: inline-block;
  font-weight: 500;
  font-family: var(--font-family-gothic-en);
  font-size: 1rem;
  letter-spacing: 0;
  white-space: nowrap;
}
.newsList-term {
  display: flex;
  align-items: center;
  gap: 0.2em;
}

.newsList-cat {
  text-align: center;
  font-size: 80%;
}
.newsList-title {
  flex: 1;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3em;
  transition: 0.2s;
}
body.is-pc a:hover .newsList-title {
  text-decoration-color: inherit;
  text-decoration: underline;
}

.newsList-text {
  font-size: 0.8rem;
  padding-top: 0.8em;
}
@media screen and (max-width:520px) {

  .newsList {
  }
  .newsList li {
  }
  .newsList li + li {
  }
  .newsList a {
    display: block;
    padding: 1.2em 0;
  }
  .newsList a::after {
    display: none;
  }

  .newsList-container {
    gap: 0 4%;
    align-items: start;
  }
  .newsList-img {
    width: clamp(60px,33%, 160px);
  }
  .newsList li.-close .newsList-img::after {
    font-size: 0.8rem;
  }

  .newsList-img img {
    aspect-ratio: 1 / 1;
  }
  .newsList-inner {
    flex: 1;
    padding-bottom: 0.8em;
  }



  .newsList-inner {
    padding-block: 0.5em;
    padding-bottom: 0em;
  }

  .newsList-data {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    gap: 0 0.5em;
    padding-bottom: 0.5em;
  }

  .newsList-time {
    font-size: 0.8rem;
    display: inline-block;
    font-weight: 500;
  }
  .newsList-term {
    display: flex;
    align-items: center;
    gap: 0.2em;
  }

  .newsList-cat {
    font-size: 0.7rem;
  }
  .newsList-title {
    line-height: 1.35;
  }
  .newsList-text {
    font-size: 0.6rem;
    padding-top: 0.8em;
  }

}


/***********
faqSection
************/

.faqSection {
}
.faqSection-item {
  position: relative;
  margin-bottom: 1em;
}
.faqSection-heading {
  font-size: 1.1rem;
  font-weight: 500;
  background-color: var(--color-base);
  border: 2px solid var(--color-brand01);
  padding: 1em 3em 1em 6rem;
  min-height: 3.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  line-height: 1.35;
  cursor: pointer;
  border-radius: 0.5rem;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  transition: 0.3s;
}
.faqSection-heading::before {
  content: 'Q' ;
  width: 3.4em;
  height: 100%;
  color: var(--color-base);
  background-color: var(--color-brand01);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  font-family: var(--font-family-gothic-en);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  transition: 0.3s;
}
.faqSection-heading::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";
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: absolute;
  right: 1em;
  top: 50%;
  translate: 0 -40%;
  color: var(--color-brand01);
}
.faqSection-heading.is-active::after {
  rotate: 180deg;
  translate: 0 -60%;
}


.faqSection-answer {
  display: none;
}
.faqSection-answer-inner {
  padding: 1.5em 1em 2em 4rem;
  position: relative;
}
.faqSection-answer-inner::before {
  content: 'A.' ;
  width: 3.4em;
  color: var(--color-accent01);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  font-family: var(--font-family-gothic-en);
  position: absolute;
  left: 0;
  top: 1.2em;
  font-size: 1.2rem;
  scale: 1.2;
  transition: 0.3s;
}

@media screen and (max-width:520px) {


  .faqSection {
  }
  .faqSection-item {
    margin-bottom: 1em;
  }
  .faqSection-heading {
    font-size: 1rem;
    padding: 0.8em 2.5em 0.8em 4.5rem;
    min-height: 3.5em;
    border-width: 1px;
  }
  .faqSection-heading::before {
    content: 'Q' ;
    width: 2.8em;
  }

  .faqSection-answer-inner {
    padding: 1em 1em 2em 3rem;
  }
  .faqSection-answer-inner::before {
    width: 2em;
    top: 0.9em;
  }

}


/***********
flow
************/

.flow {
  counter-reset : flow_num;
}

.flow-section{
  display: flex;
  gap: 0 5%;
  width: 100%;
  background-color: var(--color-base);
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  padding: min(7vw,2.5em) min(4vw,3em);
  position: relative;
  border-radius: var(--rounded-main);
  border: 2px solid var(--color-brand01);
}
.flow-section:not(:last-child){
  margin-bottom: 2rem;
}
.flow.-arrow .flow-section:not(:last-child){
  margin-bottom: 4em;
}
.flow.-arrow .flow-section:not(:last-child)::after{
  content: "";
  display: block;
  width: 12rem;
  height: 2rem;
  position: absolute;
  left: 50%;
  top: 100%;
  translate: -50% 1em;
  background-color: var(--color-brand01);
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

.flow-heading {
  padding-bottom: 1em;
}
.flow:not(.-numbering) .flow-num{
  display: none;
}
.flow-num {
  display: inline-block;
  font-size: 1.3rem;
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  color: var(--color-brand01);
  position: relative;
  line-height: 1;
  padding-bottom: 0.4em;
}
.flow-num::before {
  content: "";
  display: block;
  width: 65px;
  height: 2px;
  background-color: var(--color-brand01);
  position: absolute;
  right: 100%;
  top: 50%;
  margin-right: 0.5em;
}
.flow-num::after {
  display: inline;
  counter-increment:flow_num;
  content: counter(flow_num, decimal-leading-zero) ;
  padding-left: 0.1em;
  font-size: 150%;
}


.flow-img {
  width: 40%;
}
.flow-img img {
  border-radius: var(--rounded-main);
}
.flow-inner {
  flex: 1;
  position: relative;
}
.flow-title {
  font-size: 1.4rem;
}
.flow-subTitle {
  font-family: var(--font-family-gothic-en);
  font-weight: 700;
  font-size: 0.8rem;
  padding-top: 0.2em;
  color: var(--color-brand01);
  line-height: 1.3;
}

@media screen and (max-width:640px) {

  .flow-section{
    display: block;
  }

  .flow-heading {
    padding-bottom: 1em;
  }

  .flow-img {
    width: auto;
    padding-top: 1.5em;
  }

}


/***********
intro
************/

.intro {
  display: flex;
}
.intro + .intro {
  margin-top: var(--padding-large);
}
.intro-visual {
  width: 40%;
  position: relative;
  z-index: 2;
}
.intro-img {
  min-height: 100%;
}
.intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--rounded-main);
}
.intro-inner {
  flex: 1;
  padding-top: 5vw;
}
.intro-box {
  padding: min(6vw,4em) 10%;
  background-color: var(--color-base);
  position: relative;
  border: 2px solid var(--color-brand01);
  border-radius: var(--rounded-main);
  z-index: 9;
}


.intro:not(.-reverse) .intro-img {
  margin-left: -12vw;
  margin-right: -15%;
}
.intro:not(.-reverse) .intro-box {
  padding-left: 22%;
}
.intro:not(.-reverse) .intro-num {
  right: 1px;
}

.intro.-reverse {
  flex-direction: row-reverse;
}
.intro.-reverse .intro-img {
  margin-right: -12vw;
  margin-left: -15%;
}
.intro.-reverse .intro-box {
  padding-right: 22%;
}
.intro.-reverse .intro-num {
  left: 1px;
}

@media screen and (max-width:834px) {

  .intro {
    display: block;
  }
  .intro + .intro {
    margin-top: var(--padding-large);
  }
  .intro-visual {
    width: auto;
    position: relative;
    z-index: 1;
  }
  .intro-img {
  }
  .intro-img img {
    width: 100%;
    height: 100%;
    max-height: 300px;
    object-fit: cover;
  }
  .intro-inner {
    margin-top: -5vw;
    position: relative;
    z-index: 9;
  }
  .intro-box {
    padding: min(8vw,2em) 5%;
    background-color: var(--color-base);
    margin-top: -2em;
  }

  .intro:not(.-reverse) .intro-img,
  .intro.-reverse .intro-img {
    margin-right: 0;
    margin-left: 0;
    margin-right: -5vw;
    padding-left: 5%;
  }
  .intro:not(.-reverse) .intro-box ,
  .intro.-reverse .intro-box{
    padding-right: 5%;
    padding-left: 5%;
  }
  .intro:not(.-reverse) .intro-num,
  .intro.-reverse .intro-num {
    right: auto;
    left: 1px;
  }

}


/***********
bannerList
************/

.bannerList {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2px,2vw, 1rem);
  justify-content: center;
}
.bannerList li {
  width: clamp(100px,28vw, 220px);
}
body.is-pc .bannerList li a:hover {
  opacity: 0.8;
}

/***********
pageList
************/

.pageList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3em 4%;
  padding-bottom: 2em;
}
.pageList.-trisect {
  grid-template-columns: repeat(3, 1fr);
}
.pageList.-half {
  grid-template-columns: repeat(2, 1fr);
}

.pageList li {
}
.pageList li a {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
}

.pageList-img {
  border-radius: var(--rounded-main);
  border: 1px solid var(--color-brand01);
  isolation: isolate;
  transform: translateZ(0);
}
.pageList-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}
.pageList-inner {
  padding-top: 0.8em;
}
.pageList-heading {
  position: relative;
  padding-left: 2em;
}
.pageList-heading::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;
  background-color: var(--color-brand01);
  color: var(--color-base);
  content: "\f054";
  width: 3em;
  height: 3em;
  font-size: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.4em;
  scale: 0.9;
  transition: 0.3s;
}
body.is-pc a:hover .pageList-heading::after {
  scale: 1.1;
}
.pageList-title {
  font-size: 1.3rem;
  line-height: 1.4;
  position: relative;
}
.pageList-subTitle {
  font-weight: 600;
  font-family: var(--font-family-gothic-en);
  font-size: 0.8rem;
  letter-spacing: 0;
  line-height: 1.2;
  padding-top: 0.2em;
}

.pageList-text {
  font-size: 0.9rem;
  line-height: 1.5;
  padding-top: 0.8em;
}

.pageList-link {
  display: none;
}

@media screen and (max-width:834px) {

  .pageList {
    grid-template-columns: repeat(2, 1fr);
    gap: 1em 2%;
  }
  .pageList.-trisect {
    grid-template-columns: repeat(2, 1fr);
  }
  .pageList.-half {
    grid-template-columns: repeat(2, 1fr);
  }

  .pageList li {
  }
  .pageList li a {
    border-radius: 6px;
    padding: min(5vw,1.2em) min(4vw,1.2em) min(7vw,2em);
  }

  .pageList-img:has(img[src*=".png"]) {
    width: 70%;
    max-width: 160px;
    margin: 0 auto;
  }
  .pageList-img img {
  }
  .pageList-inner {
    padding-top: 0.8em;
  }
  .pageList-heading {
  }
  .pageList-title {
    font-size: 1.15rem;
  }
  .pageList-text {
  }
}


@media screen and (max-width:520px) {

  .pageList ,
  .pageList.-trisect,
  .pageList.-half {
    grid-template-columns: repeat(1, 1fr);
  }
  .pageList-img:has(img[src*=".png"]) {
    width: 50%;
    max-width: 140px;
    margin: 0 auto;
  }


  .pageList-link {
    padding-top: 1.5em;
    text-align: center;
    display: block;
  }
  .l-btn.pageList-btn {
    font-size: 0.9rem;
    min-width: 16em;
    min-height: 3.2em;
  }

}



/***********
paging
************/

.paging {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  border-block: 1px solid var(--color-main);
  margin-top: var(--padding-main);
  padding: 1.5rem 0 ;
}
.paging-block {
  width: 48%;
}
.paging-block a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.paging-text {
  font-size: 90%;
  font-weight: 500;
  color: var(--color-brand01);
  padding-bottom: 0.5em;
}
.paging-title {
  font-weight: 500;
  height: calc(1em * 1.5);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
  transition: 0.2s;
}
body.is-pc .paging-block a:hover .paging-title {
  text-decoration: underline;
  text-decoration-color: inherit;
  color: var(--color-brand01);
}

.paging-block.-next {
  text-align: right;
}
.paging-block.-next .paging-data {
  justify-content: end;
}


@media screen and (max-width:520px) {

  .paging {
    font-size: 0.85rem;
  }

}


/***********
gallery
************/

.basicGallery {
  display: flex;
  flex-wrap: wrap;
}
.basicGallery > li{
  width: 33.3%;
  padding-right: 1px;
  padding-bottom: 1px;
}
.basicGallery > li > a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.basicGallery-img {
  position: relative;
}
.basicGallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
.basicGallery-img figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  text-align: left;
  padding: 0 1em 0.8em 1em;
  color: #fff;
  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) {

  .basicGallery-img figcaption {
    padding: 0 1em 0.8em 1em;
    font-size: 85%;
  }
}

@media screen and (max-width:520px) {

  .basicGallery > li{
    width: 33.3%;
    padding-right: 1px;
    padding-bottom: 1px;
  }
  .basicGallery-img figcaption {
    padding: 0 0.5em 0.5em 0.5em;
    font-size: 77%;
  }
}


/***********
planCompare
************/

.planCompare {
  display: flex;
  justify-content: space-between;
  gap: 0 2%;
}
.planComparl-section {
  flex: 1;
  border: 2px solid var(--color-main);
  border-radius: 0.5em;
  background-color: var(--color-base);
}
.planCompare-heading {
  background-color: var(--color-main);
  color: var(--color-base);
  text-align: center;
  padding: 1.2em 0.5em;
}
.planCompare-heading-title {
  font-size: 1.3rem;
  font-weight: 600;
}
.planCompare-heading-title i[class*="crown"] {
  margin-right: 0.8em;
  margin-left: -0.5em;
  scale: 1.5 1.6;
  color: var(--color-main);
  opacity: 0.25;
  mix-blend-mode: multiply;
}
.planCompare-heading-subTitle {
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-family-gothic-en);
  color: var(--color-main);
  opacity: 0.3;
  mix-blend-mode: multiply;
}
.planCompare-inner {
  padding: 1.5em min(4vw,1.5em) 3em;
}
.planCompare-fee {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 1em;
}
.planCompare-fee-badge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 3.5em;
  height: 3.5em;
  background-color: var(--color-dark01);
  color: var(--color-base);
  border-radius: 50%;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}
.planCompare-fee-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  mix-blend-mode: overlay;
}

.planCompare-fee-inner {
  padding-left: 1em;
  white-space: nowrap;
}
.planCompare-fee-price {
  font-size: 3rem;
}
.planCompare-fee-num {
  font-family: var(--font-family-gothic-en02);
  font-weight: 500;
}
.planCompare-fee-unit {
  font-size: max(45%,13px);
  font-weight: 600;
  padding-left: 0.2em;
}

.planCompare-summary {
  border-block: 1px solid var(--color-main);
  padding: 1em 0;
  margin-bottom: 1.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.planCompare-desc {
}

/*
color
*/

.planComparl-section.-brand {
  border-color: var(--color-brand01);
}
.planComparl-section.-brand .planCompare-heading,
.planComparl-section.-brand .l-list-circle li::before {
  background-color: var(--color-brand01);
}
.planComparl-section.-brand .planCompare-fee-badge {
  background-color: var(--color-brand01);
  position: relative;
}

.planComparl-section.-primary {
  border-color: var(--color-primary01);
}
.planComparl-section.-primary .planCompare-heading,
.planComparl-section.-primary .l-list-circle li::before {
  background-color: var(--color-primary01);
}
.planComparl-section.-primary .planCompare-fee-badge {
  background-color: var(--color-primary01);
  position: relative;
}

.planComparl-section.-secondary {
  border-color: var(--color-secondary01);
}
.planComparl-section.-secondary .planCompare-heading,
.planComparl-section.-secondary .l-list-circle li::before {
  background-color: var(--color-secondary01);
}
.planComparl-section.-secondary .planCompare-fee-badge {
  background-color: var(--color-secondary01);
  position: relative;
}


@media screen and (max-width:834px) {

  .planCompare {
    display: block;
  }
  .planComparl-section + .planComparl-section {
    margin-top: 2em;
  }
  .planCompare-desc img {
    max-width: 320px;
  }

}

/***********
excerptFlow
************/

.excerptFlow {
  display: flex;
  background-color: var(--color-sub01);
  counter-reset : excerptFlow_num;
  margin-top: 2em;
}
.excerptFlow-section {
  flex: 1;
  position: relative;
}
.excerptFlow-section::before{
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  counter-increment:excerptFlow_num;
  content: counter(excerptFlow_num, decimal-leading-zero) ;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -55%;
  z-index: 9;
  font-size: 1.5rem;
  font-family: var(--font-family-gothic-en02);
  font-weight: 500;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  border: 2px solid var(--color-brand01);
  color: var(--color-main);
  background-color: var(--color-base);
  pointer-events: none;
  line-height: 1;
}
.excerptFlow-heading {
  font-size: 1.1rem;
  height: 7em;
  padding-top: 0.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
  background-color: var(--color-brand01);
  position: relative;
}
.excerptFlow-section:not(:last-child) .excerptFlow-heading::after {
  content: "";
  display: block;
  width: 2em;
  height: 100%;
  position: absolute;
  left: calc(100% - 1px);
  top: 0;
  background: inherit;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  z-index: 2;
}
.excerptFlow-section:first-child .excerptFlow-heading {
  background-color: var(--color-brand01); /* フォールバック */
  background-color: color-mix(in srgb, var(--color-brand01) 90%, black);
}
.excerptFlow-section:nth-child(3) .excerptFlow-heading {
  background-color: var(--color-brand01);
  background-color: color-mix(in srgb, var(--color-brand01) 85%, white);
}

.excerptFlow-heading-title {
  color: var(--color-base);
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.excerptFlow-heading-title i {
  margin-right: 0.8em;
  margin-left: -0.8em;
  scale: 1.4;
}
.excerptFlow-inner {
  padding: min(6vw,2em) min(5vw,1.5em);
}
.excerptFlow-img {
}
.excerptFlow-text {
  padding-top: 1em;
  line-height: 1.6;
  text-align: center;
}

@media screen and (max-width:834px) {

  .excerptFlow {
    display: block;
    max-width: 520px;
    margin-inline: auto;
  }
  .excerptFlow-section {
  }
  .excerptFlow-section + .excerptFlow-section {
    margin-top: 2em;
  }
  .excerptFlow-section::before{
  }
  .excerptFlow-heading {
    height: 5em;
  }
  .excerptFlow-section:not(:last-child) .excerptFlow-heading::after {
    width: 3vw;
  }

  .excerptFlow-heading-title {
    color: var(--color-base);
    font-weight: 500;
    font-feature-settings: "palt";
    letter-spacing: 0.02em;
    line-height: 1.3;
  }
  .excerptFlow-heading-title i {
    margin-right: 0.8em;
    margin-left: -0.8em;
    scale: 1.4;
  }
  .excerptFlow-inner {
    padding: min(6vw,2em) min(5vw,1.5em);
  }
  .excerptFlow-img {
    width: 90%;
    max-width: 400px;
    margin-inline: auto;
  }
}

/***********
cta
************/

.cta {
  background-color: var(--color-brand01);
  color: var(--color-base);
  border: 3px solid var(--color-base);
  border-radius: 0.5em;
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.15);
  padding: min(10vw,3em) min(4vw,4%);
  text-align: center;
}
.cta-heading {
  text-align: center;
  padding-bottom: 2em;
}
.cta-heading-title {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  position: relative;
  border-bottom: 2px solid var(--color-base);
  padding: 0 0.5em 0.5em;
}
.cta-heading-title > img {
  width: 8em;
  position: absolute;
  left: calc(100% - 0.6em);
  bottom: -2px;
}
.cta-container {
}
.cta-block {
}
.cta-block + .cta-block {
  padding-top: 3em;
}

/*
tel
*/

.cta-tel {
  display: inline-block;
  padding-left: 2.2em;
  text-align: left;
  position: relative;
  white-space: nowrap;
  font-size: 2.5rem;
  font-feature-settings: "palt";
  color: inherit;
  text-decoration: none;
  position: relative;
}
.cta-tel::before {
  content: "TEL";
  font-family: var(--font-family-gothic-en);
  font-size: 60%;
  font-weight: 500;
  background-color: var(--color-dark01);
  color: var(--color-base);
  padding: 0 0.6em;
  border-radius: 0.2em;
  position: absolute;
  left: 0;
  top: 0.2em;
}
.cta-tel-num {
  color: inherit;
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}
.cta-tel-text {
  font-weight: 400;
  font-size: 45%;
  line-height: 1.2;
  padding-top: 0.2em;
}


@media screen and (max-width:640px) {

  .cta {
  }
  .cta-heading {
    text-align: center;
    padding-bottom: 2em;
  }
  .cta-heading-title {
    font-size: 1.2rem;
  }
  .cta-heading-title > img {
    width: 5em;
  }
  .cta-block + .cta-block {
    padding-top: 2em;
  }

  /*
  tel
  */

  .cta-tel {
    padding-left: 2.2em;
    font-size: 1.8rem;
  }

}



/***********
memberList
************/

.memberList {
}
.memberList li {
  display: flex;
  gap: 3em 4%;
  padding-bottom: 2em;
  border-bottom: 1px solid var(--color-sub03);
}
.memberList li:not(:last-child) {
  margin-bottom: 2em;
}
.memberList-img {
  width: clamp(120px,18%, 150px);
}
.memberList-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 14 / 16;
}
.memberList-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.memberList-heading {
  /* display: flex;
  justify-content: space-between;
  align-items: flex-start; */
}
.memberList-heading-inner {
}

.memberList-cat {
  display: flex;
  gap: 0.2em;
  flex-wrap: wrap;
  margin-bottom: 0.4em;
}
.memberList-cat span {
  display: inline-block;
  border: 1px solid var(--color-primary01);
  color: var(--color-primary01);
  font-weight: 500;
  font-size: 0.8rem;
  padding: 0.1em 0.8em;
  margin-bottom: 4px;
}

.memberList-pos {
  font-weight: 500;
  font-size: 0.8rem;
  padding-bottom: 0.2em;
}

.memberList-name {
  font-weight: 600;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}
.memberList-name-title {
  font-feature-settings: "palt";
  font-size: 1.3rem;
  padding-right: 0.6em;
  line-height: 1.3;
}
.memberList-name-title small {
  padding-right: 0.8em;
}
.memberList-name-subTitle {
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  font-size: 70%;
  opacity: 0.5;
  letter-spacing: 0;
  padding-top: 0.2em;
}

.memberList-link {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding-top: 0.8em;
}
.memberList-btn {
  display: inline-block;
  background-color: var(--color-brand01);
  color: inherit;
  font-family: var(--font-family-gothic-en);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0;
  text-decoration: none;
  padding: 0.3em 1em 0.2em;
  border-radius: 2em;
  white-space: nowrap;
}
.memberList-btn i {
  margin-right: 0.4em;
  margin-left: -0.2em;
}
body.is-pc .memberList-btn:hover {
  background-color: var(--color-brand02);
}

.memberList-data {
  margin-top: 1em;
}
.memberList-data dt {
  white-space: nowrap;
  padding-left: 1.5em;
  position: relative;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.3em;
}
.memberList-data dt::after {
  content: "";
  display: block;
  width: 1em;
  height: 3px;
  background: var(--color-primary01);
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
.memberList-data dd {
  font-size: 0.85rem;
  position: relative;
}

@media screen and (max-width:1024px) {

  .memberList-img {
    width: clamp(100px,20%, 140px);
  }
}

@media screen and (max-width:520px) {

  .memberList {
    max-width: 520px;
    margin: 0 auto;
  }
  .memberList li {
    display: block;
    padding-bottom: 3em;
  }
  .memberList-img {
    text-align: center;
    margin: 0 auto;
    width: 150px;
  }
  .memberList-inner {
    padding-left: 0;
    padding-top: 1.5em;
    text-align: center;
    display: block;
  }

  .memberList-heading {
    display: block;
  }

  .memberList-cat {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .memberList-name {
    display: block;
  }

  .memberList-link {
    display: flex;
    padding-top: 0.5em;
    justify-content: center;
  }

  .memberList-data {
    display: block;
    margin-top: 1em;
    text-align: left;
  }

}

/***********
member
************/

.member {
  margin-inline: auto;
}
.member-section {
  padding-block: min(7vw,2em) ;
  border-bottom: 1px solid var(--color-brand01);
}
.member-section:first-child {
  border-top: 1px solid var(--color-brand01);
}

.member-container {
  display: flex;
  flex-direction: row-reverse;
  gap: 0 2em;
}

.member-img {
  width: clamp(70px,15%, 150px);
}
.member-inner {
  flex: 1;
}
.member-heading {
}
.member-heading-job {
  display: flex;
  gap: 1px 3px;
  padding-bottom: 0.8em;
}
.member-heading-job span {
  display: inline-block;
  background-color: var(--color-brand01);
  color: var(--color-base);
  font-size: 0.7rem;
  padding: 0.1em 0.8em;
}

.member-name {
  font-size: 1.2rem;
  padding-bottom: 0.5em;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
}
.member-name-rank {
  display: inline-block;
  font-size: 65%;
  font-weight: 500;
  border: 1px solid var(--color-brand01);
  padding: 0em 0.4em;
  margin-right: 0.5em;
  vertical-align: middle;
}
.member-name-main {
  display: inline-block;
  padding-right: 0.4em;
  vertical-align: middle;
  line-height: 1.2;
}
.member-name-sub {
  display: inline-block;
  font-size: 60%;
  font-weight: 400;
  font-family: var(--font-family-gothic-en);
  letter-spacing: -0.04em;
  opacity: 0.6;
  vertical-align: middle;
}
.member-heading-pos {
  font-size: 0.85rem;
  font-weight: 500;
}

.member-box {
  background-color: rgba(0, 0, 0, 0.05);
  padding: min(5vw,1em) min(4vw,1.5em);
  margin-top: 1em;
  clear:both;
}

.member-subTitle {
  display: inline-block;
  color: var(--color-brand01);
  font-size: 1rem;
  margin-bottom: 0.5em;
}
.member-subTitle i {
  margin-right: 0.4em;
  scale: 1.1;
}

.member-text {
  font-size: 0.85rem;
  line-height: 1.6;
}

.member-link {
  padding-top: 0.8em;
  display: flex;
  gap: 0.1em 1.2em;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
}
.member-link a {
  display: inline-block;
  font-size: 0.8rem;
  padding-left: 1em;
  color: var(--color-brand03);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.3em;
  transition: 0.1s;
  position: relative;
}
.member-link 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: 50%;
  translate: 0 -50%;
}
body.is-pc .member-link a:hover {
  text-decoration-color: inherit;
  color: var(--color-brand01);
}


@media screen and (max-width:520px) {

  .member-section {
    display: block;
  }
  .member-section:first-child {
    border-top: 1px solid var(--color-brand01);
  }

  .member-section::after {
    content: "";
    display: block;
    clear: both;
  }

  .member-container {
    display: block;
  }

  .member-img {
    width: clamp(60px,25%, 80px);
    float: right;
    margin-left: 10px;
    margin-bottom: 8px;
  }
  .member-inner {
    flex: 1;
  }
  .member-heading {
  }
  .member-heading-job {
    gap: 1px 2px;
  }

  .member-name {
    font-size: 1.2rem;
    padding-bottom: 0.5em;
  }
  .member-name-sub {
    width: 100%;
    font-size: 75%;
    padding-top: 0.2em;
  }
  .member-heading-pos {
    width: 100%;
    font-size: 0.85rem;
    font-weight: 500;
  }

  .member-link a {
    font-size: 1rem;
    text-decoration-color: inherit;
    text-decoration-thickness: 2px;
  }

}
/***********
intvList
************/

.intvList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4em 4%;
}
.intvList li {
}
.intvList li a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.intvList-visual {
  padding-left: 2em;
}
.intvList-img {
}
.intvList-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}
.intvList-block {
  display: inline-block;
  min-width: 70%;
  max-width: 95%;
  position: relative;
  margin-top: -1.5em;
  z-index: 2;
  background-color: var(--color-base);
  padding: min(5vw,1.5em) min(5vw,2em);
}
.intvList-block::after {
  content: "";
  display: block;
  width: 6px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to bottom, var(--color-brand01) 10%, var(--color-brand02) 50%, var(--color-primary01) 90%);
}



.intvList-lead {
  font-weight: 600;
  font-feature-settings: "palt";
  font-size: 1.15rem;
  line-height: 1.4;
}


.intvList-data {
  padding-top: 0.8em;
}

.intvList-pos {
  font-weight: 500;
  font-size: 0.75rem;
  padding-bottom: 0.3em;
}

.intvList-name {
  font-weight: 600;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}
.intvList-name-title {
  font-feature-settings: "palt";
  font-size: 1.1rem;
  font-weight: 600;
  padding-right: 0.6em;
  line-height: 1.3;
}
.intvList-name-title small {
  padding-right: 0.8em;
}
.intvList-name-subTitle {
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  font-size: 65%;
  opacity: 0.5;
  letter-spacing: 0;
  padding-top: 0.2em;
}



.intvList-member {
  border-top: 1px solid var(--color-sub02);
  padding-top: 1.5em;
  font-size: 0.75rem;
}
.intvList-member-item {
}
.intvList-member-item + .intvList-member-item {
  padding-top: 0.8em;
}
.intvList-member-pos {
}
.intvList-member-name {
  font-size: 130%;
  font-weight: 500;
}
.intvList-member-name small {
  display: inline-block;
  padding-left: 0.3em;
  font-size: 70%;
}



@media screen and (max-width:834px) {

  .intvList {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2em 0;
  }
  .intvList li {
  }
  .intvList li a {
  }
  .intvList-visual {
    padding-left: 2em;
  }
  .intvList-img {
  }
  .intvList-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 9;
  }
  .intvList-block {
    margin-top: -1.5em;
    border-width: 3px;
  }
  .intvList-lead {
    font-size: 1rem;
    line-height: 1.5;
  }

  .intvList-pos {
    font-weight: 500;
    font-size: 0.7rem;
  }

  .intvList-name {
  }
  .intvList-name-title {
    font-size: 0.9rem;
  }
  .intvList-name-title small {
    padding-right: 0.8em;
  }
  .intvList-name-subTitle {
    font-family: var(--font-family-gothic-en);
    font-weight: 600;
    font-size: 65%;
    opacity: 0.5;
    letter-spacing: 0;
    padding-top: 0.2em;
  }

}

/***********
intvHeader
************/

.intvHeader {
  display: flex;
  background: linear-gradient(to bottom, #bec50022 0%, transparent 95%);
}
.intvHeader-visual {
  width: 50%;
}
.intvHeader-img {
}
.intvHeader-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}
.intvHeader-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.intvHeader-inner-box {
}

.intvHeader-block {
  display: inline-block;
  min-width: 70%;
  position: relative;
  margin-top: -1.5em;
  z-index: 2;
  background-color: var(--color-base);
  padding: min(5vw,2.5em) min(5vw,3em);
  translate: -3em 1em ;
}
.intvHeader-block::after {
  content: "";
  display: block;
  width: 6px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to bottom, var(--color-brand01) 10%, var(--color-brand02) 50%, var(--color-primary01) 90%);
}
.intvHeader-lead {
  font-size: clamp(1.3rem,2vw, 1.7rem);
  font-weight: 700;
}


.intvHeader-data {
  padding-top: 1em;
}
.intvHeader-pos {
  font-weight: 500;
  padding-bottom: 0.4em;
}
.intvHeader-name {
  font-weight: 600;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}
.intvHeader-name-title {
  font-feature-settings: "palt";
  font-size: 140%;
  font-weight: 600;
  padding-right: 0.6em;
  line-height: 1.3;
}
.intvHeader-name-title small {
  padding-right: 0.8em;
  font-size: 70%;
}
.intvHeader-name-subTitle {
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  font-size: 65%;
  opacity: 0.5;
  letter-spacing: 0;
  padding-top: 0.2em;
}


.intvHeader-member {
  border-top: 1px solid var(--color-sub02);
  padding-top: 1.5em;
  margin-top: 1.5em;
  font-size: 0.85rem;
}
.intvHeader-member-item {
}
.intvHeader-member-item + .intvHeader-member-item {
  padding-top: 0.8em;
}
.intvHeader-member-pos {
}
.intvHeader-member-name {
  font-size: 130%;
  font-weight: 500;
}
.intvHeader-member-name small {
  display: inline-block;
  padding-left: 0.3em;
  font-size: 70%;
}


@media screen and (max-width:834px) {

  .intvHeader {
    display: block;
    background: linear-gradient(to bottom, #bec50022 0%, transparent 95%);
  }
  .intvHeader-visual {
    width: auto;
  }
  .intvHeader-img {
  }
  .intvHeader-img img {
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 11;
  }
  .intvHeader-inner {
    display: block;
  }
  .intvHeader-inner-box {
    padding-left: 2vw;
  }

  .intvHeader-block {
    display: inline-block;
    min-width: 70%;
    max-width: 95%;
    position: relative;
    margin-top: -1.5em;
    z-index: 2;
    padding: min(5vw,1.5em) min(5vw,2em);
    translate: 0 0 ;
  }
  .intvHeader-block::after {
  }
  .intvHeader-lead {
    font-size: clamp(1.15rem,5vw, 1.3rem);
  }
  .intvHeader-lead br {
    display: none;
  }


  .intvHeader-data {
    margin-top: 1em;
    font-size: 0.85rem;
  }

  .intvHeader-member {
    font-size: 0.75rem;
    margin-top: 0;
  }

}



/***********
back
************/

.back {
  padding-top: var(--padding-main);
  margin-top: var(--padding-main);
  border-top: 2px solid var(--color-sub03);
  text-align: center;
}

/***********
xxxxx
************/
