@charset "UTF-8";
body {
  font-family: "Yu Gothic", "游ゴシック", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 500;
  color: #383b4e;
}

.accent_font {
  font-family: "Shippori Mincho", serif;
}

.hamburger_menu .hamburger_menu_btn {
  display: none;
}
@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: 1.5rem;
    aspect-ratio: 1/1;
    transition: all 0.3s ease;
    cursor: pointer;
  }
}
@media screen and (max-width: 768px) {
  .hamburger_menu .hamburger_menu_btn .bar {
    display: block;
    width: 75%;
    height: 0.125rem;
    background-color: #383b4e;
    transition: all 0.3s ease;
  }
}
.hamburger_menu .hamburger_menu_list_wrapper {
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .hamburger_menu .hamburger_menu_list_wrapper {
    position: fixed;
    top: 0;
    display: block;
    width: 100vw;
    height: 100%;
    background-color: rgba(56, 59, 78, 0.95);
    overflow-x: auto;
    max-width: 37.5rem;
    right: -120%;
  }
}
.hamburger_menu.open .hamburger_menu_btn {
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .hamburger_menu.open .hamburger_menu_btn {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .hamburger_menu.open .hamburger_menu_btn .bar {
    background-color: #fff;
  }
}
@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.3s ease;
}
@media screen and (max-width: 768px) {
  .hamburger_menu.open .hamburger_menu_list_wrapper {
    right: 0;
  }
}

.slider {
  width: 100%;
  margin: 0 auto;
}
.slider .slide_item {
  margin-bottom: 0.5rem !important;
  transition: all 0.5s ease;
}
.slider.center_slider .slide_item {
  width: 50vw;
  transform: scale(0.8);
  opacity: 0.5;
}
.slider.center_slider .slide_item.slick-center {
  transform: scale(1);
  opacity: 1;
}
.slider .slick-arrow {
  position: absolute;
  z-index: 500;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  outline: none;
  background-color: #383b4e;
  border-radius: 50%;
  top: 42%;
}
@media screen and (max-width: 768px) {
  .slider .slick-arrow {
    width: 2rem;
    height: 2rem;
  }
}
.slider .slick-arrow::before, .slider .slick-arrow::after {
  content: "";
  display: block;
  position: absolute;
  width: 30%;
  height: 0.125rem;
  background-color: #fff;
  border-radius: 0.125rem;
}
.slider .slick-arrow::before {
  top: 38%;
}
.slider .slick-arrow::after {
  bottom: 38%;
}
.slider .slick-arrow.slick-prev {
  left: 0.25rem;
}
.slider .slick-arrow.slick-prev::before, .slider .slick-arrow.slick-prev::after {
  left: 32%;
}
.slider .slick-arrow.slick-prev::before {
  transform: rotate(-45deg);
}
.slider .slick-arrow.slick-prev::after {
  transform: rotate(45deg);
}
.slider .slick-arrow.slick-next {
  right: 0.25rem;
}
.slider .slick-arrow.slick-next::before, .slider .slick-arrow.slick-next::after {
  right: 32%;
}
.slider .slick-arrow.slick-next::before {
  transform: rotate(45deg);
}
.slider .slick-arrow.slick-next::after {
  transform: rotate(-45deg);
}
.slider .slick-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.slider .slick-dots li {
  display: inline-block;
}
.slider .slick-dots li button {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  color: transparent;
  background: #d9d9d9;
  border-radius: 50%;
  outline: none;
}
.slider .slick-dots li.slick-active button {
  background: #383b4e;
}

