/*
Theme Name: nanba-s 
 */

/* ============================
	common
============================ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
	--leading-trim: calc((1em - 1lh) / 2);
	--main-color: #1D1F8A;
	--main-text-color: #1F1F1F;
	--main-bg-color: #fff;
	--sub-bg-color: #F2F2F2;
	--border-color: #909090;
	--blue: #02479C;
	--black: #000;
	--white: #fff;
	--container-size: 1040px;
	--container-padding: 20px;
}

.noto-sans {
	font-family: "Noto Sans JP", sans-serif;
	font-style: normal;
}

.roboto {
	font-family: "Roboto", sans-serif;
}

.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;
}
.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

.google-map iframe {
	aspect-ratio: 160 / 83;
	height: 100%;
	width: 100%;
}

/* ============================
	sp-menu
============================ */
#sp-menu {
	background-color: var(--sub-bg-color);
  box-sizing: border-box;
  position: absolute;
  transition: all 0.35s ease;
  top: 60px;
  left: 0;
  background-color: var(--white);
  width: 100%;
  padding: 40px 40px;
  opacity: 0;
  pointer-events: none;
}

#sp-menu.opening {
	background-color: var(--sub-bg-color);
  position: fixed;
  transition: all 0.35s ease;
  opacity: 1;
  pointer-events: auto;
  height: calc(100svh - 60px);
	z-index: 12;
}

#sp-menu ul {
	margin-inline: auto;
	max-width: 500px;
}

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

#sp-menu .sub-menu li {
	column-gap: 10px;
	display: flex;
	position: relative;
}

#sp-menu .sub-menu li::before {
	border: 1px solid var(--main-color);
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	content: "";
	display: block;
	height: 7px;
	position: relative;
	top: 21px;
	transform: rotate(45deg);
	transform-origin: center;
	width: 7px;
}

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

#sp-menu .sp-contact-box a {
	align-items: center;
  background-color: var(--main-color);
  box-sizing: border-box;
  display: flex;
	flex-direction: column;
	justify-content: center;
	margin-inline: auto;
	max-width: 500px;
	min-height: 64px;
  padding: 6px 0;
  text-align: center;
	width: 100%;
}

#sp-menu .sp-contact-box a + a {
	margin-top: 20px;
}

#sp-menu .sp-contact-box a span {
	color: var(--white);
	display: block;
}

#sp-menu .sp-contact-box a.contact {
	background-color: var(--black);
}

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

#btn-hamburger .border {
  position: absolute;
  left: 15px;
  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: 33%;
}

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

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

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

#btn-hamburger.opening .border:nth-child(2) {
  opacity: 0;
}

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

/* ============================
	header
============================ */
#header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

#header.h-fixed {
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  position: fixed;
}

#header .h-inner {
  align-items: center;
	background-color: var(--white);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
  padding: 0 0 0 20px;
  width: 100%;
}

#h-site-logo img {
	height: auto;
	max-width: 252px;
	width: 100%;
}

@media screen and (max-width: 767px) {
	#h-site-logo {
		margin-left: 20px;
	}
	
	#h-site-logo img {
		max-width: 200px;
	}
}

#header .h-inner #menu-header-nav .menu-item.item-business {
	cursor: pointer;
	position: relative;
	transition: all .2s;
}

#header .h-inner #menu-header-nav .menu-item.menu-item-has-children a {
	align-items: center;
	column-gap: 15px;
	display: flex;
	position: relative;
	z-index: 1;
}

#header .h-inner #menu-header-nav .menu-item.menu-item-has-children > a::after {
	background-image: url("./images/common/arrow_down.svg");
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: block;
	height: 8px;
	width: 12px;
	content: none;
}

@media (hover: hover) {
	#header .h-inner #menu-header-nav .menu-item.menu-item-has-children:hover .sub-menu {
	  opacity: 1;
	  visibility: visible;
	  translate: -50% 100%;
	}
}

#header .h-inner #menu-header-nav .sub-menu {
	background-color: var(--white);
	bottom: 5px;
	cursor: default;
	left: 50%;
	opacity: 0;
	padding: 30px 20px 10px;
	position: absolute;
	translate: -50% 100%;
	transition: opacity 0.4s ease, visibility 0.4s ease, translate 0.4s ease;
	visibility: hidden;
	width: max-content;
	z-index: 1;
}

#header .h-inner #menu-header-nav .sub-menu .menu-item {
	border-bottom: 1px solid rgb(44 42 42 / 0.2);
	padding: 5px 0;
	position: relative;
}

#header .h-inner #menu-header-nav .sub-menu .menu-item::before {
	border: 1px solid var(--main-color);
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	content: "";
	display: block;
	height: 8px;
	position: absolute;
	left: 0;
	top: 14px;
	transform: rotate(45deg);
	transform-origin: center;
	width: 8px;
}

#header .h-inner #menu-header-nav .sub-menu .menu-item:last-child {
	border-bottom: none;
}

#header .h-inner #menu-header-nav .sub-menu .menu-item a {
	font-size: 1.3rem;
	font-weight: 400;
	margin-left: 1.25em;
	padding-right: .5em;
}

@media (hover: hover) {
	#header .h-inner #menu-header-nav .sub-menu .menu-item a:hover {
		color: var(--main-color);
		font-weight: 500;
		opacity: 1;
	}
}


#h-gnav-box {
	align-items: center;
	gap: 26px;
	display: flex;
}

