@charset "utf-8";

/* CSS Document */




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

.pageHeading {
  position: relative;
  overflow: hidden;
  color: var(--color-base);
  padding-left: 7vw;
}
.pageHeading-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.pageHeading-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pageHeading-bg::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: url(../../img/pattern01.jpg) repeat center center ;
  opacity: 1;
  mix-blend-mode: overlay;
}
.pageHeading-container {
  font-size: 1.5em;
  height: 14em;
  padding-top: 3em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 9;
}


.pageHeading-parent {
  font-size: clamp(12px,3.2vw, 18px);
  font-weight: 500;
  margin-bottom: 0.6em;
}
.pageHeading-parent-text {
  font-weight: 500;
  padding-bottom: 0.2em;
  letter-spacing: 0.08em;
  display: inline-block;
  border-bottom: 1px solid var(--color-base);
}


.pageHeading-title {
  font-weight: 600;
  font-size: 150%;
  line-height: 1.4;
}


.pageHeading-subTitle {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--color-dark01);
  color: var(--color-base);
  font-family: var(--font-family-gothic-en);
  text-transform: uppercase;
  white-space: nowrap;
  font-size: clamp(15px,5vw, 100px);
  font-weight: 300;
}

.pageHeading-subTitle-text {
  padding: 0.1em 0.5em;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
  opacity: 0.7;
  letter-spacing: 0.05em;
}
.pageHeading-subTitle-text span {
  display: inline-block;
  translate: 0 100%;
}
body.is-loaded .pageHeading-subTitle-text span {
  translate: 0 0;
  transition: 0.5s;
}



.pageHeading-copyright {
  font-family: var(--font-family-gothic-en02);
  font-weight: 500;
  font-size: 0.8rem;
  white-space: nowrap;
  letter-spacing: 0;
  position: absolute;
  left: 1vw;
  bottom: 3vw;
  color: var(--color-base);
  rotate: 90deg;
  translate: 0 -14em;
  transform-origin: left bottom;
  pointer-events: none;
  opacity: 0.3;
}


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

  .pageHeading {
    padding-left: 7vw;
  }
  .pageHeading-container {
    font-size: 1.5em;
    height: 11em;
    padding-top: 1em;
  }
  .pageHeading-title {
    font-size: 110%;
  }
  .pageHeading-subTitle {
    font-size: clamp(15px,9vw, 100px);
  }

  .pageHeading-copyright {
    display: none;
  }

}

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

.breadcrumb{
  font-size: 0.8rem;
  font-feature-settings: "palt";
  letter-spacing: 0;
  position: relative;
  z-index: 100;
}
.breadcrumb-lists{
  display: flex;
  justify-content: end;
  position: absolute;
  width: 100%;
  padding-top: 1.2em;
  padding-right: min(3vw,30px);
}
.breadcrumb-lists li{
  position: relative;
}
.breadcrumb-lists li:not(:has(a)){
  opacity: 0.6;
}
.breadcrumb-lists li:not(:last-child)::after{
  content: "/";
  display: inline-block;
  padding: 0 0.5em;
}
.breadcrumb-lists li a{
  color: inherit;
  text-decoration: none;
  transition: 0s;
  color: var(--color-brand04);
}
body.is-pc .breadcrumb-lists li a:hover{
  text-decoration: underline;
}


.breadcrumb-lists li:last-child {
  max-width: 12em;
  height: calc(1em * 1.5);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

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

  .breadcrumb{
    font-size: 0.6rem;
    -webkit-overflow-scrolling: touch;
    letter-spacing: 0;
  }
  .breadcrumb-lists{
    overflow: auto;
    display: flex;
    justify-content: start;
    padding-right: 0;
    white-space: nowrap;
    padding-left: 3%;
    padding-top: 1em;
  }
  .breadcrumb-lists li a{
  }
  .breadcrumb-lists li:last-child {
    max-width: 12em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  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);
  padding: min(5vw,4em) min(4vw,6%);
}

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

  .box {
    margin-left: -3vw;
    margin-right: -3vw;
  }
}


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

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: min(10vw,5em);
  padding-bottom: 2em;
}

.pagination:empty {
  display: none;
}

