@charset "UTF-8";
* {
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 400;
  color: #333;
}

.hamburger_menu {
  display: none;
}
@media screen and (max-width: 768px) {
  .hamburger_menu {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .hamburger_menu .hamburger_menu_btn {
    position: absolute;
    z-index: 999;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 2rem;
    aspect-ratio: 1/1;
    transition: all 0.3s;
    cursor: pointer;
  }
}
@media screen and (max-width: 768px) {
  .hamburger_menu .hamburger_menu_btn .bar {
    display: block;
    width: 75%;
    height: 0.125rem;
    background-color: #373e64;
    transition: all 0.3s;
  }
}
.hamburger_menu .hamburger_menu_list_wrapper {
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .hamburger_menu .hamburger_menu_list_wrapper {
    position: fixed;
    top: 3.625rem;
    display: block;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    background-color: #fff;
    right: -100%;
    max-width: 37.5rem;
  }
}
@media screen and (max-width: 768px) {
  .hamburger_menu.open .hamburger_menu_btn {
    justify-content: center;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 768px) {
  .hamburger_menu.open .hamburger_menu_btn .bar:nth-child(1) {
    transform: translateY(0.0625rem) rotate(45deg);
  }
}
@media screen and (max-width: 768px) {
  .hamburger_menu.open .hamburger_menu_btn .bar:nth-child(2) {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .hamburger_menu.open .hamburger_menu_btn .bar:nth-child(3) {
    transform: translateY(-0.0625rem) rotate(-45deg);
  }
}
.hamburger_menu.open .hamburger_menu_list_wrapper {
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .hamburger_menu.open .hamburger_menu_list_wrapper {
    right: 0;
  }
}

/* リセットCSS */
* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  border-style: solid;
  box-sizing: border-box;
  border-width: 0;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

.all_container {
  overflow-x: hidden;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  text-decoration-skip-ink: auto;
}

img,
video,
iframe {
  display: block;
  max-width: 100%;
  width: 100%;
}

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

html {
  font-size: 1.4134275618vw;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 1132px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
  .u_pc {
    display: none !important;
  }
}

.u_sp,
.u_sp_b {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u_sp,
.u_sp_b {
    display: block !important;
  }
}

.u_sp_i {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u_sp_i {
    display: inline !important;
  }
}

.u_sp_ib {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u_sp_ib {
    display: inline-block !important;
  }
}

.u_sp_f {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u_sp_f {
    display: flex !important;
  }
}

.u_sp_t {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u_sp_t {
    display: table-row !important;
  }
}

/* インナーボックス */
.innerbox_1180 {
  width: 100%;
  max-width: calc(1180px + 2rem);
  margin: 0 auto;
  padding: 0 1rem;
}

/* その他頻出パーツ */
.flexbox {
  display: flex;
}

.flex_center {
  display: flex;
  justify-content: center;
  align-items: center;
}

a,
button,
.btn {
  cursor: pointer;
  transition: 0.3s;
}
a:hover,
button:hover,
.btn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  a:hover,
button:hover,
.btn:hover {
    opacity: 1;
  }
}

ol {
  list-style: decimal;
  padding-left: 1em;
}
ol > li > ul {
  list-style: lower-alpha;
  padding-left: 1em;
}
ol > li > ul > li > ul {
  list-style: lower-roman;
  padding-left: 1em;
}

ul.dot_list > li {
  display: block;
  position: relative;
  padding-left: 1em;
}
ul.dot_list > li::before {
  content: "・";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

/* WordPress用パーツ */
.index_php {
  padding: 6.25rem 1rem;
  text-align: center;
}
.index_php .return_btn {
  margin: 2rem auto 0;
}

.not_open {
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  padding: 2.5rem;
}

.page_contents_wrapper {
  padding-top: 4.25rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .page_contents_wrapper {
    padding-top: 2.5rem;
    padding-bottom: 0;
  }
}

.single_contents_wrapper {
  padding-top: 1rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .single_contents_wrapper {
    padding-bottom: 0;
  }
}

.page_title {
  display: flex;
  align-items: center;
  width: 100%;
  height: 12.5rem;
  background-image: url(../../assets/img/common/page_title_bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page_title .page_title_inner .ja_title {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
}

.breadcrumb_wrapper {
  padding: 0.875rem 0;
}
@media screen and (max-width: 768px) {
  .breadcrumb_wrapper {
    padding: 0.5rem 0;
  }
}
.breadcrumb_wrapper .breadcrumb_inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.breadcrumb_wrapper .breadcrumb_inner .breadcrumb_item {
  font-size: 0.875rem;
  font-weight: 300;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .breadcrumb_wrapper .breadcrumb_inner .breadcrumb_item {
    font-size: 0.8125rem;
  }
}
.breadcrumb_wrapper .breadcrumb_inner .breadcrumb_item a,
.breadcrumb_wrapper .breadcrumb_inner .breadcrumb_item span {
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
}
.breadcrumb_wrapper .breadcrumb_inner .breadcrumb_item:nth-child(n+2) {
  margin-left: 0.625rem;
}
@media screen and (max-width: 768px) {
  .breadcrumb_wrapper .breadcrumb_inner .breadcrumb_item:nth-child(n+2) {
    margin-left: 0.5rem;
  }
}
.breadcrumb_wrapper .breadcrumb_inner .breadcrumb_item:nth-child(n+2)::before {
  content: ">";
  font-size: inherit;
  line-height: inherit;
  color: #333;
  margin-right: 0.625rem;
}
@media screen and (max-width: 768px) {
  .breadcrumb_wrapper .breadcrumb_inner .breadcrumb_item:nth-child(n+2)::before {
    margin-right: 0.5rem;
  }
}
.breadcrumb_wrapper .breadcrumb_inner .breadcrumb_item:nth-last-child(1) {
  white-space: nowrap;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-height: 2em;
}
.breadcrumb_wrapper .breadcrumb_inner .breadcrumb_item:nth-last-child(1) a,
.breadcrumb_wrapper .breadcrumb_inner .breadcrumb_item:nth-last-child(1) span {
  pointer-events: none;
}

.wpcf7-response-output {
  padding: 1.5rem !important;
  text-align: center;
  font-weight: 700;
  background-color: #fff;
}

body:not(#contact) .grecaptcha-badge {
  visibility: hidden;
}

.grecaptcha-badge {
  z-index: 9999;
}

/* body(全体) */
body main#main {
  padding-top: 8.5rem;
}
@media screen and (max-width: 768px) {
  body main#main {
    padding-top: 7.625rem;
  }
}

/* ヘッダー */
header#header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #fff;
}
header#header .header_head_text {
  display: flex;
  align-items: flex-end;
  height: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0 1rem;
}
@media screen and (max-width: 768px) {
  header#header .header_head_text {
    height: 1.125rem;
    font-size: 0.5rem;
  }
}
header#header .header_upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
}
@media screen and (max-width: 768px) {
  header#header .header_upper {
    position: relative;
    z-index: 999;
    height: 2.5rem;
  }
}
header#header .header_left {
  max-height: 100%;
}
header#header .header_left .header_logo {
  display: block;
  width: 10rem;
  height: 100%;
}
@media screen and (max-width: 768px) {
  header#header .header_left .header_logo {
    width: 9.125rem;
  }
}
header#header .header_left .header_logo .logo {
  height: 100%;
  object-fit: contain;
}
header#header .header_right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  header#header .header_right {
    padding-right: 2rem;
  }
}
header#header .header_right .header_search {
  display: flex;
}
@media screen and (max-width: 768px) {
  header#header .header_right .header_search {
    display: none;
  }
}
header#header .header_right .header_search > span {
  display: flex;
  align-items: center;
  height: 2.5rem;
  padding: 0 1rem;
  font-size: 0.875rem;
}
header#header .header_right .header_search .light_gray_area {
  width: 33.75rem;
  background-color: #eeeeee;
  border-radius: 2.5rem 0 0 2.5rem;
}
header#header .header_right .header_search .light_gray_area::after {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: rotate(45deg);
  margin-left: 0.5rem;
}
header#header .header_right .header_search .dark_gray_area {
  width: 3.375rem;
  background-color: #aaaaaa;
  border-radius: 0 2.5rem 2.5rem 0;
}
header#header .header_right .header_search .dark_gray_area > img {
  height: 100%;
  object-fit: contain;
}
header#header .header_right .header_cart,
header#header .header_right .header_new_deals,
header#header .header_right .header_login {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header#header .header_right .header_cart > img,
header#header .header_right .header_new_deals > img,
header#header .header_right .header_login > img {
  width: 1.875rem;
  height: 1.875rem;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  header#header .header_right .header_cart > img,