#h-gnav-box .menu-item a {
  font-size: 1.4rem;
  font-weight: 500;
	transition: all .2s;
}

#menu-header-nav {
	align-items: center;
	column-gap: 30px;
	display: flex;
}

#h-gnav-contact {
	display: flex;
}

#h-gnav-contact a {
	align-items: center;
  box-sizing: border-box;
  background-color: var(--black);
  display: flex;
	flex-wrap: wrap;
	justify-content: center;
  height: auto;
	max-height: 80px;
  line-height: 1;
  padding: 15px 10px;
  text-align: center;
  width: 200px;
}

#h-gnav-contact a span {
	color: var(--white);
	font-size: 1.6rem;
	font-weight: 600;
}

#h-gnav-contact a.recruit {
	background-color: var(--main-color);
}

@media screen and (max-width: 767px) {
  #header {
    margin: 0 auto;
    right: 0;
  }

  #header .h-inner {
    padding: 0;
  }
}

@media (hover: hover) {
	#h-gnav-box .menu-item a:hover {
		color: var(--main-color);
		font-weight: 700;
	}
}


/* ============================
	footer
============================ */
#footer {
	background-color: var(--main-color);
}

#footer .f-inner {
  padding: 80px 0 220px;
}

#footer .f-content {

}

#footer .f-content {
	column-gap: 40px;
	display: flex;
	justify-content: space-between;
}

#footer .wrap-company-contents {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

#footer .f-content .company-contents a img {
	height: auto;
	max-width: 276px;
	width: 100%;
}

#footer .f-content .company-information address {
	color: var(--white);
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 400;
	letter-spacing: .05em;
}

#footer .f-content .company-information address span {
	color: var(--white);
	font-size: 1.4rem;
	letter-spacing: .16em;
}

#footer .f-content .company-information .tel {
	align-items: center;
	color: var(--white);
	display: flex;
	font-size: 3.6rem;
	font-weight: 500;
	gap: 10px;
	letter-spacing: .05em;
}

#footer .f-content .company-information .tel::before {
	background-image: url('./images/common/icon_tel.svg');
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: block;
	height: 30px;
	width: 30px;
}


#footer .f-content .company-information {
	margin-top: 15px;
}

#footer .f-content .footer-nav-container .footer-nav {
	column-gap: 45px;
	display: flex;
}

#footer .f-content .footer-nav-container .footer-nav .footer-nav-list {
	min-width: 120px;
}

#footer .f-content .footer-nav-container .footer-nav .footer-nav-list li {
	line-height: 1.6;
	padding-left: 1em;
	text-indent: -1em;
}

#footer .f-content .footer-nav-container .footer-nav .footer-nav-list li + li {
	margin-top: 5px;
}


#footer .f-content .footer-nav-container .footer-nav .footer-nav-list span,
#footer .f-content .footer-nav-container .footer-nav .footer-nav-list a {
	color: var(--white);
	font-size: 1.5rem;
	font-weight: 400;
	gap: 10px;
	letter-spacing: .16em;
	line-height: 1.4;
	padding-left: 1em;
	position: relative;
}

#footer .f-content .footer-nav-container .footer-nav .footer-nav-list span::before,
#footer .f-content .footer-nav-container .footer-nav .footer-nav-list a::before {
	background-image: url('./images/common/arrow.svg');
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: block;
	height: 10px;
	left: 0;
	position: absolute;
	top: 7px;
	width: 5px;
}

#footer .f-content .footer-nav-container .footer-nav .footer-nav-list span::before {
	rotate: 90deg;
}

#footer .f-content .footer-nav-container .privacy-policy {
	margin-left: auto;
	width: fit-content;
}

#footer .f-content .footer-nav-container .privacy-policy span {
	color: var(--white);
	font-size: 1.3rem;
	letter-spacing: .16em;
}

#footer .f-content .footer-nav-container .banner {
	display: block;
	height: auto;
	margin-top: 40px;
	width: 100%;
}

#copyright p {
  text-align: center;
  color: var(--white);
  font-size: 1.5rem;
  margin: 0;
}

@media screen and (max-width: 879px) {
	#footer .f-content {
		flex-wrap: wrap-reverse;
		justify-content: center;
		row-gap: 60px;
	}
	
	#footer .f-content .footer-nav-container {
		row-gap: 40px;
	}
	
	#footer .f-content .footer-nav-container .footer-nav {
		column-gap: 10px;
	}
	
	#footer .f-content .footer-nav-container .footer-nav .footer-nav-list {
		width: 50%;
	}
	
	#footer .f-content .footer-nav-container .footer-nav .footer-nav-list li + li {
		margin-top: 15px;
	}
	
	#footer .f-content .footer-nav-container .footer-nav .footer-nav-list span,
	#footer .f-content .footer-nav-container .footer-nav .footer-nav-list a {
		font-size: 1.4rem;
	}
	
	#footer .f-content .footer-nav-container .privacy-policy {
		margin-left: 0;
	}
}

@media screen and (max-width: 767px) {
  #footer .f-inner {
    padding: 60px 0 120px;
  }
	
	#footer .f-content .footer-nav-container .banner {
		text-align: center;
	}
	
	#footer .f-content .footer-nav-container .banner {
		margin-inline: auto;
		text-align: center;
		width: 60%;
	}
}

