@charset "utf-8";

/* CSS Document */


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

.pageHeading {
  padding-top: var(--header-height);
  position: relative;
  z-index: 9;
  background-color: var(--color-base);
}

.pageHeading-container {
  position: relative;
  background: url(../../img/bg_drawing01.png) repeat center 10% / 100% auto;
  background-color: var(--color-brand01);
  color: var(--color-base);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  min-height: 11em;
}
.pageHeading-subTitle {
  font-family: var(--font-family-gothic-en);
  font-size: clamp(0.8rem,3.4vw, 0.9rem);
  font-weight: 600;
  line-height: 1.1;
  padding-bottom: 0.2em;
}
.pageHeading-subTitle.-ja {
  letter-spacing: 0.08em;
}
.pageHeading-title {
  font-weight: 700;
  font-size: clamp(1.5rem,7vw, 2.5rem);
  line-height: 1.3;
}

/*
bg
*/


.pageHeading-bg {
}
.pageHeading-bg.-no01 {
  background: url(../../img/bg_drawing02.png) no-repeat center top / max(100%,640px) auto;
}


/*
label
*/

.pageHeading-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  min-height: 11em;
  position: relative;
}
.pageHeading-label-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 0 1em;
  max-width: 72em;
}
.pageHeading-label-inner {
  flex: 1;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}
.pageHeading-label-parent {
  font-size: clamp(0.85rem,3.2vw, 1rem);
  font-weight: 700;
  color: var(--color-brand01);
  letter-spacing: 0.08em;
  padding-bottom: 0.5em;
}
.pageHeading-label-title {
  font-size: clamp(1.5vw,7vw, 3.6rem);
  line-height: 1.2;
}
.pageHeading-label-subTitle {
  font-size: 1.1rem;
  font-size: clamp(0.85rem,2.4vw, 1.1rem);
  font-weight: 700;
  font-family: var(--font-family-gothic-en);
  padding-bottom: 0.5em;
  letter-spacing: 0;
  color: var(--color-brand01);
}

.pageHeading-visual {
}
.pageHeading-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1920 / 750;
}




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

  .pageHeading-container {
    min-height: clamp(7rem,33vw, 10rem);
  }

  .pageHeading-title {
    line-height: 1.2;
  }

  /*
  label
  */

  .pageHeading-label {
    min-height: clamp(7rem,33vw, 10rem);
  }
  .pageHeading-label-heading {
    display: block;
    max-width: initial;
  }
  .pageHeading-label-inner {
    padding-top: 2em;
    padding-bottom: 2em;
  }
  .pageHeading-label-parent {
  }
  .pageHeading-label-title {
    font-size: clamp(1.5vw,7vw, 3.6rem);
    line-height: 1.2;
  }
  .pageHeading-label-subTitle {
    font-size: clamp(0.85rem,2.4vw, 1.1rem);
    padding-bottom: 0.5em;
    position: absolute;
    right: var(--padding-side);
    bottom: 0;
  }

}


/***********
breadcrumb
************/

.breadcrumb{
  font-size: 0.9rem;
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: 0;
  position: relative;
  z-index: 100;
  padding-top: 2em;
  padding-bottom: 1.5em;
}
.breadcrumb-lists{
  display: flex;
}
.breadcrumb-lists li{
  position: relative;
}
.breadcrumb-lists li:not(:last-child)::after{
  content: "／";
  display: inline-block;
  padding: 0 0.5em;
  color: var(--color-brand01);
}
.breadcrumb-lists li a{
  color: var(--color-brand01);
  text-decoration: none;
}
body.is-pc .breadcrumb-lists li a:hover{
  text-decoration: underline;
  color: var(--color-brand01);
}

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

  .breadcrumb{
    font-size: 0.6rem;
    -webkit-overflow-scrolling: touch;
    padding-top: 1em;
    padding-bottom: 0;
  }
  .breadcrumb-lists{
    overflow: auto;
    display: flex;
    white-space: nowrap;
    padding-left: 3%;
    padding-top: 0;
    padding-bottom: 0.5em;
  }
  .breadcrumb-lists li a{
  }
  .breadcrumb-lists li:last-child {
    /* max-width: 12em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis; */
    padding-right: 3%;
  }
  body.is-pc .breadcrumb-lists li a:hover{
  }
  .breadcrumb-lists li:not(:last-child)::after{
    padding: 0 0.3em;
  }

}



/***********
box
************/

.box {
  background-color: var(--color-base);
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
  padding: min(7vw,4em) min(5vw,3em);
}

/***********
pagination
************/

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 4em;
  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-brand01);
  border-radius: 50%;
  text-decoration: none;
  text-align: center;
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  font-size: 1.15rem;
  margin: 0 5px;
}
.pagination a {
  background-color: var(--color-base);
  box-shadow: 0 0 0 1px var(--color-brand01) inset ;
}
.pagination a.prev ,
.pagination a.next {
  box-shadow: none;
  background-color: transparent;
}
.pagination span.dots{
  border-color: transparent;
  width: auto;
}
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;
  gap: 0.2em;
  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: 0.9rem;
}
.article-heading-cat.l-catIcon {
  font-size: 0.9rem;
}

.article-heading-title {
  font-weight: 700;
  font-size: clamp(1.4rem,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);
  font-weight: 600;
  background-color: var(--color-brand01);
  color: var(--color-base);
  border-radius: 0.2rem;
  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);
  line-height: 1.4;
  border-left: 0.2em solid var(--color-brand01);
  padding: 0.2em 0 0.2em 0.8em;
  margin: 2.5em 0 0.8em 0;
}

.post h4:not([class]) {
  font-size: clamp(1.15rem,1.6vw, 1.3rem);
  margin: 2.5em 0 0.8em 0;
  padding-bottom: 0.5em;
  line-height: 1.4;
  border-bottom: 2px solid var(--color-brand01);
  position: relative;
}

.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: 2.5em 0 0.5em 0;
  position: relative;
}


.post img {
  margin-bottom: 1.5em;
}
.post img[src$="jpg"],
.post img[src$="jpeg"] {
}

.post blockquote:not([class]) {
  background-color: var(--color-sub01);
  padding: min(5vw,4em) min(4vw,6%);
  margin: 2em 0;
}
.post blockquote:not([class]) h2:first-child,
.post blockquote:not([class]) h3:first-child,
.post blockquote:not([class]) h4:first-child,
.post blockquote:not([class]) h5:first-child{
  margin-top: 0;
}

.post table:not([class]) {
  width: 100%;
  border: 1px solid #aaa;
  font-size: 0.95rem;
}
.post table:not([class]) tr:not(:last-child) {
  border-bottom: 1px solid #aaa;
}
.post table:not([class]) thead td {
  border-left: 1px solid #aaa;
  text-align: center;
  vertical-align: middle;
  padding: 0.8em ;
}
.post table:not([class]) thead th{
  background-color: var(--color-main);
  color: var(--color-base);
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  padding: 0.8em ;
}
.post table:not([class]) tbody th {
  background-color: var(--color-main);
  color: var(--color-base);
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  padding: 0.8em ;
}
.post table:not([class]) tbody td {
  border-left: 1px solid #aaa;
  text-align: center;
  vertical-align: middle;
  padding: 0.8em ;
}




.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 table:not([class]) {
    font-size: clamp(0.6rem,3vw, 0.9rem);
    line-height: 1.3;
  }
  .post table:not([class]) thead th,
  .post table:not([class]) tbody th ,
  .post table:not([class]) tbody td {
    padding: 0.8em 0.2em;
  }

}

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


/*
confirm
*/