header#header .header_right .header_new_deals > img,
header#header .header_right .header_login > img {
    width: 1.5rem;
    height: 1.5rem;
  }
}
header#header .header_right .header_cart > span,
header#header .header_right .header_new_deals > span,
header#header .header_right .header_login > span {
  font-size: 0.75rem;
}
@media screen and (max-width: 768px) {
  header#header .header_right .header_cart > span,
header#header .header_right .header_new_deals > span,
header#header .header_right .header_login > span {
    font-size: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  header#header .header_right > .header_new_deals,
header#header .header_right > .header_login {
    display: none;
  }
}
header#header .header_lower {
  height: 4rem;
  border-bottom: 1px solid rgba(55, 62, 100, 0.4);
  padding: 0.5rem 1rem 0;
  overflow-x: auto;
}
header#header .header_lower .header_links_wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 100%;
}
@media screen and (max-width: 768px) {
  header#header .header_lower .header_links_wrapper .menu_item {
    width: calc((100% - 1rem) / 3);
  }
}
header#header .header_lower .header_links_wrapper .menu_item .header_link {
  min-width: 9rem;
  height: 2.5rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: #3b3b47;
  border-radius: 2.5rem;
  padding: 0 1rem;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  header#header .header_lower .header_links_wrapper .menu_item .header_link {
    width: 100%;
    min-width: initial;
    font-size: 0.75rem;
    border-radius: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  header#header .hamburger_menu_list_wrapper .header_hamburger_upperlink {
    padding: 1rem;
  }
}
@media screen and (max-width: 768px) {
  header#header .hamburger_menu_list_wrapper .header_hamburger_upperlink .upperlink_inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    background-color: #fff;
    border-radius: 1rem;
    padding: 0.5rem 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  header#header .hamburger_menu_list_wrapper .header_hamburger_upperlink .upperlink_inner > .icon {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 768px) {
  header#header .hamburger_menu_list_wrapper .header_hamburger_upperlink .upperlink_inner > span {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  header#header .hamburger_menu_list_wrapper .header_hamburger_upperlink.header_new_deals {
    background-color: #f2e004;
  }
}
@media screen and (max-width: 768px) {
  header#header .hamburger_menu_list_wrapper .header_hamburger_upperlink.header_login {
    background-color: #3b3b47;
  }
}
header#header .hamburger_menu_list_wrapper .hamburger_menu_list .menu_item .header_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  background-color: #f0ebe6;
  margin-top: 0;
  padding: 0.75rem 1.5rem;
}
@media screen and (max-width: 639px) {
  header#header .hamburger_menu_list_wrapper .hamburger_menu_list .menu_item .header_link::after {
    content: "";
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    transform: rotate(45deg);
  }
}

