@charset "utf-8";

/* CSS Document */



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

.pageHeading {
  padding-top: var(--header-height);
  padding-left: 10em;
  font-family: var(--font-family-gothic);
}
.pageHeading-container {
  font-size: 1.5em;
  height: 10em;
  background-color: var(--color-brand05);
  border-radius: 1.5em 0 0 1.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 10em;
  position: relative;
  overflow: hidden;
}
.pageHeading-character {
  width: 8em;
  z-index: 9;
  position: absolute;
  left: 1em;
  bottom: 0;
}

.pageHeading-block {
}
.pageHeading-title {
  font-weight: 700;
  font-size: 170%;
  line-height: 1.35;
}
.pageHeading-subTitle {
  font-weight: 700;
  color: var(--color-brand02);
}

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

  .pageHeading {
    padding-left: 1vw;
    margin-top: 10px;
  }
  .pageHeading-container {
    font-size: 1.3em;
    height: 8em;
    padding-left: 7em;
  }
  .pageHeading-character {
    width: 6.5em;
    z-index: 9;
    position: absolute;
    left: 0.2em;
    bottom: 0;
  }

  .pageHeading-block {
  }
  .pageHeading-title {
    font-size: 150%;
  }

}

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

  .pageHeading {
    padding-left: 1vw;
    margin-top: 10px;
  }
  .pageHeading-container {
    font-size: 0.9em;
    height: 8em;
    padding-left: 7em;
  }
  .pageHeading-character {
    width: 6.5em;
    z-index: 9;
    position: absolute;
    left: 0.2em;
    bottom: 0;
  }

  .pageHeading-block {
  }
  .pageHeading-title {
    font-size: 150%;
  }

}


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

.breadcrumb{
  font-size: 0.85rem;
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0;
  position: relative;
  z-index: 100;
}
.breadcrumb-lists{
  display: flex;
  position: absolute;
  width: 100%;
  padding-top: 1.2em;
}
.breadcrumb-lists li{
  position: relative;
}
.breadcrumb-lists li:not(:has(a)){
  opacity: 0.6;
}
.breadcrumb-lists li:not(:last-child)::after{
  content: "/";
  display: inline-block;
  padding: 0 0.5em;
}
.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;
    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: 6em;
  padding-bottom: 2em;
}

.pagination:empty {
  display: none;
}

.pagination span,
.pagination a {
  display: inline-block;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  color: var(--color-brand02);
  border-radius: 50%;
  text-decoration: none;
  text-align: center;
  font-size: 1.3rem;
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  margin: 0 5px;
}
.pagination a {
  background-color: var(--color-base);
  box-shadow: 0 0 0 1px var(--color-brand02) 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-brand02);
  color: var(--color-base);
  box-shadow: 0 0 0 1px var(--color-brand02) 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 {
    font-size: 1rem;
    margin: 0 1px 2px;
  }
}


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

.post {
  font-weight: 500;
}

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

.post h2:not([class]) {
  font-size: 1.4rem;
  font-family: var(--font-family-gothic);
  border-radius: var(--rounded-min);
  border: 1px solid var(--color-main);
  background-color: var(--color-sub05);
  margin: 2.5em 0 1em 0;
  padding: 0.8em 1em;
  line-height: 1.4;
  position: relative;
}

.post h3:not([class]) {
  font-size: 1.4rem;
  font-family: var(--font-family-gothic);
  border-bottom: 2px solid #b7c2d2;
  margin: 2.5em 0 0.8em 0;
  padding-bottom: 0.5em;
}

.post h4:not([class]) {
  font-size: 1.25rem;
  font-family: var(--font-family-gothic);
  border-left: 4px solid #7f8aaa;
  margin: 2.5em 0 0.8em 0;
  padding: 0.2em 0 0.2em 0.8em;
  line-height: 1.4;
  position: relative;
}