/* リセット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.8;
  text-rendering: optimizeSpeed;
  letter-spacing: 0.04em;
}

.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 (max-width: 400px) {
  html {
    font-size: 4vw;
  }
}

/* レスポンシブ */
@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_1200 {
  width: 100%;
  max-width: calc(1200px + 2.5rem);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.innerbox_1180 {
  width: 100%;
  max-width: calc(1180px + 2.5rem);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.innerbox_1040 {
  width: 100%;
  max-width: calc(1040px + 2.5rem);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.innerbox_880 {
  width: 100%;
  max-width: calc(880px + 2.5rem);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* その他頻出パーツ */
.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,
.single_contents_wrapper {
  padding-top: 8.125rem;
  padding-bottom: 7.875rem;
}
@media screen and (max-width: 768px) {
  .page_contents_wrapper,
.single_contents_wrapper {
    padding-top: 5rem;
    padding-bottom: 0;
  }
}

.page_title {
  background-color: #eeeeee;
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .page_title {
    padding-top: 3rem;
    padding-bottom: 1.5rem;
  }
}
.page_title .page_title_inner {
  position: relative;
  z-index: 400;
  height: 9.375rem;
}
@media screen and (max-width: 768px) {
  .page_title .page_title_inner {
    height: 8.625rem;
  }
}
.page_title .page_title_inner .ja_title {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 3rem;
  line-height: 1;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 768px) {
  .page_title .page_title_inner .ja_title {
    gap: 0.5rem;
    font-size: 2.25rem;
  }
}
.page_title .page_title_inner .ja_title::before {
  content: "";
  display: block;
  width: 4rem;
  height: 1px;
  background-color: #383b4e;
}
@media screen and (max-width: 768px) {
  .page_title .page_title_inner .ja_title::before {
    width: 2.5rem;
  }
}
.page_title .page_title_inner .img_title {
  position: absolute;
  z-index: -1;
  right: 0;
  top: -1.25rem;
  width: 25rem;
  height: 10.625rem;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .page_title .page_title_inner .img_title {
    right: -1.25rem;
    top: initial;
    bottom: 0;
    width: 15rem;
    height: 6.375rem;
  }
}

.breadcrumb_wrapper {
  background-color: #383b4e;
  padding: 0.625rem 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;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .breadcrumb_wrapper .breadcrumb_inner .breadcrumb_item {
    font-size: 0.75rem;
  }
}
.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: inherit;
  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: 5rem;
}
@media screen and (max-width: 768px) {
  body main#main {
    padding-top: 4rem;
  }
}

/* ヘッダー */
header#header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.08);
}
header#header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
}
@media screen and (min-width: 1200px) {
  header#header .header_inner {
    padding-left: 5rem;
  }
}
@media screen and (max-width: 768px) {
  header#header .header_inner {
    height: 4rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
header#header .header_left {
  width: 10.625rem;
}
@media screen and (max-width: 768px) {
  header#header .header_left {
    width: 8.25rem;
  }
}
@media screen and (max-width: 768px) {
  header#header .header_right .hamburger_menu_list_wrapper {
    padding: 6.5rem 1rem;
  }
}
header#header .header_right .hamburger_menu_list {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  header#header .header_right .hamburger_menu_list {
    flex-direction: column;
    align-items: flex-start;
    max-width: 15.75rem;
    margin: 0 auto;
  }
}
header#header .header_right .hamburger_menu_list .menu-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 768px) {
  header#header .header_right .hamburger_menu_list .menu-item a {
    color: #fff;
  }
}
@media screen and (max-width: 768px) {
  header#header .header_right .hamburger_menu_list .menu-item.header_menu__contact {
    width: 100%;
  }
}
header#header .header_right .hamburger_menu_list .menu-item.header_menu__contact a {
  position: relative;
  z-index: 500;
  gap: 0.375rem;
  width: 14.625rem;
  height: 5rem;
  color: #fff;
  background-color: #383b4e;
  padding-bottom: 0.25rem;
}
@media screen and (max-width: 768px) {
  header#header .header_right .hamburger_menu_list .menu-item.header_menu__contact a {
    width: 100%;
    height: 4.25rem;
    color: #383b4e;
    background-color: #fff;
  }
}
header#header .header_right .hamburger_menu_list .menu-item.header_menu__contact a::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background-image: url(../../assets/img/common/icon_mail_white.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  header#header .header_right .hamburger_menu_list .menu-item.header_menu__contact a::before {
    background-image: url(../../assets/img/common/icon_mail_black.webp);
  }
}
header#header .header_right .hamburger_menu_list .menu-item.header_menu__contact a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 1.375rem;
  left: 50%;
  transform: translateX(-50%);
  width: 9.625rem;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 768px) {
  header#header .header_right .hamburger_menu_list .menu-item.header_menu__contact a::after {
    background-color: #383b4e;
  }
}
header#header .header_right .hamburger_menu_list .menu-item.header_menu__line {
  width: 100%;
  margin-top: -1.5rem;
}
header#header .header_right .hamburger_menu_list .menu-item.header_menu__line a {
  position: relative;
  z-index: 500;
  gap: 0.375rem;
  width: 100%;
  height: 3.75rem;
  color: #fff;
  border: 1px solid #fff;
  padding-bottom: 0.25rem;
}
header#header .header_right .hamburger_menu_list .menu-item.header_menu__line a::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(../../assets/img/common/icon_line_white.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
header#header .header_right .hamburger_menu_list .menu-item.header_menu__line a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0.875rem;
  left: 50%;
  transform: translateX(-50%);
  width: 7.8125rem;
  height: 1px;
  background-color: white;
}

