@charset "UTF-8";
/*--------------------------------------------------------------
 TABLE OF CONTENTS
 >>> CMS周りに共通するスタイルがメインに記述されているファイル
----------------------------------------------------------------
# reset
# ホバー時の挙動
# 共通パーツ：ページナビ
# 下層ページのタイトルヘッダー
# トップページのタイトルヘッダー
# 全体共通
    - サイドバー
# CMS共通
    - CMS：シングルページ（共通）
    - CMS：シングル・アーカイブページ（共通）
# CMS：お知らせ
    - サイドバー（デフォルト投稿：お知らせ）
    - シングルページ（デフォルト投稿：お知らせ）
    - アーカイブページ（デフォルト投稿：お知らせ）
# CMS：学生の声
    - サイドバー（学生の声）
    - シングルページ（学生の声）
    - アーカイブページ（学生の声）
# CMS：教員紹介
    - シングルページ（教員紹介）
    - アーカイブページ（教員紹介）
# CMS：合格体験談
    - サイドバー（合格体験談）
    - シングルページ（合格体験談）
    - アーカイブページ（合格体験談）
# CMS：よくある質問
    - シングル・アーカイブ共通（よくある質問）
# CMS：シングル・アーカイブページ（レスポンシブ）
# 固定ページで呼び出す投稿一覧　レイアウト調整 
# 404エラーページ
# サイトマップ
# 全体共通（追加）
--------------------------------------------------------------*/
/* =====================================================
  reset
===================================================== */
input:focus, input:active {
  outline: none;
  background-color: #fff;
}
input[type=submit] {
  background: transparent;
}

[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

#sidebar a {
  -webkit-font-smoothing: antialiased;
}

/* =====================================================
  ホバー時の挙動
===================================================== */
.sidebar a {
  transition: 0.3s ease-in;
}
.sidebar a:hover {
  opacity: 0.7 !important;
}

.wp-block-buttons a {
  transition: 0.3s ease-in;
}
.wp-block-buttons a:hover {
  opacity: 0.8;
}

.btn-shadow a {
  transition: 0.2s ease-in;
}
.btn-shadow a:hover {
  transform: translate(0.2rem, 0.2rem);
  box-shadow: 0.3rem 0.3rem #ecf2e2;
}

.btn-shadow.-blue a:hover {
  transform: translate(0.2rem, 0.2rem);
  box-shadow: 0.3rem 0.3rem #caede8;
}

.single .entry-content a {
  transition: 0.3s ease-in;
}
.single .entry-content a:hover {
  color: #006241;
}
.single .category-list a, .single .post-categories a {
  transition: 0.3s ease-in;
}
.single .category-list a:hover, .single .post-categories a:hover {
  opacity: 0.7;
}

.post-type-archive-staff .site-main a {
  color: #004BB1;
  transition: 0.3s ease-in;
}

.tax-faq_cat .site-main .accordion-contents a:not(.wp-block-button__link),
.post-type-archive-post-faq .site-main .accordion-contents a:not(.wp-block-button__link) {
  color: #004BB1;
}

.tax-faq_cat .site-main .accordion-contents a:not(.wp-block-button__link)[target=_blank],
.post-type-archive-post-faq .site-main .accordion-contents a:not(.wp-block-button__link)[target=_blank] {
  position: relative;
  padding-right: 1.25rem;
}
.tax-faq_cat .site-main .accordion-contents a:not(.wp-block-button__link)[target=_blank]::after,
.post-type-archive-post-faq .site-main .accordion-contents a:not(.wp-block-button__link)[target=_blank]::after {
  position: absolute;
  right: 0.25rem;
  content: url(../img/icon-link_bl.svg);
}

.post-type-archive-staff .site-main a:hover, .post-type-archive-post-faq .site-main a:hover {
  color: #006241;
}

.post-type-archive-staff .link:hover, .post-type-archive-post-faq .link:hover {
  color: #006241 !important;
}

.archive .article-wrapper {
  transition: 0.2s ease-in;
}
.archive .article-wrapper:hover {
  transform: translate(0.15rem, 0.15rem);
  box-shadow: 0.3rem 0.3rem #f4f4f4;
}

/* =====================================================
  共通パーツ：ページナビ
===================================================== */
.archive .site-main .archive-flex {
  padding-bottom: 2rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #006241;
}
.archive .archive-list {
  padding-bottom: 1rem;
  border-bottom: 1px solid #006241;
}
.archive .article-wrapper:hover {
  color: #1C1C1C;
}
.archive .pagenav {
  padding: 1rem 0 0;
  text-align: center;
  margin: 0;
  font-weight: 500;
  border-top: 2px solid #006241;
}
.archive .pagenav .pagenav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.archive .pagenav .pagenav-inner li a {
  background-color: #ECF2E2;
  color: #888888;
  border-radius: 2px;
  width: 24px;
  line-height: 1;
  display: inline-block;
  padding: 6px 0 3px;
}
.archive .pagenav .pagenav-inner li.current a {
  background-color: #006241;
  color: #fff;
}
.archive .pagenav .pagenav-inner .spancount {
  margin: 0 0.5rem;
}
.archive .pagenav .pagenav-inner .next-item {
  margin-left: 1rem;
}
.archive .pagenav .pagenav-inner .next-item .next {
  padding-left: 4%;
  background-image: url(../img/icon-next_g.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 8px;
  width: 4px;
  display: inline-block;
  position: relative;
  left: 4%;
}
.archive .pagenav .pagenav-inner .prev-item {
  margin-right: 0.5rem;
}
.archive .pagenav .pagenav-inner .prev-item .prev {
  padding-right: 4%;
  background-image: url(../img/icon-prev_g.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 8px;
  width: 4px;
  display: inline-block;
  margin-right: 8px;
}

/* =====================================================
  下層ページのタイトルヘッダー
===================================================== */
.error-404 .entry-header, .single .entry-header, .archive .entry-header, .sub-templete .entry-header {
  position: relative;
}

.error-404 .entry-header .entry-title,
.single .entry-header .entry-title,
.archive .entry-header .entry-title,
.sub-templete .entry-header .entry-title {
  font-weight: normal;
  position: absolute;
  margin: 0;
  top: 50%;
  left: 7.75rem;
  transform: translateY(-50%);
  font-family: "BIZ UDMincho", serif;
  vertical-align: middle;
}

.error-404 .entry-header .entry-title .entry-subtitle,
.single .entry-header .entry-title .entry-subtitle,
.archive .entry-header .entry-title .entry-subtitle,
.sub-templete .entry-header .entry-title .entry-subtitle {
  position: relative;
  top: -4px;
  left: 2rem;
  font-weight: 500;
  font-size: 0.75rem;
}

.error-404 .entry-header::after,
.single .entry-header::after,
.archive .entry-header::after,
.sub-templete .entry-header::after {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 6.5rem;
  height: 1px;
  background-color: #1C1C1C;
}

.error-404 .entry-header .entry-header__bg img,
.single .entry-header .entry-header__bg img,
.archive .entry-header .entry-header__bg img,
.sub-templete .entry-header .entry-header__bg img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 144px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .single .entry-header,
.error-404 .entry-header,
.archive .entry-header,
.sub-templete .entry-header {
    position: relative;
  }
  .single .entry-header::after,
.error-404 .entry-header::after,
.archive .entry-header::after,
.sub-templete .entry-header::after {
    width: 3rem;
  }
  .single .entry-header .entry-title,
.error-404 .entry-header .entry-title,
.archive .entry-header .entry-title,
.sub-templete .entry-header .entry-title {
    font-size: 1.5rem;
    left: 4rem;
    padding-right: 1rem;
    line-height: 1.4;
    font-size: 22px;
  }
  .single .entry-header .entry-title .entry-subtitle,
.error-404 .entry-header .entry-title .entry-subtitle,
.archive .entry-header .entry-title .entry-subtitle,
.sub-templete .entry-header .entry-title .entry-subtitle {
    display: none;
  }
  .single .entry-header .entry-header__bg img,
.error-404 .entry-header .entry-header__bg img,
.archive .entry-header .entry-header__bg img,
.sub-templete .entry-header .entry-header__bg img {
    height: 100px;
  }
}
/* =====================================================
  トップページのタイトルヘッダー
===================================================== */
.page-lp .entry-header_noimg,
.top-templete .entry-header_noimg {
  position: relative;
}

.page-lp .entry-header_noimg .entry-title_noimg,
.top-templete .entry-header_noimg .entry-title_noimg {
  font-weight: normal;
  position: absolute;
  margin: 0;
  top: 50%;
  left: 7.75rem;
  transform: translateY(-50%);
  font-family: "BIZ UDMincho", serif;
  vertical-align: middle;
}

.page-lp .entry-header_noimg .entry-title_noimg .entry-subtitle,
.top-templete .entry-header_noimg .entry-title_noimg .entry-subtitle {
  position: relative;
  top: -4px;
  left: 2rem;
  font-weight: 500;
  font-size: 0.75rem;
}

.page-lp .entry-header_noimg::after,
.top-templete .entry-header_noimg::after {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 6.5rem;
  height: 1px;
  background-color: #1C1C1C;
}

.page-lp .entry-header_noimg .entry-header__bg img,
.top-templete .entry-header_noimg .entry-header__bg img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 144px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .page-lp .entry-header, .top-templete .entry-header {
    position: relative;
  }
  .page-lp .entry-header::after, .top-templete .entry-header::after {
    width: 3rem;
  }
  .page-lp .entry-header .post-thumbnail img, .top-templete .entry-header .post-thumbnail img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 200px;
  }
  .page-lp .entry-header .entry-title, .top-templete .entry-header .entry-title {
    position: absolute;
    font-size: 1.5rem;
    bottom: -10%;
    font-size: 1.25rem;
    margin-right: 1rem;
    line-height: 1.4;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .page-lp .entry-header .entry-title .entry-subtitle, .top-templete .entry-header .entry-title .entry-subtitle {
    display: none;
  }
  .page-lp .entry-header .entry-header__bg img, .top-templete .entry-header .entry-header__bg img {
    height: 100px;
  }
}
/* =====================================================
  全体共通
===================================================== */
/*
  サイドバー
-----------------------------------------------------*/
.sidebar {
  padding: 1.75rem;
}