.post h5:not([class]) {
  font-size: 1.1rem;
  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-sub01);
  box-shadow: 0 0 0 0.2em var(--color-brand01);
  position: absolute;
  left: 0;
  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: 1em;
}
.post img[src$="jpg"],
.post img[src$="jpeg"] {
  border-radius: var(--rounded-sub);
}

.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]) {
  border: 1px solid var(--color-dark01);
  font-weight: 500;
  line-height: 1.6;
}

.post table:not([class]) thead td {
  border: 1px solid var(--color-dark01);
  padding: 1em 0.8em;
  text-align: center;
  background-color: var(--color-base);
}
.post table:not([class]) thead th{
  border: 1px solid var(--color-dark01);
  padding: 1em 1.5em;
  text-align: center;
  font-weight: 500;
  color: var(--color-base);
  background-color: var(--color-brand01);
}

.post table:not([class]) tbody th {
  border: 1px solid var(--color-dark01);
  padding: 1em 1.5em;
  text-align: left;
  font-weight: 500;
  vertical-align: top;
  background-color: var(--color-sub03);
}

.post table:not([class]) tbody td {
  border: 1px solid var(--color-dark01);
  padding: 1em 1.5em;
  text-align: left;
  vertical-align: top;
}

.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 {
    font-weight: 400;
  }

  .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: 1.1rem;
  }

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

  .post table:not([class]) {
    font-weight: 400;
    line-height: 1.5;
  }
  .post table:not([class]) thead th,
  .post table:not([class]) tbody th ,
  .post table:not([class]) tbody td {
    padding: 0.8em;
    line-height: 1.5;
  }

}

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



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

.catNavi {
  margin-top: var(--padding-main);
  background-color: var(--color-sub03);
  padding: min(7vw,2em) min(5vw,5em);
  position: relative;
  border-radius: var(--rounded-sub);
}

.catNavi.-noOffsetTop {
  margin-top: 0;
}
.catNavi-list {
  display: flex;
  flex-wrap: wrap;
}
.catNavi-list li {
  padding: 0.3em;
}
.catNavi-list li a {
  display: inline-block;
  background-color: var(--color-base);
  color: var(--color-dark01);
  padding: 0.8em 1.2em;
  min-width: 6em;
  border-radius: 3em;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
}
body.is-pc .catNavi-list li a:hover,
.catNavi-list li.current-cat a {
  background-color: var(--color-brand02);
  color: var(--color-base);
}

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

  .catNavi {
    padding: 15px 0;
    overflow: auto;
    border-radius: 0;
    background-color: transparent;
    border-bottom: 1px solid var(--color-sub04);
  }
  .catNavi::before {
    display: none;
  }
  .catNavi-list {
    padding-left: 5vw;
    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;
    background-color: #e3f3fb;
    font-size: 1rem;
    font-weight: 400;
  }

}



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

.article {
}
.article-heading {
  padding-bottom: 3em;
}
.article-heading-box {
  font-size: 1.4rem;
  border-radius: var(--rounded-sub);
  border: 1px solid var(--color-main);
  padding: min(5vw,1em);
  position: relative;
}

.article-block {
  padding: 1em 0 1em 2em;
  position: relative;
}
.article-block::before {
  content: "";
  display: block;
  width: 8px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #7f8aaa;
  border-radius: 10px;
}


