@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Monomakh&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  color: #020202;
  line-height: 1.875;
  background-color: #FEFBF8;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 0.875rem;
  }
}
body.is-noScroll {
  width: 100%;
  height: 100%;
  position: fixed;
}

a {
  color: inherit;
  text-decoration: none;
  word-break: break-all;
}
a[target=_blank] {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  user-drag: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
}

li {
  list-style: none;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  padding: 6px 10px;
  border: 1px solid #C4C4C4;
  border-radius: 5px;
  outline: none;
}
textarea {
  resize: vertical;
}


.wrapper {
  width: 100%;
}
.mainVisual {
  max-width: calc(1280px + 8%);
  margin: 0 auto 0 auto;
  padding: 0 4%;
  padding-bottom: 2.245rem;
  margin-top: 1.235rem;
  margin-bottom: 3.75rem;
}
.inner {
  max-width: calc(1280px + 8%);
  padding-right: 4%;
  padding-left: 4%;
  margin: 0 auto;
}
.inner.is-small {
  max-width: calc(1160px + 8%);
}
section {
  width: 100%;
  padding-top: 118px;
  padding-bottom: 82px;
}

.content-title, .page-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .content-title, .page-title {
    font-size: 1rem;
  }
}
.content-title::before, .page-title::before {
  content: attr(data-title);
  display: block;
  margin-bottom: 0.281em;
  font-family: "Monomakh", system-ui;
  color: #993123;
  line-height: 0.8;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.content-title {
  margin-bottom: 1.916em;
}
.content-title::before {
  font-size: 4rem;
}
@media screen and (max-width: 1100px) {
  .content-title::before {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .content-title::before {
    font-size: 2rem;
  }
}

.page-title {
  margin-bottom: 0.833em;
  text-align: center;
}
.page-title::before {
  font-size: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .page-title::before {
    font-size: 1.75rem;
  }
}

.btn {
	display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  margin:0 auto;
  padding: .9em 2em;
  border: none;
  box-shadow: 0 2px 3px rgb(0 0 0 / 25%), 0 2px 3px -2px rgb(0 0 0 / 15%);
  background-color: #993123;
  color: #fff;
  font-size: 1em;
}
.btn::after {
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
  margin-left: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: '';
}
.btn:hover {
  background-color: #6E2319;
}

.page404-text-box {
  max-width: 585px;
  margin: 0 auto;
  font-size: 0.9375rem;
  color: #333;
  line-height: 2.333;
}
.page404-text-box > p:not(:last-of-type) {
  margin-bottom: 1.5em;
}
.page404-text-box a {
  text-decoration: underline;
}

.c-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: #6C6C6C;
  line-height: 3.2;
}
@media screen and (max-width: 768px) {
  .c-breadcrumbs {
    font-size: 0.8125rem;
  }
}
.c-breadcrumbs > li {
  display: inline-block;
  position: relative;
}
.c-breadcrumbs > li:not(:last-of-type)::after {
  content: ">";
  display: inline-block;
  margin-right: 0.5em;
  margin-left: 0.5em;
}

.box-white {
  padding: 60px 6.551% 92px;
  margin-bottom: 74px;
}
.box-white.is-page404 {
  padding-top: 56px;
  padding-bottom: 56px;
}

#header {
  width: 100%;
  color: #020202;
  text-align: center;
  padding: 30px 20px;
}
#header h1 {
  width: 120px;
  height: auto;
  margin-left: 3%;
}

#g-nav.panelactive{
  position:fixed;
  z-index: 999;
	top: 0;
	width: 100%;
  height: 100vh;
}
.circle-bg{
  position: fixed;
	z-index: 3;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #993123;
  transform: scale(0);
	right:-50px;
  top:-50px;
  transition: all .6s;
}
.circle-bg.circleactive{
	transform: scale(50);
}

/*ナビゲーションの縦スクロール*/
#g-nav-list{
  display: none;
  position: fixed;
  z-index: 999; 
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#g-nav.panelactive #g-nav-list{
  display: block;
}

