@charset "utf-8";

/* CSS Document */


.innerContents {
  padding-top: var(--header-height);
}

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

.pageHeading {
}

/***********
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-gothic-en);
  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;
}

.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: 600;
  font-family: var(--font-family-gothic-en);
  font-size: 1.2rem;
}
.article-heading-cat {
  margin: 0.1em;
}

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

@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: 1rem;
    padding-right: 0.5em;
  }
  .article-heading-cat {
    font-size: 0.8rem;
  }

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

}

/***********
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.5rem);
  background-color: var(--color-brand01);
  color: var(--color-base);
  border-radius: 0.5rem;
  margin: 2.5em 0 0.8em 0;
  padding: 0.6em 1em;
  line-height: 1.4;
  position: relative;
}

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

.post h4:not([class]) {
  font-size: clamp(1.15rem,1.6vw, 1.3rem);
  line-height: 1.4;
  border-left: 5px solid var(--color-brand01);
  padding: 0.5em 0 0.5em 0.8em;
  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;
}


/***********
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;
  }

}


/***********
tickerSlide
************/

.tickerSlide {
  position: relative;
}

.tickerSlide-slider {
  opacity: 0;
  transition: opacity .1s ease;
}
.tickerSlide-slider.slick-initialized {
  opacity: 1;
}

.tickerSlide-slider {
}
.tickerSlide-slider li {
}
.tickerSlide-slider .slick-slide {
  margin: 0 0.8em;
}
.tickerSlide-slider .slick-list {
  margin: 0 -0.8em;
}

.tickerSlide-slider li a{
  display: block;
  color: inherit;
  text-decoration: none;
  width: clamp(260px,30vw, 445px);
  position: relative;
}
.tickerSlide-slider li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: url(../../img/icon/play.png) no-repeat center center / 50px auto;
  background-color: #0004;
  opacity: 0;
  transition: 0.4s;
}
body.is-pc .tickerSlide-slider li a:hover::after {
  opacity: 0.8;
}
.tickerSlide-slider-img {
  position: relative;
  box-shadow: 0 0.2em 0.6em #0002;
  margin-bottom: 1em;
}
.tickerSlide-slider-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}


.tickerSlide-control {
  display: flex;
  justify-content: end;
  gap: 0 1em;
  padding-bottom: 1.5em;
  margin-top: -2em;
}

.tickerSlide .slick-prev,
.tickerSlide .slick-next {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: var(--color-base);
  background: url(../../img/icon/arrow_wt.png) no-repeat center center / 40% auto;
  background-color: var(--color-dark01);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 300;
  width: 2em;
  height: 2em;
  cursor: pointer;
}
.tickerSlide .slick-next {
}
.tickerSlide .slick-prev {
  rotate: 180deg;
}

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

  .tickerSlide-slider .slick-slide {
    margin: 0 0.5em;
  }
  .tickerSlide-slider .slick-list {
    margin: 0 -0.5em;
  }

  .tickerSlide-slider li a{
    display: block;
    color: inherit;
    text-decoration: none;
    width: clamp(200px,75vw, 320px);
  }

  .tickerSlide-control {
    gap: 0 0.5em;
    padding-bottom: 1em;
    margin-top: 0;
  }

  .tickerSlide .slick-prev,
  .tickerSlide .slick-next {
    font-size: 1.1rem;
  }

}


/***********
refine
************/

.refine {
}
.refine-heading {
  background-color: var(--color-brand01);
  color: var(--color-base);
  padding: 0.7em 1em;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.refine-container {
  background-color: var(--color-base);
}
.refine-container-inner {
  padding: min(6vw,2em) min(4vw,3em);
}
.refine-section {
}
.refine-section + .refine-section {
  padding-top: 2.5em;
}
.refine-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-brand01);
  letter-spacing: 0.05em;
  padding-bottom: 0.5em;
  margin-bottom: 0.8em;
  border-bottom: 1px solid var(--color-brand01);
}

