/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers
*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: #292828;
}

#site-header {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  width: 100%;
  height: 100px;
  position: sticky;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 10000;
  border-bottom: 1px solid #DCDCDC;
  -webkit-transition: height 0.3s;
  transition: height 0.3s;
}
#site-header.scrolled {
  height: 60px;
}
#site-header .inner {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding: 0 50px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
}
#site-header .site-logo {
  width: 208px;
}
#site-header .site-logo a {
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
#site-header #menu-opener {
  display: none;
  width: 32px;
  height: 19px;
}
#site-header #menu-opener > a {
  display: block;
  width: 32px;
  height: 19px;
  position: relative;
}
#site-header #menu-opener > a::before, #site-header #menu-opener > a::after {
  display: block;
  content: "";
  width: 32px;
  height: 3px;
  background: #292828;
  position: absolute;
  left: 0;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
#site-header #menu-opener > a::before {
  top: 0px;
}
#site-header #menu-opener > a::after {
  top: 16px;
}
#site-header #menu-opener > a > span {
  display: block;
  width: 32px;
  height: 3px;
  background: #292828;
  position: absolute;
  top: 8px;
  left: 50%;
  translate: -50% 0;
  rotate: 0;
  -webkit-transition: rotate 0.3s;
  transition: rotate 0.3s;
}
#site-header #menu-opener.opened > a::before, #site-header #menu-opener.opened > a::after {
  opacity: 0;
}
#site-header #menu-opener.opened > a > span:first-child {
  rotate: 45deg;
}
#site-header #menu-opener.opened > a > span:last-child {
  rotate: -45deg;
}
#site-header #menu-opener.opened + nav {
  top: 68px;
  opacity: 1;
  -webkit-transition: top 0.3s, opacity 0.3s 0.2s;
  transition: top 0.3s, opacity 0.3s 0.2s;
}
#site-header nav .navi-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}
#site-header nav .navi-list a {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
#site-header nav aside {
  display: none;
}
#site-header nav aside > section {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 25px;
}
#site-header nav aside > section h3 {
  font-size: 14px;
}
#site-header nav aside > section .category-list {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#site-header nav aside > section .category-list > li {
  width: calc(50% - 5px);
}
#site-header nav aside > section .category-list > li a {
  font-size: 14px;
}
#site-header nav aside > section .category-list > li a::after {
  display: none;
}
#site-header nav aside > section .tag-list {
  gap: 15px;
}
#site-header.scrolled #menu-opener.opened + nav {
  top: 50px;
  height: calc(100vh - 50px);
}

#main-container {
  -webkit-padding-after: 180px;
  padding-block-end: 180px;
}

#contact-area {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  gap: 30px;
  padding: 0 20px 40px;
}
#contact-area .contact-container {
  width: calc(50% - 15px);
  max-width: 500px;
  -webkit-filter: drop-shadow(4px 4px 30px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(4px 4px 30px rgba(0, 0, 0, 0.1));
  display: -webkit-box;
  display: flex;
}
#contact-area .contact-container a {
  padding: 30px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-clip-path: polygon(0 40px, 40px 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
  clip-path: polygon(0 40px, 40px 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
  background: #fff;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
#contact-area .contact-container a .genre {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
}
#contact-area .contact-container a .genre strong {
  padding: 0 4px 8px;
  border-bottom: 2px solid #FCCC7B;
}
#contact-area .contact-container a .address {
  -webkit-margin-before: 30px;
  margin-block-start: 30px;
  text-align: center;
  font-family: "Afacad", sans-serif;
  font-size: 18px;
}
#contact-area .contact-container a .desc {
  -webkit-margin-before: 30px;
  margin-block-start: 30px;
  line-height: 1.5;
  font-size: 14px;
  -webkit-box-flex: 1;
  flex-grow: 1;
}
#contact-area .contact-container a .time {
  -webkit-margin-before: 10px;
  margin-block-start: 10px;
  line-height: 1.5;
  font-size: 14px;
}

#site-footer {
  padding: 75px 20px;
  background: #f2f2f2;
}
#site-footer .footer-inner {
  max-width: 1140px;
  margin: auto;
  gap: 30px 0;
}
#site-footer .footer-upper {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-margin-after: 30px;
  margin-block-end: 30px;
}
#site-footer .footer-upper .footer-logo-area {
  max-width: 248px;
}
#site-footer .footer-upper .footer-logo-area .logo {
  -webkit-margin-after: 22px;
  margin-block-end: 22px;
}
#site-footer .footer-upper .footer-logo-area .logo img {
  width: 100%;
}
#site-footer .footer-upper .footer-logo-area .contact-area .subtitle {
  line-height: 1;
  border-top: 1px dashed #292828;
  border-bottom: 1px dashed #292828;
  padding: 3px 2px;
  -webkit-margin-after: 16px;
  margin-block-end: 16px;
  font-weight: bold;
  font-size: 14px;
}
#site-footer .footer-upper .footer-logo-area .contact-area .contact-info {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 14px;
  font-size: 15px;
}
#site-footer .footer-lower {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
#site-footer .footer-navi .navi-list {
  display: -webkit-box;
  display: flex;
  gap: 35px;
  font-size: 14px;
  line-height: 1.3;
}
#site-footer .footer-navi .navi-list a {
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
#site-footer .copyright {
  font-size: 12px;
}

.posts-area {
  width: 100%;
  max-width: 1140px;
  padding: 80px 20px 0;
  margin: auto;
}
.posts-area.narrow-width {
  max-width: 790px;
}
.posts-area .posts-container {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  gap: 50px;
  position: relative;
}
.posts-area .posts-container .post-list-block,
.posts-area .posts-container .post-single {
  width: 68.18%;
  max-width: 750px;
  position: relative;
}
.posts-area .posts-container .post-list-block.page-single,
.posts-area .posts-container .post-single.page-single {
  width: 100%;
  max-width: none;
}
.posts-area .posts-container .side-bar-container {
  width: 27.27%;
  max-width: 300px;
  height: 100%;
  font-size: 14px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 50px;
  position: sticky;
  top: 120px;
  -webkit-padding-after: 30px;
  padding-block-end: 30px;
}
.posts-area .posts-container .side-bar-container .sidebar-block {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 25px;
}
.posts-area .posts-container .side-bar-container .category-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 10px;
}
.posts-area .posts-container .side-bar-container .tag-list {
  gap: 15px 10px;
}
.posts-area .list-container .post-list {
  border-top: 1px solid #DCDCDC;
}
.posts-area .list-container .post-list > li {
  border-bottom: 1px solid #DCDCDC;
}
.posts-area .list-container .post-list > li dl {
  display: -webkit-box;
  display: flex;
  gap: 20px;
}
.posts-area .list-container .post-list > li dl dt {
  width: 122px;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  color: #AAA;
  font-size: 14px;
  padding-top: 2px;
}
.posts-area .list-container .post-list > li a, .posts-area .list-container .post-list > li span {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: end;
  align-items: flex-end;
  padding: 16px 20px 16px 0;
  gap: 10px;
}
.posts-area .list-container .post-list > li a[target=_blank]::after, .posts-area .list-container .post-list > li span[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="17" height="18" viewBox="0 0 17 18" fill="none"><path d="M5.84473 4.10742H2V15.5H13.3926V11.7783H15.3926V17.5H0V2.10742H5.84473V4.10742ZM17 9H15V3.91602L7.60156 11.3145L6.1875 9.90039L13.5879 2.5H8.5V0.5H17V9Z" fill="%23FCCC7B"/></svg>') no-repeat;
}

.f-min, #main-container.home .intro-area .inner .left-container .text h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}

.f-jost {
  font-family: "Jost", sans-serif;
  font-weight: 700;
}

.f-afacad {
  font-family: "Afacad", sans-serif;
}

.f-afacad-500, .section-title span {
  font-family: "Afacad", sans-serif;
  font-weight: 500;
}

.f-afacad-600 {
  font-family: "Afacad", sans-serif;
  font-weight: 600;
}

.f-afacad-700 {
  font-family: "Afacad", sans-serif;
  font-weight: 700;
}

.f-xs {
  font-size: 10px;
}

.f-s {
  font-size: 12px;
}

.f-m {
  font-size: 14px;
}

.f-l {
  font-size: 20px;
}

.f-xl {
  font-size: 24px;
}

.f-xxl {
  font-size: 28px;
}