/* フッター */
footer#footer .footer_top {
  position: relative;
  z-index: 200;
  background-color: #383b4e;
  padding: 0 7.5rem;
}
@media screen and (max-width: 768px) {
  footer#footer .footer_top {
    padding: 0 1.25rem;
  }
}
footer#footer .footer_menu_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
  align-items: center;
  gap: 1.5rem 2.5rem;
  padding: 1.5625rem 0;
}
@media screen and (max-width: 768px) {
  footer#footer .footer_menu_list {
    justify-content: center;
  }
}
footer#footer .footer_menu_list .menu-item a {
  display: flex;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  color: #fff;
}
footer#footer .footer_menu_list .menu-item.footer_menu__contact a {
  border: 1px solid #fff;
  padding: 0.875rem 1.5rem;
}
footer#footer .footer_bottom {
  position: relative;
  z-index: 100;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #fff;
  padding: 1.5rem 7.5rem;
}
@media screen and (max-width: 768px) {
  footer#footer .footer_bottom {
    flex-direction: column;
    padding: 1.25rem;
  }
}
footer#footer .footer_left {
  padding-top: 1rem;
}
@media screen and (max-width: 768px) {
  footer#footer .footer_left {
    padding-top: 0;
  }
}
footer#footer .footer_logo {
  display: block;
}
footer#footer .footer_logo .logo {
  width: 10.625rem;
  height: 5rem;
  object-fit: contain;
}
footer#footer .footer_info {
  margin-top: 1rem;
}
footer#footer .footer_info__address,
footer#footer .footer_info__tel {
  font-size: 1.125rem;
  line-height: 1.25;
  letter-spacing: 0.04em;
  color: #111111;
}
footer#footer .footer_info__address .small,
footer#footer .footer_info__tel .small {
  font-size: 1rem;
}
footer#footer .footer_info__tel {
  margin-top: 0.75rem;
}
footer#footer .footer_decoration {
  width: 25rem;
}
@media screen and (max-width: 768px) {
  footer#footer .footer_decoration {
    position: absolute;
    z-index: -1;
    top: 1.25rem;
    left: 13.75rem;
    width: 15rem;
  }
}
footer#footer .footer_copyright {
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: right;
  margin-top: 2.125rem;
}
@media screen and (max-width: 768px) {
  footer#footer .footer_copyright {
    margin-top: 1.5rem;
  }
}

/* その他パーツ */
.section_title {
  font-size: 3rem;
  letter-spacing: 0.06em;
  line-height: 1;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section_title {
    font-size: 2.25rem;
    line-height: 1.4;
  }
}
.section_title::before {
  content: "";
  display: block;
  width: 0.0625rem;
  height: 7.5rem;
  background-color: #383b4e;
  margin: 0 auto 1.5rem;
}
@media screen and (max-width: 768px) {
  .section_title::before {
    height: 5rem;
  }
}
.section_title.section_title__left {
  text-align: left;
}
.section_title.section_title__left::before {
  margin-left: 5rem;
}
@media screen and (max-width: 768px) {
  .section_title.section_title__left::before {
    margin-left: 3.25rem;
  }
}

.section_explain {
  font-size: 1.25rem;
  text-align: center;
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .section_explain {
    line-height: 1.2;
  }
}

a.btn,
p.btn > a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}

a.return_btn {
  width: 12.5rem;
  height: 4rem;
  color: #fff;
  background-color: #383b4e;
  border-radius: 2rem;
}