.refine-box {
}
.refine-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6em 0.8em;
}
.refine-choice label {
  display: inline-block;
  border: 2px solid var(--color-sub02);
  border-radius: 2em;
  font-weight: 500;
  padding: 0.1em 0.6em;
  position: relative;
  cursor: pointer;
  transition: 0.1s;
}
.refine-choice label:has(input:checked) {
  border-color: var(--color-brand01);
  background-color: var(--color-brand01);
  color: var(--color-base);
}
.refine-choice label input {
  position: absolute;
  opacity: 0;
}
body.is-pc .refine-choice label:hover {
  border-color: var(--color-brand01);
}


.refine-keyword {
  padding-top: 0.6em;
}
.refine-keyword-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  border: 1px solid #888;
  width: 100%;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: var(--font-family-gothic);
  min-height: 2.2em;
  padding: 0 0.8em;
  outline: none;
}
.refine-keyword-input:focus {
  box-shadow: 0 0 0.5em #08f6;
}

.refine-submit {
  padding-top: 3em;
  padding-bottom: 2em;
  display: flex;
  justify-content: center;
  gap: 1em
}
.refine-submit-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--font-family-gothic);
  font-weight: 500;
  background-color: var(--color-dark01);
  color: var(--color-base);
  border-radius: 3em;
  padding: 0.6em 2em;
  text-align: center;
  transition: 0.2s;
}
.refine-submit-btn.-submit {
  min-width: 16em;
}
body.is-pc .refine-submit-btn.-submit:hover {
  background-color: var(--color-brand01);
}
.refine-submit-btn.-reset {
  background-color: var(--color-sub02);
  color: var(--color-dark01);
}
body.is-pc .refine-submit-btn.-reset:hover {
  background-color: #d5d5d5;
}

.refine-caution {
  padding: 1.5em min(5vw,2em);
  background-color: #af1d3b11;
}
.refine-caution-text {
  font-size: 0.85rem;
}
.refine-caution-text a {
  color: var(--color-brand01);
}
.refine-caution-text a i {
  scale: 0.8;
}



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

  .refine {
  }
  .refine-heading {
    font-size: 1.15rem;
    position: relative;
  }
  .refine-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: "\f078";
    position: absolute;
    right: 1.2em;
    top: 50%;
    translate: 0 -50%;
    scale: 1.1;
  }
  .refine-heading.is-active::after {
    rotate: 180deg;
  }
  .refine-container {
    display: none;
  }


  .refine-section + .refine-section {
    padding-top: 1.5em;
  }
  .refine-title {
    font-size: 1.05rem;
  }

  .refine-box {
  }
  .refine-choice {
    gap: 0.4em 0.4em;
  }
  .refine-choice label {
    border-width: 1px;
    padding: 0.4em 0.6em;
    font-size: 0.8rem;
    font-feature-settings: "palt";
    font-weight: 400;
    font-family: sans-serif;
  }


  .refine-keyword {
    padding-top: 0.2em;
  }
  .refine-keyword-input {
    font-size: 16px;
    min-height: 2.8em;
  }

}

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

  .refine-submit {
    padding-top: 2em;
    padding-bottom: 2em;
    display: flex;
    justify-content: center;
    gap: 0.4em
  }
  .refine-submit-btn {
    padding: 0.8em 1em;
    white-space: nowrap;
  }
  .refine-submit-btn.-reset {
    width: 8em;
  }
  .refine-submit-btn.-submit {
    flex: 1;
    max-width: 14em;
    min-width: initial;
  }

}

/***********
card
************/

