@charset "utf-8";

/* CSS Document */


.innerContents {
  overflow: hidden;
}

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

.pageHeading {
  position: relative;
  padding-top: var(--header-height);
  font-size: clamp(170%,1.3vw, 300%);
  font-feature-settings: "palt";
  overflow: hidden;
}

.pageHeading-img {
  margin-right: var(--side-padding);
}
.pageHeading-img img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  aspect-ratio: 100 / 22;
}

.pageHeading-container {
  text-align: center;
  position: relative;
  z-index: 9;
}
.pageHeading-block {
}
.pageHeading-subTitle {
  font-family: var(--font-family-serif-en);
  font-weight: 400;
  font-size: 354%;
  line-height: 1;
  color: var(--color-base);
  text-stroke: 0.8px var(--color-brand02);
  -webkit-text-stroke: 0.8px var(--color-brand02);
  margin-top: -0.5em;
  padding-bottom: 0.15em;
}
.pageHeading-subTitle-text {
}
.pageHeading-title {
  color: var(--color-brand01);
  line-height: 1.3;
  letter-spacing: 0.04em;
  font-weight: 700;
}
.pageHeading-title::after {
  content: "";
  display: block;
  width: 6.5em;
  height: 8px;
  margin: 0.6em auto 0;
  background: url(../../img/wave01.png) repeat-x center bottom / auto 8px;
  clip-path: polygon(3px 0%, calc(100% - 3px) 0%, 100% 100%, 0 100%);
}

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

  .pageHeading {
    padding-top: var(--header-height);
    font-size: clamp(100%,4.5vw, 170%);
  }
  .pageHeading-img {
    margin-right: var(--side-padding);
    margin-left: var(--side-padding);
  }
  .pageHeading-img img {
    min-height: 100px;
    max-height: 250px;
    aspect-ratio: 100 / 33;
  }

  .pageHeading-subTitle {
    font-size: 224%;
    padding-bottom: 0.1em;
    white-space: nowrap;
    position: relative;
    left: 50%;
  }
  .pageHeading-subTitle-text {
    translate:-50% 0;
  }
  .pageHeading-title {
    letter-spacing: 0.02em;
    font-size: max(93%,14px);
  }
  .pageHeading-title::after {
    width: 6.5em;
    height: 6px;
    background-size: auto 6px;
  }

}


/***********
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: 3em;
  height: 3em;
  line-height: 3em;
  color: var(--color-brand01);
  border-radius: 50%;
  text-decoration: none;
  text-align: center;
  font-size: clamp(100%,1vw, 154%);
  font-family: var(--font-family-gothic-en02);
  font-weight: 400;
  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 {
  }
  .pagination span,
  .pagination a {
    font-size: 100%;
    margin: 0 1px 2px;
  }
}


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

.post {
  font-size: clamp(1.08rem,1.4vw, 1.24rem);
}

.post p:not([class]) {
  line-height: 1.8;
  font-size: clamp(1.08rem,1.4vw, 1.24rem);
}
.post p:not([class]) + p {
  padding-top: 1em;
}

.post h2:not([class]) {
  font-size: clamp(1.24rem,2.5vw, 1.85rem);
  line-height: 1.4;
  background-color: rgba(52, 120, 179, 0.08);
  border-left: 5px solid var(--color-brand04);
  color: var(--color-brand04);
  margin: 2em 0 1.2em 0;
  padding: 0.7em 1em ;
  position: relative;
}

.post h3:not([class]) {
  font-size: clamp(1.24rem,2.2vw, 1.7rem);
  line-height: 1.4;
  color: var(--color-brand01);
  border: 2px solid var(--color-brand01);
  border-left: none;
  border-right: none;
  margin: 2em 0 1.2em 0;
  padding: 0.7em 0.2em ;
  position: relative;
}

.post h4:not([class]) {
  font-size: clamp(1.24rem,1.8vw, 1.54rem);
  line-height: 1.4;
  color: var(--color-brand01);
  border-bottom: 1px dashed var(--color-brand01);
  margin: 2.5em 0 1.2em 0;
  padding-bottom: 0.8em;
  position: relative;
}

.post h5:not([class]) {
  font-size: clamp(1.16rem,1.6vw, 1.54rem);
  line-height: 1.8;
  color: var(--color-brand04);
  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-brand04);
  position: absolute;
  left: 0;
  top: 0.8em;
  border-radius: 50%;
}

.post h6:not([class]) {
  font-size: clamp(1.16rem,1.6vw, 1.39rem);
  line-height: 1.8;
  margin: 2.5em 0 0.5em 0;
  color: var(--color-brand04);
}


.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]) {
  border: 1px solid #aaa;
  font-size: clamp(1.16rem,1.4vw, 1.39rem);
  font-weight: 400;
}

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

.post table:not([class]) tbody th {
  border: 1px solid #aaa;
  padding: 1em 1.5em;
  text-align: left;
  font-weight: 600;
  vertical-align: top;
  line-height: 1.8;
  background-color: var(--color-sub01);
}

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

.post ul:not([class]){
  font-size: clamp(1.08rem,1.4vw, 1.31rem);
  line-height: 1.8;
  list-style: disc;
  margin-left: 1.8em;
  padding: 1em 0;
}
.post ol:not([class]){
  font-size: clamp(1.08rem,1.4vw, 1.31rem);
  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]) {
    font-family: var(--font-family-gothic);
    line-height: 1.8;
  }

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


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

.article {
}

.article-heading {
  position: relative;
  font-size: clamp(1rem,1.6vw, 1.39rem);
  margin-bottom: 3.5em;
}
.article-heading::after {
  content: "";
  display: block;
  width: 100%;
  height: 8px;
  margin: 1.5em auto 2em;
  background: url(../../img/wave01.png) repeat-x center bottom / auto 8px;
  clip-path: polygon(3px 0%, calc(100% - 3px) 0%, 100% 100%, 0 100%);
}

.article-heading-data {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 1em;
}
.article-heading-time {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--font-family-gothic-en02);
  font-weight: 700;
  font-size: 85%;
  line-height: 1;
  color: var(--color-brand03);
}

.article-heading-title {
  font-weight: 700;
  font-size: 154%;
  line-height: 1.35;
}

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

  .article {
  }

  .article-heading {
  }
  .article-heading::after {
    height: 6px;
    background-size: auto 6px;
  }
  .article-heading-data {
  }
  .article-heading-time {
    font-size: 100%;
  }
  .article-heading-title {
    font-size: 139%;
    line-height: 1.45;
  }


}



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

.divide {
  display: flex;
  flex-direction: row-reverse;
  align-items: start;
}
.divide-inner {
  flex: 1;
  padding-right: 5%;
  padding-top: 2em;
}
.divide-visual {
  width: 45%;
}
.divide-img {
  margin-right: -40%;
}

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

  .divide {
    display: block;
  }
  .divide-inner {
    padding-right: 0;
  }
  .divide-visual {
    width: auto;
  }
  .divide-img {
    margin-right: 0;
  }
  .divide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 9;
  }

}

/***********
plan
************/