.article-data {
  padding-bottom: 1em;
}
.article-data-time {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 500;
  padding-right: 1em;
  white-space: nowrap;
  position: relative;
}
.article-data-cat.l-catIcon {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.3;
}
.article-subTitle {
  font-family: var(--font-family-gothic);
  font-weight: 700;
  font-size: 1.1rem;
  padding-bottom: 0.8em;
}
.article-title {
  font-family: var(--font-family-gothic);
  font-weight: 700;
  font-size: 1.7rem;
}
.article-eyecatch {
  padding-bottom: 3em;
  text-align: center;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  padding-top: 1em;
  margin: -4px -2px;
}
.article-tags .article-data-cat.l-catIcon {
  margin: 4px 2px;
  background-color: var(--color-sub01);
  font-size: 0.9rem;
  font-weight: 500;
}
.article-tags.-white .article-data-cat.l-catIcon {
  background-color: var(--color-base);
}

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

  .article {
  }

  .article-block {
    padding: 1em 0 1em min(2vw,1em);
  }
  .article-block::before {
    width: 6px;
    left: -3vw;
    border-radius: 0 6px 6px 0;
  }

  .article-heading {
    padding-bottom: 2em;
  }
  .article-data {
    padding-bottom: 0.6em;
  }
  .article-data-time {
    font-size: 0.85rem;
    padding-right: 0.5em;
  }
  .article-data-cat.l-catIcon {
    font-size: 0.75rem;
    font-weight: 400;
    font-feature-settings: "palt";
  }
  .article-subTitle {
    font-size: 1rem;
  }
  .article-title {
    font-weight: 700;
    font-size: 1.3rem;
  }
  .article-eyecatch {
    padding-bottom: 3em;
  }

  .article-tags {
    padding-top: 0.8em;
    margin: 0 -2px;
  }
  .article-tags .article-data-cat.l-catIcon {
    margin: 2px;
    font-size: 0.75rem;
    font-weight: 400;
  }

}

/***********
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*="ppt"]::after,
.fileLink a[href*="pptx"]::after {
  background: url(../../img/icon/ppt.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);
}



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

.inquiry {
  border-radius: var(--rounded-sub);
  background-color: #fff8ca;
  padding: min(7vw,2.5em) min(4vw,3em);
  text-align: center;
  border: 1px solid var(--color-main);
  position: relative;
}
.inquiry::after {
  content: "";
  display: block;
  width: 6em;
  aspect-ratio: 1 / 1;
  background: url(../../img/object/sprout.png) no-repeat 0 0 / 100% auto;
  position: absolute;
  right: -1em;
  bottom: 1em;
  pointer-events: none;
}
.inquiry-heading {
}
.inquiry-heading-title {
  display: inline-block;
  color: #b17306;
  font-size: 1.3rem;
  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: 1px;
  position: absolute;
  background-color: #b17306;
  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: 700;
  padding: 0.4em 0;
}
.inquiry-text {
  line-height: 1.7;
  font-weight: 500;
  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.2rem;
  font-weight: 700;
  border-radius: 4em;
  background-color: #fcd03e;
  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 {
  translate: 0 2px;
}

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

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

}
/***********
innerContents
************/

.innerContents {
  position: relative;
  z-index: 1;
  background: linear-gradient(to bottom, #fff 200px, var(--color-sub03) 200px);
}
.innerContents::after {
  content: "";
  display: block;
  width: 100%;
  height: 50vw;
  position: absolute;
  left: 0;
  top: 200px;
  background: url(../../img/bg01.png) no-repeat center top / 100% 100%;
}
.innerContents-container {
  position: relative;
  z-index: 2;
}

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

  .innerContents::after {
    background-size: 200% 100%;
  }

}

/***********
serviceList
************/

.serviceList {
}
.serviceList li {
}
.serviceList li + li {
  margin-top: 1.5em;
}
.serviceList a {
  display: block;
  padding: 2em 4em 2em min(4vw,3em);
  border: 1px solid var(--color-sub05);
  border-radius: var(--rounded-sub);
  color: inherit;
  background-color: var(--color-base);
  text-decoration: none;
  position: relative;
}
.serviceList a::before {
  content: "";
  display: block;
  width: 8px;
  height: calc(100% - 3em);
  position: absolute;
  left: 0;
  top: 1.5em;
  background: var(--color-sub02);
  transition: 0.1s;
}
.serviceList 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;
  right: 1em;
  top: 50%;
  translate: 0 -50%;
  scale: 1.3;
}
.serviceList-subTitle {
  font-weight: 700;
  font-size: 0.95rem;
  padding-bottom: 0.4em;
}
.serviceList-title {
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.4;
}
.serviceList-tags {
  display: flex;
  flex-wrap: wrap;
  padding-top: 0.8em;
}
.serviceList-cat.l-catIcon {
  font-size: 0.85rem;
  font-weight: 500;
  margin-right: 5px;
  margin-bottom: 3px;
  line-height: 1.5;
}

