/*
Theme Name: shigeno-nosan
Description: cunelwork client theme
Author: cunelwork
Version: 0.1.1
 */

/* ============================
	common
============================ */

#wrapper {
  min-width: 1040px;
  overflow: hidden;
}

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

.flex-start {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.ofi {
  font-family: "object-fit: cover;";
  -o-object-fit: cover;
  object-fit: cover;
}

.bold {
  font-weight: 700;
}

#main {
	margin-top: 80px;
}

@media screen and (max-width: 767px) {
  #wrapper {
    min-width: 0;
	width: 375px;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(30, 30, 30, 0.3);
  }
}

/* ============================
	sp-menu
============================ */
#sp-menu {
	box-sizing: border-box;
	position: absolute;
	transition: all 0.35s ease;
	top: 80px;
	left: 0;
	background-color: #f0edea;
	width: 100%;
	padding: 40px 20px;
	opacity: 0;
	pointer-events: none;
	left: 50%;
	transform: translateX(-50%);
	z-index: 999;
}

#sp-menu.opening {
  position: fixed;
  transition: all 0.35s ease;
  opacity: 1;
  pointer-events: auto;
  height: calc(100vh - 60px);
}

#sp-menu .menu-item a {
  text-align: center;
  line-height: 1;
  display: block;
  width: 100%;
  padding: 15px 0;
  font-weight: 700;
}

#sp-menu .sub-menu {
  display: none;
  opacity: 0;
  transition: 0.35s all ease;
}

#sp-menu .sub-menu.opening {
  display: block;
  opacity: 1;
  transition: 0.35s all ease;
}

#sp-menu .sp-contact-box {
  margin: 30px 0 0;
}

#sp-menu .sp-contact-box a {
  box-sizing: border-box;
  display: block;
  background-color: #111;
  text-align: center;
  color: #fff;
  padding: 6px 0;
}
@media screen and (max-width: 767px) {
	#sp-menu {
		width: 375px;
	}
}

/* btn-hamburger */
#btn-hamburger {
  position: relative;
  top: 0;
  right: 0;
  background-color: #111;
  width: 60px;
  height: 60px;
  z-index: 1000;
  cursor: pointer;
}

#btn-hamburger .border {
  position: absolute;
  left: 0;
  transition: opacity, transform 0.2s ease;
  background: #fff no-repeat left top;
  width: 30px;
  height: 2px;
  z-index: 1;
}

#btn-hamburger .border:first-child {
	top: 0;
	width: 14px;
}

#btn-hamburger .border:nth-child(2) {
	transform: rotate(0);
	opacity: 1;
	bottom: 0;
	left: 0;
}

#btn-hamburger .border:nth-child(3) {
  top: 67%;
  display: none;
}

#btn-hamburger.opening .border:first-child {
	transform: rotate(-45deg);
	top: 0;
	width: 100%;
}

#btn-hamburger.opening .border:nth-child(2) {
	transform: rotate(45deg);
	top: 0;
	width: 100%;
}

#btn-hamburger.opening .border:nth-child(3) {
	display: none;
  top: 50%;
  transform: rotate(-45deg);
}
#btn-hamburger.opening {
	top: 40%;
}

/* ============================
	header
============================ */

#header {
	background: #fff;
	color: #000;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 999;
	transition: all 0.3s ease;
}
#top #header {
	background: #000;
	color: #fff;
}

#header.h-fixed {
  position: fixed;
}

#header .h-inner {
	margin: 0 auto;
	padding: 20px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

#h-gnav-box.flex-start {
  align-items: center;
}

#header .site-logo img {
	width: 156px;
	transition: all 0.3s ease;
}

#header.scrolled .h-inner {
	justify-content: space-between;
}

#header-nav {
	opacity: 0;
	transform: translateY(-10px);
	pointer-events: none;
	transition: opacity 0.4s ease, transform 0.4s ease;
}

#header.scrolled #header-nav {
	display: flex;
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

#header-nav ul {
	display: none;
}