.pagination span,
.pagination a {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 2.5em;
  height: 2.5em;
  color: var(--color-dark01);
  text-decoration: none;
  text-align: center;
  font-family: var(--font-family-gothic-en);
  font-weight: 400;
  font-size: 1.1rem;
  margin: 0 5px;
}
.pagination a {
  background-color: var(--color-base);
  box-shadow: 0 0 0 1px var(--color-dark01) inset ;
}
.pagination a.prev ,
.pagination a.next {
  box-shadow: none;
  background-color: transparent;
}
.pagination span.dots{
  border-color: transparent;
}
body.is-pc .pagination a:hover ,
.pagination span:not(.dots){
  background-color: var(--color-dark01);
  color: var(--color-base);
  box-shadow: 0 0 0 1px var(--color-dark01) inset ;
}

.pagination a.prev,
.pagination a.next{
}

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

  .pagination {
    padding-top: 3em;
    margin-left: -4vw;
    margin-right: -4vw;
  }
  .pagination span,
  .pagination a {
    margin: 0 1px 2px;
  font-size: 1rem;
  }
}


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

.post {
}

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

.post h2:not([class]) {
  font-size: 1.5rem;
  font-weight: 600;
  background-color: var(--color-sub03);
  margin: 2.5em 0 1em 0;
  padding: 0.8em 1em;
  line-height: 1.4;
  position: relative;
}

.post h3:not([class]) {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2.5em 0 0.8em 0;
  line-height: 1.4;
  position: relative;
}

.post h4:not([class]) {
  font-size: 1.15rem;
  line-height: 1.4;
  font-weight: 500;
  margin: 2em 0 1em 0;
  border-left: 4px solid var(--color-brand01);
  padding: 0.5em 0em 0.5em 0.8em;
  position: relative;
}

.post h5:not([class]) {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 2em 0 0.5em 0;
  padding-left: 1em;
  position: relative;
}
.post h5:not([class])::before {
  content: "";
  display: block;
  width: 0.3em;
  height: 0.3em;
  background-color: var(--color-base);
  box-shadow: 0 0 0 0.2em var(--color-brand01);
  position: absolute;
  left: 0.2em;
  top: 0.6em;
  border-radius: 50%;
}

.post h6:not([class]) {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 2em 0 0.5em 0;
  position: relative;
}


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

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

.post table:not([class]) {
  line-height: 1.6;
  border-top: 1px solid var(--color-sub02);
}

.post table:not([class]) thead td {
  padding: 1em 1.2em ;
}
.post table:not([class]) thead th{
  padding: 1em 1.2em ;
}

.post table:not([class]) tbody tr {
  border-bottom: 1px solid var(--color-sub02);
}
.post table:not([class]) tbody th {
  padding: 1.5em 0 1.5em 0 ;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
}

.post table:not([class]) tbody td {
  padding: 1.5em 0 1.5em 1.5em ;
  position: relative;
  text-align: left;
}




.post ul:not([class]){
  line-height: 1.8;
  list-style: disc;
  margin-left: 1.8em;
  padding: 1em 0;
}
.post ol:not([class]){
  line-height: 1.8;
  list-style: decimal;
  margin-left: 1.8em;
  padding: 1em 0;
}
.post ol:not([class]) li{
  padding-left: 0.5em;
}

/*
youtube比率対策
*/

.post iframe[src*="youtube"] {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.post table:not([class]) p:not([class]) {
  font-size: 100%;
}

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

  .post p:not([class]) {
    line-height: 1.8;
  }


  .post h2:not([class]) {
    font-size: 1.2rem;
  }

  .post h3:not([class]) {
    font-size: 1.2rem;
  }

  .post h4:not([class]) {
    font-size: 1.1rem;
  }

  .post h5:not([class]) {
    font-size: 1rem;
  }

  .post h6:not([class]) {
    font-size: 1rem;
  }




  .post table:not([class]) thead th,
  .post table:not([class]) tbody th ,
  .post table:not([class]) tbody td {
    padding: 0.8em;
  }

}

.post > *:first-child,
.post blockquote > *:first-child{
  margin-top: 0 !important;
}

.post *[class^="l-"] img:not([class]){
  padding-bottom: 0 !important;
}

.post h2 + ul,
.post h3 + ul,
.post h4 + ul,
.post h5 + ul,
.post h6 + ul,
.post h2 + ol,
.post h3 + ol,
.post h4 + ol,
.post h5 + ol,
.post h6 + ol{
  padding-top: 0 !important;
}


/***********
separate
************/