/* ============================
	link-group
============================ */
#follow_link_group {
	align-items: center;
	background-color: var(--main-color);
	border-radius: 50%;
	bottom: 20px;
	box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
	display: flex;
	height: 180px;
	justify-content: center;
	position: fixed;
	right: 20px;
	transition: all  .4s;
	visibility: visible;
	width: 180px;
	z-index: 11;
}

#follow_link_group a {
	align-items: center;
	box-sizing: border-box;
	color: var(--white);
	display: flex;
	flex-direction: column;
	font-size: 2.2rem;
	font-weight: 500;
	justify-content: center;
	height: 100%;
	letter-spacing: .05em;
	line-height: 1.5;
	padding: 16px;
	text-align: center;
	width: 100%;
}

#follow_link_group a span {
	color: var(--white);
	font-size: 1.5rem;
	font-weight: 500;
	display: block;
	letter-spacing: .05em;
}

@media screen and (max-width: 767px) {
	#follow_link_group {
		bottom: 0;
		border-radius: 0;
		height: auto;
		right: 0;
		width: 100%;
	}
	
	#follow_link_group a {
		box-sizing: border-box;
		display: block;
		font-size: 1.8rem;
		padding: 15px 0;
		text-align: center;
	}
	
	#follow_link_group a span{
		font-size: 1.4rem;
	}
}

@media (hover: hover) {
	#follow_link_group:hover {
		background-color: #0474C2;
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
		translate: 3px 3px;
	}
	
	#follow_link_group:hover a {
		opacity: 1;
	}
}

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

#top-mv .mv-inner {
	height: 300vh;
	position: relative;
	width: 100%;
}

@media screen and (max-width: 767px) {

}

#top-mv .mv-inner .bg-video {
	height: auto;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	position: fixed;
	top: 50%;
	translate: -50% -50% ;
	width: auto;
	z-index: -1;
}

#top-mv .mv-inner .mv-wapper {
	height: 300vh;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

#top-mv .mv-inner .main-layout {
	column-gap: 20px;
	display: grid;
	grid-template-columns: 1fr 2fr;
	max-width: 1400px;
	margin: 0 auto;
}

#top-mv .mv-inner .sticky-sidebar {
	height: 100%;
	padding-right: 20px;
}

#top-mv .mv-inner .sticky-content {
	height: fit-content;
	position: sticky;
	top: 50%;
	translate: 0 -50%;
}

#top-mv .mv-inner .scrollable-content .scrollable-content-inner {
	height: 100svh;
	min-height: 100svh;
	position: relative;
}

#top-mv .mv-inner .scrollable-content .scrollable-content-inner:last-child .text-section {
	height: fit-content;
	position: sticky;
	top: 50%;
	transform: translateY(-50%);
}

#top-mv .mv-inner .scrollable-section {
	height: 100%;
	position: relative;
}

#top-mv .mv-inner .scrollable-section.text-set img {
	max-height: 302px;
	position: absolute;
	top: 50%;
	translate: 0 -45%;
	width: calc(100% * 3 / 4);
}

#top-mv .mv-inner .scrollable-section.text-section .main-text {
	color: var(--white);
	font-size: clamp(2.4rem, -6.5905rem + 18.7546vw, 5.6rem);
	letter-spacing: .05em;
}

#top-mv .mv-inner .scrollable-section.text-section .sub-text {
	color: var(--white);
	font-size: clamp(1.6rem, -2.3333rem + 8.2051vw, 3rem);
	letter-spacing: .05em;
	margin-top: 60px;
}

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

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

#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;
  }
	
	#top-mv .mv-inner .scrollable-content .scrollable-content-inner:last-child {
		height: 150vh;
	}
	
	#top-mv .mv-inner .scrollable-section.text-section .sub-text {
		margin-top: 30px;
	}
}

.page-mv {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-top: 80px;
	position: relative;
	z-index: 1;
}

.page-mv::before {
	background-color: #02479C;
	content: "";
	display: block;
	height: 100%;
	left: 0;
	mix-blend-mode: multiply;
	opacity: .5;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 3;
}

.page-mv::after {
	background-color: #1F1F1F;
	content: "";
	display: block;
	height: 100%;
	left: 0;
	mix-blend-mode: multiply;
	opacity: .25;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 2;
}

.page-mv .mv-inner {
	height: 320px;
}

.page-mv .mv-inner .content-width {
	height: 100%;
	position: relative;
}

.page-mv .mv-inner .content-width .page-ttl-box {
	bottom: 60px;
	left: 0;
	position: absolute;
	text-align: center;
	width: 100%;
	z-index: 4;
}

.page-mv .mv-inner .content-width .page-ttl-box .page-ttl {
	color: var(--white);
	font-size: 3.2rem;
	font-weight: 600;
	letter-spacing: .2em;
	line-height: 1.2;
	position: relative;
	text-align: center;
}

