@charset "UTF-8";
/* fontサイズ・バリエーション */
/* -------------------------------------------------------------------------------------------------------------------
SP
------------------------------------------------------------------------------------------------------------------- */
.pc {
  display: none;
}

.tb {
  display: none;
}

.sp {
  display: block;
}

body {
  font-size: 15px;
  /* 基準フォントサイズを15pxに設定 */
  margin: 0;
  width: 100vw;
  height: 100vh;
  animation: bugfix infinite 1s;
  -webkit-animation: bugfix infinite 1s;
  overflow-x: hidden;
}

header {
  padding: 0;
}

/* ----------------------
NAVI
------------------------- */
@keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
#overlay-button {
  position: absolute;
  right: 5%;
  padding: 0;
  width: 44px;
  height: 44px;
  z-index: 11;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 1px solid #fff;
  border-radius: 50%;
}
#overlay-button span {
  height: 1px;
  width: 28px;
  position: relative;
  display: block;
  transition: all 0.2s ease-in-out;
  transform-origin: center;
  background: #fff;
  left: 7px;
  top: 20px;
  bottom: 0;
}
#overlay-button span:before {
  top: -5px;
  visibility: visible;
}
#overlay-button span:after {
  top: 5px;
}
#overlay-button span:before,
#overlay-button span:after {
  height: 1px;
  width: 28px;
  position: absolute;
  content: "";
  transition: all 0.2s ease-in-out;
  transform-origin: center;
  transform: rotate(0);
  background: #fff;
  left: 0;
}
#overlay-button.active span {
  background: transparent;
}
#overlay-button.active span:before {
  transform: rotate(25deg) translate(2px, 5px);
  background: #fff;
}
#overlay-button.active span:after {
  transform: rotate(-25deg) translate(2px, -4px);
  background: #fff;
}

#overlay {
  height: 101vh;
  width: 100vw;
  background: #090F12;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  transition: all 0.2s;
}
#overlay.active {
  visibility: visible;
  transition-duration: 0.2s;
  opacity: 100;
}
#overlay ul {
  margin: auto;
  padding: 100px 0 0 0;
  width: 200px;
}
#overlay ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 16px;
  transform: translateX(0);
  transition: all 0.2s;
}
#overlay ul li::before {
  content: "";
  display: block;
  width: 7px;
  height: 1px;
  background-color: #3FD56D;
  margin-right: 12px;
}
#overlay ul a {
  font-size: 15px;
  font-family: "YuGothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif, "Noto Sans KR";
  font-weight: normal;
  font-style: normal;
  line-height: 2.47;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #F4F4EF;
  letter-spacing: 0;
  display: block;
  transition: all 0.2s;
}
#overlay ul a:hover {
  color: #3FD56D;
}

/* 初期状態: 非表示 */
#overlay {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  /* フェードイン/アウトのトランジション */
}

/* activeクラスが付いたとき: 表示 */
#overlay.active {
  display: block;
  /* フェードイン時に表示状態 */
  opacity: 1;
}

.navLogoSp {
  width: 155px;
  margin: 70px auto 0;
}
.navLogoSp a {
  transition: opacity 0.3s ease;
}

.headerNavSp {
  position: fixed;
  height: 100px;
  left: 0;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  width: 100%;
  padding: 0 5%;
  background-color: #090F12;
}
.headerNavSp .logoSp {
  width: 136px;
}
.headerNavSp .logoSp img {
  max-width: 100%;
}