.dataTable.-confirm {
  width: 100%;
  font-size: 0.9rem;
}
.dataTable.-confirm th{
  width: 12em;
}
.dataTable.-confirm td{
  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 {
  font-weight: 500;
}
.fileLink li {
  padding: 0.8em 0;
  border-bottom: 1px dashed var(--color-sub02);
}
.fileLink.-single li {
  padding: 0.2em 0;
  border-bottom: none;
}
.fileLink a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  position: relative;
  padding-bottom: 0.5em;
}
.fileLink a:hover {
  text-decoration: underline;
}
.fileLink a{
  padding-left: 4.2em;
}
.fileLink a::after {
  content: "";
  display: block;
  width: 3.5em;
  height: 1.5em;
  position: absolute;
  left: 0;
  top: 0.2em;
}
.fileLink a[href*="pdf"]::after {
  background: url(../../img/icon/pdf.png) no-repeat left top / 100% auto;
}
.fileLink a[href*="jpg"]::after,
.fileLink a[href*="jpeg"]::after {
  background: url(../../img/icon/jpg.png) no-repeat left top / 100% auto;
}
.fileLink a[href*="png"]::after {
  background: url(../../img/icon/png.png) no-repeat left top / 100% auto;
}
.fileLink a[href*="doc"]::after,
.fileLink a[href*="docx"]::after {
  background: url(../../img/icon/doc.png) no-repeat left top / 100% auto;
}
.fileLink a[href*="xls"]::after,
.fileLink a[href*="xlsx"]::after {
  background: url(../../img/icon/xls.png) no-repeat left top / 100% auto;
}
.fileLink a[href*="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;
}
.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;
  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 {
}
.catNavi-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em;
}
.catNavi-list li {
}
.catNavi-list li a{
  display: inline-block;
  cursor: pointer;
  padding: 0.3em 1.2em;
  background-color: var(--color-base);
  color: var(--color-brand01);
  border: 1px solid #004aaf88;
  border-radius: 3em;
  font-weight: 500;
  font-size: 0.9rem;
  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);
  color: var(--color-base);
}

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

  .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-bottom: 0;
  }
  .catNavi-list li a {
    min-width: 5em;
    padding: 0.5em 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: 2px solid var(--color-brand01);
  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.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;
  color: var(--color-brand01);
  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;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.divide.-reverse {
  flex-direction: row-reverse;
}
.divide.-center {
  align-items: center;
}
.divide.-end {
  align-items: end;
}
.divide-visual {
  width: 30%;
  min-width: 300px;
  padding-right: 5%;
  padding-top: 0.2em;
}

.divide-img {
}
.divide-img-caption {
  padding-top: 0.8em;
}
.divide.-end .divide-figure {
  padding-bottom: 0.3em;
}

.divide-figure {
}
.divide-figure.-offset {
  padding-top: 8em;
}
.divide-figure-img {
  margin-left: clamp(-90px,-5vw, -30px);
}
.divide-figure-text {
  font-size: 0.85rem;
  font-weight: 400;
  text-align: left;
  line-height: 1.6;
  padding-top: 1em;
}


.divide-inner {
  flex: 1;
  max-width: 46rem;
}

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

  .divide {
    display: block;
  }
  .divide-visual,
  .divide-visual.-small  {
    width: auto;
    min-width: initial;
    padding-right: 0;
  }
  .divide-img {
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
  }
  .divide-img-caption {
    font-size: 93%;
    text-align: left;
  }


  .divide.-reverse .divide-figure,
  .divide.-reverse .divide-figure.-offset {
    padding-top: 2em;
  }
  .divide-figure-img {
    margin-left: 0;
  }
  .divide-figure-img img:not(.-normal) {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 9;
  }
  .divide-figure-text {
    line-height: 1.6;
  }

  .divide-img-small{
    width: 80%;
    max-width: 360px;
    margin: 0 auto;
  }
  .divide-img-xsmall{
    width: 70%;
    max-width: 300px;
    margin: 0 auto;
  }


  .divide:not(.-reverse) .divide-inner {
    padding-top: 1.5em;
  }
  .divide.-reverse .divide-img {
    padding-top: 1.5em;
  }

}

/***********
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);
  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-gothic-en02);
  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%, 400px);
}
.segmented-inner {
  flex: 1;
}
.segmented-link {
  position: absolute;
  left: 0;
  top: 11em;
}

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

@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 {
  border-bottom: 1px solid var(--color-sub02);
}
.newsList li:first-child {
  border-top: 1px solid var(--color-sub02);
}
.newsList a {
  display: flex;
  align-items: center;
  width: 100%;
  color: inherit;
  text-decoration: none;
  padding: 1.5em 1.5em;
}
body.is-pc .newsList a:hover {
  background-color: var(--color-sub04);
}
.newsList-time {
  display: inline-block;
  width: 7em;
  white-space: nowrap;
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  color: var(--color-brand02);
}
.newsList-cat {
  min-width: 8em;
  text-align: center;
  font-size: 90%;
}
.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;

}
body.is-pc .newsList-title:hover {
}

@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: 85%;
    margin-right: 0.5em;
  }
  .newsList-cat {
    font-size: 85%;
    min-width: initial;
    padding: 0.1em 0.5em;
    border-radius: 3px;
  }
  .newsList-title {
    padding-left: 0;
    padding-top: 0.8em;
  }
  body.is-pc .newsList-title:hover {
  }

}


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

.faqSection {
}
.faqSection-item {
  position: relative;
  margin-bottom: 5px;
}
.faqSection-heading {
  font-size: 1.1rem;
  font-weight: 500;
  background-color: var(--color-sub05);
  color: var(--color-brand01);
  padding: 1em 3em 1em 3.5rem;
  min-height: 3em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  cursor: pointer;
  border-radius: 0.3rem;
  transition: 0.2s;
}
.faqSection-heading::before {
  content: 'Q' ;
  width: 2em;
  aspect-ratio: 1 / 1;
  color: var(--color-base);
  background-color: var(--color-brand01);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-weight: 500;
  font-family: var(--font-family-gothic-en);
  position: absolute;
  left: 0.8em;
  top: 1rem;
  font-size: 0.9rem;
  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;
  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;
  width: 2em;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  right: 1em;
  top: 50%;
  translate: 0 -50%;
  color: var(--color-brand01);
  background-color: var(--color-base);
  font-size: 0.9rem;
}
.faqSection-heading.is-active::after {
  rotate: 180deg;
}
body.is-pc .faqSection-heading:hover {
  background-color: #d1e0f5aa;
}


.faqSection-answer {
  display: none;
}
.faqSection-answer-inner {
  padding: 1.2em 1em 2em 3.5rem;
  position: relative;
}
.faqSection-answer-inner::before {
  content: 'A' ;
  width: 2em;
  aspect-ratio: 1 / 1;
  color: var(--color-base);
  background-color: var(--color-accent03);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-weight: 500;
  font-family: var(--font-family-gothic-en);
  position: absolute;
  left: 0.8em;
  top: 1.3rem;
  font-size: 0.9rem;
  transition: 0.3s;
}


.faqSection-tags {
  padding-top: 0.5em;
  font-size: 0.65rem;
}
.faqSection-tags a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  opacity: 0.6;
  margin-right: 0.5em;
}
.faqSection-tags a::before {
  content: "#";
}
body.is-pc .faqSection-tags a:hover {
  text-decoration: underline;
  opacity: 0.8;
}


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

  .faqSection-heading {
    font-size: 1rem;
  }

  .faqSection-answer-inner {
  }
  .faqSection-answer-inner::before {
    width: 2em;
  }

}


/***********
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;
}
.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 {
}
.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;
}
.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.1);
  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(2, 1fr);
  gap: 5em 4%;
  counter-reset : pageList_num;
}

.pageList-visual {
  position: relative;
}
.pageList-img {
  position: relative;
}

.pageList-badge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background-color: var(--color-brand01);
  color: var(--color-base);
  border-radius: 50%;
  font-size: 0.65rem;
  font-family: var(--font-family-gothic-en);
  width: 5.8em;
  white-space: nowrap;
  line-height: 1;
  aspect-ratio: 1 / 1;
  letter-spacing: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  translate: 1.8em -1.8em;
  pointer-events: none;
}
.pageList-badge-text {
  display: inline-block;
  font-weight: 500;
}
.pageList-badge-num {
  display: inline-block;
  font-size: 200%;
  font-weight: 700;
  scale: 1.1 1;
  margin-bottom: -0.2em;
}
.pageList-badge-num::after{
  display: inline;
  counter-increment:pageList_num;
  content: counter(pageList_num, decimal-leading-zero) ;
}


.pageList-inner {
  padding-top: 1.2em;
}
.pageList-title {
  font-size: clamp(1.25rem,5vw, 1.65rem);
  font-weight: 700;
  margin-bottom: 0.4em;
}
.pageList-title a {
  display: inline-block;
  padding-left: 1em;
  position: relative;
  color: inherit;
  text-decoration: none;
}
.pageList-title 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;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f35a";
  position: absolute;
  left: 0;
  top: 0.8em;
  font-size: 60%;
  color: var(--color-brand01);
}

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


  .pageList {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3em 0;
  }

  .pageList-visual {
    position: relative;
  }
  .pageList-img {
    position: relative;
  }

  .pageList-badge {
    font-size: 0.7rem;
    translate: -0.8em -1.2em;
  }


  .pageList-inner {
    padding-top: 0.8em;
  }
  .pageList-title a {
    padding-left: 1.1em;
  }
  .pageList-title a::before {
    left: -0.1em;
    top: 0.5em;
    font-size: 80%;
  }


}


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

/***********
offsetBox
************/

.offsetBox {
  display: flex;
  justify-content: end;
}
.offsetBox-inner {
  max-width: 46rem;
}

/***********
visual
************/

.visual img,
.wideVisual img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}

.wideVisual.-large img {
  aspect-ratio: 1920 / 700;
}
.wideVisual.-medium img {
  aspect-ratio: 1920 / 600;
}
.wideVisual.-small img {
  aspect-ratio: 1920 / 500;
}
.wideVisual.-xsmall img {
  aspect-ratio: 1920 / 400;
}

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

  .visual {
    margin-inline: calc(var(--padding-side) * -1);
  }
  .visual img,
  .wideVisual.-large img,
  .wideVisual.-medium img,
  .wideVisual.-small img,
  .wideVisual.-xsmall img {
    aspect-ratio: 16 / 8;
  }


}

/***********
contentsLink
************/