/*
color
*/

.serviceList.-primary a::before {
  background-color: var(--color-primary01);
}
.serviceList.-primary a::after  {
  color: var(--color-primary02);
}
body.is-pc .serviceList.-primary a:hover {
  background-color: #ffece5;
  border-color: var(--color-primary02);
  box-shadow: 0 0 0 1px var(--color-primary02);
}
body.is-pc .serviceList.-primary a:hover::before {
  background-color: var(--color-primary02);
}


.serviceList.-brand a::before {
  background-color: var(--color-brand03);
}
.serviceList.-brand a::after  {
  color: var(--color-brand02);
}
body.is-pc .serviceList.-brand a:hover {
  background-color: #e5f6ff;
  border-color: var(--color-brand02);
  box-shadow: 0 0 0 1px var(--color-brand02);
}
body.is-pc .serviceList.-brand a:hover::before {
  background-color: var(--color-brand02);
}


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

  .serviceList {
  }
  .serviceList li {
  }
  .serviceList li + li {
    margin-top: 1em;
  }
  .serviceList a {
    padding: 1.5em 3em 1.5em min(4vw,3em);
  }
  .serviceList a::before {
    width: 4px;
    height: calc(100% - 2em);
    top: 1em;
  }
  .serviceList a::after {
    right: 0.5em;
    scale: 1.1;
  }
  .serviceList-subTitle {
    font-weight: 500;
    font-size: 0.9rem;
  }
  .serviceList-title {
    font-weight: 600;
    font-size: 1.2rem;
  }
  .serviceList-tags {
    padding-top: 0.8em;
  }
  .serviceList-cat.l-catIcon {
    font-size: 0.8rem;
    font-weight: 400;
    margin-right: 2px;
    margin-bottom: 2px;
  }

}

/***********
side
************/

.side {
}
.side + .side {
  margin-top: 1.5em;
}
.side-block {
  border: 1px solid var(--color-main);
  border-radius: var(--rounded-sub);
  overflow: hidden;
}
.side-block-heading {
  background-color: var(--color-sub01);
  font-weight: 700;
  font-family: var(--font-family-gothic);
  font-size: 1.1rem;
  padding: 0.6em 0.5em;
  line-height: 1.4;
  text-align: center;
  border-bottom: 1px solid var(--color-main);
}
.side-block-list {
  padding: 0.2em 1em;
  font-size: 0.9rem;
}
.side-block-list li {
}
.side-block-list li:not(:last-child) {
  border-bottom: 1px dashed var(--color-main);
}
.side-block-list li a {
  display: block;
  text-decoration: none;
  font-weight: 500;
  padding: 0.8em 0 0.8em 1.5em;
  position: relative;
  line-height: 1.4;
  color: inherit;
}
.side-block-list 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; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f138";
  position: absolute;
  left: 0;
  top: 1em;
  scale: 0.9;
}

/*
color
*/

.side.-primary .side-block-heading {
  background-color: var(--color-primary01);
}
.side.-primary .side-block-list li a::before {
  color: var(--color-primary02);
}
body.is-pc .side.-primary .side-block-list li a:hover {
  color: var(--color-accent02);
}

.side.-brand .side-block-heading {
  background-color: var(--color-brand03);
}
.side.-brand .side-block-list li a::before {
  color: var(--color-brand03);
}
body.is-pc .side.-brand .side-block-list li a:hover {
  color: var(--color-brand02);
}

/***********
relation
************/