footer {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 30px;
}
footer p.copyright {
  font-family: "YuGothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif, "Noto Sans KR";
  font-weight: normal;
  font-style: normal;
  line-height: 2.47;
  letter-spacing: 0.02em;
  font-size: 0.66em;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

#showloading img {
  width: 210px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.border {
  display: block;
  width: 100%;
  height: 1px;
  background: url(../img/border.png);
}

.grid {
  width: 100%;
  margin-top: 100px;
  padding: 45px;
}

.item {
  box-shadow: 0 2px 10px rgba(232, 232, 222, 0.5);
}
.item .content {
  padding: 35px 20px;
}
.item .title {
  padding: 0;
  font-family: "Zen Old Mincho", "Noto Serif KR", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  font-size: 1em;
  line-height: 1.86;
  text-align: left;
  ruby-position: over;
}
.item .title rt {
  font-size: 0.6em;
}

.singleContent {
  width: 100%;
  margin-top: 100px;
  padding: 48px 5%;
}
.singleContent .contentsInner {
  width: 100%;
  margin: auto;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(232, 232, 222, 0.5);
  padding: 50px 20px;
}
.singleContent .contentsInner .infoContainer {
  padding-top: 60px;
}
.singleContent .contentsInner .infoInner {
  text-align: left;
  margin-bottom: 60px;
}
.singleContent .contentsInner .infoInner:last-of-type {
  margin-bottom: 0;
}
.singleContent .contentsInner .infoInner .infoTitle {
  font-family: "Zen Old Mincho", "Noto Serif KR", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: bold;
  font-style: normal;
  font-size: 1em;
  letter-spacing: 0.05em;
  line-height: 2.1;
  font-size: 1.2em;
  margin-bottom: 16px;
}
.singleContent .contentsInner .infoInner h1 {
  font-family: "YuGothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif, "Noto Sans KR";
  font-weight: normal;
  font-style: normal;
  line-height: 2.47;
  letter-spacing: 0.02em;
  font-size: 1.2em;
}
.singleContent .contentsInner .infoInner .titleTxt {
  font-family: "YuGothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif, "Noto Sans KR";
  font-weight: normal;
  font-style: normal;
  line-height: 2.47;
  letter-spacing: 0.02em;
  font-size: 1em;
  letter-spacing: 0.05em;
  line-height: 2;
}
.singleContent .contentsInner .infoInner .notes {
  font-family: "YuGothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif, "Noto Sans KR";
  font-weight: normal;
  font-style: normal;
  line-height: 2.47;
  letter-spacing: 0.02em;
  font-size: 0.9em;
  margin: 40px auto 0;
}

.mainTxt {
  font-family: "YuGothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif, "Noto Sans KR";
  font-weight: normal;
  font-style: normal;
  line-height: 2.47;
  letter-spacing: 0.02em;
  text-align: left;
  margin-bottom: 60px;
  ruby-position: over;
}
.mainTxt p {
  font-family: "YuGothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif, "Noto Sans KR";
  font-weight: normal;
  font-style: normal;
  line-height: 2.47;
  letter-spacing: 0.02em;
  font-size: 1em;
  letter-spacing: 0.02em;
  line-height: 2em;
  text-align: left;
  margin-bottom: 30px;
}
.mainTxt strong {
  font-weight: bold;
}
.mainTxt rt {
  font-size: 0.6em;
}
.mainTxt .notes {
  font-family: "YuGothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif, "Noto Sans KR";
  font-weight: normal;
  font-style: normal;
  line-height: 2.47;
  letter-spacing: 0.02em;
  font-size: 0.9em;
  margin: 70px auto;
}

.linkContainer {
  width: 100%;
  margin-top: 0;
  margin: 0 auto;
}

.navigation-links {
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  font-family: "Zen Old Mincho", "Noto Serif KR", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  font-size: 0.93em;
  letter-spacing: 0.05em;
}
.navigation-links div {
  width: 140px;
  text-align: center;
}
.navigation-links a {
  text-decoration: none;
  padding: 10px 15px;
  color: #2E231A;
}
.navigation-links a:hover {
  color: #3FD56D;
}
.navigation-links .nav-prev {
  text-align: left;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.navigation-links .nav-prev::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 6px;
  display: inline-block;
  background-color: currentColor;
  /* テキストの色に追随 */
  mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17.2 17.2"><polygon fill="currentColor" points="8.7 17.2 9.4 16.5 1.4 8.5 9.2 .7 8.5 0 0 8.5 8.7 17.2"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17.2 17.2"><polygon fill="currentColor" points="8.7 17.2 9.4 16.5 1.4 8.5 9.2 .7 8.5 0 0 8.5 8.7 17.2"/></svg>');
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
}
.navigation-links .nav-prev:hover {
  color: #3FD56D;
}
.navigation-links .nav-list {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.navigation-links .nav-next {
  text-align: right;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  color: #3e3e3e;
  transition: all 0.2s;
}
.navigation-links .nav-next::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 6px;
  display: inline-block;
  background-color: currentColor;
  /* テキストの色に追随 */
  mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 17.2 17.2"><g id="arrow_right" data-name="arrow_right"><polygon class="arrow" points="8.5 17.2 7.8 16.5 15.8 8.5 8 .7 8.7 0 17.2 8.5 8.5 17.2"/></g></svg>');
  -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 17.2 17.2"><g id="arrow_right" data-name="arrow_right"><polygon class="arrow" points="8.5 17.2 7.8 16.5 15.8 8.5 8 .7 8.7 0 17.2 8.5 8.5 17.2"/></g></svg>');
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
}
.navigation-links .nav-next:hover {
  color: #3FD56D;
}

.aboutContent {
  width: 100%;
  margin-top: 100px;
  padding: 50px 5%;
}
.aboutContent .contentsInner {
  width: 90%;
  margin: auto;
  padding: 0;
  text-align: left;
}
.aboutContent .contentsInner h1 {
  font-family: "YuGothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif, "Noto Sans KR";
  font-weight: bold;
  font-style: normal;
  font-size: 1.06em;
  letter-spacing: 0.08em;
  margin-bottom: 50px;
}
.aboutContent .contentsInner h2 {
  font-family: "Zen Old Mincho", "Noto Serif KR", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  font-size: 1.33em;
  letter-spacing: 0;
  line-height: 2;
  margin-bottom: 50px;
}
.aboutContent .contentsInner h3 {
  font-family: "Zen Old Mincho", "Noto Serif KR", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  font-size: 1.73em;
  letter-spacing: 0;
  line-height: 2.1;
  margin-bottom: 50px;
}
.aboutContent .contentsInner h4.type1 {
  font-family: "YuGothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif, "Noto Sans KR";
  font-weight: bold;
  font-style: normal;
  font-size: 1.06em;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-bottom: 30px;
}
.aboutContent .contentsInner h4.type2 {
  font-family: "YuGothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif, "Noto Sans KR";
  font-weight: normal;
  font-style: normal;
  line-height: 2.47;
  letter-spacing: 0.02em;
  font-size: 1.06em;
  letter-spacing: 0.05em;
  line-height: 2;
}
.aboutContent .contentsInner .bottom80 {
  margin-bottom: 80px;
}
.aboutContent .contentsInner p.introduction {
  font-family: "YuGothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif, "Noto Sans KR";
  font-weight: normal;
  font-style: normal;
  line-height: 2.47;
  letter-spacing: 0.02em;
  font-size: 1.06em;
  letter-spacing: 0.05em;
  line-height: 2;
}
.aboutContent .contentsInner p.linkBlank {
  margin-top: 32px;
  margin-bottom: 70px;
}
.aboutContent .contentsInner p.linkBlank a {
  font-family: "YuGothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif, "Noto Sans KR";
  font-weight: normal;
  font-style: normal;
  line-height: 2.47;
  letter-spacing: 0.02em;
  font-size: 0.86em;
  letter-spacing: 0.05em;
  line-height: 1.84;
  color: #2E231A;
  text-decoration: underline;
  transition: all 0.2s;
}
.aboutContent .contentsInner p.linkBlank a::after {
  content: "";
  width: 14px;
  height: 14px;
  margin-left: 6px;
  display: inline-block;
  background-color: currentColor;
  /* テキストの色に追随 */
  mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M320 0c-17.7 0-32 14.3-32 32s14.3 32 32 32l82.7 0L201.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L448 109.3l0 82.7c0 17.7 14.3 32 32 32s32-14.3 32-32l0-160c0-17.7-14.3-32-32-32L320 0zM80 32C35.8 32 0 67.8 0 112L0 432c0 44.2 35.8 80 80 80l320 0c44.2 0 80-35.8 80-80l0-112c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 112c0 8.8-7.2 16-16 16L80 448c-8.8 0-16-7.2-16-16l0-320c0-8.8 7.2-16 16-16l112 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L80 32z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M320 0c-17.7 0-32 14.3-32 32s14.3 32 32 32l82.7 0L201.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L448 109.3l0 82.7c0 17.7 14.3 32 32 32s32-14.3 32-32l0-160c0-17.7-14.3-32-32-32L320 0zM80 32C35.8 32 0 67.8 0 112L0 432c0 44.2 35.8 80 80 80l320 0c44.2 0 80-35.8 80-80l0-112c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 112c0 8.8-7.2 16-16 16L80 448c-8.8 0-16-7.2-16-16l0-320c0-8.8 7.2-16 16-16l112 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L80 32z"/></svg>');
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
}
.aboutContent .contentsInner p.linkBlank a:hover {
  color: #3FD56D;
}
.aboutContent .contentsInner p {
  font-family: "YuGothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif, "Noto Sans KR";
  font-weight: normal;
  font-style: normal;
  line-height: 2.47;
  letter-spacing: 0.02em;
  font-size: 1em;
  letter-spacing: 0.03em;
  line-height: 2;
}
.aboutContent .contentsInner .border {
  margin: 80px auto;
}
.aboutContent .contentsInner .aboutPicture {
  margin: 60px auto;
  text-align: center;
}
.aboutContent .contentsInner .aboutPicture .aboutLogo img {
  width: 210px;
  height: auto;
  display: block;
  margin: 0 auto 25px;
}
.aboutContent .contentsInner .aboutPicture .aboutLogo figcaption {
  font-family: "YuGothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif, "Noto Sans KR";
  font-weight: normal;
  font-style: normal;
  line-height: 2.47;
  letter-spacing: 0.02em;
  font-size: 0.86em;
  letter-spacing: 0.03em;
  line-height: 1.5;
}

#reading .mainHeader {
  width: 100%;
  margin-top: 100px;
  padding: 48px 5% 0;
}
#reading .mainHeader .titleReading {
  text-align: left;
  margin-bottom: 42px;
}
#reading .mainHeader .titleReading h1 {
  font-family: "YuGothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif, "Noto Sans KR";
  font-weight: bold;
  font-style: normal;
  font-size: 1.06em;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