/* フッター */
footer#footer {
  background-color: #455a64;
  padding-top: 5rem;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 639px) {
  footer#footer {
    padding-top: 0;
    padding-bottom: 0;
  }
}
footer#footer * {
  color: #fff;
}
footer#footer .footer_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
@media screen and (max-width: 639px) {
  footer#footer .footer_inner {
    gap: 0;
    padding: 0;
  }
}
@media screen and (max-width: 639px) {
  footer#footer .footer_left {
    width: 100%;
  }
}
footer#footer .footer_left .footer_menu_title {
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 639px) {
  footer#footer .footer_left .footer_menu_title {
    font-size: 1rem;
    color: #333;
    background-color: #f0ebe6;
    padding: 0.5rem 1rem;
  }
}
footer#footer .footer_left .footer_menu_list .menu_item .footer_link {
  display: block;
  font-size: 0.875rem;
  margin-top: 1rem;
}
@media screen and (max-width: 639px) {
  footer#footer .footer_left .footer_menu_list .menu_item .footer_link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    border-top: 1px solid #f0ebe6;
    border-bottom: 1px solid #f0ebe6;
    background-color: #fff;
    margin-top: 0;
    padding: 0.75rem 1.5rem;
  }
}
@media screen and (max-width: 639px) {
  footer#footer .footer_left .footer_menu_list .menu_item .footer_link::after {
    content: "";
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    transform: rotate(45deg);
  }
}
@media screen and (max-width: 639px) {
  footer#footer .footer_right {
    width: 100%;
    background-color: #f0ebe6;
    padding: 1.5rem 1rem;
  }
}
footer#footer .footer_right .footer_cta {
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
}
footer#footer .footer_right .footer_cta .footer_cta__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333;
  text-align: center;
}
footer#footer .footer_right .footer_cta .footer_cta__btn {
  width: 100%;
  height: 3rem;
  background-color: #3b3b47;
  border-radius: 3rem;
  margin-top: 1rem;
}
footer#footer .footer_bottom {
  width: 100%;
}
@media screen and (max-width: 639px) {
  footer#footer .footer_bottom {
    padding-top: 2rem;
    padding-bottom: 0.75rem;
  }
}
footer#footer .footer_bottom .footer_info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 639px) {
  footer#footer .footer_bottom .footer_info {
    flex-direction: column;
  }
}
footer#footer .footer_bottom .footer_logo {
  display: block;
  width: 10rem;
  background-color: #fff;
}
footer#footer .footer_bottom .footer_address {
  font-size: 0.875rem;
}
@media screen and (max-width: 639px) {
  footer#footer .footer_bottom .footer_address {
    text-align: center;
  }
}
footer#footer .footer_bottom .copyright {
  font-size: 0.875rem;
  text-align: center;
  margin-top: 2rem;
}
@media screen and (max-width: 639px) {
  footer#footer .footer_bottom .copyright {
    font-size: 0.625rem;
  }
}

