@charset "utf-8";
/* ---------------------
  - webfont

  - heading
    - heading__main
  - midHeading
    - midHeading__main

  - text

  - categoryWrapper
  - category
    - category__item

  - button
    - button__item
    - button__text

  - pager
    - pager__item
      - --prev
      - --next
      - --number
  - pagerNumber
    - pagerNumber__item

  - snsList
    - snsList__item
      - --x
      - --facebook
      - --instagram
--------------------- */



/* -----------------------------------
  webfont
----------------------------------- */
@font-face {
  font-family: 'webfont';
  src:  url('../fonts/webfont.eot?dt5gqa');
  src:  url('../fonts/webfont.eot?dt5gqa#iefix') format('embedded-opentype'),
        url('../fonts/webfont.ttf?dt5gqa') format('truetype'),
        url('../fonts/webfont.woff?dt5gqa') format('woff'),
        url('../fonts/webfont.svg?dt5gqa#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-facebook:before {
  content: "\e900";
}

.icon-instagram:before {
  content: "\e901";
}

.icon-arrow:before {
  content: "\e902";
}



/* -----------------------------------
  heading
----------------------------------- */
.heading {
  display: -webkit-flex;
  display:    -moz-flex;
  display:     -ms-flex;
  display:      -o-flex;
  display:         flex;
  justify-content: flex-start;
  -ms-align-items: stretch;
      align-items: stretch;
  margin-bottom: 2.571428571428571rem; /* 36/14 */
  font-size: 1.928571428571429rem; /* 27/14 */
  font-family: var(--font-trajan);
  text-transform: uppercase;
}


/*  heading__main
------------------------ */
.heading__main {
  -webkit-flex: none;
     -moz-flex: none;
      -ms-flex: none;
       -o-flex: none;
          flex: none;
  padding-bottom: .4285714285714286rem; /* 6/14 */
  border-bottom: 1px solid var(--color-bk);
  font-weight: bold;
  font-size: inherit;
}



/* -----------------------------------
  midHeading
----------------------------------- */
.midHeading {
  display: -webkit-flex;
  display:    -moz-flex;
  display:     -ms-flex;
  display:      -o-flex;
  display:         flex;
  justify-content: flex-start;
  -ms-align-items: stretch;
      align-items: stretch;
  column-gap: .8571428571428571rem; /* 12/14 */
  margin-bottom: 1.714285714285714rem; /* 24/14 */
  font-size: 1.75rem; /* 28/16 */
  font-family: var(--font-noto-serif);
  text-transform: uppercase;
}

.midHeading:after {
  display: block;
  -webkit-flex: 1;
     -moz-flex: 1;
      -ms-flex: 1;
       -o-flex: 1;
          flex: 1;
  -ms-align-self: center;
      align-self: center;
  height: 1px;
  background-color: var(--color-bk);
  content: " ";
}


/*  midHeading__main
------------------------ */
.midHeading__main {
  -webkit-flex: none;
     -moz-flex: none;
      -ms-flex: none;
       -o-flex: none;
          flex: none;
  position: relative;
  font-weight: 700;
  font-size: inherit;
}

.midHeading__main:after {
  display: block;
  position: absolute;
  top: -1px;
  bottom: 0;
  left: calc( 100% + .8571428571428571rem - ( 6px / 2 ) ); /* 12/14 */
  width: 6px;
  height: 6px;
  margin-block: auto;
  border-radius: 50%;
  background-color: var(--color-bk);
  content: " ";
}



/* -----------------------------------
  text
----------------------------------- */
.text {
  line-height: 1.8;
}



/* -----------------------------------
  categoryWrapper
----------------------------------- */
.categoryWrapper {
  padding-bottom: .3rem;
  overflow-x: auto;
  /*scrollbar-color: var(--color-theme) var(--color-bk);
  scrollbar-width: thin;*/
}
.categoryWrapper::-webkit-scrollbar {
  height: .35rem;
  }
.categoryWrapper::-webkit-scrollbar-track {
  background-color: var(--color-gy);
  border-radius: 100px;
}
.categoryWrapper::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background-color: var(--color-theme);
}



/* -----------------------------------
  category
----------------------------------- */
.category {
  display: -webkit-flex;
  display:    -moz-flex;
  display:     -ms-flex;
  display:      -o-flex;
  display:         flex;
  justify-content: flex-start;
  -ms-align-items: center;
      align-items: center;
  column-gap: .8571428571428571rem; /* 12/14 */
  list-style: none;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}


/*  category__item
------------------------ */
.category__item {
  -webkit-flex: none;
     -moz-flex: none;
      -ms-flex: none;
       -o-flex: none;
          flex: none;
}

.category__item:has( span ) {
  min-width: 5.785714285714286rem; /* 81/14 */
}

