@charset "utf-8";

/* CSS Document */


/* カスタム */

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

.pageHeading {
  height: 7em;
  overflow: hidden;
  position: relative;
  z-index: 2;
  font-size: clamp(32px,2.5vw, 70px);
  margin-top: var(--header-height);
}
.pageHeading.-center {
  text-align: center;
}

.pageHeading:has(.pageHeading-img) {
  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-img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
}

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

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

.pageHeading:has(.pageHeading-img) .pageHeading-parent-text{
  background-color: var(--color-base);
}

.pageHeading-title {
  line-height: 1.8;
  font-weight: 700;
  font-size: 100%;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.pageHeading-subTitle {
  font-family: var(--font-family-gothic-en);
  font-weight: 700;
  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 {
    font-size: clamp(24px,4.4vw, 40px);
    margin-top: calc(var(--header-height) / 2);
  }

}


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

.breadcrumb{
  font-size: clamp(0.65rem,1.2vw, 0.75rem);
  font-weight: 400;
  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;
  scale: 0.8 1.2;
  opacity: 0.5;
}
.breadcrumb-lists li a{
  color: inherit;
  text-decoration: none;
  transition: 0s;
}
body.is-pc .breadcrumb-lists li a:hover{
  text-decoration: underline;
  color: var(--color-brand01);
}

.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: clamp(0.5rem,3vw, 0.65rem);
    -webkit-overflow-scrolling: touch;
    translate: 0 -1.8em;
    letter-spacing: 0;
    opacity: 0.6;
  }
  .breadcrumb-lists{
    overflow: auto;
    display: flex;
    white-space: nowrap;
    height: 2em;
    padding: 0;
    padding-left: 3%;
  }
  .breadcrumb-lists li a{
    /* color: var(--color-base); */
  }
  .breadcrumb-lists li:last-child {
    max-width: 12em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .breadcrumb-lists li:not(:last-child)::after{
    padding: 0 0.3em;
  }

}

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

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

/***********
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-main);
  border-radius: 50%;
  text-decoration: none;
  text-align: center;
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  font-size: 1.3rem;
  margin: 0 5px;
}
.pagination a {
  background-color: var(--color-base);
  box-shadow: 0 0 0 1px var(--color-main) 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;
  white-space: nowrap;
  padding-right: 1em;
  font-weight: 600;
  font-family: var(--font-family-gothic-en);
  font-size: 1.2rem;
}
.article-heading-cat {
  margin: 0.1em;
}

.article-heading-title {
  font-weight: 700;
  font-size: clamp(1.5rem,2vw, 2rem);
}

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

  .article {
    margin-bottom: 2em;
  }
  .article-heading {
    margin-bottom: 3em;
  }

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

  .article-heading-title {
    font-size: 1.4em;
  }

}

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

.post {
}

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

.post h2:not([class]) {
  font-size: clamp(1.2rem,2vw, 1.5rem);
  background-color: var(--color-brand01);
  color: var(--color-base);
  border-radius: 0.5rem;
  margin: 2.5em 0 0.8em 0;
  padding: 0.6em 1em;
  line-height: 1.4;
  position: relative;
}

.post h3:not([class]) {
  font-size: clamp(1.25rem,1.8vw, 1.5rem);
  margin: 2.5em 0 0.8em 0;
  padding-bottom: 0.6em;
  line-height: 1.4;
  border-bottom: 2px solid var(--color-brand01);
  position: relative;
}

.post h4:not([class]) {
  font-size: clamp(1.15rem,1.6vw, 1.3rem);
  line-height: 1.4;
  border-left: 5px solid var(--color-brand01);
  padding: 0.5em 0 0.5em 0.8em;
  margin: 2.5em 0 0.8em 0;
}
.post h5:not([class]) {
  font-size: 1.1rem;
  margin: 2.5em 0 0.8em 0;
  padding-left: 1.5em;
  position: relative;
}
.post h5:not([class])::before {
  content: "";
  display: block;
  width: 1em;
  height: 5px;
  background-color: var(--color-brand01);
  border-radius: 1em;
  position: absolute;
  left: 0;
  top: 0.65em;
}

.post h6:not([class]) {
  font-size: 1.1rem;
  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;
  gap: 0 5%;
}
.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 ;
  background-color: var(--color-main);
  border-inline: 1px solid var(--color-sub02);
  text-align: center;
}
.dataTable thead th {
  padding: 1em 1.2em ;
  background-color: var(--color-main);
  color: var(--color-base);
  font-weight: 500;
  border-inline: 1px solid var(--color-sub02);
  text-align: center;
}

.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-sub01);
  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 tbody th,
.dataTable.-alignLeft tbody 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;
  }

}

/***********
priceTable
************/