/* その他パーツ */
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}
.btn.return_btn {
  width: 12.5rem;
  height: 4rem;
  color: #fff;
  background-color: #373e64;
  border-radius: 2rem;
}
.btn.black_btn {
  width: fit-content;
  height: 3rem;
  padding: 0 2.5rem;
  font-size: 1rem;
  line-height: 1;
  font-weight: 300;
  text-align: center;
  white-space: nowrap;
  color: #fff;
  background-color: #3b3b47;
  border-radius: 3rem;
}

.categories_wrapper,
.tags_wrapper {
  display: flex;
  flex-wrap: wrap;
}

.categories_wrapper {
  gap: 0.5rem;
}

.tags_wrapper {
  gap: 1rem 1.5rem;
}

.cat_item {
  display: inline-block;
  font-size: 0.8125rem;
  line-height: 1;
  font-weight: 600;
  color: #fff;
  background-color: #373e64;
  border-radius: 0.25rem;
  padding: 0.1875rem 0.375rem;
}

.sidebar_cat_item {
  display: block;
  width: 100%;
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: 300;
}

.tag_item {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: 300;
  text-decoration: underline;
}
.tag_item::before {
  content: "#";
}

.archive_contents_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5rem 11.25rem;
}
@media screen and (max-width: 768px) {
  .archive_contents_wrapper {
    flex-direction: column;
  }
}
.archive_contents_wrapper .archive_main_contents {
  width: 100%;
}
.archive_contents_wrapper .sidebar_contents {
  width: 18.75rem;
  flex-shrink: 0;
  padding-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .archive_contents_wrapper .sidebar_contents {
    width: 100%;
  }
}