.card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3em 3%;
  font-weight: 500;
}
.card li {
}
.card-container {
  background-color: var(--color-base);
}
.card-visual {
  border-bottom: 6px solid var(--color-dark01);
}
.card-visual a {
  display: block;
  color: inherit;
  text-decoration: none;
  position: relative;
}
.card-visual a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: url(../../img/icon/play.png) no-repeat center center / 50px auto;
  background-color: #0004;
  opacity: 0;
  transition: 0.4s;
}
body.is-pc .card-visual a:hover::after {
  opacity: 0.8;
}
.card-img {
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.card-inner {
  padding: min(5vw,1em) min(4vw,1em);
  background-color: var(--color-base);
}
.card-cat {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  font-size: 0.85rem;
  font-weight: 500;
  padding-bottom: 0.8em;
}
.card-cat span {
  display: inline-block;
}
.card-cat span:not(:last-child)::after {
  content: "/";
  padding: 0 0.2em;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.card-name {
  padding-top: 1em;
  font-size: 0.9rem;
  line-height: 1.6;
}
.card-name small{
  display: block;
  font-size: 85%;
}
.card-name span{
  display: block;
}

.card-tags {
  border-top: 1px solid var(--color-sub03);
  background-color: var(--color-base);
  padding: min(5vw,1.2em) min(4vw,1em);
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 0.5em;
  font-size: 0.7rem;
  font-weight: 500;
}
.card-tags span{
  display: inline-block;
  background-color: var(--color-sub01);
  border-radius: 4px;
  padding: 0.1em 0.8em;
}

.card-link {
  border-top: 1px solid var(--color-sub03);
  background-color: var(--color-sub03);
  display: flex;
  gap: 1px;
}
.card-link-item {
  flex: 1;
}
.card-link-item a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  height: 100%;
  text-align: center;
  background-color: var(--color-base);
  color: inherit;
  text-decoration: none;
  font-size: 0.85rem;
  min-height: 3.6em;
  padding-top: 0.1em;
  white-space: nowrap;
  transition: 0.1s;
}
.card-link-item a img {
  width: 1.8em;
  vertical-align: middle;
  margin-right: 0.6em;
  margin-left: -0.3em;
  translate: 0 -5%;
}
body.is-pc .card-link-item a:hover {
  border-bottom: 3px solid var(--color-brand01);
}

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

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

}

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

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

}

/***********
infiniteLoading
************/

.infiniteLoading {
  padding-top: var(--padding-main);
  padding-bottom: 4em;
  text-align: center;
}

.infiniteLoading-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: auto;
  min-width: 16em;
  min-height: 3.2em;
  padding: 0.8em 2.5em ;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: var(--font-family-gothic);
  letter-spacing: 0.05em;
  text-decoration: none !important;
  background-color: var(--color-dark01);
  border-radius: 3em;
  color: var(--color-base);
  transition: all 0.2s ease;
  position: relative;
  cursor: pointer;
}
body.is-pc .infiniteLoading-btn:hover {
  background-color: var(--color-brand01);
  translate: 0 -3px;
}

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

  .infiniteLoading-btn {
    min-width: 16em;
    min-height: 3.2em;
    padding: 0.8em 2.5em ;
    font-size: 1.05rem;
  }

}



/***********
sessionHeader
************/

.sessionHeader {
}
.sessionHeader-container {
  display: flex;
}
.sessionHeader-inner {
  flex: 1;
}
.sessionHeader-img {
  width: clamp(180px,30%, 300px);
}


.sessionHeader-box {
  border: 2px solid var(--color-sub02);
  border-radius: var(--rounded-main);
  padding: min(6vw,1.2em) min(4vw,1.5em);
}
.sessionHeader-box-title {
  font-size: 0.9rem;
  font-weight: 500;
  padding-bottom: 0.5em;
}

.sessionHeader-box-list {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-columns: 60fr 45fr;
  gap: 0.2em 2em;
}
.sessionHeader-box-list li {
  position: relative;
  padding-left: 1.1em;
}
.sessionHeader-box-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.7em;
  height: 0.7em;
  border-radius: 50%;
  background: var(--color-dark01);
}

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

  .sessionHeader {
  }
  .sessionHeader-container {
    display: block;
    position: relative;
  }
  .sessionHeader-inner {
  }
  .sessionHeader-img {
    position: absolute;
    right: 0;
    top: 0;
    translate: 0 -120%;
    width: clamp(100px,35%, 180px);
  }

  .sessionHeader-box-title {
    font-size: 1rem;
  }
  .sessionHeader-box-list {
    display: block;
    font-size: 1rem;
    line-height: 1.8;
  }

}

/***********
sessionInfo
************/