.relation {
}
.relation-heading {
}
.relation-heading-title {
  display: inline-block;
  border-radius: var(--rounded-sub) 0 0 0;
  background-color: var(--color-brand01);
  color: var(--color-base);
  padding: 0.5em 1.8em;
  line-height: 1.4;
  font-size: 1.15rem;
  font-weight: 500;
  font-family: var(--font-family-gothic);
}
.relation-container {
  background-color: var(--color-sub01);
  padding: min(5vw,1em) min(5vw,2em) ;
  border-radius: var(--rounded-min);
  border-top-left-radius: 0;
}


.relation.-accent .relation-heading-title {
  background-color: var(--color-accent01);
  color: var(--color-base);
}

.relation.-highlight .relation-heading-title {
  background-color: var(--color-highlight01);
  color: var(--color-dark01);
}


/***********
pressNavi
************/

.pressNavi {
  border-bottom: 1px solid var(--color-main);
}

.pressNavi-list {
  padding: 0 1em;
  display: flex;
  max-width: 1240px;
  margin: 0 auto;
  overflow: hidden;
}
.pressNavi-list li {
  flex: 1;
  padding: 0 0.6em;
}
.pressNavi-list li a {
  border-radius: var(--rounded-sub) var(--rounded-sub) 0 0;
  border: 1px solid var(--color-main);
  border-bottom: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  line-height: 1.2;
  font-weight: 700;
  font-size: 1.3rem;
  min-height: 3.6em;
  padding-bottom: 0.2em;
  translate: 0 0.2em;
  filter: grayscale(100%) brightness(110%);
}

body.is-pc .pressNavi-list li a:hover,
.pressNavi-list li a.is-active {
  translate: 0 0;
  filter: grayscale(0%) brightness(100%);
}

.pressNavi-list li.-pink a {
  background-color: var(--color-primary01);
}
.pressNavi-list li.-blue a {
  background-color: var(--color-brand03);
}

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

  .pressNavi-list {
    padding: 0 3vw;
  }
  .pressNavi li {
    flex: 1;
    padding: 0 0.2em;
  }
  .pressNavi li a {
    font-weight: 500;
    font-size: 0.9rem;
  }

}


/***********
pressCard
************/

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

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

.pressCard-img {
}
.pressCard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 12 / 17;
}
.pressCard-img.-ratio4_3 img {
  aspect-ratio: 4 / 3;
}
.pressCard-inner {
  padding-top: 0.5em;
  text-align: center;
}
.pressCard-title {
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
  transition: 0.3s;
}
body.is-pc .pressCard li a:hover .pressCard-title {
  color: var(--color-brand01);
  text-decoration-color: inherit;
}

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

  .pressCard-title {
    font-size: 1rem;
  }

}

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

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

}



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

.divide {
  display: flex;
  flex-direction: row-reverse;
  align-items: start;
}
.divide-inner {
  flex: 1;
  padding-right: 5%;
}
.divide-visual {
  width: 50%;
}
.divide-img {
  margin-right: -3vw;
  margin-top: -2em;
  -webkit-mask: url(../../img/mask01.png);
  mask: url(../../img/mask01.png);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  overflow: hidden;
  position: relative;
}
.divide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 14;
}

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

  .divide {
    display: block;
  }
  .divide-inner {
    padding-right: 0;
    padding-top: 1.2em;
  }
  .divide-visual {
    width: auto;
  }
  .divide-img {
    margin-right: -3vw;
    margin-left: -3vw;
    margin-top: 0;
  }
  .divide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 12;
  }

}

/***********
container
************/

.container {
  background-color: var(--color-base);
  border: 1px solid var(--color-main);
  border-radius: var(--rounded-main);
}
.container + .container {
  margin-top: 3em;
}

.container-heading {
  border-bottom: 1px solid var(--color-main);
  border-radius: var(--rounded-main) var(--rounded-main) 0 0;
  background-color: var(--color-sub05);
  text-align: center;
  position: relative;
  padding: 0.7em ;
  font-size: 1.6rem;
}
.container-heading-title {
  letter-spacing: 0.06em;
}

