@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+TC:wght@100..900&display=swap");
:root {
  /* color */
  --BGVIEW: #ffffffa8;
  --DFC: #323151;
  --G00: #FFFFFF;
  --G100: #EEEEEE;
  --G300: #DDDDDD;
  --G500: #888888;
  --G700: #777777;
  --G900: #333333;
  --PFC: #DBCAB2;
  --PSC: #9A6D3B;
  --SFC: #70809D;
  /* font-size */
  --DD1: 48px;
  --DD2: 40px;
  --DH1: 32px;
  --DH2: 28px;
  --DH3: 20px;
  --DP1: 20px;
  --DP2: 18px;
  --DP3: 16px;
  --MD1: 40px;
  --MD2: 32px;
  --MH1: 28px;
  --MH2: 24px;
  --MH3: 16px;
  --MP1: 18px;
  --MP2: 16px;
  --MP3: 14px;
}

html {
  overflow: hidden;
}

body {
  color: var(--G900);
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif !important;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: normal;
}
body .switch > input[type=checkbox],
body .switch > input[type=radio] {
  display: none;
}
body .font-nb {
  font-family: "Inter", sans-serif !important;
}

/* scrollbar Style */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

::-webkit-scrollbar-track {
  background-color: transparent;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

::-webkit-scrollbar-thumb {
  background-color: var(--G500);
  border-radius: 2px !important;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

/* Setting for Header */
header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: start;
  width: 100dvw;
  height: 80px;
  padding: 0 16px;
  box-sizing: border-box;
  background-color: var(--PFC);
  overflow: hidden;
}
header .logo {
  display: flex;
  align-items: center;
  height: auto;
  width: 40%;
  max-width: 260px;
  margin: 0 auto;
}
header .logo img {
  width: 100%;
}
header nav {
  position: absolute;
  right: 16px;
  transform: translateY(76px);
  z-index: -1;
  width: 100%;
  max-width: 260px;
  height: -moz-fit-content;
  height: fit-content;
  overflow: visible;
  opacity: 0;
}
header nav ul {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 1px solid var(--G500);
  background-color: var(--G00);
}
header nav ul li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0 1rem;
  border-top: 1px solid var(--G500);
  transition: ease 0.35s;
  cursor: pointer;
}
header nav ul li:first-child {
  border-top: none;
}
header nav ul li a {
  position: absolute;
  inset: 0;
  z-index: 1;
  color: var(--G900);
  font-size: 20px;
  text-align: center;
  line-height: 70px;
}
header nav ul li:hover {
  z-index: 5;
  color: var(--DFC) !important;
  background-color: var(--PSC);
}
header nav ul li:hover a {
  color: var(--G00);
}

footer {
  padding: 0 1rem;
  box-sizing: border-box;
  border-top: 1px solid var(--G700);
  background-color: var(--G00);
}
footer > div {
  display: flex;
  flex-direction: column;
}
footer > div small {
  margin: 24px 0 40px;
  text-align: center;
  font-size: var(--MP3);
}
footer > div .link-list {
  display: flex;
  justify-content: center;
  gap: 44px;
}
footer > div .link-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0 0 1.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 25px;
  transition: ease 0.5s;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: ease 0.5s;
}
footer > div .link-list a.facebook {
  background-image: url(../images/img_fb_d.png);
}
footer > div .link-list a.facebook:hover {
  background-image: url(../images/img_fb_h.png);
}
footer > div .link-list a.instagram {
  background-image: url(../images/img_ig_d.png);
}
footer > div .link-list a.instagram:hover {
  background-image: url(../images/img_ig_h.png);
}
footer > div .link-list a.line {
  background-image: url(../images/img_line_d.png);
}
footer > div .link-list a.line:hover {
  background-image: url(../images/img_line_h.png);
}