.separate {
  display: flex;
  justify-content: space-between;
}
.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;
  }

}

/***********
divide
************/

.divide {
  display: flex;
}
.divide-heading {
  width: 48%;
  padding: min(7vw,5em) 0 min(7vw,5em) min(3vw,30px);
  display: flex;
  justify-content: end;
  align-items: start;
  background: url(../../img/bg01.jpg) no-repeat center top / cover;
  position: relative;
}
.divide-heading::after {
  content: "";
  display: block;
  width: clamp(250px,36%, 400px);
  aspect-ratio: 1 / 1;
  position: absolute;
  right: 0;
  top: 0;
  background-color: var(--color-brand01);
  mix-blend-mode: color;
}
.divide-heading-box {
  position: relative;
  z-index: 9;
  width: 100%;
  max-width: 660px;
  text-align: left;
  padding: min(7vw,3em) min(5vw,3em);
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
.divide-heading .l-heading {
  color: var(--color-base);
  padding-top: 1em;
  padding-bottom: 1em;
}
.divide-heading .l-heading-subTitle {
  margin-bottom: 0.5em;
}
.divide-heading .l-heading-title {
  padding-left: 2.8rem;
}

.divide-inner {
  flex: 1;
  padding: min(7vw,5em) min(3vw,30px) min(7vw,5em) 5% ;
  background: url(../../img/bg02.jpg) no-repeat center top / cover;
}
.divide-inner-box {
  max-width: 630px;
}

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

  .divide {
    display: block;
  }
  .divide-heading {
    width: auto;
    justify-content: start;
    padding: min(4vw,1em) min(3vw,30px) min(4vw,1em)  0;
  }
  .divide-heading::after {
    width: clamp(150px,40%, 400px);
  }
  .divide-heading-box {
    width: auto;
    min-width: 280px;
    padding: min(4vw,1.5em) min(5vw,1em);
  }
  .divide-heading .l-heading {
    color: var(--color-base);
    padding-top: 1em;
    padding-bottom: 1em;
  }
  .divide-heading .l-heading-subTitle {
    margin-bottom: 0.3em;
  }
  .divide-heading .l-heading-title {
    padding-left: 2.5rem;
  }

  .divide-inner {
    flex: 1;
    padding: min(10vw,3em) min(3vw,30px) min(10vw,3em) min(3vw,30px) ;
  }
  .divide-inner-box {
    max-width: initial;
  }


}


/***********
dataTable
************/

.dataTable {
  line-height: 1.6;
  border-top: 1px solid var(--color-sub02);
}

.dataTable thead td {
  padding: 1em 1.2em ;
}
.dataTable thead th {
  padding: 1em 1.2em ;
}

.dataTable tbody tr {
  border-bottom: 1px solid var(--color-sub02);
}
.dataTable tbody th {
  padding: 1.5em 1.2em ;
  font-weight: 400;
  background-color: var(--color-sub03);
  line-height: 1.4;
}
.dataTable tbody td {
  padding: 1.5em 0 1.5em 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 th,
.dataTable.-alignLeft td {
  text-align: left;
}

.dataTable.-alignCenter,
.dataTable.-alignCenter th,
.dataTable.-alignCenter td {
  text-align: center;
}


/*
size
*/

.dataTable-th.-trisect {
  width: 33%;
}
.dataTable-th.-small {
  width: 15em;
}
.dataTable-th.-xsmall {
  width: 12.5em;
}
.dataTable-th.-xxsmall {
  width: 10em;
}
.dataTable-th.-alignLeft {
  text-align: left;
}



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

  .dataTable {
    font-feature-settings: "palt";
    line-height: 1.5;
  }
  .dataTable th,
  .dataTable td {
  }

  .dataTable thead td {
    padding: 1em 0.5em ;
  }
  .dataTable thead th {
    padding: 1em 0.5em ;
  }
  .dataTable tbody th {
    padding: 1em 0.5em ;
  }
  .dataTable tbody td {
    padding: 1em 0.5em ;
  }

  /*
  setting
  */

  .dataTable.-fixed {
    table-layout: fixed;
  }

  .dataTable.-vwide thead td ,
  .dataTable.-vwide thead th{
    padding-top: 1em;
    padding-bottom: 1em;
  }
  .dataTable.-vwide tbody td ,
  .dataTable.-vwide tbody th{
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .dataTable.-fixed {
    table-layout: fixed;
  }
  .dataTable-th.-small {
    width: 8em;
  }
  .dataTable-th.-xxsmall {
    width: 7em;
  }


}

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

  /*
  spBlock
  */

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

}



