/*
**
** Header
**
*/

/* .c-header__page */

.c-header__page:not(.c-header__page--special) {
  padding-bottom: calc((90 / var(--standard-font-size)) * 1em);
  margin-bottom: calc((18 / var(--standard-font-size)) * 1em);
}

.c-header__page--special {
  padding-bottom: calc((268 / var(--standard-font-size)) * 1em);
  margin-bottom: 0;
}

.c-header__page--special + * {
  margin-top: calc((-160 / var(--standard-font-size)) * 1em);
}

.c-header__page::before {
  left: 2rem;
  width: 12rem;
  height: 6rem;
}

.c-header__page:not(.c-header__page--special)::after {
  width: 66.67%;
  mask-image: url(../../image/common/bg_header-bg-mask_l.svg);
}

.c-header__page--special::after {
  width: 50%;
}

.c-header__page--special .c-header__page-inner::before {
  bottom: 1.3rem;
  left: min(calc((72 / var(--standard-width-xl)) * 100vw), 7.2rem);
  width: min(calc((288 / var(--standard-width-xl)) * 100vw), 28.8rem);
  height: min(calc((216 / var(--standard-width-xl)) * 100vw), 21.6rem);
}

.c-header__page:not(.c-header__page--special) .c-header__page-contents {
  min-height: calc((180 / var(--standard-font-size)) * 1em);
}

.c-header__page--special .c-header__page-contents {
  min-height: calc((342 / var(--standard-font-size)) * 1em);
}

.c-header__page:not(.c-header__page--special) .c-header__page-headline {
  font-size: calc((32 / var(--standard-font-size)) * 1em);
}

.c-header__page--special .c-header__page-headline {
  width: 16em;
  font-size: calc((45 / var(--standard-font-size)) * 1em);
}

.c-header__page-headline span::before {
  -webkit-text-stroke: calc((6 / var(--standard-font-size)) * 1em) #fff;
  text-stroke: calc((6 / var(--standard-font-size)) * 1em) #fff;
}



/*
**
** Layout
**
*/

/* .c-contents__main */

.c-contents__main {
  grid-row-gap: calc((108 / var(--standard-font-size)) * 1em);
}

/* .c-contents__2columns */

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

/* .c-contents__introduction */

.c-contents__introduction {
  grid-row-gap: calc((27 / var(--standard-font-size)) * 1em);
}

.c-contents__introduction-lead {
  font-size: calc((25 / var(--standard-font-size)) * 1em);
  text-align: center;
}


/*
**
** Headline
**
*/

/* .c-headline__center */

.c-headline__center {
  grid-row-gap: calc((5 / var(--standard-font-size)) * 1em);
}

.c-headline__center-body {
  padding: calc((5 / var(--standard-font-size)) * 1em) calc((18 / var(--standard-font-size)) * 1em);
}

.c-headline__center-body-main {
  font-size: calc((30 / var(--standard-font-size)) * 1em);
}

.c-headline__center-body-sub {
  font-size: calc((25 / var(--standard-font-size)) * 1em);
}

.c-headline__center-en {
  font-size: calc((16 / var(--standard-font-size)) * 1em);
}

/* .c-headline__line */

.c-headline__line {
  font-size: calc((25 / var(--standard-font-size)) * 1em);
  margin-bottom: calc((27 / var(--standard-font-size)) * 1em);
}

.c-headline__line-body {
  padding-bottom: calc((8 / var(--standard-font-size)) * 1em);
}


/*
**
** List
**
*/

/* .list__circle */

/* .list__circle {
  display: grid;
  grid-template-columns: 100%;
  grid-auto-rows: max-content;
}

.list__circle-contents {
  padding-left: 1.1em;
}

.list__circle-contents::before {
  content: '\25cf';
  color: var(--headline);
  margin-left: -1em;
  margin-right: 0.1em;
} */


/* .list__square */

/* .list__square {
  display: grid;
  grid-template-columns: 100%;
  grid-auto-rows: max-content;
}

.list__square-contents {
  padding-left: 1.1em;
}

.list__square-contents::before {
  content: '\25a0';
  color: var(--headline);
  margin-left: -1em;
  margin-right: 0.1em;
} */