a.line_btn,
p.line_btn > a {
  gap: 0.5rem;
}
a.line_btn::before,
p.line_btn > a::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(../../assets/img/common/icon_line_white.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

a.more_btn,
p.more_btn > a {
  position: relative;
  z-index: 400;
  width: 15.8125rem;
  height: 4.0625rem;
  font-size: 1.125rem;
  font-family: "Shippori Mincho", serif;
  background-color: #fff;
  border: 1px solid #383b4e;
  padding-right: 5rem;
}
@media screen and (max-width: 768px) {
  a.more_btn,
p.more_btn > a {
    height: 3.125rem;
    color: #fff;
    background-color: #383b4e;
    padding-right: 0;
  }
}
a.more_btn::after,
p.more_btn > a::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 100;
  right: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 5rem;
  height: 1px;
  background-color: #383b4e;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  a.more_btn::after,
p.more_btn > a::after {
    display: none;
  }
}
a.more_btn:hover,
p.more_btn > a:hover {
  opacity: 1;
}
a.more_btn:hover::after,
p.more_btn > a:hover::after {
  right: -3.75rem;
}

.underline {
  text-decoration: underline;
}

.flex_width_fix {
  flex-shrink: 0;
}

table {
  width: 100%;
}
table tr {
  border-bottom: 1px solid #afafb1;
}
table tr:nth-child(1) {
  border-top: 1px solid #afafb1;
}
table th,
table td {
  text-align: left;
  border: none;
  padding: 1.125rem 0 1.125rem 2.5rem;
}
@media screen and (max-width: 768px) {
  table th,
table td {
    padding: 1.125rem 0 1.125rem 1rem;
  }
}
table th {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  white-space: nowrap;
}

.text_blue {
  color: #42aadc;
}

.text_brown {
  color: #886f45;
}

.bold {
  font-weight: 700;
}

.inlineblock {
  display: inline-block;
}

section#fv {
  position: relative;
  z-index: 400;
  min-height: calc(100vh - 5rem);
  background-image: url(../../assets/img/top/fv_bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  section#fv {
    background-image: url(../../assets/img/top/fv_bg_sp.webp);
    min-height: calc(100vh - 4rem);
  }
}
section#fv .fv_inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 3rem;
}
section#fv .fv_title {
  font-size: 4rem;
  line-height: 1.4;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  section#fv .fv_title {
    font-size: 3rem;
  }
}
section#fv .fv_explain {
  font-size: 1.25rem;
  letter-spacing: 0;
  color: #fff;
  padding-bottom: 1.5rem;
  margin-top: 7.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  section#fv .fv_explain {
    width: 100%;
    font-size: 1.125rem;
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 420px) {
  section#fv .fv_explain {
    font-size: 1rem;
  }
}
section#fv .fv_line_link {
  font-size: 1rem;
  color: #fff;
}

section#concept .concept_explain {
  font-size: 1.25rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  section#concept .concept_explain {
    line-height: 1.6;
    margin-top: 1.5rem;
  }
}
section#concept .concept_explain span {
  text-decoration: underline;
  text-decoration-thickness: 0.75em;
  text-decoration-color: #dadce4;
  text-underline-offset: -0.4em;
  text-decoration-skip-ink: none;
}
section#concept .concept_lower {
  position: relative;
  z-index: 400;
  display: flex;
  align-items: flex-end;
  gap: 2.5rem 3rem;
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  section#concept .concept_lower {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
  }
}
section#concept .concept_lower > picture {
  flex-shrink: 0;
  max-width: 100%;
}
section#concept .concept_lower__image {
  position: relative;
  z-index: 500;
  width: 22.5rem;
  flex-shrink: 0;
}
section#concept .concept_lower__text {
  position: relative;
  z-index: 400;
  width: 100%;
}
section#concept .concept_lower__deco_image {
  position: absolute;
  z-index: 600;
  right: 0;
  top: -5rem;
  width: 25rem;
  height: 10.625rem;
}
@media screen and (max-width: 768px) {
  section#concept .concept_lower__deco_image {
    top: 12.5rem;
    width: 15rem;
    height: 6.375rem;
  }
}
section#concept .concept_lower__request {
  position: relative;
  z-index: 400;
  padding: 1.5rem 0;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  section#concept .concept_lower__request {
    padding: 0 0 2.5rem;
  }
}
section#concept .concept_lower__request::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -2;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150vw;
  height: 100%;
  background-color: #f9f9f9;
}
@media screen and (max-width: 768px) {
  section#concept .concept_lower__request::before {
    top: initial;
    width: 100vw;
    height: calc(100% + 11.875rem);
  }
}
section#concept .concept_lower__bgwhite {
  width: fit-content;
  font-size: 1.5rem;
  font-weight: 600;
  background-color: #fff;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  margin: 0.625rem 0;
}
@media screen and (max-width: 768px) {
  section#concept .concept_lower__bgwhite {
    width: 100%;
    font-size: 1.25rem;
    text-align: center;
    padding: 1rem 0.25rem;
    margin: 0.5rem 0;
  }
}
@media screen and (max-width: 420px) {
  section#concept .concept_lower__bgwhite {
    font-size: 1.125rem;
  }
}
section#concept .concept_lower__bgwhite span {
  display: inline-block;
}
section#concept .concept_lower__subtitle {
  font-size: 2rem;
  font-weight: 600;
  color: #886f45;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  section#concept .concept_lower__subtitle {
    margin-top: 1.5rem;
  }
}
section#concept .concept_lower__explain {
  display: block;
  font-size: 1.25rem;
  margin-top: 1rem;
}
@media screen and (max-width: 480px) {
  section#concept .concept_lower__explain {
    font-size: 1.1875rem;
  }
}
section#concept .concept_lower__explain .bg_black {
  display: inline-block;
  line-height: 1;
  color: #fff;
  background-color: #383b4e;
  padding: 0.5rem 0.625rem;
  margin-right: 0.25rem;
}
@media screen and (max-width: 768px) {
  section#concept .concept_lower__explain .bg_black {
    margin-bottom: 0.25rem;
  }
}