.sessionInfo {
}
.sessionInfo-heading {
  text-align: center;
  padding-bottom: 1em;
}
.sessionInfo-heading-title {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
}
.sessionInfo-heading-title::before,
.sessionInfo-heading-title::after {
  content: "";
  display: block;
  width: 4px;
  height: 1.2em;
  position: absolute;
  background-color: var(--color-brand01);
  top: 50%;
  translate: 0 -45%;
}
.sessionInfo-heading-title::before {
  right: calc(100% + 1em);
  rotate: -30deg;
}
.sessionInfo-heading-title::after {
  left: calc(100% + 1em);
  rotate: 30deg;
}

.sessionInfo-data {
  display: flex;
  align-items: center;
  gap: 0 2em;
}
.sessionInfo-data + .sessionInfo-data {
  padding-top: 0.5em;
}
.sessionInfo-data dt {
  width: 7em;
  text-align: center;
  background-color: var(--color-brand01);
  color: var(--color-base);
  font-size: 1.2rem;
  font-weight: 500;
}
.sessionInfo-data dd {
  flex: 1;
}
.sessionInfo-data-text {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.sessionInfo-data-link {
  padding: 0.5em 0
}

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

  .sessionInfo {
  }
  .sessionInfo-heading {
    padding-bottom: 1.5em;
  }
  .sessionInfo-heading-title {
    font-size: 1.35rem;
  }
  .sessionInfo-heading-title::before,
  .sessionInfo-heading-title::after {
    width: 3px;
  }
  .sessionInfo-heading-title::before {
    right: calc(100% + 0.5em);
  }
  .sessionInfo-heading-title::after {
    left: calc(100% + 0.5em);
  }

  .sessionInfo-data {
    display: block;
  }
  .sessionInfo-data + .sessionInfo-data {
    padding-top: 1.5em;
  }
  .sessionInfo-data dt {
    width: 6em;
    font-size: 1.1rem;
    margin-bottom: 0.5em;
  }
  .sessionInfo-data dd {
    flex: 1;
  }
  .sessionInfo-data-text {
    font-size: 1.2rem;
  }
  .sessionInfo-data-link {
    padding-top: 1em;
    text-align: center;
  }

}


/***********
advisor
************/

.advisor {
}
.advisor-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3em 2%;
}

.advisor-section.-x2 {
  grid-column: span 2;
}
.advisor-section.-x3 {
  grid-column: span 3;
}
.advisor-section.-x4 {
  grid-column: span 4;
}

.advisor-section {
}
.advisor-section-title {
  background-color: var(--color-brand01);
  color: var(--color-base);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.12em 1em;
  margin-bottom: 0.8em;
}
.advisor-section-block {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8em 0.8em;
}
.advisor-section-box {
  background-color: var(--color-base);
  padding: 1em 1em 1.5em;
}
.advisor-section-name {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.6;
}
.advisor-section-text {
  font-size: 0.8rem;
  font-weight: 500;
  padding-top: 0.8em;
  line-height: 1.6;
}

.advisor-section.-x2 .advisor-section-box {
  flex: 0 0 calc((100% - 0.8em) / 2);
}
.advisor-section.-x3 .advisor-section-box {
  flex: 0 0 calc((100% - 1.6em) / 3);
}
.advisor-section.-x4 .advisor-section-box {
  flex: 0 0 calc((100% - 2.4em) / 4);
}

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

  .advisor {
  }
  .advisor-container {
    display: block;
  }

  .advisor-section + .advisor-section {
    margin-top: 2em;
  }
  .advisor-section-title {
    font-size: 1rem;
  }
  .advisor-section-block {
    gap: 0.8em 0.8em;
  }
  .advisor-section-box,
  .advisor-section.-x2 .advisor-section-box ,
  .advisor-section.-x3 .advisor-section-box,
  .advisor-section.-x4 .advisor-section-box {
    flex: 0 0 calc((100% - 1.6em) / 3);
  }

}

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

  .advisor-section-box,
  .advisor-section.-x2 .advisor-section-box ,
  .advisor-section.-x3 .advisor-section-box,
  .advisor-section.-x4 .advisor-section-box {
    flex: 0 0 calc((100% - 0.8em) / 2);
  }

}

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

  .advisor-section-block {
    display: block;
  }
  .advisor-section-box + .advisor-section-box {
    margin-top: 0.8em;
  }
}