.priceTable {
  line-height: 1.6;
}

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

.priceTable tbody tr {
  border-bottom: 1px solid var(--color-sub02);
}
.priceTable tbody th {
  padding: 1.2em 0 ;
  font-weight: 500;
  text-align: left;
  vertical-align: middle;
}
.priceTable tbody td {
  padding: 1.2em 0 1.2em 1.5em ;
  text-align: right;
  vertical-align: middle;
}

.priceTable-tips {
  font-size: 80%;
  font-weight: 400;
  display: block;
}

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

  .priceTable {
    font-size: 0.9rem;
  }

}

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

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

.catNavi {
  margin-bottom: 3em;
}
.catNavi-list {
  display: flex;
  flex-wrap: wrap;
}
.catNavi-list li {
}
.catNavi-list li a{
  display: inline-block;
  cursor: pointer;
  padding: 0.5em 1.5em;
  background-color: var(--color-sub01);
  color: var(--color-main);
  border-radius: 3em;
  font-weight: 500;
  margin: 0.2em;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.catNavi-list li.current-cat a,
body.is-pc .catNavi-list li a:hover {
  background-color: var(--color-dark01);
  color: var(--color-base);
}

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

  .catNavi {
    overflow: auto;
    white-space: nowrap;
    margin-inline: calc(var(--padding-side) * -1);
  }

  .catNavi-list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: start;
    overflow: auto;
    padding-left: var(--padding-side);
    white-space: nowrap;
    font-size: 0.9rem;
  }
  .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;
  }

}

/***********
card
************/

.card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4em 2.5%;
}
.card.-quarter {
  grid-template-columns: repeat(4, 1fr);
}
.card.-half {
  grid-template-columns: repeat(2, 1fr);
}

.card li {
}
.card li a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.card-img {
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 11;
}

.card-inner {
  padding-top: 1em;
}
.card-data {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 0.5em;
}
.card-time {
  display: inline-block;
  padding-right: 0.5em;
  font-weight: 600;
  font-family: var(--font-family-gothic-en);
  white-space: nowrap;
}
.card-cat {
  font-size: 0.8rem;
  margin: 1px;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
}


/*
carousel
*/

.carouselWrapper {
  width: 100vw;
}
.carouselWrapper-inner {
}

.card.-carousel .slick-list {
  overflow: visible !important;
  translate: 10vw 0;
  transition: translate 0.7s ease 0.2s , opacity 0.7s ease 0.2s;
  opacity: 0;
}
.carouselWrapper-inner.is-show  .slick-list{
  translate: 0 0;
  opacity: 1;
}

.card.-carousel {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  position: relative;
  padding-bottom: 6em;
}
.card.-carousel li {
  width: auto;
  margin: 0;
}
.card.-carousel li a {
  width: clamp(300px,22vw, 600px);
  margin-right: 2vw;
}
.card.-carousel .card-title {
  max-height: calc(2em * 1.5);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/*
slick
*/

.carouselWrapper .slick-next,
.carouselWrapper .slick-prev{
  position: absolute;
  bottom: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 4em;
  height: 4em;
  background-color: var(--color-dark01);
  color: var(--color-base);
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: 0.2s;
}
.carouselWrapper .slick-next{
  left: 5em;
}
.carouselWrapper .slick-prev{
  left: 0;
}

.carouselWrapper .slick-next:hover,
.carouselWrapper .slick-prev:hover{
  background-color: var(--color-brand01);
  color: var(--color-base);
}

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

  .card.-quarter {
    grid-template-columns: repeat(2, 1fr);
  }

}

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

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

  /*
  carousel
  */

  .carouselWrapper {
    width: auto;
    overflow: auto;
    padding-left: 4vw;
    margin-left: -3.2vw;
    margin-right: -3.2vw;
  }
  .carouselWrapper-inner {
    translate: 50vw 0;
    transition: translate 0.7s ease 0.2s , opacity 0.7s ease 0.2s;
    opacity: 0;
  }
  .carouselWrapper-inner.is-show {
    translate: 0 0;
    opacity: 1;
  }

  .card.-carousel {
    display: flex;
    gap: 0;
  }
  .card.-carousel li {
  }
  .card.-carousel li a {
    width: 240px;
    margin-right: 10px;
  }
  .card.-carousel .card-inner {
  }

  .card.-carousel .card-cat {
    font-size: 0.7rem;
  }
  .card.-carousel .card-title {
    font-size: 0.9rem;
  }

  .card:not(.-carousel) .card-inner {
  }
  .card:not(.-carousel) .card-cat {
  }
  .card:not(.-carousel) .card-title {
  }
}

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

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

}