section#service {
  padding-top: 5rem;
}
@media screen and (max-width: 768px) {
  section#service {
    padding-top: 2.5rem;
  }
}
section#service .service_item_wrapper {
  position: relative;
  z-index: 400;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  section#service .service_item_wrapper {
    flex-wrap: wrap;
    background-color: #f9f9f9;
    padding: 0;
  }
}
section#service .service_item_wrapper::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  left: -5rem;
  right: -5rem;
  bottom: 0;
  top: 1.375rem;
  background-color: #f9f9f9;
}
@media screen and (max-width: 768px) {
  section#service .service_item_wrapper::after {
    display: none;
  }
}
section#service .service_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100% - 5rem) / 3);
}
@media screen and (max-width: 768px) {
  section#service .service_item {
    width: 100%;
    padding: 1rem 1.25rem 1.25rem;
  }
}
section#service .service_item__number {
  font-size: 2.5rem;
  text-align: center;
  line-height: 1;
}
section#service .service_item__number::after {
  content: "";
  display: block;
  width: 3.125rem;
  height: 1px;
  background-color: #383b4e;
  margin: 1.5rem auto 0;
}
section#service .service_item__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 3.625rem;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  section#service .service_item__title {
    height: auto;
    margin-top: 2rem;
  }
}
section#service .service_item__title .small {
  font-size: 1.125rem;
  color: #646671;
}
section#service .service_item__content {
  flex: 1;
  font-size: 1.125rem;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  section#service .service_item__content {
    margin-top: 1.5rem;
  }
}
section#service .service_item__image {
  aspect-ratio: 320/180;
  object-fit: cover;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  section#service .service_item__image {
    margin-top: 1.5rem;
  }
}

section#product {
  position: relative;
  z-index: 400;
  padding-top: 5rem;
}
@media screen and (max-width: 768px) {
  section#product {
    padding-top: 3.5rem;
  }
}
section#product::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 13.75rem;
  background-color: #f9f9f9;
}
@media screen and (max-width: 768px) {
  section#product::before {
    display: none;
  }
}
section#product .product_inner {
  gap: 4.25rem;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  section#product .product_inner {
    flex-wrap: wrap;
    gap: 3.5rem;
  }
}
section#product .product_title_wrapper {
  width: 32.5rem;
}
@media screen and (max-width: 768px) {
  section#product .product_title_wrapper {
    position: relative;
    z-index: 400;
    width: 100%;
  }
}
section#product .section_title {
  display: flex;
  align-items: flex-end;
  gap: 3.4375rem;
  text-align: left;
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  section#product .section_title {
    gap: 0.9375rem;
  }
}
section#product .section_title::before {
  height: 17.5625rem;
  margin: 0;
}
@media screen and (max-width: 768px) {
  section#product .section_title::before {
    height: 12.875rem;
    transform: translateY(1rem);
  }
}
section#product .product_decoration {
  width: 25rem;
  height: 10.625rem;
  object-fit: contain;
  margin: 3.5rem auto 0;
}
@media screen and (max-width: 768px) {
  section#product .product_decoration {
    position: absolute;
    z-index: 400;
    right: 0;
    bottom: -5.875rem;
    width: 15rem;
    height: 6.375rem;
  }
}
section#product .product_image_wrapper {
  width: 100%;
  padding-top: 5rem;
}
@media screen and (max-width: 768px) {
  section#product .product_image_wrapper {
    padding-top: 0;
  }
}
section#product .product_image {
  height: auto;
  object-fit: cover;
}
section#product .product_main_image {
  aspect-ratio: 620/400;
}
section#product .product_child_image_wrapper {
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
section#product .product_child_image_wrapper .product_image {
  width: calc((100% - 1.5rem) / 4);
  aspect-ratio: 149/100;
}