.has-triangle::after {
  content: "";
  display: block;
  position: absolute;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 0);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.section-title {
  line-height: 1;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 28px;
  -webkit-margin-after: 40px;
  margin-block-end: 40px;
}
.section-title span {
  display: block;
  font-size: 24px;
  -webkit-margin-after: 8px;
  margin-block-end: 8px;
}

.category-label {
  border-style: solid;
  border-width: 1px 0;
  line-height: 1;
  padding: 5px 10px;
  background: #fff;
  display: block;
  position: relative;
}

.category-label-health {
  border-color: #6890EF;
}
.category-label-health::after {
  background: #6890EF;
}

.category-label-beauty {
  border-color: #cf82c1;
}
.category-label-beauty::after {
  background: #cf82c1;
}

.category-label-qol {
  border-color: #A57ACB;
}
.category-label-qol::after {
  background: #A57ACB;
}

.category-label-growth {
  border-color: #E69334;
}
.category-label-growth::after {
  background: #E69334;
}

.category-label-training {
  border-color: #7acb85;
}
.category-label-training::after {
  background: #7acb85;
}

.category-label-brain {
  border-color: #43C0C2;
}
.category-label-brain::after {
  background: #43C0C2;
}

.category-label-academic {
  border-color: #ad194f;
}
.category-label-academic::after {
  background: #ad194f;
}

.tag-list {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}
.tag-list > li a {
  background: #292828;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  padding: 2px 10px 4px;
  border-radius: 10px/50%;
  display: block;
  opacity: 1;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}

.topic-path {
  display: -webkit-box;
  display: flex;
  max-width: 1140px;
  padding: 26px 20px 0;
  margin: 0 auto;
}
.topic-path > li {
  font-size: 14px;
}
.topic-path > li:not(:last-child)::after {
  content: ">";
  margin-inline: 5px;
}

.page-title {
  line-height: 1.5;
  font-size: 40px;
  -webkit-margin-after: 66px;
  margin-block-end: 66px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}
.page-title span {
  display: block;
  -webkit-margin-after: 10px;
  margin-block-end: 10px;
  font-family: "Afacad", sans-serif;
  font-weight: 500;
  font-size: 24px;
}

.btn {
  background: #FCCC7B;
  position: relative;
  padding: 14px 84px 14px 44px;
  display: block;
  width: -webkit-fit-content;
  width: fit-content;
  border: 2px solid #FCCC7B;
  border-radius: 50px;
  font-weight: bold;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.btn::after {
  display: block;
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  right: 50px;
  translate: 0 -50%;
  background: url("/assets/images/pager_arrow_next.svg?v79a545d66b88327e64882e71aa8dcb2c") no-repeat center/cover;
}

.btn-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 20px;
  width: -webkit-fit-content !important;
  width: fit-content !important;
  list-style: none !important;
  -webkit-padding-start: 0 !important;
  padding-inline-start: 0 !important;
}
.btn-list.is-horizontal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
.btn-list > li a {
  width: 100%;
  line-height: 1.3;
  text-decoration: none;
}

.post-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.post-list .post-card {
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
  align-items: flex-start;
  gap: 30px;
  position: relative;
  border-right: 1px solid #DCDCDC;
  border-bottom: 1px solid #DCDCDC;
  padding-block: 30px;
  padding-inline: 20px 30px;
  cursor: pointer;
  -webkit-transition: 0.3s background;
  transition: 0.3s background;
}
.post-list .post-card::after {
  width: 26px;
  height: 26px;
  background: #FCCC7B;
  bottom: 0;
  right: 0;
}
.post-list .post-card .thumb {
  width: 160px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.post-list .post-card .has-triangle::after {
  background: #fff;
  width: 36px;
  height: 36px;
  bottom: -4px;
  right: -4px;
  -webkit-transition: 0.3s background;
  transition: 0.3s background;
}
.post-list .post-card .title-block {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: justify;
  justify-content: space-between;
  gap: 10px;
}
.post-list .post-card .title-block h3 a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.75;
  max-height: 5.25em;
}
.post-list .post-card .title-block .tag-list {
  gap: 10px;
}
.post-list .post-card .category-label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 12px;
}

.news-list {
  border-top: 1px solid #DCDCDC;
}
.news-list li {
  border-bottom: 1px solid #DCDCDC;
}
.news-list li a, .news-list li span {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: last baseline;
  align-items: last baseline;
  gap: 10px;
  padding: 16px 20px 16px 0;
}
.news-list li a dl, .news-list li span dl {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
  align-items: flex-start;
  gap: 20px;
}
.news-list li a dl dt, .news-list li span dl dt {
  color: #AAA;
  font-size: 14px;
  font-family: "Jost", sans-serif;
  line-height: 1.9;
}
.news-list li a dl dd, .news-list li span dl dd {
  line-height: 1.5;
}
.news-list li a[target=_blank]::after, .news-list li span[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="17" height="18" viewBox="0 0 17 18" fill="none"><path d="M5.84473 4.10742H2V15.5H13.3926V11.7783H15.3926V17.5H0V2.10742H5.84473V4.10742ZM17 9H15V3.91602L7.60156 11.3145L6.1875 9.90039L13.5879 2.5H8.5V0.5H17V9Z" fill="%23FCCC7B"/></svg>') no-repeat;
}

.pager {
  border-bottom: 1px solid #DCDCDC;
  padding-block: 14px;
}
.pager .pager-inner {
  display: -webkit-box;
  display: flex;
  gap: 15px;
  -webkit-box-pack: center;
  justify-content: center;
}
.pager .pager-inner .prev, .pager .pager-inner .next,
.pager .pager-inner span.current, .pager .pager-inner span.dots, .pager .pager-inner a {
  background: transparent;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  width: 32px;
  height: 32px;
  line-height: 1;
  font-family: "Afacad", sans-serif;
  font-weight: 500;
}
.pager .pager-inner .pager-list {
  display: -webkit-box;
  display: flex;
  gap: 15px;
}
.pager .pager-inner .pager-list li span.current {
  background: #FCCC7B;
}

.banner-list {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.banner-list > li {
  width: 100%;
}
.banner-list > li img {
  width: 100%;
  height: auto;
}

#main-container.home {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 80px;
}
#main-container.home .kv-area {
  background: url("/assets/images/top_cloud.svg?v57b5fcee31c86fa54fe1ab659fbeb2a8") no-repeat center top #FFF7DC;
}
#main-container.home .kv-area .inner {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  max-width: 1152px;
  margin-inline: auto;
}
#main-container.home .kv-area .left-container {
  width: 50%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 72px;
  padding: 0 0 30px 26px;
}
#main-container.home .kv-area .left-container .catch {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 46px;
  padding-top: 78px;
  -webkit-transition: gap 0.3s;
  transition: gap 0.3s;
}
#main-container.home .kv-area .left-container .catch .catch-s {
  font-size: 24px;
  line-height: 1.5;
  -webkit-transition: font-size 0.3s;
  transition: font-size 0.3s;
}
#main-container.home .kv-area .left-container .catch .catch-s span {
  display: inline-block;
  text-indent: -0.5em;
}
#main-container.home .kv-area .left-container .catch .catch-l {
  font-size: 36px;
  -webkit-transition: font-size 0.3s;
  transition: font-size 0.3s;
}
#main-container.home .kv-area .left-container .catch .catch-l strong {
  font-weight: normal;
}
#main-container.home .kv-area .right-container {
  width: 50%;
  padding-top: 20px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: end;
  align-items: flex-end;
}
#main-container.home .kv-area .right-container figure {
  max-width: 532px;
}
#main-container.home .intro-area .inner {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  gap: 30px;
  max-width: 1152px;
  margin-inline: auto;
  padding-inline: 20px;
}
#main-container.home .intro-area .inner .left-container {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 60px;
  flex-shrink: 1;
}
#main-container.home .intro-area .inner .left-container .text {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 1em;
}
#main-container.home .intro-area .inner .left-container .text h2 {
  font-size: 28px;
  line-height: 2;
  -webkit-margin-after: 0.8em;
  margin-block-end: 0.8em;
}
#main-container.home .intro-area .inner .left-container .text h2 span {
  background: -webkit-linear-gradient(transparent calc(100% - 12px), #FCCC7B calc(100% - 12px));
  background: linear-gradient(transparent calc(100% - 12px), #FCCC7B calc(100% - 12px));
  font-size: 36px;
}
#main-container.home .intro-area .inner .left-container .text p {
  line-height: 1.7;
}
#main-container.home .intro-area .inner .right-container {
  width: 540px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 54px;
  flex-shrink: 2;
}
#main-container.home .intro-area .inner .right-container > section {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 20px;
}
#main-container.home .intro-area .inner .right-container h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
#main-container.home .intro-area .inner .right-container figure img {
  width: 100%;
}
#main-container.home .intro-area .inner .right-container figure figcaption {
  font-size: 14px;
  line-height: 1.5;
  -webkit-margin-before: 1em;
  margin-block-start: 1em;
}
#main-container.home .intro-area .inner .right-container .member-list {
  display: -webkit-box;
  display: flex;
  gap: 20px;
}
#main-container.home .intro-area .inner .right-container .member-list li {
  background: #FFF7DC;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 20px;
}
#main-container.home .intro-area .inner .right-container .member-list li .profile {
  padding: 0 20px 20px;
}
#main-container.home .intro-area .inner .right-container .member-list li .profile .uni {
  font-size: 12px;
  line-height: 1.5;
}
#main-container.home .intro-area .inner .right-container .member-list li .profile .name {
  margin-top: 10px;
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
}
#main-container.home .intro-area .inner .right-container .member-list li .profile .name-en {
  margin-top: 5px;
  font-family: "Afacad", sans-serif;
}
#main-container.home .top-posts-area {
  background: #FFF7DC;
}
#main-container.home .top-posts-area .inner {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  gap: 30px;
  max-width: 1152px;
  margin-inline: auto;
  padding: 80px 20px;
}
#main-container.home .top-posts-area .news-container {
  width: 300px;
  flex-shrink: 0;
}
#main-container.home .top-posts-area .news-container .news-list li a dl, #main-container.home .top-posts-area .news-container .news-list li span dl {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 5px;
}
#main-container.home .top-posts-area .news-container .news-list li a dl dt, #main-container.home .top-posts-area .news-container .news-list li span dl dt {
  line-height: 1;
}
#main-container.home .top-posts-area .pickup-posts-container {
  width: 100%;
  max-width: 750px;
}
#main-container.home .top-posts-area .pickup-posts-container .post-list li {
  border-right: none;
}
#main-container.home .top-posts-area .pickup-posts-container .post-list li .has-triangle::after {
  background: #FFF7DC;
}
#main-container.home .posts-area .post-list > li:last-child {
  border-bottom: none;
}
#main-container.home .posts-area .btn-more {
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}
#main-container.home .posts-area .btn-more a {
  width: 100%;
  padding-block: 20px;
  line-height: 1;
  text-align: center;
  border-top: 1px solid #DCDCDC;
  border-bottom: 1px solid #DCDCDC;
  font-family: "Afacad", sans-serif;
  font-weight: 600;
  background: #fff;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