.page-mv .mv-inner .content-width .page-ttl-box .page-ttl::before {
	background-image: url('./images/common/icon_mark.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: block;
	height: 108px;
	left: 50%;
	position: absolute;
	top: -130px;
	translate: -50% 0;
	width: 135px;
}

@media screen and (max-width: 1439px) {
	.page-mv {
		margin-top: 60px;
	}
}

@media screen and (max-width: 767px) {
	.page-mv .mv-inner {
		height: 240px;
	}
	
	.page-mv .mv-inner .content-width .page-ttl-box {
		bottom: unset;
		left: 0;
		text-align: center;
		top: 70%;
		width: 100%;
	}
	
	.page-mv .mv-inner .content-width .page-ttl-box {
		top: 70%;
	}
	
	.page-mv .mv-inner .content-width .page-ttl-box .page-ttl {
		font-size: 2.6rem;
	}
	
	.page-mv .mv-inner .content-width .page-ttl-box .page-ttl::before {
		background-image: url('./images/common/icon_mark.svg');
		background-position: center;
		background-size: contain;
		content: "";
		display: block;
		height: 64px;
		left: 50%;
		position: absolute;
		top: -80px;
		translate: -50% 0;
		width: 80px;
	}
}

body#recruit .page-mv .mv-inner {
	height: 640px;
}

body#recruit .page-mv .mv-inner .page-ttl-box {
	bottom: unset;
	left: 50px;
	text-align: left;
	top: 5%;
	width: fit-content;
}

body#recruit .page-mv .mv-inner .page-ttl-box .sub-ttl {
	color: var(--white);
	font-size: 12rem;
	height: auto;
	line-height: 1;
	opacity: .4;
	width: fit-content;
}

body#recruit .page-mv .mv-inner .page-ttl-box h1 {
	color: var(--white);
	font-size: clamp(2.4rem, -1.5333rem + 8.2051vw, 3.8rem);
	font-weight: 700;
	letter-spacing: 0;
	margin-top: 10px;
}

@media screen and (max-width: 767px) {
	body#recruit .page-mv .mv-inner {
		height: 320px;
	}
	
	body#recruit .page-mv .mv-inner .page-ttl-box {
		left: 50%;
		text-align: center;
		translate: -50% 0;
		width: 100%;
	}
	
	body#recruit .page-mv .mv-inner .page-ttl-box .sub-ttl {
		margin-inline: auto;
		font-size: 5rem;
	}
}

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

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

.content-width {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: min(100%, calc(var(--container-size) + var(--container-padding) * 2));
}

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

@media screen and (max-width: 767px) {
	.sec-inner {
  	padding: 60px 0;
	}
	
  .content-width {
    width: 100%;
  }
	
	.content-box {
  	margin: 40px 0 0;
	}
}

/* ============================
	breadcrumb
============================ */
.breadcrumbs {
	align-items: center;
	background-color: transparent;
  display: flex;
  font-size: 1.2rem;
	height: fit-content;
	padding: 10px 0;
}

.breadcrumbs,
.breadcrumbs a,
.breadcrumbs span {
  color: var(--main-text-color);
	font-size: 1.4rem;
	font-weight: 600;
}

.breadcrumbs .content-width > span {
	margin-left: 0;
	position: relative;
}

.breadcrumbs .content-width > span:first-child {
	margin-left: 0;
}

.breadcrumbs .content-width > span::before {
	border: 1px solid var(--main-text-color);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
	content: "";
	color: var(--main-text-color);
	display: inline-block;
	height: 6px;
	line-height: 1;
	margin: 0.45em 0.75em 0.15em 0.35em;
	transform: rotate(45deg);
	width: 6px;
}

.breadcrumbs .content-width > span:first-child::before {
	content: none;
}

@media screen and (max-width: 767px) {
	.breadcrumbs {
		padding: 10px 0;
	}
}

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

.wp-pagenavi a,
.wp-pagenavi span {
  border: 1px solid #DEDEDE;
	border-radius: 50%;
  display: inline-block;
	font-family: "Roboto", sans-serif;
  width: 42px;
  height: 42px;
  margin: 0 0.5em;
  font-weight: 500;
  line-height: 2;
  color: var(--main-text-color);
  text-align: center;
  vertical-align: middle;
  transition: all 0.5s ease;
}

.wp-pagenavi span {
  background-color: var(--main-color);
  color: var(--white);
  border-color: var(--main-color);
  opacity: 1;
  text-decoration: none;
}

@media (hover: hover) {
	.wp-pagenavi a:hover {
		background: var(--main-color);
		color: var(--white);
		border-color: var(--main-color);
		opacity: 1;
		text-decoration: none;
		transition: all 0.5s ease;
	}
}

.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.5rem;
  min-width: 70px;
}

.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: transparent;
	border: 1px solid var(--main-color);
  color: var(--main-color);
  font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: .1em;
  padding: 4px 10px;
  width: 120px;
  text-align: center;
}

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

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

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

/* ============================
	contact form
============================ */
.contact-box {
	background-color: #509ED5;
	padding: 80px;
}

.contact-box .required {
	border-radius: 2px;
  color: #e52301;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  padding: 4px 0;
}

.contact-box .wpcf7-not-valid-tip {
	color: #e52301;
}

.contact-box .optional {
  background-color: #9F9F9F;
	border-radius: 2px;
  color: #fafafa;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  padding: 4px 0;
}

.contact-box .flex {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 40px;
}

.contact-box .flex span {
	margin-right: 20px;
}

.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 input[type="date"],
.contact-box textarea {
	background-color: #F8F8F8;
	border: 1px solid #E6E6E6;
	border-radius: 2px;
	box-shadow: unset;
	box-sizing: border-box;
	font-size: 1.7rem;
	font-weight: 500;
	padding: 4px 16px;
	width: 100%;
}

.contact-box textarea {
	max-height: 250px;
}

.contact-box input[type="text"].your-address {
	margin-top: 16px;
}