/*ナビゲーション*/
#g-nav ul {
	opacity: 0;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
#g-nav.panelactive ul {
  opacity: 1;
}
#g-nav.panelactive ul li{
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: .2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes gnaviAnime{
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*リストのレイアウト設定*/
#g-nav li{
	text-align: center; 
	list-style: none;
}

#g-nav li a{
	color: #020202;
	text-decoration: none;
	padding: 10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
  font-family: "Noto Serif", serif;
  font-size: 1.25em;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position: fixed;
	top: 30px;
	right: 4%;
	z-index: 9999;
	cursor: pointer;
  width: 70px;
  height: 70px;
  background-color: #000;
}

.openbtn span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 19px;
  height: 3px;
  border-radius: 1px;
	background-color: #fff;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
	top: 32%;	
}
.openbtn span:nth-of-type(2) {
	top: 50%;
}
.openbtn span:nth-of-type(3) {
	top: 68%;
}

.openbtn.active span:nth-of-type(1) {
  top: 28px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
  top: 40px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}

@media screen and (max-width: 768px) {
  #header {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #header h1 {
    margin-left: 0;
    width: 82px;
  }
  .openbtn {
    right: 6.258%;
    top: 20px;
    width: 50px;
    height: 50px;
  }
  .openbtn span {
    left: 13px;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 19px;
    left: 13px;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 31px;
    left: 13px;
  }
}

/* footer */

.footer-a {
  padding-top: 60px;
  padding-bottom: 56px;
  background-color: #FEFBF8;
  position: relative;
  z-index: 1;
}
.footer-a::after {
  content: "";
  width: 100%;
  height: 460px;
  background: center/cover no-repeat url("./img/footer-img.jpg");
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.footer-b {
  padding: 42px 0;
  background-color: #FFFFFF;
}
.footer-b .footer-nav {
  margin-top: 0;
  color: #666666;
}
.footer-b .copyright {
  color: #666666;
}

.contact-box {
  max-width: 1160px;
  padding: 50px 0;
  margin: 0 auto;
  background-color: #FFFFFF;
  border: 1px solid #000;
  text-align: center
}
.contact-box .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 3rem 0;
}
.contact-box .content-wrapper .item-left {
  width: 50%;
  border-right: 1px solid #CCCCCC;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 2.333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
}
@media screen and (max-width: 768px) {
  .contact-box .content-wrapper .item-left {
    font-size: 0.875rem;
  }
}
.contact-box .content-wrapper .item-right {
  flex: 1 1 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact-box .content-wrapper .item-right .text {
  font-size: 1rem;
  font-weight: bold;
  line-height: 2.187;
}
.contact-box .content-wrapper .tel {
  font-size: 1.75rem;
  font-weight: bold;
}
.contact-box .content-wrapper .tel a {
  position: relative;
}
.contact-box .content-wrapper .tel a::before {
  content: "";
  position: absolute;
  top: 1px;
  bottom: 0;
  left: -36px;
  margin: auto 0;
  display: inline-block;
  width: 29px;
  height: 29px;
  background: url("./img/tel.svg") no-repeat;
  background-size: contain;
  margin-right: 8px;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  }
}

.contact-box .business-hours::after {
  content: "：";
}

.contact-box .border {
  display: block;
  border-bottom: 1px solid #000;
  width: 65%;
  margin: 0 auto;
}
.contact-box .content-logo {
  width: 20%;
  margin: 0 auto;
  margin-top: 50px;
}

.footer-nav {
  display: flex;
  justify-content: flex-end;
  max-width: 1160px;
  margin: 36px auto 0;
  font-size: 0.9375rem;
  color: #FFFFFF;
}
.footer-nav > li:not(:last-of-type) {
  margin-right: 0.5em;
}
.footer-nav a {
  text-decoration: underline;
  text-decoration-thickness: from-font;
}