#header.scrolled #header-nav ul {
	display: flex;
	gap: 24px;
}

#btn-hamburger {
	display: none;
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 9px;
	cursor: pointer;
}

#btn-hamburger .border {
	background: #fff;
	height: 2px;
	margin: 8px 0;
	display: block;
}

#h-gnav-box .menu-item + .menu-item {
  margin: 0 0 0 30px;
}

#h-gnav-box .menu-item a {
  font-size: 1.8rem;
  font-weight: 700;
}

#h-gnav-contact {
  margin-left: 30px;
}

#h-gnav-contact a {
  display: block;
  box-sizing: border-box;
  background-color: #111;
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  width: 160px;
  height: 40px;
  padding: 12px 0;
}

#header #menu-item-147 a {
	padding: 11px 27px 14px 50px;
	position: relative;
	background-color: #000;
	color: #fff;
}
#header #menu-item-147 a::after {
	content: "";
	position: absolute;
	left: 27px;
	top: 50%;
	background: url(./images/common/mail.png)no-repeat;
	width: 18px;
	height: 12px;
	transform: translateY(-50%);
}
#top #header #menu-item-147 a {
	background-color: #fff;
	color: #000;
}
#top #header #menu-item-147 a::after {
	background: url(./images/common/mail_02.png)no-repeat;
}
#top #header .site-logo-wrapper {
	position: relative;
	flex: 1;
	height: 37.81px;
}
#top #header .site-logo {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	transition: left 1s ease, transform 1s ease;
}
#top #header.scrolled .site-logo {
	left: 0;
	transform: translateX(0);
}
#top #header .h-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#top #main {
	margin-top: 75px;
}
@media screen and (max-width: 1024px) {
	#header {
		background:#000;
	}
	#header-nav {
		display: none !important;
	}

	#header .h-inner {
		justify-content: center !important;
	}
	#btn-hamburger {
		display: block;
	}
}

@media screen and (max-width: 767px) {
	#header {
		margin: 0 auto;
		right: 0;
		width: 375px;
	}
	#top #header.scrolled .site-logo {
		transform: translateX(-50%);
		left: 50%;
	}
}

/* ============================
	footer
============================ */
.site-footer {
  background: #000;
  color: #fff;
  padding: 60px 0;
  font-size: 1.4rem;
}
  .footer-inner {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	box-sizing: border-box;
	width: 1240px;
	padding: 0 20px;
	margin: 0 auto;
	align-items: center;
  }

  .footer-left {
    max-width: 237px;
	margin-right: 68px;
  }

  .footer-logo img {
    max-width: 217px;
    margin-bottom: 24px;
  }

  .footer-address {
    margin-bottom: 8px;
	font-size: 1.4rem;
  }
  .footer-tel {
	font-size: 2.4rem;
	margin-bottom: 24px;
  }

  .footer-right .footer-nav {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
  }

  .footer-nav li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
  }

.copyright {
	font-family: "Josefin Sans";
	display: block;
	margin-top: 24px;
	font-size: 1.2rem;
	font-weight: 600;
}



@media screen and (max-width: 1024px) {
  #footer .f-inner {
    padding: 60px 0;
  }
  .footer-inner {
	width: 100%;
	padding: 0 63px;
  }
  .footer-left {
	max-width: 100%;
	margin-right: 0;
  }
  .footer-logo {
	margin-left: 24px;
  }
  .footer-address {
	margin-left: 24px;
  }
  .footer-tel {
	margin-left: 24px;
  }
}

@media screen and (max-width: 767px) {
	.site-footer {
		padding-bottom: 110px;
	}
}

/* ============================
	mainvisual
============================ */
.mainvisual {
  width: 100%;
}

#top-mv .mv-inner.flex-start {
  justify-content: center;
  align-items: center;
}

#page-mv .mv-inner {
  padding: 100px 0;
}

#page-mv .page-ttl {
  margin: 0;
}

@media screen and (max-width: 767px) {
  #page-mv .mv-inner {
    padding: 60px 0;
  }
  #page-mv .page-ttl {
    font-size: 2.1rem;
  }
}