.contentsLink {
}
.contentsLink-heading {
  text-align: center;
  font-family: var(--font-family-gothic-en);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-brand01);
  margin-bottom: 1em;
}
.contentsLink-heading::after {
  content: "";
  display: block;
  width: 1.5em;
  height: 1.5em;
  margin: 0 auto;
  border: 3px solid var(--color-brand01);
  clip-path: polygon(0% 0%,  100% 100%, 0 100%);
  rotate: -45deg;
  scale: 0.8;
  translate: 0 -20%;
}


.contentsLink-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5em 1.8%;
  counter-reset : contentsLink_num;
}

.contentsLink-list li {
}
.contentsLink-list li a {
  display: block;
  color: var(--color-base);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.contentsLink-list-img {
  width: 100%;
}
.contentsLink-list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 6;
}
.contentsLink-list-img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s;
}
body.is-pc a:hover .contentsLink-list-img::after {
  opacity: 0;
}
.contentsLink-list-block {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
  z-index: 9;
  pointer-events: none;
  padding-right: 4em;
}
.contentsLink-list-subTitle {
  font-family: var(--font-family-gothic-en);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0;
  color: var(--color-brand01);
  line-height: 1.1;
}
.contentsLink-list-subTitle.-num {
}
.contentsLink-list-subTitle.-num::after {
  display: contentsLink_num;
  counter-increment:contentsLink_num;
  content: counter(contentsLink_num, decimal-leading-zero)"." ;
  padding-left: 0.5em;
}
.contentsLink-list-title {
  font-size: clamp(1rem,3.4vw, 1.6rem);
  font-weight: 700;
  position: relative;
}
.contentsLink-list-title::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;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  color: var(--color-base);
  content: "\f35a";
  position: absolute;
  left: calc(100% + 0.5em);
  top: 50%;
  translate: 0 -50%;
  scale: 0.7;
  transition: color 0.2s ease;
}

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

  .contentsLink-list {
    gap: 1px 1px;
  }

  .contentsLink-list-img img {
    aspect-ratio: 16 / 12;
  }
  .contentsLink-list-block {
    padding-inline: 0.5em;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .contentsLink-list-subTitle {
    font-size: 0.75rem;
    line-height: 1.1;
  }
  .contentsLink-list-title {
    font-size: clamp(0.9rem,4.5vw, 1.2rem);
  }
  .contentsLink-list-title::after {
    display: block;
    position: static;
    translate: 0 0;
    scale: 0.8;
    margin: 0.2em auto;
  }

}

/***********
sectionLink
************/

.sectionLink {
}

.sectionLink-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2px,0.5em, 8px);
}
.sectionLink-list li {
}
.sectionLink-list li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 0.8rem;
  padding: 1em 3em 1em 2.5em;
  min-height: 10em;
  background-color: var(--color-sub05);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  position: relative;
}
body.is-pc .sectionLink-list li a:hover{
  background-color: #dde8f7;
}
.sectionLink-list-block {
  position: relative;
  z-index: 9;
}
.sectionLink-list-subTitle {
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-brand01);
}
.sectionLink-list-title {
  font-weight: 700;
  font-size: 150%;
}

.sectionLink-wheel {
  position: absolute;
  right: 0;
  top: 50%;
  translate: 40% -50%;
  width: 18em;
  aspect-ratio: 1 / 1;
}
.sectionLink-wheel img {
  filter: brightness(300%) sepia(1) saturate(6) hue-rotate(185deg);
  opacity: 0.4;
  animation: anim-sectionLink-wheel 10s linear infinite alternate;
  animation-play-state: paused;
}
body.is-pc a:hover .sectionLink-wheel img {
  animation-play-state: running;
  /* animation-timing-function: ease-in-out; */
}


.sectionLink-wheel::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;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f35a";
  position: absolute;
  left: 50%;
  top: 50%;
  scale: 1.4;
  translate: -50% -50%;
  color: var(--color-brand01);
}

@keyframes anim-sectionLink-wheel {
  0% { rotate: 0deg;}
  100% { rotate: 360deg;}
}

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

  .sectionLink {
  }

  .sectionLink-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px 2px;
  }
  .sectionLink-list li {
  }
  .sectionLink-list li a {
    padding: 1em 2em 1em 1.5em;
    min-height: 8em;
    font-size: 0.7rem;
  }
  .sectionLink-list-subTitle {
  }
  .sectionLink-list-title {
    font-size: 140%;
  }

  .sectionLink-wheel {
    width: 15em;
  }
  .sectionLink-wheel img {
    animation: anim-sectionLink-wheel 60s linear infinite alternate;
    animation-play-state: running;
  }

}



/***********
itemLink
************/

.itemLink {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(5px,0.8em, 12px);
}
.itemLink li {
}
.itemLink li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  padding: 1em 3em 1em 1.5em;
  min-height: 6.5em;
  height: 100%;
  border-radius: 4px;
  border: 1px solid var(--color-sub02);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  position: relative;
}
.itemLink li a::before {
  content: attr(data-text)"";
  font-family: var(--font-family-gothic-en);
  font-weight: 400;
  font-size: 65%;
  color: var(--color-brand01);
  display: block;
}
.itemLink 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;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f35a";
  position: absolute;
  right: 0.8em;
  top: 50%;
  translate: 0 -50%;
  font-size: 90%;
  color: var(--color-brand01);
}
body.is-pc .itemLink li a:hover{
  background-color: var(--color-sub05);
  border-color: var(--color-brand01);
}

@media screen and (max-width:834px) {
  .itemLink {
    grid-template-columns: repeat(3, 1fr);
  }
}


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

  .itemLink {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px 5px;
  }
  .itemLink li a {
    padding: 1em 2em 1em 0.8em;
    min-height: 5em;
    font-size: 0.9rem;
  }
  .itemLink li a::after {
    right: 0.6em;
    font-size: 80%;
  }

}


/***********
searchBox
************/

.searchBox {
  background-color: var(--color-sub05);
  padding: min(7vw,3em) min(5vw,3em);
}
.searchBox-text {
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: center;
  padding-bottom: 1em;
}
.searchBox-form {
  max-width: 45em;
  margin: 0 auto;
}

/***********
searchFrom
************/

.searchFrom {
}
.searchFrom form {
  display: flex;
  align-items: center;
}
.searchFrom form input[type="search"]{
  flex: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  height: 60px;
  padding: 0 0.8em;
  font-size: 1.2rem;
  font-weight: 500;
  font-family: var(--font-family-gothic);
  box-shadow: 0 0 5px #004aaf22;
  border-radius: 4px 0 0 4px;
  border: 1px solid #004aaf44;
  background-color: var(--color-base);
  outline: none;
}
.searchFrom form button[type="submit"]{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  width: 68px;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background-color: var(--color-brand01);
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--color-base);
}

.searchFrom.-accent form button[type="submit"]{
  background-color: var(--color-accent03);
}

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

  .searchFrom {
  }
  .searchFrom form {
  }
  .searchFrom form input[type="search"]{
    min-width: 10px;
    height: 50px;
    font-size: 16px;
  }
  .searchFrom form button[type="submit"]{
    width: 55px;
    min-width: 55px;
    height: 50px;
    border-radius: 0 4px 4px 0;
    font-size: 16px;
  }

  .searchFrom.-accent form button[type="submit"]{
    background-color: var(--color-accent03);
  }

}

/***********
itemCard
************/

.itemCard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3em 2%;
}
.itemCard li {
}
.itemCard li a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.itemCard-img {
}
.itemCard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 14 / 11;
}
.itemCard-inner {
  padding-top: 0.5em;
}
.itemCard-title {
  font-size: 1.1rem;
  padding-left: 1.2em;
  position: relative;
  line-height: 1.35;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
  transition: 0.3s;
}
.itemCard-title::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;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f35a";
  position: absolute;
  left: 0;
  top: 0.5em;
  font-size: 75%;
  color: var(--color-brand01);
}
body.is-pc a:hover .itemCard-title {
  text-decoration-color: inherit;
  color: var(--color-brand01);
}
.itemCard-text {
  font-size: 0.85rem;
  line-height: 1.6;
  padding-top: 0.5em;
}