/***********
basicCard
************/

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

.basicCard.-half {
  grid-template-columns: repeat(2, 1fr);
}
.basicCard.-trisect  {
  grid-template-columns: repeat(3, 1fr);
}
.basicCard.-quarter  {
  grid-template-columns: repeat(4, 1fr);
}

.basicCard > li > a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.basicCard-img {
  text-align: center;
}
.basicCard-inner {
  padding-top: 1.5em;
}

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

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

}

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

  .basicCard ,
  .basicCard.-half ,
  .basicCard.-trisect ,
  .basicCard.-quarter {
    grid-template-columns: repeat(1, 1fr);
  }

}

/***********
standardCard
************/

.standardCard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2em;
}
.standardCard.-quarter {
  grid-template-columns: repeat(4, 1fr);
}
.standardCard.-half {
  grid-template-columns: repeat(2, 1fr);
}

.standardCard li {
  border: 3px solid var(--color-brand01);
  border-radius: 0.5em;
  background-color: var(--color-base);
  padding: min(5vw,2em) min(5vw,1em);

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

.standardCard-inner {
  margin-top: 0.5em;
}
.standardCard-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.standardCard-title {
  font-size: 1rem;
  font-weight: 600;
}
.standardCard-subTitle {
  font-family: var(--font-family-gothic-en);
  font-weight: 700;
  font-size: 0.8rem;
  padding-top: 0.4em;
  color: var(--color-brand01);
  line-height: 1.3;
}
.standardCard-text {
  font-size: 0.85rem;
  padding-top: 0.5em;
}

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

  .standardCard ,
  .standardCard.-quarter ,
  .standardCard.-half {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5em;
  }

  .standardCard li {
    border-width: 2px;
    padding: min(5vw,2em) min(4vw,0.8em) min(8vw,2em);
  }
  .standardCard-title {
    font-weight: 600;
    font-feature-settings: "palt";
  }

}

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

  .standardCard ,
  .standardCard.-quarter ,
  .standardCard.-half {
    grid-template-columns: repeat(1, 1fr);
    gap: 1em 0;
  }
  .standardCard-img {
    width: 85%;
    margin-inline: auto;
  }

  .standardCard-title {
    font-size: 1rem;
  }
  .standardCard-subTitle {
    font-size: 0.7rem;
  }
  .standardCard-text {
    font-size: 0.85rem;
  }

}

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

.divide {
  display: flex;
  justify-content: space-between;
}
.divide.-reverse {
  flex-direction: row-reverse;
}
.divide-item {
}

.divide.-half .divide-item {
  width: 47%;
}

.divide.-ratio4_6 .divide-item:nth-child(1) {
  width: 42%;
}
.divide.-ratio4_6 .divide-item:nth-child(2) {
  width: 53%;
}

.divide.-ratio3_7 .divide-item:nth-child(1) {
  width: 38%;
}
.divide.-ratio3_7 .divide-item:nth-child(2) {
  width: 57%;
}

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

  .divide {
    display: block;
  }
  .divide.-reverse {
  }
  .divide-item + .divide-item {
    padding-top: 1.5em;
  }

  .divide.-half .divide-item ,
  .divide.-ratio4_6 .divide-item:nth-child(1) ,
  .divide.-ratio4_6 .divide-item:nth-child(2) ,
  .divide.-ratio3_7 .divide-item:nth-child(1) ,
  .divide.-ratio3_7 .divide-item:nth-child(2) {
    width: auto;
  }

}

/***********
split
************/

.split {
  counter-reset : split_num;
  margin-top: 1em;
}
.split-section {
  background-color: var(--color-base);
  border-radius: 0.5em;
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 0 6%;
  padding: min(6vw,2.5em) min(5vw,3em);
  position: relative;
}
.split-section + .split-section {
  margin-top: 4em;
}
.split-img {
  width: 46%;
}
.split-inner {
  flex: 1;
  padding-block: 1em;
}

/*
reverse
*/

.split-section.-reverse,
.split.-alternately .split-section:nth-child(even){
  flex-direction: row-reverse;
}

/*
numbering
*/