/* ============================
	section
============================ */
.sec-inner {
  padding: 100px 0;
}

.sec-ttl {
  text-align: center;
  margin: 0;
}

.section-title {
	font-family: "Josefin Sans";
	font-size: 4.4rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0;
}

.section-subtitle {
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 3;
	letter-spacing: 0.1em;
}

.content-width {
  box-sizing: border-box;
  width: 1040px;
  padding: 0 20px;
  margin: 0 auto;
}

.lead-text {
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1.77;
}

.about-text {
	font-size: 1.4rem;
	line-height: 2;
}

.content-box {
  margin: 50px 0 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
  will-change: transform, opacity;
}

.fade-in.inview {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 767px) {
	.sec-inner {
		padding: 60px 0;
	}
  .content-width {
    width: 100%;
	padding: 0 10px;
  }
  .section-title {
	font-size: 3.6rem;
  }
  .lead-text {
	font-size: 1.8rem;
  }
}

/* ============================
	breadcrumb
============================ */
.breadcrumbs {
  padding: 8px 0;
  background: #000;
  font-size: 1.2rem;
}

.breadcrumbs,
.breadcrumbs a,
.breadcrumbs span {
  color: #fff;
}

/* ============================
	pagenavi
============================ */
.wp-pagenavi {
  clear: both;
  margin: 30px 0 0;
  font-size: 1.6rem;
  text-align: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
  display: inline-block;
  width: 3em;
  height: 3em;
  margin: 0 0.5em;
  font-weight: bold;
  line-height: 3;
  color: #999;
  border: 2px solid #ccc;
  text-align: center;
  vertical-align: middle;
  transition: all 0.5s ease;
}

.wp-pagenavi a:hover,
.wp-pagenavi span {
  background: #000000;
  color: #fff;
  border-color: #000;
  opacity: 1;
  text-decoration: none;
}

.wp-pagenavi a:hover {
  transition: all 0.5s ease;
}

.wp-pagenavi .extend {
  width: 1em;
  color: #000;
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: medium none;
}

.wp-pagenavi .extend::after {
  content: "…";
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  position: relative;
  width: 3em;
  height: 3em;
  background: #fff;
  text-indent: -999999px;
  vertical-align: middle;
}

.wp-pagenavi .previouspostslink::after,
.wp-pagenavi .nextpostslink::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: 2px solid #999;
  border-right: 2px solid #999;
}

.wp-pagenavi .previouspostslink::after {
  transform: rotate(225deg);
}

.wp-pagenavi .nextpostslink::after {
  transform: rotate(45deg);
}

.wp-pagenavi .previouspostslink:hover::after,
.wp-pagenavi .nextpostslink:hover::after {
  border-color: #fff;
}

.result_count {
  margin-bottom: 15px;
  text-align: center;
  font-size: 1.4rem;
  color: #999;
}

/* ============================
	post parts
============================ */
.post-date {
  font-size: 1.6rem;
  min-width: 70px;
  font-family: "Josefin Sans";
}

.post-cats {
  line-height: 1;
  margin: 0 0 0 20px;
}

.post-cats.flex-start {
  justify-content: flex-start;
  align-items: center;
}

.post-cat {
  display: block;
  background-color: #9A8F78;
  color: #fff;
  font-size: 1.4rem;
  padding: 6px 18px;
  text-align: center;
}

.post-cat + .post-cat {
  margin: 0 0 0 10px;
}

.post-cat:link {
  color: #fff;
}

.post-cat:visited {
  color: #fff;
}

/* ============================
	news list
============================ */
.news-item {
  padding: 20px 0;
}

.news-item + .news-item {
  border-top: 1px solid #1e1e1e;
}

.news-item .post-ttl {
  font-size: 1.5rem;
  margin: 0 0 0 20px;
}

@media screen and (max-width: 767px) {
  .news-item .post-meta {
    width: 100%;
  }
  .news-item .post-ttl {
    margin-left: 0;
  }
}