.archives_links_wrapper:nth-child(n+2) {
  margin-top: 3.5rem;
}
.archives_links_wrapper .archives_title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #dbdfe1;
}
.archives_links_wrapper .archives_title .icon {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
  flex-shrink: 0;
}
.archives_links_wrapper .archives_title .ja_title {
  font-size: 1.25rem;
  line-height: 1.87;
  font-weight: 600;
}
.archives_links_wrapper .categories_wrapper .sidebar_cat_item:nth-child(n+2) {
  margin-top: 1rem;
}

.archive_post_list {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .archive_post_list {
    gap: 1.5rem;
  }
}

.post_co {
  width: calc((100% - 2.5rem) / 2);
}
@media screen and (max-width: 768px) {
  .post_co {
    width: calc((100% - 1.5rem) / 2);
  }
}
@media screen and (max-width: 639px) {
  .post_co {
    width: 100%;
  }
}
.post_co .post_co_image {
  height: auto;
  aspect-ratio: 382/200;
  object-fit: cover;
}
.post_co .post_co__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.post_co .post_co_date {
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: 600;
  font-family: "roboto-condensed", sans-serif;
  color: #3e3e3e;
}
.post_co .post_co_title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .post_co .post_co_title {
    font-size: 1rem;
  }
}

.popular_co {
  position: relative;
  z-index: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.popular_co:nth-child(n+2) {
  margin-top: 1.25rem;
}
.popular_co .popular_co_image {
  width: 6.0625rem;
  height: auto;
  aspect-ratio: 382/200;
  object-fit: cover;
}
.popular_co .popular_co_title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  max-height: 3.4em;
  width: calc(100% - 6.0625rem - 1.0625rem);
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: 600;
}
.popular_co:nth-child(1)::before, .popular_co:nth-child(2)::before, .popular_co:nth-child(3)::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 600;
  left: 0;
  top: -0.4375rem;
  width: 1.21875rem;
  height: 0.875rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.popular_co:nth-child(1)::before {
  background-image: url(../../assets/img/common/icon_popular_01.webp);
}
.popular_co:nth-child(2)::before {
  background-image: url(../../assets/img/common/icon_popular_02.webp);
}
.popular_co:nth-child(3)::before {
  background-image: url(../../assets/img/common/icon_popular_03.webp);
}

#ez-toc-container {
  background-color: #f6f6f6;
  padding: 1rem 1.5rem 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 768px) {
  #ez-toc-container {
    padding: 1rem;
  }
}
#ez-toc-container .ez-toc-title-container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: left;
  align-items: center;
  gap: 0.75rem;
}
#ez-toc-container .ez-toc-title-container .ez-toc-title {
  font-size: 1rem;
  line-height: 1;
  font-weight: 600;
  color: #212429;
}
@media screen and (max-width: 768px) {
  #ez-toc-container .ez-toc-title-container .ez-toc-title {
    font-size: 0.9375rem;
  }
}
#ez-toc-container .ez-toc-title-container .ez-toc-title-toggle svg {
  fill: #373e64 !important;
  color: #373e64 !important;
}
#ez-toc-container > nav a {
  text-decoration: none;
}
#ez-toc-container > nav ul.ez-toc-list-level-1 li.ez-toc-heading-level-2 {
  margin-top: 1rem;
}
#ez-toc-container > nav ul.ez-toc-list-level-1 li.ez-toc-heading-level-2 a {
  font-size: 1rem;
  line-height: 2;
  font-weight: 600;
  color: #333333;
}
@media screen and (max-width: 768px) {
  #ez-toc-container > nav ul.ez-toc-list-level-1 li.ez-toc-heading-level-2 a {
    font-size: 0.9375rem;
  }
}
#ez-toc-container > nav ul.ez-toc-list-level-3 {
  padding-left: 1.25em;
}
#ez-toc-container > nav ul.ez-toc-list-level-3 li.ez-toc-heading-level-3 {
  list-style: decimal;
}
#ez-toc-container > nav ul.ez-toc-list-level-3 li.ez-toc-heading-level-3 a {
  font-size: 1rem;
  line-height: 2;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #ez-toc-container > nav ul.ez-toc-list-level-3 li.ez-toc-heading-level-3 a {
    font-size: 0.9375rem;
  }
}
#ez-toc-container > nav ul.ez-toc-list-level-4 {
  padding-left: 1.25em;
}
#ez-toc-container > nav ul.ez-toc-list-level-4 li.ez-toc-heading-level-4 {
  list-style: lower-roman;
}
#ez-toc-container > nav ul.ez-toc-list-level-4 li.ez-toc-heading-level-4 a {
  font-size: 1rem;
  line-height: 2;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #ez-toc-container > nav ul.ez-toc-list-level-4 li.ez-toc-heading-level-4 a {
    font-size: 0.9375rem;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
}
.pagination .page-numbers {
  display: block;
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
  font-family: "roboto-condensed", sans-serif;
}
.pagination .page-numbers.current {
  font-weight: 700;
  color: #373e64;
}
.pagination .page-numbers.prev, .pagination .page-numbers.next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #373e64;
  border-radius: 0.25rem;
}
.pagination .page-numbers.prev::before, .pagination .page-numbers.next::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 1.5px solid #fff;
  border-top: 1.5px solid #fff;
}
.pagination .page-numbers.prev::before {
  transform: rotate(-135deg) translate(-1px, 1px);
}
.pagination .page-numbers.next::before {
  transform: rotate(45deg) translate(-1px, 1px);
}

