@charset "utf-8";

/* CSS Document */



/***********
pageHeading
************/

.pageHeading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: relative;
  margin-top: calc(var(--header-height) + 20px);
  color: var(--color-base);
}

.pageHeading-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.pageHeading-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pageHeading-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  font-size: clamp(34px,2.2vw, 48px);
  min-height: 7em;
  padding: 1.2em 2vw;
  position: relative;
  z-index: 9;
}


.pageHeading-block {
  position: relative;
  margin-top: -0.5em;
}
.pageHeading-block::before {
  content: "";
  display: block;
  width:  1.1em;
  height: 1.1em;
  background: url(../../img/symbol_face_or.png) no-repeat 0 0 / 100% auto;
  margin: 0 auto 0.2em;
  animation: anim-faceSwing 3s ease-in-out infinite 1s;
}

.pageHeading-parent {
  font-size: max(35%,11px);
  margin-bottom: 0.8em;
}
.pageHeading-parent-text {
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-base);
  text-decoration: underline;
  text-decoration-style: double;
  text-decoration-color: rgba(255, 255, 255, 0.5);
  text-underline-offset: 0.4em;
}

.pageHeading-title {
  line-height: 1.8;
  font-weight: 500;
  font-size: 100%;
  font-feature-settings: "palt";
  line-height: 1.3;
}
.pageHeading-subTitle {
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  font-size: 60%;
  color: var(--color-primary01);
  line-height: 1.3;
  position: relative;
}

@media screen and (max-width:834px) {

  .pageHeading {
  margin-top: calc(var(--header-height) + 10px);
  }

  .pageHeading-container {
    font-size: clamp(20px,6.8vw, 30px);
    min-height: 6em;
  }
  .pageHeading-block::before {
    width:  1.3em;
    height: 1.3em;
    margin-bottom: 0;
  }

  .pageHeading-parent {
    font-size: max(45%,10px);
    margin-bottom: 0.5em;
  }

}



/***********
box
************/

.box {
  padding: min(5vw,4em) min(4vw,6%);
  box-shadow: 0 0 1em rgba(31, 42, 102, 0.1);
  border-radius: 8px;
}

@media screen and (max-width:834px) {

  .box {
    margin-left: -1vw;
    margin-right: -1vw;
    border-radius: 5px;
  }
}


/***********
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-brand01);
  border-radius: 50%;
  text-decoration: none;
  text-align: center;
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  font-size: 1.1rem;
  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;
}
body.is-pc .pagination a:hover ,
.pagination span:not(.dots){
  background-color: var(--color-brand01);
  color: var(--color-base);
  box-shadow: 0 0 0 1px var(--color-brand01) inset ;
}

.pagination a.prev,
.pagination a.next{
}

@media screen and (max-width:834px) {

  .pagination {
    padding-top: 3em;
    margin-left: -3vw;
    margin-right: -3vw;
  }
  .pagination span,
  .pagination a {
    width: 2em;
    height: 2em;
    line-height: 2em;
    font-size: 1.2rem;
    margin: 0 1px 2px;
  }
}



/***********
article
************/

.article {
}

.article-heading {
  position: relative;
  margin-bottom: 3em;
}

.article-heading-data {
  display: flex;
  align-items: center;
  padding-bottom: 0.5em;
}
.article-heading-time {
  display: inline-block;
  width: 6.8em;
  white-space: nowrap;
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  font-size: 1.1rem;
}
.article-heading-cat.l-catIcon {
  margin: 0.2em;
  font-size: 0.9rem;
}

.article-heading-title {
  font-weight: 700;
  font-size: clamp(1.3rem,2vw, 1.8rem);
}


.article-heading-summary {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-brand01);
  background-color: var(--color-sub03);
  line-height: 1.7;
  padding: min(6vw,2em) min(5vw,3em);
  margin-top: min(6vw,2em);
}

@media screen and (max-width:640px) {

  .article {
    margin-bottom: 2em;
  }

  .article-heading {
    margin-bottom: 2em;
  }
  .article-inner {
  }

  .article-heading-data {
    padding-bottom: 0.5em;
  }
  .article-heading-time {
    width: 6.5em;
    font-size: 1rem;
    letter-spacing: 0;
  }
  .article-heading-cat {
    font-size: 0.8rem;
  }

  .article-heading-title {
    font-size: 1.4em;
  }
  .article-heading-summary {
    font-size: 1.05rem;
  }

}



/***********
post
************/

.post {
}

.post p:not([class]) {
  line-height: 1.8;
}
.post p:not([class]) + p {
  padding-top: 1em;
}

.post h2:not([class]) {
  font-size: 1.5rem;
  margin: 2.5em 0 1em 0;
  padding: 0.7em 0;
  line-height: 1.4;
  color: var(--color-brand01);
  border-block: 1px solid var(--color-brand01);
}

.post h3:not([class]) {
  font-size: 1.3rem;
  margin: 2.5em 0 1em 0;
  padding: 0.6em 0 0.6em 1.2em;
  color: var(--color-brand01);
  position: relative;
}
.post h3:not([class])::before {
  content: "";
  display: block;
  width: 0.3em;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-primary01) 20%, var(--color-brand01) 20%);
  position: absolute;
  left: 0;
  top: 0;
}