/***********
article
************/

.article {
}

.article-heading {
  position: relative;
  border-bottom: 1px solid var(--color-dark01);
  padding-bottom: 1.5em;
  margin-bottom: 3em;
}
.article-inner {
}

.article-heading-data {
  display: flex;
  align-items: center;
  padding-bottom: 1em;
}
.article-heading-time {
  display: inline-block;
  width: 7em;
  white-space: nowrap;
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
}
.article-heading-cat {
  display: inline-block;
  min-width: 5em;
  padding: 0.3em 1em;
  margin: 3px;
  background-color: var(--color-base);
  border:1px solid var(--color-dark01);
  border-radius: 3px;
  font-weight: 400;
  font-size: 85%;
  font-feature-settings: "palt";
  text-align: center;
  white-space: nowrap;
}

.article-heading-cat.-primary {
  border:1px solid var(--color-primary01);
  color: var(--color-primary01);
}

.article-heading-title {
  font-weight: 600;
  font-size: 1.6rem;
}

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

  .article-heading-time {
    width: 6em;
    font-size: 0.85rem;
  }
  .article-heading-cat {
    padding: 0.1em 1em;
  }
  .article-heading-title {
    font-size: 1.2rem;
  }

}

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



/***********
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; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f138";
  position: absolute;
  left: 0;
  top: 0.3em;
  color: var(--color-accent01);
}
.siteLink a[target*="_blank"]::after {
  content: "\f08e";
  color: var(--color-accent01);
}


/***********
worksList
************/

.worksList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5em 3%;
}
.worksList li {
}
.worksList li a {
  display: block;
  height: 100%;
  border: 1px solid var(--color-sub01);
  background-color: var(--color-base);
  position: relative;
  text-decoration: none;
  color: inherit;
}
body.is-pc .worksList li a:hover {
  translate: -2px -2px;
  box-shadow: 3px 3px 0 var(--color-primary01);
}
.worksList 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: "\f061";
  font-size: 139%;
  color: var(--color-primary01);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: absolute;
  right: 0.8em;
  bottom: 0.6em;
  transition: 0.5s;
}

.worksList-img {
}
.worksList-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 11;
}
.worksList-inner {
  padding: min(6vw,1.5em) min(5%,2.5em) 2.5em;
}
.worksList-heading {
  padding-bottom: 1em;
}
.worksList-heading-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
  transition: 0.2s;
}
body.is-pc a:hover .worksList-heading-title {
}

.worksList-heading-cat {
  padding-top: 0.5em;
  display: flex;
  flex-wrap: wrap;
}
.worksList-heading-cat span {
  display: inline-block;
  background-color: var(--color-base);
  color: var(--color-primary01);
  border: 1px solid var(--color-primary01);
  text-decoration: none;
  font-size: 80%;
  padding: 0.1em 0.6em;
  margin-right: 0.2em;
  margin-bottom: 0.2em;
  border-radius: 4px;
}

.worksList-heading-summary {
  font-size: 0.85rem;
  line-height: 1.6;
}

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

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

}

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

  .worksList {
    grid-template-columns: repeat(1, 1fr);
    gap: 1em 3%;
  }
  .worksList-img img {
    aspect-ratio: 16 / 9;
  }
  .worksList-heading-title {
    font-size: 1.1rem;
  }
  .worksList-heading-summary {
    font-size: 0.85rem;
    line-height: 1.6;
  }

}

/***********
worksHeader
************/

.worksHeader {
  display: flex;
  flex-direction: row-reverse;
  align-items: end;
  position: relative;
  z-index: 10;
}
.worksHeader-visual {
  width: 62%;
}
.worksHeader-img {
  margin-right: -10vw;
}
.worksHeader-img img {
}
.worksHeader-inner {
  flex: 1;
}
.worksHeader-box {
  background-color: var(--color-base);
  padding: min(7vw,2em) 5% ;
  position: relative;
  margin-right: -30%;
}