.contact-box input.size-m,
.contact-box select.size-m {
	width: 240px;
}

.contact-box input[type=radio]{
  position: absolute;
  visibility: hidden;
}

.contact-box .wpcf7-radio {
	display: flex;
	flex-direction: column;
	gap: 10px 20px;
}

.contact-box .wpcf7-list-item {
	margin: 0;
}

.contact-box .wpcf7-radio .wpcf7-list-item {
	flex-basis: auto;
	width: auto;
}

.contact-box .wpcf7-radio .wpcf7-list-item-label {
	color: var(--white);
  cursor: pointer;
  display: flex;
}

.contact-box .wpcf7-radio .wpcf7-list-item-label::before {
  background-color: var(--white);
  border-radius: 100%;
  content: "";
  height: 16px;
  margin-bottom: auto;
  margin-right: .5em;
  margin-top: auto;
  transition: background-color .3s;
  width: 16px;
}

.contact-box input[type="radio"]:checked + .wpcf7-list-item-label::before {
  background-color: var(--main-color);
  box-shadow: inset 0 0 0 2px var(--white);
}

.contact-box input[type="checkbox"] {
	background-color: var(--white);
	border: 1px solid #ccc;
	border-radius: 3px;
  position: relative;
  width: 24px;
  height: 24px;
  vertical-align: -5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.contact-box input[type="checkbox"]:checked:before {
  position: absolute;
  top: 2px;
  left: 8px;
  transform: rotate(40deg);
  width: 8px;
  height: 15px;
  border-right: 3px solid var(--main-color);
  border-bottom: 3px solid var(--main-color);
  content: '';
}

.contact-box dl {
	color: var(--white);
	font-size: 1.6rem;
	font-weight: 700;
	margin: 0;
}

.contact-box dl + dl {
	margin-top: 30px;
}

.contact-box dd {
	color: var(--white);
	font-size: 1.6rem;
	font-weight: 700;
	margin: 16px 0 0 0;
}

.contact-box dd .event-name input {
	background-color: transparent;
	border: none;
	padding: 0;
}

.contact-box dd.note {
	font-size: 1.5rem;
	font-weight: 500;
	margin: 8px 0 24px 0;
}

.contact-box dd.flex-date {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 10px;
}

.contact-box dd.flex-check .wpcf7-checkbox {
	align-items: flex-start;
	display: flex;
	gap: 40px;
}

.contact-box dd.flex-check .wpcf7-checkbox .wpcf7-list-item-label {
	margin-left: .5em;
}

.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 .wpcf7-acceptance input[type="checkbox"] {
	background-color: var(--white);
	border: 1px solid #ccc;
	border-radius: 3px;
  position: relative;
  width: 24px;
  height: 24px;
  vertical-align: -5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.contact-box .wpcf7-acceptance input[type="checkbox"]:checked:before {
  position: absolute;
  top: 2px;
  left: 8px;
  transform: rotate(40deg);
  width: 8px;
  height: 15px;
  border-right: 3px solid var(--main-color);
  border-bottom: 3px solid var(--main-color);
  content: '';
}

.contact-box .wpcf7-select {
	background-color: #F8F8F8;
	border: 1px solid #ccc;
	border-radius: 3px;
	color: var(--main-text-color);
	font-size: 1.7rem;
	font-weight: 500;
	height: 48px;
	padding: 4px 36px 4px 24px;
	position: relative;
	width: auto;
}

.contact-box .wrap-select > span {
	position: relative;
}

.contact-box .wrap-select > span::after {
	content: "";
	position: absolute;
	right: 10px;
	top: 12px;
	width: 10px;
	height: 10px;
	border-top: 2px solid var(--main-text-color);
	border-left: 2px solid var(--main-text-color);
	transform: translateY(-50%) rotate(-135deg);
	font-size: 20px;
	pointer-events: none;
}

.contact-box .recaptcha-note p {
	font-size: 1.3rem;
	font-weight: 400;
	margin-inline: auto;
	margin-top: 50px;
	width: fit-content;
}

@media screen and (max-width: 767px) {
	.contact-box .wpcf7-select {
		width: 100%;
	}
	
	.contact-box dd.flex-date {
		flex-wrap: wrap;
	}
}

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

#consent-box .wpcf7-list-item-label {
	color: var(--white);
	font-size: 1.6rem;
	font-weight: 700;
	margin-left: 1em;
}

#consent-box .wpcf7-list-item-label a {
	text-decoration: underline;
}

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

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

#submit-box.wrap-send {
	height: auto;
	margin-inline: auto;
	margin-top: 30px;
	position: relative;
	width: fit-content;
}

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

#submit-box .btn-send {
	column-gap: 30px;
	background-color: var(--white);
	border: none;
	border-radius: 3px;
	color: var(--main-color);
	font-size: 2rem;
	font-weight: 700;
	height: 100%;
	line-height: 1;
	max-height: 70px;
	padding: 24px 20px 24px 20px;
	text-align: center;
	width: 230px;
}

.contact-box .content-policy .content-box {
	background-color: var(--white);
	border: 1px solid #E6E6E6;
	border-radius: 6px;
	margin-top: 20px;
	max-height: 150px;
	padding: 0 20px;
	overflow-y: auto;
	width: 100%;
}

.contact-box .content-policy .title p {
	font-size: 1.6rem;
	font-weight: 700;
	margin: 0;
}

