@charset "utf-8";

/* CSS Document */


.innerContents > section.l-block:last-of-type {
  padding-bottom: var(--padding-large);
}

/***********
pageHeading
************/

.pageHeading {
  height: 20em;
  overflow: hidden;
  position: relative;
  z-index: 2;
  color: var(--color-base);
  font-size: clamp(20px,1.6vw, 30px);
}


.pageHeading-container {
  height: 100%;
  display: flex;
}

.pageHeading-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: clamp(260px,26%, 650px);
}
.pageHeading-logo-img {
  width: clamp(200px,60%, 400px);
  margin-inline:auto;
}

.pageHeading-block{
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pageHeading-block-inner {
  position: relative;
  z-index: 9;
  padding-left: 8%;
}


.pageHeading-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.pageHeading-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pageHeading-img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.22);
}

.pageHeading-parent {
  font-size: max(40%,15px);
  padding-bottom: 0.8em;
}
.pageHeading-parent-text {
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  padding: 0.1em 1.5em;
  display: inline-block;
  border: 1px solid var(--color-base);
}

.pageHeading-subTitle {
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  font-size: 190%;
  letter-spacing: 0;
  line-height: 1;
  position: relative;
}

.pageHeading-title {
  font-weight: 500;
  font-size: 100%;
  font-feature-settings: "palt";
  line-height: 1.3;
  padding-top: 0.5em;
}

@media screen and (max-width:834px) {

  .pageHeading {
    height: 18em;
    font-size: clamp(14px,3.6vw, 20px);
    position: relative;
  }

  .pageHeading-container {
    display: block;
  }

  .pageHeading-logo {
    display: block;
    left: 15px;
    top: 10px;
    width: 8rem;
    position: absolute;
    z-index: 99;
  }
  .pageHeading-logo-img {
    width: auto;
    filter: invert(1) brightness(500%);
  }

  .pageHeading-block{
    height: 100%;
    display: flex;
    padding-top: 50px;
  }
  .pageHeading-block-inner {
    padding-left: 5%;
  }

  .pageHeading-parent {
    font-size: max(35%,12px);
  }
  .pageHeading-parent-text {
    padding: 0.1em 1em;
  }

  .pageHeading-subTitle {
    font-size: 220%;
    letter-spacing: -0.02em;
  }

  .pageHeading-title {
    font-weight: 500;
    font-size: 100%;
    font-feature-settings: "palt";
    line-height: 1.3;
  }

}

/***********
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(4vw,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-main);
  border-radius: 50%;
  text-decoration: none;
  text-align: center;
  font-family: var(--font-family-serif);
  font-weight: 600;
  font-size: 1.3rem;
  margin: 0 5px;
}
.pagination a {
  background-color: var(--color-base);
  box-shadow: 0 0 0 1px var(--color-main) 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: -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;
  padding-left: 3em;
}
.article-heading::after {
  content: "";
  display: block;
  width: 1rem;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--color-main);
}

.article-heading-data {
  display: flex;
  align-items: center;
  padding-bottom: 0.5em;
}
.article-heading-time {
  display: inline-block;
  white-space: nowrap;
  padding-right: 1em;
  font-weight: 500;
  font-family: var(--font-family-gothic-en);
  font-size: 1.2rem;
}
.article-heading-cat {
  margin: 0.1em;
}

.article-heading-title {
  font-weight: 600;
  font-size: clamp(1.5rem,2vw, 2rem);
}


.article-status {
  padding-bottom: 0.5em;
}

.article-status-task {
  display: inline-block;
  font-size: max(85%,13px);
  font-weight: 500;
  font-size: 1.1rem;
  font-family: var(--font-family-gothic);
  background-color: var(--color-main);
  color: var(--color-base);
  padding: 0.1em 1em;
  min-width: 6em;
  text-align: center;
  position: relative;
  white-space: nowrap;
}
.article-status-task.-close {
  background-color: var(--color-main);
}
.article-status-task.-open {
  background-color: #8a0303;
}
.article-status-task.-soon {
  background-color: #af6e2f;
}



@media screen and (max-width:640px) {

  .article {
    margin-bottom: 2em;
  }
  .article-heading {
    margin-bottom: 3em;
    padding-left: 2em;
    margin-left: -4vw;
  }

  .article-heading-data {
    padding-bottom: 0.5em;
  }
  .article-heading-time {
    font-size: 1rem;
    padding-right: 0.5em;
  }
  .article-heading-cat {
    font-size: 0.8rem;
  }

  .article-heading-title {
    font-size: 1.4em;
  }

}

/***********
post
************/