@media screen and (max-width: 480px) {
  .sidebar {
    padding: 1.5rem;
  }
}
.sidebar-return {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #707070;
  text-decoration: underline;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.sidebar-title {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.sidebar-item.undergraduate .cat-item-56 {
  font-size: 1rem;
}
.sidebar-item.undergraduate .cat-item-56 a::after {
  display: none;
}
.sidebar-item.undergraduate .children {
  margin: 1rem 0 0;
  font-size: 0.9rem;
}
.sidebar-item.undergraduate .children a {
  white-space: nowrap;
}
.sidebar-item.undergraduate .children a::after {
  display: block;
}
.sidebar-item.year {
  padding-top: 0;
}
.sidebar-item li:not(:last-child) {
  margin-bottom: 0.6rem;
}
.sidebar-item li a::after {
  top: 50%;
  left: -20px;
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-top: 1px solid #5D5D5D;
  border-right: 1px solid #5D5D5D;
  transform: rotate(45deg) translateY(-50%);
}
.sidebar-item.categories {
  padding: 0;
  border: 0;
}
.sidebar-item.tag .cat-item a {
  border: 1px solid #1DA678;
  padding: 0;
  line-height: 25px;
  display: inline-block;
  color: #1DA678;
}
.sidebar-item.tag a::after {
  display: none;
}
.sidebar-item.search {
  padding-bottom: 0;
  border-bottom: 0;
}
.sidebar-item.search .sidebar-title {
  margin-bottom: 0;
}
.sidebar-item.search .search-field {
  width: 100%;
  border: 1px solid #5D5D5D;
  border-radius: 0;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
}
.sidebar-item.search .search-submit {
  background: #888888;
  padding: 0.5rem;
  color: #fff;
  border: 0;
  border-radius: 0;
  width: 100%;
}

.sidebar-shadow {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: #fff;
  border: 1px solid #1DA678;
  box-shadow: 0.5rem 0.5rem #ecf2e2;
  padding: 2.5rem 1.75rem 0.5rem;
  box-sizing: border-box;
}
.sidebar-shadow .sidebar-title {
  text-align: center;
  background-image: linear-gradient(90deg, #fff 0%, #fff 35%, #1DA678 35%, #1DA678 65%, #fff 65%, #fff 100%);
  background-size: 100% 2px;
  background-repeat: no-repeat;
  background-position: center bottom;
  padding-bottom: 1.5rem;
  margin-bottom: 3rem;
  line-height: 1.4;
}
.sidebar-shadow .sidebar-title p {
  font-weight: 500;
}
.sidebar-shadow .siber-menu li {
  border-bottom: 1px dashed #1c1c1c;
  padding-bottom: 1.1rem;
  margin-bottom: 1.1rem;
  line-height: 1.6;
  font-size: 13px;
}
.sidebar-shadow .siber-menu li:last-child {
  margin-bottom: 0;
}
.sidebar-shadow .siber-menu li a:hover {
  color: #1c1c1c;
}
.sidebar-shadow .sidebar-item {
  border-bottom: 0;
}
.sidebar-shadow .sidebar-item a {
  display: inline-block;
}

@media screen and (max-width: 960px) {
  .sidebar-shadow .sidebar-title {
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    background-size: 20% 2px;
  }
  .sidebar-shadow .siber-menu li {
    padding-bottom: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .contents-wrapper.sub-templete > .contents .sidebar-shadow .sidebar-title p {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .sidebar-title p {
    font-size: 1rem;
  }
}
.u-sidebar {
  width: calc(100% + 0.5rem);
  position: relative;
  margin-top: 2rem;
}
.u-sidebar .wp-block-columns {
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  flex-wrap: nowrap !important;
}
.u-sidebar .wp-block-columns .wp-block-button {
  position: relative;
}
.u-sidebar .wp-block-columns .wp-block-button::after {
  position: absolute;
  top: 50%;
  right: 0.7rem;
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-top: 1px solid #5D5D5D;
  border-right: 1px solid #5D5D5D;
  transform: rotate(45deg) translateY(-50%);
}
.u-sidebar .wp-block-columns .wp-block-button .wp-block-button__link {
  border-radius: 0px;
  background-color: #ecf2e2;
  color: #1c1c1c;
  font-size: 12px;
  text-align: left;
  padding: 0.5rem;
  padding-right: 0.75rem;
  letter-spacing: 0.01em;
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .u-sidebar .wp-block-columns {
    margin-bottom: 0.75rem;
  }
}
@media screen and (max-width: 768px) {
  .u-sidebar {
    width: 100%;
  }
}
/* =====================================================
  CMS共通
===================================================== */
/*
  CMS：シングルページ（共通）
-----------------------------------------------------*/
.page .entry-content p, .page .entry-content li, .page .entry-content h1, .page .entry-content h2, .page .entry-content h3, .page .entry-content h4, .page .entry-content h5, .page .entry-content h6,
.single .entry-content p,
.single .entry-content li,
.single .entry-content h1,
.single .entry-content h2,
.single .entry-content h3,
.single .entry-content h4,
.single .entry-content h5,
.single .entry-content h6 {
  word-break: normal;
}
.page .entry-content a.-link,
.single .entry-content a.-link {
  color: #004BB1;
}
.page .entry-content .is-provider-youtube iframe,
.single .entry-content .is-provider-youtube iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}
.page .site-main .post-navigation,
.single .site-main .post-navigation {
  border-top: 1px solid #006241;
  padding-top: 0.5rem;
  margin-bottom: 0;
}
.page .site-main .post-navigation .nav-links,
.single .site-main .post-navigation .nav-links {
  position: relative;
  border-top: 2px solid #006241;
  padding-top: 2.5rem;
  margin-bottom: 4rem;
  display: flex;
}
.page .site-main .post-navigation .nav-links a,
.single .site-main .post-navigation .nav-links a {
  color: #006241;
  letter-spacing: 0.01em;
  font-weight: 500;
  font-family: "Josefin Sans";
}
.page .site-main .post-navigation .nav-links .nav-previous,
.single .site-main .post-navigation .nav-links .nav-previous {
  position: absolute;
  left: 0;
}
.page .site-main .post-navigation .nav-links .nav-previous a::before,
.single .site-main .post-navigation .nav-links .nav-previous a::before {
  top: 40%;
  right: -0.75rem;
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-top: 1px solid #006241;
  border-left: 1px solid #006241;
}
.page .site-main .post-navigation .nav-links .nav-next,
.single .site-main .post-navigation .nav-links .nav-next {
  position: absolute;
  right: 0;
}
.page .site-main .post-navigation .nav-links .nav-next a::after,
.single .site-main .post-navigation .nav-links .nav-next a::after {
  top: 40%;
  right: -0.75rem;
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-top: 1px solid #006241;
  border-right: 1px solid #006241;
  transform: rotate(45deg) translateY(-50%);
}

/* 教員紹介用ページナビ start */
.single .site-main .post-navigation .nav-previous{
    padding-left: 0;
    padding-right: 1.1rem;
}
.single .site-main .post-navigation .nav-next{
    padding-left: 1.1rem;
    padding-right: 0;
}
.single-voice .site-main .post-navigation .nav-links .nav-next,
.single-success .site-main .post-navigation .nav-links .nav-next,
.single-staff .site-main .post-navigation .nav-links .nav-next{
    position: absolute;
    right: auto;
    left: 0;
}
.single-voice .site-main .post-navigation .nav-links .nav-next a::before,
.single-success .site-main .post-navigation .nav-links .nav-next a::before,
.single-staff .site-main .post-navigation .nav-links .nav-next a::before{
    top: 40%;
    left: -0.75rem;
    content: "";
    width: 0.4rem;
    height: 0.4rem;
    border-top: 1px solid #006241;
    border-left: 1px solid #006241;
    transform: rotate(-45deg) translateY(-50%);
}
.single-voice .site-main .post-navigation .nav-links .nav-previous,
.single-success .site-main .post-navigation .nav-links .nav-previous,
.single-staff .site-main .post-navigation .nav-links .nav-previous{
    position: absolute;
    left: auto;
    right: 0;
}
.single-voice .site-main .post-navigation .nav-links .nav-next a::after,
.single-voice .site-main .post-navigation .nav-links .nav-previous a::before,
.single-success .site-main .post-navigation .nav-links .nav-next a::after,
.single-success .site-main .post-navigation .nav-links .nav-previous a::before,
.single-staff .site-main .post-navigation .nav-links .nav-next a::after,
.single-staff .site-main .post-navigation .nav-links .nav-previous a::before{
    display: none;
}
.single-voice .site-main .post-navigation .nav-links .nav-previous a::after,
.single-success .site-main .post-navigation .nav-links .nav-previous a::after,
.single-staff .site-main .post-navigation .nav-links .nav-previous a::after{
    top: 40%;
    right: -0.75rem;
    content: "";
    width: 0.4rem;
    height: 0.4rem;
    border-top: 1px solid #006241;
    border-right: 1px solid #006241;
    transform: rotate(45deg) translateY(-50%);
}
/* 教員紹介用ページナビ end */

.page .site-main .return-list,
.single .site-main .return-list {
  border: none;
}
.page .site-main .return-list .return-list__btn,
.single .site-main .return-list .return-list__btn {
  font-family: "源ノ角ゴシック JP", sans-serif;
  color: #006241;
  letter-spacing: 0.1em;
}

/*
  CMS：シングル・アーカイブページ（共通）
-----------------------------------------------------*/
.contents {
  display: flex;
  justify-content: space-between;
  /* お知らせでサイドバー伸びてしまっていたので指定↓ */
  align-items: flex-start;
}

.single .title {
  margin: 0 auto 3rem;
  padding: 1.1rem 0;
  font-weight: normal;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}
.single .site-main {
  width: 72%;
}
.single .site-main .post-flex {
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  margin: 0 5% 6rem 2.5%;
}
.single .site-main .category-list a {
  color: #fff;
  background: #5D5D5D;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  padding: 0.4rem 0.55rem;
  margin: 0 1rem 0 0;
}
.single .site-main .post-navigation {
  margin-bottom: 5rem;
}
.single .site-main .post-navigation .nav-previous {
  padding-left: 1.1rem;
}
.single .site-main .post-navigation .nav-previous a:before {
  top: 50%;
  left: -0.75rem;
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-top: 1px solid #888888;
  border-left: 1px solid #888888;
  transform: rotate(-45deg) translateY(-50%);
}
.single .site-main .post-navigation .nav-next {
  padding-right: 1.1rem;
}
.single .site-main .post-navigation .nav-next a:after {
  top: 50%;
  right: -0.75rem;
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-top: 1px solid #888888;
  border-right: 1px solid #888888;
  transform: rotate(45deg) translateY(-50%);
}
.single .site-main .return-list {
  margin: 0 auto;
  padding: 0.4rem 0.55rem;
}
.single .site-main .return-list a {
  display: block;
  text-align: center;
}

.sidebar_success,
.sidebar_news,
.sidebar_voice {
  background-color: #ECF2E2;
  padding: 1.75rem 1.37rem 4rem;
}

.sidebar_voice .sidebar-item.undergraduate a {
  display: inline-block;
}

.sidebar_success .sidebar-item,
.sidebar_news .sidebar-item:not(.search),
.sidebar_voice .sidebar-item:not(.search) {
  border-bottom: none;
  padding-top: 0;
  margin-bottom: 3rem;
}

.sidebar_success .sidebar-item:last-child {
  margin-bottom: 0;
}

.sidebar_success .sidebar-item,
.sidebar_news .sidebar-item:not(.search),
.sidebar_voice .sidebar-item:not(.search) {
  border-bottom: none;
  padding-top: 0;
  margin-bottom: 3rem;
}

.sidebar_success .sidebar-item .sidebar-title, .sidebar_news .sidebar-item:not(.search) .sidebar-title, .sidebar_voice .sidebar-item:not(.search) .sidebar-title {
  line-height: 1.4;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #1DA678;
}

.sidebar_success .sidebar-item li, .sidebar_news .sidebar-item:not(.search) li, .sidebar_voice .sidebar-item:not(.search) li {
  line-height: 1.4;
  padding-left: 18px;
}

.sidebar_success .sidebar-item li a, .sidebar_news .sidebar-item:not(.search) li a, .sidebar_voice .sidebar-item:not(.search) li a {
  color: #1C1C1C;
}

.sidebar_success .sidebar-item .year-list li, .sidebar_news .sidebar-item:not(.search) .year-list li, .sidebar_voice .sidebar-item:not(.search) .year-list li {
  padding-bottom: 0.5rem;
}

.sidebar_success .sidebar-item .category-list > .menu-item, .sidebar_success .sidebar-item .category-list > li + li {
  margin-top: 1.1rem;
}

.sidebar_news .sidebar-item:not(.search) .category-list > .menu-item, .sidebar_news .sidebar-item:not(.search) .category-list > li {
  margin-bottom: 1.1rem;
  padding-left: 0;
}

.sidebar_voice .sidebar-item:not(.search) .category-list > .menu-item, .sidebar_voice .sidebar-item:not(.search) .category-list > li {
  margin-bottom: 1.1rem;
}

.sidebar_success .sidebar-item .category-list .sub-menu li, .sidebar_news .sidebar-item:not(.search) .category-list .sub-menu li, .sidebar_voice .sidebar-item:not(.search) .category-list .sub-menu li {
  padding-top: 0.75rem;
}

.sidebar_news .sidebar-item.search, .sidebar_voice .sidebar-item.search {
  padding-top: 2rem;
  border-top: 1px solid #1DA678;
}

.sidebar_success .sidebar-item.search .serch-input-wrapper, .sidebar_news .sidebar-item.search .serch-input-wrapper, .sidebar_voice .sidebar-item.search .serch-input-wrapper {
  position: relative;
}

.sidebar_success .sidebar-item.search .serch-input-wrapper::after, .sidebar_news .sidebar-item.search .serch-input-wrapper::after, .sidebar_voice .sidebar-item.search .serch-input-wrapper::after {
  position: absolute;
  left: 0.5rem;
  top: 2px;
  content: "";
  background-image: url(../img/icon-search.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
}

.sidebar_success .sidebar-item.search .serch-input-wrapper input, .sidebar_news .sidebar-item.search .serch-input-wrapper input, .sidebar_voice .sidebar-item.search .serch-input-wrapper input {
  padding-left: 2rem;
  border: none;
  font-size: 15px;
}

.sidebar_success .sidebar-item.search .sidebar-title, .sidebar_news .sidebar-item.search .sidebar-title, .sidebar_voice .sidebar-item.search .sidebar-title {
  margin-bottom: 1rem;
}

.sidebar_success .sidebar-item.search .search-form .search-field, .sidebar_news .sidebar-item.search .search-form .search-field, .sidebar_voice .sidebar-item.search .search-form .search-field {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  border: none;
  border-radius: 0 !important;
}

.sidebar_success .sidebar-item.search .search-submit, .sidebar_news .sidebar-item.search .search-submit, .sidebar_voice .sidebar-item.search .search-submit {
  margin-top: 0.5rem;
  background-color: #1DA678;
  line-height: 40px;
  padding: 0;
  letter-spacing: 0.2em;
}

.sidebar_success .sidebar-item.search .search-submit:hover, .sidebar_news .sidebar-item.search .search-submit:hover, .sidebar_voice .sidebar-item.search .search-submit:hover {
  cursor: pointer;
}
.tax-faq_cat .sidebar-wrapper,
.post-type-archive-post-faq .sidebar-wrapper{
    width: 24%;
    min-width: 248px;
}
@media screen and (max-width: 768px) {
    .tax-faq_cat .sidebar-wrapper,
    .post-type-archive-post-faq .sidebar-wrapper{
        min-width: 100%;
    }  
}
.sidebar_faq {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: #fff;
  border: 1px solid #1DA678;
  box-shadow: 0.5rem 0.5rem #ecf2e2;
}
.sidebar_faq .sidebar-title {
  text-align: center;
  background-image: linear-gradient(90deg, #fff 0%, #fff 35%, #1DA678 35%, #1DA678 65%, #fff 65%, #fff 100%);
  background-size: 100% 2px;
  background-repeat: no-repeat;
  background-position: center bottom;
  padding-bottom: 1.5rem;
  margin-bottom: 3rem;
}
.sidebar_faq .siber-menu li {
  border-bottom: 1px dashed #1c1c1c;
  padding-bottom: 1em;
  margin-bottom: 1rem;
  padding-left: 18px;
}
.sidebar_faq .siber-menu li:last-child {
  margin-bottom: 0;
}
.sidebar_faq .siber-menu li .children li {
  border-bottom: none;
  padding-bottom: 0;
}
.sidebar_faq .sidebar-item {
  border-bottom: 0;
}

.sidebar_success .sidebar-item.search {
  margin-top: 0;
}

@media screen and (max-width: 960px) {
  .sidebar_faq .sidebar-title {
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    background-size: 20% 2px;
  }
}
@media screen and (max-width: 960px) {
  .sidebar_faq .siber-menu li {
    padding-bottom: 1rem;
  }
}
.archive-success-template .page-header .title, .archive-voice-template .page-header .title {
  background-color: #fff;
  position: relative;
  background: transparent;
  font-size: 1.25rem;
  padding-bottom: 1.25rem;
  margin-bottom: 3rem;
  line-height: 1.4;
}

.archive-success-template .page-header .title::after, .archive-voice-template .page-header .title::after {
  position: absolute;
  left: calc(50% - 24px);
  bottom: 0;
  content: "";
  background-color: #1DA678;
  width: 48px;
  height: 2px;
}

.archive .site-main {
  width: 72%;
}
.archive .site-main .title {
  text-align: center;
}
.archive .site-main .archive-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 3.5%;
}
.archive .site-main .article-wrapper {
  display: block;
  width: 31%;
  border: 1px solid #707070;
  padding: 1.5%;
  background-color: #fff;
}
.archive .site-main .post-flex {
  display: flex;
  justify-content: space-between;
}
.archive .site-main .post-flex-item__l {
  width: 40%;
}
.archive .site-main .post-flex-item__r {
  width: calc(100% - 0.5rem - 40%);
}
.archive .site-main .post-flex time {
  font-size: 0.75rem;
  line-height: 1;
}
.archive .site-main .post-flex .category-list__item {
  color: #fff;
  background: #5D5D5D;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  padding: 5%;
  margin: 0 0 0.5rem 0;
  display: inline-block;
}
.archive .site-main .post-flex .post-title {
  line-height: 1;
}
.archive .site-main .post-flex .post-title a:hover {
  color: #1c1c1c;
}
.archive .site-main .school-list {
  font-size: 0.75rem;
}
.archive .site-main .primary-school {
  margin-bottom: 0;
  line-height: 1.7;
}
.archive .site-main .primary-school__title, .archive .site-main .high-school__title {
  margin-right: 1rem;
}

@media screen and (max-width: 1024px) {
  .archive-success-template .contents, .archive-voice-template .contents {
    width: calc(100% - 40px);
  }
}
/* =====================================================
  CMS：お知らせ
===================================================== */
/*
   サイドバー（デフォルト投稿：お知らせ）
-----------------------------------------------------*/
.sidebar_news {
  background-color: #ECF2E2;
  padding: 1.75rem 1.37rem 4rem;
}
.sidebar_news .sidebar-item:not(.search) {
  border-bottom: none;
  padding-top: 0;
}
.sidebar_news .sidebar-item:not(.search) .sidebar-title {
  line-height: 1.4;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #1DA678;
}
.sidebar_news .sidebar-item:not(.search) li {
  line-height: 1.4;
}
.sidebar_news .sidebar-item:not(.search) li a {
  color: #1C1C1C;
}
.sidebar_news .sidebar-item:not(.search) .year-list li {
  padding-bottom: 0.75rem;
}
.sidebar_news .sidebar-item:not(.search) .category-list > .menu-item {
  margin-bottom: 1.1rem;
}
.sidebar_news .sidebar-item:not(.search) .category-list .sub-menu li {
  padding-top: 0.75rem;
}
.sidebar_news .sidebar-item.search {
  margin-top: 2rem;
  border-top: 1px solid #1DA678;
}
.sidebar_news .sidebar-item.search .serch-input-wrapper {
  position: relative;
}
.sidebar_news .sidebar-item.search .serch-input-wrapper::after {
  position: absolute;
  left: 0.5rem;
  top: 2px;
  content: "";
  background-image: url(../img/icon-search.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
}
.sidebar_news .sidebar-item.search .serch-input-wrapper input {
  padding-left: 2rem;
  border: none;
  font-size: 15px;
}
.sidebar_news .sidebar-item.search .sidebar-title {
  margin-bottom: 1rem;
}
.sidebar_news .sidebar-item.search .search-form .search-field {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  border: none;
  border-radius: 0 !important;
}
.sidebar_news .sidebar-item.search .search-submit {
  margin-top: 0.5rem;
  background-color: #1DA678;
  line-height: 40px;
  padding: 0;
  letter-spacing: 0.2em;
}
.sidebar_news .sidebar-item.search .search-submit:hover {
  cursor: pointer;
}

.sidebar_news .sidebar-item:not(.year) li {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar_news .sidebar-item:not(.year) li a {
  display: block;
  position: relative;
  padding-right: 2rem;
}
.sidebar_news .sidebar-item:not(.year) li a:hover {
  opacity: 1 !important;
}
.sidebar_news .sidebar-item:not(.year) li a::after, .sidebar_news .sidebar-item:not(.year) li a::before {
  content: none;
}
.sidebar_news .sidebar-item:not(.year) li a .js-sidebar-toggle {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 2rem;
}
.sidebar_news .sidebar-item:not(.year) li a .js-sidebar-toggle::after {
  position: absolute;
  content: "";
  right: 7px;
  width: 2px;
  height: 12px;
  background-color: #1DA678;
  top: calc(50% - 6px);
  transition: 0.3s ease;
}
.sidebar_news .sidebar-item:not(.year) li a .js-sidebar-toggle::before {
  position: absolute;
  right: 2px;
  content: "";
  width: 12px;
  height: 2px;
  top: calc(50% - 1px);
  background-color: #1DA678;
}
.sidebar_news .sidebar-item:not(.year) li a .js-sidebar-toggle.open::after {
  opacity: 0;
}
.sidebar_news .sidebar-item:not(.year) .sub-menu {
  margin: 0;
  padding-bottom: 1rem;
}
.sidebar_news .sidebar-item:not(.year) .sub-menu .menu-item {
  position: relative;
  font-size: 13px;
  padding-left: 1rem;
  margin: 0;
}
.sidebar_news .sidebar-item:not(.year) .sub-menu .menu-item::after {
  position: absolute;
  left: 0;
  top: calc(50% - 3px);
  content: url(../img/icon-right.svg);
}

/*
   シングルページ（デフォルト投稿：お知らせ）
-----------------------------------------------------*/
.post-type-news .news-post__header {
  width: calc(100% - 60px);
  margin: auto;
}
.post-type-news .news-post__header .title {
  position: relative;
  background: transparent;
  font-size: 1.25rem;
  padding-bottom: 1.25rem;
  margin-bottom: 2rem;
}
.post-type-news .news-post__header .title::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  background-color: #006241;
  width: 48px;
  height: 2px;
}
.post-type-news .news-post__header .post-meta {
  margin-bottom: 3.5rem;
  text-align: left;
}
.post-type-news .news-post__header .post-meta .post-categories {
  gap: 1rem;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.post-type-news .news-post__header .post-meta .post-categories a {
  background-color: #1DA678;
  margin: 0;
  font-size: 0.75rem;
  padding: 2px 8px;
  font-weight: 500;
  color: #fff;
}
.post-type-news .news-post__header .post-thumbnail {
  margin-bottom: 2rem;
}
.post-type-news .news-post .entry-content {
  width: calc(100% - 60px);
  margin: auto auto 5rem;
}
.post-type-news .news-post .entry-content .is-provider-youtube {
  text-align: center;
}
.post-type-news .news-post .entry-content h3 {
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #006241;
  margin-top: 2rem;
  color: #006241;
}
.post-type-news .news-post .entry-content h2 {
  margin-bottom: 0.5rem;
  color: #006241;
  margin-top: 2rem;
  border-bottom: 3px double #006241;
}
.post-type-news .news-post .entry-content h4 {
  margin-bottom: 0.5rem;
  margin-top: 2rem;
}
.post-type-news .news-post .entry-content ol {
  margin-left: 0;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}
.post-type-news .news-post .entry-content ul {
  padding-left: 0;
  margin-bottom: 1rem;
}
.post-type-news .news-post .entry-content ul li {
  position: relative;
  padding-left: 1rem;
}
.post-type-news .news-post .entry-content ul li::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}
.post-type-news .news-post .entry-content a {
  color: #4169e1;
}
.post-type-news .news-post .entry-content a:hover {
  color: #006241;
}
.post-type-news .news-post .entry-content .wp-block-buttons {
  margin-bottom: 1rem;
}
.post-type-news .news-post .entry-content .wp-block-button:not(.icon-link) .wp-block-button__link,
.post-type-news .news-post .entry-content .wp-block-button:not(.btn-arrow) .wp-block-button__link {
  display: block;
  width: 270px;
  margin: auto;
}
.post-type-news .news-post .entry-content .wp-block-image {
  margin-top: 1em;
}
@media screen and (max-width: 480px) {
  .post-type-news .news-post .entry-content .wp-block-columns {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .post-type-news .news-post__header {
    width: 100%;
  }
  .post-type-news .news-post__header .title {
    font-size: 1.25rem;
    line-height: 1.6;
  }
  .post-type-news .news-post__header .post-meta {
    margin-bottom: 1.5rem;
  }
  .post-type-news .news-post__header .post-meta .post-categories {
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .post-type-news .news-post__header .post-thumbnail {
    margin-bottom: 1rem;
  }
  .post-type-news .news-post .entry-content {
    width: 100%;
    margin: auto auto 3rem;
  }
  .post-type-news .news-post .post-navigation {
    padding-top: 0.5rem;
  }
  .post-type-news .news-post .post-navigation .nav-links {
    padding-top: 1.5rem;
    margin-bottom: 4rem;
  }
}
/*
   アーカイブページ（デフォルト投稿：お知らせ）
-----------------------------------------------------*/
.archive.news .contents .site-main {
  width: 100%;
}
.archive.news .page-header {
  margin-bottom: 4rem;
}
.archive.news .category-nav {
  margin: auto;
}
.archive.news .category-nav .category-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 830px;
  margin: auto;
}
.archive.news .category-nav .category-list__item-01 {
  font-weight: 500;
}
.archive.news .category-nav .category-list li {
  line-height: 2rem;
  margin-bottom: 8px;
}
.archive.news .category-nav .category-list li a {
  display: block;
  padding: 0.25rem 1.3rem;
  margin-right: 4px;
  margin-left: 4px;
  background-color: #ECF2E2;
  border-radius: 3px;
  transition: 0.3s ease;
}
.archive.news .category-nav .category-list li a:hover {
  opacity: 0.7;
  color: #1d1d1d;
}
.archive.news .category-nav .category-list li.active a {
  background-color: #ECF2E2;
  border-radius: 3px;
}
.archive.news .category-nav .category-list.category-list__year {
  max-width: 780px;
}
.archive.news .category-nav .category-list.category-list__year li {
  width: 20%;
  text-align: center;
}
.archive.news .category-nav-sp {
  display: none;
}
.archive.news .archive-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
.archive.news .archive-list .article-wrapper {
  display: block;
  width: 32%;
  border: 1px solid #DBDBDB;
  padding: 0;
  box-shadow: 4px 4px #F4F4F4;
  margin-bottom: 1rem;
  margin-bottom: 2%;
}
.archive.news .archive-list .article-wrapper .post-thumbnail {
  margin: 3px;
  margin-bottom: 0;
}
.archive.news .archive-list .article-wrapper .post-thumbnail img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 98/50;
}
.archive.news .archive-list .article-wrapper .post-meta {
  margin: 0.5rem 0.85rem 0.5rem;
  overflow-wrap: break-word;
  word-break: break-all;
  width: calc(100% - 1.7rem);
}
@media screen and (max-width: 480px) {
  .archive.news .archive-list .article-wrapper .post-meta {
    margin: 0.5rem 0.75rem;
    width: calc(100% - 1.5rem);
  }
}
@media screen and (max-width: 375px) {
  .archive.news .archive-list .article-wrapper .post-meta {
    margin: 0.5rem;
    width: calc(100% - 1rem);
  }
}
.archive.news .archive-list .article-wrapper .post-meta .post-year {
  font-size: 0.75rem;
  display: block;
  line-height: 1;
}
.archive.news .archive-list .article-wrapper .post-meta .post-title {
  margin: 0.5rem 0 1rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 480px) {
  .archive.news .archive-list .article-wrapper .post-meta .post-title {
    line-height: 1.3;
    margin: 0.2rem 0 1rem;
  }
}
.archive.news .archive-list .article-wrapper .post-meta .post-title a {
  display: block;
}
.archive.news .archive-list .article-wrapper .post-meta .post-title a:hover {
  color: #1c1c1c;
}
.archive.news .archive-list .article-wrapper .post-meta .post-categories {
  margin: 0;
  margin-top: 0.5rem;
  line-height: 1;
}
.archive.news .archive-list .article-wrapper .post-meta .post-categories li {
  font-size: 0.75rem;
  background-color: #006241;
  color: #fff;
  line-height: 1.4;
  padding: 3px 0.5rem;
  margin-right: 4px;
  margin-bottom: 4px;
  border-radius: 2px;
  display: inline-block;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 480px) {
    .archive.news .archive-list .article-wrapper .post-meta .post-categories li {
        line-height: 1.3;
        vertical-align: text-top;
        margin-bottom: 3px;
    }
}
@media screen and (max-width: 375px) {
  .archive.news .archive-list .article-wrapper .post-meta .post-categories li {
    font-size: 0.625rem;
  }
}
.archive.news .archive-list .article-wrapper .post-meta .post-categories li a {
  color: #fff;
}

.archive.tag #primary,
.search-post #primary,
body.blog #primary,
body.archive.date #primary,
body.archive.category #primary {
  width: 72%;
}
@media screen and (max-width: 768px) {
  .archive.tag #primary,
.search-post #primary,
body.blog #primary,
body.archive.date #primary,
body.archive.category #primary {
    width: 100%;
    margin-bottom: 5rem;
  }
}
.archive.tag #primary .archive-list,
.search-post #primary .archive-list,
body.blog #primary .archive-list,
body.archive.date #primary .archive-list,
body.archive.category #primary .archive-list {
  margin-top: 0;
}
.archive.tag .return-list.btn-shadow,
.search-post .return-list.btn-shadow,
body.blog .return-list.btn-shadow,
body.archive.date .return-list.btn-shadow,
body.archive.category .return-list.btn-shadow {
  margin-top: 3rem;
  text-align: center;
}
.archive.tag .return-list.btn-shadow a,
.search-post .return-list.btn-shadow a,
body.blog .return-list.btn-shadow a,
body.archive.date .return-list.btn-shadow a,
body.archive.category .return-list.btn-shadow a {
  display: block;
  font-family: "源ノ角ゴシック JP" , sans-serif;
  color: #006241;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1023px) {
  .archive.news .contents {
    width: calc(100% - 40px);
  }
  .archive.news .contents .archive-list .article-wrapper {
    width: 32%;
  }
}
@media screen and (max-width: 860px) {
  .archive.news .category-nav {
    display: none;
  }
  .archive.news .category-nav-sp {
    display: block;
    margin: auto;
    width: 100%;
    height: 36px;
    padding: 4px;
    text-align: center !important;
    outline: none;
    border: 1px solid #006241;
    color: #006241;
    background-color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .archive.news .contents .archive-list {
    margin: 0 auto 1rem auto;
  }
  .archive.news .contents .archive-list .article-wrapper {
    width: 49%;
  }
}
@media screen and (max-width: 520px) {
  .archive.news .contents .archive-list {
    justify-content: space-between;
  }
  .archive.news .contents .archive-list .article-wrapper {
    width: 48%;
  }
}
/* =====================================================
  CMS：学生の声
===================================================== */
/*
   サイドバー（学生の声）
-----------------------------------------------------*/
.sidebar_voice {
  background-color: #ECF2E2;
  padding: 1.75rem 1.37rem 4rem;
}
.sidebar_voice .year {
  padding-top: 1.5rem;
}
.sidebar_voice .sidebar-item:not(.search) {
  border-bottom: none;
  padding-top: 0;
}
.sidebar_voice .sidebar-item:not(.search) .sidebar-title {
  line-height: 1.4;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #1DA678;
}
.sidebar_voice .sidebar-item:not(.search) li {
  line-height: 1.4;
}
.sidebar_voice .sidebar-item:not(.search) .year-list li {
  padding-bottom: 0.75rem;
}
.sidebar_voice .sidebar-item:not(.search) .category-list > li {
  margin-bottom: 1.1rem;
}
.sidebar_voice .sidebar-item:not(.search) .category-list .sub-menu li {
  padding-top: 0.75rem;
}
.sidebar_voice .sidebar-item.search {
  margin-top: 2rem;
  border-top: 1px solid #1DA678;
}
.sidebar_voice .sidebar-item.search .serch-input-wrapper {
  position: relative;
}
.sidebar_voice .sidebar-item.search .serch-input-wrapper::after {
  position: absolute;
  left: 0.5rem;
  top: 2px;
  content: "";
  background-image: url(../img/icon-search.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
}
.sidebar_voice .sidebar-item.search .serch-input-wrapper input {
  padding-left: 2rem;
  border: none;
  font-size: 15px;
}
.sidebar_voice .sidebar-item.search .sidebar-title {
  margin-bottom: 1rem;
}
.sidebar_voice .sidebar-item.search .search-form .search-field {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  border: none;
  border-radius: 0 !important;
}
.sidebar_voice .sidebar-item.search .search-submit {
  margin-top: 0.5rem;
  background-color: #1DA678;
  line-height: 40px;
  padding: 0;
  letter-spacing: 0.2em;
}
.sidebar_voice .sidebar-item.search .search-submit:hover {
  cursor: pointer;
}
.sidebar_voice .sidebar-item.tag .tag-list li {
  position: relative;
  display: inline-block;
  margin-bottom: 0.6rem;
  padding-left: 0;
}
.sidebar_voice .sidebar-item.tag .tag-list li::after {
  position: absolute;
  top: 0.35rem;
  left: 0.5rem;
  content: "#";
  color: #1DA678;
  font-size: 0.75rem;
  font-weight: 500;
}
.sidebar_voice .sidebar-item.tag .tag-list li a {
  font-size: 0.75rem;
  font-weight: 500;
  color: #1DA678;
  padding: 0 0.5rem;
  padding-left: 1rem;
  border-radius: 1px;
}

.single-post .contents {
  flex-wrap: nowrap;
}

@media screen and (max-width: 768px) {
  .single-post .contents {
    display: block;
    width: calc(100% - 40px);
    margin-top: 2rem !important;
  }
  .single-post .contents .site-main {
    width: 100%;
  }
  .single-post .contents .site-main .wp-block-image {
    text-align: center;
  }
  .single-post .contents .sidebar {
    width: 100%;
    margin-top: 4rem;
  }
  .single-post .contents .sidebar .sidebar-item {
    max-width: 480px;
    margin-right: auto;
    margin-left: auto;
  }
  .single-post .contents .sidebar .sidebar-item p.text-15 {
    font-size: 15px;
  }
  .single-post .contents .sidebar .sidebar-item.search .serch-input-wrapper::after {
    top: 4px;
  }
}
/*
	シングルページ（学生の声）
-----------------------------------------------------*/
.single-voice .site-main .entry-content {
  margin-top: 0;
}
.single-voice .site-main .entry-content h2 {
  font-size: 1.125rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #006241;
  line-height: 1.6;
}
.single-voice .site-main .entry-content p {
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
}
.single-voice .site-main .entry-content .compamy-voice {
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .single-voice .site-main .entry-content .wp-block-image {
    margin-bottom: 3em;
  }
  .single-voice .site-main .entry-content .wp-block-image:not(:first-child) {
    margin: 8em 0 2em;
  }
}
.single-voice .site-main .post-flex {
  width: calc(100% - 40px);
  margin: 1rem auto 3.5rem;
}
@media screen and (max-width: 768px) {
  .single-voice .site-main .post-flex {
    flex-wrap: wrap;
    /* flex-direction: column-reverse; */
    gap: 2em;
  }
}
.single-voice .site-main .post-flex-item__l {
  width: 32%;
}
@media screen and (max-width: 768px) {
  .single-voice .site-main .post-flex-item__l {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 300px;
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  .single-voice .site-main .post-flex .post-sumbnail,
.single-voice .site-main .post-flex .post-meta {
    width: 48%;
  }
}
.single-voice .site-main .post-flex .post-thumbnail {
  margin-bottom: 0.25rem;
}
.single-voice .site-main .post-flex .post-thumbnail img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 96/110;
}
.single-voice .site-main .post-flex .yearly-list {
  line-height: 2;
  margin-bottom: 0.5rem;
}
.single-voice .site-main .post-flex .category-list__item {
  display: inline-block;
}
.single-voice .site-main .post-flex .category-list__item a {
  background-color: #1DA678;
  color: #fff;
  font-size: 0.75rem;
  display: inline-block;
  border-radius: 1px;
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1.3;
  padding: 0.25rem 0.5rem;
}
.single-voice .site-main .post-flex .tag-list__item {
  background-color: transparent;
  padding: 0;
}
.single-voice .site-main .post-flex .tag-list__item a {
  background-color: #fff;
  border: 1px solid #1DA678;
  color: #1DA678;
  font-size: 0.75rem;
  display: inline-block;
  padding: 0 0.5rem;
  border-radius: 1px;
  margin-bottom: 0.5rem;
}
.single-voice .site-main .post-flex-item__r {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .single-voice .site-main .post-flex-item__r {
    width: 100%;
  }
}
.single-voice .return-list a {
  margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  .single-voice .site-main .entry-content h2 {
    padding-bottom: 0.5rem;
  }
}
/*
	アーカイブページ（学生の声）
-----------------------------------------------------*/
.archive-voice-template .site-main, .archive.post-type-archive-voice .site-main {
  margin-top: 1rem;
}

.archive-voice-template .site-main .archive-flex, .archive.post-type-archive-voice .site-main .archive-flex {
  gap: 2.5%;
}

.archive-voice-template .site-main .article-wrapper, .archive.post-type-archive-voice .site-main .article-wrapper {
  display: block;
  width: 48.75%;
  padding: 1.5rem 1rem 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  border: 1px dashed #1C1C1C;
}

.archive-voice-template .site-main .article-wrapper article, .archive.post-type-archive-voice .site-main .article-wrapper article {
  margin-bottom: 0;
}

.archive-voice-template .site-main .post-flex, .archive.post-type-archive-voice .site-main .post-flex {
  margin-bottom: 1rem;
}

.archive-voice-template .site-main .post-flex-item__l, .archive.post-type-archive-voice .site-main .post-flex-item__l {
  width: 32%;
}

.archive-voice-template .site-main .post-flex-item__l img,
.archive.post-type-archive-voice .site-main .post-flex-item__l img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 96/110;
}

.archive-voice-template .site-main .post-flex-item_r,
.archive.post-type-archive-voice .site-main .post-flex-item_r {
  width: 62%;
}

.archive-voice-template .site-main .post-flex-item_r .category-list,
.archive.post-type-archive-voice .site-main .post-flex-item_r .category-list {
  margin-bottom: 0.75rem;
}

.archive-voice-template .site-main .post-flex-item_r .category-list__item,
.archive.post-type-archive-voice .site-main .post-flex-item_r .category-list__item {
  color: #fff;
  background-color: #1DA678;
  border-radius: 1px;
  font-size: 0.75rem;
  padding: 0 0.5rem;
  margin: 0 0.2rem 0.2rem 0;
  line-height: 1.3;
  padding: 0.25rem 0.5rem;
}
.archive-voice-template .site-main .post-flex-item_r .category-list__item a,
.archive.post-type-archive-voice .site-main .post-flex-item_r .category-list__item a {
  display: inline-block;
  color: #fff;
}

.archive-voice-template .site-main .post-flex-item_r .yearly-list li,
.archive.post-type-archive-voice .site-main .post-flex-item_r .yearly-list li {
  font-size: 0.81rem;
  font-weight: 500;
}

.archive-voice-template .site-main .post-flex-item_r .post-title,
.archive.post-type-archive-voice .site-main .post-flex-item_r .post-title {
  font-size: 0.93rem;
  margin-top: 0.5rem;
}

.archive-flex .voice .post-flex .post-title a:hover {
  color: #1C1C1C;
}
.archive-flex .voice .post-content h2 {
  color: #006241;
  border-bottom: 1px solid #006241;
  margin-bottom: 0.4rem;
  font-size: 15px;
  line-height: 1.2;
  padding-bottom: 0.25rem;
  font-style: italic;
  letter-spacing: 0.05em;
}
.archive-flex .voice .post-content p {
  letter-spacing: 0.05em;
}
.archive-flex .voice .post-content a:hover {
  color: #1C1C1C;
}
.archive-flex .voice .post-content .tag-list {
  margin-top: 0.75rem;
}
.archive-flex .voice .post-content .tag-list li {
  display: inline-block;
  margin-bottom: 0.5rem;
  margin-right: 0.25rem;
}
.archive-flex .voice .post-content .tag-list li a {
  font-size: 0.7rem;
  font-weight: 500;
  color: #1DA678;
  padding: 0 0.5rem;
  border-radius: 1px;
  line-height: 25px;
  display: inline-block;
  border: 1px solid #1DA678;
}

@media screen and (max-width: 600px) {
  .archive-voice-template .site-main {
    margin-right: 1rem;
  }
  .archive-voice-template .site-main .archive-flex .article-wrapper {
    width: 100%;
    max-width: 360px;
    margin: 0 auto 1rem;
  }
  .archive-voice-template .site-main .archive-flex .article-wrapper article {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .archive-voice-template .site-main .archive-flex .article-wrapper article .post-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  .archive-voice-template .site-main .archive-flex .article-wrapper article .post-content a {
    flex-grow: 1;
  }
}
/* =====================================================
  CMS：教員紹介
===================================================== */
/*
	シングルページ（教員紹介）
-----------------------------------------------------*/
.single-staff #page .contents {
    margin-bottom: 0rem !important;
    padding-bottom: 4rem;
}
.custom-post-staff {
  background-color: #FAFAFA;
  text-align: left;
  word-break: keep-all;
}
.custom-post-staff .contents {
  margin: 2rem auto;
  max-width: 1060px;
  margin-bottom: 0 !important;
}
.custom-post-staff .site-main {
  background-color: #fff;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .custom-post-staff .site-main {
    padding-top: 3rem;
    padding-bottom: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .custom-post-staff .site-main {
    padding-top: 1rem;
  }
}
.custom-post-staff .site-main .staff .staff-post {
  width: 90%;
  max-width: 652px;
  margin: 3rem auto 5rem;
  text-align: left;
  word-break: keep-all;
}
@media screen and (max-width: 768px) {
  .custom-post-staff .site-main .staff .staff-post {
    margin-top: 0;
  }
}
.custom-post-staff .site-main .staff .staff-post .title {
  text-align: center;
  margin-bottom: 3rem;
  background-color: #ECF2E2;
  line-height: 1.4;
  padding: 0.75rem;
}
.custom-post-staff .site-main .staff .staff-post .entry-content {
  margin-bottom: 5rem;
}
.custom-post-staff .site-main .staff .staff-post .entry-content .wp-block-columns {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .custom-post-staff .site-main .staff .staff-post .entry-content .wp-block-columns {
    gap: 0 !important;
  }
}
.custom-post-staff .site-main .staff .staff-post .entry-content h3 {
  border-left: 4px solid #006241;
  padding-left: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.custom-post-staff .site-main .staff .staff-post .entry-content p {
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .custom-post-staff #sidebar {
    margin-bottom: 6rem;
  }
}

/*
	アーカイブページ（教員紹介）
-----------------------------------------------------*/
.archive.staff {
  background-color: #FAFAFA;
  text-align: left;
  word-break: keep-all;
}
.archive.staff .contents {
  margin-bottom: 0;
}
.archive.staff .site-main {
  background-color: #fff;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .archive.staff .site-main {
    padding-top: 3rem;
    padding-bottom: 0.5rem;
  }
}
@media screen and (max-width: 480px) {
  .archive.staff .site-main {
    padding: 3rem 1rem 0.5rem;
  }
}
@media screen and (max-width: 480px) {
  .archive.staff .site-main .js-scrollable {
    margin: 0 auto 4rem;
  }
}
.archive.staff .site-main table {
  max-width: 580px;
  border: 1px solid #D0D0D0;
  border-collapse: collapse;
}
@media screen and (min-width: 481px) {
  .archive.staff .site-main table {
    width: 90%;
    max-width: 650px;
    margin: 5rem auto;
  }
}
@media screen and (max-width: 768px) {
  .archive.staff .site-main table {
    margin-top: 0;
  }
}
.archive.staff .site-main table th, .archive.staff .site-main table td {
  font-weight: normal;
  border: 1px solid #D0D0D0;
  border-collapse: collapse;
  padding: 0.5rem 0.75rem;
}
.archive.staff .site-main table th {
  background-color: #ECF2E2;
}
.archive.staff .site-main table .link {
  color: #004BB1;
}
.archive.staff .site-main table tbody {
  line-height: 1.4285714286;
}
.archive.staff .site-main table tbody tr td:nth-child(1) {
  width: 28%;
}
.archive.staff .site-main table tbody tr td:nth-child(2) {
  width: 14%;
}
.archive.staff .site-main table tbody tr td:nth-child(4) {
  letter-spacing: -0.02em;
  padding: 0.5rem 0.25rem;
  width: 50px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .archive.staff .contents .sidebar-wrapper {
    width: 100%;
  }
  .archive.staff #sidebar {
    margin-bottom: 7rem;
  }
}

.post-type-archive-staff .faculty-name {
  width: 90%;
  max-width: 650px;
  margin: auto;
  margin-top: 5rem;
  font-size: 1.3rem;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .post-type-archive-staff .faculty-name {
    margin-top: 0;
  }
}
.post-type-archive-staff .site-main table {
  margin-top: 1.5rem !important;
}

/* =====================================================
  CMS：合格体験談
===================================================== */
/*
	サイドバー（合格体験談）
-----------------------------------------------------*/
.single-success .sidebar-wrapper,
.archive-success-template .sidebar-wrapper {
  width: 24%;
  margin-bottom: 2.5rem;
  min-width: 240px;
}
@media screen and (max-width: 768px) {
  .single-success .sidebar-wrapper,
.archive-success-template .sidebar-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}
.single-success .sidebar-wrapper .sidebar_success,
.archive-success-template .sidebar-wrapper .sidebar_success {
  padding-bottom: 1.75rem;
}
.single-success .sidebar-wrapper .sidebar_success.search,
.archive-success-template .sidebar-wrapper .sidebar_success.search {
  margin-top: 2.5rem;
}

.searchandfilter select.sf-input-select {
  min-width: auto !important;
}
.searchandfilter ul {
  width: 100%;
}
.searchandfilter li {
  display: block;
  padding: 0 !important;
  margin-bottom: 1rem;
}
.searchandfilter li h4 {
  font-size: 15px;
  margin-bottom: 0 !important;
  padding-top: 30px;
}
.searchandfilter li.sf-field-submit h4 {
  font-size: 13px;
}
.searchandfilter li input[type=text],
.searchandfilter li select {
  border: none;
  font-size: 13px;
  padding: 0.7rem 1.25rem 0.7rem 0.5rem;
  border-radius: 2px;
  width: 100%;
  color: #656565;
  letter-spacing: 0.1em;
}
.searchandfilter li input[type=submit] {
  background: #1DA678;
  border-radius: 2px;
  width: 100%;
  display: block;
  color: #fff;
  font-size: 15px;
  padding: 0.5rem;
  border: none;
  letter-spacing: 0.2rem;
  margin-top: 0;
  cursor: pointer;
  line-height: 1.4;
}
.searchandfilter li input[type=submit]:hover {
  opacity: 0, 6;
}
.searchandfilter li input[type=submit].search-filter-reset {
  background-color: #fff;
  border: 1px solid #1DA678;
  color: #1DA678;
  margin-top: 0.5rem;
}
.searchandfilter .sf-field-taxonomy-success_tag,
.searchandfilter .sf-field-taxonomy-success_tag2,
.searchandfilter .sf-field-taxonomy-success_tag3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.searchandfilter .sf-field-taxonomy-success_tag h4,
.searchandfilter .sf-field-taxonomy-success_tag2 h4,
.searchandfilter .sf-field-taxonomy-success_tag3 h4 {
  width: 25%;
  padding: 0 !important;
}
.searchandfilter .sf-field-taxonomy-success_tag label,
.searchandfilter .sf-field-taxonomy-success_tag2 label,
.searchandfilter .sf-field-taxonomy-success_tag3 label {
  position: relative;
  width: 72%;
}
.searchandfilter .sf-field-taxonomy-success_tag label::after,
.searchandfilter .sf-field-taxonomy-success_tag2 label::after,
.searchandfilter .sf-field-taxonomy-success_tag3 label::after {
  position: absolute;
  top: calc(50% - 0.4rem);
  right: 0.75rem;
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-top: 1px solid #1C1C1C;
  border-right: 1px solid #1C1C1C;
  transform: rotate(135deg) translateY(-50%);
}
.searchandfilter .sf-field-taxonomy-success_tag select,
.searchandfilter .sf-field-taxonomy-success_tag2 select,
.searchandfilter .sf-field-taxonomy-success_tag3 select {
  background-image: none;
}

/*
	シングルページ（合格体験談）
-----------------------------------------------------*/
.single-success .site-main .entry-content {
  margin-top: 0.5rem;
}
.single-success .site-main .entry-content h2 {
  font-size: 1.125rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #006241;
  line-height: 1.6;
  color: #1c1c1c;
}
.single-success .site-main .entry-content h2 em {
  font-style: normal;
}
.single-success .site-main .entry-content p {
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 480px) {
  .single-success .site-main .entry-content p {
    letter-spacing: 0.01em;
    line-height: 2;
  }
}
.single-success .site-main .post-flex {
  width: calc(100% - 40px);
  margin: 1rem auto 3.5rem;
}
@media screen and (max-width: 480px) {
  .single-success .site-main .post-flex {
    flex-wrap: wrap;
    gap: 2em;
  }
}
.single-success .site-main .post-flex-item__l {
  width: 32%;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .single-success .site-main .post-flex-item__l {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
}
.single-success .site-main .post-flex-item__l .post-thumbnail {
  margin-bottom: 0.25rem;
}
.single-success .site-main .post-flex-item__l .post-thumbnail img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 216/248;
}
@media screen and (max-width: 480px) {
  .single-success .site-main .post-flex-item__l .post-sumbnail,
.single-success .site-main .post-flex-item__l .post-meta {
    width: 48%;
  }
}
.single-success .site-main .post-flex-item__l .name .small {
  font-size: 0.68rem;
}
.single-success .site-main .post-flex-item__l .yearly-list {
  line-height: 2;
  margin-bottom: 0.5rem;
}
.single-success .site-main .post-flex-item__l .category-list__item {
  display: inline-block;
}
.single-success .site-main .post-flex-item__l .category-list__item a {
  background-color: #1DA678;
  color: #fff;
  font-size: 0.75rem;
  display: inline-block;
  padding: 0 0.5rem;
  border-radius: 1px;
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
}
.single-success .site-main .post-flex-item__l .student-profile p {
  display: inline-block;
}
.single-success .site-main .post-flex-item__l .student-profile__from {
  font-size: 0.68rem;
  margin-left: 0.5rem;
}
.single-success .site-main .post-flex-item__l .school-list p {
  margin-bottom: 0;
}
.single-success .site-main .post-flex-item__l .school-list__title {
  color: #1DA678;
}
.single-success .site-main .post-flex-item__l .school-list .inner {
  border-bottom: 1px solid #ECF2E2;
  margin-bottom: 1rem;
}
@media screen and (max-width: 480px) {
  .single-success .site-main .post-flex-item__l .school-list .inner {
    padding: 0.5rem 0 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
  }
}
.single-success .site-main .post-flex-item__l .school-list .school-list__item {
  font-size: 0.8rem;
  background: #EBFAD2;
  display: inline-block;
  padding: 0 0.8rem;
  border-radius: 25px;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 480px) {
  .single-success .site-main .post-flex-item__l .school-list .school-list__item {
    margin: 0;
  }
}
.single-success .site-main .post-flex-item__r {
  width: 60%;
}
@media screen and (max-width: 480px) {
  .single-success .site-main .post-flex-item__r {
    width: 100%;
  }
}
.single-success .return-list a {
  margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  .single-voice .site-main .entry-content h2 {
    padding-bottom: 0.5rem;
  }
}
/*
	アーカイブページ（合格体験談）
-----------------------------------------------------*/
.archive-success-template .contents .site-main .archive-flex .article-wrapper {
  position: relative;
  border: 1px solid #888;
  margin-bottom: 1rem;
  padding: .75rem;
  box-sizing: border-box;
}
.archive-success-template .contents .site-main .archive-flex .article-wrapper .post {
  margin-bottom: 0;
}
.archive-success-template .contents .site-main .archive-flex .article-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  border: 1px solid #C4C4C4;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
}
.archive-success-template .contents .site-main .archive-flex .article-wrapper .post-flex {
  justify-content: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.archive-success-template .contents .site-main .archive-flex .article-wrapper .post-flex-item__l img {
  /* width: 100%;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  vertical-align: bottom; */
  width: 100%;
  object-fit: cover;
  aspect-ratio: 81 / 90;
  height: auto;
}
.archive-success-template .contents .site-main .archive-flex .article-wrapper .post-flex-item__r .yearly-list__item {
  font-size: 0.75rem;
}
.archive-success-template .contents .site-main .archive-flex .article-wrapper .post-flex-item__r .post-category .category-list__item {
  font-size: 0.7rem;
  padding: 0.3rem;
  background: #1DA678;
  text-align: left;
  line-height: 1.4;
}
.archive-success-template .contents .site-main .archive-flex .article-wrapper .post-flex-item__r .post-title {
  font-size: 0.93rem;
}
.archive-success-template .contents .site-main .archive-flex .article-wrapper .post-flex-item__r .post-title .small {
  font-size: 0.68rem;
}
.archive-success-template .contents .site-main .archive-flex .article-wrapper .post-flex-item__r .student-profile {
  font-weight: 500;
}
.archive-success-template .contents .site-main .archive-flex .article-wrapper .post-flex-item__r .student-profile p {
  margin-bottom: 0;
}
.archive-success-template .contents .site-main .archive-flex .article-wrapper .post-flex-item__r .student-profile__from {
  font-size: 0.68rem;
}
.archive-success-template .contents .site-main .archive-flex .article-wrapper .school-list .primary-school, .archive-success-template .contents .site-main .archive-flex .article-wrapper .school-list .high-school {
  margin-bottom: 0;
  display: flex;
  line-height: 1.6;
  align-items: baseline;
}
.archive-success-template .contents .site-main .archive-flex .article-wrapper .school-list .primary-school__title, .archive-success-template .contents .site-main .archive-flex .article-wrapper .school-list .high-school__title {
  color: #1DA678;
  font-size: 0.81rem;
  font-weight: 500;
  width: 25%;
  min-width: 3rem;
}
.archive-success-template .contents .site-main .archive-flex .article-wrapper .school-list .primary-school__list,
.archive-success-template .contents .site-main .archive-flex .article-wrapper .school-list .high-school__list {
  width: 75%;
}
.archive-success-template .contents .site-main .archive-flex .article-wrapper .school-list .primary-school__title span, .archive-success-template .contents .site-main .archive-flex .article-wrapper .school-list .high-school__title span {
  font-size: 0.75rem;
}

@media screen and (max-width: 1024px) {
  .archive-success-template .contents .site-main .archive-flex {
    display: flex !important;
    gap: 1rem;
  }
  .archive-success-template .contents .site-main .archive-flex .article-wrapper {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 881px) {
    .archive-success-template .contents .site-main .archive-flex .article-wrapper {
        width: calc((100% - 1rem) / 2);
    }
}
@media screen and (max-width: 768px) {
    .archive-success-template .contents .site-main .archive-flex{
        justify-content: flex-start;
    }
}
@media screen and (max-width: 480px) {
  .archive-success-template .contents .site-main .archive-flex {
    gap: 0.5rem;
  }
  .archive-success-template .contents .site-main .archive-flex .article-wrapper {
    width: calc((100% - 0.5rem) / 2);
  }
  .archive-success-template .contents .site-main .archive-flex .article-wrapper .school-list .primary-school__list,
.archive-success-template .contents .site-main .archive-flex .article-wrapper .school-list .high-school__list {
    font-size: 0.7rem;
  }
}
/* =====================================================
  CMS：よくある質問
===================================================== */
/*
  シングル・アーカイブ共通（よくある質問）
-----------------------------------------------------*/
@media screen and (max-width: 768px) {
  .post-type-archive-post-faq #sidebar,
.tax-faq_cat #sidebar {
    margin-bottom: 7rem;
  }
}
@media screen and (max-width: 768px) {
  .single-post-faq .site-main, .archive-faq-template .site-main {
    margin: auto;
  }
}
/*　左右の余白消えてしまっていたのでコメントアウトします
 @media screen and (max-width: 480px) {
  .single-post-faq .site-main, .archive-faq-template .site-main {
    padding: 0;
  }
} */

.single-post-faq .site-main h2.faq-title, .archive-faq-template .site-main h2.faq-title {
  position: relative;
  font-size: 1.625rem;
  background-color: #fff;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.single-post-faq .site-main h2.faq-title::after, .archive-faq-template .site-main h2.faq-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2rem;
  height: 1px;
  background-color: #006241;
}

.single-post-faq .site-main h3.faq-title, .archive-faq-template .site-main h3.faq-title {
  color: #006241;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  margin: 3rem 0 1.5rem;
  font-weight: normal;
  padding: 0.5rem 1rem;
  border: 3px double #006241;
}

.single-post-faq .site-main h4.faq-title, .archive-faq-template .site-main h4.faq-title {
  font-size: 1.125rem;
  border-bottom: 1px double #006241;
  color: #006241;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.single-post-faq .faq-post-wrapper, .archive-faq-template .faq-post-wrapper {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .single-post-faq .faq-post-wrapper, .archive-faq-template .faq-post-wrapper {
    width: 100%;
  }
}

.single-post-faq .faq-post-wrapper .faq-post, .archive-faq-template .faq-post-wrapper .faq-post {
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .single-post-faq .faq-post-wrapper .faq-post, .archive-faq-template .faq-post-wrapper .faq-post {
    margin-bottom: 1rem;
  }
}

.single-post-faq .faq-post-wrapper .faq-post .accordion, .archive-faq-template .faq-post-wrapper .faq-post .accordion {
  margin-bottom: 2rem;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .single-post-faq .faq-post-wrapper .faq-post .accordion, .archive-faq-template .faq-post-wrapper .faq-post .accordion {
    margin-bottom: 1rem;
  }
}

.single-post-faq .faq-post-wrapper .faq-post .accordion-q, .archive-faq-template .faq-post-wrapper .faq-post .accordion-q {
  position: relative;
  display: block;
  background-color: #ECF2E2;
  border-radius: 2px;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  font-size: 16px;
  padding: 1.25rem 3.25rem 1.25rem 3rem;
}

.single-post-faq .faq-post-wrapper .faq-post .accordion-q:hover, .archive-faq-template .faq-post-wrapper .faq-post .accordion-q:hover {
  color: #006241;
}

.single-post-faq .faq-post-wrapper .faq-post .accordion-q::-webkit-details-marker, .archive-faq-template .faq-post-wrapper .faq-post .accordion-q::-webkit-details-marker {
  display: none;
}

.single-post-faq .faq-post-wrapper .faq-post .accordion-q::after, .archive-faq-template .faq-post-wrapper .faq-post .accordion-q .icon::after {
  position: absolute;
  left: 1.4rem;
  top: 1.4rem;
  content: "Q.";
  display: inline-block;
  line-height: 1;
  color: #006241;
  font-size: 16px;
}

.single-post-faq .faq-post-wrapper .faq-post .accordion-q .question,
.archive-faq-template .faq-post-wrapper .faq-post .accordion-q .question {
  margin-bottom: 0;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .single-post-faq .faq-post-wrapper .faq-post .accordion-q .question,
.archive-faq-template .faq-post-wrapper .faq-post .accordion-q .question {
    font-size: 14px;
  }
}

.single-post-faq .faq-post-wrapper .faq-post .accordion-a,
.archive-faq-template .faq-post-wrapper .faq-post .accordion-a {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 3rem;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .single-post-faq .faq-post-wrapper .faq-post .accordion-a,
.archive-faq-template .faq-post-wrapper .faq-post .accordion-a {
    padding: 1rem 1rem 1rem 3rem;
  }
}

.single-post-faq .faq-post-wrapper .faq-post .accordion-a::after,
.archive-faq-template .faq-post-wrapper .faq-post .accordion-a .icon::after {
  position: absolute;
  left: 1.4rem;
  top: 1.8rem;
  content: "A.";
  display: inline-block;
  line-height: 1;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .single-post-faq .faq-post-wrapper .faq-post .accordion-a::after,
.archive-faq-template .faq-post-wrapper .faq-post .accordion-a .icon::after {
    top: 1.3rem;
  }
}

/* =====================================================
    CMS：シングル・アーカイブページ（レスポンシブ）
===================================================== */
.single-post-faq .contents, .single-staff .contents, .single-success .contents, .single-voice .contents, .single-post .contents {
  flex-wrap: nowrap;
  padding: 0 4rem 0 2.5rem;
  gap: 2.5rem;
}
@media screen and (max-width: 1024px) {
  .single-post-faq .contents, .single-staff .contents, .single-success .contents, .single-voice .contents, .single-post .contents {
    padding: 0 4rem;
  }
}

@media screen and (max-width: 768px) {
  .archive.tag .contents,
.search-post .contents,
body.blog .contents,
body.archive.date .contents,
body.archive.category .contents,
.archive.staff .contents,
.single-post-faq .contents,
.single-staff .contents,
.single-success .contents,
.archive-faq-template .contents,
.archive-success-template .contents,
.archive-voice-template .contents,
.single-success .contents,
.single-voice .contents,
.single-post .contents {
    flex-direction: column;
    padding: 0 2rem;
  }
  .archive.staff .contents .site-main,
.single-post-faq .contents .site-main, .single-staff .contents .site-main, .single-success .contents .site-main, .archive-faq-template .contents .site-main, .archive-success-template .contents .site-main, .archive-voice-template .contents .site-main, .single-success .contents .site-main, .single-voice .contents .site-main, .single-post .contents .site-main {
    width: 100%;
    margin-bottom: 2rem;
  }
  .single-post-faq .contents .site-main .wp-block-image, .single-staff .contents .site-main .wp-block-image, .single-success .contents .site-main .wp-block-image, .archive-faq-template .contents .site-main .wp-block-image, .archive-success-template .contents .site-main .wp-block-image, .archive-voice-template .contents .site-main .wp-block-image, .single-success .contents .site-main .wp-block-image, .single-voice .contents .site-main .wp-block-image, .single-post .contents .site-main .wp-block-image {
    text-align: center;
  }
  .single-post-faq .contents .site-main .archive-flex, .single-staff .contents .site-main .archive-flex, .single-success .contents .site-main .archive-flex, .archive-faq-template .contents .site-main .archive-flex, .archive-success-template .contents .site-main .archive-flex,
.single-success .contents .site-main .archive-flex, .single-voice .contents .site-main .archive-flex, .single-post .contents .site-main .archive-flex {
    display: block;
    width: 100%;
  }
  .single-post-faq .contents .site-main .archive-flex-item__l, .single-post-faq .contents .site-main .archive-flex-item__r {
    width: 100%;
  }
  .single-staff .contents .site-main .archive-flex-item__l, .single-staff .contents .site-main .archive-flex-item__r {
    width: 100%;
  }
  .single-success .contents .site-main .archive-flex-item__l, .single-success .contents .site-main .archive-flex-item__r {
    width: 100%;
  }
  .archive-faq-template .contents .site-main .archive-flex-item__l, .archive-faq-template .contents .site-main .archive-flex-item__r {
    width: 100%;
  }
  .archive-success-template .contents .site-main .archive-flex-item__l, .archive-success-template .contents .site-main .archive-flex-item__r {
    width: 100%;
  }
  .archive-voice-template .contents .site-main .archive-flex-item__l, .archive-voice-template .contents .site-main .archive-flex-item__r {
    width: 100%;
  }
  .single-success .contents .site-main .archive-flex-item__l, .single-success .contents .site-main .archive-flex-item__r {
    width: 100%;
  }
  .single-voice .contents .site-main .archive-flex-item__l, .single-voice .contents .site-main .archive-flex-item__r {
    width: 100%;
  }
  .single-post .contents .site-main .archive-flex-item__l, .single-post .contents .site-main .archive-flex-item__r {
    width: 100%;
  }
  .single-post-faq .contents .site-main .archive-flex-item__l, .single-staff .contents .site-main .archive-flex-item__l, .single-success .contents .site-main .archive-flex-item__l, .archive-faq-template .contents .site-main .archive-flex-item__l, .archive-success-template .contents .site-main .archive-flex-item__l, .archive-voice-template .contents .site-main .archive-flex-item__l, .single-success .contents .site-main .archive-flex-item__l, .single-voice .contents .site-main .archive-flex-item__l, .single-post .contents .site-main .archive-flex-item__l {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .single-post-faq .contents .site-main .archive-flex-item__l .post-thumbnail, .single-staff .contents .site-main .archive-flex-item__l .post-thumbnail, .single-success .contents .site-main .archive-flex-item__l .post-thumbnail, .archive-faq-template .contents .site-main .archive-flex-item__l .post-thumbnail, .archive-success-template .contents .site-main .archive-flex-item__l .post-thumbnail, .archive-voice-template .contents .site-main .archive-flex-item__l .post-thumbnail, .single-success .contents .site-main .archive-flex-item__l .post-thumbnail, .single-voice .contents .site-main .archive-flex-item__l .post-thumbnail, .single-post .contents .site-main .archive-flex-item__l .post-thumbnail {
    width: 40%;
    margin: auto;
  }
  .single-post-faq .contents .site-main .archive-flex-item__l .yearly-list, .single-staff .contents .site-main .archive-flex-item__l .yearly-list, .single-success .contents .site-main .archive-flex-item__l .yearly-list, .archive-faq-template .contents .site-main .archive-flex-item__l .yearly-list, .archive-success-template .contents .site-main .archive-flex-item__l .yearly-list, .archive-voice-template .contents .site-main .archive-flex-item__l .yearly-list, .single-success .contents .site-main .archive-flex-item__l .yearly-list, .single-voice .contents .site-main .archive-flex-item__l .yearly-list, .single-post .contents .site-main .archive-flex-item__l .yearly-list {
    margin-bottom: 0;
  }
  .single-post-faq .contents .site-main .return-list, .single-staff .contents .site-main .return-list, .single-success .contents .site-main .return-list, .archive-faq-template .contents .site-main .return-list, .archive-success-template .contents .site-main .return-list, .archive-voice-template .contents .site-main .return-list, .single-success .contents .site-main .return-list, .single-voice .contents .site-main .return-list, .single-post .contents .site-main .return-list {
    width: calc(100% - 60px);
    max-width: 312px;
  }
  .single-post-faq .contents .sidebar, .single-staff .contents .sidebar, .single-success .contents .sidebar, .archive-faq-template .contents .sidebar, .archive-success-template .contents .sidebar, .archive-voice-template .contents .sidebar, .single-success .contents .sidebar, .single-voice .contents .sidebar, .single-post .contents .sidebar {
    width: 100%;
    margin-top: 4rem;
  }
  .single-post-faq .contents .sidebar .sidebar-item, .single-staff .contents .sidebar .sidebar-item, .single-success .contents .sidebar .sidebar-item, .archive-faq-template .contents .sidebar .sidebar-item, .archive-success-template .contents .sidebar .sidebar-item, .archive-voice-template .contents .sidebar .sidebar-item, .single-success .contents .sidebar .sidebar-item, .single-voice .contents .sidebar .sidebar-item, .single-post .contents .sidebar .sidebar-item {
    max-width: 480px;
    margin-right: auto;
    margin-left: auto;
  }
  .single-post-faq .contents .sidebar .sidebar-item p.text-15, .single-staff .contents .sidebar .sidebar-item p.text-15, .single-success .contents .sidebar .sidebar-item p.text-15, .archive-faq-template .contents .sidebar .sidebar-item p.text-15, .archive-success-template .contents .sidebar .sidebar-item p.text-15, .archive-voice-template .contents .sidebar .sidebar-item p.text-15, .single-success .contents .sidebar .sidebar-item p.text-15, .single-voice .contents .sidebar .sidebar-item p.text-15, .single-post .contents .sidebar .sidebar-item p.text-15 {
    font-size: 15px;
  }
  .single-post-faq .contents .sidebar .sidebar-item.search .serch-input-wrapper::after, .single-staff .contents .sidebar .sidebar-item.search .serch-input-wrapper::after, .single-success .contents .sidebar .sidebar-item.search .serch-input-wrapper::after, .archive-faq-template .contents .sidebar .sidebar-item.search .serch-input-wrapper::after, .archive-success-template .contents .sidebar .sidebar-item.search .serch-input-wrapper::after, .archive-voice-template .contents .sidebar .sidebar-item.search .serch-input-wrapper::after, .single-success .contents .sidebar .sidebar-item.search .serch-input-wrapper::after, .single-voice .contents .sidebar .sidebar-item.search .serch-input-wrapper::after, .single-post .contents .sidebar .sidebar-item.search .serch-input-wrapper::after {
    top: 4px;
  }
}
@media screen and (max-width: 480px) {
  .archive.tag .contents,
.search-post .contents,
body.blog .contents,
body.archive.date .contents,
body.archive.category .contents,
.archive.staff .contents,
.single-post-faq .contents,
.single-staff .contents,
.single-success .contents,
.archive-faq-template .contents,
.archive-success-template .contents,
.archive-voice-template .contents,
.single-success .contents,
.single-voice .contents,
.single-post .contents {
    padding: 0 1.25rem;
  }
}
/* =====================================================
    固定ページで呼び出す投稿一覧　レイアウト調整
	su-posts-xxxxxx-loop
===================================================== */
#su-posts-voice,
#su-posts-success,
#su-posts-news-cat-loop,
#su-posts-news-loop {
  margin-bottom: 0;
}
#su-posts-voice .contents,
#su-posts-success .contents,
#su-posts-news-cat-loop .contents,
#su-posts-news-loop .contents {
  display: block;
  width: 100%;
  max-width: 860px;
  padding: 0;
  margin: 1rem auto;
}
@media screen and (max-width: 768px) {
  #su-posts-voice .contents,
#su-posts-success .contents,
#su-posts-news-cat-loop .contents,
#su-posts-news-loop .contents {
    margin-top: 0 !important;
  }
}
#su-posts-voice .contents .site-main,
#su-posts-success .contents .site-main,
#su-posts-news-cat-loop .contents .site-main,
#su-posts-news-loop .contents .site-main {
  width: 100%;
  margin: auto;
  padding: 0;
}
#su-posts-voice .contents .post-thumbnail,
#su-posts-success .contents .post-thumbnail,
#su-posts-news-cat-loop .contents .post-thumbnail,
#su-posts-news-loop .contents .post-thumbnail {
  margin-bottom: 0;
}
#su-posts-voice .archive-list,
#su-posts-success .archive-list,
#su-posts-news-cat-loop .archive-list,
#su-posts-news-loop .archive-list {
  gap: 1% !important;
  border-bottom: none;
  margin-top: 1.5rem;
}
#su-posts-voice .archive-flex,
#su-posts-success .archive-flex,
#su-posts-news-cat-loop .archive-flex,
#su-posts-news-loop .archive-flex {
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  #su-posts-voice .archive-flex,
#su-posts-success .archive-flex,
#su-posts-news-cat-loop .archive-flex,
#su-posts-news-loop .archive-flex {
    padding-bottom: 0;
  }
}