.split.-numbering .split-section::before{
  display: inline-block;
  counter-increment:split_num;
  content: counter(split_num, decimal-leading-zero) ;
  position: absolute;
  top: -0.4em;
  left: 0.5em;
  z-index: 9;
  font-size: 6rem;
  font-family: var(--font-family-gothic-en02);
  font-weight: 500;
  color: var(--color-brand01);
  pointer-events: none;
  line-height: 1;
}
.split-section.-reverse::before,
.split.-alternately.-numbering .split-section:nth-child(even)::before {
  left: auto;
  right: 0.5em;
}

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

  .split-section {
    display: block;
    padding: min(6vw,2.5em) min(5vw,3em);
  }
  .split-section + .split-section {
    margin-top: 3em;
  }
  .split-img {
    width: auto;
  }
  .split-inner {
    padding-block: 1.5em 0;
  }

  /*
  numbering
  */

  .split.-numbering .split-section::before,
  .split-section.-reverse::before,
  .split.-alternately.-numbering .split-section:nth-child(even)::before {
    left: 1vw;
    right: auto;
    font-size: 5rem;
  }

}

/***********
tabTrigger
************/

.tabTrigger {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3em;
}
.tabTrigger li {
  cursor: pointer;
  padding: 0.5em 1.5em;
  background-color: var(--color-sub01);
  color: var(--color-main);
  border-radius: 3em;
  font-weight: 500;
  margin: 0.2em;
  transition: background-color 0.2s ease;
}
body.is-pc .tabTrigger li:hover,
.tabTrigger li.is-active {
  background-color: var(--color-dark01);
  color: var(--color-base);
}

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

  .tabTrigger {
    display: flex;
    flex-wrap: nowrap;
    justify-content: start;
    margin-bottom: 1.5em;
    overflow: auto;
    margin-left: -3vw;
    margin-right: -3vw;
    padding-left: 3vw;
    white-space: nowrap;
    font-size: 0.9rem;
  }

}


/***********
segmented
************/

.segmented {
  position: relative;
}
.segmented-container {
  display: flex;
  gap: 0 5%;
  min-height: 15em;
}
.segmented-heading {
  width: clamp(280px,30%, 400px);
}
.segmented-inner {
  flex: 1;
}
.segmented-link {
  position: absolute;
  left: 0;
  top: 11em;
}

.segmented-link .l-btn {
  min-width: initial;
}

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

  .segmented-container {
    display: block;
  }
  .segmented-heading {
    width: auto;
  }
  .segmented-inner {
    flex: 1;
  }
  .segmented-link {
    position: static;
    padding-top: 2em;
    text-align: center;
  }

  .segmented-link .l-btn {
    min-width: inherit;
  }

}

/***********
newsList
************/

.newsList {
}
.newsList li {
  border-bottom: 1px solid var(--color-sub02);
}
.newsList li:first-child {
  border-top: 1px solid var(--color-sub02);
}
.newsList a {
  display: flex;
  align-items: center;
  width: 100%;
  color: inherit;
  text-decoration: none;
  padding: 1.5em 1.5em;
}
body.is-pc .newsList a:hover {
  background-color: var(--color-sub04);
}
.newsList-time {
  display: inline-block;
  width: 7em;
  white-space: nowrap;
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  color: var(--color-brand02);
}
.newsList-cat {
  min-width: 8em;
  text-align: center;
  font-size: 90%;
}
.newsList-title {
  flex: 1;
  padding-left: 2em;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3em;
  transition: 0.2s;

}
body.is-pc .newsList-title:hover {
}

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

  .newsList {
  }
  .newsList li {
  }
  .newsList li + li {
  }
  .newsList a {
    display: block;
    padding: 1.2em 0;
  }
  body.is-pc .newsList a:hover {
  }
  .newsList-time {
    display: inline-block;
    width: initial;
    font-size: 85%;
    margin-right: 0.5em;
  }
  .newsList-cat {
    font-size: 85%;
    min-width: initial;
    padding: 0.1em 0.5em;
    border-radius: 3px;
  }
  .newsList-title {
    padding-left: 0;
    padding-top: 0.8em;
  }
  body.is-pc .newsList-title:hover {
  }

}


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

.faqSection {
}
.faqSection-item {
  position: relative;
  margin-bottom: 1em;
}
.faqSection-heading {
  font-size: 1.1rem;
  font-weight: 500;
  background-color: var(--color-base);
  box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.15);
  padding: 1em 3em 1em 6rem;
  min-height: 3.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  line-height: 1.35;
  cursor: pointer;
  border-radius: 0.5rem;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  transition: 0.3s;
}
.faqSection-heading::before {
  content: 'Q' ;
  width: 3.4em;
  height: 100%;
  color: var(--color-base);
  background-color: var(--color-brand01);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  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";
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: absolute;
  right: 1em;
  top: 50%;
  translate: 0 -40%;
  color: var(--color-brand01);
}
.faqSection-heading.is-active::after {
  rotate: 180deg;
  translate: 0 -60%;
}