/* ============================
	card list
============================ */
.card-list {
  margin-top: -30px;
  margin-left: -80px;
}

.card-item {
  width: 280px;
  margin-top: 30px;
  margin-left: 80px;
}

.card-item .post-thumb img {
  width: 100%;
}

.card-item .post-info {
  margin-top: 20px;
}

.card-item .post-ttl {
  font-size: 1.5rem;
  margin: 20px 0 0;
}

@media screen and (max-width: 767px) {
  .card-item {
    width: 100%;
  }
}

/* ============================
	contact form
============================ */
#mail-form .sec-inner {
	padding: 0 0 100px;
	margin-top: 100px;
}
#contact #page-mv,
#thanks #page-mv {
	background-image: url(https://shigeno-nosan.testworks.pw/wp-content/uploads/2025/07/mv_bg.png);
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: -1;
}
#contact .tel {
	text-align: center;
	font-size: 3rem;
	font-weight: 700;
}
#contact .tel-txt {
	text-align: center;
	margin-top: 15px;
}

.contact-box table {
	border-collapse: separate;
	border-spacing: 0;
	empty-cells: show;
	border: none;
	margin: 60px auto 0;
	width: 90%;
	border: 1px solid #dcdddd;
}

.contact-box tr {
	position: relative;
}

.contact-box th {
	padding: 25px 25px 25px 25px;
	text-align: left;
	color: #000;
	background-color: #efefef;
	border-right: 1px solid #dcdddd;
	border-left: 1px solid #dcdddd;
	font-weight: 400;
	vertical-align: top;
}

.contact-box td {
	padding: 25px 50px;
	color: #000;
	border: none;
	font-weight: 400;
	border-bottom: 1px solid #dcdddd;
}

.contact-box input[type="text"],
.contact-box input[type="password"],
.contact-box input[type="email"],
.contact-box input[type="tel"],
.contact-box input[type="url"],
.contact-box input[type="number"],
.contact-box textarea {
	box-sizing: border-box;
}

.contact-box th {
	box-sizing: border-box;
}

.contact-box td {
	box-sizing: border-box;
}

.contact-box .your-email {
	box-sizing: border-box;
	width: 100%;
}

.contact-box .zip {
	width: 150px;
	box-sizing: border-box;
}

.contact-box .your-address {
	box-sizing: border-box;
	width: 100%;
}

.contact-box .your-content {
	width: 100%;
	box-sizing: border-box;
}

.contact-box .required {
	display: inline-block;
	color: #fff;
	font-size: 1.4rem;
	line-height: 1;
	margin-left: 10px;
	padding: 5px;
	background-color: #e21414;
}

#consent-box {
	text-align: center;
	margin-top: 30px;
}

#submit-box .wpcf7-response-output {
	text-align: center;
}

#btn-submit {
	width: 300px;
	position: relative;
	margin: 30px auto 0;
}

#btn-submit .wpcf7-submit {
	background-color: #000;
	color: #fff;
	line-height: 1;
	width: 300px;
	padding: 16px 0;
}

#btn-submit .wpcf7-spinner {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	margin: 0 0 0 10px;
}

@media screen and (max-width: 768px) {
	#contact .mv-inner,
	#thanks .mv-inner {
		height: 225px;
	}

	table, tbody, tr, th, td {
		display: block;
		width: 100% !important;
		box-sizing: border-box;
	}

	.contact-box tr ,
	.contact-box th ,
	.contact-box td {
		display: block;
	}

	.contact-box th {
		padding: 10px 15px;
	}
	.contact-box td {
		padding: 15px 0 25px;
	}
	#mail-form::before {
		left: 50%;
	}
	.contact-box input[type="text"],
	.contact-box input[type="password"],
	.contact-box input[type="email"],
	.contact-box input[type="tel"],
	.contact-box input[type="url"],
	.contact-box input[type="number"],
	.contact-box textarea {
		width: 100%;
}
}
@media (min-width: 769px) {
	a[href*="tel:"] {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
	}
}