/***********
fixedCv
************/

.fixedCv {
  position: fixed;
  right: 30px;
  bottom: 30px;
  font-size: clamp(0.9rem,1.8vw, 1.1rem);
  z-index: 100;
}
.fixedCv a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  aspect-ratio: 1 / 1;
  color: var(--color-base);
  text-decoration: none;
  padding: 1.4em;
  white-space: nowrap;
  border-radius: 50%;
  box-shadow: 0 0 0.8em #0001;
  background: linear-gradient(to right, #E50012 10%, #AF1D3B 90%);
}
.fixedCv-text {
  font-weight: 500;
  line-height: 1.3;
}
body.is-pc .fixedCv a:hover {
  filter: brightness(110%);
}

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

  .fixedCv {
    right: 10px;
    bottom: 10px;
    font-size: clamp(0.9rem,1.8vw, 1.1rem);
  }
  .fixedCv a {
    padding: 1em;
  }
}

/***********
allLists
************/

.allLists {
}
.allLists + .allLists {
  margin-top: var(--padding-small);
}
.allLists-category {
  color: var(--color-brand01);
  border-bottom: 1px solid var(--color-brand01);
  font-size: 1.1rem;
  padding-bottom: 0.5em;
}
.allLists-list {
}
.allLists-list li {
  border-bottom: 1px solid var(--color-brand01);
  padding: 1.1em 0 1.2em;
}
.allLists-list-container {
  display: flex;
}
.allLists-list-inner {
  flex: 1;
}
.allLists-list-title {
  font-size: 1.1rem;
  font-weight: 500;
}
.allLists-list-text {
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 0 0.8em;
  padding-top: 0.2em;
}
.allLists-list-text small,
.allLists-list-text span {
  display: inline-block;
}
.allLists-list-text small {
  font-size: 85%;
}
.allLists-list-link {
  display: flex;
  align-items: center;
  gap: 0 1.5em;
  padding-left: 2em;
}
.allLists-list-btn {
  width: 7em;
}
.allLists-list-btn a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  height: 100%;
  text-align: center;
  color: inherit;
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.4em 0;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}



.allLists-list-btn a img {
  width: 1.8em;
  vertical-align: middle;
  margin-right: 0.6em;
  margin-left: -0.3em;
  translate: 0 -5%;
}
body.is-pc .allLists-list-btn a:hover {
  border-color: var(--color-brand01);
}

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

  .allLists-category {
  }

  .allLists-list {
  }
  .allLists-list li {
    padding: 1em 0 0.8em;
  }
  .allLists-list-container {
    display: block;
  }
  .allLists-list-inner {
    flex: 1;
  }
  .allLists-list-title {
  }
  .allLists-list-text {
    padding-top: 0.5em;
  }
  .allLists-list-link {
    gap: 0 0;
    padding-top: 1em;
    padding-left: 0;
  }
  .allLists-list-btn {
    width: auto;
  }
  .allLists-list-btn a {
    font-size: 0.9rem;
    text-align: left;
    align-items: start;
    padding-right: 2em;
  }

  .allLists-list-btn a img {
    width: 1.6em;
  }

}

/***********
catNavi
************/

.catNavi {
}
.catNavi-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em 0.4em;
}
.catNavi-list li {
}
.catNavi-list li a{
  display: inline-block;
  border: 2px solid var(--color-sub02);
  border-radius: 2em;
  font-weight: 500;
  padding: 0.1em 0.6em;
  color: inherit;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  transition: 0.1s;
}

.catNavi-list li.current-cat a,
body.is-pc .catNavi-list li a:hover {
  border-color: var(--color-brand01);
  background-color: var(--color-brand01);
  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;
    gap: 0.1em 0.2em;
  }
  .catNavi-list li {
  }
  .catNavi-list li a {
    border-width: 1px;
    border-color: var(--color-brand01);
    margin: 0;
    font-size: 0.9rem;
    padding: 0.5em 0.8em ;
  }

}

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

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

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

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

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