.faqSection-answer {
  display: none;
}
.faqSection-answer-inner {
  padding: 1.5em 1em 2em 4rem;
  position: relative;
}
.faqSection-answer-inner::before {
  content: 'A.' ;
  width: 3.4em;
  color: var(--color-accent01);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  font-family: var(--font-family-gothic-en);
  position: absolute;
  left: 0;
  top: 1.2em;
  font-size: 1.2rem;
  scale: 1.2;
  transition: 0.3s;
}

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


  .faqSection {
  }
  .faqSection-item {
    margin-bottom: 1em;
  }
  .faqSection-heading {
    font-size: 1rem;
    padding: 0.8em 2.5em 0.8em 4.5rem;
    min-height: 3.5em;
  }
  .faqSection-heading::before {
    content: 'Q' ;
    width: 2.8em;
  }

  .faqSection-answer-inner {
    padding: 1em 1em 2em 3rem;
  }
  .faqSection-answer-inner::before {
    width: 2em;
    top: 0.9em;
  }

}


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

.flow {
  counter-reset : flow_num;
}

.flow-section{
  display: flex;
  gap: 0 5%;
  width: 100%;
  background-color: var(--color-base);
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  padding: min(7vw,2.5em) min(4vw,3em);
  position: relative;
}
.flow-section:not(:last-child){
  margin-bottom: 2rem;
}
.flow.-arrow .flow-section:not(:last-child){
  margin-bottom: 4em;
}
.flow.-arrow .flow-section:not(:last-child)::after{
  content: "";
  display: block;
  width: 12rem;
  height: 2rem;
  position: absolute;
  left: 50%;
  top: 100%;
  translate: -50% 1em;
  background-color: var(--color-brand01);
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

.flow-heading {
  padding-bottom: 1em;
}
.flow:not(.-numbering) .flow-num{
  display: none;
}
.flow-num {
  display: inline-block;
  font-size: 1.3rem;
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  color: var(--color-brand01);
  position: relative;
  line-height: 1;
  padding-bottom: 0.4em;
}
.flow-num::before {
  content: "";
  display: block;
  width: 65px;
  height: 2px;
  background-color: var(--color-brand01);
  position: absolute;
  right: 100%;
  top: 50%;
  margin-right: 0.5em;
}
.flow-num::after {
  display: inline;
  counter-increment:flow_num;
  content: counter(flow_num, decimal-leading-zero) ;
  padding-left: 0.1em;
  font-size: 150%;
}


.flow-img {
  width: 40%;
}
.flow-img img {
}
.flow-inner {
  flex: 1;
  position: relative;
}
.flow-title {
  font-size: 1.4rem;
}
.flow-subTitle {
  font-family: var(--font-family-gothic-en);
  font-weight: 700;
  font-size: 0.8rem;
  padding-top: 0.2em;
  color: var(--color-brand01);
  line-height: 1.3;
}

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

  .flow-section{
    display: block;
  }

  .flow-heading {
    padding-bottom: 1em;
  }

  .flow-img {
    width: auto;
    padding-top: 1.5em;
  }

}


/***********
intro
************/

.intro {
  display: flex;
}
.intro + .intro {
  margin-top: var(--padding-large);
}
.intro-visual {
  width: 40%;
  position: relative;
  z-index: 2;
}
.intro-img {
  min-height: 100%;
}
.intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro-inner {
  flex: 1;
  padding-top: 5vw;
}
.intro-box {
  padding: min(6vw,4em) 10%;
  background-color: var(--color-base);
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 9;
}


.intro:not(.-reverse) .intro-img {
  margin-left: -12vw;
  margin-right: -15%;
}
.intro:not(.-reverse) .intro-box {
  padding-left: 22%;
}
.intro:not(.-reverse) .intro-num {
  right: 1px;
}