#main-container.home .series-posts-area {
  width: 100%;
  max-width: 1140px;
  padding-inline: 20px;
  margin: auto;
}
#main-container.home .series-posts-area .series-container {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 40px;
}
#main-container.home .series-posts-area .series-block {
  display: -webkit-box;
  display: flex;
  width: 100%;
  box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.1);
  gap: 30px;
}
#main-container.home .series-posts-area .series-block h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  overflow: hidden;
}
#main-container.home .series-posts-area .series-block h3 a .series-title {
  position: relative;
  display: -webkit-box;
  display: flex;
  width: 34.54%;
  -webkit-box-align: center;
  align-items: center;
  background: #FFF7DC;
  padding: 30px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  overflow: hidden;
}
#main-container.home .series-posts-area .series-block h3 a .series-title > span {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  align-items: flex-end;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 95px;
  height: 90px;
  font-family: "Afacad", sans-serif;
  font-weight: 500;
  font-size: 16px;
}
#main-container.home .series-posts-area .series-block h3 a .series-title > span span {
  display: block;
  position: relative;
  z-index: 1;
  line-height: 1em;
  padding: 0 6px 6px 0;
}
#main-container.home .series-posts-area .series-block h3 a .series-title > span::after {
  content: "";
  display: block;
  position: absolute;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 0);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
  bottom: -1px;
  right: -1px;
  width: 100%;
  height: 100%;
  background: #fff;
}
#main-container.home .series-posts-area .series-block h3 a em {
  font-style: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 5.25em;
  width: 100%;
}
#main-container.home .series-posts-area .series-block h3 a .series-thumb {
  width: 27.27%;
}
#main-container.home .series-posts-area .series-block h3 a .series-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#main-container.home .series-posts-area .series-block .post-list {
  width: 38.18%;
}
#main-container.home .series-posts-area .series-block .post-list > li {
  border-top: 1px solid #DCDCDC;
}
#main-container.home .series-posts-area .series-block .post-list > li:first-child {
  border: none;
}
#main-container.home .series-posts-area .series-block .post-list > li a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  height: 100%;
  padding-block: 8px;
  padding-inline: 4px;
  background: #fff;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
#main-container.home .series-posts-area .series-block .post-list > li a span {
  font-family: "Afacad", sans-serif;
  font-size: 15px;
  font-weight: 500;
}
#main-container.home .series-posts-area .series-block .post-list > li a span > span {
  font-size: 36px;
}
#main-container.home .series-posts-area .series-block .post-list > li a > span {
  width: 70px;
  flex-shrink: 0;
}
#main-container.home .series-posts-area .series-block .post-list > li a h4 {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 3.5em;
}
#main-container.home .series-posts-area .series-block .more {
  display: none;
  border-top: 1px solid #DCDCDC;
}