@media screen and (max-width:834px) {
  .itemCard {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width:640px) {
  .itemCard {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .itemCard {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0 0;
  }
  .itemCard li {
    border-bottom: 1px solid var(--color-sub03);
  }
  .itemCard li a {
    display: flex;
    gap: 0 1em;
    padding: 1.2em 1.5em 1.2em 0;
    position: relative;
  }
  .itemCard li a::before {
    font-family: 'Font Awesome 6 Free';
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    content: "\f35a";
    position: absolute;
    right: 0;
    top: 50%;
    translate: 0 -50%;
    font-size: 85%;
    color: var(--color-brand01);
  }

  .itemCard-img {
    width: 30%;
  }
  .itemCard-img img {
    aspect-ratio: 1 / 1;
  }
  .itemCard-inner {
    flex: 1;
    padding-top: 0;
  }
  .itemCard-title {
    font-size: 1.1rem;
    padding-left: 0;
    padding-right: 1em;
    position: relative;
  }
  .itemCard-title::before {
    display: none;
  }
  body.is-pc a:hover .itemCard-title {
    text-decoration-color: inherit;
    color: var(--color-brand01);
  }
  .itemCard-text {
    font-size: 0.85rem;
    line-height: 1.6;
    padding-top: 0.5em;
  }


}

/***********
itemHeader
************/

.itemHeader {
  display: flex;
  gap: 0 4%;
}
.itemHeader-img {
  width: 45%;
}
.itemHeader-inner {
  flex: 1;
}
.itemHeader-heading {
  padding-bottom: 1em;
}
.itemHeader-heading-subTitle {
  font-weight: 600;
  font-family: var(--font-family-gothic-en);
  font-size: 0.9rem;
  letter-spacing: 0;
  color: var(--item-cat-color);
  padding-bottom: 0.5em;
}
.itemHeader-heading-title {
  font-size: clamp(1.25rem,5vw, 1.5rem);
  font-weight: 500;
  line-height: 1.4;
}

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

  .itemHeader {
    display: block;
  }
  .itemHeader-img {
    width: auto;
    padding-bottom: 1em;
  }

}

/***********
itemHeading
************/

main {
  counter-reset : itemHeading_num;
}

.itemHeading {
  padding-bottom: 1em;
}
.itemHeading-subTitle {
  font-weight: 600;
  font-family: var(--font-family-gothic-en);
  font-size: 0.9rem;
  letter-spacing: 0;
  color: var(--item-cat-color);
}
.itemHeading-subTitle::after {
  display: inline-block;
  counter-increment:itemHeading_num;
  content: "#"counter(itemHeading_num) ;
  padding-left: 0.5em;
}
.itemHeading-title {
  font-size: clamp(1.25rem,5vw, 1.5rem);
  font-weight: 500;
  line-height: 1.4;
}

/***********
itemTable
************/

.itemTable {
  width: 100%;
  table-layout: fixed;
  font-size: 0.95rem;
  line-height: 1.2;
  border-bottom: 1px solid var(--color-sub02);
}

.itemTable thead th{
  background-color: var(--item-cat-color);
  color: var(--color-base);
  font-weight: 400;
  padding: 0.5em ;
  text-align: center;
  vertical-align: middle;
  position: relative;
}
.itemTable thead th:not(:last-child)::after{
  content: "";
  display: block;
  width: 0;
  height: calc(100% - 1.4em);
  position: absolute;
  right: 0;
  top: 0.7em;
  border-right: 2px dotted #fff8;
}

.itemTable tbody {
}
.itemTable tbody td {
  position: relative;
}
.itemTable tbody td:not(:last-child)::after{
  content: "";
  display: block;
  width: 0;
  height: calc(100% - 2em);
  position: absolute;
  right: 0;
  top: 1em;
  border-right: 2px dotted #0003;
}
.itemTable-td {
  border-top: 1px solid var(--color-sub02);
  vertical-align: middle;
  text-align: center;
}
.itemTable-td a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
  transition: 0.2s;
}
body.is-pc .itemTable-td a:hover {
  text-decoration-color: inherit;
  color: var(--item-cat-color);
}
.itemTable-td.-num {
  padding: 0.8em 0.5em;
  background-color: var(--item-cat-color-sub);
}
.itemTable-td.-title {
  padding: 0.8em 0.5em;
}
.itemTable-td.-text {
  padding: 0.8em 0.5em;
}
.itemTable-td.-img {
  padding: 0.5px 0;
}
.itemTable-td.-img img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.itemTable-td.-link {
  padding: 0.5px;
}
.itemTable-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  text-decoration: none !important;
  background-color: var(--item-cat-color);
  color: var(--color-base) !important;
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  font-size: 0.8rem;
  width: 4.5em;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  letter-spacing: 0;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.2s;
  outline: none;
}
.itemTable-btn.-trigger::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;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f078";
  display: block;
  text-align: center;
  margin-bottom: -0.5em;
}
.itemTable-btn.-more::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;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f35a";
  display: block;
  text-align: center;
  margin-top: 0.2em;
  margin-bottom: -0.5em;
}
.itemTable-btn.-trigger.is-active::after {
  rotate: 180deg;
}
body.is-pc .itemTable-btn:hover {
  opacity: 0.8;
}

.itemTable-detail {
  background-color: var(--item-cat-color-sub);
}
.itemTable-detail-box {
  display: none;
}

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

  .itemTable {
    font-size: clamp(0.75rem,3vw, 0.95rem);
  }

  .itemTable thead th:not(:last-child)::after{
    border-width: 1px;
  }


  .itemTable thead th:not(:last-child)::after{
    border-right-width: 0.5px ;
  }

  .itemTable tbody td:not(:last-child)::after{
    border-right-width: 0.5px ;
  }

  .itemTable-btn {
    font-size: 0.65rem;
  }

}


/***********
itemDetail
************/

.itemDetail {
  padding: min(7vw,3em) min(4vw,2em) min(7vw,4em) ;
}
.itemDetail-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 2.5em;
  padding-bottom: 1.2em;
}
.itemDetail-heading-item {
}
.itemDetail-title {
  display: flex;
  align-items: center;
  gap: 0 0.5em;
}
.itemDetail-title small {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--item-cat-color);
}
.itemDetail-title span {
  display: inline-block;
  font-size: clamp(1.25rem,5vw, 1.6rem);
  font-weight: 500;
  font-family: var(--font-family-gothic-en);
  line-height: 1.4;
}

.itemDetail-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em 3%;
}
.itemDetail-img {
}
.itemDetail-link {
  text-align: center;
  padding-top: 2.5em;
}

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

  .itemDetail-title small {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--item-cat-color);
  }
  .itemDetail-title span {
    font-size: clamp(1.15rem,4.5vw, 1.25rem);
  }

  .itemDetail-visual {
    max-width: 520px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2em 3%;
  }
  .itemDetail-img {
  }
  .itemDetail-link {
    text-align: left;
    padding-top: 2.5em;
  }

}

/***********
itemMore
************/

.itemMore {
  padding-top: 1em;
  text-align: center;
}
.itemMore-more {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-family-gothic);
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 1em 3em;
  transition: 0.3s;
}
.itemMore-more::after {
  content: "";
  display: block;
  width: 1.5em;
  height: 1.5em;
  margin: 0 auto;
  border: 3px solid var(--color-main);
  clip-path: polygon(0% 0%,  100% 100%, 0 100%);
  rotate: -45deg;
  scale: 0.8;
  translate: 0 -20%;
  transition: 0.3s;
}

body.is-pc .itemMore-more:hover {
  color: var(--color-brand01);
}
body.is-pc .itemMore-more:hover::after {
  border-color: var(--color-brand01);
}

/***********
productHeader
************/

.productHeader {
  background: linear-gradient(to bottom, var(--item-cat-color-sub) 25em, transparent 25em);
  overflow: hidden;
}
.productHeader-heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1em 1em;
  margin-bottom: 2.5em;
  padding: 0.2em 0 0.4em 1.5em;
  border-left: 0.35rem solid var(--item-cat-color);
}
.productHeader-heading-inner {
  flex: 1;
}
.productHeader-heading-title {
  line-height: 1.1;
  font-size: clamp(1.5rem,7vw, 3rem);
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
}
.productHeader-heading-cat {
  font-size: clamp(1rem,2.6vw, 1.4rem);
  font-weight: 500;
  line-height: 1.35;
  padding-top: 0.2em;
}
.productHeader-heading-sub {
}
.productHeader-heading-subTitle {
  text-align: right;
  color: var(--item-cat-color);
  font-weight: 600;
  font-family: var(--font-family-gothic-en);
  font-size: clamp(0.7rem,1.2vw, 1.1rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.productHeader-heading-subTitle::before {
  content: attr(data-text)"";
  display: block;
  font-size: 180%;
  font-weight: 700;
}

.productHeader-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em 2.5%;
}
.productHeader-img {
  border: 1px solid var(--color-sub02);
}
.productHeader-img img {
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
}

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


  .productHeader {
    background: linear-gradient(to bottom, var(--item-cat-color-sub) 18em, transparent 18em);
    overflow: hidden;
    position: relative;
  }
  .productHeader-heading {
    display: block;
    margin-bottom: 2.5em;
    padding: 0.2em 0 0.4em 1.5em;
  }
  .productHeader-heading-inner {
    flex: 1;
    position: relative;
    z-index: 9;
  }

  .productHeader-heading-subTitle {
    font-size: clamp(0.7rem,3vw, 1.2rem);
    position: absolute;
    right: 0;
    top: -0.5em;
    opacity: 0.08;
    line-height: 1;
  }
  .productHeader-heading-subTitle::before {
    font-size: 250%;
  }

  .productHeader-visual {
    display: flex;
    gap: 0.5em;
  }
  .productHeader-img {
    flex: 1;
    border: 1px solid var(--color-sub02);
  }
  .productHeader-img img {
    width: 100%;
    max-width: 100%;
    vertical-align: bottom;
  }


}

/***********
photoSwipe
************/

