@charset "utf-8";

/* CSS Document */



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

.pageHeading {
  height: 8.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: relative;
  font-size: clamp(40px,2.8vw, 80px);
}

.pageHeading-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.pageHeading-img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
}
.pageHeading-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pageHeading-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: 7vw;
  padding-top: 1.5em;
}


.pageHeading-parent {
  font-size: max(40%,15px);
}
.pageHeading.-small .pageHeading-parent{
  margin-bottom: 0.2em;
}
.pageHeading-parent-text {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-dark01);
  border-radius: 10em;
  padding: 0.1em 1.5em;
  display: inline-block;
  background-color: var(--color-base);
}

.pageHeading-title {
  line-height: 1.8;
  font-weight: 800;
  font-size: 100%;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: var(--color-base);
}
.pageHeading-subTitle {
  font-family: var(--font-family-gothic-en02);
  font-weight: 400;
  font-size: 50%;
  color: var(--color-brand01);
  line-height: 1.3;
  white-space: nowrap;
  position: relative;
  padding-top: 0.2em;
}

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


  .pageHeading {
    height: 8em;
    max-height: 300px;
    min-height: 220px;
    font-size: clamp(22px,7vw, 40px);
    font-feature-settings: "palt";
  }

  .pageHeading-container {
    left: 5vw;
    padding-top: 2.2em;
  }


  .pageHeading-parent {
    font-size: max(40%,12px);
    margin-bottom: 0.5em;
  }
}


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

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