.post h4:not([class]) {
  font-size: 1.2rem;
  margin: 2em 0 1em 0;
  background-color: #e5e7f6;
  color: var(--color-brand01);
  border-radius: 5px;
  padding: 0.5em  1em;
}

.post h5:not([class]) {
  font-size: 1.1rem;
  margin: 2em 0 0.5em 0;
  color: var(--color-brand01);
  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;
  top: 0.65em;
  border-radius: 50%;
}

.post h6:not([class]) {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-brand01);
  margin: 2em 0 0.5em 0;
}


.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]) {
  width: 100%;
  border: 1px solid var(--color-sub02);
}

.post table:not([class]) thead th{
  border: 1px solid var(--color-sub02);
  padding: 1em 1.5em;
  text-align: center;
  font-weight: 500;
  line-height: 1.8;
  background-color: var(--color-brand01);
  color: var(--color-base);
}
.post table:not([class]) thead td {
  border: 1px solid var(--color-sub02);
  padding: 1em 0.8em;
  text-align: center;
  line-height: 1.8;
  background-color: var(--color-sub01);
}

.post table:not([class]) tbody th {
  border: 1px solid var(--color-sub02);
  padding: 1em 1.5em;
  text-align: left;
  font-weight: 500;
  vertical-align: top;
  line-height: 1.8;
  background-color: var(--color-sub01);
}

.post table:not([class]) tbody td {
  border: 1px solid var(--color-sub02);
  padding: 1em 1.5em;
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
}

.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.25rem;
  }

  .post h3:not([class]) {
    font-size: 1.2rem;
  }

  .post h4:not([class]) {
    font-size: 1.15rem;
  }

  .post h5:not([class]) {
    font-size: 1rem;
  }

  .post h6:not([class]) {
    font-size: 1rem;
  }

  .post table:not([class]) {
    font-size: 0.9rem;
  }
  .post table:not([class]) thead th,
  .post table:not([class]) tbody th ,
  .post table:not([class]) tbody td {
    padding: 0.8em;
  }

}

.post > *:first-child,
.post blockquote > *:first-child{
  margin-top: 0 !important;
}

.post *[class^="l-"] img:not([class]){
  padding-bottom: 0 !important;
}

.post h2 + ul,
.post h3 + ul,
.post h4 + ul,
.post h5 + ul,
.post h6 + ul,
.post h2 + ol,
.post h3 + ol,
.post h4 + ol,
.post h5 + ol,
.post h6 + ol{
  padding-top: 0 !important;
}


/***********
dataTable
************/

.dataTable {
  width: 100%;
  line-height: 1.6;
  border: 1px solid var(--color-sub02);
}

.dataTable thead td {
  padding: 1.2em 1.2em ;
}
.dataTable thead th {
  border: 1px solid var(--color-sub02);
  padding: 1em 1.5em;
  text-align: center;
  font-weight: 700;
  background-color: var(--color-brand01);
  color: var(--color-base);
}
.dataTable thead td {
  border: 1px solid var(--color-sub02);
  padding: 1em 0.8em;
  font-weight: 500;
  text-align: center;
  background-color: var(--color-sub01);
}

.dataTable tbody th {
  border: 1px solid var(--color-sub02);
  padding: 1em 1.5em;
  text-align: left;
  font-weight: 700;
  vertical-align: top;
  background-color: var(--color-sub01);
}
.dataTable tbody td {
  border: 1px solid var(--color-sub02);
  padding: 1em 1.5em;
  font-weight: 500;
  text-align: left;
  vertical-align: top;
}

/*
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 {
}

.dataTable.-alignCenter,
.dataTable.-alignCenter th,
.dataTable.-alignCenter td {
  text-align: center;
}


/*
size
*/

.dataTable-th.-trisect {
  width: 33%;
}
.dataTable-th.-small {
  width: 18em;
}
.dataTable-th.-xsmall {
  width: 15em;
}
.dataTable-th.-xxsmall {
  width: 12em;
}
.dataTable-th.-alignLeft {
  text-align: left;
}



@media screen and (max-width:834px) {

  .dataTable {
    font-feature-settings: "palt";
    border-spacing: 2px;
  }
  .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 1em ;
  }

  /*
  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.-xsmall {
    width: 8em;
  }
  .dataTable-th.-xxsmall {
    width: 22%;
  }


}

@media screen and (max-width:520px) {

  .dataTable {
    font-size: 0.9rem;
  }

  /*
  spBlock
  */

  .dataTable.-spBlock ,
  .dataTable.-spBlock tbody ,
  .dataTable.-spBlock th ,
  .dataTable.-spBlock td ,
  .dataTable.-spBlock tr {
    display: block;
    width: 100% !important;
    border: none;
    font-size: 1rem;
  }

  .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;
  }

}