@media screen and (max-width: 767px) {
	.contact-box {
		padding: 40px 20px;
	}
	
  .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 input[type="date"],
  .contact-box textarea {
    width: 100%;
  }

	.contact-box .wpcf7-radio .wpcf7-list-item {
		display: flex;
		flex-wrap: wrap;
	}
	
	.contact-box .wpcf7-radio .wpcf7-list-item label {
		flex-basis: 100%;
	}
	
	#consent-box .wpcf7-list-item-label {
		font-size: 1.3rem;
	}
	
	.contact-box .content-policy .content-box {
		max-height: 300px;
	}
}

body.post-type-archive-works .archive-list.works-list {
	display: flex;
	flex-wrap: wrap;
	gap: 50px 30px;
}

body.post-type-archive-works .archive-list.works-list .works-item {
	width: calc(100% / 3 - 20px);
}

.archive-list.works-list .works-item .post-meta {
	margin-top: 25px;
}

.archive-list.works-list .works-item .post-meta .post-cats {
	margin-left: 0;
}

.archive-list.works-list .works-item .post-meta .post-cat {
	margin-left: 0;
}

.archive-list.works-list .works-item .post-ttl {
	margin-top: 15px;
}

.archive-list.works-list .works-item .post-ttl span {
	font-size: 2rem;
	font-weight: 600;
	letter-spacing: .05em;
}

@media screen and (max-width: 767px) {
	.archive-list.works-list .works-item .post-meta {
		margin-top: 15px;
	}
	
	body.post-type-archive-works .archive-list.works-list {
		display: flex;
		flex-wrap: wrap;
		gap: 40px 10px;
	}
	
	body.post-type-archive-works .archive-list.works-list .works-item {
		width: calc(50% - 15px);
	}
}

.archive-list.voice-list {
	display: flex;
	flex-wrap: wrap;
	gap: 100px;
	margin-top: 25px;
}

.archive-list.voice-list .voice-item {
	align-items: flex-start;
	display: flex;
	gap: 30px;
	width: calc(50% - 50px);
}

.archive-list.voice-list .voice-item .voice-image {
	width: 125px;
}

.archive-list.voice-list .voice-item .voice-content {
	width: calc(100% - 145px);
}

.archive-list.voice-list .voice-item .post-meta .post-cats {
	margin-left: 0;
}

.archive-list.voice-list .voice-item .post-ttl {
	margin-top: 15px;
}

.archive-list.voice-list .voice-item .post-ttl span {
	font-size: 1.7rem;
	font-weight: 600;
	letter-spacing: .05em;
}

.archive-list.voice-list .voice-item .image-box {
	margin-top: 25px;
}

.archive-list.voice-list .voice-item .image-box img {
	aspect-ratio: 27 / 20;
	height: 100%;
	width: 100%;
}


@media screen and (max-width: 767px) {
	.archive-list.voice-list {
		gap: 40px;
	}
	
	.archive-list.voice-list .voice-item {
		flex-wrap: wrap;
		gap: 15px;
		width: 100%
	}

	.archive-list.voice-list .voice-item .voice-image {
		width: 62.5px;
	}

	.archive-list.voice-list .voice-item .voice-content {
		width: calc(100% - 77.5px);
	}
}

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

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

  #btn-hamburger {
    display: none;
  }
}

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

/* ============================
	link
============================ */
.c-link {
	border: 1px solid var(--main-color);
	column-gap: 20px;
	cursor: pointer;
	display: block;
	margin-inline: auto;
	min-width: 270px;
	padding: 17px 10px;
	position: relative;
	text-align: center;
	transition: all .4s;
	width: fit-content;
}

.c-link .text {
	color: var(--main-color);
	flex-basis: auto;
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1.6;
	width: auto;
}

.c-link .arrow {
	background-color: var(--main-color);
	mask-image: url("./images/common/link_arrow.svg");
	mask-repeat: no-repeat;
	mask-size: contain;
	display: block;
	height: 14px;
	right: -30px;
	position: absolute;
	top: 50%;
	translate: 0 -90%;
	transition: all .4s;
	width: 77px;
}
.c-link.white .arrow {
	background-color: var(--link-color);
}

.c-link.white {
	border-color: var(--white);
}

.c-link.white .text,
.c-link.white .arrow {
	color: var(--white);
}

.c-link.white .arrow {
	background-color: var(--white);
}

@media (hover: hover) {
	.c-link:hover {
		opacity: 1;
	}
	
	.c-link:hover .arrow {
		right: -45px;
	}
}

/* ============================
	m-swiper-container 
============================ */
.m-swiper-container {
	position: relative;
}

.m-swiper-container .arrow-button {
	position: absolute;
	z-index: 20;
}

.m-swiper-container .swiper-button-prev,
.m-swiper-container .swiper-button-next {

}

.m-swiper-container .swiper-button-prev {
	left: 0;
	translate: -30px 0;
}

.m-swiper-container .swiper-button-next {
	right: 0;
	translate: 30px 0;
}

.m-swiper-container .swiper-button-prev::after,
.m-swiper-container .swiper-button-next::after {
	content: "";
	height: 30px;
	border: 5px solid;
	border-color: var(--main-color) var(--main-color) transparent transparent;
	transform: rotate(45deg);
	width: 30px;
}

.m-swiper-container .swiper-button-prev::after {
	left: unset;
	right: 30px;
	rotate: 180deg;
}