.copyright {
  display: block;
  width: 100%;
  margin-top: -1.875em;
  font-size: 0.9375rem;
  color: #F4F8FA;
  text-align: center;
}


@media screen and (max-width: 768px) {
  .footer-a {
    padding-top: 26px;
    padding-bottom: 12px;
  }
  .contact-box .content-wrapper,
  .contact-box .content-text {
    max-width: calc(480px + 17.6%);
    padding: 0 8.8%;
    margin: 0 auto;
    margin-bottom: 1rem;
  }
  
  .contact-box .content-wrapper .item-left,
  .contact-box .content-wrapper .item-right {
    width: 100%;
  }
  .contact-box .content-wrapper .item-left {
    padding: 0 0 38px;
    border-right: none;
    border-bottom: 1px solid #CCCCCC;
  }
  .contact-box .content-wrapper .item-right {
    padding-top: 38px;
  }
  
  .contact-box .content-wrapper .tel a::before {
    width: 28px;
    height: 28px;
  }
  .contact-box .border {
    width: 80%;
  }
  .contact-box .content-logo {
    width: 50%;
  }
  
  .footer-nav {
    justify-content: center;
    margin-top: 16px;
  }
  .copyright {
    margin-top: 0.6em;
  }
}
/* footer */

.privacy-wrapper {
  max-width: 574px;
  margin: 0 auto;
  font-size: 0.9375rem;
}
.privacy-wrapper > * {
  margin-bottom: 1.8em;
}
.privacy-wrapper h2 {
  margin-bottom: 1.35em;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .privacy-wrapper h2 {
    font-size: 1.125rem;
  }
}

.mv-text-container {
  display: flex;
  margin-bottom: 2rem;
  justify-content: space-between;
}

.mv-logo {
  width: 50%;
  margin-bottom: 3rem;
}
.mv-container {
  width: 80%;
  margin: 0 auto;
}
.mv-text {
  width: 46%;
  margin: 0 0 0 auto;
  font-size: 1.5em;
  font-family: "Noto Serif", serif;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .mainVisual {
    margin-bottom: 1.863rem;
  }
  .mv-text-container {
    flex-direction: column;
  }
  .mv-logo {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .mv-container, .mv-text {
    width: 100%;
  }
}

/**/

.cat-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  font-size: 0.875rem;
  color: #020202;
}
.cat-list > li {
  min-width: 40px;
  padding: 5px 10px;
  margin-bottom: 0.5em;
  background-color: #993123;
  color: #fff;
  text-align: center;
  line-height: 1;
}
.cat-list > li:not(:last-of-type) {
  margin-right: 0.923em;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* grid-template-rows: repeat(2, 1fr); */
  grid-column-gap: 25px;
  grid-row-gap: 25px;
}

.news-list .thumbnail {
  line-height: 1;
  margin-bottom: 1rem;
}
.news-list .thumbnail img {
  width: 100%;
}

.sales-list > li {
  padding-bottom: 20px;
  border-bottom: 1px solid #BABABA;
}
.sales-list > li:not(:last-of-type) {
  margin-bottom: 22px;
}
.sales-list a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  position: relative;
}
.sales-list a::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 14px 14px;
  border-color: transparent transparent #E5E5E5 transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}

.sales-list .title {
  margin-bottom: 10.57px;
  margin-top: 10.57px;
  font-size: 1.32rem;
  font-family: "Noto Serif", serif;
}
.sales-list .thumbnail {
  margin-right: 2.101%;
  line-height: 1;
  width:  38.333%;
}
.sales-list .text {
  flex: 1 1 0;
  line-height: 1.687;
}
.sales-list .date {
  font-size: 0.8125rem;
  color: #808080;
}
.sales-list .date span {
  margin-right: .5rem;
}