.post {
  font-family: var(--font-family-gothic);
}

.post p:not([class]) {
  line-height: 2;
}
.post p:not([class]) + p {
  padding-top: 1em;
}

.post h2:not([class]) {
  font-size: clamp(1.4rem,2vw, 1.7rem);
  font-weight: 600;
  font-family: var(--font-family-serif);
  background-color: var(--color-sub04);
  border-left: 6px solid var(--color-main);
  margin: 2.5em 0 1em 0;
  padding: 0.5em 1em ;
  line-height: 1.4;
  position: relative;
}

.post h3:not([class]) {
  font-size: clamp(1.35rem,1.8vw, 1.6rem);
  font-weight: 600;
  font-family: var(--font-family-serif);
  margin: 2.5em 0 0.8em 0;
  padding-bottom: 0.6em;
  line-height: 1.4;
  border-bottom: 1px solid var(--color-brand01);
  position: relative;
}

.post h4:not([class]) {
  font-size: clamp(1.35rem,1.6vw, 1.4rem);
  font-weight: 600;
  font-family: var(--font-family-serif);
  line-height: 1.4;
  border-block: 2px solid var(--color-brand01);
  padding: 0.6em 0 ;
  margin: 2.5em 0 0.8em 0;
}
.post h5:not([class]) {
  font-size: 1.3rem;
  font-weight: 600;
  font-family: var(--font-family-serif);
  margin: 2.5em 0 1em 0;
  padding: 0.4em 1.2em;
  line-height: 1.4;
  background-color: var(--color-dark01);
  color: var(--color-base);
  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.3rem;
  font-weight: 600;
  font-family: var(--font-family-serif);
  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 h2:not([class]) {
    border-left-width: 2px;
  }

  .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 {
  font-family: var(--font-family-gothic);
  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;
  font-family: var(--font-family-gothic);
}

.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 {
  font-weight: 500;
  font-family: var(--font-family-gothic);
}
.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 {
  font-weight: 500;
  font-family: var(--font-family-gothic);
}
.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-brand01);
}
.siteLink a[target*="_blank"]::after {
  content: "\f08e";
  color: var(--color-brand01);
}

/***********
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-dark01);
  color: var(--color-base);
}

@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 2.5%;
}
.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 {
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 11;
}

.card-inner {
  padding-top: 1em;
}
.card-data {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 0.5em;
}
.card-time {
  display: inline-block;
  padding-right: 0.5em;
  font-weight: 600;
  font-family: var(--font-family-gothic-en);
  white-space: nowrap;
}
.card-cat {
  font-size: 0.8rem;
  margin: 1px;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
}


/*
carousel
*/

.carouselWrapper {
  width: 100vw;
}
.carouselWrapper-inner {
}

.card.-carousel .slick-list {
  overflow: visible !important;
  translate: 10vw 0;
  transition: translate 0.7s ease 0.2s , opacity 0.7s ease 0.2s;
  opacity: 0;
}
.carouselWrapper-inner.is-show  .slick-list{
  translate: 0 0;
  opacity: 1;
}