.m-swiper-container .swiper-pagination {
	text-align: left;
}

.m-swiper-container .swiper-pagination-bullet {
	background-color: var(--white);
	border: 1px solid #C4C4C4;
	width: 5px;
	height: 5px;
	opacity: 1;
	margin: 0 8px;
}

.m-swiper-container .swiper-pagination-bullet-active {
	background-color: #FCCF00;
	width: 10px;
	border: none;
	height: 10px;
	top: 2px;
	position: relative;
}

.m-swiper-container .swiper-navigation-icon {
	display: none;
}


@media screen and (max-width: 1050px) {
	.m-swiper-container .swiper-button-prev {
		left: 0;
		translate: -15px 0;
	}

	.m-swiper-container .swiper-button-next {
		right: 0;
		translate: 15px 0;
	}
}

@media screen and (max-width: 767px) {
	.m-swiper-container .swiper-button-prev,
	.m-swiper-container .swiper-button-next {
		height: 40px;
		width: 40px;
	}
	.m-swiper-container .swiper-button-prev::after,
	.m-swiper-container .swiper-button-next::after {
		
	}
}

/* .m-has-thumb-slider */
.m-has-thumb-slider .swiper-wrapper {
	align-items: center;
	height: fit-content;
}

.m-has-thumb-slider .swiper-slide img {
	height: 585px;
	object-fit: contain;
	width: 100%;
}

.m-has-thumb-slider .swiper-button-prev {
	min-width: unset;
	left: -120px;
}

.m-has-thumb-slider .swiper-button-next {
	min-width: unset;
	right: -120px;
}

.m-has-thumb-slider .swiper-pagination {
	background-color: var(--sub-color);
	color: var(--white);
	position: absolute;
	top: 15px;
	left: 15px;
	height: 30px;
	line-height: 1.7;
	text-align: center;
	width: 60px;
}

@media screen and (max-width: 767px) {
	.m-has-thumb-slider .swiper-slide {
		aspect-ratio: 3 / 2;
	}

	.m-has-thumb-slider .swiper-slide img {
		height: auto;
		aspect-ratio: 3 / 2;
	}

	.m-has-thumb-slider .swiper-button-prev {
		left: -18px;
	}

	.m-has-thumb-slider .swiper-button-next {
		right: -18px;
	}
}

/* .m-thumb-slider */
.m-thumb-slider {
	margin-top: 10px;
	height: fit-content;
	width: 100%;
}

.m-thumb-slider .swiper-wrapper {
	align-items: center;
}

.m-thumb-slider .swiper-slide {
	position: relative;
	text-align: center;
	cursor: pointer;
	transition: all .3s ease;
}

.m-thumb-slider .swiper-slide:hover {
	opacity: 0.8;
	transition: all .3s ease;
}

.m-thumb-slider .swiper-slide::before {
	background-color: var(--black);
	content: '';
	opacity: .5;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

.m-thumb-slider .swiper-slide-thumb-active::before {
	content: none;
}

.m-thumb-slider .swiper-slide img {
	height: 80px;
	object-fit: contain;
}

@media screen and (max-width: 767px) {
	.m-thumb-slider .swiper-slide {
		aspect-ratio: 3 / 2;
	}

	.m-thumb-slider .swiper-slide img {
		height: unset;
		aspect-ratio: 3 / 2;
	}
}

/* .m-thumb-slider */
.c-link-term-container {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	line-height: 1;
}

.c-link-term-container .term-item a {
	background-color: transparent;
	border: 1px solid var(--border-color);
	border-radius: 1px;
	font-size: 1.4rem;
	font-weight: 700;
	padding: 1px 8px;
}

.c-link-term-container .term-item.is-active a {
	background-color: var(--sub-bg-color);
	color: var(--white);
}

@media screen and (max-width: 767px) {
	.c-link-term-container {
		gap: 16px;
	}
}

/* ============================
	c-spec-area
============================ */
.c-spec-area {
	margin-top: 64px;
}

.c-spec-area .overivew-container {
	padding: 0 64px;
}

.c-spec-area .wrap-overivew .overivew-box {
	display: flex;
}

.c-spec-area .wrap-overivew .overivew-box .title {
	align-items: center;
	border-bottom: 1px solid var(--main-color);
	display: flex;
	flex-basis: 120px;
	padding: 16px 20px 8px 16px;
	width: 120px;
}

.c-spec-area .wrap-overivew .overivew-box .title span {
	font-size: 1.5rem;
	font-weight: 700;
}

.c-spec-area .wrap-overivew .overivew-box .description {
	border-bottom: 1px solid var(--border-color);
	flex-basis: calc(100% - 120px);
	font-size: 1.5rem;
	font-weight: 500;
	padding: 16px 20px 8px 16px;
	width: calc(100% - 120px);
}

.c-spec-area .wrap-overivew .overivew-box .description .wrap-image {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

@media screen and (max-width: 767px) {
	.c-spec-area .overivew-container {
		padding: 24px 16px;
	}
}


/* ============================
	mod_contact
============================ */

#mod_contact {
	background-color: var(--white);
}

#mod_contact .sec-inner {
	padding-bottom: 4px;
	padding-top: 80px;
}

#mod_contact .link-content {
	gap: 4px;
	display: flex;
}

#mod_contact a {
  aspect-ratio: 18 / 7;
	align-items: center;
	box-sizing: border-box;
  height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	justify-content: center;
	position: relative;
	width: 100%;
}