.sales-list > li .detail-list dl,
.post-wrapper .post-side dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 7.57px;
}
.sales-list > li .detail-list dt,
.post-wrapper .post-side dt {
  width: 5.625em;
  background-color: #020202;
  color: #fff;
  text-align: center;
  margin-right: 1em;
}
.sales-list > li .detail-list dd,
.post-wrapper .post-side dd {
  flex: 1 1 0;
}
.sales-list > li .detail-item {
  display: flex;
  margin-bottom: 7.57px;
}
.sales-list > li .detail-item dl {
  flex: 1;
  margin-bottom: 0;
}


.more-btn .btn {
  margin: 0 0 0 auto;
  margin-top: 4.257%;
  margin-bottom: 2.557%;
}

@media screen and (max-width: 768px) {
  .news-list {
    grid-template-columns: repeat(1, 1fr);
  }
  
  .sales-list a {
    flex-direction: column;
  }
  .sales-list .thumbnail {
    width: 100%;
    margin-right: 0;
    text-align: center;
  }
  .sales-list .text {
    width: 100%;
  }
  .sales-list > li {
    padding-bottom: 33px;
    margin-bottom: 33px;
  }
  .sales-list > li:not(:last-of-type) {
    margin-bottom: 33px;
  }
  .more-btn .btn {
    margin: 0 auto;
  }
}

/**/

.news, .sales {
  background-color: #FAF5F0;
  color: #020202;
}
.news .content-wrapper,
.sales .content-wrapper {
  display: flex;
  width: 100%;
}
.news .box-left,
.sales .box-left {
  width: 31.622%;
}
.news .box-right,
.sales .box-right {
  width: 68.378%;
}
@media screen and (max-width: 768px) {
  .news, .sales {
    padding-top: 58px;
    padding-bottom: 58px;
  }
  .news .content-wrapper, .sales .content-wrapper {
    flex-direction: column;
  }
  .news .box-left, .sales .box-left,
  .news .box-right, .sales .box-right {
    width: 100%;
  }
}

.company .content-title,
.business .content-title {
  text-align: center;
}

.company .company-info-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.map {
  width: 53.769%;
  height: auto;
  padding-top: 40.376%;
  position: relative;
}
.map iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  filter: grayscale(100%);
}
.company-info {
  padding-right: 10px;
  width: 42%;
}
.company-info dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 18px;
}
.company-info dl:not(:last-of-type) {
  margin-bottom: 18px;
}
.company-info dt {
  width: 6.625em;
  margin-right: 2em;
  text-align: center;
}
.company-info dd {
  flex: 1 1 0;
}

.business .business-info {
  padding-top: 0;
}
.business .business-info-item {
  display: flex;
  width: 100%;
  padding: 22px 0;
  margin: 22px 0;
}
.business .business-info .box-left,
.business .business-info .box-right {
  flex: 1 1 0;
  padding: 1.225% 1.758%;
  width: 100%;
}
.business .business-info .title {
  margin-bottom: 1.125rem;
  text-align: center;
  font-size: 1.325em;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 768px) {
  .company {
    padding-top: 88px;
  }
  .company .company-info-wrapper {
    display: block;
  }
  .company-info {
    width: 100%;
    padding-right: 0;
    padding-bottom: 33px;
    margin-bottom: 15px;
  }
  .map {
    width: 100%;
    height: 43vh;
  }
  .business {
    padding-bottom: 1.758rem;
  }
}

/*slider*/
.arrow_box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 20px 0 0;
  position: relative;
}
.prev-arrow,
.next-arrow {
  display: block;
  width: 50px;
  height: 50px;
  background: #993123;
  border-radius: 50%;
  transition: all .3s ease;
  cursor: pointer;
  position:relative;
}
.prev-arrow {
  transform: rotate(180deg);
  margin-right: 20px;
}
.prev-arrow::before,
.next-arrow::before{
  position:absolute;
  content: "";
  width:10px;
  height:10px;
  border-right: 2px solid #FFF;
  border-top: 2px solid #FFF;
  top:0;
  bottom:0;
  left:0;
  right:0;
  margin:auto;
  transform:rotate(45deg);
}