section#voice {
  position: relative;
  z-index: 400;
  margin-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  section#voice {
    margin-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
section#voice::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 2.5rem);
  background-image: url(../../assets/img/top/voice_bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section#voice .voice_item_wrapper {
  flex-wrap: wrap;
  gap: 1rem 3rem;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  section#voice .voice_item_wrapper {
    margin-top: 2.5rem;
  }
}
section#voice .voice_item {
  display: flex;
  flex-direction: column;
  width: calc((100% - 3rem) / 2);
  background-color: #fff;
  padding: 2.5rem 3rem;
}
@media screen and (max-width: 768px) {
  section#voice .voice_item {
    width: 100%;
    padding: 1.5rem 1rem;
  }
}
section#voice .voice_item__title {
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  section#voice .voice_item__title {
    font-size: 1.25rem;
  }
}
section#voice .voice_item__content {
  font-size: 1.125rem;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  section#voice .voice_item__content {
    line-height: 1.6;
  }
}
section#voice .voice_item__info {
  align-items: center;
  gap: 1.5rem;
  border-top: 1px solid #cdcdcd;
  padding-top: 1rem;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  section#voice .voice_item__info {
    padding-top: 0.5rem;
    margin-top: 0.5rem;
  }
}
section#voice .voice_item__image {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
  flex-shrink: 0;
}
section#voice .voice_item__personal {
  font-size: 1rem;
  line-height: 1;
}

section#news {
  padding-top: 2.5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  section#news {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
  }
}
section#news .news_contents_scroll {
  overflow-x: auto;
}
section#news .news_contents_wrapper {
  display: flex;
  gap: 2.5rem;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  section#news .news_contents_wrapper {
    margin-top: 2.75rem;
    width: max-content;
  }
}
section#news .post_co {
  display: flex;
  flex-direction: column;
  width: calc((100% - 7.5rem) / 4);
}
@media screen and (max-width: 768px) {
  section#news .post_co {
    width: 16.875rem;
  }
}
section#news .post_co .post_co_title {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 500;
  flex: 1;
}
@media screen and (max-width: 768px) {
  section#news .post_co .post_co_title {
    font-size: 1.25rem;
  }
}
section#news .scroll_icon {
  width: fit-content;
  font-size: 0.875rem;
  line-height: 1;
  font-family: "Shippori Mincho", serif;
  border-bottom: 1px solid #383b4e;
  padding: 0.25rem 1rem 0.25rem 0;
  margin-top: 1.5rem;
  margin-left: auto;
}
section#news .news_btn_wrapper {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  section#news .news_btn_wrapper {
    margin-top: 2.5rem;
  }
}

section#company {
  background-color: #eeeeee;
}
section#company .company_inner {
  display: flex;
  gap: 9.9375rem;
}
@media screen and (max-width: 768px) {
  section#company .company_inner {
    flex-wrap: wrap;
    gap: 2.875rem;
  }
}
section#company .section_title {
  flex-shrink: 0;
  white-space: nowrap;
}
section#company .company_info_table_wrapper {
  width: 100%;
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  section#company .company_info_table_wrapper {
    padding-top: 0;
    padding-bottom: 2.5rem;
  }
}
section#company .company_info_table {
  font-size: 1.125rem;
}

section#contact {
  padding-top: 2.5rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  section#contact {
    padding-top: 1.5rem;
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 768px) {
  section#contact .contact_explain {
    text-align: left;
  }
}
section#contact .contact_form_wrapper {
  margin-top: 5rem;
}

