@charset "UTF-8";
/* =========================
// variable
// ========================= */
.latest-posts {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.latest-posts.archive-posts .post-thumbnail {
  border: 1px solid #e1e1e1;
}

.latest-posts a {
  display: inline-block;
  width: 100%;
}

@media (max-width: 768px) {
  .latest-posts {
    grid-template-columns: 1fr;
  }
  .latest-posts.archive-posts {
    grid-template-columns: 1fr 1fr;
  }
}
.no-sidebar .post-thumbnail {
  margin: 0;
  margin-bottom: 0.5rem;
}

.post-thumbnail {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}

.post-thumbnail img {
  max-width: 100%;
  height: auto;
  aspect-ratio: 5/3;
  -o-object-fit: contain;
  object-fit: contain;
  background-color: white;
}

@media (max-width: 768px) {
  .post-thumbnail img {
    max-height: 200px;
  }
}
.post-tag {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 0 0 0.5rem;
  overflow: hidden;
}

.post-tag span.recommend-label {
  background-color: #f51c1d;
  color: white;
  font-size: 14px;
  line-height: 1;
  padding: 0.5rem 1rem;
  z-index: 1;
  display: block;
  text-align: center;
  position: relative;
}

.post-tag span.recommend-label-black {
  background-color: #000;
}

.post-date {
  font-size: 0.75em;
  color: #696969;
}

.post-title a {
  color: #000;
  text-decoration: none;
}

.post-title a:hover {
  text-decoration: underline;
}

/* タブ切り替え */
.panel {
  display: none;
}

.panel.panel-show {
  display: block;
}

.tab-container {
  display: flex;
  gap: 10px 20px;
  justify-content: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.tab-container .tab {
  display: block;
  border-radius: 2rem;
  padding: 0.5rem 1rem;
  line-height: 1;
  border: 1px solid #000;
  cursor: pointer;
  transition: 0.3s all;
}

.tab-container .tab:hover {
  background-color: #000;
  color: white;
}

.tab-container .tab-active {
  background-color: #000;
  color: white;
}

.post-cat {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1rem;
}

.post-cat a {
  background-color: #000;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  font-size: 12px;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  text-decoration: none;
  cursor: pointer;
}

.panel__ttl {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.cta__btn {
  padding: 0 15px;
}

.cta__btn dl {
  background-image: url(../images/cta-btn.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 400px;
  width: 100%;
  display: flex;
  margin: 0 auto;
  aspect-ratio: 150/31;
}

.cta__btn dl dt a,
.cta__btn dl dd a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.cta__btn dl dt {
  flex: 1.4;
  margin: 0;
}

.cta__btn dl dd {
  flex: 1;
  margin: 0;
}

/* ボタンの装飾 */
.wp-block-vk-blocks-button .vk_button_link {
  position: relative;
  padding: 1em 3em 1em 2em !important;
}

.wp-block-vk-blocks-button .vk_button_link i {
  color: #f51c1d;
}

.wp-block-vk-blocks-button .vk_button_link i:after {
  content: "";
  background-color: white;
  border-radius: 50%;
  width: 2em;
  height: 2em;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

.fa-chevron-right:before {
  z-index: 1;
  position: absolute;
  right: calc(8px + 0.7em);
  top: 50%;
  transform: translateY(-50%);
}

.mv {
  position: relative;
}

.mv__slider img,
.mv__slider {
  height: calc(100vh - 106px);
}

@media screen and (max-width: 781px) {
  .mv__slider img,
.mv__slider {
    height: calc(100vh - 87px);
  }
}
.mv__slider {
  margin: 0;
}

.mv__slider img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.mv__txt {
  position: absolute;
  z-index: 1;
  bottom: 3vh;
  left: 5vw;
  display: none;
}

@media screen and (max-width: 781px) {
  .mv__txt {
    bottom: 10vw;
    left: 0;
    padding: 0 15px;
  }
}
.mv__txt h2 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mv__txt h2 .mv__txt-back {
  font-size: clamp(20px, 3vw, 40px);
  background-color: white;
  line-height: 1;
  display: inline-block;
  padding: 0.25em 0.5em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.mv__txt h2 .mv__txt-back > span {
  color: #f51c1d;
}

/*====================================
	footer
====================================*/
footer .footer__info {
  background-color: black;
}

footer .footer__info-inner {
  display: flex;
  color: white;
  justify-content: space-between;
  max-width: 1240px;
  padding: 0 15px;
  margin: 0 auto;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media screen and (max-width: 768px) {
  footer .footer__info-inner {
    flex-direction: column;
  }
}
footer .footer__copy {
  text-align: center;
  background-color: black;
  color: white;
  margin: 0;
  padding-top: 4rem;
  padding-bottom: 2rem;
  font-size: 0.95rem;
  color: #a7a7a7;
}

footer .footer__info-left img {
  max-width: 400px;
  width: 100%;
}

footer .footer__info-left .footer__info-address img {
  max-width: 80px;
  width: 100%;
  height: 80px;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer__info-left .company-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer__info-address {
  display: flex;
  gap: 5%;
  justify-content: space-between;
}

.footer__info-address address {
  font-size: 1.2rem;
  margin: 0;
  line-height: 2;
}

.footer__info-right {
  width: calc(90% - 350px);
}

.footer__info-right ul,
.footer__info-right li {
  list-style: none;
  margin: 0;
}

.footer__info-right ul li a {
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
  display: block;
}

.footer__info-right ul li a::before {
  content: "■";
  padding-right: 0.5em;
}

.footer-navigation ul {
  display: flex;
  gap: 1.2rem 2rem;
  justify-content: flex-end;
  width: 100%;
}

.footer-navigation ul li:nth-child(2) {
  position: relative;
}

.footer-navigation ul li:nth-child(2) ul.sns__list {
  margin: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  justify-content: start;
}

.footer-navigation ul li:nth-child(2) ul.sns__list a::before {
  content: none;
}

.footer-navigation {
  float: none;
}

ul.sns__list {
  display: flex;
  gap: 1rem;
  font-size: 1.5rem;
}

ul.sns__list a i {
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  .footer__info-address {
    justify-content: flex-start;
  }
  .footer__info-right {
    width: 100%;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #9b9b9b;
  }
  .footer-navigation ul {
    grid-template-columns: repeat(2, 1fr);
    margin: 0;
    gap: 0;
    justify-content: space-between;
  }
  ul.sns__list {
    gap: 1.5rem;
    justify-content: flex-start;
    margin-top: 1rem;
  }
  ul.sns__list a i {
    font-size: 1.8rem;
  }
}
.content-ttl {
  padding: 0 15px 3rem;
}

.content-ttl h3 {
  font-size: 28px !important;
}

@media screen and (min-width: 1200px) {
  .content-ttl h3 {
    font-size: 50.4px !important;
  }
  .content-ttl p {
    font-size: 28.8px !important;
  }
}
@media screen and (max-width: 680px) {
  .content-ttl h3 {
    font-size: 18px !important;
  }
}
span.vk_highlighter {
  background: linear-gradient(transparent 75%, rgb(245, 28, 29) 0) !important;
}

.wp-block-my-blocks-width-control {
  padding: 0 15px;
}

.site-content.full-content h4.stk-block-heading__text {
  display: block;
}

.site-content.full-content h4.stk-block-heading__text::before {
  content: unset;
}

/* 下層MV */
.jumbotron .jumbotron-content {
  padding-bottom: 80px;
  padding-top: 80px;
}

.jumbotron .jumbotron-overlay {
  background-color: rgba(0, 0, 0, 0.25);
}

.jumbotron .jumbotron-title {
  font-size: 2.65rem;
  letter-spacing: 0.1em;
  text-shadow: unset;
}

@media screen and (min-width: 1200px) {
  .jumbotron .jumbotron-title {
    font-size: 4.77rem;
  }
}
@media screen and (max-width: 768px) {
  .jumbotron .jumbotron-title {
    font-size: 26px;
  }
}
.jumbotron .subheader {
  font-size: 1rem;
  text-transform: none;
}

@media screen and (min-width: 1200px) {
  .jumbotron .subheader {
    font-size: 1.8rem;
  }
}
/* 下層全体css */
.site-content.full-content h4 {
  font-size: 1.8rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}

@media screen and (min-width: 1200px) {
  .site-content.full-content h4 {
    font-size: 3.24rem;
  }
}
.site-content.full-content h4::before {
  content: "";
  width: 0.35em;
  height: 1.2em;
  background-color: #f62c1d;
  display: inline-block;
}

/* single css */
.single-visual__area-inner {
  max-width: 880px;
  padding: 0 15px;
  margin: 0 auto;
}

.single-visual__content {
  display: flex;
  padding-top: 2rem;
  gap: 3rem;
}

@media screen and (max-width: 768px) {
  .single-visual__content {
    flex-direction: column;
  }
}
.single-visual__table {
  flex: 1.3;
}

.single-visual__table dl {
  display: flex;
  width: 100%;
  align-items: stretch;
}

.single-visual__table dl dt,
.single-visual__table dl dd {
  margin: 0;
  padding: 1em;
  display: grid;
  align-items: center;
}

.single-visual__table dl dt {
  flex: none;
}

@media screen and (max-width: 680px) {
  .single-visual__table dl dt,
.single-visual__table dl dd {
    padding: 0.5em;
  }
}
.single-visual__view {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .single-visual__view {
    flex-direction: row;
  }
}
@media screen and (max-width: 680px) {
  .single-visual__view {
    flex-direction: column;
  }
}
.single-visual__view iframe {
  width: 100%;
  height: 300px;
}

@media screen and (max-width: 768px) {
  .single-visual__view iframe {
    height: 200px;
  }
}
.single_btn .vk_button_link.btn-lg {
  background: #000;
}

.single_btn .vk_button_link.btn-lg .fa-chevron-right:before {
  color: #000;
}

/* 物件情報css */
.jumbotron.single-propery {
  background: #f51c1d;
}

.jumbotron.single-propery .jumbotron-overlay {
  background-color: unset;
}

.jumbotron.single-propery .jumbotron-content {
  padding-bottom: 4rem;
  padding-top: 4rem;
}

.jumbotron.single-propery .subheader {
  color: white;
}

.single-property__meta {
  display: flex;
  max-width: 880px;
  padding: 0 15px;
  margin: 0 auto;
  padding-top: 2rem;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 680px) {
  .single-property__meta {
    flex-direction: column;
    gap: 2rem;
  }
}
@media screen and (max-width: 680px) {
  .single-property__meta .single-property__meta-txt {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.single-property__meta .single-property__meta-txt p {
  margin: 0;
}

.single-property__meta .single-property__meta-txt p strong {
  font-size: 1.4em;
  color: #f51c1d;
}

.single-property__meta .single-property__meta-txt p:first-child {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.single-property__meta .cta__btn {
  padding: 0;
}

.single-property__meta .cta__btn dl {
  width: 280px;
}

.container {
  max-width: 880px;
  padding: 0 15px;
  margin: 2rem auto;
}

.container img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.container .slider {
  margin-bottom: 2rem;
}

@media screen and (max-width: 680px) {
  .container .slider {
    margin-bottom: 1rem;
  }
}
.container .slider .slick-img {
  aspect-ratio: 16/9;
}

.thumbnail-img {
  aspect-ratio: 16/9;
}

@media screen and (max-width: 680px) {
  .container .slider .slick-img {
    aspect-ratio: 3/4;
  }
  .thumbnail-img {
    aspect-ratio: 3/4;
  }
}
.container .thumbnail .slick-prev:before,
.container .thumbnail .slick-next:before {
  opacity: 1;
  font-size: 30px;
}

.container .thumbnail .slick-arrow::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid white;
  border-radius: 50%;
  z-index: 1;
  left: -2px;
  top: 0px;
}

@media screen and (max-width: 680px) {
  .container .thumbnail .slick-arrow::after {
    width: 35px;
    height: 35px;
    left: -4px;
    top: -3.5px;
  }
}
.thumbnail .slick-slide {
  margin: 0 0.5em;
  /* 左右に.5emの間隔を設定 */
}

.thumbnail .slick-list {
  margin: 0 -0.5em;
  /* 全体のオフセットを調整 */
}

.single-visual__table.single-property__table dl dt {
  background-color: #eeeeee;
  border: 1px solid #696969;
  max-width: 4em;
  text-align: center;
  width: 100%;
}

.single-visual__table.single-property__table dl dd {
  border: 1px solid #696969;
  border-left: unset;
  flex: auto;
}

.single-visual__table.single-property__table dl:not(:first-child) dt,
.single-visual__table.single-property__table dl:not(:first-child) dd {
  border-top: unset;
}

.single-contact-form {
  text-align: center;
  padding: 4rem 15px 6rem;
  background-image: url(../images/bukken-contact.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 6rem;
}

.single-contact-form h5 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  margin-top: 0;
}

.single-contact-form dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 550px;
  margin: 0 auto;
  flex-wrap: wrap;
}

@media screen and (max-width: 680px) {
  .single-contact-form dl {
    flex-direction: column;
    gap: 0;
    align-items: baseline;
  }
}
.single-contact-form dl:last-child {
  margin-bottom: 5rem;
}

.single-contact-form dl dt,
.single-contact-form dl dd {
  margin: 0;
}

@media screen and (max-width: 680px) {
  .single-contact-form dl dd {
    width: 100%;
  }
}
.single-contact-form dl dd input {
  width: 100%;
}

.single-contact-form p {
  margin: 3rem 0 1rem;
  font-size: 1.4rem;
  font-weight: bold;
}

.single-contact-form .wpcf7-form-control-wrap {
  display: block;
}

.single-contact-form .post_submin {
  margin-top: 4rem;
  margin-bottom: 5rem;
  display: inline-block;
  position: relative;
}

.single-contact-form .post_submin .wpcf7-spinner {
  position: absolute;
}

.single-contact-form .post_submin input[type=submit] {
  background-color: #000;
  position: relative;
  padding: 1em 3em 1em 2em !important;
  border-radius: 6rem;
  min-width: 200px;
  font-size: 1.5rem;
}

.single-contact-form .post_submin .fa-chevron-right:before {
  right: 1.6em;
}

.single-contact-form .post_submin i:after {
  content: "";
  background-color: white;
  border-radius: 50%;
  width: 2em;
  height: 2em;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

.single-contact-form .cta__btn dl {
  max-width: 400px;
  height: 100%;
  flex-direction: row;
}

.single-contact-form .cta__btn dl dt,
.single-contact-form .cta__btn dl dd {
  width: 100%;
  height: 100%;
}

div#primary .single-visual {
  margin-top: 5rem;
}

.tenant-list {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 768px) {
  .tenant-list .latest-posts.archive-posts {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.tenant-list .post-item {
  cursor: pointer;
  transition: all 0.15s;
}
@media (max-width: 768px) {
  .tenant-list .post-item {
    width: 47%;
  }
}
.tenant-list .post-item:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .tenant-list .post-item:hover {
    opacity: 1;
  }
}

.tenant-list .latest-posts {
  padding: 2rem 0 5rem;
}
@media (max-width: 768px) {
  .tenant-list .latest-posts {
    padding: 1rem 0 4rem;
  }
}

.tenant-list .latest-posts .post-title {
  font-size: 1.5rem;
  margin-bottom: 0.1em;
}

.tenant-list .latest-posts .post-content p {
  margin: 0;
  font-size: 1.15rem;
}

.single-visual__area {
  background-image: url(../images/bilu.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 5rem 0;
}

.single-visual__area .single-visual__area-inner {
  max-width: 1000px;
}

.single-visual__area .single-visual__table dl {
  border-bottom: 1px solid #696969;
}

.single-visual__area .single-visual__table .vk_button.vk_button-align-center {
  margin-top: 4rem;
  text-align: start;
}

div#primary .archive-visual {
  margin-top: 5rem;
}

.archive-visual .latest-posts.archive-posts {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 15px 4rem;
}

.archive-visual .latest-posts.archive-posts .post-info {
  font-size: 0.75em;
  padding-bottom: 5rem;
}

.archive-visual .latest-posts.archive-posts .post-item {
  position: relative;
}

.archive-visual .latest-posts.archive-posts .single-btn {
  position: absolute;
  bottom: 0;
}

.archive-visual .latest-posts.archive-posts .single-btn a {
  text-decoration: none;
  background: #000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5rem;
  color: white;
  padding: 0.5em 1em;
  font-size: 0.9em;
  margin-top: 2rem;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .archive-visual .wp-block-table tr {
    display: flex;
    flex-direction: column;
  }
  .archive-visual .wp-block-table tr td:first-child {
    border-top: 1px solid var(--vk-color-border-hr);
    border-bottom: unset;
    padding-bottom: 0;
    font-weight: bold;
  }
  .archive-visual .wp-block-table tr td:last-child {
    border-top: unset;
    border-bottom: 1px solid var(--vk-color-border-hr);
    padding-top: 0;
  }
}
.main-header .main-header-content {
  max-width: unset;
  position: relative;
  padding-right: 0;
}
@media screen and (min-width: 1180px) {
  .main-header .main-header-content {
    justify-content: space-between;
  }
}

@media screen and (max-width: 1024px) {
  .main-header .main-header-content {
    padding-right: 40px;
  }
}
@media screen and (min-width: 1180px) {
  .main-navigation ul.menu {
    display: flex;
    align-items: center;
  }
}

.main-header .main-header-content .main-navigation ul li:last-child {
  margin-left: 1em;
  margin-top: -18px;
}
@media screen and (min-width: 1180px) {
  .main-header .main-header-content .main-navigation ul li:last-child {
    position: absolute;
    right: 0;
    top: 0;
  }
}

.main-header .main-header-content .main-navigation ul li:last-child a {
  background-color: #f51c1d;
  color: white;
  border-radius: 0 0 0 1em;
  position: relative;
  height: 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  padding: 0.5em 1.5em;
  padding-top: calc(0.5em + 30px);
}

.main-header .main-header-content .main-navigation ul li:last-child a::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background-image: url(../images/main-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  left: 50%;
  transform: translateX(-50%);
  top: 10px;
  margin: 0;
}

.wpcf7 dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 650px;
  margin: 0 auto;
  flex-wrap: wrap;
}

@media screen and (max-width: 680px) {
  .wpcf7 dl {
    flex-direction: column;
    gap: 0;
    align-items: baseline;
  }
}
.wpcf7 dl:last-child {
  margin-bottom: 5rem;
}

.wpcf7 dl dt,
.wpcf7 dl dd {
  margin: 0;
}

@media screen and (max-width: 680px) {
  .wpcf7 dl dd {
    width: 100%;
  }
}
.wpcf7 dl dd input {
  width: 100%;
}

.wpcf7 p {
  margin: 3rem 0 1rem;
  font-size: 1.4rem;
  font-weight: bold;
}

.wpcf7 .wpcf7-form-control-wrap {
  display: block;
}

.wpcf7 .post_submin {
  margin-top: 4rem;
  margin-bottom: 5rem;
  display: inline-block;
  position: relative;
}

.wpcf7 .post_submin .wpcf7-spinner {
  position: absolute;
}

.wpcf7 .post_submin input[type=submit] {
  background-color: #f51c1d;
  position: relative;
  padding: 1em 3em 1em 2em !important;
  border-radius: 6rem;
  min-width: 200px;
  font-size: 1.5rem;
}

.wpcf7 .post_submin .fa-chevron-right:before {
  right: 1.6em;
  color: #f51c1d;
}

.wpcf7 .post_submin i:after {
  content: "";
  background-color: white;
  border-radius: 50%;
  width: 2em;
  height: 2em;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

.wpcf7 .cta__btn dl {
  max-width: 400px;
  height: 100%;
  flex-direction: row;
}

.wpcf7 .cta__btn dl dt,
.wpcf7 .cta__btn dl dd {
  width: 100%;
  height: 100%;
}

.wpcf7 .wpcf7-select {
  width: 100%;
}

.contact-page {
  margin-top: 5rem;
}

.contact-page dl {
  max-width: 640px;
}

.contact-page dl dt {
  flex: 1.25;
}

.contact-page dl dt span.required {
  margin-left: 1rem;
  background: #f51c1d;
  font-size: 0.8em;
  line-height: 1;
  padding: 0.25em 0.8em;
  color: white;
  border-radius: 5rem;
}

.contact-page dl dd {
  flex: 2;
}

.contact-page dl dd input {
  border: solid 1px #e6e6e6;
  color: #777;
  margin-top: 0.6em;
  padding: 0.6em;
}

.contact-page .post_submin {
  margin: 0 auto;
  margin-top: 4rem;
  margin-bottom: 5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}

.post-full:after {
  content: unset;
}

article.post {
  display: flex;
  max-width: 800px;
  padding: 0 15px;
  margin: 0 auto;
  align-items: center;
  gap: 1em;
}

article.post:first-child {
  margin-top: 5rem;
}

article.post:last-child {
  margin-bottom: 5rem;
}

article.post .entry-header {
  flex: 1.5;
  margin: 0;
}

article.post .post-thumbnail {
  margin: 0;
  margin-bottom: 0;
  border: 1px solid #ccc;
}

article.post .post-thumbnail img {
  -o-object-fit: cover;
  object-fit: cover;
}

article.post .entry-title {
  font-size: 1.6rem;
}

article.post .entry-meta {
  margin-top: 0;
}

article.post .entry-content {
  flex: 2.5;
}

.single-page article.post {
  flex-direction: column;
}

.single-page article.post .entry-title {
  font-size: 2rem;
  text-align: left;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}

.single-page article.post .entry-meta {
  text-align: left;
  margin-bottom: 13px;
}

@media screen and (min-width: 1180px) {
  .main-header-content .main-navigation {
    padding-right: 172px;
    margin: 0 auto;
  }
}
header .main-navigation a,
.main-header-content .main-navigation a {
  font-weight: bold;
}
@media screen and (min-width: 1180px) {
  header .main-navigation a,
.main-header-content .main-navigation a {
    font-size: 1.25rem;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (min-width: 1300px) {
  header .main-navigation a,
.main-header-content .main-navigation a {
    font-size: 1.5rem;
    padding-left: 2vw;
    padding-right: 2vw;
  }
}

header .main-navigation .current_page_item > a,
header .current-menu-item a,
.main-header-content .main-navigation .current_page_item > a,
.main-header-content .current-menu-item a {
  border-bottom: 3px solid #f51c1d;
}

header .main-navigation ul.menu > li:first-child > a,
.main-header-content .main-navigation ul.menu > li:first-child > a {
  padding-left: 15px;
}
@media screen and (min-width: 1400px) {
  header .main-navigation ul.menu > li:first-child > a,
.main-header-content .main-navigation ul.menu > li:first-child > a {
    padding-left: 20px;
  }
}

@media screen and (max-width: 980px) {
  header .main-navigation ul.menu > li:first-child > a,
.main-header-content .main-navigation ul.menu > li:first-child > a {
    padding-left: 0;
  }
}
.popup {
  display: none;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.popup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.7;
}
.popup button#close {
  background: none;
  color: white;
  z-index: 999;
  position: absolute;
  left: calc(80% - 2rem);
  top: 0;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .popup button#close {
    left: auto;
    right: 0;
  }
}

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

.popup-content {
  background: #fff;
  padding: 30px;
  width: 60%;
  z-index: 11;
  height: 80vh;
  overflow-y: scroll;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .popup-content {
    width: 80%;
    height: 80dvh;
    padding: 15px;
  }
}
.popup-content .container {
  max-width: 100%;
  padding: 0;
  margin: 0 0 3rem;
}
.popup-content .slick-slide {
  aspect-ratio: 3/4;
  padding: 0 1.5rem;
  max-height: 70vh;
  height: 100%;
}
@media (max-width: 768px) {
  .popup-content .slick-slide {
    padding: 0;
  }
}
.popup-content .slick-slide * {
  width: 100%;
  height: 100%;
}
.popup-btn {
  font-size: 0.85rem;
  background: black;
  display: inline-block;
  color: white;
  line-height: 1;
  padding: 0.5em 1em;
  border-radius: 5rem;
}

p span.stk-highlight {
  font-size: 1.5em;
}

@media screen and (max-width: 580px) {
  .drawer-navigation-content {
    padding: 60px 20px;
  }
  .jumbotron .jumbotron-content {
    padding-left: 5px;
    padding-right: 5px;
  }
  .jumbotron .jumbotron-title {
    font-size: 18.5px;
  }
  .content-ttl {
    padding: 0 10px 3rem;
  }
  :root :where(p.has-background) {
    padding: 1.25em 10px;
  }
  p span.stk-highlight {
    font-size: 1.1em;
  }
  .site-content.full-content h4 {
    font-size: 1.65rem;
  }
}
.mv__slider.tb-under {
  display: none;
}
@media screen and (max-width: 680px) {
  .mv__slider.pc-only {
    display: none;
  }
  .mv__slider.tb-under {
    display: block;
  }
}
/*# sourceMappingURL=site-customize.css.map */