.page-about .about-kv {
  background-color: #FFF7DC;
  background-image: url("/assets/images/about_kv_bg_upper.svg?v7d7326e6b93521a2ec1dd829c33dc378"), url("/assets/images/about_kv_bg_middle.svg?ve93b2dd738fcae7322a224b75cc6f126"), url("/assets/images/about_kv_bg_lower.svg?v9b387c1bad7f57d371188c4e7655c8c3");
  background-position: center top, center center, center bottom -1px;
  background-repeat: no-repeat;
  background-size: auto;
}
.page-about .about-kv .about-kv-inner {
  background-image: url("/assets/images/about_main_image_2.avif?vb50e7949e21f8fece43797009010b569"), url("/assets/images/about_main_image_1.avif?v672cf1fdb745f3525aeac0e3874f79d3");
  background-position: center bottom, center bottom 160px;
  background-repeat: no-repeat;
  background-size: 100% auto, calc(100% + 104px);
}
.page-about .about-kv .kv-contents {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 1em;
}
.page-about .about-kv .kv-text {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 1em;
}
.page-about .about-kv .kv-text p {
  line-height: 2;
}
.page-about .about-kv .kv-text p span.underline {
  background: -webkit-linear-gradient(transparent calc(100% - 6px), #FCCC7B calc(100% - 6px));
  background: linear-gradient(transparent calc(100% - 6px), #FCCC7B calc(100% - 6px));
}
.page-about .about-kv .kv-text p sup {
  vertical-align: top;
  font-size: 70%;
}
.page-about .about-kv .kv-text p.catch {
  line-height: 1.75;
}
.page-about .about-kv .kv-text p.catch strong {
  font-family: "Noto Serif JP", serif;
  font-size: 36px;
}
.page-about .about-kv .kv-lower .text {
  max-width: 550px;
  -webkit-padding-after: 60px;
  padding-block-end: 60px;
}
.page-about .about-kv .kv-lower figure.upper-image {
  flex-shrink: 0;
  width: 40%;
  max-width: 510px;
  background: url("/assets/images/about_main_image_1.avif?v672cf1fdb745f3525aeac0e3874f79d3") no-repeat right -40px top/1000px auto;
  -webkit-padding-before: 240px;
  padding-block-start: 240px;
}
.page-about .notice {
  -webkit-padding-before: 20px;
  padding-block-start: 20px;
}
.page-about .notice ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 5px;
}
.page-about .notice ul li {
  font-size: 12px;
  text-indent: -1.3em;
  padding-left: 1.3em;
  line-height: 1.5;
}
.page-about h2 {
  border-bottom: 1px solid #DCDCDC;
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  -webkit-padding-after: 10px;
  padding-block-end: 10px;
}
.page-about .member-area {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 40px;
}
.page-about .member-area .member-container .member-list {
  display: -webkit-box;
  display: flex;
  gap: 40px;
}
.page-about .member-area .member-container .member-list > li {
  position: relative;
  width: calc(33.3333333333% - 26.6666666667px);
  background: #FFF7DC;
  box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.page-about .member-area .member-container .member-list > li a {
  -webkit-box-flex: 1;
  flex-grow: 1;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.page-about .member-area .member-container .member-list > li a > span {
  position: absolute;
  bottom: -1px;
  right: -1px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  align-items: flex-end;
  padding: 10px;
  width: 80px;
  height: 80px;
  background: #fff;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 0);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
  font-family: "Afacad", sans-serif;
  font-size: 16px;
}
.page-about .member-area .member-container .member-list > li .profile {
  padding: 30px;
}
.page-about .member-area .member-container .member-list > li .profile .uni {
  font-size: 14px;
  font-weight: bold;
}
.page-about .member-area .member-container .member-list > li .profile .name {
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  -webkit-margin-before: 10px;
  margin-block-start: 10px;
}
.page-about .member-area .member-container .member-list > li .profile .name-en {
  font-family: "Afacad", sans-serif;
  font-size: 16px;
  -webkit-margin-before: 5px;
  margin-block-start: 5px;
}
.page-about .member-area .member-container .member-list > li .profile .text {
  line-height: 1.75;
  -webkit-margin-before: 20px;
  margin-block-start: 20px;
  -webkit-padding-before: 20px;
  padding-block-start: 20px;
  border-top: 1px solid #DCDCDC;
}
.page-about .sponsor-area {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 40px;
}
.page-about .sponsor-area .sponsor-wrap {
  display: -webkit-box;
  display: flex;
  gap: 60px;
}
.page-about .sponsor-area .sponsor-wrap .sponsor-container {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 20px;
}
.page-about .sponsor-area .sponsor-wrap .sponsor-container .sponsor-list {
  list-style: disc;
  padding-left: 1.5em;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 10px;
}
.page-about .sponsor-area .sponsor-wrap .sponsor-container .sponsor-list > li {
  line-height: 1.3;
}
.page-about .sponsor-area .sponsor-wrap .sponsor-container .sponsor-list > li::marker {
  color: #FCCC7B;
}
.page-about .column-area {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 40px;
}

.post-single {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 60px;
  -webkit-padding-after: 12px;
  padding-block-end: 12px;
}
.post-single.column-single {
  -webkit-padding-end: 60px;
  padding-inline-end: 60px;
}
.post-single .post-header {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 30px;
}
.post-single .post-header h1 {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.5;
}
.post-single .post-header .post-metainfo-block {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  gap: 20px;
}
.post-single .post-header .post-metainfo-block .category-label {
  font-size: 14px;
}
.post-single .post-header .post-metainfo-block .tag-list {
  gap: 10px;
}
.post-single .related-post h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 24px;
  -webkit-margin-after: 40px;
  margin-block-end: 40px;
}
.post-single .related-post .post-list li {
  border-right: none;
}
.post-single .related-post .post-list li:last-child {
  border-bottom: none;
}
.post-single .related-post .post-list li.current {
  background: #FFF7DC;
}
.post-single .post-footer {
  padding-block: 15px;
  border-top: 1px solid #DCDCDC;
  border-bottom: 1px solid #DCDCDC;
}
.post-single .post-footer .navi-list {
  display: -webkit-box;
  display: flex;
}
.post-single .post-footer .navi-list > li {
  width: 33.3333333333%;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.post-single .post-footer .navi-list > li a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.post-single .post-footer .navi-list > li.prev {
  -webkit-box-pack: start;
  justify-content: flex-start;
}
.post-single .post-footer .navi-list > li.prev a::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background-image: url('data:image/svg+xml;utf8, <svg width="32" height="33" viewBox="0 0 32 33" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.5 17L9.5 16L22.5 16L22.5 17L9.5 17Z" fill="%23FCCC7B"/><path d="M16.1602 23.3662L8.76563 16.5L16.1602 9.63379L16.5264 9.29297L17.207 10.0264L16.8398 10.3662L10.2344 16.5L16.8398 22.6338L17.207 22.9736L16.5264 23.707L16.1602 23.3662Z" fill="%23FCCC7B"/></svg>');
  background-size: 100% auto;
}
.post-single .post-footer .navi-list > li.next {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
.post-single .post-footer .navi-list > li.next a::after {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background-image: url('data:image/svg+xml;utf8, <svg width="32" height="33" viewBox="0 0 32 33" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M22.5 16L22.5 17L9.5 17L9.5 16L22.5 16Z" fill="%23FCCC7B"/><path d="M15.8398 9.63379L23.2344 16.5L15.8398 23.3662L15.4736 23.707L14.793 22.9736L15.1602 22.6338L21.7656 16.5L15.1602 10.3662L14.793 10.0264L15.4736 9.29297L15.8398 9.63379Z" fill="%23FCCC7B"/></svg>');
  background-size: 100% auto;
}

.main-contents {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 60px;
}

.wp-block-post-content .post-list .post-card {
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
  align-items: flex-start;
  gap: 30px;
  position: relative;
  border-right: 1px solid #DCDCDC;
  border-bottom: 1px solid #DCDCDC;
  padding-block: 30px;
  padding-inline: 20px 30px;
  cursor: pointer;
  -webkit-transition: 0.3s background;
  transition: 0.3s background;
}
.wp-block-post-content .post-list .post-card::after {
  width: 26px;
  height: 26px;
  background: #FCCC7B;
  bottom: 0;
  right: 0;
}
.wp-block-post-content .post-list .post-card .thumb {
  width: 160px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.wp-block-post-content .post-list .post-card .has-triangle::after {
  background: #fff;
  width: 36px;
  height: 36px;
  bottom: -4px;
  right: -4px;
  -webkit-transition: 0.3s background;
  transition: 0.3s background;
}
.wp-block-post-content .post-list .post-card .title-block {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: justify;
  justify-content: space-between;
  gap: 10px;
}
.wp-block-post-content .post-list .post-card .title-block h3 a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.75;
  max-height: 5.25em;
}
.wp-block-post-content .post-list .post-card .title-block .tag-list {
  gap: 10px;
}
.wp-block-post-content .post-list .post-card .category-label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 12px;
}

.main-contents ul, .main-contents ol, .main-contents li, .main-contents p, .main-contents div, .main-contents figure,
.main-contents table,
.wp-block-post-content ul,
.wp-block-post-content ol,
.wp-block-post-content li,
.wp-block-post-content p,
.wp-block-post-content div,
.wp-block-post-content figure,
.wp-block-post-content table {
  width: 100%;
}
.main-contents p,
.wp-block-post-content p {
  line-height: 1.75;
}
.main-contents sup,
.wp-block-post-content sup {
  font-size: 70%;
  vertical-align: top;
}
.main-contents figure,
.wp-block-post-content figure {
  margin-block: 0;
}
.main-contents figure figcaption,
.wp-block-post-content figure figcaption {
  font-size: 14px;
  line-height: 1.5;
  -webkit-margin-before: 8px !important;
  margin-block-start: 8px !important;
}
.main-contents figure.aligncenter figcaption,
.wp-block-post-content figure.aligncenter figcaption {
  text-align: center;
}
.main-contents a,
.wp-block-post-content a {
  text-decoration: underline;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.main-contents a[target=_blank]::after,
.wp-block-post-content a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  -webkit-margin-start: 5px;
  margin-inline-start: 5px;
  vertical-align: baseline;
  background-image: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="17" height="18" viewBox="0 0 17 18" fill="none"><path d="M5.84473 4.10742H2V15.5H13.3926V11.7783H15.3926V17.5H0V2.10742H5.84473V4.10742ZM17 9H15V3.91602L7.60156 11.3145L6.1875 9.90039L13.5879 2.5H8.5V0.5H17V9Z" fill="%23FCCC7B"/></svg>');
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.main-contents ul, .main-contents ol,
.wp-block-post-content ul,
.wp-block-post-content ol {
  -webkit-padding-start: 1.5em;
  padding-inline-start: 1.5em;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 10px;
}
.main-contents ul > li, .main-contents ol > li,
.wp-block-post-content ul > li,
.wp-block-post-content ol > li {
  line-height: 1.5;
}
.main-contents ul,
.wp-block-post-content ul {
  list-style: disc;
}
.main-contents ol,
.wp-block-post-content ol {
  list-style: decimal;
}
.main-contents table,
.wp-block-post-content table {
  border-collapse: collapse;
  width: 100%;
}
.main-contents table th, .main-contents table td,
.wp-block-post-content table th,
.wp-block-post-content table td {
  padding: 10px 16px;
  text-align: left;
}
.main-contents table thead,
.wp-block-post-content table thead {
  border: 1.5px solid #FCCC7B;
}
.main-contents table thead th,
.wp-block-post-content table thead th {
  border: none;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  background: #FCCC7B;
}
.main-contents table tbody th, .main-contents table tbody td,
.wp-block-post-content table tbody th,
.wp-block-post-content table tbody td {
  border: 1px solid #FCCC7B;
}
.main-contents table tbody th,
.wp-block-post-content table tbody th {
  background: #FFF7DC;
}
.main-contents .lead-block .wp-block-group__inner-container,
.wp-block-post-content .lead-block .wp-block-group__inner-container {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 0.5em;
}
.main-contents .has-title-image .wp-block-group__inner-container,
.wp-block-post-content .has-title-image .wp-block-group__inner-container {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 1em;
}
.main-contents .has-title-image .wp-block-group__inner-container h4,
.wp-block-post-content .has-title-image .wp-block-group__inner-container h4 {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  line-height: 1.5;
}
.main-contents .has-title-image .wp-block-group__inner-container figure,
.wp-block-post-content .has-title-image .wp-block-group__inner-container figure {
  margin-block: 0 !important;
}
.main-contents > section > .wp-block-group__inner-container,
.wp-block-post-content > section > .wp-block-group__inner-container {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 40px;
}
.main-contents > section > .wp-block-group__inner-container h2, .main-contents > section > .wp-block-group__inner-container h3,
.wp-block-post-content > section > .wp-block-group__inner-container h2,
.wp-block-post-content > section > .wp-block-group__inner-container h3 {
  width: 100%;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.5;
}
.main-contents > section > .wp-block-group__inner-container h2,
.wp-block-post-content > section > .wp-block-group__inner-container h2 {
  font-size: 28px;
  border-bottom: 1px solid #DCDCDC;
  -webkit-padding-after: 10px;
  padding-block-end: 10px;
}
.main-contents > section > .wp-block-group__inner-container h3,
.wp-block-post-content > section > .wp-block-group__inner-container h3 {
  font-size: 24px;
}
.main-contents > section > .wp-block-group__inner-container h4,
.wp-block-post-content > section > .wp-block-group__inner-container h4 {
  font-size: 20px;
}
.main-contents > section > .wp-block-group__inner-container > section.wp-block-group .wp-block-group__inner-container > * + *,
.wp-block-post-content > section > .wp-block-group__inner-container > section.wp-block-group .wp-block-group__inner-container > * + * {
  -webkit-margin-before: 1.5em;
  margin-block-start: 1.5em;
}
.main-contents .s-title,
.wp-block-post-content .s-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 24px;
  -webkit-margin-after: 14px;
  margin-block-end: 14px;
}
.main-contents .s-title span,
.wp-block-post-content .s-title span {
  display: block;
  font-family: "Afacad", sans-serif;
  font-weight: 500;
  font-size: 16px;
  -webkit-margin-after: 10px;
  margin-block-end: 10px;
}
.main-contents .summary-block,
.wp-block-post-content .summary-block {
  background: #FFF7DC;
  padding: 40px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 20px;
}
.main-contents .summary-block hr,
.wp-block-post-content .summary-block hr {
  margin: 0;
  border: none;
  border-top: 1px solid #DCDCDC;
}
.main-contents .summary-block .menu-list,
.wp-block-post-content .summary-block .menu-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-padding-before: 8px;
  padding-block-start: 8px;
}
.main-contents .summary-block .menu-list a,
.wp-block-post-content .summary-block .menu-list a {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  text-decoration: none;
}
.main-contents .summary-block .menu-list:has(ul),
.wp-block-post-content .summary-block .menu-list:has(ul) {
  gap: 20px;
}
.main-contents .summary-block .menu-list:has(ul) > li,
.wp-block-post-content .summary-block .menu-list:has(ul) > li {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}
.main-contents .summary-block .menu-list:has(ul) > li ul,
.wp-block-post-content .summary-block .menu-list:has(ul) > li ul {
  -webkit-margin-before: 10px;
  margin-block-start: 10px;
  font-size: 16px;
  font-weight: normal;
  -webkit-padding-start: 30px;
  padding-inline-start: 30px;
  list-style: square;
  color: #FCCC7B;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 10px;
}
.main-contents .summary-block .menu-list:not(:has(ul)),
.wp-block-post-content .summary-block .menu-list:not(:has(ul)) {
  gap: 10px;
  color: #FCCC7B;
  font-size: 16px;
  font-weight: normal;
  -webkit-padding-start: 30px;
  padding-inline-start: 30px;
  list-style: square;
}
.main-contents .profile-block,
.wp-block-post-content .profile-block {
  border-top: 2px solid #FCCC7B;
  border-left: 2px solid #FCCC7B;
  padding: 30px 0 0 30px;
}
.main-contents .profile-block .profile-inner,
.wp-block-post-content .profile-block .profile-inner {
  display: -webkit-box;
  display: flex;
  gap: 30px;
}
.main-contents .profile-block .profile-inner figure,
.wp-block-post-content .profile-block .profile-inner figure {
  width: 130px;
  flex-shrink: 0;
}
.main-contents .profile-block .profile-inner .profile-info,
.wp-block-post-content .profile-block .profile-inner .profile-info {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 0.5em;
}
.main-contents .profile-block .profile-inner .profile-info .profile-header .holder,
.wp-block-post-content .profile-block .profile-inner .profile-info .profile-header .holder {
  font-size: 12px;
}
.main-contents .profile-block .profile-inner .profile-info .profile-header .name,
.wp-block-post-content .profile-block .profile-inner .profile-info .profile-header .name {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
}
.main-contents .profile-block .profile-inner .profile-info .profile-text,
.wp-block-post-content .profile-block .profile-inner .profile-info .profile-text {
  font-size: 14px;
}
.main-contents .profile-block .profile-inner .profile-info .profile-link-list,
.wp-block-post-content .profile-block .profile-inner .profile-info .profile-link-list {
  list-style: disc;
  -webkit-padding-start: 1.5em;
  padding-inline-start: 1.5em;
  color: #FCCC7B;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.main-contents .section-point,
.wp-block-post-content .section-point {
  background: #e2f2ff;
  padding: 40px;
  -webkit-clip-path: polygon(0 40px, 40px 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
  clip-path: polygon(0 40px, 40px 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
}
.main-contents .section-point .point-list,
.wp-block-post-content .section-point .point-list {
  list-style: disc;
  -webkit-padding-start: 1.5em;
  padding-inline-start: 1.5em;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 10px;
}
.main-contents .section-point .point-list > li,
.wp-block-post-content .section-point .point-list > li {
  line-height: 1.5;
}
.main-contents .section-point .point-list > li::marker,
.wp-block-post-content .section-point .point-list > li::marker {
  color: #5663d6;
}
.main-contents .post-list .post-card,
.wp-block-post-content .post-list .post-card {
  -webkit-margin-before: 0 !important;
  margin-block-start: 0 !important;
  border-right: none;
}
.main-contents .post-list .post-card a,
.wp-block-post-content .post-list .post-card a {
  text-decoration: none;
}
.main-contents .post-list .post-card ul,
.wp-block-post-content .post-list .post-card ul {
  list-style: none;
  -webkit-padding-start: 0;
  padding-inline-start: 0;
}
.main-contents .post-list .post-card p,
.wp-block-post-content .post-list .post-card p {
  -webkit-margin-before: 0 !important;
  margin-block-start: 0 !important;
}
.main-contents .post-list .post-card .title-block,
.wp-block-post-content .post-list .post-card .title-block {
  -webkit-margin-before: 0 !important;
  margin-block-start: 0 !important;
}
.main-contents .post-list .post-card .title-block .s-title,
.wp-block-post-content .post-list .post-card .title-block .s-title {
  font-size: 16px;
  line-height: 1.75;
  -webkit-margin-after: 0;
  margin-block-end: 0;
}
.main-contents .post-list .post-card a.category-label,
.wp-block-post-content .post-list .post-card a.category-label {
  -webkit-margin-before: 0 !important;
  margin-block-start: 0 !important;
}
.main-contents .l-img-txt-wrap > .wp-block-group__inner-container,
.wp-block-post-content .l-img-txt-wrap > .wp-block-group__inner-container {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 40px;
}
.main-contents .l-tit-img-txt,
.wp-block-post-content .l-tit-img-txt {
  -webkit-box-align: center;
  align-items: center;
  -webkit-margin-before: 0 !important;
  margin-block-start: 0 !important;
}
.main-contents .l-tit-img-txt .wp-block-column:first-child,
.wp-block-post-content .l-tit-img-txt .wp-block-column:first-child {
  width: 25%;
  flex-basis: 25% !important;
}
.main-contents .l-tit-img-txt .wp-block-column:last-child,
.wp-block-post-content .l-tit-img-txt .wp-block-column:last-child {
  width: 75%;
  flex-basis: 75% !important;
  -webkit-margin-before: 0 !important;
  margin-block-start: 0 !important;
}
.main-contents .l-tit-img-txt .wp-block-column .s-title,
.wp-block-post-content .l-tit-img-txt .wp-block-column .s-title {
  margin: 0 !important;
  line-height: 1.3;
}
.main-contents .l-tit-img-txt .wp-block-column p,
.wp-block-post-content .l-tit-img-txt .wp-block-column p {
  -webkit-margin-before: 0.7em !important;
  margin-block-start: 0.7em !important;
}

.page-single .inner-section {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 20px;
}

#main-container.page-contact {
  -webkit-padding-after: 0;
  padding-block-end: 0;
}
#main-container.page-contact + #contact-area {
  -webkit-padding-after: 100px;
  padding-block-end: 100px;
}

#main-container.page-requirements .requirement-flex {
  display: -webkit-box;
  display: flex;
  gap: 40px;
}

@media (max-width: 767.9px) {
  body {
    font-size: 14px;
  }
  #site-header .site-logo {
    width: 130px;
  }
  #contact-area {
    gap: 20px;
    flex-direction: column;
  }
  #contact-area .contact-container {
    width: 100%;
    max-width: none;
  }
  #contact-area .contact-container a {
    padding: 20px;
    clip-path: polygon(0 20px, 20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  }
  .hide-pc {
    display: none;
  }
  .hide-sp {
    display: none;
  }
  .category-label {
    padding: 3px 8px;
  }
  .btn {
    font-size: 14px;
    padding: 12px 80px 12px 40px;
  }
  .btn-list {
    margin-inline: auto;
  }
  .post-list .post-card {
    padding-inline: 12px 22px;
  }
  .post-list .post-card .category-label {
    top: 8px;
    left: 12px;
    font-size: 11px;
  }
  .news-list li a dl dd, .news-list li span dl dd {
    font-size: 14px;
  }
  #main-container.home {
    gap: 60px;
  }
  #main-container.home .kv-area {
    background-image: url("/assets/images/top_cloud_sp.svg?v9c08c86f25245ee72fc701a0bec30ac5");
    background-size: 119.4666666667vw;
    padding-bottom: 8vw;
  }
  #main-container.home .kv-area .inner {
    flex-direction: column;
    align-items: center;
  }
  #main-container.home .kv-area .left-container {
    display: contents;
  }
  #main-container.home .kv-area .left-container .catch {
    order: 1;
    transition: none;
    gap: 2.6666666667vw;
    padding-top: 5.8666666667vw;
  }
  #main-container.home .kv-area .left-container .catch .catch-s {
    transition: none;
    font-size: 3.7333333333vw;
    text-align: center;
    line-height: 2;
  }
  #main-container.home .kv-area .left-container .catch .catch-l {
    transition: none;
    font-size: 6.4vw;
  }
  #main-container.home .kv-area .left-container .link {
    order: 3;
  }
  #main-container.home .kv-area .right-container {
    order: 2;
    width: 100%;
    padding: 8vw 5.3333333333vw 5.3333333333vw;
    align-items: center;
    justify-content: center;
  }
  #main-container.home .intro-area .inner {
    flex-direction: column;
  }
  #main-container.home .intro-area .inner .left-container {
    display: contents;
  }
  #main-container.home .intro-area .inner .left-container .text {
    order: 2;
  }
  #main-container.home .intro-area .inner .left-container .text h2 {
    font-size: 20px;
  }
  #main-container.home .intro-area .inner .left-container .text h2 span {
    font-size: 26px;
  }
  #main-container.home .intro-area .inner .left-container .btn-list {
    order: 4;
  }
  #main-container.home .intro-area .inner .right-container {
    display: contents;
  }
  #main-container.home .intro-area .inner .right-container > section {
    order: 3;
  }
  #main-container.home .intro-area .inner .right-container > section:first-child {
    order: 1;
  }
  #main-container.home .intro-area .inner .right-container > section:first-child h3 {
    text-align: center;
  }
  #main-container.home .intro-area .inner .right-container figure img {
    max-width: 540px;
    margin-inline: auto;
  }
  #main-container.home .top-posts-area .inner {
    padding: 60px 20px;
  }
  #main-container.home .series-posts-area .series-block {
    width: 100%;
  }
  .main-contents {
    gap: 40px;
  }
  .wp-block-post-content .post-list .post-card .category-label {
    top: 8px;
    left: 12px;
    font-size: 11px;
  }
  .main-contents > section > .wp-block-group__inner-container h2,
  .wp-block-post-content > section > .wp-block-group__inner-container h2 {
    font-size: 24px;
  }
  .main-contents > section > .wp-block-group__inner-container h3,
  .wp-block-post-content > section > .wp-block-group__inner-container h3 {
    font-size: 20px;
  }
  .main-contents > section > .wp-block-group__inner-container h4,
  .wp-block-post-content > section > .wp-block-group__inner-container h4 {
    font-size: 18px;
  }
  .main-contents .s-title,
  .wp-block-post-content .s-title {
    font-size: 20px;
  }
  .main-contents .s-title span,
  .wp-block-post-content .s-title span {
    font-size: 11px;
  }
  .main-contents .summary-block,
  .wp-block-post-content .summary-block {
    padding: 20px;
  }
  .main-contents .summary-block .menu-list:has(ul) > li,
  .wp-block-post-content .summary-block .menu-list:has(ul) > li {
    font-size: 16px;
  }
  .main-contents .summary-block .menu-list:has(ul) > li ul,
  .wp-block-post-content .summary-block .menu-list:has(ul) > li ul {
    font-size: 14px;
  }
}