.intro.-reverse {
  flex-direction: row-reverse;
}
.intro.-reverse .intro-img {
  margin-right: -12vw;
  margin-left: -15%;
}
.intro.-reverse .intro-box {
  padding-right: 22%;
}
.intro.-reverse .intro-num {
  left: 1px;
}

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

  .intro {
    display: block;
  }
  .intro + .intro {
    margin-top: var(--padding-large);
  }
  .intro-visual {
    width: auto;
    position: relative;
    z-index: 1;
  }
  .intro-img {
  }
  .intro-img img {
    width: 100%;
    height: 100%;
    max-height: 300px;
    object-fit: cover;
  }
  .intro-inner {
    margin-top: -5vw;
    position: relative;
    z-index: 9;
  }
  .intro-box {
    padding: min(8vw,2em) 5%;
    background-color: var(--color-base);
    margin-top: -2em;
  }

  .intro:not(.-reverse) .intro-img,
  .intro.-reverse .intro-img {
    margin-right: 0;
    margin-left: 0;
    margin-right: -5vw;
    padding-left: 5%;
  }
  .intro:not(.-reverse) .intro-box ,
  .intro.-reverse .intro-box{
    padding-right: 5%;
    padding-left: 5%;
  }
  .intro:not(.-reverse) .intro-num,
  .intro.-reverse .intro-num {
    right: auto;
    left: 1px;
  }

}


/***********
bannerList
************/

.bannerList {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2px,2vw, 1rem);
  justify-content: center;
}
.bannerList li {
  width: clamp(100px,28vw, 260px);
}
body.is-pc .bannerList li a:hover {
  opacity: 0.8;
}

/***********
pageList
************/

.pageList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2em 2%;
  padding-bottom: 2em;
}
.pageList.-trisect {
  grid-template-columns: repeat(3, 1fr);
}
.pageList.-half {
  grid-template-columns: repeat(2, 1fr);
}

.pageList li {
}
.pageList li a {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background-color: var(--color-base);
  border-radius: 8px;
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
  padding: min(7vw,2em) min(5vw,1.6em) min(8vw,3em);
}

.pageList-img:has(img[src*=".png"]) {
  width: 85%;
  margin: 0 auto;
}
.pageList-img img {
}
.pageList-inner {
  padding-top: 1em;
}
.pageList-heading {
  text-align: center;
}
.pageList-title {
  font-size: 1.15rem;
  line-height: 1.4;
  position: relative;
}
.pageList-subTitle {
  font-weight: 700;
  font-family: var(--font-family-gothic-en);
  font-size: 0.8rem;
  color: var(--color-brand01);
  line-height: 1.2;
  padding-top: 0.2em;
}

.pageList-text {
  font-size: 0.9rem;
  line-height: 1.5;
  padding-top: 0.8em;
}

.pageList-link {
  display: none;
}

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

  .pageList {
    grid-template-columns: repeat(2, 1fr);
    gap: 1em 2%;
  }
  .pageList.-trisect {
    grid-template-columns: repeat(2, 1fr);
  }
  .pageList.-half {
    grid-template-columns: repeat(2, 1fr);
  }

  .pageList li {
  }
  .pageList li a {
    border-radius: 6px;
    padding: min(5vw,1.2em) min(4vw,1.2em) min(7vw,2em);
  }

  .pageList-img:has(img[src*=".png"]) {
    width: 70%;
    max-width: 160px;
    margin: 0 auto;
  }
  .pageList-img img {
  }
  .pageList-inner {
    padding-top: 0.8em;
  }
  .pageList-heading {
  }
  .pageList-title {
    font-size: 1.15rem;
  }
  .pageList-text {
  }
}


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

  .pageList ,
  .pageList.-trisect,
  .pageList.-half {
    grid-template-columns: repeat(1, 1fr);
  }
  .pageList-img:has(img[src*=".png"]) {
    width: 50%;
    max-width: 140px;
    margin: 0 auto;
  }


  .pageList-link {
    padding-top: 1.5em;
    text-align: center;
    display: block;
  }
  .l-btn.pageList-btn {
    font-size: 0.9rem;
    min-width: 16em;
    min-height: 3.2em;
  }

}



/***********
paging
************/

.paging {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  border-block: 1px solid var(--color-main);
  margin-top: var(--padding-main);
  padding: 1.5rem 0 ;
}
.paging-block {
  width: 48%;
}
.paging-block a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.paging-text {
  font-size: 90%;
  font-weight: 500;
  color: var(--color-brand01);
  padding-bottom: 0.5em;
}
.paging-title {
  font-weight: 500;
  height: calc(1em * 1.5);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
  transition: 0.2s;
}
body.is-pc .paging-block a:hover .paging-title {
  text-decoration: underline;
  text-decoration-color: inherit;
  color: var(--color-brand01);
}

.paging-block.-next {
  text-align: right;
}
.paging-block.-next .paging-data {
  justify-content: end;
}


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

  .paging {
    font-size: 0.85rem;
  }

}


/***********
gallery
************/