/***********
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: 0em 0;
  border-bottom: none;
}
.siteLink a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  position: relative;
  padding-bottom: 0.5em;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
  transition: 0.2s;

}
.siteLink a:hover {
  text-decoration-color: inherit;
}
.siteLink a{
  padding-left: 1em;
}
.siteLink 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: "\f0da";
  position: absolute;
  left: 0;
  top: 0.35em;
  scale: 0.9;
}
.siteLink a[target*="_blank"]::after {
  content: "\f08e";
  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";
  margin-left: 0.3em;
  color: var(--color-brand01);
  scale: 0.9;
}



/***********
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:834px) {

  .separate {
    display: block;
  }
  .separate-item {
    width: auto !important;
  }
  .separate-item:first-child {
    padding-bottom: 2em;
  }

}



/***********
split
************/

.l-split {
  display: flex;
}
.l-split-visual {
  width: 45%;
}
.l-split-img {
}
.l-split-inner {
  flex: 1;
}

.l-split:not(.-reverse) {
}
.l-split:not(.-reverse) .l-split-inner {
  padding-left: 7%;
}
.l-split:not(.-reverse) .l-split-img {
  margin-left: -10vw;
}

.l-split.-reverse {
  flex-direction: row-reverse;
}
.l-split.-reverse .l-split-inner {
  padding-right: 5%;
}
.l-split.-reverse .l-split-img {
  margin-right: -10vw;
}

@media screen and (max-width:834px) {

  .l-split {
    display: block;
  }
  .l-split-visual {
    width: auto;
  }
  .l-split-img ,
  .l-split:not(.-reverse) .l-split-img,
  .l-split.-reverse .l-split-img{
    margin: 0;
  }
  .l-split-inner,
  .l-split:not(.-reverse) .l-split-inner,
  .l-split.-reverse .l-split-inner {
    padding: 2em 0 0;
  }

}



/***********
faqSection
************/

.faqSection {
  position: relative;
  margin-bottom: 1px;
}
.faqSection-heading {
  font-size: var(--fontSize-main);
  font-weight: 500;
  background-color: var(--color-sub03);
  padding: 1.4em 4em 1.4em 4rem;
  min-height: 3.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  line-height: 1.5;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
  transition: 0.2s;
}
.faqSection-heading::before {
  content: "Q";
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 1.8em;
  height: 1.8em;
  color: var(--color-base);
  background-color: var(--color-brand01);
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  border-radius: 50%;
  position: absolute;
  left: 1em;
  top: 50%;
  translate: 0 -50%;
}

.faqSection-heading-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 1.8em;
  height: 1.8em;
  position: absolute;
  right: 0.8em;
  top: 50%;
  translate: 0 -50%;
}
.faqSection-heading-icon::before,
.faqSection-heading-icon::after{
  content: "";
  display: block;
  width: 14px;
  height: 2px;
  margin-top: -0.5px;
  background-color: var(--color-brand01);
  position: absolute;
  left: calc(50% - 7px);
  top: 50%;
}
.faqSection-heading-icon::after{
  transform: rotate(90deg);
}
.faqSection-heading.is-active .faqSection-heading-icon::after{
  transform: rotate(0deg);
}
.faqSection-heading.is-active,
body.is-pc .faqSection-heading:hover{
}

.faqSection-answer {
  display: none;
}
.faqSection-answer-inner {
  padding: 1.2em 5% 3em 4rem;
  position: relative;
  background-color: var(--color-base);
}
.faqSection-answer-inner::before {
  content: "A";
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 1.8em;
  height: 1.8em;
  color: var(--color-base);
  background-color: var(--color-primary01);
  font-size: var(--fontSize-main);
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  border-radius: 50%;
  position: absolute;
  left: 1em;
  top: 1.5em;
}

@media screen and (max-width:834px) {

  .faqSection-heading {
    padding: 1.5em 2em 1.5em 3.5rem;
  }
  .faqSection-answer-inner {
    padding: 1.2em 4% 3em 3.5rem;
  }

  .faqSection-heading-icon {
    scale: 0.7;
    transform-origin: right;
    right: 0.4em;
  }

}


@media screen and (max-width:520px) {

  .faqSection-heading {
    padding: 1em 2em 1em 3.5rem;
  }

}



/***********
catNavi
************/

.catNavi {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3.5em;
}
.catNavi-list {
  display: flex;
  flex-wrap: wrap;
}
.catNavi-list li {
}
.catNavi-list li a{
  display: inline-block;
  background-color: var(--color-base);
  border: 1px solid var(--color-brand01);
  color: inherit;
  padding: 0.4em 1.5em;
  margin: 0.2em;
  line-height: 1.3;
  text-decoration: none;
  text-align: center;
  min-width: 6em;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 3em;
  cursor: pointer;
  transition: 0.2s;
}

.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:834px) {

  .catNavi {
    overflow: auto;
    padding-left: 3vw;
    margin-bottom: 2em;
    white-space: nowrap;
  }

  .catNavi-list {
    display: flex;
    flex-wrap:nowrap;
  }
  .catNavi-list li {
    margin-right: 2px;
    margin-bottom: 0;
  }
  .catNavi-list li a {
    min-width: 5em;
    padding: 0.8em 1.2em ;
    margin: 0;
    font-size: 0.9rem;
  }

}



/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/