@media (max-width: 1049.9px) {
  #site-header {
    height: 68px;
  }
  #site-header.scrolled {
    height: 50px;
  }
  #site-header .inner {
    padding: 0 20px;
  }
  #site-header .site-logo {
    width: 160px;
  }
  #site-header nav .navi-list {
    font-size: 13px;
  }
}

@media (hover: hover) {
  #site-header .site-logo a:hover {
    opacity: 0.6;
  }
  #site-header nav .navi-list a:hover {
    color: #FCCC7B;
  }
  #contact-area .contact-container a:hover {
    background: #FFF7DC;
  }
  #site-footer .footer-navi .navi-list a:hover {
    opacity: 0.7;
    text-decoration: underline;
  }
  .posts-area .list-container .post-list > li a:hover dl dd {
    text-decoration: underline;
  }
  .category-label::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.3s opacity;
  }
  .category-label:hover::after {
    opacity: 0.1;
  }
  .tag-list > li a:hover {
    opacity: 0.7;
  }
  .btn:hover {
    background: #FFF7DC;
  }
  .btn-list > li a:hover {
    color: #292828;
  }
  .post-list .post-card:hover {
    background: #FFF7DC;
  }
  .post-list .post-card:hover .has-triangle::after {
    background: #FFF7DC;
  }
  .pager .pager-inner a:hover {
    background: #FCCC7B;
  }
  #main-container.home .top-posts-area .news-container .news-list li a:hover dl dd {
    text-decoration: underline;
  }
  #main-container.home .top-posts-area .pickup-posts-container .post-list li:hover {
    background: #fff;
  }
  #main-container.home .top-posts-area .pickup-posts-container .post-list li:hover .has-triangle::after {
    background: #fff;
  }
  #main-container.home .posts-area .btn-more a:hover {
    background: #FFF7DC;
  }
  #main-container.home .series-posts-area .series-block .post-list > li a:hover {
    background: #FFF7DC;
  }
  .page-about .member-area .member-container .member-list > li a:hover {
    background: #FCCC7B;
  }
  .post-single .post-footer .navi-list > li a:hover {
    color: #FCCC7B;
  }
  .main-contents a:hover,
  .wp-block-post-content a:hover {
    text-decoration: none;
    color: #FCCC7B;
  }
  .main-contents .summary-block .menu-list a:hover,
  .wp-block-post-content .summary-block .menu-list a:hover {
    color: #FCCC7B;
  }
  .main-contents .post-list .post-card .title-block .s-title a:hover,
  .wp-block-post-content .post-list .post-card .title-block .s-title a:hover {
    color: #292828;
  }
  .main-contents .post-list .post-card a.category-label:hover,
  .wp-block-post-content .post-list .post-card a.category-label:hover {
    color: #292828;
  }
}