.single_contents_wrapper .single_thumbnail {
  margin-bottom: 1.5rem;
}
.single_contents_wrapper .single_title {
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .single_contents_wrapper .single_title {
    font-size: 1.25rem;
  }
}
.single_contents_wrapper .single_meta_wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.single_contents_wrapper .single_date {
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: 600;
  font-family: "roboto-condensed", sans-serif;
}
.single_contents_wrapper .single_tags_wrapper {
  padding: 2.5rem 0;
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (max-width: 768px) {
  .single_contents_wrapper .single_tags_wrapper {
    padding: 1.5rem 0;
  }
}
.single_contents_wrapper .single_black_btn {
  margin: 2.5rem auto 0;
}
@media screen and (max-width: 768px) {
  .single_contents_wrapper .single_black_btn {
    margin-top: 1.5rem;
  }
}

.single_main_contents,
.page_contents_wrapper {
  font-size: 1rem;
  line-height: 2;
  margin-top: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (max-width: 768px) {
  .single_main_contents,
.page_contents_wrapper {
    font-size: 0.9375rem;
    padding-bottom: 1rem;
  }
}
.single_main_contents h2,
.single_main_contents h3,
.single_main_contents h4,
.page_contents_wrapper h2,
.page_contents_wrapper h3,
.page_contents_wrapper h4 {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.single_main_contents h2,
.page_contents_wrapper h2 {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 600;
  padding: 1rem 0.5rem;
  border-top: 1px solid #373e64;
  border-bottom: 1px solid #373e64;
}
@media screen and (max-width: 768px) {
  .single_main_contents h2,
.page_contents_wrapper h2 {
    font-size: 1.25rem;
  }
}
.single_main_contents h3,
.page_contents_wrapper h3 {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 600;
  padding-left: 0.75rem;
  border-left: 3px solid #373e64;
}
@media screen and (max-width: 768px) {
  .single_main_contents h3,
.page_contents_wrapper h3 {
    font-size: 1.125rem;
  }
}
.single_main_contents h4,
.page_contents_wrapper h4 {
  position: relative;
  font-size: 1rem;
  line-height: 2;
  font-weight: 600;
  padding-left: 1.625rem;
}
@media screen and (max-width: 768px) {
  .single_main_contents h4,
.page_contents_wrapper h4 {
    font-size: 0.9375rem;
  }
}
.single_main_contents h4::before,
.page_contents_wrapper h4::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.5625rem;
  width: 0.875rem;
  height: 0.875rem;
  background-color: #373e64;
}
.single_main_contents p,
.page_contents_wrapper p {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

section#cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1rem;
  border-top: 1px solid #dbdfe1;
}
section#cta .cta_banner {
  display: block;
  width: 25rem;
  max-width: 100%;
}
section#cta .cta_banner.coming_soon {
  pointer-events: none;
}

/*# sourceMappingURL=style.css.map */