.worksHeader-title {
  font-weight: 600;
  font-size: 1.6rem;
}
.worksHeader-cat {
  display: flex;
  flex-wrap: wrap;
  padding-top: 1em;
}
.worksHeader-cat span {
  display: inline-block;
  min-width: 5em;
  padding: 0.3em 1em;
  margin: 3px;
  border:1px solid var(--color-primary01);
  color: var(--color-primary01);
  border-radius: 3px;
  font-weight: 400;
  font-size: 0.9rem;
  font-feature-settings: "palt";
  text-align: center;
  white-space: nowrap;
}


.worksHeader-data {
  padding-top: 1.5em;
  font-feature-settings: "palt";
  font-size: 90%;
  display: grid;
  grid-template-columns: minmax(4em, max-content) 1fr;
  column-gap: 0.5em;
  row-gap: 0.2em;
}
.worksHeader-data dt {
  position: relative;
  padding-right: 1.5em;
}
.worksHeader-data dt::after {
  content: "：";
  display: inline-block;
  position: absolute;
  right: 0.5em;
}


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


  .worksHeader {
    display: block;
  }
  .worksHeader-visual {
    width: auto;
  }
  .worksHeader-img {
    margin-right: -5vw;
  }
  .worksHeader-img img {
  }
  .worksHeader-inner {
    flex: 1;
  }
  .worksHeader-box {
    padding: 2em 0 ;
    margin-right: 0;
  }


  .worksHeader-title {
    font-size: 1.3rem;
  }
  .worksHeader-cat {
    display: flex;
    flex-wrap: wrap;
    padding-top: 1em;
  }
  .worksHeader-cat span {
    min-width: 4em;
    padding: 0.2em 0.6em;
    margin: 2px;
    font-size: 0.85rem;
  }

  .worksHeader-data {
  }

}


/***********
worksGallery
************/

.worksGallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.worksGallery li {
}
.worksGallery li a:hover {
  cursor: zoom-in;
}
.worksGallery li img {
  aspect-ratio: 16 / 14;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

  .worksGallery {
    margin-left: -3vw;
    margin-right: -3vw;
    gap: 1px;
  }
  .worksGallery li img {
    aspect-ratio: 1 / 1;
  }

}




/***********
inquiry
************/

.inquiry {
  background-color:rgba(255, 230, 147, 0.5);
  padding: min(7vw,2.5em) min(4vw,3em);
  text-align: center;
  border: 2px solid var(--color-brand03);
  position: relative;
}
.inquiry-heading {
}
.inquiry-heading-title {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 500;
  font-family: var(--font-family-gothic);
  line-height: 1.4;
  position: relative;
  margin-bottom: 0.5em;
}
.inquiry-heading-title::before,
.inquiry-heading-title::after {
  content: "";
  display: block;
  width: 1.2em;
  height: 2px;
  position: absolute;
  background-color: var(--color-dark01);
  top: 50%;
  translate: 0 -45%;
}
.inquiry-heading-title::before {
  right: 100%;
  margin-right: 1em;
}
.inquiry-heading-title::after {
  left: 100%;
  margin-left: 1em;
}
.inquiry-lead {
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.4em 0;
}
.inquiry-text {
  line-height: 1.7;
  padding: 0.4em 0;
}

.inquiry-link {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0.6em 0;
}
.inquiry-btn {
  margin: 0.2em;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  background-color: var(--color-brand01);
  color: inherit;
  text-decoration: none;
  padding: 0.6em 2em;
  min-width: 15em;
  min-height: 3.6em;
  transition: 0.1s;
}
body.is-pc .inquiry-btn:not([href*="tel:"]):hover {
  background-color: var(--color-brand03);
}

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

  .inquiry::after {
    width: 5em;
    right: -0.5em;
    bottom: -3.0em;
  }

}


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