#su-posts-simple-news-loop {
  border: 1px solid #006241;
  padding: 1.5rem 2rem;
  margin-bottom: 7rem;
  margin-top: 7rem;
}
@media screen and (max-width: 768px) {
  #su-posts-simple-news-loop {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }
}
@media screen and (max-width: 480px) {
  #su-posts-simple-news-loop {
    padding: 2rem 1rem;
    margin-bottom: 3rem;
    margin-top: 3rem;
  }
}
#su-posts-simple-news-loop .su-post {
  background-image: none;
  border-bottom: 1px dashed #656565;
  margin-bottom: 1rem;
}
#su-posts-simple-news-loop .under-bar-left {
  font-size: 16px;
  padding-bottom: 0.75rem;
  margin-bottom: 2rem;
  background-image: linear-gradient(90deg, #006241 0%, #006241 6%, #fff 4%, #fff 100%);
  letter-spacing: 0.01em;
}
@media screen and (max-width: 480px) {
  #su-posts-simple-news-loop .under-bar-left {
    margin-top: 0;
  }
}
#su-posts-simple-news-loop .post-categories,
#su-posts-simple-news-loop time {
  font-size: 0.75rem;
}
@media screen and (max-width: 768px) {
    #su-posts-simple-news-loop time {
        display: block;
    }
}
#su-posts-simple-news-loop .post-categories {
  background-color: #1DA678;
  line-height: 1.4;
  padding: 3px 0.5rem;
  margin-right: 2px;
  margin-left: .5rem;
  margin-bottom: 0.5rem;
  border-radius: 1px;
  display: inline-block;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
    #su-posts-simple-news-loop .post-categories {
        margin-left: 0;
        margin-right: 6px;
    }
}
#su-posts-simple-news-loop .post-categories a{
    color: #fff;
}
#su-posts-simple-news-loop .su-post-title {
  font-size: 16px;
  margin-bottom: 0.5rem;
  line-height: 1.625;
}
@media screen and (max-width: 480px) {
  #su-posts-simple-news-loop .su-post-title {
    font-size: 14px;
  }
}
#su-posts-simple-news-loop .see-all__btn {
  display: block;
  text-align: right;
  font-size: 13px;
  line-height: 1;
}