form.wpcf7-form span.required,
form.wpcf7-form span.no_required {
  display: inline-block;
  font-size: 0.8125rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  padding: 0.25rem 0.375rem;
  margin-left: 0.25rem;
}
form.wpcf7-form span.required {
  background-color: #dc1c1c;
}
form.wpcf7-form span.no_required {
  background-color: #999999;
}
form.wpcf7-form input:not([type=radio]):not([type=checkbox]):not([type=submit]),
form.wpcf7-form textarea {
  width: 100%;
  border: 1px solid #afafb1;
  background-color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 500;
  font-family: "Yu Gothic", "游ゴシック", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  padding: 1rem;
}
@media screen and (max-width: 768px) {
  form.wpcf7-form input:not([type=radio]):not([type=checkbox]):not([type=submit]),
form.wpcf7-form textarea {
    font-size: 1.125rem;
    padding: 0.9375rem;
  }
}
form.wpcf7-form input[type=radio],
form.wpcf7-form input[type=checkbox] {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: #383b4e;
}
form.wpcf7-form .wpcf7-checkbox {
  display: block;
  padding-left: 1rem;
  padding-top: 0.5rem;
}
form.wpcf7-form .wpcf7-checkbox span {
  display: block;
  margin: 0;
}
form.wpcf7-form .wpcf7-checkbox .wpcf7-list-item:nth-child(n+2) {
  margin-top: 1rem;
}
form.wpcf7-form .wpcf7-checkbox label {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
}
form.wpcf7-form .wpcf7-checkbox label .wpcf7-list-item-label {
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  form.wpcf7-form .wpcf7-checkbox label .wpcf7-list-item-label {
    font-size: 1.125rem;
  }
}
form.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
}
form.wpcf7-form .contact_form .form_item:nth-child(n+2) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  form.wpcf7-form .contact_form .form_item:nth-child(n+2) {
    margin-top: 1.5rem;
  }
}
form.wpcf7-form .contact_form .form_item .form_item__title {
  display: flex;
  align-items: center;
}
form.wpcf7-form .contact_form .form_item .form_item__title .form_item__title_inner {
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 768px) {
  form.wpcf7-form .contact_form .form_item .form_item__title .form_item__title_inner {
    font-size: 1.25rem;
  }
}
form.wpcf7-form .contact_form .form_item .form_item__title .small {
  font-size: 1rem;
  font-family: inherit;
}
form.wpcf7-form .contact_form .form_item .form_item__content {
  margin-top: 0.5rem;
}
form.wpcf7-form .privacy_policy_wrapper {
  height: 11.25rem;
  background-color: #fff;
  border: 1px solid #afafb1;
  padding: 1.5rem;
  margin-top: 2.5rem;
  overflow-x: auto;
}
@media screen and (max-width: 768px) {
  form.wpcf7-form .privacy_policy_wrapper {
    padding: 1rem 0.5rem;
    margin-top: 1.5rem;
  }
}
form.wpcf7-form .privacy_policy_wrapper .privacy_policy_title {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  color: #333333;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  form.wpcf7-form .privacy_policy_wrapper .privacy_policy_title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
}
form.wpcf7-form .privacy_policy_wrapper h3,
form.wpcf7-form .privacy_policy_wrapper p {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  form.wpcf7-form .privacy_policy_wrapper h3,
form.wpcf7-form .privacy_policy_wrapper p {
    font-size: 0.875rem;
  }
}
form.wpcf7-form .privacy_policy_wrapper h3 {
  font-weight: 700;
}
form.wpcf7-form .acceptance_wrapper {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  form.wpcf7-form .acceptance_wrapper {
    margin-top: 1.5rem;
  }
}
form.wpcf7-form .acceptance_wrapper span:not(.required):not(.underline) {
  display: block;
  margin: 0;
}
form.wpcf7-form .acceptance_wrapper label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
form.wpcf7-form .acceptance_wrapper label input {
  width: 1rem;
  height: 1rem;
}
form.wpcf7-form .acceptance_wrapper label span {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 768px) {
  form.wpcf7-form .acceptance_wrapper label span {
    font-size: 1.125rem;
  }
}
form.wpcf7-form .submit_btn_wrapper {
  position: relative;
  z-index: 400;
  max-width: 100%;
  width: 21.6875rem;
  height: 4.1875rem;
  border: 1px solid #383b4e;
  margin: 5rem auto 0;
}
@media screen and (max-width: 768px) {
  form.wpcf7-form .submit_btn_wrapper {
    margin-top: 2.5rem;
  }
}
form.wpcf7-form .submit_btn_wrapper .submit_btn {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #eeeeee;
  font-size: 1.25rem;
  font-family: "Shippori Mincho", serif;
  padding-right: 5rem;
}
@media screen and (max-width: 768px) {
  form.wpcf7-form .submit_btn_wrapper .submit_btn {
    padding-right: 0;
  }
}
form.wpcf7-form .submit_btn_wrapper .submit_btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}
form.wpcf7-form .submit_btn_wrapper::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 100;
  right: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 5rem;
  height: 1px;
  background-color: #383b4e;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  form.wpcf7-form .submit_btn_wrapper::after {
    display: none;
  }
}
form.wpcf7-form .submit_btn_wrapper:hover {
  opacity: 1;
}
form.wpcf7-form .submit_btn_wrapper:hover::after {
  right: -3.75rem;
}

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