.catNavi {
  margin-bottom: min(10vw,5em);
  background-color: var(--color-base);
  padding: min(7vw,2em) min(5vw,3em);
  position: relative;
}
.catNavi::before {
  content: "Category";
  font-size: 1.7em;
  font-family: var(--font-family-gothic-en02);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3;
  white-space: nowrap;
  position: absolute;
  left: min(5vw,3em);
  top: 50%;
  translate: 0 -55%;
}
.catNavi-list {
  padding-left: 12em;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.catNavi-list li {
  padding: 0.3em;
}
.catNavi-list li a {
  display: inline-block;
  background-color: var(--color-sub03);
  color: var(--color-dark02);
  padding: 0.5em 1.5em;
  min-width: 6em;
  border-radius: 3em;
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
  font-size: 1.1em;
}
body.is-pc .catNavi-list li a:hover,
.catNavi-list li.current-cat a {
  background-color: var(--color-brand01);
}

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

  .catNavi {
    margin-bottom: min(10vw,6em);
    padding: 15px 0;
    overflow: auto;
    margin-left: -3vw;
    margin-right: -3vw;
  }
  .catNavi::before {
    display: none;
  }
  .catNavi-list {
    padding-left: 3vw;
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .catNavi-list li {
    padding: 0 3px;
  }
  .catNavi-list li a {
    padding: 0.8em 1em;
    min-width: 5em;
  }

}


/***********
panel
************/

.panel {
  position: relative;
  padding: var(--padding-small) 5vw;
}
.panel-container {
  display: flex;
  position: relative;
  z-index: 2;
}
.panel-visual {
  width: 70%;
}
.panel-img {
  position: relative;
}
.panel-img img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}
.panel-inner {
  flex: 1;
  padding-top: 15%;
}
.panel-box {
  min-width: 400px;
  position: relative;
  z-index: 9;
  padding: min(7vw,3em) min(5vw,4em) ;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}


.panel:not(.-reverse) {
}
.panel:not(.-reverse)::before {
  content: "";
  display: block;
  width: 45%;
  height: calc(100% - 300px);
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--color-brand01);
}
.panel:not(.-reverse)::after {
  content: "";
  display: block;
  width: 55%;
  height: calc(100% - 300px);
  position: absolute;
  right: 0;
  top: 0;
  background: var(--color-sub03);
}
.panel:not(.-reverse) .panel-box {
  margin-left: -40%;
}


.panel.-reverse .panel-container{
  flex-direction: row-reverse;
}
.panel.-reverse::before {
  content: "";
  display: block;
  width: 50%;
  height: calc(100% - 300px);
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--color-brand02);
}
.panel.-reverse::after {
  content: "";
  display: block;
  width: 50%;
  height: 400px;
  position: absolute;
  right: 0;
  top: 0;
  background: var(--color-brand02);
}
.panel.-reverse .panel-box {
  margin-right: -40%;
}
.panel.-reverse .panel-img::after {
  content: "";
  display: block;
  width: 40%;
  height: 120px;
  position: absolute;
  right: 0;
  top: 100%;
  background-color: var(--color-dark01)
}

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

  .panel {
    padding-left: min(3vw,30px);
    padding-right: min(3vw,30px);
  }

  .panel-container {
    display: block;
  }
  .panel-visual {
    width: auto;
  }
  .panel-img {
  }
  .panel-img img {
    min-height: 100px;
    aspect-ratio: 16 / 11;
  }
  .panel-inner {
    padding-top: 0;
  }
  .panel-box {
    min-width: initial;
    padding: min(7vw,3em) min(5vw,4em) ;
  }


  .panel:not(.-reverse) {
  }
  .panel:not(.-reverse) .panel-img {
    margin-right: -5vw;
  }
  .panel:not(.-reverse)::before {
    content: "";
    display: block;
    width: 60%;
    height: 120px;
  }
  .panel:not(.-reverse) .panel-inner {
    padding-right: 3vw;
    padding-bottom: 50px;
  }
  .panel:not(.-reverse) .panel-box {
    margin-left: -3vw;
    margin-top: -2em;
  }


  .panel.-reverse .panel-container{
    flex-direction: row-reverse;
  }
  .panel.-reverse .panel-img {
    margin-left: -5vw;
  }
  .panel.-reverse::before {
    content: "";
    display: block;
    width: 70%;
    height: calc(100% - 100px);
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--color-brand02);
  }
  .panel.-reverse::after {
    content: "";
    display: block;
    width: 70%;
    height: 400px;
    position: absolute;
    right: 0;
    top: 0;
    background: var(--color-brand02);
  }
  .panel.-reverse .panel-inner {
    padding-left: 3vw;
    padding-bottom: 50px;
  }
  .panel.-reverse .panel-box {
    margin-right: -3vw;
    margin-top: -2em;
  }
  .panel.-reverse .panel-img::after {
    display: none;
  }


}


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