.category__item:has( a ) {
  min-width: 4.071428571428571rem; /* 57/14 */
  padding-block: 3px;
  padding-inline: .4285714285714286rem; /* 6/14 */
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.category__item :is( span, a ) {
  display: block;
}

.category__item span {
  padding-block: 3px;
  padding-inline: 1.285714285714286rem; /* 18/14 */
  border-radius: 50px;
  background-color: var(--color-bk);
  color: var(--color-bg);
}

.category__item a {
  inline-size: fit-content;
  margin-inline: auto;
  color: var(--color-bk);
  text-decoration: none;
}



/* -----------------------------------
  button
----------------------------------- */
.button {
  display: -webkit-flex;
  display:    -moz-flex;
  display:     -ms-flex;
  display:      -o-flex;
  display:         flex;
  -ms-align-items: center;
      align-items: center;
  gap: 1rem 1.714285714285714rem; /* 24/14 */
  margin-top: 2.571428571428571rem; /* 36/14 */
}

.button:has( .button__text ) {
  -webkit-flex-wrap: wrap;
     -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
       -o-flex-wrap: wrap;
          flex-wrap: wrap;
}


/*  button__item
------------------------ */
.button__item {
  -webkit-flex: 1;
     -moz-flex: 1;
      -ms-flex: 1;
       -o-flex: 1;
          flex: 1;
  max-width: 240px;
  font-weight: bold;
}

.button__item :is( a, button ) {
  display: block;
  width: 100%;
  margin: 0;
  padding: .8571428571428571rem 1.285714285714286rem; /* 12/14 18/14 */
  border: none;
  border-radius: 50px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  background-color: var(--color-bk);
  color: var(--color-bg);
  text-decoration: none;
  text-transform: uppercase;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.button__item > a {
  font-size: 1.142857142857143rem; /* 16/14 **/
  font-family: var(--font-trajan);
}

.button__item > button {
  line-height: 1.714285714285714; /* 24/14 */
}

.button__item span {
  display: -webkit-flex;
  display:    -moz-flex;
  display:     -ms-flex;
  display:      -o-flex;
  display:         flex;
  justify-content: flex-start;
  -ms-align-items: center;
      align-items: center;
  inline-size: fit-content;
  margin-inline: auto;
}

.button__item a > span:before {
  display: block;
  margin-left: -.5em;
  font-weight: normal;
  font-size: 1.714285714285714rem; /* 24/14 */
  line-height: 1;
  font-family: 'webfont';
  content: "\e902";
}


/*  button__text
------------------------ */
.button__text {
  flex-basis: 100%;
}

.button__text p {
  inline-size: fit-content;
  margin-inline: auto;
}

.button__text a {
  color: var(--color-bk);
}

@media ( hover: hover ) and ( pointer: fine ){
  .button__text a:hover {
    text-decoration: none;
  }
}



/* -----------------------------------
  pager
----------------------------------- */
.pager {
  display: -webkit-flex;
  display:    -moz-flex;
  display:     -ms-flex;
  display:      -o-flex;
  display:         flex;
  justify-content: center;
  -ms-align-items: center;
      align-items: center;
  gap: .4285714285714286rem; /* 6/14 */
  margin-top: 2.571428571428571rem; /* 36/14 */
  font-size: 1.714285714285714rem; /* 24/14 */
  text-align: center;
}


/*  pager__item
------------------------ */
.pager__item :is( span, a ) {
  display: block;
  position: relative;
  width: 1.714285714285714rem; /* 24/14 */
  aspect-ratio: 1 / 1;
  overflow: hidden;
  line-height: 1.714285714285714rem; /* 24/14 */
  white-space: nowrap;
}

.pager__item a {
  color: var(--color-bk);
  text-decoration: none;
}

.pager__item span {
  border-radius: 50%;
}

.pager__item > :is( span, a ) {
  text-indent: 200%;
}

.pager__item > :is( span, a ):before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'webfont';
  text-indent: 0;
  content: "\e902";
}

/* timedoor edited pagination */
.pager__item span.current {
  background-color: var(--color-gy);
}

.pager__item a.prev, .pager__item a.next {
  text-indent: 200%;
}

.pager__item a.prev:before, .pager__item a.next:before {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'webfont';
  text-indent: 0;
  content: "\e902";
  font-size: 1.6rem;
  font-weight: 400;
}

.pager__item a.next:before {
  -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
      -o-transform: scaleX(-1);
        transform: scaleX(-1);
}

/*  --prev  */


/*  --next  */
.pager__item#--next a:before {
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
       -o-transform: scaleX(-1);
          transform: scaleX(-1);
}


/*  --number  */



/* -----------------------------------
  pagerNumber
----------------------------------- */
.pagerNumber {
  display: -webkit-flex;
  display:    -moz-flex;
  display:     -ms-flex;
  display:      -o-flex;
  display:         flex;
  justify-content: center;
  -ms-align-items: center;
      align-items: center;
  gap: .4285714285714286rem; /* 6/14 */
  list-style: none;
  font-weight: bold;
  font-size: 1.142857142857143rem; /* 16/14 */
  font-family: var(--font-trajan);
}


/*  pagerNumber__item
------------------------ */
.pagerNumber__item > span {
  background-color: var(--color-gy);
}



/* -----------------------------------
  snsList
----------------------------------- */
.snsList {
  display: -webkit-flex;
  display:    -moz-flex;
  display:     -ms-flex;
  display:      -o-flex;
  display:         flex;
  justify-content: flex-start;
  -ms-align-items: center;
      align-items: center;
  column-gap: 1.071428571428571rem; /* 15/14 */
  list-style: none;
  font-weight: normal;
}
@media screen and (min-width:768.1px) {
  .snsList {
    font-size: 1.5rem; /* 21/14 */
  }
}
@media screen and (max-width:768px) {
  .snsList {
    font-size: 1.714285714285714rem; /* 24/14 */
  }
}


/*  snsList__item
------------------------ */
.snsList__item > a {
  display: block;
  position: relative;
  overflow: hidden;
  width: 1em;
  aspect-ratio: 1 / 1;
  color: var(--color-bk);
  line-height: 1;
  text-indent: 200%;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.snsList__item > a:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'webfont';
  text-indent: 0;
  text-align: center;
}


/*  --x  */
.snsList__item.--x > a:before {
  content: none;
}

.snsList__item.--x img {
  max-width: none;
  max-height: 100%;
  filter: invert(15%) sepia(10%) saturate(0%) hue-rotate(269deg) brightness(105%) contrast(88%);
}


/*  --facebook  */
.snsList__item.--facebook > a:before {
  content: "\e900";
}


/*  --instagram  */
.snsList__item.--instagram > a:before {
  content: "\e901";
}