@media (max-width: 879.9px) {
  #site-header #menu-opener {
    display: block;
  }
  #site-header nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    height: calc(100vh - 68px);
    position: fixed;
    top: -100vh;
    left: 0;
    background: #fff;
    overflow-y: auto;
    padding-inline: 20px;
    padding-block-end: 30px;
    opacity: 0;
    transition: top 0.1s 0.3s, opacity 0.3s;
  }
  #site-header nav .navi-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    font-weight: 600;
  }
  #site-header nav .navi-list li {
    width: 100%;
    border-bottom: 1px solid #DCDCDC;
  }
  #site-header nav .navi-list li a {
    display: block;
    padding: 20px;
  }
  #site-header nav aside {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .posts-area {
    max-width: 750px;
  }
  .posts-area .posts-container {
    flex-direction: column;
  }
  .posts-area .posts-container .post-list-block,
  .posts-area .posts-container .post-single {
    width: 100%;
    max-width: 690px;
    margin-inline: auto;
  }
  .posts-area .posts-container .side-bar-container {
    width: 100%;
    max-width: none;
  }
  .posts-area .posts-container .side-bar-container .category-list {
    gap: 10px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .posts-area .posts-container .side-bar-container .category-list > li {
    width: calc(50% - 5px);
    max-width: 370px;
  }
  .topic-path {
    display: none;
  }
  .post-list .post-card {
    border-right: none;
  }
  #main-container.home .top-posts-area .inner {
    flex-direction: column;
  }
  #main-container.home .top-posts-area .news-container {
    width: 100%;
    max-width: 750px;
    margin-inline: auto;
  }
  #main-container.home .top-posts-area .pickup-posts-container {
    margin-inline: auto;
  }
  #main-container.home .posts-area {
    display: flex;
    flex-direction: column;
  }
  #main-container.home .posts-area .section-title {
    order: 1;
  }
  #main-container.home .posts-area .posts-container {
    display: contents;
  }
  #main-container.home .posts-area .posts-container .post-list-block {
    order: 2;
  }
  #main-container.home .posts-area .posts-container .side-bar-container {
    order: 4;
    margin-block-start: 60px;
  }
  #main-container.home .posts-area .btn-more {
    order: 3;
  }
  #main-container.home .series-posts-area .series-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
  }
  #main-container.home .series-posts-area .series-block {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 0;
  }
  #main-container.home .series-posts-area .series-block h3 {
    background: #FFF7DC;
    width: 100%;
    font-size: 20px;
  }
  #main-container.home .series-posts-area .series-block h3 a {
    display: flex;
    height: 100%;
    justify-content: space-between;
    padding: 20px;
    gap: 20px;
  }
  #main-container.home .series-posts-area .series-block h3 a .series-title {
    width: calc(100% - 124px);
    padding: 0;
  }
  #main-container.home .series-posts-area .series-block h3 a .series-title > span {
    display: none;
  }
  #main-container.home .series-posts-area .series-block h3 a .series-thumb {
    width: 104px;
    height: 90px;
    flex-shrink: 0;
  }
  #main-container.home .series-posts-area .series-block .post-list {
    width: 100%;
  }
  #main-container.home .series-posts-area .series-block .post-list > li a {
    padding-inline: 20px;
  }
  #main-container.home .series-posts-area .series-block .post-list > li a span {
    font-size: 13px;
  }
  #main-container.home .series-posts-area .series-block .post-list > li a span > span {
    font-size: 32px;
  }
  #main-container.home .series-posts-area .series-block .more {
    display: flex;
    width: 100%;
    background: #fff;
  }
  #main-container.home .series-posts-area .series-block .more a {
    font-family: "Afacad", sans-serif;
    font-weight: 500;
    font-size: 14px;
    width: 100%;
    padding-block: 13px;
    text-align: center;
  }
  .page-about .about-kv .kv-lower {
    display: flex;
    flex-direction: column;
    gap: 1em;
  }
  .page-about .about-kv .kv-lower figure.upper-image {
    background: none;
    padding-block-start: 0;
    width: 100%;
    margin: auto;
  }
  .page-about .about-kv .kv-lower figure.lower-image {
    max-width: 510px;
    margin-inline: auto;
  }
  .page-about .member-area .member-container .member-list {
    flex-direction: column;
    gap: 20px;
  }
  .page-about .member-area .member-container .member-list > li {
    width: 100%;
  }
  .page-about .member-area .member-container .member-list > li a {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 20px 40px;
    gap: 20px;
  }
  .page-about .member-area .member-container .member-list > li figure {
    width: 140px;
  }
  .page-about .member-area .member-container .member-list > li .profile {
    display: contents;
  }
  .page-about .member-area .member-container .member-list > li .profile .info {
    width: calc(100% - 160px);
  }
  .page-about .member-area .member-container .member-list > li .profile .text {
    border: none;
    margin: 0;
    padding: 0;
  }
  .post-single.column-single {
    padding-inline-end: 0;
  }
  .post-single .post-header h1 {
    font-size: 28px;
  }
  #main-container.page-requirements .requirement-flex {
    flex-direction: column;
  }
}