.photoSwipe a[data-pswp-width] {
  display: block;
  position: relative;
  cursor: zoom-in;
}
.photoSwipe a[data-pswp-width]::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: "\f00e";
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 2.2em;
  aspect-ratio: 1 / 1;
  background-color: var(--color-base);
  color: var(--color-main);
  border-radius: 50%;
  border: 1px solid #0002;
  position: absolute;
  font-size: 1.1rem;
  right: 1em;
  bottom: 1em;
}

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

  .photoSwipe a[data-pswp-width]::after {
    font-size: 12px;
    right: 8px;
    bottom: 8px;
  }

}

/***********
productDetail
************/

.productDetail {
}
.productDetail-data {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8em 0.8em;
}
.productDetail-data-list {
  width: calc(33% - 0.4em);
  min-width: 20em;
  display: flex;
  min-height: 3em;
}
.productDetail-data-list dt{
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  min-width: 7em;
  padding: 0.8em;
  background-color: var(--item-cat-color);
  color: var(--color-base);
}
.productDetail-data-list dd{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 0.8em;
  min-width: 9em;
  background-color: var(--item-cat-color-sub);
}


.productDetail-noteTable {
  width: 100%;
  border: 1px solid #aaa;
  font-size: 0.95rem;
}
.productDetail-noteTable tbody tr:not(:last-child) {
  border-bottom: 1px solid #aaa;
}
.productDetail-noteTable th {
  background-color: var(--color-main);
  color: var(--color-base);
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  padding: 0.8em ;
}
.productDetail-noteTable td {
  border-left: 1px solid #aaa;
  text-align: center;
  vertical-align: middle;
  padding: 0.8em ;
}


.productDetail-link {
  padding-top: 3em;
  text-align: center;
}


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

  .productDetail {
    display: block;
  }
  .productDetail-data {
    display: block;
  }
  .productDetail-data-list {
    width: 100%;
    margin-bottom: 2px;
    font-size: 0.9rem;
  }
  .productDetail-data-list dt{
  }
  .productDetail-data-list dd{
    flex: 1;
    text-align: left;
    padding: 0.8em 1.2em;
    min-width: 5em;
  }


  .productDetail-noteTable {
    font-size: clamp(0.6rem,3vw, 0.9rem);
    line-height: 1.3;
  }
  .productDetail-noteTable th {
    padding: 0.8em 0.2em;
  }
  .productDetail-noteTable td {
    padding: 0.8em 0.2em;
  }


  .productDetail-link {
    padding-top: 3em;
    text-align: center;
  }

}

/***********
grid
************/

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5em 4%;
}
.grid-section.-x2 {
  grid-column: span 2;
}

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

  .grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 4em 0;
  }
  .grid-section.-x2 {
    grid-column: auto;
  }

}

/***********
captionImg01
************/

.captionImg {
  position: relative;
}
.captionImg-badge {
  font-size: 1rem;
  width: 5em;
  background-color: var(--color-brand01);
  color: var(--color-base);
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  translate: 1.5em -1em;
}
.captionImg-badge-text {
  font-weight: 600;
}

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

  .captionImg-badge {
    font-size: 0.85rem;
    translate: -0.5em -1em;
  }
}

/***********
imgGallery
************/

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

/***********
compareGallery
************/

.compareGallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3em 3%;
}
.compareGallery.-half {
  grid-template-columns: repeat(2, 1fr);
}
.compareGallery-img {
}
.compareGallery-img img {
  width: 100%;
}

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

  .compareGallery .captionImg-badge {
    font-size: 0.75rem;
  }
}


/***********
messageName
************/

.messageName {
  font-size: clamp(1.25rem,4.4vw, 2rem);
  font-weight: 600;
  align-items: end;
  gap: 0.2em 0.6em;
  padding-top: 1em;
}
.messageName small {
  display: inline-block;
  padding-right: 0.8em;
}
.messageName span {
  display: inline-block;
}

/***********
history
************/

.history {
  display: flex;
  flex-direction: row-reverse;
}

/*
company
 */

.history-company {
  width: 50%;
}
.history-headline {
  font-size: clamp(1.25rem,2.6vw, 2rem);
  font-family: var(--font-family-gothic-en);
  font-weight: 400;
  padding-top: 1em;
  padding-bottom: 1.2em;
  letter-spacing: 0.02em;
  color: var(--color-brand01);
  text-align: center;
}
.history-company-container {
  position: relative;
  padding-top: 2em;
  padding-bottom: 2em;
}
.history-company-container::before {
  content: "";
  display: block;
  width: 131px;
  height: 162px;
  background: url(../../img/company/history/winder.png) no-repeat 0 0 / 100% auto;
  position: absolute;
  left: 0;
  top: 0;
  translate: calc(-50% - 1px) -100%;
}
.history-company-yarnLine {
  display: block;
  width: 2px;
  height: 100%;
  position: absolute;
  left: -2px;
  top: 0;
  transform-origin: top;
  transform: scaleY(0);
  background-color: var(--color-brand01);
  /* background: linear-gradient(to bottom,
    #0001 0%,  #0001 20%,
    #004aaf 25%, #004aaf 45%,
    #0001 50%, #0001 70%,
    #004aaf 75%, #004aaf 95%,
    #0001 100%
  );
  background-size: 100% 30%;
  animation: spin-history-data-line 20s linear infinite ; */
}
@keyframes spin-history-data-line{
  0%   { background-position: 0 0%; }
  100% { background-position: 0 200%; }
}


.history-data {
  position: relative;
  padding-left: 90px;
  z-index: 9;
}
.history-data + .history-data {
  margin-top: 2.5em;
}


.history-data-title {
  font-size: clamp(1.25rem,4.4vw, 2rem);
  color: var(--color-brand01);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 0.3em;
  line-height: 1;
  padding-bottom: 0.3em;
}

.history-data-winder {
  display: inline-block;
  width: 90px;
  height: 2px;
  position: absolute;
  left: -12px;
}
.history-data-winder span{
  display: block;
  height: 2px;
  scale: 0 1;
  background-color: var(--color-brand01);
  transform-origin: left;
  transition: 1.5s;
}
.history-data-winder span.is-active{
  scale: 1 1;
  transition-delay: 0.6s;
}
.history-data-winder::before,
.history-data-winder::after {
  content: "";
  display: block;
  width: 22px;
  aspect-ratio: 1 / 1;
  background: url(../../img/company/history/winder_icon.png) no-repeat 0 0 / 100% auto;
  position: absolute;
  z-index: 9;
  top: 50%;
  translate: 0 -50%;
  animation: spin-history-data-winder 5s linear infinite;
}
.history-data-winder::before{
  left: 0;
}
.history-data-winder::after{
  right: 0;
}
@keyframes spin-history-data-winder {
  0% {   rotate: 0deg;}
  100% {   rotate: -360deg;}
}

.history-data-year {
  display: inline-block;
  font-weight: 700;
  font-family: var(--font-family-gothic-en);
  letter-spacing: 0.02em;
}
.history-data-era {
  display: inline-block;
  font-weight: 600;
  font-size: max(55%,13px);
}
.history-data-text {
  font-size: clamp(1rem,3.4vw, 1.2rem);
  font-weight: 500;
}

/*
product
*/

.history-product {
  width: 50%;
}

.history-product-container {
  padding-right: 10%;
}
.history-product-section {
}
.history-product-section + .history-product-section {
  padding-top: 3em;
}

.history-product-title {
  font-size: clamp(1.25rem,4.4vw, 2rem);
  color: var(--color-brand01);
  gap: 0 0.3em;
  line-height: 1;
  padding-bottom: 0.4em;
}
.history-product-year {
  display: inline-block;
  font-weight: 700;
  font-family: var(--font-family-gothic-en);
  font-size: 140%;
  letter-spacing: 0.02em;
  padding-right: 0.3em;
}
.history-product-year small{
}
.history-product-series {
  display: inline-block;
  font-weight: 700;
  font-family: var(--font-family-gothic-en);
  font-size: 90%;
  color: var(--color-accent03);
}
.history-product-series small {
  font-size: 55%;
}


.history-product-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em 3%;
}


.history-product-img {
}
.history-product-img figcaption {
  font-size: 0.8rem;
  padding-top: 0.5em;
  text-align: center;
}

.history-product-list {
  font-size: clamp(1rem,3.4vw, 1.2rem);
  font-weight: 500;
}
.history-product-list li {
  padding-left: 0.8em;
  position: relative;
}
.history-product-list li + li {
  padding-top: 0.1em;
}
.history-product-list li::before {
  content: "";
  display: block;
  width: 0.4em;
  aspect-ratio: 1 / 1;
  position: absolute;
  left: 0;
  top: 0.6em;
  background-color: var(--color-brand01);
  border-radius: 50%;
}