/* .list__number */

/* .list__number {
  display: grid;
  grid-template-columns: 100%;
  grid-auto-rows: max-content;
  counter-reset: number 0;
}

.list__number-contents {
  padding-left: 1.5em;
}

.list__number-contents::before {
  content: counter(number)'.';
  counter-increment: number 1;
  display: inline-block;
  min-width: 1.2em;
  color: var(--headline);
  margin-left: -1.5em;
} */



/*
**
** Table
**
*/

/* .c-table__general */

.c-table__general {
  border-left: unset;
  border-right: unset;
}

.c-table__general th,
.c-table__general td {
  font-size: inherit;
  padding: calc((18 / var(--standard-font-size)) * 1em) calc((27 / var(--standard-font-size)) * 1em);
}

.c-table__general th {
  min-width: 14em;
  vertical-align: top;
  border-right: unset;
}


/* .table__scroll(スクロール可能なtable要素) */

/* .table__scroll-container {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  border-bottom: 0.1rem solid #AFAFAF;
}

.table__scroll-container.scroll table::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: var(--z-index-mid);
  width: min(20vw, 10rem);
  height: min(20vw, 10rem);
  background-color: hsla(0,0%,2%,0.32);
  background-image: url(../../image/common/icon_table-scroll.svg);
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
  border-radius: 0.5em;
  transition: var(--transition);
}

.table__scroll-container.scroll.usage table::before {
  visibility: hidden;
  opacity: 0;
}

.table__scroll-container table th,
.table__scroll-container table td {
  vertical-align: middle !important;
  word-break: keep-all;
  white-space: nowrap;
  border-top: 0.1rem solid #AFAFAF;
  border-right: 0.1rem solid #AFAFAF;
}

.table__scroll-container:not(.scroll) table tr th:first-child,
.table__scroll-container:not(.scroll) table tr td:first-child {
  border-left: 0.1rem solid #AFAFAF;
}

.table__scroll-container.scroll table *.fixed {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  min-width: max-content;
}

.table__scroll-container.scroll table *.fixed::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
}

.table__scroll-container table th.fixed::before,
.table__scroll-container table td.fixed::before {
  border-left: 0.1rem solid #AFAFAF;
}

.table__scroll-container.scroll table *.fixed::after {
  content: '';
  position: absolute;
  top: 0;
  right: -1rem;
  width: 1rem;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.1) 15%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.1) 15%, rgba(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.1) 15%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
} */


/*
**
** Text
**
*/

/* .c-text__body */

.c-text__body {
  font-weight: lighter;
}


/*
**
** Image
**
*/

/* .c-image__rnd */

.c-image__rnd {
  border-radius: 1rem;
}



/*
**
** Modal
**
*/

.c-modal__inner {
  padding-top: 8em;
  padding-bottom: 8em;
}

.c-modal__bg {
  width: max(70rem, calc(792 / var(--standard-width-xl) * 100%));
}

.c-modal__close {
  top: -1.5rem;
  right: -1.5rem;
}

.c-modal__container {
  max-height: calc(100vh - (8em * 2));
}

.c-modal__contents {
  padding: calc((36  / var(--standard-font-size)) * 1em);
}

.c-modal__post-contents {
  padding-top: 0;
  padding-bottom: 0;
}

.c-modal__detail-contents {
  grid-row-gap: calc((18 / var(--standard-font-size)) * 1em);
  padding-top: 0;
  padding-bottom: 0;
}

.c-modal__post-date {
  font-size: calc((16 / var(--standard-font-size)) * 1em);
  margin-bottom: calc((13 / var(--standard-font-size)) * 1em);
}

.c-modal__post-title {
  font-size: calc((25 / var(--standard-font-size)) * 1em);
  padding-bottom: calc((20 / var(--standard-font-size)) * 1em);
  margin-bottom: calc((20 / var(--standard-font-size)) * 1em);
}



/*
**
** Badge
**
*/

/* .grecaptcha-badge */

/* .grecaptcha-badge {
  bottom: 7rem !important;
} */