#thanks .mv-slug {
	font-family: "Noto Serif JP";
}
#thanks .mv-title {
	display: none;
}
#thanks section {
	text-align: center;
}


/* ============================
	404
============================ */
#error-404 .content-box p {
  text-align: center;
}

@media screen and (min-width: 1001px) {
  #sp-menu {
    display: none;
  }

  #btn-hamburger {
    display: none;
  }
}

@media screen and (max-width: 1000px) {
  #h-gnav-box {
    display: none;
  }
}


.item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  padding: 0;
}

.item-card {
	width: 48%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  transition: box-shadow 0.3s;
}

.item-list .item-card:nth-child(n+3) {
	margin-top: 30px;
}

.item-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.item-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 1rem 0 0.5rem;
  color: #333;
}

.item-description {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1rem;
}

.item-link {
	margin: 20px auto 0;
	text-align: center;
}

.item-link a {
	display: inline-block;
	font-size: 1.4rem;
	color: #fff;
	text-align: center;
	background-color: #e21414;
	width: 50%;
	padding: 10px;
	border-radius: 50px;
}
@media screen and (max-width: 767px) {
	.item-list {
		flex-direction: column;
	}
	.item-card {
		width: 100%;
	}
	.item-link a {
		width: 80%;
	}
}


.footer-banners {
	padding: 80px 0 100px;
}

.footer-banners__inner {
	max-width: 1155px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-wrap: nowrap;
	gap: 31px;
	align-items: center;
	justify-content: center;
}

.footer-banners__inner a {
	max-width: 265px;
	width: 100%;
	height: auto;
	display: block;
}

.footer-banners__inner img {
	width: 100%;
	height: auto;
	display: block;
}
@media screen and (max-width: 1024px) {
	.footer-banners__inner {
		width: 100%;
		flex-wrap: wrap;
	}
	.footer-banners__inner a {

	}
}
@media screen and (max-width: 767px) {
		.footer-banners__inner {
		gap: 5px;
		justify-content: center;
	}
	.footer-banners__inner a {
		width: 48%;
		height: auto;
	}
}



/* ============================
	instagram
============================ */
#instagram {
  padding: 96px 0;
  width: 100%;
}
#instagram .instagram-head {
  text-align: center;
  margin-bottom: 48px;
}
#instagram .instagram-icon img {
  width: 30px;
  height: 30px;
  margin: 0 auto 16px;
}
.instagram-feed-area {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}



/* ============================
	news
============================ */
#top-news {
	width: 97%;
	margin: 0 0 0 auto;
}
#top-news .content-width {
	width: 100%;
	padding: 0;
	display: flex;
}
#top-news .top-news-head {
	padding-top: 100px;
	padding-left: 65px;
	max-width: 290px;
	width: 100%;
}
#top-news .more-item {
	display: inline-block;
	font-size: 1.6rem;
	font-weight: 500;
	color: #000;
	position: relative;
	text-decoration: none;
	line-height: 1;
	margin-top: 65px;
	font-family: "Josefin Sans";
}
#top-news .more-item a::before {
	content: "";
	background: url(./images/common/more_bg_02.png) no-repeat center/contain;
	width: 100px;
	height: 100px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%) translateX(-50%) scale(1);
	z-index: -1;
	transition: transform 0.4s ease;
}
#top-news .more-item a:hover::before {
	transform: translateY(-50%) translateX(-50%) scale(1.3);
}
#top-news .more-item a::after {
	content: "";
	display: inline-block;
	width: 40px;
	height: 1px;
	background-color: #000;
	margin-left: 1rem;
	vertical-align: middle;
}
#top-news  .top-news-list {
	display: flex;
	flex-direction: column;
	padding: 80px;
	gap: 64px;
	max-width: 100%;
	width: 100%;
	background-color: #fff;
}
#top-news .top-news-item {
  display: flex;
}
#top-news .top-news-cat-wrapper {
	display: flex;
	align-items: center;
	margin-bottom: 24px;
}