.historyNext {
  text-align: center;
  font-family: var(--font-family-gothic-en);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-brand01);
  margin-bottom: 1em;
  margin-top: 3em;
}
.historyNext::after {
  content: "";
  display: block;
  width: 1.5em;
  height: 1.5em;
  margin: 0 auto;
  border: 3px solid var(--color-brand01);
  clip-path: polygon(0% 0%,  100% 100%, 0 100%);
  rotate: -45deg;
  scale: 0.8;
  translate: 0 -20%;
}

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

  .history {
    display: block;
  }

  /*
  company
  */

  .history-company {
    width: auto;
    padding-top: 0;
  }
  .history-headline {
    font-size: clamp(1.25rem,6.5vw, 2rem);
    padding-top: 0;
    padding-bottom: 0.5em;
  }
  .history-company-container {
    padding-top: 1em;
    padding-bottom: 1em;
  }
  .history-company-container::before {
    width: 65px;
    height: 81px;
  }
  .history-company-container::after {
    width: 1px;
    left: -1px;
  }

  .history-data {
    padding-left: 60px;
  }
  .history-data + .history-data {
    margin-top: 1.5em;
  }

  .history-data-winder {
    width: 60px;
    height: 1px;
    left: -9px;
  }
  .history-data-winder::before,
  .history-data-winder::after {
    width: 17px;
  }

  /*
  product
  */

  .history-product {
    width: auto;
    padding-top: 5em;
  }

  .history-product-container {
    padding-right: 0;
  }
}

/***********
philosophy
************/

.philosophy {
  counter-reset : philosophy_num;
}
.philosophy li {
  display: flex;
  align-items: start;
}
.philosophy li + li {
  margin-top: 1em;
}
.philosophy-badge {
  font-size: 0.8rem;
  border: 1px solid var(--color-brand01);
  color: var(--color-brand01);
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  letter-spacing: 0;
  width: 5.5em;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
  line-height: 1;
}
.philosophy-badge::after{
  display: inline-block;
  counter-increment:philosophy_num;
  content: counter(philosophy_num, decimal-leading-zero) ;
  font-size: 220%;
  font-weight: 700;
  scale: 1 0.9;
}

.philosophy-badge-text {
}
.philosophy-inner {
  flex: 1;
  padding-left: 2.7em;
  padding-top: 1em;
}
.philosophy-lead {
  font-size: clamp(1.15rem,5vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  position: relative;
  line-height: 1.4;
}
.philosophy-lead::before {
  content: "";
  display: block;
  width: 1.5em;
  height: 1px;
  background-color: var(--color-brand01);
  position: absolute;
  right: calc(100% + 0.4em);
  top: 0.7em;
}
.philosophy-text {
  font-size: clamp(0.9rem,3.4vw, 1.1rem);
  font-weight: 400;
  padding-top: 0.2em;
  color: var(--color-brand01);
}

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

  .philosophy {
  }
  .philosophy li {
  }
  .philosophy li + li {
  }
  .philosophy-badge {
    font-size: 0.65rem;
    font-weight: 600;
    width: 5em;
    padding-top: 0.5em;
  }

  .philosophy-badge-text {
  }
  .philosophy-inner {
    flex: 1;
    padding-left: 1em;
    padding-top: 0.6em;
  }
  .philosophy-lead {
    font-size: clamp(1.25rem,5vw, 1.65rem);
    font-weight: 700;
    position: relative;
    line-height: 1.4;
    letter-spacing: 0;
  }
  .philosophy-lead::before {
    width: 0.7em;
  }
  .philosophy-text {
    padding-top: 0.5em;
  }

}

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

.pageNavi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em 2em;
}
.pageNavi li {
}
.pageNavi li a {
  display: inline-block;
  font-weight: 500;
  font-size: 1.1rem;
  color: inherit;
  position: relative;
  padding-right: 1.2em;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
  transition: 0.3s;
}
.pageNavi li a::after {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f358";
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  scale: 0.9;
  color: var(--color-brand01);
  transition: 0.2s;
}
body.is-pc .pageNavi li a:hover {
  text-decoration-color: inherit;
  color: var(--color-brand01);
}
body.is-pc .pageNavi li a:hover::after {
  translate: 0 -40%;
}

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


  .pageNavi {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 5px 5%;
    margin-right: -14px;
  }
  .pageNavi li {
    width: 45%;
  }
  .pageNavi li a {
    width: 100%;
    font-size: 1rem;
    padding: 0.8em 1.2em 0.8em 0;
    border-bottom: 1px solid var(--color-brand01);
  }
  .pageNavi li a::after {
    font-family: 'Font Awesome 6 Free';
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-weight: 900; /* fas */
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    content: "\f358";
    position: absolute;
    right: 0;
    top: 50%;
    translate: 0 -50%;
    scale: 0.9;
    color: var(--color-brand01);
    transition: 0.2s;
  }
  body.is-pc .pageNavi li a:hover {
    text-decoration-color: inherit;
    color: var(--color-brand01);
  }
  body.is-pc .pageNavi li a:hover::after {
    translate: 0 -40%;
  }


}
/***********
corpTable
************/

.corpTable {
  border-top: 1px solid #aaa;
  font-size: clamp(0.9rem,2.6vw, 1.2rem);
  line-height: 1.65;
}
.corpTable tr {
  border-bottom: 1px solid #aaa;
}
.corpTable th {
  width: 12em;
  padding: 1.2em 1em 1.2em 0;
  text-align: left;
  font-weight: 600;
  vertical-align: middle;
}
.corpTable td {
  padding: 1.2em 0;
  vertical-align: middle;
}

.corpTable-title {
  position: relative;
  padding-left: 1em;
}
.corpTable-title::before {
  content: "";
  display: block;
  width: 0.4em;
  aspect-ratio: 1 / 1;
  position: absolute;
  left: 0;
  top: 0.6em;
  background-color: var(--color-brand01);
  border-radius: 50%;
}


.corpTable-separate {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5em 1em;
}
.corpTable-separate-inner {
}
.corpTable-separate-link {
}
.corpTable-btn {
  display: inline-block;
  padding: 1em 3em 1em 0;
  color: var(--color-brand01);
  text-decoration: none;
  font-family: var(--font-family-gothic-en);
  font-size: 0.8rem;
  font-weight: 600;
  position: relative;
}
.corpTable-btn[target="_blank"]::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: "\f08e";
  width: 3em;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: var(--color-brand01);
  color: var(--color-base);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: 85%;
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  transition: 0.2s;
}
.corpTable-btn.-accent {
  color: var(--color-accent01);
}
.corpTable-btn.-accent::after {
  background-color: var(--color-accent01);
}
body.is-pc .corpTable-btn.-accent:hover::after {
  scale: 1.1;
}

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

  .corpTable th {
    width: 8.5em;
    padding: 1em 0.5em 1em 0;
  }
  .corpTable td {
    padding: 1em 0;
  }


  .corpTable-separate {
    display: block;
  }
  .corpTable-separate-link {
    padding-top: 0.3em;
  }

}

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

}

/***********
exportMap
************/

.exportMap {
}
.exportMap img {
  width: 100%;
}

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

  .exportMap {
  }
  .exportMap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 32 / 15;
  }

}

/***********
access
************/

.access {
  display: flex;
  gap: 0 5%;
}
.access-map {
  flex: 1;
}
.access-gallery {
  width: 22%;
}
.access-gallery-img {
  position: relative;
}
.access-gallery-img figcaption {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  background-color: var(--color-main);
  color: var(--color-base);
  padding: 0.4em 1em;
  position: absolute;
  left: 0;
  top: 0;
}
.access-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}
.access-gallery-img + .access-gallery-img {
  margin-top: 10px;
}

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

  .access {
    display: block;
  }
  .access-map {
  }
  .access-gallery {
    width: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 10px;
    padding-top: 1em;
  }
  .access-gallery-img + .access-gallery-img {
    margin-top: 0;
  }

}

/***********
vrLink
************/

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

.vrLink li {
}
.vrLink li a {
  position: relative;
  display: block;
  color: var(--color-base);
  font-weight: 600;
  position: relative;
}
.vrLink 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;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f35a";
  position: absolute;
  right: 1em;
  top: 50%;
  translate: 0 -50%;
  z-index: 9;
}
.vrLink-img {
}
.vrLink-img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  transition: 0.3s;
}
body.is-pc a:hover .vrLink-img::after {
  opacity: 0.5;
}

.vrLink-block {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  z-index: 9;
  pointer-events: none;
}
.vrLink-text {
}
.vrLink-text span {
  display: inline-block;
  position: relative;
  margin-left: 2em;
}
.vrLink-text span::before {
  content: "";
  display: block;
  width: 3.5em;
  height: 3em;
  background: url(../../img/company/vr.png) no-repeat center center / 100% auto;
  position: absolute;
  right: calc(100% + 0.5em);
  top: 50%;
  translate: 0 -50%;
}

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

  .vrLink li a {
    font-size: 0.85rem;
  }
  .vrLink li a::after {
    right: 0.8em;
    scale: 0.85
  }
  .vrLink-text span {
    margin-left: 1em;
  }
  .vrLink-text span::before {
    width: 2.5em;
  }

}

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

  .vrLink {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 0;
    max-width: 420px;
    margin: 0 auto;
  }

  .vrLink li {
  }
  .vrLink li a {
    font-size: 1.1rem;
  }
  .vrLink-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 6;
  }
}