/***********
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: clamp(1.5rem,3vw, 2.2rem);
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  margin: 2.5em 0 0.8em 0;
  border-bottom: 0.1em solid var(--color-brand01);
  padding-bottom: 0.6em;
  line-height: 1.35;
  position: relative;
}

.post h3:not([class]) {
  font-size: clamp(1.3rem,2.5vw, 1.6rem);
  font-weight: 600;
  background-color: var(--color-brand05);
  color: var(--color-base);
  margin: 2.5em 0 0.8em 0;
  padding: 0.6em 1em;
  line-height: 1.4;
  position: relative;
}

.post h4:not([class]) {
  font-size: clamp(1.2rem,2.2vw, 1.4rem);
  font-weight: 700;
  line-height: 1.4;
  margin: 2em 0 1em 0;
  padding: 0.7em 0 0.7em 1em;
  border-left: 6px solid var(--color-brand01);
  position: relative;
}

.post h5:not([class]) {
  font-size: clamp(1.1rem,1.8vw, 1.3rem);
  font-weight: 700;
  line-height: 1.4;
  margin: 2em 0 1em 0;
  padding: 0.7em 1em ;
  position: relative;
  border-bottom: 2px solid var(--color-brand02);
  background-color: #d8ead1;
}

.post h6:not([class]) {
  font-size: clamp(1.1rem,1.8vw, 1.3rem);
  color: var(--color-brand03);
  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 h4:not([class]) {
    padding: 0.4em 0 0.4em 0.6em;
    border-left-width: 4px;
  }

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

}

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

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

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


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

}

/***********
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.2em 1.2em ;
  font-weight: 500;
  background-color: var(--color-sub03);
  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 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) {

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

}



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

.article {
}

.article-heading {
  position: relative;
  border-left: 6px solid var(--color-brand01);
  padding: 0.5em 0 1em 2em;
  margin-bottom: 3em;
}
.article-inner {
}

.article-heading-data {
  display: flex;
  align-items: center;
  padding-bottom: 0.5em;
}
.article-heading-time {
  display: inline-block;
  width: 6.5em;
  white-space: nowrap;
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  font-size: 1.2rem;
}
.article-heading-cat {
  display: inline-block;
  min-width: 5em;
  padding: 0.2em 1em;
  margin: 3px;
  background-color: var(--color-brand01);
  color: var(--color-base);
  border-radius: 3px;
  font-weight: 400;
  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: 700;
  font-size: clamp(1.5rem,3vw, 2.2rem);
}

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

  .article {
    margin-bottom: 2em;
  }

  .article-heading {
    padding: 0.5em 0 1em 1em;
    margin-bottom: 3em;
    margin-left: -3vw;
  }
  .article-inner {
  }

  .article-heading-data {
    padding-bottom: 0.5em;
  }
  .article-heading-time {
    width: 6em;
    font-size: 1rem;
  }
  .article-heading-cat {
    font-size: 0.8rem;
  }


}

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




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

.faqSection {
  border-bottom: 2px dotted var(--color-sub02);
  position: relative;
}
.faqSection:first-child {
  border-top: 2px dotted var(--color-sub02);
}
.faqSection-heading {
  font-size: var(--fontSize-main);
  font-weight: 700;
  background-color: var(--color-sub04);
  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: 700;
  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;
  border-radius: 50%;
  background-color: var(--color-base);
  border: 1px solid var(--color-brand01);
  position: absolute;
  right: 0.8em;
  top: 50%;
  translate: 0 -50%;
}
.faqSection-heading-icon::before,
.faqSection-heading-icon::after{
  content: "";
  display: block;
  width: 14px;
  height: 1px;
  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);
}
body.is-pc .faqSection-heading:hover{
  text-decoration: underline;
  text-decoration-color: inherit;
}

.faqSection-answer {
  display: none;
}
.faqSection-answer-inner {
  padding: 1.2em 5% 3em 4rem;
  position: relative;
  background-color: var(--color-sub03);
}
.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-main);
  font-size: var(--fontSize-main);
  font-family: var(--font-family-gothic-en);
  font-weight: 700;
  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;
  }

}


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

  .faqSection-heading {
    padding: 1em 2em 1em 3.5rem;
  }

}


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

.productHeader {
}

.productHeader-heading {
  position: relative;
  border-left: 6px solid var(--color-brand01);
  padding: 0.5em 0 1em 2em;
  margin-bottom: 2em;
  margin-top: 2em;
}
.productHeader-title {
  font-size: 1.8rem;
}
.productHeader-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-brand03);
}

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

  .productHeader-heading {
    padding: 0.5em 0 1em 1em;
    margin-bottom: 1.2em;
    margin-top: 0;
  }
  .productHeader-title {
    font-size: 1.5rem;
  }
  .productHeader-price {
    font-size: 1.2rem;
  }

}


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

.pageNavi {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 2em;
}
.pageNavi li {
  padding-right: 5px;
  padding-bottom: 5px;
}
.pageNavi li a {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: inherit;
  text-decoration: none;
  min-height: 3.2em;
  padding: 0.5em 3em;
  font-size: 0.95rem;
  border-radius: 4px;
  background-color: var(--color-sub03);
  position: relative;
}
.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: "\f063";
  position: absolute;
  right: 0.5em;
  top: 50%;
  scale: 0.9;
  translate: 0 -50%;
  transition: translate 0.2s ease;
}
body.is-pc .pageNavi li a:hover {
  background-color: var(--color-brand01);
  color: var(--color-base);
}
body.is-pc .pageNavi li a:hover::after {
  translate: 0 -30%;
}

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

  .pageNavi {
    padding-bottom: 2em;
  }
  .pageNavi li {
    padding-right: 2px;
    padding-bottom: 2px;
  }
  .pageNavi li a {
    min-height: 3.2em;
    padding: 0.5em 2em;
    font-size: 0.85rem;
  }
  .pageNavi li a::after {
    right: 0.3em;
    translate: 0 -40%;
  }
  body.is-pc .pageNavi li a:hover {
    background-color: var(--color-brand01);
    color: var(--color-base);
  }
  body.is-pc .pageNavi li a:hover::after {
    translate: 0 -30%;
  }

}

/***********
option
************/

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

.option-section {
}
.option-img {
}
.option-img img{
  object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 11;
}
.option-inner {
  padding-top: 0.5em;
}
.option-heading {
  padding-bottom: 0.5em;
}
.option-title {
}
.option-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-brand03);
}
.option-text {
  font-size: max(0.85rem,13px);
  line-height: 1.6;
}

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

  .option {
    grid-template-columns: repeat(3, 1fr);
  }

}


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

  .option {
    display: block;
  }

  .option-section {
    display: flex;
  }
  .option-section + .option-section {
    margin-top: 1em;
    padding-top: 1em;
    border-top: 1px solid var(--color-sub02);
  }
  .option-img {
    width: 35%;
    padding-right: 1em;
  }
  .option-img img{
    aspect-ratio: 12 / 12;
  }
  .option-inner {
    flex: 1;
    padding-top: 0;
  }
  .option-heading {
    padding-bottom: 0.5em;
  }
  .option-title {
  }
  .option-price {
    font-size: 0.85rem;
  }
  .option-text {
    font-size: max(0.75rem,12px);
    line-height: 1.5;
  }


}


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