#top-news .top-news-thumb {
	margin-right: 48px;
}
#top-news .top-news-thumb img {
  width: 240px;
  height: 240px;
  object-fit: cover;
}
#top-news .top-news-content {
  flex: 1;
}
#top-news  .top-news-cat {
  display: inline-block;
  background: #9A8F78;
  color: #fff;
  font-size: 1.4rem;
  padding: 6px 18px;
  margin-right: 16px;
}
#top-news .top-news-date {
	font-size: 1.6rem;
	font-family: "Josefin Sans";
}
#top-news .top-news-title {
  font-size: 2.4rem;
  font-weight: 500;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
	#top-news {
		width: 100%;
	}
	#top-news .content-width {
		flex-direction: column;
		background-color: #fff;
	}
	#top-news .top-news-head {
		padding-top: 65px;
		width: 100%;
		text-align: center;
	}
	#top-news .top-news-list {
		padding: 30px 20px;
		gap: 32px;
	}
	#top-news .top-news-thumb {
		margin-right: 16px;
	}
	#top-news .top-news-thumb img {
		width: 120px;
		height: 120px;
	}
	#top-news .top-news-thumb {
		margin-bottom: 16px;
	}
	#top-news .top-news-cat {
		font-size: 1rem;
		padding: 4px 12px;
	}
	#top-news .top-news-date {
		font-size: 1rem;
	}
	#top-news .top-news-title {
		font-size: 1.4rem;
	}
}


body.archive .mainvisual {
	background-image: url('./images/page/news_mv.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 300px;
}
body.archive .mv-inner {
	padding: 100px 0;
}
body.archive .page-ttl-box {
	text-align: center;
}
body.archive .page-ttl-box .mv-slug {
	display: block;
	font-size: 4.4rem;
	margin-bottom: 5px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0;
	font-family: "Josefin Sans";
}
body.archive .page-ttl-box .mv-title {
	font-size: 2.2rem;
	font-weight: 500;
	line-height: 1.95;
	letter-spacing: 0.1em;
}

body.archive .section-title {
	text-align: center;
}

body.single-news .mainvisual {
	background-image: url('./images/page/news_mv.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 300px;
}
body.single-news .mv-inner {
	padding: 100px 0;
}
body.single-news .page-ttl-box {
	text-align: center;
}
body.single-news .page-ttl-box .mv-slug {
	display: block;
	font-size: 4.4rem;
	margin-bottom: 5px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0;
	font-family: "Josefin Sans";
}
body.single-news .page-ttl-box .mv-title {
	font-size: 2.2rem;
	font-weight: 500;
	line-height: 1.95;
	letter-spacing: 0.1em;
}

body.single-news .section-title {
	text-align: center;
}
@media screen and (max-width: 767px) {
	body.single-news .mainvisual ,
	body.archive .mainvisual {
		height: 200px;
		background-position: -371px center;
	}
	body.archive .mv-inner {
		padding: 50px 0;
	}
}

body.archive #item-archive-mv.mainvisual {
	background-image: url('./images/page/item_bg.jpg');
}
@media screen and (max-width: 767px) {
	body.archive #item-archive-mv.mainvisual {
		background-position: -310px center;
	}
}

#page-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 998;
	display: block;
	cursor: pointer;
	transition: opacity 0.3s ease, bottom 0.3s ease;
}
#page-top img {
	width: 56px;
	height: auto;
}
@media screen and (max-width: 767px) {
	#page-top {
		transform: translateX(-50%); 
		right: auto;
		left: 50%;
	}
}

#privacy-policy #page-mv .page-ttl-box {
	color: #000;
}
#privacy-policy .sec-inner {
	padding-top: 0;
}

body.archive .news-item {
	flex-wrap: nowrap;
}
body.archive .post-thumb {
	width: 90px;
	height: 90px;
}
body.archive .post-thumb img {
	object-fit: cover;
	height: 90px;
    width: 90px;
}
body.archive .post-date {
	margin-left: 20px;
}
body.archive .news-item .post-ttl {
	margin-left: 20px;
}