.card.-carousel {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  position: relative;
  padding-bottom: 6em;
}
.card.-carousel li {
  width: auto;
  margin: 0;
}
.card.-carousel li a {
  width: clamp(300px,22vw, 600px);
  margin-right: 2vw;
}
.card.-carousel .card-title {
  max-height: calc(2em * 1.5);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/*
slick
*/

.carouselWrapper .slick-next,
.carouselWrapper .slick-prev{
  position: absolute;
  bottom: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 4em;
  height: 4em;
  background-color: var(--color-dark01);
  color: var(--color-base);
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: 0.2s;
}
.carouselWrapper .slick-next{
  left: 5em;
}
.carouselWrapper .slick-prev{
  left: 0;
}

.carouselWrapper .slick-next:hover,
.carouselWrapper .slick-prev:hover{
  background-color: var(--color-brand01);
  color: var(--color-base);
}

@media screen and (max-width:1024px) {

  .card.-quarter {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media screen and (max-width:834px) {

  .card,
  .card.-quarter,
  .card.-half {
    grid-template-columns: repeat(2, 1fr);
    gap: 3em 2.5%;
  }

  /*
  carousel
  */

  .carouselWrapper {
    width: auto;
    overflow: auto;
    padding-left: 4vw;
    margin-left: -3.2vw;
    margin-right: -3.2vw;
  }
  .carouselWrapper-inner {
    translate: 50vw 0;
    transition: translate 0.7s ease 0.2s , opacity 0.7s ease 0.2s;
    opacity: 0;
  }
  .carouselWrapper-inner.is-show {
    translate: 0 0;
    opacity: 1;
  }

  .card.-carousel {
    display: flex;
    gap: 0;
  }
  .card.-carousel li {
  }
  .card.-carousel li a {
    width: 240px;
    margin-right: 10px;
  }
  .card.-carousel .card-inner {
  }

  .card.-carousel .card-cat {
    font-size: 0.7rem;
  }
  .card.-carousel .card-title {
    font-size: 0.9rem;
  }

  .card:not(.-carousel) .card-inner {
  }
  .card:not(.-carousel) .card-cat {
  }
  .card:not(.-carousel) .card-title {
  }
}

@media screen and (max-width:520px) {

  .card,
  .card.-quarter,
  .card.-half {
    grid-template-columns: repeat(1, 1fr);
    gap: 3em 2.5%;
  }

}

/***********
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;
}
.basicCard-inner {
  padding-top: 1.5em;
}

@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: 1px solid var(--color-main);
  background-color: var(--color-base);
  padding: min(5vw,1em) min(5vw,1em) min(5vw,2em);

}
.standardCard li > a{
  display: block;
  color: inherit;
  text-decoration: none;
}

.standardCard-inner {
  margin-top: 0.8em;
}
.standardCard-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.standardCard-title {
  font-size: 1.2rem;
  font-weight: 600;
}
.standardCard-subTitle {
  font-family: var(--font-family-serif);
  font-weight: 500;
  font-size: 0.8rem;
  padding-top: 0.2em;
  line-height: 1.3;
}
.standardCard-text {
  font-size: 0.9rem;
  font-family: var(--font-family-gothic);
  line-height: 1.7;
  padding-top: 0.8em;
}

@media screen and (max-width:834px) {

  .standardCard ,
  .standardCard.-quarter ,
  .standardCard.-half {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5em;
  }

  .standardCard li {
    padding: min(5vw,2em) min(4vw,0.8em) min(8vw,2em);
  }
  .standardCard-title {
    font-size: 1.3rem;
  }
  .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.-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);
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 0 6%;
  padding: min(6vw,2.5em) min(5vw,3em);
  position: relative;
}
.split-section + .split-section {
  margin-top: 4em;
}
.split-img {
  width: 46%;
}
.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-serif);
  font-weight: 500;
  color: var(--color-brand01);
  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(280px,30%, 300px);
}
.segmented-heading .l-headline-title {
  font-size: 1rem;
}
.segmented-inner {
  flex: 1;
}
.segmented-link {
  padding-top: 1em;
}

.segmented-link .l-btn {
  min-width: 11em;
}

@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: inherit;
  }

}

/***********
newsList
************/

.newsList {
}
.newsList li {
  position: relative;
  border-bottom: 1px solid var(--color-sub03);
}
.newsList li:first-child {
  border-top: 1px solid var(--color-sub03);
}
.newsList li::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -1px;
  background-color: var(--color-main);
  transform: scaleX(0);
  transition: transform 0.8s ease;
  transform-origin: right center;
}
body.is-pc .newsList li:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.newsList a {
  display: flex;
  align-items: center;
  width: 100%;
  color: inherit;
  text-decoration: none;
  padding: 1.5em 1em 1.5em 0;
  transition: 0.3s;
  position: relative;
}
body.is-pc .newsList a:hover {
  translate: 0.2em 0;
  color: var(--color-dark01);
}
.newsList-time {
  display: inline-block;
  width: 7em;
  white-space: nowrap;
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  color: var(--color-brand02);
}
.newsList-cat {
  min-width: 8em;
  text-align: center;
  font-size: 80%;
}
.newsList-title {
  flex: 1;
  padding-left: 2em;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3em;
  transition: 0.2s;
}

@media screen and (max-width:834px) {

  .newsList {
  }
  .newsList li {
  }
  .newsList li + li {
  }
  .newsList a {
    display: block;
    padding: 1.2em 0;
  }
  body.is-pc .newsList a:hover {
  }
  .newsList-time {
    display: inline-block;
    width: initial;
    font-size: 95%;
    margin-right: 0.5em;
  }
  .newsList-cat {
    font-size: 75%;
    min-width: initial;
    padding: 0.1em 0.5em;
  }
  .newsList-title {
    padding-left: 0;
    padding-top: 0.8em;
    font-family: var(--font-family-gothic);
  }
  body.is-pc .newsList-title:hover {
  }

}


/***********
faqSection
************/

.faqSection {
}
.faqSection-item {
  position: relative;
  margin-bottom: 1em;
}
.faqSection-heading {
  font-size: 1.2rem;
  font-weight: 500;
  background-color: var(--color-base);
  box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.15);
  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;
  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: 1.1rem;
    padding: 0.8em 2.5em 0.8em 4.5rem;
    min-height: 3.5em;
  }
  .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.05);
  padding: min(7vw,2.5em) min(4vw,3em);
  position: relative;
}
.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.8rem;
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  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 {
}
.flow-inner {
  flex: 1;
  position: relative;
}
.flow-title {
  font-weight: 600;
  font-size: 1.4rem;
}
.flow-subTitle {
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  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;
}
.intro-inner {
  flex: 1;
  padding-top: 5vw;
}
.intro-box {
  padding: min(6vw,4em) 10%;
  background-color: var(--color-base);
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.05);
  position: relative;
  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, 260px);
}
body.is-pc .bannerList li a:hover {
  opacity: 0.8;
}