.categories_wrapper,
.news_item__categories {
  gap: 0.5rem;
}

.tags_wrapper {
  gap: 1rem 1.5rem;
}

.cat_item,
.news_item__categories > a {
  display: inline-block;
  font-size: 0.9375rem;
  line-height: 1;
  color: #383b4e;
  background-color: #eeeeee;
  padding: 0.375rem 0.5rem;
}

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

.tag_item {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.7;
}
.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%;
    padding: 0 1.96875rem 5rem;
  }
}

.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: 700;
  font-family: "Shippori Mincho", serif;
}
.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: "Shippori Mincho", 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;
  }
}
.post_co .post_co_excerpt {
  font-size: 1.125rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  height: 4.2em;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .post_co .post_co_excerpt {
    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;
  border-radius: 1rem;
}
@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: #383b4e;
  margin: 0 0 0.375rem;
}
@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: #886f45 !important;
  color: #886f45 !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.5em;
}
#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;
}
.pagination .page-numbers.current {
  font-weight: 700;
  color: #886f45;
}
.pagination .page-numbers.prev, .pagination .page-numbers.next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  background-color: #fff;
  border: 1px solid #886f45;
  border-radius: 50%;
}
.pagination .page-numbers.prev::before, .pagination .page-numbers.next::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 1.5px solid #886f45;
  border-top: 1.5px solid #886f45;
}
.pagination .page-numbers.prev::before {
  transform: rotate(-135deg) translate(-1px, 1px);
}
.pagination .page-numbers.next::before {
  transform: rotate(45deg) translate(-1px, 1px);
}

.single_main_contents .single_thumbnail {
  margin-bottom: 1.5rem;
}
.single_main_contents .single_title {
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .single_main_contents .single_title {
    font-size: 1.25rem;
  }
}
.single_main_contents .single_meta_wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.single_main_contents .single_date {
  font-size: 0.875rem;
  line-height: 1.7;
  letter-spacing: 0;
  color: rgba(33, 36, 41, 0.5);
}
.single_main_contents .single_tags_wrapper {
  padding: 2.5rem 0;
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (max-width: 768px) {
  .single_main_contents .single_tags_wrapper {
    padding: 1.5rem 0;
  }
}
.single_main_contents .btn {
  letter-spacing: 0;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .single_main_contents .btn {
    margin-top: 1.5rem;
  }
}

.single_main_texts,
.page_contents_wrapper {
  font-size: 1rem;
  line-height: 2;
  border-bottom: 1px solid #e0e0e0;
}
.single_main_texts h2,
.single_main_texts h3,
.single_main_texts h4,
.page_contents_wrapper h2,
.page_contents_wrapper h3,
.page_contents_wrapper h4 {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.single_main_texts h2,
.page_contents_wrapper h2 {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 600;
  padding: 1rem 0.5rem;
  border-top: 1px solid #886f45;
  border-bottom: 1px solid #886f45;
}
@media screen and (max-width: 768px) {
  .single_main_texts h2,
.page_contents_wrapper h2 {
    font-size: 1.25rem;
  }
}
.single_main_texts h3,
.page_contents_wrapper h3 {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 600;
  padding-left: 0.75rem;
  border-left: 3px solid #886f45;
}
@media screen and (max-width: 768px) {
  .single_main_texts h3,
.page_contents_wrapper h3 {
    font-size: 1.125rem;
  }
}
.single_main_texts 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_texts h4,
.page_contents_wrapper h4 {
    font-size: 0.9375rem;
  }
}
.single_main_texts 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: #886f45;
}
.single_main_texts p,
.page_contents_wrapper p {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

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