/***********
catSelect
************/

.catSelect {
  margin-bottom: 1em;
  padding-right: 1.3em;
  position: relative;
  display: inline-block;
  color: var(--color-brand01);
}
.catSelect-selecter {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  font-family: var(--font-family-gothic);
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.2em 0.4em;
  min-width: 9em;
  outline: none;
  cursor: pointer;
}
.catSelect::after {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f107";
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -40%;
}


/***********
paging
************/

.paging {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  border: 1px solid #bbb;
  border-right: none;
  border-left: none;
  margin-top: 6em;
  padding: 2em 0 3em;
}
.paging-block {
  width: 49%;
}
.paging-block a {
  display: block;
  color: inherit;
  text-decoration: none;
  position: relative;
}
.paging-text {
  font-weight: 500;
  font-size: 0.9rem;
  font-family: var(--font-family-gothic-en);
  color: var(--color-brand01);
}
.paging-box {
}
.paging-inner {
}
.paging-title {
  font-weight: 400;
  height: calc(1em * 1.5);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  transition: 0.3s;
}
body.is-pc .paging-block a:hover .paging-title {
  color: var(--color-brand01);
}
.paging-data {
  display: flex;
  flex-wrap: wrap;
  padding-top: 0.5em;
  font-size: 0.85rem;
}
.paging-data-time {
  display: inline-block;
  font-weight: 500;
  font-family: var(--font-family-gothic-en);
  padding-right: 0.7em;
  white-space: nowrap;
  opacity: 0.6;
}
.paging-data-cat {
  display: inline-block;
  font-weight: 500;
  color: var(--color-brand01);
  line-height: 1.4;
}

.paging-block.-next a {
  padding-right: 2.5em;
  position: relative;
}
.paging-block.-next 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: "\f35a";
  position: absolute;
  right: 0.5em;
  top: 50%;
  translate: 0 -50%;
  color: var(--color-brand01);
}
body.is-pc .paging-block.-next a:hover {
  translate: 0.2em 0;
}
.paging-block.-next .paging-text {
  text-align: right;
}
.paging-block.-next .paging-box {
  flex-direction: row-reverse;
  text-align: right;
}
.paging-block.-next .paging-data {
  justify-content: end;
}
.paging-block.-prev a{
  padding-left: 2.5em;
}

.paging-block.-prev 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: "\f359";
  position: absolute;
  left: 0.5em;
  top: 50%;
  translate: 0 -50%;
  color: var(--color-brand01);
}
body.is-pc .paging-block.-prev a:hover {
  translate: -0.2em 0;
}

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

  .paging {
    margin-top: 3em;
    padding: 1em 0 1em;
  }
  .paging-text {
    font-size: 0.9rem;
  }
  .paging-title {
    font-size: 0.9rem;
  }
  .paging-data {
    font-size: 0.6rem;
  }
  .paging-block.-next a {
    padding-right: 1.5em;
  }
  .paging-block.-next a::after {
    right: 0;
    scale: 0.8;
  }
  .paging-block.-prev a{
    padding-left: 1.5em;
  }

  .paging-block.-prev a::after {
    left: 0;
    scale: 0.8;
  }
}



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

.refine {
}
.refine-section {
  display: flex;
  align-items: center;
}
.refine-section + .refine-section {
  margin-top: 2em;
}
.refine-title {
  white-space: nowrap;
  font-size: 1.1rem;
  font-weight: 600;
  min-width: 8.5em;
}
.refine-inner {
  flex: 1;
  border-left: 2px dotted var(--color-sub02);
  padding-left: 1.5em;
}

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

  .refine-section {
    display: block;
  }
  .refine-section + .refine-section {
    margin-top: 1em;
  }
  .refine-title {
    display: none;
  }
  .refine-inner {
    border-left: none;
    padding-left: 0em;
  }
}

/***********
catalog
************/

.catalog {
}
.catalog-container {
  display: flex;
  align-items: start;
  gap: 0 5%;
}
.catalog-inner {
  flex: 1;
}
.catalog-gallery {
  display: flex;
  gap: 0 3%;
  margin-bottom: 2em;
}
.catalog-gallery-main {
  flex: 1;
}
.catalog-gallery-sub {
  width: 32.2%;
}
.catalog-img {
  border: 1px solid #004aaf88;
}
.catalog-img + .catalog-img {
  margin-top: 1em;
}

.catalog-lineup {
  display: flex;
  gap: 0 5%;
}
.catalog-lineup-img {
  width: 30%;
}
.catalog-lineup-inner {
  flex: 1;
}

.catalog-form {
  width: 41.6%;
  min-width: 400px;
}

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

  .catalog-container {
    display: block;
  }
  .catalog-form {
    padding-top: 4em;
    width: auto;
    min-width: initial;
  }
}


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

  .catalog-img + .catalog-img {
    margin-top: 0.6em;
  }
  .catalog-lineup {
    display: block;
  }
  .catalog-lineup::after {
    content: "";
    clear: both;
    display: table;
  }
  .catalog-lineup-img {
    width: 28%;
    float: right;
    padding-left: 10px;
    padding-bottom: 10px;
  }
}

/***********
equipSummary
************/

.equipSummary {
  display: flex;
  justify-content: space-between;
}
.equipSummary-section {
  width: 24%;
}
.equipSummary-container {
  display: block;
  color: inherit;
  text-decoration: none;
  border: 1px solid #004aaf22;
  background-color: var(--color-base);
  box-shadow: 0 0 8px #004aaf22;
  padding: 1em 1em 3em;
  text-align: center;
  position: relative;
}
.equipSummary-container::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: "\f358";
  position: absolute;
  left: 50%;
  bottom: 1.2em;
  translate: -50% 0;
  color: var(--color-brand01);
  transition: 0.3s;
}
body.is-pc .equipSummary-container:hover {
  background-color: var(--color-sub05);
}
body.is-pc .equipSummary-container:hover::after {
  bottom: 1em;
}
.equipSummary-title {
  font-size: clamp(0.7rem,2vw, 1.1rem);
}
.equipSummary-box {
  white-space: nowrap;
  font-size: clamp(1.5rem,4.2vw, 2.2rem);
  font-weight: 700;
  font-family: var(--font-family-gothic-en);
  line-height: 1;
  color: var(--color-brand01);
}
.equipSummary-box-num {
  font-size: 220%;
  letter-spacing: -0.02em;
}
.equipSummary-box-unit {
  padding-left: 0.1em;
  font-weight: 900;
}

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


  .equipSummary {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2vw 0;
  }
  .equipSummary-section {
    width: calc(50% - 1vw);
  }

  .equipSummary-container {
    padding: 1em 0.5em 2em;
  }
  .equipSummary-container::after {
    bottom: 0.6em !important;
  }

  .equipSummary-title {
    font-size: clamp(0.85rem,3.8vw, 1.2rem);
  }
  .equipSummary-box {
    font-size: clamp(1.5rem,4.2vw, 2.2rem);
  }

}


/***********
equipSection
************/

.equipSection {
  position: relative;
}
.equipSection img {
  width: 100%;
  max-width: 100%;
}
.equipSection-heading {
  font-size: clamp(0.9rem,1vw, 1.1rem);
  font-family: var(--font-family-gothic-en);
}
.equipSection-heading-subTitle {
  color: var(--color-brand01);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  padding-bottom: 0.8em;
}
.equipSection-heading-title {
  font-weight: 400;
  font-size: 200%;
  line-height: 1;
  opacity: 0.3;
  letter-spacing: -0.02em;
}

/*
img
*/

.equipImg {
  text-align: center;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.equipImg img {
}
.equipImg-box {
  overflow: hidden;
}
.equipImg-caption {
  padding-top: 0.7em;
}
.equipImg-caption > span {
  display: inline-block;
  position: relative;
  padding-left: 1em;
}
.equipImg-caption > span::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  position: absolute;
  left: 0;
  top: 0.5em;
  background-color: var(--color-brand01);
  border-radius: 50%;
}

/*
no01
*/

.equipSection.-no01 .equipSection-heading {
  position: absolute;
  left: 62%;
  top: 5%;
}
.equipSection.-no01 .equipSection-heading .equipSection-heading-wheel{
  position: relative;
  translate: 20% 20%;
}

/*
no02
*/

.equipSection.-no02 .equipSection-heading {
  position: absolute;
  right: 62%;
  top: 0;
}
.equipSection.-no02 .equipSection-heading .equipSection-heading-wheel{
  position: relative;
  translate: -20% 20%;
}

/*
no03
*/

.equipSection.-no03 .equipSection-heading {
  position: absolute;
  left: 62%;
  top: 5%;
}
.equipSection.-no03 .equipSection-heading .equipSection-heading-wheel{
  position: relative;
  translate: 40% 20%;
}


/*
equipGallery01
*/