.basicGallery {
  display: flex;
  flex-wrap: wrap;
}
.basicGallery > li{
  width: 33.3%;
  padding-right: 1px;
  padding-bottom: 1px;
}
.basicGallery > li > a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.basicGallery-img {
  position: relative;
}
.basicGallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
.basicGallery-img figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  text-align: left;
  padding: 0 1em 0.8em 1em;
  color: #fff;
  line-height: 1.3;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
}

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

  .basicGallery-img figcaption {
    padding: 0 1em 0.8em 1em;
    font-size: 85%;
  }
}

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

  .basicGallery > li{
    width: 33.3%;
    padding-right: 1px;
    padding-bottom: 1px;
  }
  .basicGallery-img figcaption {
    padding: 0 0.5em 0.5em 0.5em;
    font-size: 77%;
  }
}


/***********
planCompare
************/

.planCompareWrapper {
  width: auto;
  max-width: 1460px;
  margin-inline: auto;
  padding-inline: var(--padding-side);
}

.planCompare {
  display: flex;
  justify-content: space-between;
  gap: 0 2%;
}
.planComparl-section {
  flex: 1;
  border: 2px solid var(--color-main);
  border-radius: 0.5em;
  background-color: var(--color-base);
}
.planCompare-heading {
  background-color: var(--color-main);
  color: var(--color-base);
  text-align: center;
  padding: 1.2em 0.5em;
}
.planCompare-heading-title {
  font-size: 1.3rem;
  font-weight: 600;
}
.planCompare-heading-title i[class*="crown"] {
  margin-right: 0.8em;
  margin-left: -0.5em;
  scale: 1.5 1.6;
  color: var(--color-main);
  opacity: 0.25;
  mix-blend-mode: multiply;
}
.planCompare-heading-subTitle {
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-family-gothic-en);
  color: var(--color-main);
  opacity: 0.3;
  mix-blend-mode: multiply;
}
.planCompare-inner {
  padding: 1.5em min(4vw,1.5em) 3em;
}
.planCompare-fee {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 1em;
}
.planCompare-fee-badge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 3.5em;
  height: 3.5em;
  background-color: var(--color-dark01);
  color: var(--color-base);
  border-radius: 50%;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}
.planCompare-fee-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  mix-blend-mode: overlay;
}

.planCompare-fee-inner {
  padding-left: 1em;
  white-space: nowrap;
}
.planCompare-fee-price {
  font-size: 3rem;
}
.planCompare-fee-num {
  font-family: var(--font-family-gothic-en02);
  font-weight: 500;
}
.planCompare-fee-unit {
  font-size: max(45%,13px);
  font-weight: 600;
  padding-left: 0.2em;
}

.planCompare-summary {
  border-block: 1px solid var(--color-main);
  padding: 1em 0;
  margin-bottom: 1.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.planCompare-desc {
}

/*
color
*/

.planComparl-section.-brand {
  border-color: var(--color-brand01);
}
.planComparl-section.-brand .planCompare-heading,
.planComparl-section.-brand .l-list-circle li::before {
  background-color: var(--color-brand01);
}
.planComparl-section.-brand .planCompare-fee-badge {
  background-color: var(--color-brand01);
  position: relative;
}

.planComparl-section.-primary {
  border-color: var(--color-primary01);
}
.planComparl-section.-primary .planCompare-heading,
.planComparl-section.-primary .l-list-circle li::before {
  background-color: var(--color-primary01);
}
.planComparl-section.-primary .planCompare-fee-badge {
  background-color: var(--color-primary01);
  position: relative;
}

.planComparl-section.-secondary {
  border-color: var(--color-secondary01);
}
.planComparl-section.-secondary .planCompare-heading,
.planComparl-section.-secondary .l-list-circle li::before {
  background-color: var(--color-secondary01);
}
.planComparl-section.-secondary .planCompare-fee-badge {
  background-color: var(--color-secondary01);
  position: relative;
}


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

  .planCompare {
    display: block;
  }
  .planComparl-section + .planComparl-section {
    margin-top: 2em;
  }
  .planCompare-desc img {
    max-width: 320px;
  }

}

/***********
excerptFlow
************/