@media (max-width: 480.9px) {
  #contact-area .contact-container a .genre {
    font-size: 16px;
  }
  #contact-area .contact-container a .desc {
    margin-block-start: 20px;
    font-size: 12px;
  }
  #contact-area .contact-container a .time {
    font-size: 12px;
  }
  .posts-area .list-container .post-list > li dl {
    flex-direction: column;
    gap: 8px;
  }
  .section-title {
    font-size: 24px;
    margin-block-end: 28px;
  }
  .section-title span {
    font-size: 20px;
  }
  .page-title {
    font-size: 28px;
  }
  .page-title span {
    font-size: 20px;
  }
  .post-list .post-card {
    gap: 20px;
  }
  .post-list .post-card .thumb {
    width: 116px;
  }
  .pager .pager-inner {
    gap: 0px;
  }
  .pager .pager-inner span.dots {
    width: 20px;
  }
  .pager .pager-inner .pager-list {
    gap: 8px;
  }
  #main-container.home .kv-area .left-container .link {
    font-size: 3.7333333333vw;
  }
  #main-container.home .intro-area .inner .right-container .member-list li .profile .uni {
    font-size: 11px;
  }
  #main-container.home .intro-area .inner .right-container .member-list li .profile .name-en {
    font-size: 14px;
  }
  .page-about .about-kv {
    background-image: url("/assets/images/about_kv_bg_upper.svg?v7d7326e6b93521a2ec1dd829c33dc378"), url("/assets/images/about_kv_bg_lower.svg?v9b387c1bad7f57d371188c4e7655c8c3");
    background-position: center top, center bottom -1px;
    background-repeat: no-repeat;
    background-size: 1000px auto;
  }
  .page-about .about-kv .kv-text p.catch strong {
    font-size: 24px;
  }
  .page-about .about-kv .kv-lower .text {
    padding-block-end: 40px;
  }
  .page-about .about-kv .kv-lower figure.upper-image {
    background: url("/assets/images/about_kv_bg_sp.svg?v7ef00e7fc823cc895d54764205d80971") no-repeat center bottom/auto 100%;
    width: 100vw;
    margin-inline-start: calc(50% - 50vw);
    padding-block-start: 10%;
  }
  .page-about .about-kv .kv-lower figure.upper-image img {
    width: 95%;
    height: auto;
    margin: auto;
  }
  .page-about h2 {
    font-size: 24px;
  }
  .page-about .member-area .member-container .member-list > li a > span {
    width: 70px;
    height: 70px;
    font-size: 14px;
  }
  .page-about .member-area .member-container .member-list > li .profile .uni {
    font-size: 11px;
    line-height: 1.3;
  }
  .page-about .member-area .member-container .member-list > li .profile .name {
    font-size: 20px;
  }
  .page-about .member-area .member-container .member-list > li .profile .name-en {
    font-size: 14px;
  }
  .page-about .sponsor-area .sponsor-wrap {
    flex-direction: column;
    gap: 40px;
  }
  .main-contents figure figcaption,
  .wp-block-post-content figure figcaption {
    font-size: 12px;
  }
  .main-contents .has-title-image .wp-block-group__inner-container h4,
  .wp-block-post-content .has-title-image .wp-block-group__inner-container h4 {
    font-size: 18px;
  }
  .main-contents .profile-block,
  .wp-block-post-content .profile-block {
    padding: 20px 0 0 20px;
  }
  .main-contents .profile-block .profile-inner,
  .wp-block-post-content .profile-block .profile-inner {
    gap: 10px 20px;
    flex-wrap: wrap;
  }
  .main-contents .profile-block .profile-inner figure,
  .wp-block-post-content .profile-block .profile-inner figure {
    width: 35%;
  }
  .main-contents .profile-block .profile-inner .profile-info,
  .wp-block-post-content .profile-block .profile-inner .profile-info {
    display: contents;
  }
  .main-contents .profile-block .profile-inner .profile-info .profile-header,
  .wp-block-post-content .profile-block .profile-inner .profile-info .profile-header {
    width: calc(65% - 20px);
  }
  .main-contents .section-point,
  .wp-block-post-content .section-point {
    padding: 20px;
    clip-path: polygon(0 20px, 20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  }
  .main-contents .l-tit-img-txt,
  .wp-block-post-content .l-tit-img-txt {
    flex-direction: column;
    gap: 10px;
  }
  .main-contents .l-tit-img-txt .wp-block-column,
  .wp-block-post-content .l-tit-img-txt .wp-block-column {
    display: contents;
  }
  .main-contents .l-tit-img-txt .wp-block-column .s-title,
  .wp-block-post-content .l-tit-img-txt .wp-block-column .s-title {
    order: 1;
    text-align: center;
  }
  .main-contents .l-tit-img-txt .wp-block-column figure,
  .wp-block-post-content .l-tit-img-txt .wp-block-column figure {
    order: 2;
    max-width: 250px;
    margin: auto;
  }
  .main-contents .l-tit-img-txt .wp-block-column p,
  .wp-block-post-content .l-tit-img-txt .wp-block-column p {
    order: 3;
    margin-block-start: 0 !important;
  }
}