.equipGallery01 {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 9;
  padding-bottom: var(--padding-main);
}
.equipGallery01-item01 {
  width: 57%;
  padding-left: 8%;
}
.equipGallery01-item02 {
  width: 55%;
  padding-left: 20%;
  margin-top: 5%;
}
.equipGallery01-item03 {
  width: 35%;
  padding-left: 5%;
  margin-top: -5%;
}

/*
equipGallery01
*/

.equipGallery02 {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 9;
  padding-bottom: var(--padding-main);
}
.equipGallery02-item01 {
  width: 38.5%;
  padding-left: 5%;
}
.equipGallery02-item02 {
  width: 55%;
  padding-left: 2%;
}
.equipGallery02-item03 {
  width: 100%;
}

.equipImg-separate {
  display: flex;
  justify-content: center;
  gap: 0 2%;
  margin-top: 10%;
}
.equipImg-separate-item.-no01{
  width: 35%;
}
.equipImg-separate-item.-no02{
  width: 35%;
}

.equipGallery02-wheel {
  position: absolute;
  left: -2%;
  top: 40%;
}

/*
equipGallery03
*/

.equipGallery03 {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 9;
  padding-bottom: var(--padding-main);
}
.equipGallery03-item01 {
  width: 40%;
  padding-left: 6%;
  margin-top: 25em;
}
.equipGallery03-item02 {
  width: 55%;
  padding-left: 2%;
  margin-top: 8em;
}
.equipGallery03-item03 {
  width: 46%;
  padding-left: 9%;
  margin-top: 5%;
}
.equipGallery03-item04 {
  width: 48%;
  padding-left: 3%;
  margin-top: 8%;
}

.equipGallery03-item05 {
  width: 70%;
  padding-left: 18%;
  margin-top: 3%;
}



/*
equipGallery04
*/

.equipGallery04 {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 9;
}
.equipGallery04-item01 {
  width: 56%;
  padding-left: 8%;
  margin-top: 8em;
}
.equipGallery04-item02 {
  width: 40%;
  padding-left: 2%;
  margin-top: 30em;
}

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

  .equipSection-heading {
    font-size: clamp(0.9rem,1vw, 1.1rem);
  }

  /*
  img
  */

  .equipImg-caption {
    padding-top: 0.7em;
    padding-inline: 0.5em;
    font-size: 0.85rem;
  }

  /*
  no01
  */

  .equipSection.-no01 .equipSection-heading {
    position: relative;
    inset: auto;
    padding-left: var(--padding-side);
    padding-bottom: 4em;
  }
  .equipSection.-no01 .equipSection-heading .equipSection-heading-wheel{
    position: absolute;
    translate: 14em -10em;
  }

  /*
  no02
  */

  .equipSection.-no02 .equipSection-heading {
    position: relative;
    inset: auto;
    padding-left: var(--padding-side);
    padding-bottom: 4em;
  }
  .equipSection.-no02 .equipSection-heading .equipSection-heading-wheel{
    position: absolute;
    translate: -60% -70%;
  }

  /*
  no03
  */

  .equipSection.-no03 .equipSection-heading {
    position: relative;
    inset: auto;
    padding-left: var(--padding-side);
    padding-bottom: 4em;
  }
  .equipSection.-no03 .equipSection-heading .equipSection-heading-wheel{
    position: absolute;
    translate: 14em -14em;
  }


  /*
  equipGallery01
  */

  .equipGallery01 {
  }
  .equipGallery01-item01 {
    width: 100%;
    padding-left: 5%;
    padding-right: 8%;
  }
  .equipGallery01-item02 {
    width: 70%;
    padding-left: 0;
    margin-top: 3em;
  }
  .equipGallery01-item03 {
    width: 95%;
    padding-left: 35%;
    margin-top: 2em;
  }

  /*
  equipGallery01
  */

  .equipGallery02 {
  }
  .equipGallery02-item01 {
    width: 43%;
    padding-left: 0;
  }
  .equipGallery02-item02 {
    width: 55%;
    padding-left: 2%;
  }
  .equipGallery02-item03 {
    width: 100%;
  }

  .equipImg-separate {
    display: flex;
    justify-content: center;
    gap: 0 2%;
    margin-top: 6em;
  }
  .equipImg-separate-item.-no01{
    width: 49%;
  }
  .equipImg-separate-item.-no02{
    width: 49%;
  }

  .equipGallery02-wheel {
    display: none;
  }

  /*
  equipGallery03
  */

  .equipGallery03 {
  }
  .equipGallery03-item01 {
    width: 70%;
    padding-left: 6%;
    margin-top: 2em;
  }
  .equipGallery03-item02 {
    width: 90%;
    padding-left: 22%;
    margin-top: 2em;
  }
  .equipGallery03-item03 {
    width: 46%;
    padding-left: 0;
    margin-top: 3em;
  }
  .equipGallery03-item04 {
    width: 54%;
    padding-left: 3%;
    margin-top: 8%;
  }

  .equipGallery03-item05 {
    width: 90%;
    padding-left: 20%;
    margin-top: 3em;
  }



  /*
  equipGallery04
  */

  .equipGallery04 {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 9;
  }
  .equipGallery04-item01 {
    width: 70%;
    padding-left: 3%;
    margin-top: 1em;
  }
  .equipGallery04-item02 {
    width: 90%;
    padding-left: 20%;
    margin-top: 2em;
  }

}

/***********
equipData
************/

.equipData {
  border-bottom: 1px solid #aaa;
  display: flex;
  background-color: #fffe;
}
.equipData:first-child {
  border-top: 1px solid #aaa;
}
.equipData dt {
  display: flex;
  align-items: center;
  width: 18em;
}
.equipData dd {
  flex: 1;
  padding: 1.2em 0 1.2em 2em;
}
.equipData-title {
  flex: 1;
  font-weight: 600;
  padding-left: 1em;
  padding-right: 0.5em;
  position: relative;
  line-height: 1.35;
}
.equipData-title::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  position: absolute;
  left: 0;
  top: 0.5em;
  background-color: var(--color-brand01);
  border-radius: 50%;
}
.equipData-count {
  background-color: var(--color-sub06);
  color: var(--color-brand01);
  font-weight: 500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 5.5em;
  height: 100%;
}
.equipData-count-num {
}

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

  .equipData {
    display: block;
    padding: 1.2em 0;
  }
  .equipData:first-child {
    border-top: 1px solid #aaa;
  }
  .equipData dt {
    display: flex;
    align-items: start;
    width: auto;
    padding-bottom: 0.5em;
    font-size: 1.2rem;
  }
  .equipData dd {
    flex: none;
    padding: 0;
  }
  .equipData-title {
    flex: none;
    line-height: 1.5;
  }
  .equipData-title::before {
    content: "";
    display: block;
    width: 0.5em;
    height: 0.5em;
    position: absolute;
    left: 0;
    top: 0.5em;
    background-color: var(--color-brand01);
    border-radius: 50%;
  }
  .equipData-count {
    background-color: transparent;
    display: inline;
    width: auto;
    height: auto;
  }
  .equipData-count::before {
    content: "";
  }

}

/***********
note
************/

.note {
  counter-reset : note_num;
}
.note-section {
  padding-block: min(8vw,2.5em) ;
  border-bottom: 1px solid var(--color-sub02);
}
.note-section:not(.-noBorder):first-child {
  border-top: 1px solid var(--color-sub02);
}
.note-title {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-brand01);
  padding-bottom: 0.3em;
}

.note-title-num {
}
.note-title-num::before{
  display: inline-block;
  counter-increment:note_num;
  content: counter(note_num, decimal-leading-zero) '.';
  white-space: nowrap;
  padding-right: 0.4em;
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  font-size: 110%;
}
.note-text {
  line-height: var(--lineheight-main);
  text-wrap: pretty;
}



/***********
sdgs
************/

.sdgs {
}
.sdgs-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--padding-small) 0;
}
.sdgs-section {
  width: 47%;
}
.sdgs-section:nth-child(2n) {
  margin-top: 3.5em;
}
.sdgs-section.-wide {
  width: auto;
  padding-top: 3em;
  padding-bottom: 2em;
}
.sdgs-section-img {
}
.sdgs-section-inner {
  padding-top: 1.5em;
}
.sdgs-section.-wide .sdgs-section-inner {
  padding-top: 2.5em;
}
.sdgs-icons {
  padding-top: 1.2em;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.sdgs-icons li {
  width: clamp(64px,18vw, 80px);
}

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


  .sdgs {
  }
  .sdgs-container {
    display: block;
    gap: var(--padding-small) 0;
  }
  .sdgs-section {
    width: auto;
  }
  .sdgs-section:nth-child(2n),
  .sdgs-section:not(:first-child) {
    margin-top: var(--padding-small);
  }
  .sdgs-section.-wide {
    width: auto;
    padding-block: 0;
  }
  .sdgs-section-img {
  }
  .sdgs-section-inner {
    padding-top: 1.5em;
  }
  .sdgs-section.-wide .sdgs-section-inner {
    padding-top: 2.5em;
  }
  .sdgs-icons {
    padding-top: 1.2em;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }
  .sdgs-icons li {
    width: clamp(64px,18vw, 80px);
  }


}

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

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

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