.plan {
}
.plan-container {
  display: flex;
  padding-top: 1em;
}
.plan-visual {
  width: 32%;
  padding-right: 4%;
}
.plan-inner {
  flex: 1;
  display: flex;
  align-items: start;
}
.plan-box {
  flex: 1;
}
.plan-gallery {
  width: 38%;
  padding-left: 5%;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  margin-left: -2%;
  margin-bottom: -2%;
}
.plan-gallery-img {
  width: 48%;
  margin-left: 2%;
  margin-bottom: 2%;
}
.plan-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

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

  .plan-inner {
    display: block;
  }
  .plan-box {
    flex: 1;
  }
  .plan-gallery {
    width: auto;
    padding-top: 2em;
    padding-left: 0;
    display: flex;
  }
  .plan-gallery-img {
    width: 23%;
  }

}


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

  .plan {
  }
  .plan-container {
    display: block;
  }
  .plan-visual {
    width: clamp(200px,60%, 400px);
    margin: 0 auto;
    padding: 0 0 2em ;
  }

}




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

.dataTable {
  line-height: 1.6;
  font-size: clamp(116%,1.4vw, 139%);
  border-top: 1px solid var(--color-brand04);
}

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

.dataTable tbody tr {
  border-bottom: 1px solid var(--color-brand04);
}
.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-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;
    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: 116%;
  }
  .dataTable.-spBlock tbody td {
    padding: 1em 0em 2em ;
    font-size: 108%;
    line-height: 1.7;
    text-align: left;
  }
  .dataTable.-spBlock tbody td::before,
  .dataTable.-spBlock tbody td::after {
    display: none;
  }


  /*
  size
  */

  .dataTable-th.-trisect {
    width: 33%;
  }
  .dataTable-th.-small {
    width: 10em;
  }
  .dataTable-th.-xsmall {
    width: 8em;
  }
  .dataTable-th.-xxsmall {
    width: 6em;
  }

}

/***********
fileLink
************/

.fileLink {
  font-size: clamp(1.16rem,1.8vw, 1.39rem);
  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;
}


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

.faqSection {
}
.faqSection-item {
  position: relative;
  padding-bottom: 3em;
}
.faqSection-item:not(:last-child) {
  border-bottom: 1px solid var(--color-brand01);
  margin-bottom: 3em;
}
.faqSection-heading {
  font-size: clamp(124%,1.6vw, 139%);
  font-weight: 700;
  color: var(--color-brand01);
  min-height: 1.8em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  line-height: 1.45;
  padding-left: 4rem;
  cursor: pointer;
}
.faqSection-heading::before {
  content: "Q";
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 2.5em;
  height: 2.5em;
  padding-top: 0.2em;
  color: var(--color-base);
  background-color: var(--color-brand01);
  font-family: var(--font-family-gothic-en01);
  font-weight: 400;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: -0.1em;
  font-size: 85%;
}


.faqSection-answer {
  margin-top: 1.5em;
}
.faqSection-answer a {
  color: var(--color-brand02);
}
.faqSection-answer-inner {
  position: relative;
  padding: 0.5em 0 0 0;
}

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

  .faqSection-item {
  }
  .faqSection-heading {
    min-height: 1.8em;
    line-height: 1.6;
    padding-left: 3rem;
  }
  .faqSection-answer {
    margin-top: 0.8em;
  }
  .faqSection-answer-inner {
    position: relative;
  }
}


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

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

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

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

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

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