.container-container {
  padding: min(6vw,2.5em) min(7%,3em);
}

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

  .container {
  }
  .container + .container {
    margin-top: 3em;
  }

  .container-heading {
    font-size: 1.1rem;
    padding: 0.8em 0.5em;
  }
  .container-heading-title {
    letter-spacing: 0.06em;
    font-weight: 600;
  }

  .container-container {
    padding: min(6vw,2em) min(3%,2em);
  }

}



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

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

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

.dataTable tbody tr {
  border-bottom: 1px solid var(--color-main);
}
.dataTable tbody th {
  padding: 1em 1.5em ;
  font-weight: 500;
  background-color: var(--color-sub03);
  line-height: 1.4;
}
.dataTable tbody td {
  padding: 1em 1.5em 1em 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-size: 0.9rem;
    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: 22%;
  }


  .dataTable-data dt {
    padding-right: 0.5em;
    margin-right: 1em;
  }

}

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

  /*
  spBlock
  */

  .dataTable.-spBlock ,
  .dataTable.-spBlock tbody ,
  .dataTable.-spBlock th ,
  .dataTable.-spBlock td ,
  .dataTable.-spBlock tr {
    display: block;
    font-size: 1rem;
    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;
    font-size: 1.1rem;
  }
  .dataTable.-spBlock tbody td {
    padding: 1em 0em 2em 1em;
    line-height: 1.7;
    text-align: left;
  }
  .dataTable.-spBlock tbody td::before,
  .dataTable.-spBlock tbody td::after {
    display: none;
  }

}

/***********
connect
************/

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


.connect-block {
  border: 1px solid var(--color-main);
  border-radius: var(--rounded-sub);
  overflow: hidden;
}
.connect-block-heading {
  background-color: var(--color-sub01);
  font-weight: 700;
  font-family: var(--font-family-gothic);
  font-size: 1.4rem;
  padding: 0.6em 0.5em;
  line-height: 1.4;
  text-align: center;
  border-bottom: 1px solid var(--color-main);
}
.connect-block-list {
  padding: 0.8em 5%;
  font-size: 0.9rem;
}
.connect-block-list li {
}
.connect-block-list li:not(:last-child) {
  border-bottom: 1px dashed var(--color-main);
}
.connect-block-list li a {
  display: block;
  text-decoration: none;
  font-weight: 500;
  padding: 0.8em 2em 0.8em 0;
  position: relative;
  line-height: 1.4;
  color: inherit;
}
.connect-block-list 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; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f138";
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  scale: 0.9;
}

.connect-block-subTitle {
}
.connect-block-title {
  font-size: 1.2rem;
  font-weight: 700;
  padding-top: 0.2em;
}


/*
color
*/

.connect-section.-primary .connect-block-heading {
  background-color: var(--color-primary01);
}
.connect-section.-primary .connect-block-list li a::before {
  color: var(--color-primary02);
}
body.is-pc .connect-section.-primary .connect-block-list li a:hover {
  color: var(--color-accent02);
}

.connect-section.-brand .connect-block-heading {
  background-color: var(--color-brand03);
}
.connect-section.-brand .connect-block-list li a::before {
  color: var(--color-brand03);
}
body.is-pc .connect-section.-brand .connect-block-list li a:hover {
  color: var(--color-brand02);
}


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

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

  .connect-block-heading {
    font-size: 1.2rem;
  }
  .connect-block-list {
    padding: 0.8em 5%;
  }
  .connect-block-list li a {
    font-weight: 400;
    padding: 0.8em 2em 1em 0;
  }

  .connect-block-subTitle {
    font-size: 90%;
  }
  .connect-block-title {
    font-size: 1.1rem;
    font-weight: 500;
    padding-top: 0.4em;
  }


}

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


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


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


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