.slick-dots {
	position: relative;
	z-index: 3;
  text-align: center;
	margin: -20px 0 0 0;
}
.slick-dots li {
  display: inline-block;
	margin: 0 5px;
}
.slick-dots button {
  color: transparent;
  outline: none;
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 50%;
  background: #ccc;
}
.slick-dots .slick-active button{
  background: #020202;
}

@media screen and (max-width: 768px) {
  .slick-list {
    padding: 10px 0 !important;
  }
  .business .business-info-item {
    display: block;
    padding: 10px 0;
    margin: 10px 0;
  }
  .slick-dots {
    margin: 0;
  }
}

/**/

.text-red {
  color: #DA1725;
}

.btn-wrapper {
  margin-top: 30px;
  text-align: center;
}

.btn-submit {
  display: inline-block;
  min-width: 220px;
  padding: 10px;
  background-image: linear-gradient(to right, #993123 0%, #993123 50%, #FFFFFF 50%, #FFFFFF 100%);
  background-size: 200%;
  background-position-x: 0;
  border: 1px solid #993123;
  color: #FFFFFF;
  text-align: center;
  transition: 0.3s ease-in;
}
.btn-submit:hover {
  background-position-x: 100%;
  color: #993123;
}

.form-wrapper {
  max-width: 586px;
  margin: 0 auto;
}
.form-wrapper .about-text {
  margin-bottom: 54px;
  font-size: 0.9375rem;
  color: #333;
  line-height: 2.333;
}
@media screen and (max-width: 768px) {
  .form-wrapper .about-text {
    font-size: 0.875rem;
  }
}

.form-wrapper {
  padding-bottom: 8px;
}
.form-wrapper a {
  text-decoration: underline;
  text-decoration-thickness: from-font;
}
.form-wrapper form {
  margin-top: 50px;
}
.form-wrapper form strong {
  color: #DA1725;
}
div.smf-form {
  width: 82%;
  margin: 0 auto;
  margin-top: 1.2rem;
  padding-top: 2.175rem;
}
div.smf-form .smf-item {
  margin-bottom: 1.175rem;
  width: 100%;
}
div.smf-item__col--label {
  margin-bottom: .55rem;
}
div.smf-item__description {
  margin-top: 0;
  text-align: justify;
}

div.smf-form .smf-item .smf-text-control__control,
div.smf-form .smf-item .smf-textarea-control__control {
  width: 100%;
  padding: 4px 10px;
  background-color: transparent;
  border: 2px solid #BABABA;
  border-radius: 5px;
  outline: none;
}
div.smf-form .smf-item .smf-text-control__control:hover, div.smf-form .smf-item .smf-text-control__control:active, div.smf-form .smf-item .smf-text-control__control:focus,
div.smf-form .smf-item .smf-textarea-control__control:hover,
div.smf-form .smf-item .smf-textarea-control__control:active,
div.smf-form .smf-item .smf-textarea-control__control:focus {
  border-color: #BABABA;
}
div.smf-form .smf-item .smf-textarea-control__control {
  resize: vertical;
}

div.smf-form .smf-checkbox-control__control {
  width: 20px;
  height: 20px;
}

.smf-action {
  text-align: center;
}
.smf-action .smf-button-control {
  display: inline-block;
  width: 100%;
  max-width: 220px;
  margin-bottom: 1em;
  background-size: 200%;
  background-image: linear-gradient(to right, #993123 0%, #993123 50%, transparent 50%, transparent 100%);
  border: 1.5px solid #993123;
  color: #fff;
  transition: 0.2s linear;
}
.smf-action .smf-button-control:hover {
  background-position: right;
  color: #993123;
}
.smf-action .smf-button-control .smf-button-control__control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 100%;
  padding: 7px;
  background: transparent;
  border: none;
  color: inherit;
}

/* start：プラグイン｜Snow Monkey Formsの設定 */
@media (min-width: 640px) {
  .smf-form--simple-table .smf-item {
    display: flex;
  }
}
.smf-form--simple-table .smf-item {
  margin-bottom: 0;
  margin-top: 0;
  padding: 1rem 0;
}

.smf-form--simple-table + .smf-action {
  margin-bottom: 1.8rem;
  margin-left: 0;
  margin-right: 0;
  margin-top: 1.8rem;
  text-align: center;
}

/* end：プラグイン｜Snow Monkey Formsの設定 */
/*=======================================================
  640px以上の設定（snow-monkey-form用）
=======================================================*/
@media (min-width: 640px) {
  div.smf-form--simple-table .smf-item__col--label {
    flex-basis: 8.75em;
  }
  div.smf-form--simple-table .smf-item__col--controls {
    flex-basis: calc(100% - 8.75em);
    max-width: calc(100% - 8.75em);
  }
}
@media screen and (max-width: 768px) {
  div.smf-form {
    width: 100%;
  }
}


.news-wrapper,
.sales-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.news-wrapper .box-white {
  padding: 26px 7.282% 50px;
}
.sales-wrapper .box-white {
  padding: 26px 3.282% 50px;
}

.news-wrapper .main-content {
  width: 61.551%;
}
.sales-wrapper .main-content {
  width: 65.332%;
}
.news-wrapper .sidebar,
.sales-wrapper .sidebar {
  width: 32.931%;
}
.news-title,
.sales-title {
  margin-bottom: 1em;
  font-family: "Marcellus", serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.25;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .news-title,
  .sales-title {
    font-size: 1.125rem;
  }
  .news-wrapper .main-content,
  .sales-wrapper .main-content {
    width: 100%;
  }
  .news-wrapper .box-white,
  .sales-wrapper .box-white {
    margin-bottom: 40px;
  }
  .news-wrapper .main-content, .news-wrapper .sidebar {
    width: 100%;
  }
}

.sales-wrapper .sales-list .thumbnail {
  width: 38.333%;
}
.sales-wrapper .post-contents {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.sales-wrapper .post-contents .post-text {
  width: 59.551%;
}
.sales-wrapper .post-contents .post-side {
  width: 38.931%;
}
.sales-wrapper .post-contents .post-side dl {
  font-size: .875em;
}
.sales-wrapper .post-contents h3 {
  background-color: transparent;
  text-align: center;
  border-bottom: 1px solid #020202;
  border-radius: 0;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .sales-wrapper .sales-list .thumbnail,
  .news-wrapper .sidebar, .sales-wrapper .sidebar {
    width: 100%;
    margin-bottom: 0;
  }
  .sales-wrapper .sales-list a::after {
    bottom: -20px;
  }
  
  .sales-wrapper .post-contents .post-text,
  .sales-wrapper .post-contents .post-side {
    width: 100%;
    margin-bottom: 1.75rem;
  }
  .sales-wrapper .post-contents .post-side dl {
    font-size: 1em;
  }
}


.wp-pagenavi {
  display: flex;
  justify-content: flex-end;
  margin-top: 42px;
}
.wp-pagenavi span, .wp-pagenavi a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #020202;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: 0.3s ease-in;
}
.wp-pagenavi span:not(:last-child), .wp-pagenavi a:not(:last-child) {
  margin-right: 2.622%;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi span, .wp-pagenavi a {
    font-size: 0.875rem;
  }
}
.wp-pagenavi span:hover, .wp-pagenavi a:hover {
  background-color: #020202;
  color: #FFFFFF;
}
.wp-pagenavi span.current {
  background-color: #020202;
  color: #FFFFFF;
}
.wp-pagenavi a {
  color: #020202;
}
.wp-pagenavi a.nextpostslink, .wp-pagenavi a.previouspostslink {
  width: auto;
  padding: 5px 1.2em;
}


.sidebar .box-white {
  padding-right: 8.376%;
  padding-left: 8.376%;
}
.sidebar .item {
  padding: 0 3.773%;
  padding-bottom: 36px;
}
.sidebar .item:not(:last-of-type) {
  border-bottom: 1px solid #BABABA;
  margin-bottom: 42px;
}
.sidebar-list {
  padding: 0 7.718%;
  font-weight: 500;
  color: #555555;
}
.sidebar-list a {
  display: inline-block;
  padding-right: 1em;
  line-height: 2.562;
}
.sidebar-list a::before {
  content: "-";
  display: inline-block;
  margin-right: 0.5em;
}

.post .box-white {
  padding-right: 5.882%;
  padding-left: 5.882%;
}
.post-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
  font-size: 0.875rem;
  color: #555555;
}
.post-header time {
  margin-bottom: 0.5em;
}
.post-header .cat-list {
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .sidebar .box-white {
    padding-left: 0;
    padding-right: 0;
  }
  
  
  .post-header .cat-list {
    font-size: 0.8125rem;
  }
}
.post-header .cat-list > li {
  padding-right: 18px;
  padding-left: 18px;
}
.post-title {
  margin-bottom: 0.718em;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.468;
}
@media screen and (max-width: 768px) {
  .post-title {
    font-size: 1.375rem;
  }
}
.post-wrapper {
  line-height: 1.75;
  letter-spacing: 0.11em;
}
.post-wrapper > * {
  margin-bottom: 36px;
}
.post-wrapper h2 {
  margin-bottom: 1.5em;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .post-wrapper h2 {
    font-size: 1.125rem;
  }
}
.post-wrapper h3 {
  padding: 10px 4.444%;
  margin-bottom: 1.318em;
  background-color: #F4D6D2;
  border-radius: 10px;
  font-size: 1.375rem;
  font-weight: bold;
  color: #333;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .post-wrapper h3 {
    font-size: 1rem;
  }
}
.post-wrapper .images-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.post-wrapper .images-wrapper.col2 {
  margin-bottom: 0;
}
.post-wrapper .images-wrapper.col2 > a {
  width: 47.46%;
  margin-bottom: 36px;
}
.post .eyecatch {
  height: 0;
  padding-top: 59.841%;
  position: relative;
  overflow: hidden;
}
.post .eyecatch img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.lb-outerContainer {
  background-color: transparent;
}