/***********
pageList
************/

.pageList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2em 2%;
  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;
  background-color: var(--color-base);
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.05);
  padding: min(3vw,0.8em) min(3vw,0.8em) min(8vw,4em);
  position: relative;
}
.pageList 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;
  color: var(--color-brand01);
  content: "\f04b";
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  background-color: var(--color-main);
  color: var(--color-base);
  width: 7em;
  height: 3.5em;
  font-size: 33%;
  border-radius: 2em;
  transition: opacity 0.2s ease;
}
body.is-pc .pageList li a:hover::after {
  opacity: 0.7;
}


.pageList-img:has(img[src*=".png"]) {
  width: 85%;
  margin: 0 auto;
}
.pageList-img img {
}
.pageList-inner {
  padding-top: 1em;
  padding-inline: 0.8em;
}
.pageList-heading {
  text-align: center;
}
.pageList-title {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
  position: relative;
}
.pageList-subTitle {
  font-weight: 600;
  font-family: var(--font-family-gothic-en);
  font-size: 0.8rem;
  color: var(--color-brand01);
  line-height: 1.2;
  padding-top: 0.2em;
}

.pageList-text {
  font-family: var(--font-family-gothic);
  font-size: 0.9rem;
  line-height: 1.7;
  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 {
  }

  .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.3rem;
  }
  .pageList-text {
  }
}