main {
  position: relative;
  z-index: 5;
  height: calc(100dvh - 80px);
  max-height: 100dvh;
  padding: 0 0 0;
  background-image: url(../images/img_bg_01_m.jpg);
  background-size: 100dvw auto;
  background-position: center bottom -60px;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow-x: hidden;
  overflow-y: auto;
  /* control setting */
}
main .switch {
  display: none;
}
main .key-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100dvw;
  margin: 0 0 2rem;
  padding: 0 1rem;
  box-sizing: border-box;
}
main .key-visual .img-wrap {
  width: 100dvw;
  margin: 0 0 1.5rem;
}
main .key-visual .img-wrap .title {
  position: absolute;
  z-index: -1;
  font-size: var(--H1);
  font-weight: 700;
  opacity: 0;
}
main .key-visual .img-wrap picture {
  width: 100%;
}
main .key-visual .img-wrap picture img {
  width: 100%;
}
main .key-visual .text-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1728px;
  padding: 1rem;
  background-color: var(--PFC);
  border: 1px solid var(--G900);
  border-radius: 20px;
}
main .key-visual .text-wrap .subtitle {
  margin: 0 0 1rem;
  text-align: center;
  font-size: var(--MD1);
  font-weight: 900;
}
main .key-visual .text-wrap p, main .key-visual .text-wrap strong {
  display: block;
  font-size: var(--MH3);
  font-weight: 700;
}
main .key-visual .text-wrap strong {
  text-align: right;
  text-wrap: nowrap;
  margin: 1.5rem 0 0;
}
main .key-visual .text-wrap strong::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  margin: 0 0 0 0.5rem;
  background: url(../images/img_panda.png) no-repeat center;
  background-size: cover;
}
main .key-visual .text-wrap ol {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
main .key-visual .text-wrap ol li p {
  position: relative;
  padding: 0 0 0 2.5rem;
  box-sizing: border-box;
  letter-spacing: 2px;
  font-size: var(--MH2);
}
main .key-visual .text-wrap ol li p::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(-2.5rem, -50%);
  width: 24px;
  height: 24px;
  background: url("../images/icon_point.png") no-repeat;
  background-size: 24px 24px;
}
main nav {
  position: sticky;
  top: 0;
  transform: translateX(-1rem);
  z-index: 5;
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100dvw;
  margin: 0 0 0 1rem;
  padding: 1rem 1rem 1.5rem;
  box-sizing: border-box;
  box-shadow: 0px 0px 1px var(--G700);
  background-color: var(--G00);
  border-bottom: 8px solid transparent;
  overflow-x: auto;
  scrollbar-width: auto;
}
main nav::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
main nav::-webkit-scrollbar-track {
  background-color: var(--G300);
}
main nav::-webkit-scrollbar-thumb {
  background-color: var(--G900);
  border-radius: 16px !important;
}
main nav ul {
  display: flex;
  justify-content: start;
  gap: 0.25rem;
  width: -moz-max-content;
  width: max-content;
  height: 60px;
}
main nav ul li {
  position: relative;
  display: flex;
  flex: 1;
  width: -moz-max-content;
  width: max-content;
  padding: 0 1.5rem;
  box-sizing: border-box;
  text-align: center;
  line-height: 58px;
  border-radius: 50px;
  border: 1px solid var(--G500);
  transition: ease 0.35s;
  background-color: var(--G00);
}
main nav ul li label {
  position: relative;
  cursor: pointer;
}
main nav ul li label span {
  padding-left: 2rem;
  font-size: var(--DH2);
  font-weight: 700;
}
main nav ul li label::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
}
main nav ul li label[for=tab_1]::before {
  background-image: url(../images/icon_tab1.png);
}
main nav ul li label[for=tab_2]::before {
  background-image: url(../images/icon_tab2.png);
}
main nav ul li label[for=tab_3]::before {
  background-image: url(../images/icon_tab3.png);
}
main nav ul li label[for=tab_4]::before {
  background-image: url(../images/icon_tab4.png);
}
main nav ul li label[for=tab_5]::before {
  background-image: url(../images/icon_tab5.png);
}
main nav ul li label[for=tab_6]::before {
  background-image: url(../images/icon_tab6.png);
}
main nav ul li:has(label:hover) {
  background-color: var(--PFC);
}
main .content {
  display: none;
  margin: 0 0 140px;
}
main .content .msg-wrap p {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 40px 1rem;
  font-size: var(--MH2);
  font-weight: 700;
}
main .content .text-wrap {
  flex-wrap: wrap;
  width: calc(100% - 2rem);
  max-width: 1728px;
  margin: 1rem;
  padding: 1rem;
  box-sizing: border-box;
  border: 1px solid var(--G700);
  border-radius: 20px;
  background-color: var(--G00);
  scroll-margin: 80px;
  overflow-x: auto;
}
main .content .text-wrap:has(.bookwall) > h3 {
  position: relative;
  margin-bottom: 2rem;
  font-size: var(--MD1);
  font-weight: 700;
}
main .content .text-wrap:has(.bookwall) > h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(1rem);
  width: 100%;
  height: 1px;
  background-color: var(--G900);
}
main .content .text-wrap:has(.bookwall) .txt p {
  font-size: var(--DH3);
}
main .content .text-wrap:has(.bookwall) .bookwall {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: auto;
  scroll-behavior: smooth;
}
main .content .text-wrap:has(.bookwall) .bookwall::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
main .content .text-wrap:has(.bookwall) .bookwall::-webkit-scrollbar-track {
  background-color: var(--G300);
}
main .content .text-wrap:has(.bookwall) .bookwall::-webkit-scrollbar-thumb {
  background-color: var(--G900);
  border-radius: 16px !important;
}
main .content .text-wrap:has(.bookwall) .bookwall ul {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  padding: 0 0 2rem 0;
}
main .content .text-wrap:has(.bookwall) .bookwall ul li.book-wrap {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  padding: 1rem;
  transition: ease 0.35s;
}
main .content .text-wrap:has(.bookwall) .bookwall ul li.book-wrap > a {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  text-align: center;
  cursor: pointer;
}
main .content .text-wrap:has(.bookwall) .bookwall ul li.book-wrap > span {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--G700);
  background-color: var(--PFC);
  font-size: 20px;
  font-weight: 700;
}
main .content .text-wrap:has(.bookwall) .bookwall ul li.book-wrap img {
  width: 100%;
  max-width: 150px;
}
main .content .text-wrap:has(.bookwall) .bookwall ul li.book-wrap p.book-title {
  display: -webkit-box;
  max-width: 150px;
  margin: 0 0 0 0;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: var(--MP1);
}
main .content .text-wrap:has(.bookwall) .bookwall ul li.book-wrap:hover {
  background-color: var(--PFC);
}
main .content .text-wrap:has(p.link) .txt p a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 48px;
  padding: 0 1rem;
  border: 1px solid var(--G900);
  border-radius: 32px;
}
main .content .text-wrap:has(p.link) .txt p a::after {
  content: "";
  width: 24px;
  height: 24px;
  margin: 0 0 0 0.5rem;
  background: url(../images/icon_arrpw.png) no-repeat center;
  background-size: 24px 24px;
}
main .content .text-wrap .txt {
  flex: 0 0 auto;
}
main .content .text-wrap .txt h3 {
  position: relative;
  margin-bottom: 2rem;
  font-size: var(--MD1);
  font-weight: 900;
}
main .content .text-wrap .txt h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(1rem);
  width: 100%;
  height: 1px;
  background-color: var(--G900);
}
main .content .text-wrap .txt p {
  width: 100%;
  margin: 0 0 1rem;
  font-size: var(--MH3);
  font-weight: 700;
  transition: ease 0.35s;
}
main .content .text-wrap .txt p span {
  color: var(--SFC);
  font-size: var(--MH3);
  font-weight: 900;
}
main .content .text-wrap .txt p strong {
  position: relative;
  display: block;
  padding-left: 1.5rem;
  font-size: var(--MH3);
  font-weight: 700;
}
main .content .text-wrap .txt p strong::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--G900);
}
main .content .text-wrap .txt p.link {
  display: flex;
  align-items: center;
  height: 48px;
  gap: 0.5rem;
}
main .content .text-wrap .txt p.link a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--G900);
  font-size: var(--MH3);
  font-weight: 700;
  transition: ease 0.35s;
}
main .content .text-wrap .txt p.link a:hover {
  color: var(--SFC);
}
main .content .text-wrap .img {
  flex: 1;
}
main .content .text-wrap .img img {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
main .content .sction-title {
  margin: 80px 0 0;
  text-align: center;
  font-size: var(--DD1);
  font-weight: 700;
}
main .content .iframe-wrap {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-wrap: nowrap;
  gap: 1rem;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 40px 1rem 0;
  overflow-x: auto;
}
main .content .iframe-wrap > div {
  flex: 0 0 auto;
  width: 100%;
  max-width: 220px;
  max-height: 514px;
  margin: 0 auto 2rem;
  overflow: hidden;
}
main .content .iframe-wrap > div iframe {
  width: 100% !important;
  min-width: inherit !important;
}
main .content .iframe-wrap > div iframe html {
  width: 100% !important;
}
main .content.nav2 .text-wrap .txt p:not(.link) {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
}
main .content.nav4 .text-wrap {
  display: flex;
  flex-direction: column;
}
main .content.nav4 .text-wrap .txt {
  max-height: 220px;
  overflow: hidden;
}
main .content.nav4 .text-wrap .txt > input[type=checkbox] {
  display: none;
}
main .content.nav4 .text-wrap .txt h3 {
  font-size: var(--MH2);
}
main .content.nav4 .text-wrap .txt h3 span {
  display: inline-flex;
  vertical-align: middle;
  width: 64px;
  height: 64px;
  margin: 0 0.5rem 0 0;
  border-radius: 32px;
  overflow: hidden;
}
main .content.nav4 .text-wrap label {
  display: flex;
  cursor: pointer;
  margin: 0;
  font-size: var(--MH3);
  font-weight: 700;
}
main .content.nav4 .text-wrap label::before {
  content: "Read more";
  border-bottom: 2px solid var(--G900);
  transition: ease 0.35s;
}
main .content.nav4 .text-wrap label:hover::before {
  color: var(--SFC);
  border-bottom: 2px solid var(--SFC);
}
main .content.nav4 .text-wrap .img {
  text-align: center;
}
main .content.nav4 .text-wrap .img a {
  display: block;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  margin: 0 auto;
  padding: 1rem;
  color: var(--G900);
  transition: ease 0.35s;
}
main .content.nav4 .text-wrap .img a:hover {
  background-color: var(--PFC);
}
main .content.nav4 .text-wrap .img img {
  width: 100%;
  max-width: 150px;
}
main .content.nav4 .text-wrap .img p.book-title {
  display: -webkit-box;
  max-width: 150px;
  margin: 0 auto 0.5rem;
  font-size: var(--DP1);
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
main .content.nav4 .text-wrap:has(.link) .txt {
  max-height: 100%;
}
main .content.nav4 .text-wrap:has(input[type=checkbox]:checked) .txt {
  max-height: 100%;
}
main .content.nav4 .text-wrap:has(input[type=checkbox]:checked) label::before {
  content: "See less";
}
main .content.nav3 .text-wrap:has(.bookwall) .txt > h3::after, main .content.nav4 .text-wrap:has(.bookwall) .txt > h3::after, main .content.nav5 .text-wrap:has(.bookwall) .txt > h3::after, main .content.nav6 .text-wrap:has(.bookwall) .txt > h3::after {
  display: none;
}
main:has(.switch #tab_1:checked) nav ul li.hot-issue {
  background-color: var(--PFC);
}
main:has(.switch #tab_1:checked) .nav1 {
  display: block;
}
main:has(.switch #tab_2:checked) {
  background-image: url(../images/img_bg_02_m.jpg);
}
main:has(.switch #tab_2:checked) nav ul li.highlight {
  background-color: var(--PFC);
}
main:has(.switch #tab_2:checked) .nav2 {
  display: block;
}
main:has(.switch #tab_3:checked) nav ul li.ranking {
  background-color: var(--PFC);
}
main:has(.switch #tab_3:checked) .nav3 {
  display: block;
}
main:has(.switch #tab_4:checked) {
  background-image: url(../images/img_bg_02_m.jpg);
}
main:has(.switch #tab_4:checked) nav ul li.social {
  background-color: var(--PFC);
}
main:has(.switch #tab_4:checked) .nav4 {
  display: block;
}
main:has(.switch #tab_5:checked) nav ul li.incredible {
  background-color: var(--PFC);
}
main:has(.switch #tab_5:checked) .nav5 {
  display: block;
}
main:has(.switch #tab_6:checked) {
  background-image: url(../images/img_bg_02_m.jpg);
}
main:has(.switch #tab_6:checked) nav ul li.coming-soon {
  background-color: var(--PFC);
}
main:has(.switch #tab_6:checked) .nav6 {
  display: block;
}

@media screen and (min-width: 769px) {
  footer {
    height: -moz-fit-content;
    height: fit-content;
    padding: 0 2rem;
    box-sizing: border-box;
  }
  footer > div {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  footer > div small {
    font-size: var(--DP3);
  }
  footer > div small br {
    display: none;
  }
  footer > div .link-list a {
    margin: 0;
  }
  main {
    background-image: url(../images/img_bg_01_p.jpg);
    /* control setting */
  }
  main .key-visual {
    padding: 0 1.5rem;
  }
  main .key-visual .text-wrap p, main .key-visual .text-wrap strong {
    font-size: var(--DH3);
  }
  main .key-visual .text-wrap:has(.subtitle) {
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: 1rem;
  }
  main .key-visual .text-wrap:has(.subtitle) .subtitle {
    font-size: var(--DD1);
  }
  main .key-visual .text-wrap:has(.subtitle) ol li p {
    font-size: var(--DH2);
  }
  main nav ul {
    height: 66px;
    margin: 0 auto;
  }
  main nav ul li label::before {
    background-size: 32px;
  }
  main nav ul li label span {
    padding-left: 2.5rem;
  }
  main .content .msg-wrap p {
    font-size: var(--DH2);
  }
  main .content .text-wrap {
    margin: 1rem auto;
    padding: 1rem 2rem;
  }
  main .content .text-wrap .txt h3 {
    font-size: var(--DD1);
  }
  main .content .text-wrap .txt p {
    font-size: var(--DH3);
  }
  main .content .text-wrap .txt p span {
    font-size: var(--DH3);
  }
  main .content .text-wrap .txt p.link {
    height: 54px;
  }
  main .content .text-wrap .txt p.link a {
    width: -moz-max-content;
    width: max-content;
    padding: 0 1.5rem;
    border: 1px solid var(--G700);
    border-radius: 50px;
    background-color: var(--G00);
    line-height: 54px;
    font-size: var(--DH3);
  }
  main .content .text-wrap .txt p.link a::after {
    content: "";
    width: 24px;
    height: 24px;
    margin-left: 0.5rem;
    background: url("../images/icon_arrpw.png") no-repeat;
    background-size: 24px 24px;
  }
  main .content .text-wrap .txt p.link a:hover {
    color: var(--G900);
    background-color: var(--PFC);
  }
  main .content .text-wrap:has(.bookwall) .bookwall ul li.book-wrap img {
    max-width: 300px;
  }
  main .content .text-wrap:has(.bookwall) .bookwall ul li.book-wrap > span {
    width: 60px;
    height: 60px;
    font-size: 32px;
  }
  main .content .text-wrap:has(.bookwall) .bookwall ul li.book-wrap p.book-title {
    max-width: 300px;
    font-size: var(--DP1);
  }
  main .content .text-wrap:has(p.link) .txt p a {
    width: -moz-max-content;
    width: max-content;
    height: 54px;
    line-height: 54px;
  }
  main .content .iframe-wrap {
    max-width: calc(1200px + 2rem + 80px);
    margin: 0 auto;
  }
  main .content .iframe-wrap > div {
    max-width: 400px;
    max-height: 636px;
  }
  main .content.nav4 .text-wrap {
    position: relative;
    display: flex;
    gap: 1.5rem;
    min-height: 534px;
  }
  main .content.nav4 .text-wrap .txt {
    max-width: calc(100% - 332px);
    max-height: 334px;
  }
  main .content.nav4 .text-wrap .txt h3 {
    font-size: var(--DH2);
  }
  main .content.nav4 .text-wrap .txt h3 span {
    width: 120px;
    height: 120px;
    border-radius: 60px;
  }
  main .content.nav4 .text-wrap .txt p {
    margin: 0;
    font-size: var(--DH3);
  }
  main .content.nav4 .text-wrap .txt p span {
    font-size: var(--DH3);
  }
  main .content.nav4 .text-wrap .txt p.link {
    margin-top: 0;
  }
  main .content.nav4 .text-wrap label {
    display: none;
    margin: 0;
    font-size: var(--DH3);
  }
  main .content.nav4 .text-wrap label.active {
    display: flex;
    height: 32px;
  }
  main .content.nav4 .text-wrap .img {
    position: absolute;
    right: 16px;
  }
  main .content.nav4 .text-wrap .img img {
    max-width: 300px;
  }
  main .content.nav4 .text-wrap .img p.book-title {
    max-width: 280px;
  }
  main .content.nav4 .text-wrap:has(p.link) .txt {
    max-height: inherit;
  }
  main:has(.switch #tab_2:checked), main:has(.switch #tab_4:checked), main:has(.switch #tab_6:checked) {
    background-image: url(../images/img_bg_02_p.jpg);
  }
}
@media screen and (min-width: 1280px) {
  footer {
    padding: 0 192px;
  }
  footer > div {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  footer > div small {
    width: -moz-max-content;
    width: max-content;
    margin: 24px 0;
  }
  footer > div small br {
    display: none;
  }
  footer > div .link-list a {
    margin: 0;
  }
  main {
    background-image: url(../images/img_bg_01_d.jpg);
    /* control setting */
  }
  main .key-visual .text-wrap:has(.subtitle) .subtitle {
    min-width: 512px;
  }
  main .content .text-wrap {
    display: flex;
    gap: 1rem;
    max-width: 1728px;
    margin: 40px auto;
    padding: 1rem 2rem;
  }
  main .content .text-wrap:has(.bookwall) {
    display: block;
  }
  main .content .text-wrap:has(.bookwall) .txt {
    max-width: inherit;
  }
  main .content .text-wrap:has(.bookwall) .bookwall ul li.book-wrap img {
    max-width: 300px;
  }
  main .content .text-wrap:has(.bookwall) .bookwall ul li.book-wrap p.book-title {
    max-width: 300px;
  }
  main .content .text-wrap .txt {
    max-width: 40%;
  }
  main .content .text-wrap .txt p {
    font-size: var(--DH3);
  }
  main .content .text-wrap .txt p strong {
    font-size: var(--DH3);
  }
  main .content .text-wrap.reverse {
    flex-direction: row-reverse;
  }
  main .content.nav4 .text-wrap .txt p {
    line-clamp: 30;
    -webkit-line-clamp: 30;
  }
  main:has(.switch #tab_2:checked), main:has(.switch #tab_4:checked), main:has(.switch #tab_6:checked) {
    background-image: url(../images/img_bg_02_d.jpg);
  }
}/*# sourceMappingURL=public.css.map */