#reading .mainHeader .titleReading p {
  font-family: "YuGothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif, "Noto Sans KR";
  font-weight: normal;
  font-style: normal;
  line-height: 2.47;
  letter-spacing: 0.02em;
  font-size: 0.86em;
  letter-spacing: 0.03em;
  line-height: 1.86;
}
#reading .mainHeader .readNavSp {
  padding: 0;
  margin: 0 auto 35px;
}
#reading .mainHeader ul.menuList {
  max-width: 350px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
#reading .mainHeader .sortOrder {
  display: flex;
  justify-content: center;
}
#reading .mainHeader .sortOrder li {
  margin-bottom: 0;
}
#reading .mainHeader ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#reading .mainHeader ul li {
  font-family: "YuGothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif, "Noto Sans KR";
  font-weight: normal;
  font-style: normal;
  line-height: 2.47;
  letter-spacing: 0.02em;
  font-size: 0.85em;
  letter-spacing: 0;
  line-height: 1;
  padding: 0;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
#reading .mainHeader ul li a {
  padding: 10px;
  text-decoration: none;
  color: #2E231A;
  background-color: #fff;
  border: 1px solid #C4C4C4;
  transition: all 0.2s;
}
#reading .mainHeader ul li a:hover {
  color: #3FD56D;
}
#reading .mainHeader ul li.on a {
  color: #F4F4EF;
  background-color: #2E231A;
  border: 1px solid #2E231A;
  font-weight: bold;
}
#reading .mainHeader ul li.on a:hover {
  color: #3FD56D;
}
#reading .mainHeader ul.sortOrder li {
  padding: 0 5px;
}
#reading .mainHeader ul.sortOrder li a {
  color: #717171;
}
#reading .mainHeader ul.sortOrder li a:hover {
  color: #3FD56D;
}
#reading .mainHeader ul.sortOrder li::after {
  margin-left: 12px;
}
#reading .mainHeader ul.sortOrder li.on a {
  color: #F4F4EF;
  background-color: #2E231A;
  border: 1px solid #2E231A;
  font-weight: bold;
}
#reading .mainHeader ul.sortOrder li.on a:hover {
  color: #3FD56D;
}
#reading .mainHeader ul.sortOrder li.asc a {
  display: flex;
  align-items: end;
}
#reading .mainHeader ul.sortOrder li.asc a::before {
  content: "";
  width: 25px;
  height: 14px;
  margin-right: 8px;
  display: inline-block;
  background-color: currentColor;
  /* テキストの色に追随 */
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="26.921" height="14" viewBox="0 0 26.921 14"><defs><style>.cls-1{fill:%23272727;}</style></defs><path id="all" data-name="all" class="cls-1" d="M3.4,14l-.045,0a.5.5,0,0,1-.493-.416L.124,10.458A.5.5,0,1,1,.876,9.8l1.983,2.26L2.855.5a.5.5,0,0,1,1,0l0,11.661,1.8-2.337a.5.5,0,0,1,.793.61l-2.6,3.371A.5.5,0,0,1,3.473,14H3.457Zm7.623-1.708a.5.5,0,0,1,0-1H26.42a.5.5,0,1,1,0,1Zm0-5.132a.5.5,0,1,1,0-1H23.342a.5.5,0,1,1,0,1Zm0-5.131a.5.5,0,0,1,0-1h7.184a.5.5,0,0,1,0,1Z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="26.921" height="14" viewBox="0 0 26.921 14"><defs><style>.cls-1{fill:%23272727;}</style></defs><path id="all" data-name="all" class="cls-1" d="M3.4,14l-.045,0a.5.5,0,0,1-.493-.416L.124,10.458A.5.5,0,1,1,.876,9.8l1.983,2.26L2.855.5a.5.5,0,0,1,1,0l0,11.661,1.8-2.337a.5.5,0,0,1,.793.61l-2.6,3.371A.5.5,0,0,1,3.473,14H3.457Zm7.623-1.708a.5.5,0,0,1,0-1H26.42a.5.5,0,1,1,0,1Zm0-5.132a.5.5,0,1,1,0-1H23.342a.5.5,0,1,1,0,1Zm0-5.131a.5.5,0,0,1,0-1h7.184a.5.5,0,0,1,0,1Z"/></svg>');
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
}
#reading .mainHeader ul.sortOrder li.desc a {
  display: flex;
  align-items: end;
}
#reading .mainHeader ul.sortOrder li.desc a::before {
  content: "";
  width: 25px;
  height: 14px;
  margin-right: 8px;
  display: inline-block;
  background-color: currentColor;
  /* テキストの色に追随 */
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="26.921" height="14" viewBox="0 0 26.921 14"><defs><style>.cls-1{fill:%23272727;}</style></defs><path id="all" data-name="all" class="cls-1" d="M3.4,14l-.045,0a.5.5,0,0,1-.493-.416L.124,10.458A.5.5,0,1,1,.876,9.8l1.982,2.26L2.855.5a.5.5,0,0,1,1,0l0,11.661,1.8-2.337a.5.5,0,0,1,.793.61l-2.6,3.371A.5.5,0,0,1,3.473,14H3.457Zm7.623-1.708a.5.5,0,0,1,0-1h7.184a.5.5,0,0,1,0,1Zm0-5.132a.5.5,0,1,1,0-1H23.342a.5.5,0,1,1,0,1Zm0-5.131a.5.5,0,0,1,0-1H26.421a.5.5,0,0,1,0,1Z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="26.921" height="14" viewBox="0 0 26.921 14"><defs><style>.cls-1{fill:%23272727;}</style></defs><path id="all" data-name="all" class="cls-1" d="M3.4,14l-.045,0a.5.5,0,0,1-.493-.416L.124,10.458A.5.5,0,1,1,.876,9.8l1.982,2.26L2.855.5a.5.5,0,0,1,1,0l0,11.661,1.8-2.337a.5.5,0,0,1,.793.61l-2.6,3.371A.5.5,0,0,1,3.473,14H3.457Zm7.623-1.708a.5.5,0,0,1,0-1h7.184a.5.5,0,0,1,0,1Zm0-5.132a.5.5,0,1,1,0-1H23.342a.5.5,0,1,1,0,1Zm0-5.131a.5.5,0,0,1,0-1H26.421a.5.5,0,0,1,0,1Z"/></svg>');
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
}
#reading .grid {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 10%;
}
#reading .grid h3 {
  font-size: 1.13em;
  line-height: 1.8;
  text-align: justify;
}
#reading .grid .name {
  font-family: "YuGothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif, "Noto Sans KR";
  font-weight: normal;
  font-style: normal;
  line-height: 2.47;
  letter-spacing: 0.02em;
  font-size: 1em;
  letter-spacing: 0.05em;
  line-height: 2.6;
  text-align: left;
  margin-top: 30px;
}
#reading h2.sortTitle {
  width: 80%;
  margin: 50px auto 20px;
  padding: 0;
  font-family: "Zen Old Mincho", "Noto Serif KR", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  text-align: center;
  font-size: 1.73em;
}
#reading h2.sortTitle span {
  font-size: 0.69em;
  letter-spacing: 0.05em;
}/*# sourceMappingURL=base_sp.css.map */