.lightbox .lb-image {
  border: none;
}

.page-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
  margin-top: 28px;
  border-top: 1px dashed #666666;
  border-bottom: 1px dashed #666666;
  font-size: 0.875rem;
  font-weight: 500;
  color: #666666;
}
@media screen and (max-width: 768px) {
  .page-nav {
    font-size: 0.8125rem;
  }
}
.page-nav > li {
  min-width: 5em;
}
.page-nav > li:first-of-type a::after {
  right: auto;
  left: 0;
  transform: translateY(-50%) rotate(-135deg);
}
.page-nav a {
  display: inline-block;
  min-width: 5em;
  padding: 5px 14px;
  position: relative;
}
.page-nav a.to-archive {
  font-weight: bold;
  color: #333;
}
.page-nav a.to-archive::after {
  content: none;
}
.page-nav a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #666666;
  border-right: 1px solid #666666;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 768px) {
  .post-wrapper .post-text,
  .post-wrapper .post-side {
    width: 100%;
  }
}

.newposts-list {
  margin-bottom: 26px;
}
.newposts-list li {
  margin-bottom: 8px;
  border-bottom: 1px dashed #BABABA;
}
.newposts-list a {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 10px 10px 14px;
}
.newposts-list .img-block {
  max-width: 100%;
  margin-bottom: 0;
  line-height: 1;
}
.newposts-list .img-block img {
  display: inline-block;
}
.newposts-list .txt-block {
  flex: 1;
}
.newposts-list .txt-block time {
  font-size: 0.8125rem;
  font-weight: bold;
  color: #993123;
  letter-spacing: 0;
}
.newposts-list .txt-block .text-title {
  letter-spacing: 0;
}