@media screen and (max-width:520px) {

  .pageList ,
  .pageList.-trisect,
  .pageList.-half {
    grid-template-columns: repeat(1, 1fr);
  }

  .pageList li a::after {
    display: none;
  }


  .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%;
  }
}

/***********
statusTable
************/

.statusTable {
  width: 100%;
  border: 1px solid var(--color-dark01);
  background-color: var(--color-base);
  font-family: var(--font-family-gothic);
  font-feature-settings: "palt";
  font-size: 0.9rem;
}
.statusTable thead {
  background-color: var(--color-main);
  color: var(--color-base);
}
.statusTable thead th {
  border: 1px solid #555;
  font-weight: 400;
  font-size: 90%;
  padding: 0.8em 1em;
}
.statusTable tbody tr {
  border-bottom: 1px solid var(--color-main);
  transition: 0.1s;
}
body.is-pc .statusTable tbody tr:not(.is-close):hover {
  background-color: rgba(134, 92, 7, 0.05);
}
.statusTable tbody td {
  padding: 1.2em 1em;
}

.statusTable tbody td:nth-child(1){
  text-align: center;
  width: 7em;
  padding-inline: 0;
}
.statusTable tbody td:nth-child(2){
  text-align: center;
  width: 6em;
  white-space: nowrap;
}
.statusTable tbody td:last-child{
  text-align: center;
  width: 8em;
  white-space: nowrap;
}


.statusTable-task {
  display: inline-block;
  font-size: max(85%,13px);
  background-color: var(--color-main);
  color: var(--color-base);
  padding: 0.3em 0.5em;
  min-width: 6em;
  text-align: center;
  position: relative;
  white-space: nowrap;
}
.statusTable-task::after {
  content: "";
  display: block;
  width: 0.8em;
  height: 100%;
  position: absolute;
  left: calc(100% - 1px);
  top: 50%;
  translate: 0 -50%;
  background-color: inherit;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);

}
.statusTable-task.-close {
  background-color: #888;
}
.statusTable-task.-open {
  background-color: #8a0303;
}
.statusTable-task.-soon {
  background-color: #af6e2f;
}

.statusTable-link {
}
.statusTable-btn {
  display: inline-block;
  background-color: var(--color-main);
  color: var(--color-base);
  border-radius: 3px;
  text-decoration: none;
  font-size: max(80%,13px);
  padding: 0.4em 1em;
}
body.is-pc .statusTable-btn:hover {
  background-color: var(--color-brand01);
}