/* =====================================================
    404エラーページ
===================================================== */
.error-404 .entry-header .entry-title {
  font-size: 2em;
  left: 7.75rem;
  line-height: 1.2;
}
.error-404 .contents {
  margin: 5rem auto;
  width: calc(100% - 40px);
  display: block;
}
.error-404 .contents .text-wrapper {
  text-align: center;
}
.error-404 .contents .btn-flex {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  gap: 2em;
}
.error-404 .contents .btn-flex .return-list__btn {
  display: block;
}
.error-404 .btn-shadow{
    margin: 0;
}

@media screen and (max-width: 768px) {
  .error-404 .entry-header .entry-title {
    font-size: 1.25rem;
    margin-right: 1rem !important;
    left: 4rem;
  }
}
/* =====================================================
    サイトマップ
===================================================== */
.page-template-page-site-map-php .contents {
  display: block;
}
@media screen and (max-width: 768px) {
  .page-template-page-site-map-php .contents {
    padding: 0 !important;
    margin-bottom: 5rem;
  }
}
.page-template-page-site-map-php .contents .site-main {
  width: calc(100% - 40px) !important;
  max-width: 1050px;
}
.page-template-page-site-map-php h3 {
  font-size: 18px;
  font-weight: 500;
  margin-top: 3rem;
  color: #006241;
}
.page-template-page-site-map-php a:hover {
  color: #006241;
}
.page-template-page-site-map-php .block > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
}
@media screen and (max-width: 840px) {
  .page-template-page-site-map-php .block > ul {
    justify-content: space-between;
  }
}
.page-template-page-site-map-php .block > ul > li {
  width: 32%;
}
@media screen and (max-width: 1024px) {
  .page-template-page-site-map-php .block > ul > li {
    width: 48%;
  }
}
@media screen and (max-width: 480px) {
  .page-template-page-site-map-php .block > ul > li {
    width: 100%;
  }
}
.page-template-page-site-map-php .block > ul > li > a {
  display: block !important;
  border: 1px solid #ccc;
  padding: 1rem;
  font-size: 15px;
  font-weight: 500;
}
.page-template-page-site-map-php .block > ul > li a {
  position: relative;
  padding-left: 2rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
  display: inline-block;
}
.page-template-page-site-map-php .block > ul > li a::after {
  position: absolute;
  top: 1rem;
  left: 1rem;
  content: url(../img/icon-right.svg);
}
.page-template-page-site-map-php .block > ul > li > .children {
  margin-top: 1rem;
  margin-bottom: 2rem;
  margin-left: 0;
}
.page-template-page-site-map-php .block > ul > li > .children > li > a {
  color: #006241;
  font-weight: 500;
  font-size: 15px;
}
.page-template-page-site-map-php .block > ul > li > .children a::after {
  top: 0;
}
.page-template-page-site-map-php .block > ul > li > .children > .page_item_has_children {
  margin-bottom: 2rem;
}