#mod_contact a.recruit {
	background-image: url('./images/common/cta_recruit.png');
}

#mod_contact a.recruit::before {
	background-color: #02479c;
	content: "";
	display: block;
	height: 100%;
	left: 0;
	mix-blend-mode: multiply;
	opacity: .5;
	position: absolute;
	transition: all .6s;
	top: 0;
	width: 100%;
	z-index: 1;
}

#mod_contact a.contact {
	background-image: url('./images/common/cta_contact.png');
}

#mod_contact a.contact::before {
	background-color: #02479c;
	content: "";
	display: block;
	height: 100%;
	left: 0;
	mix-blend-mode: multiply;
	opacity: .5;
	position: absolute;
	transition: all .4s;
	top: 0;
	width: 100%;
	z-index: 1;
}

#mod_contact a h2 {
	color: var(--white);
	font-size: 3.2rem;
	font-weight: 600;
	position: relative;
	z-index: 2;
}

@media screen and (max-width: 767px) {
	#mod_contact .sec-inner {
		padding-top: 20px;
	}
	
	#mod_contact .link-content {
		flex-flow: wrap;
	}
	
	#mod_contact a h2 {
		font-size: 2.2rem;
	}
}

/* ============================
	mod_recruit_interview
============================ */
#mod_recruit_interview {
	background-color: var(--main-color);
	position: relative;
}

#mod_recruit_interview::before {
	background-color: var(--white);
	content: "";
	display: block;
	bottom: 0;
	height: 44%;
	left: 0;
	position: absolute;
	width: 100%;
}

#mod_recruit_interview .sec-inner {
	padding-bottom: 240px;
}

#mod_recruit_interview .sec-ttl-box p {
	color: var(--white) !important;
}

#mod_recruit_interview .sec-ttl-box .sec-ttl {
	color: var(--white) !important;
}

#mod_recruit_interview .interview-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 60px 30px;
}

#mod_recruit_interview .interview-list .item-box {
	position: relative;
	width: calc(100% / 3 - 20px);
}

#mod_recruit_interview .interview-list .item-box .image-box {
	overflow: hidden;
	position: relative;
}

#mod_recruit_interview .interview-list .item-box .image-box img {
	aspect-ratio: 8 / 9;
	height: auto;
	overflow: hidden;
	transition: all .4s;
	width: 100%;
}

#mod_recruit_interview .interview-list .item-box .department {
	border: 1px solid var(--main-color);
	color: var(--main-color);
	font-size: 1.4rem;
	font-weight: 500;
	padding: 2px 27px;
	width: fit-content;
}

#mod_recruit_interview .interview-list .item-box .role {
	font-size: 1.8rem;
	font-weight: 600;
	margin-top: 5px;
}

#mod_recruit_interview .interview-list .item-box .text-box {
	margin-top: 30px;
	width: 100%;
}

#mod_recruit_interview .interview-list .item-box .text-box .info {
	font-size: 1.5rem;
	font-weight: 400;
}

#mod_recruit_interview .interview-list .item-box .text-box .name {
	font-size: 2.4rem;
	font-weight: 700;
}

#mod_recruit_interview .interview-list .item-box > .c-link {
	margin-top: 20px;
	padding: 10px;
}

#mod_recruit_interview .wrap-link {
	margin-top: 80px;
}

@media screen and (max-width: 767px) {
	#mod_recruit_interview::before {
		height: 80%;
	}
	
	#mod_recruit_interview .sec-inner {
		padding-bottom: 100px;
	}
	
	#mod_recruit_interview .interview-list {
		justify-content: center;
	}

	#mod_recruit_interview .interview-list .item-box {
		flex-basis: 100%;
		max-width: 362px;
		position: relative;
		width: 100%;
	}
}

@media (hover: hover) {
	#mod_recruit_interview .interview-list .item-box:hover {
		opacity: 1;
	}

	#mod_recruit_interview .interview-list .item-box:hover .image-box img {
		transform: scale(1.08);
	}
}

/* ============================
	archive news
============================ */
.archive-list.news-list .news-item {
	border-top: 1px solid var(--border-color);
	position: relative;
}

.archive-list.news-list .news-item:last-child {
	border-bottom: 1px solid var(--border-color);
}

.archive-list.news-list .news-item::before {
	background-image: url('./images/common/link_arrow02.svg');
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: block;
	height: 48px;
	position: absolute;
	right: 0;
	top: 50%;
	translate: 0 -50%;
	width: 48px;
}

.archive-list.news-list a {
	display: block;
	padding: 30px 0;
	width: 100%;
}

.archive-list.news-list a .post-meta {
	display: flex;
	gap: 15px;
	justify-content: flex-start;
}

.archive-list.news-list a .post-meta .post-cats {
	display: flex;
	gap: 15px;
	margin: 0;
}

.archive-list.news-list a .post-meta time {
	font-size: 1.4rem;
	font-weight: 500;
}

.archive-list.news-list a .post-ttl {
	font-size: 1.6rem;
	font-weight: 600;
	margin-top: 10px;
	width: calc(100% - 58px);
}

@media screen and (max-width: 767px) {
	.archive-list.news-list .news-item::before {
		height: 32px;
		width: 32px;
	}
	
	.archive-list.news-list a .post-ttl {
		width: calc(100% - 42px);
	}
}