@media screen and (max-width:640px) {

  .statusTable ,
  .statusTable thead,
  .statusTable tbody,
  .statusTable tfoot,
  .statusTable tr,
  .statusTable th,
  .statusTable td{
    display: block;
    width: auto;
    background-color: transparent;
    letter-spacing: 0;
  }

  .statusTable {
    border: none;
    font-size: 0.82rem;
    font-size: clamp(0.8rem,3.3vw, 1rem);
  }
  .statusTable thead {
    display: none;
  }

  .statusTable tbody tr {
    border: 1px solid var(--color-main);
    background-color: var(--color-base);
    padding: min(7vw,1.5em) min(2vw,0.5em) min(7vw,1.5em) 2.5em;
    margin-bottom: 1em;
    position: relative;
  }
  body.is-pc .statusTable tbody tr:not(.is-close):hover {
    background-color: rgba(134, 92, 7, 0.05);
  }
  .statusTable tbody td {
    padding: 0;
  }

  .statusTable tbody td:nth-child(1){
    width: auto;
  }
  .statusTable tbody td:nth-child(2){
    text-align: left;
    width: auto;
    white-space: nowrap;
  }
  .statusTable tbody td:last-child{
    text-align: left;
    width: auto;
    white-space: nowrap;
  }


  .statusTable-task {
    font-size: max(85%,13px);
    padding: 0.3em 1px 0.3em 0;
    font-weight: 500;
    min-width: 1.5em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    letter-spacing: 0.3em;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .statusTable-task::after {
    display: none;
  }


  .statusTable-data {
    display: block;
    position: relative;
    padding: 0em 0 0.1em 3.8em;
    margin-bottom: 0.5em;
    position: relative;
  }
  .statusTable-data::before {
    content: attr(data-text)"";
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    border: 1px solid var(--color-main);
    width: 4em;
    padding: 0.2em 0;
    font-size: 80%;
    text-align: center;
  }

  .statusTable-data.-block {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: start;
  }
  .statusTable-data.-block::before {
    position: static;
    margin-bottom: 0.4em;
  }


  .statusTable-link {
    display: block;
    text-align: right;
    padding-top: 0.5em;2
  }
  .statusTable-btn {
    font-size: max(90%,13px);
  }

}

/***********
statusControl
************/

.statusControl {
  text-align: right;
  padding-bottom: 1em;
}
.statusControl label{
  font-family: var(--font-family-gothic);
  font-weight: 500;
  cursor: pointer;
}
.statusControl label input {
  margin-right: 0.5em;
  scale: 1.3;
}


/***********
back
************/

.back{
  padding-block: var(--padding-small);
  text-align: center;
}
.back-btn {
  display: inline-block;
  width: auto;
  min-width: 16em;
  padding: 1em 0 1em 0;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: var(--font-family-serif);
  text-decoration: none !important;
  text-align: center;
  line-height: 1.35;
  color: var(--color-main);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
  position: relative;
}
body.is-pc .back-btn:hover {
  border-color: var(--color-main);
}

/***********
archiveList
************/

.archiveList {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.archiveList li {
}
.archiveList li a {
  display: inline-block;
  color: inherit;
  background-color: var(--color-base);
  padding: 1em 1.5em;
  font-family: var(--font-family-gothic);
  text-decoration: none;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
  transition: 0.3s;

}
body.is-pc .archiveList li a:hover {
  text-decoration-color: inherit;
}


/***********
statusSep
************/

.statusSep {
  display: flex;
  align-items: end;
}
.statusSep-inner {
  flex: 1;
}

/***********
pageNavi
************/

.pageNavi {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 2em;
}
.pageNavi li:not(:last-child)::after{
  content: "|";
  padding: 0 0.8em;
}
.pageNavi li a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
  transition: 0.3s;
  padding: 0.2em 0;
  font-size: 1.1rem;
}
.pageNavi li a:hover {
  text-decoration-color: inherit;
}


/***********
mapBtn
************/

a.mapBtn {
  color: inherit;
  font-size: 0.85rem;
}
a.mapBtn i {
  margin-right: 0.2em;
  scale: 1.1;
}


/***********
mincta
************/

.mincta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8em 0.6em;
  align-items: center;
  padding-top: 0.5em;
}
.mincta-item {
}

a.mincta-tel {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  min-height: 2.6rem;
  padding: 0.1em 0.6em;
  font-size: clamp(1.1rem,3.4vw, 1.3rem);
  font-weight: 600;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border: 1px solid var(--color-main);
  border-radius: 5px;
  color: inherit;
  text-decoration: none;
}

a.mincta-reservation {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  min-height: 2.6rem;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid var(--color-main);
  text-decoration: none;
  color: var(--color-base);
  background-color: var(--color-main);
  padding: 0.1em 1.2em;
}
a.mincta-reservation i {
  margin-right: 0.5em;
  scale: 1.1;
  opacity: 0.6;
}
body.is-pc a.mincta-reservation:hover {
  background-color: var(--color-dark01);
}


/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/