/* =====================================================
   全体共通（追加）
===================================================== */
#sidebar.sidebar-width {
  width: 22%;
  min-width: 248px;
}
@media screen and (max-width: 768px) {
  #sidebar.sidebar-width {
    width: 100%;
    margin-right: auto;
  }
}

.js-scrollable.pc-scroll table {
  width: 1000px;
  margin-bottom: 1rem !important;
}

.is-scrollable{
    cursor: grab;
}
.is-scrollable:active{
    cursor: grabbing;
}
.js-scrollable::-webkit-scrollbar {
  width: 10px;
  height: 4px;
}
.js-scrollable::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}
.js-scrollable::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.js-scrollable table {
  min-height: 120px;
  margin-bottom: 0;
}
.js-scrollable table thead, .js-scrollable table tbody {
  font-size: 12px;
}

@media screen and (max-width: 1024px) {
  h2.under-bar {
    margin-bottom: 2rem;
    font-size: 1.3rem;
    margin-top: 3rem;
  }
  h2.under-bar.sans {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .slash {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .slash::after, .slash::before {
    height: 100%;
  }
  h2.under-bar {
    padding-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-top: 2rem;
  }
  h2.under-bar.sans {
    font-size: 1.6rem;
  }
  ul.branch-link {
    font-size: 0.85rem;
  }
  .js-scrollable {
    overflow-x: scroll;
  }
  .js-scrollable table {
    width: 800px;
  }
  .js-scrollable table thead, .js-scrollable table tbody {
    font-size: 12px;
  }
  .js-scrollable.m-table {
    overflow-x: scroll;
  }
  .js-scrollable.m-table table {
    width: 1000px;
  }
  .js-scrollable.m-table table thead, .js-scrollable.m-table table tbody {
    font-size: 12px;
  }
  .js-scrollable.ss-table table, .js-scrollable.s-table table {
    width: 100%;
  }
  .shift-frame {
    padding: 3rem 1.5rem;
  }
  .shift-frame::after {
    content: none;
  }
  .shift-frame::before {
    border: 1px solid #CAEDE8;
    width: 100%;
    height: 100%;
    left: -0.5rem;
    top: -0.5rem;
  }
}
@media screen and (max-width: 480px) {
  .wp-block-columns {
    gap: 1.5em !important;
  }
  .sp-no-margin__b {
    margin-bottom: 0 !important;
  }
  .js-scrollable.ss-table table {
    width: 400px;
  }
  .js-scrollable.ss-table table thead, .js-scrollable.ss-table table tbody {
    font-size: 12px;
  }
  .js-scrollable.s-table table {
    width: 700px;
  }
  .js-scrollable.s-table table thead, .js-scrollable.s-table table tbody {
    font-size: 12px;
  }
  .sp-img-trimming > img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    height: 200px;
  }
}
.title-underline-dot {
  font-size: 1.5rem;
  color: #1C1C1C;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed #1C1C1C;
  margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
  .title-underline-dot {
    margin-bottom: 1.25em;
  }
}
@media screen and (min-width: 767px) {
  #sp-carousel .sp-slides {
    transform: translate3d(0px, 0px, 0px) !important;
  }
}
/*# sourceMappingURL=custom2.css.map *//*# sourceMappingURL=cms.css.map */