.faqSection {
}
.faqSection-item {
  position: relative;
  margin-bottom: 1em;
}
.faqSection-heading {
  font-weight: 500;
  font-size: 1.1rem;
  padding: 1em 3em 1em 5.5rem;
  min-height: 3.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  line-height: 1.35;
  cursor: pointer;
  border-radius: 10px;
  background-color: var(--color-base);
  border: 1px solid var(--color-brand01);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  transition: 0.3s;
}
.faqSection-heading::before {
  content: 'Q' ;
  width: 3.2em;
  height: 100%;
  color: var(--color-base);
  background-color: var(--color-brand01);
  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;
  top: 0;
  font-size: 1.2rem;
  transition: 0.3s;
}
.faqSection-heading::after {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f107";
  color: var(--color-brand01);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: absolute;
  right: 1.5em;
  top: 50%;
  scale: 1.2;
  translate: 0 -40%;
}

body.is-pc .faqSection-heading:not(.is-active):hover ,
body.is-pc .faqSection-heading.is-active {
  background-color: #fff8e0;
}
body.is-pc .faqSection-heading:not(.is-active):hover::before {
}
.faqSection-heading.is-active::after {
  rotate: 180deg;
  translate: 0 -60%;
}


.faqSection-answer {
  display: none;
}
.faqSection-answer-inner {
  padding: 1.5em 1em 3em 5.5rem;
  position: relative;
}
.faqSection-answer-inner::before {
  content: "A";
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 3.2em;
  height: 1.8em;
  padding-top: 0.1em;
  color: var(--color-base);
  background-color: var(--color-dark01);
  font-family: var(--font-family-gothic-en);
  font-weight: 400;
  font-size: 0.9rem;
  border-radius: 5px;
  position: absolute;
  left: 0.9rem;
  top: 2em;
}

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


  .faqSection {
  }
  .faqSection-item {
    margin-bottom: 5px;
  }
  .faqSection-heading {
    padding: 0.6em 2.5em 0.6em 3.5rem;
    min-height: 3.5em;
    font-size: 1rem;
    border-radius: 5px;
  }
  .faqSection-heading::before {
    width: 2em;
    height: 100%;
    top: 0;
  }
  .faqSection-heading::after {
    right: 0.6em;
  }


  .faqSection-answer {
  }
  .faqSection-answer-inner {
    padding: 1em 0 2em 3.5rem;
    position: relative;
  }
  .faqSection-answer-inner::before {
    left: 0;
    width: 2.8em;
    top: 1.2em;
  }

}


/***********
flow
************/

.flow {
  counter-reset : flow_num;
}
.flow-section {
  display: flex;
  flex-direction: row-reverse;
  background-color: var(--color-sub03);
  position: relative;
  padding: min(6vw,1.5em);
}
.flow-section:not(:last-child) {
  margin-bottom: 50px;
}
.flow-section:not(:last-child)::after {
  content: "";
  display: block;
  width: 100px;
  height: 25px;
  position: absolute;
  left: 50%;
  top: calc(100% + 15px);
  translate: -50% 0 ;
  background-color: var(--color-brand02);
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

.flow-img {
  width: 35%;
  padding-left: 5%;
}

.flow-inner {
  flex: 1;
  padding-left: 2%;
}

.flow-heading {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  padding-bottom: 0.8em;
}

.flow-num {
  background-color: var(--color-brand01);
  width: 2.5em;
  height: 2.5em;
  margin-right: 0.5em;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.flow-num-text {
  font-size: 55%;
  font-weight: 500;
  font-family: var(--font-family-gothic-en02);
  color: var(--color-base);
  line-height: 1;
  padding-top: 0.4em;
}
.flow-num-text::after {
  display: block;
  white-space: nowrap;
  content: '0' counter(flow_num) ;
  counter-increment:flow_num;
  font-family: var(--font-family-gothic-en);
  font-size: 200%;
}
.flow-heading-title {
  flex: 1;
  line-height: 1.35;
  color: var(--color-brand03);
}

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

  .flow {
  }
  .flow-section {
    display: block;
    padding: min(5vw,1.5em);
  }
  .flow-section:not(:last-child) {
    margin-bottom: 25px;
  }
  .flow-section:not(:last-child)::after {
    height: 15px;
    top: calc(100% + 5px);
  }

  .flow-img {
    width: auto;
    padding-left: 0;
  }
  .flow-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 9;
  }

  .flow-inner {
    padding-left: 0;
    padding-top: 0.8em;
  }

  .flow-heading {
    font-size: 1.2rem;
  }

  .flow-heading-title {
    line-height: 1.5;
  }

}

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

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

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