.excerptFlow {
  display: flex;
  background-color: var(--color-sub01);
  counter-reset : excerptFlow_num;
  margin-top: 2em;
}
.excerptFlow-section {
  flex: 1;
  position: relative;
}
.excerptFlow-section::before{
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  counter-increment:excerptFlow_num;
  content: counter(excerptFlow_num, decimal-leading-zero) ;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -55%;
  z-index: 9;
  font-size: 1.5rem;
  font-family: var(--font-family-gothic-en02);
  font-weight: 500;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  border: 2px solid var(--color-brand01);
  color: var(--color-main);
  background-color: var(--color-base);
  pointer-events: none;
  line-height: 1;
}
.excerptFlow-heading {
  font-size: 1.1rem;
  height: 7em;
  padding-top: 0.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
  background-color: var(--color-brand01);
  position: relative;
}
.excerptFlow-section:not(:last-child) .excerptFlow-heading::after {
  content: "";
  display: block;
  width: 2em;
  height: 100%;
  position: absolute;
  left: calc(100% - 1px);
  top: 0;
  background: inherit;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  z-index: 2;
}
.excerptFlow-section:first-child .excerptFlow-heading {
  background-color: var(--color-brand01); /* フォールバック */
  background-color: color-mix(in srgb, var(--color-brand01) 90%, black);
}
.excerptFlow-section:nth-child(3) .excerptFlow-heading {
  background-color: var(--color-brand01);
  background-color: color-mix(in srgb, var(--color-brand01) 85%, white);
}

.excerptFlow-heading-title {
  color: var(--color-base);
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.excerptFlow-heading-title i {
  margin-right: 0.8em;
  margin-left: -0.8em;
  scale: 1.4;
}
.excerptFlow-inner {
  padding: min(6vw,2em) min(5vw,1.5em);
}
.excerptFlow-img {
}
.excerptFlow-text {
  padding-top: 1em;
  line-height: 1.6;
  text-align: center;
}

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

  .excerptFlow {
    display: block;
    max-width: 520px;
    margin-inline: auto;
  }
  .excerptFlow-section {
  }
  .excerptFlow-section + .excerptFlow-section {
    margin-top: 2em;
  }
  .excerptFlow-section::before{
  }
  .excerptFlow-heading {
    height: 5em;
  }
  .excerptFlow-section:not(:last-child) .excerptFlow-heading::after {
    width: 3vw;
  }

  .excerptFlow-heading-title {
    color: var(--color-base);
    font-weight: 500;
    font-feature-settings: "palt";
    letter-spacing: 0.02em;
    line-height: 1.3;
  }
  .excerptFlow-heading-title i {
    margin-right: 0.8em;
    margin-left: -0.8em;
    scale: 1.4;
  }
  .excerptFlow-inner {
    padding: min(6vw,2em) min(5vw,1.5em);
  }
  .excerptFlow-img {
    width: 90%;
    max-width: 400px;
    margin-inline: auto;
  }
}

/***********
cta
************/

.cta {
  background-color: var(--color-brand01);
  color: var(--color-base);
  border: 3px solid var(--color-base);
  border-radius: 0.5em;
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.15);
  padding: min(10vw,3em) min(4vw,4%);
  text-align: center;
}
.cta-heading {
  text-align: center;
  padding-bottom: 2em;
}
.cta-heading-title {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  position: relative;
  border-bottom: 2px solid var(--color-base);
  padding: 0 0.5em 0.5em;
}
.cta-heading-title > img {
  width: 8em;
  position: absolute;
  left: calc(100% - 0.6em);
  bottom: -2px;
}
.cta-container {
}
.cta-block {
}
.cta-block + .cta-block {
  padding-top: 3em;
}

/*
tel
*/

.cta-tel {
  display: inline-block;
  padding-left: 2.2em;
  text-align: left;
  position: relative;
  white-space: nowrap;
  font-size: 2.5rem;
  font-feature-settings: "palt";
  color: inherit;
  text-decoration: none;
  position: relative;
}
.cta-tel::before {
  content: "TEL";
  font-family: var(--font-family-gothic-en);
  font-size: 60%;
  font-weight: 500;
  background-color: var(--color-dark01);
  color: var(--color-base);
  padding: 0 0.6em;
  border-radius: 0.2em;
  position: absolute;
  left: 0;
  top: 0.2em;
}
.cta-tel-num {
  color: inherit;
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}
.cta-tel-text {
  font-weight: 400;
  font-size: 45%;
  line-height: 1.2;
  padding-top: 0.2em;
}


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

  .cta {
  }
  .cta-heading {
    text-align: center;
    padding-bottom: 2em;
  }
  .cta-heading-title {
    font-size: 1.2rem;
  }
  .cta-heading-title > img {
    width: 5em;
  }
  .cta-block + .cta-block {
    padding-top: 2em;
  }

  /*
  tel
  */

  .cta-tel {
    padding-left: 2.2em;
    font-size: 1.8rem;
  }

}


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

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

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

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