@media (max-width: 639.9px) {
  #site-footer .footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 336px;
  }
  #site-footer .footer-upper {
    display: contents;
  }
  #site-footer .footer-upper .footer-logo-area {
    width: 100%;
    max-width: none;
  }
  #site-footer .footer-upper .footer-logo-area .logo {
    width: 160px;
    margin: 0 auto;
  }
  #site-footer .footer-upper .footer-logo-area .contact-area {
    width: 160px;
    margin-inline: auto;
  }
  #site-footer .footer-upper .footer-logo-area .contact-area .subtitle {
    font-size: 13px;
    text-align: center;
  }
  #site-footer .footer-upper .footer-logo-area .contact-area .contact-info {
    text-align: center;
    font-size: 13px;
  }
  #site-footer .footer-lower {
    display: contents;
  }
  #site-footer .footer-navi {
    max-width: calc(50% - 10px);
  }
  #site-footer .footer-navi .navi-list {
    flex-direction: column;
    gap: 18px;
    font-size: 13px;
  }
  #site-footer .copyright {
    width: 100%;
    font-size: 11px;
    text-align: center;
  }
  .banner-list {
    gap: 15px;
  }
  .banner-list > li {
    width: 100%;
  }
}

@media (max-width: 849.9px) and (min-width: 640px) {
  #site-footer .footer-upper {
    gap: 50px;
  }
  #site-footer .footer-upper .footer-navi .navi-list {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px 35px;
  }
}

@media (max-width: 999.9px) and (min-width: 640px) {
  #site-footer .footer-lower {
    flex-direction: column;
    gap: 20px;
  }
  #site-footer .copyright {
    text-align: right;
  }
}

@media (min-width: 640px) {
  #site-footer .footer-navi .navi-list br {
    display: none;
  }
}

@media (max-width: 879.9px) and (min-width: 640px) {
  .banner-list > li {
    width: calc(50% - 5px);
  }
}

@media (max-width: 1099.9px) {
  #main-container.home .kv-area .left-container {
    gap: 50px;
  }
}

@media (max-width: 792px) {
  #main-container.home .kv-area .left-container {
    width: 394px;
    flex-shrink: 0;
  }
}

@media (max-width: 1099.9px) and (min-width: 768px) {
  #main-container.home .kv-area .left-container .catch {
    gap: 36px;
  }
}

@media (max-width: 1099.9px) and (min-width: 860px) {
  #main-container.home .kv-area .left-container .catch .catch-s {
    font-size: 20px;
  }
  #main-container.home .kv-area .left-container .catch .catch-l {
    font-size: 30px;
  }
}

@media (max-width: 859.9px) and (min-width: 768px) {
  #main-container.home .kv-area .left-container .catch .catch-s {
    font-size: 19px;
  }
  #main-container.home .kv-area .left-container .catch .catch-l {
    font-size: 28px;
  }
}

@media (max-width: 1064.9px) {
  #main-container.home .intro-area .inner .left-container {
    width: 392px;
  }
  #main-container.home .intro-area .inner .left-container .text p .hide-1064 {
    display: none;
  }
}

@media (max-width: 1064.9px) and (min-width: 768px) {
  #main-container.home .intro-area .inner .left-container .text h2 {
    font-size: 22px;
  }
  #main-container.home .intro-area .inner .left-container .text h2 span {
    font-size: 30px;
  }
}

@media (max-width: 959.9px) {
  #main-container.home .intro-area .inner .left-container .text h2 br {
    display: none;
  }
  #main-container.home .intro-area .inner .right-container .member-list {
    flex-direction: column;
  }
  #main-container.home .intro-area .inner .right-container .member-list li {
    flex-direction: row;
  }
  #main-container.home .intro-area .inner .right-container .member-list li figure {
    width: 166px;
    gap: 0;
  }
  #main-container.home .intro-area .inner .right-container .member-list li .profile {
    padding: 0 20px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 809.9px) {
  #main-container.home .intro-area .inner .right-container h3 {
    font-size: 20px;
  }
}

@media (min-width: 860px) {
  #main-container.home .intro-area .inner .right-container h3:first-child {
    padding-block-start: 0.7em;
  }
}

@media (max-width: 879.9px) and (min-width: 768px) {
  #main-container.home .series-posts-area .series-block {
    max-width: 404px;
  }
}

@media (min-width: 880px) {
  #main-container.home .series-posts-area .series-block h3 {
    display: contents;
  }
  #main-container.home .series-posts-area .series-block h3 a {
    display: contents;
  }
  #main-container.home .series-posts-area .series-block h3 a .series-title {
    order: 1;
  }
  #main-container.home .series-posts-area .series-block h3 a .series-thumb {
    order: 3;
  }
  #main-container.home .series-posts-area .series-block .post-list {
    order: 2;
  }
  .page-about .about-kv .kv-lower figure.lower-image {
    display: none;
  }
}

@media (min-width: 880px) and (hover: hover) {
  #main-container.home .series-posts-area .series-block h3 a .series-title:hover {
    background: #FCCC7B;
  }
}

@media (min-width: 1292px) {
  .page-about .about-kv .about-kv-inner {
    background-size: 1292px auto, 1400px auto;
  }
}

@media (max-width: 979.9px) {
  .page-about .about-kv .about-kv-inner {
    background: none;
  }
  .page-about .about-kv .kv-lower .text {
    max-width: none;
  }
}

@media (max-width: 979.9px) and (min-width: 880px) {
  .page-about .about-kv .kv-lower {
    display: flex;
    gap: 0px;
    flex-direction: row-reverse;
    align-items: flex-end;
  }
}

@media (min-width: 980px) {
  .page-about .about-kv .kv-lower figure.upper-image {
    display: none;
  }
}

@media (min-width: 481px) {
  .page-about .member-area .member-container .member-list > li .profile .uni br {
    display: none;
  }
}

@media (min-width: 768px) {
  .page-about .column-area .post-list {
    flex-direction: row;
    gap: 40px;
    flex-wrap: wrap;
  }
  .page-about .column-area .post-list > li {
    border-right: none;
    width: calc(33.3333333333% - 26.6666666667px);
    flex-direction: column;
    padding: 0;
    gap: 20px;
  }
  .page-about .column-area .post-list > li .thumb {
    width: 100%;
  }
  .page-about .column-area .post-list > li .title-block {
    padding-inline: 10px;
    padding-block-end: 30px;
  }
  .page-about .column-area .post-list > li .category-label {
    top: -10px;
    left: -10px;
  }
}

@media (min-width: 768px) and (max-width: 879.9px) {
  .page-about .column-area .post-list > li {
    width: calc(50% - 20px);
  }
}

@media (min-width: 768px) and (hover: hover) {
  .page-about .column-area .post-list > li:hover .has-triangle::after {
    background: #fff;
  }
}
/*# sourceMappingURL=style.css.map */
