@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@100..900&family=Montserrat:wght@100..900&family=Noto+Sans+JP:wght@100..900&display=swap');
* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

:root {
	--white: #FFFFFF;
	--black-0: #000;
	--black-1: #111;
	--gray: #666666;
	--header-h: 9rem;
}

@media (max-width: 768px) {
	:root {
		--header-h: 5.5rem;
	}
}

html {
	/* font-size: 1.4995vw; */
	/* scroll-behavior: smooth; */
	transition: font-size 0.2s ease-in-out;
}

@media (min-width: 769px) {
	html {
		/* 1440pxで1rem = 10pxになるように計算 */
		font-size: calc(100vw / 144);
	}
}

@media (max-width: 768px) {
	html {
		/* 390pxで1rem = 10pxになるように計算 */
		font-size: calc(100vw / 39);
	}
}

[id] {
  	scroll-margin-top: var(--header-h);
}

body {
	font-size: 1.2rem;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	color: var(--black);
	overflow-x: hidden;
}

.en {
	font-family: "Jost", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
}

body.no-scroll {
	overflow: hidden;
	-ms-touch-action: none;
	touch-action: none;
}

.fadeUpTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
	opacity: 0;
}

.delay02 {
	animation-delay: 0.2s;
}

.delay04 {
	animation-delay: 0.4s;
}

.delay06 {
	animation-delay: 0.6s;
}

.delay08 {
	animation-delay: 0.8s;
}

.delay10 {
	animation-delay: 1s;
}

.delay12 {
	animation-delay: 1.2s;
}

.delay14 {
	animation-delay: 1.4s;
}

.fade {
	opacity: 0;
}

.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

section {
	position: relative;
}

p {
	font-size: 1.6rem;
	line-height: 2;
	letter-spacing: 0.1em;
	font-weight: 500;
}

a {
	display: block;
	text-decoration: none;
	transition: all 0.5s;
}

a:hover {
	transition: all 0.5s;
}

img {
	display: block;
	width: 100%;
}

span {
	display: inline-block;
}

.sp {
	display: none!important;
}


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

.header {
	position: fixed;
	z-index: 101;
	width: 100%;
	transition: all 0.5s;
}

.header.active {
	background-color: #FFF;
	transition: all 0.5s;
}

.header__container {
	padding: 3rem 0;
	margin-left: 3rem;
	width: 134rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	-webkit-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease;
	background: transparent;
}

.header__logo a {
	display: flex;
	align-items: center;
	gap: 2.1rem;
}

.header__logo a:hover {
	opacity: 0.6;
}

.header__logo a img {
	width: 17.1rem;
}

.header__list {
	display: flex;
	align-items: center;
}

.header__item {
	position: relative;
}

.header__item::before {
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	width: 0.1rem;
	height: 1rem;
	background-color: rgba(38, 38, 38, 1);
}

.header__item:last-child:before {
	display: none;
}

.header__list a {
	font-size: 1.5rem;
	letter-spacing: 0.06em;
	font-weight: 500;
	line-height: 2.2rem;
	text-align: center;
	margin: 0 4rem;
}

.header__item:last-child a {
	margin-right: 0;
}

.header__link {
	position: relative;
}

.header__link::after {
	content: "";
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 0;
	height: 1px;
	background-color: var(--black-1);
	transition: width 0.3s ease;
}

.header__item__bg>.header__link::after {
	display: none;
}

.header__link:hover::after {
	width: 100%;
}

.header__menu {
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	background-color: #fff;
	padding: 10rem 0 0 0;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	z-index: 1000;
	overflow-y: auto;
}

.header__menu.show {
	visibility: visible;
	opacity: 1;
	-webkit-transition: opacity 0.6s ease-in-out;
	transition: opacity 0.6s ease-in-out;
}

.header__menu .header__list {
	flex-direction: column;
	gap: 0.65rem;
}

.header__icon {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	width: 0.97rem;
	height: 0.81rem;
	cursor: pointer;
	z-index: 5000;
}

.header__ja {
	display: block;
	font-size: 1.2rem;
}

.header__icon.open .header__bar:nth-child(1) {
	-webkit-transform: rotate(45deg) translate(1.19rem, 0.19rem);
	transform: rotate(45deg) translate(1.19rem, 0.19rem);
}

.header__icon.open .header__bar:nth-child(2) {
	opacity: 0;
}

.header__icon.open .header__bar:nth-child(3) {
	-webkit-transform: rotate(-45deg) translate(1.19rem, -0.19rem);
	transform: rotate(-45deg) translate(1.19rem, -0.19rem);
}

.header__bar {
	height: 0.1rem;
	width: 100%;
	background-color: #333;
	border-radius: 0.06rem;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.header.is-hide {
	transform: translateY(-110%);
}

.header {
	transform: translateY(0);
	transition: transform 0.35s ease, background-color 0.5s;
}

/* =====================
top-mv
===================== */

.wrapper {
	width: 120rem;
	margin: 0 auto;
}

.mv-img {
	position: relative;
	width: 100%;
}

.top-mv {
	position: relative;
	padding: 21rem 0 0 0;
}

.top-mv__title {
	width: 101%;
	color: var(--black-0);
	font-size: 9.8rem;
	font-weight: bold;
	letter-spacing: 0.02em;
	line-height: 1.1;
	margin-bottom: 3rem;
	visibility: hidden;
}

.top-mv__title.is-ready {
	visibility: visible;
}

.top-mv__title span {
	display: inline-block;
	opacity: 0;
	visibility: hidden;
	/* 追加 */
	transform: translateY(20px);
	transition: all 0.5s ease-out;
}

.top-mv__title span.visible {
	opacity: 1;
	visibility: visible;
	/* 追加 */
	transform: translateY(0);
}

.top-mv__txt {
	font-size: 1.4rem;
	letter-spacing: 0.1em;
	font-weight: 600;
	line-height: 1.5;
}

.roop__slider {
	width: 100%;
	height: 40rem;
	margin-top: 15rem;
	overflow: hidden;
}

.roop__slider__track {
	display: flex;
	height: 100%;
	width: max-content;
	will-change: transform;
	animation: roop__slider var(--duration, 30s) linear infinite;
}

.roop__slider__slide {
	flex-shrink: 0;
	margin-right: 1rem;
	height: 100%;
}

.roop__slider__slide img {
	height: 100%;
	width: auto;
	display: block;
}


/* デフォルト: 右 → 左 */

@keyframes roop__slider {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(calc(-1 * var(--halfWidth)));
	}
}


/* 左 → 右 */

.roop__slider[data-direction="right"] .roop__slider__track {
	animation-name: roop__slider_reverse;
}

@keyframes roop__slider_reverse {
	from {
		transform: translateX(calc(-1 * var(--halfWidth)));
	}
	to {
		transform: translateX(0);
	}
}


/* =====================
top-news
===================== */

.top-news {
	padding: 6rem 0 10rem 0;
}

.news__lists {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.news__lists>li {
	width: 58.5rem;
	border-bottom: 0.1rem solid #E5E7EB;
}

.news__lists li a {
	display: flex;
	align-items: center;
	gap: 2rem;
	padding: 2.4rem 0;
	position: relative;
}

.news__lists li a::before {
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	width: 2.8rem;
	height: 2.8rem;
	background-image: url(../img/arrow-right.webp);
	background-repeat: no-repeat;
	background-size: contain;
}

.news__lists__thumb img {
	width: 18rem;
	height: 12rem;
	object-fit: cover;
}

.thumb_logo {
	object-fit: contain!important;
}

.news__lists__contents {
	width: 34rem;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.news__lists__title {
	width: 100%;
	font-size: 1.5rem;
	line-height: 1.6;
	letter-spacing: 0;
	margin-bottom: 1.2rem;
}

.date {
	display: inline-block;
	font-size: 1.3rem;
	line-height: 1.2;
	letter-spacing: 0;
	font-weight: 500;
	margin-right: 1.2rem;
	color: var(--gray);
}

.category {
	display: inline-block;
	font-size: 1.1rem;
	line-height: 1.2;
	letter-spacing: 0;
	font-weight: 600;
	padding: 0.4rem 1.2rem;
	border-radius: 0.4rem;
	color: var(--white);
	background-color: var(--black-1);
}

.tag {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 0.8rem;
}

.tag li {
	font-size: 1.2rem;
	line-height: 1.2;
	letter-spacing: 0;
	font-weight: 500;
	color: var(--gray);
}

.btn {
	margin-top: 6rem;
	text-align: center;
}

.btn a {
	display: inline-block;
	font-size: 1.5rem;
	line-height: 2.2;
	font-weight: 600;
	letter-spacing: 0.06em;
	background-color: var(--white);
	border: 0.2rem solid var(--black-1);
	border-radius: 4rem;
	padding: 0.8rem 4rem;
	transition: all 0.5s;
}

.btn a:hover {
	color: var(--white);
	background-color: var(--black-1);
	border: 0.2rem solid var(--white);
	transition: all 0.5s;
}


/* =====================
top-about
===================== */

.top-about {
	padding: 10rem 0;
	background-image: url(../img/about_bg.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.top-h2 {
	margin-bottom: 6rem;
}

.back_line {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 1rem 3rem;
  font-size: 5rem;
  letter-spacing: 0.06em;
  line-height: 1.2;
  font-weight: 500;
  color: transparent;
}

.back_line::after {
  content:"";
  position:absolute;
  inset:0;
  background:#fff;
  z-index:0;
}

/* ワイプで出す白背景 */
.back_line::before {
  content:"";
  position:absolute;
  inset:0;
  background:#111;
  transform: scaleX(0);
  transform-origin: left;
  z-index:1;
}

/* 文字（1文字ずつ） */
.back_line .char {
  position: relative;
  z-index:2;
  display:inline-block;
  opacity:0;
  transform: translateY(12%);
  color: #FFF;
}

.back_line.animate::before{
  animation: wipeBg 0.7s ease forwards;
}

.back_line.animate .char{
  animation: charIn 0.45s ease forwards;
  animation-delay: var(--d, 0s);
}

@keyframes wipeBg{
  to { transform: scaleX(1); }
}

@keyframes charIn{
  to {
    opacity:1;
    transform: translateY(0);
  }
}

.top-about .back_line .char {
	color: var(--black-1);
}

.top-about .back_line::after {
  content:"";
  position:absolute;
  inset:0;
  background:#111;
  z-index:0;
}

/* ワイプで出す白背景 */
.top-about .back_line::before {
  content:"";
  position:absolute;
  inset:0;
  background:#FFF;
  transform: scaleX(0);
  transform-origin: left;
  z-index:1;
}

.top-about_txt01 {
	font-size: 1.6rem;
	line-height: 1.8;
	letter-spacing: 0.2em;
	margin-bottom: 4rem;
}

.top-about__box {
	display: flex;
    flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.top-about__txt {
	width: 60rem;
	color: var(--white);
}

.top-about__txt01 {
	font-size: 3.2rem;
	line-height: 2;
	letter-spacing: 0.18em;
	font-weight: bold;
	margin-bottom: 4rem;
}

.top-about__txt01 span {
	display: block;
	font-weight: bold;
}

.top-about__txt02 {
	line-height: 2.5;
}

.top-about__video video {
	width: 48rem;
	height: 36rem;
	object-fit: cover;
	display: block;
}


/* =====================
top-service
===================== */

.top-service {
	padding-top: 12rem;
}

.top-service__txt01 {
	font-size: 3.2rem;
	line-height: 2;
	letter-spacing: 0.1em;
	font-weight: bold;
	margin-bottom: 2rem;
}

.top-service__txt02 {
	font-size: 1.6rem;
	line-height: 2;
	letter-spacing: 0.1em;
	font-weight: 600;
}

.top-service__lists {
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 5rem;
}

.top-service__lists li {
	width: 28.2rem;
	padding: 2.4rem;
	border: 0.1rem solid #DDDDDD;
}

.top-service__lists__num {
	font-size: 4.8rem;
	line-height: 1.2;
	letter-spacing: 0;
	font-weight: bold;
}

.top-service__lists__title {
	font-size: 1.6rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
	font-weight: bold;
	padding-bottom: 1rem;
	margin: 1.6rem 0 1rem 0;
	border-bottom: 0.1rem solid #EEEEEE;
}

.top-service__lists__desc {
	font-size: 1.3rem;
	line-height: 1.7;
	letter-spacing: 0.1em;
}

.top-service .roop__slider {
	margin-top: 8rem;
}


/* =====================
top-blog
===================== */

.top-blog {
	padding-top: 12rem;
}

.blog__lists {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 4rem;
}

.blog__lists>li {
	width: 38.4rem;
}

.blog__lists__thumb {
	overflow: hidden;
}

.blog__lists__thumb img {
	width: 100%;
	height: 25.6rem;
	object-fit: cover;
	transition: all 0.5s;
}

.blog__lists>li a:hover img {
	scale: 1.05;
	transition: all 0.5s;
}

.blog__lists__contents {
	padding: 2rem;
	border: 0.1rem solid #DDDDDD;
	min-height: 17.8rem;
}

.blog__lists__contents .date {
	display: block;
	margin-bottom: 1rem;
}

.blog__lists__title {
	font-size: 1.6rem;
	line-height: 1.7;
	letter-spacing: 0;
	font-weight: 600;
	margin: 1.6rem 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;   /* 2行まで */
	overflow: hidden;
}

.roop__txt {
	overflow: hidden;
	white-space: nowrap;
	margin-top: 6rem;
}

.roop__txt__track {
	display: flex;
	width: max-content;
	will-change: transform;
	animation: roop__txt 30s linear infinite;
}

.roop__txt__item {
	font-size: 20rem;
	letter-spacing: 0.06em;
	line-height: 1.2;
	font-weight: bold;
	padding-right: 3rem;
	opacity: 0.1;
	padding-right: 3rem;
}

@keyframes roop__txt {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}


/* =====================
contact
===================== */

.contact {
	padding: 6rem 0;
	background-image: url(../img/contact_bg.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.contact-h2 {
	font-size: 5rem;
	letter-spacing: 0.1em;
	line-height: 1.2;
	font-weight: 500;
	text-align: center;
	color: var(--white);
	margin-bottom: 2.5rem;
}

.contact__txt01 {
	font-size: 1.8rem;
	letter-spacing: 0.1em;
	line-height: 1.2;
	font-weight: 600;
	text-align: center;
	color: var(--white);
	margin-bottom: 2rem;
}

.contact__txt02 {
	font-size: 1.5rem;
	letter-spacing: 0.1em;
	line-height: 1.8;
	font-weight: 500;
	text-align: center;
	color: var(--white);
}

.contact .btn {
	margin-top: 4rem;
}

footer {
	padding: 12rem 0 2rem 0;
}

footer a:hover {
	opacity: 0.6;
}

.footer__container {
	display: flex;
	justify-content: space-between;
	gap: 14.5rem;
}

.footer__logo img {
	width: 23.6rem;
}

.footer__info {
	width: 27.5rem;
	font-size: 1.3rem;
	letter-spacing: 0.05em;
	line-height: 1.5;
	margin: 4rem 0 3rem 0;
}

.footer__link__privacy {
	font-size: 1.1rem;
	letter-spacing: 0.05em;
	line-height: 1;
	text-decoration: underline;
}

.footer__nav {
	width: 78.4rem;
	display: flex;
    flex-wrap: wrap;
	gap: 7.8rem;
}

.footer__nav01,
.footer__nav02,
.footer__nav03 {
	width: 20.8rem;
	display: flex;
	flex-direction: column;
	gap: 6rem;
}

.footer__list li {
	margin-bottom: 1.5rem;
}

.footer__list li:last-child {
	margin-bottom: 0;
}

.footer__item li a {
	display: inline-block;
	font-size: 1.3rem;
	letter-spacing: 0.05em;
	line-height: 1.2;
}

.footer__list li:first-child a {
	font-size: 2rem;
	letter-spacing: 0.06em;
	line-height: 1.45;
	font-weight: 600;
}

.footer__list__news {
	margin-right: 3rem;
}

.footer__copy {
	margin-top: 12rem;
	text-align: center;
}

.footer__copyright {
	font-size: 1rem;
	letter-spacing: 0.1em;
}


/* =====================
mv
===================== */

.mv {
	position: relative;
	padding: 21rem 0 0 0;
}

.mv .wrapper {
	position: relative;
}

.mv__subtitle {
	font-size: 6rem;
	letter-spacing: 0.06em;
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 2rem;
}

.mv__title {
	font-size: 1.4rem;
	letter-spacing: 0.1em;
	font-weight: 500;
}

.mv_img {
	margin-top: 12rem;
}

.breadcrumb {
	position: absolute;
	right: 0;
	bottom: 0;
}

.breadcrumb__list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.breadcrumb__item,
.breadcrumb__item a {
	font-size: 1.2rem;
	letter-spacing: 0.1em;
	line-height: 1.2;
	font-weight: 500;
	color: var(--black-1);
}

.breadcrumb__item {
	color: #AAAAAA;
	padding-right: 3.2rem;
	position: relative;
}

.breadcrumb__item:after {
	position: absolute;
	content: "・";
	top: 0;
	bottom: 0;
	right: 1rem;
	font-size: 1.2rem;
	margin: auto;
	color: var(--black-1);
}

.breadcrumb__item:last-child {
	padding-right: 0;
}

.breadcrumb__item:last-child:after {
	display: none;
}


/* =====================
philosophy
===================== */

.philosophy {
	padding: 6rem 0;
}

.philosophy__txt01 {
	font-size: 3.2rem;
	letter-spacing: 0.1em;
	line-height: 2;
	font-weight: bold;
	margin-bottom: 3rem;
}

.philosophy__lists>li {
	margin-top: 8rem;
}

.philosophy__list>li:first-child {
	margin-bottom: 10rem;
}

.h2_title_box {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
}

.h2__title {
	font-size: 3.2rem;
	letter-spacing: 0.1em;
	line-height: 2;
	font-weight: 500;
}

.h2__subtitle {
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	line-height: 2;
}

.philosophy__lists__txt01 {
	display: inline-block;
	font-size: 4.2rem;
	letter-spacing: 0.18em;
	line-height: 1.2;
	margin-bottom: 3rem;
}

.philosophy__lists__txt01 span {
	color: var(--white);
	background-color: var(--black-1);
	/* padding: 1rem 3rem; */
	font-weight: bold;
	font-size: 4.2rem;
}

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

.values__lists li {
    width: 57rem;
    padding: 3rem 0;
    border-bottom: 0.1rem solid #D9D9D9;
}

.values__lists__box {
    width: 50.4rem;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.values__lists__num {
	font-size: 4.2rem;
	letter-spacing: 0.06em;
	line-height: 1.2;
	font-weight: bold;
}

.values__lists__icon {
    width: 8.7rem;
    height: 6.2rem;
    object-fit: cover;
}

.values__lists__title {
    font-size: 1.8rem;
	letter-spacing: 0.1em;
	line-height: 2;
	font-weight: 600;
    margin-bottom: 1.2rem;
}

.values__lists__txt {
    font-size: 1.4rem;
	letter-spacing: 0.1em;
	line-height: 2;
	font-weight: 600;
}

.members {
	padding: 10rem 0;
	background-color: var(--black-1);
}

.members .h2__title,
.members .h2__subtitle {
	color: var(--white);
}

.members__lists {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6rem;
	margin-top: 6rem;
}

.members__lists li {
	width: 25.5rem;
}

.members__lists__img {
	margin-bottom: 2rem;
}

.members__lists__img img {
	height: 36rem;
	object-fit: cover;
}

.members__lists__name {
	font-size: 2rem;
	letter-spacing: 0.08em;
	line-height: 1.5;
	font-weight: 500;
	color: var(--white);
	font-family: "Montserrat", sans-serif;
}

.members__lists__position {
	font-size: 1.4rem;
	letter-spacing: 0.08em;
	line-height: 1.5;
	font-weight: 500;
	color: var(--white);
	font-family: "Montserrat", sans-serif;
}

.overview {
	padding: 10rem 0 12rem 0;
}

.overview .h2_title_box {
	margin-bottom: 3rem;
}

.overview__table {
	width: 100%;
}

.overview__table th,
.overview__table td {
	padding: 2rem 0;
	border-bottom: 0.1rem solid #DDDDDD;
}

.overview__table tr:last-child th,
.overview__table tr:last-child td {
	border-bottom: none;
}

.overview__table th {
	width: 28rem;
	font-size: 1.5rem;
	line-height: 1.2;
	letter-spacing: 0.06em;
	font-weight: 600;
	color: var(--gray);
}

.overview__table td {
	font-size: 1.6rem;
	line-height: 1.2;
	letter-spacing: 0.06em;
	font-weight: 500;
}

.overview__table ul li {
	list-style: inside;
	margin-bottom: 1.2rem;
}

.overview__table ul li:last-child {
	margin-bottom: 0;
}

.map {
	margin-top: 3rem;
}

.map iframe {
	width: 100%;
	height: 37.6rem;
}

.thinking {
	padding: 6rem 0 8rem 0;
}

.thinking__txt01 {
	font-size: 3.2rem;
	letter-spacing: 0.1em;
	line-height: 2;
	font-weight: bold;
	margin-bottom: 3rem;
}

.thinking__txt02 {
	margin-bottom: 8rem;
}

.thinking__txt02 span {
	display: inline;
	padding: 0.1rem 0.5rem;
	color: var(--white);
	background-color: var(--black-1);
}

.service__roop__txt {
	height: initial;
	margin-top: 2rem;
}

.roop__slider__txt {
	font-size: 5rem;
	letter-spacing: 0.06em;
	line-height: 1.2;
	font-weight: 500;
	padding: 1.6rem 6rem;
	background-color: #f5f5f5;
	margin-right: 2rem;
}

.approach {
	padding: 10rem 0 12rem 0;
	background-color: var(--black-1);
}

.approach .h2__title,
.approach .h2__subtitle {
	color: var(--white);
}

.approach__lists {
	margin-top: 3rem;
}

.approach__lists li {
	padding: 3rem 6rem;
	background-color: var(--white);
	margin-top: 2rem;
}

.approach__lists__title {
	font-size: 3rem;
	letter-spacing: 0.1em;
	line-height: 2;
	font-weight: bold;
	margin-bottom: 1rem;
}

.service-domain {
	padding: 10rem 0 12rem 0;
}

.service-domain__lists {
	margin-top: 3.5rem;
}

.service-domain__lists>li {
	margin-bottom: 10rem;
}

.service-domain__lists>li:last-child {
	margin-bottom: 0;
}

.service-domain__lists__box {
	display: flex;
	align-items: center;
	gap: 3.2rem;
	margin-bottom: 4rem;
}

.service-domain__lists__num {
	font-size: 4.8rem;
	letter-spacing: 0;
	line-height: 1.5;
	font-weight: bold;
}

.service-domain__lists__title {
	display: inline-block;
	font-size: 3rem;
	letter-spacing: 0.06em;
	line-height: 1;
	font-weight: bold;
}

.service-domain__lists__category {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 4rem;
}

.service-domain__lists__category li {
	font-size: 1.5rem;
	letter-spacing: 0.06em;
	line-height: 1.2;
	font-weight: 500;
	padding: 0.4rem 1rem;
	border-radius: 1.4rem;
	color: var(--white);
	background-color: var(--black-1);
}

.service-domain__lists__img__box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 4rem;
	margin-top: 4rem;
}

.service-domain__lists__img__box.is-scroll {
	width: calc(120rem + (100vw - 120rem) / 2);
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x mandatory;
}

.service-domain__lists__img__box.is-scroll::-webkit-scrollbar {
	height: 6px;
}

.service-domain__lists__img__box.is-scroll::-webkit-scrollbar-thumb {
	background: #ccc;
	border-radius: 10px;
}

.service-domain__lists__img img {
	width: 58rem;
	height: 38.7rem;
	object-fit: cover;
}

.mv_img {
	position: relative;
}
.mv_img__txt {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	font-family: "Jost", sans-serif;
	font-weight: 700;
	font-size: 19.5rem;
	line-height: 100%;
	letter-spacing: 0.18em;
	text-align: center;
	text-transform: uppercase;
	color: #FFFFFF;
	mix-blend-mode: soft-light;
}

.faq {
	margin-top: 12rem;
	margin-bottom: 12rem;
}
.faq__inlinks {
	margin-bottom: 6rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.6rem;
}
.faq__inlinks__item {
	border: 0.1rem solid #111;
	padding: 1rem 2rem;
	border-radius: 0.4rem;
	font-weight: 500;
	font-size: 1.4rem;
	letter-spacing: 0.06em;
	transition: all 0.5s;
}
@media screen and (min-width: 769px) {
	.faq__inlinks__item:hover {
		color: #fff;
		background-color: #111;
	}
}
.faq__box {
	margin-bottom: 6.5rem;
}
.faq__box:last-child {
	margin-bottom: 0;
}
.faq__box__head {
	font-weight: 700;
	font-size: 2rem;
	letter-spacing: 0.06em;
	color: #111111;
	background: #F5F5F5;
	padding: 2rem;
	border-bottom: 0.1rem solid #ddd;
}
.faq__box__content {
	margin-top: 3rem;
}
.faq__box__content .qusetion {
	display: flex;
	align-items: stretch;
	gap: 1.2rem;
}
.faq__box__content .qusetion__head {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.2rem;
	height: 3.2rem;
	background-color: #111;
	color: #fff;
	border-radius: 0.4rem;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 1.6rem;
	letter-spacing: normal;
}
.faq__box__content .qusetion__txt {
	font-weight: 600;
	font-size: 1.6rem;
	letter-spacing: 0.06em;
	color: #111;
}
.faq__box__content .answer {
	margin-top: 1.5rem;
	display: flex;
	align-items: stretch;
	gap: 1.2rem;
}
.faq__box__content .answer__head {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.2rem;
	min-width: 3.2rem;
	height: 3.2rem;
	background: #F5F5F5;
	color: #111;
	border: 0.1rem solid #ddd;
	border-radius: 0.4rem;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 1.6rem;
	letter-spacing: normal;
}
.faq__box__content .answer__txt {
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 2.5rem;
	letter-spacing: 0.06em;
	color: #666666;
}
.faq__itembox {
	padding: 2.5rem 0;
}

.recruit-main__logo {
	max-width: 80rem;
	width: 100%;
	margin: 12rem auto;
}
.recruit-main__txt p {
	font-weight: 700;
	font-size: 2rem;
	line-height: 2.56;
	letter-spacing: 0.18em;
	color: #000;
	margin-bottom: 4rem;
}
.recruit-main__txt p:last-child {
	margin-bottom: 0;
}

.recruit-roop .roop__slider {
	width: 100%;
	height: 36rem;
	margin-top: 15rem;
	overflow: hidden;
}

.flow {
	margin: 12rem auto 10rem;
}
.flow__toptxt {
	margin: 2.7rem 0;
	font-weight: 600;
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	color: #111;
}
.flow__box {
	display: flex;
	align-items: stretch;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2.4rem;
}
.flow__itembox {
	border: 0.1rem solid #AAAAAA;
	background: #F7F7F7;
	padding: 2.4rem;
	width: 38.4rem;
}
.flow__itembox_num {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #111111;
	width: 4.8rem;
	height: 4.8rem;
	border-radius: 50%;
	font-family: "Jost", sans-serif;
	font-weight: 700;
	font-size: 2rem;
	color: #fff;
	margin-bottom: 1.5rem;
}
.flow__itembox__en {
	font-family: "Jost", sans-serif;
	font-weight: 600;
	font-size: 1.2rem;
	letter-spacing: 0.06em;
	color: #666666;
}
.flow__itembox__jp {
	font-weight: 700;
	font-size: 1.8rem;
	letter-spacing: 0.06em;
	color: #111;
	margin: 0.8rem 0;
}
.flow__itembox__desc {
	font-weight: 500;
	font-size: 1.3rem;
	line-height: 2rem;
	letter-spacing: 0.06em;
	color: #666666;
}

.jobdesc {
	background: #111111;
	padding: 8rem 0 12rem;
}
.jobdesc .h2__title {
	color: #fff;
}
.jobdesc .h2__subtitle {
	color: #fff;
}
.jobdesc__item {
	padding: 6rem;
	background-color: #fff;
	margin-bottom: 3rem;
}
.jobdesc__item:last-child {
	margin-bottom: 0;
}
.jobdesc__item__head {
	position: relative;
}
.jobdesc__item__morebtn {
	cursor: pointer;
	position: absolute;
	right: 0rem;
	width: 2.5rem;
	height: 2.5rem;
	top: 50%;
	transform: translateY(-50%);
	transition: 0.5s;
}
.jobdesc__item__morebtn.active::after {
	width: 0;
}
.jobdesc__item__morebtn::before {
	width: 2.5rem;
	height: 0.2rem;
	background-color: #111;
	position: absolute;
	content: "";
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.jobdesc__item__morebtn::after {
	height: 2.5rem;
	width: 0.2rem;
	background-color: #111;
	position: absolute;
	content: "";
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.jobdesc__item__h3 {
	font-weight: 700;
	font-size: 3.2rem;
	letter-spacing: 0.06em;
	text-align: center;
	background: #111111;
	padding: 1rem 3rem;
	color: #fff;
	display: inline-block;
	margin-bottom: 2.5rem;
}
.jobdesc__item__desc {
	color: #000;
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 2;
	letter-spacing: 0.1em;
}
.jobdesc__item__list {
	margin-top: 2rem;
	margin-left: 2rem;
}
.jobdesc__item__list li {
	list-style: disc;
	color: #000;
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 2;
	letter-spacing: 0.1em;
}
.jobdesc__item__list li::marker {
	font-size: 1rem;
}
.jobdesc__item__bottom {
	margin-top: 4rem;
	display: flex;
	align-items: stretch;
	gap: 4rem;
}
.jobdesc__item__bottom .flexbox {
	max-width: 50%;
	width: 100%;
}
.jobdesc__item__bottom .itembox {
	margin-bottom: 3rem;
	border-left: 0.18rem solid #111;
	padding-left: 1.8rem;
}
.jobdesc__item__bottom .itembox:last-child {
	margin-bottom: 0;
}
.jobdesc__item__bottom .itembox__title {
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1.5;
	letter-spacing: 0.06em;
	color: #111;
	margin-bottom: 1rem;
}
.jobdesc__item__bottom .itembox__txt {
	color: #666666;
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1.5;
	letter-spacing: 0.06em;
}

.recruit-faq {
	margin: 10rem auto;
}
.recruit-faq .faq__itembox {
	padding: 3rem 0;
	border-bottom: 0.1rem solid #ddd;
}
.recruit-faq .faq__itembox:last-child {
	border-bottom: none;
}
.recruit-faq .faq__box {
	margin-top: 3rem;
}
.recruit-faq .faq__box .qusetion {
	display: flex;
	align-items: stretch;
	gap: 1.2rem;
}
.recruit-faq .faq__box .qusetion__head {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	background-color: #111;
	border-radius: 50%;
	color: #fff;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 1.6rem;
	letter-spacing: normal;
}
.recruit-faq .faq__box .qusetion__txt {
	font-weight: 600;
	font-size: 1.6rem;
	letter-spacing: 0.06em;
	color: #111;
}
.recruit-faq .faq__box .answer {
	margin-top: 2rem;
	display: flex;
	align-items: stretch;
	gap: 1.2rem;
}
.recruit-faq .faq__box .answer__head {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	min-width: 4rem;
	height: 4rem;
	background: #F5F5F5;
	color: #111;
	border: 0.1rem solid #ddd;
	border-radius: 50%;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 1.6rem;
	letter-spacing: normal;
}
.recruit-faq .faq__box .answer__txt {
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 2.1rem;
	letter-spacing: 0.06em;
	color: #666666;
}

.entrylink {
	margin: auto;
	text-align: center;
	margin-bottom: 12rem;
}
.entrylink a {
	margin: auto;
	text-align: center;
	display: inline-block;
	padding: 2rem 3rem;
	border: 0.4rem solid #111111;
	color: #111;
	font-family: "Jost", sans-serif;
	font-weight: 500;
	font-size: 8rem;
	letter-spacing: 0.06em;
	transition: all 0.5s;
}
@media screen and (min-width: 769px) {
	.entrylink a:hover {
		color: #fff;
		background-color: #111;
	}
}

.fixed_btn {
	position: fixed;
	top: 7.5rem;
	right: 7rem;
	z-index: 1001;
	background-color: var(--white);
}

.fixed_btn a {
	padding: 1rem 1.8rem;
	border: 0.1rem solid #111111;
	font-size: 2rem;
	letter-spacing: 0.06em;
	transition: all 0.5s;
}

.privacy__box {
	max-width: 100rem;
	width: 100%;
	margin: 12rem auto;
}
.privacy__itembox {
	padding: 3rem 0;
	border-bottom: 0.1rem solid #D9D9D9;
}
.privacy__itembox:first-child {
	padding-top: 0;
}
.privacy__itembox__h2 {
	font-weight: 700;
	font-size: 2.2rem;
	color: #000;
	line-height: 2;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
}
.privacy__itembox__txt {
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 1.95;
	color: #000;
	letter-spacing: 0.1em;
}
.privacy__itembox ul {
	margin-left: 2rem;
}
.privacy__itembox ul li {
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 2;
	color: #000;
	letter-spacing: 0.1em;
    list-style: disc;
}
.privacy__itembox ul li::marker {
	font-size: 1rem;
}
.privacy__itembox a {
	text-decoration: underline;
}

.thanks {
	padding: 21rem 0 12rem;
}
.thanks__box {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.thanks__title {
	font-family: "Jost", sans-serif;
	font-weight: 500;
	font-size: 8rem;
	line-height: 1.2;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #000;
}
.thanks__txt {
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 2;
	letter-spacing: 0.06em;
	text-align: center;
	color: #000;
	margin: 6rem;
}
.thanks__toplink {
	padding: 0.8rem 2rem;
	border: 0.2rem solid #000;
	border-radius: 4rem;
	width: 20rem;
	height: 5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	font-weight: 600;
	font-size: 1.5rem;
	letter-spacing: 0.12em;
	transition: all 0.5s;
}
@media screen and (min-width: 769px) {
	.thanks__toplink:hover {
		color: #fff;
		background-color: #000;
	}
}

.newslist {
	margin: 12rem auto;
}
.newslist__categories {
	display: flex;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
	margin-bottom: 6rem;
}
.newslist__categories__item {
	padding: 0.4rem 2rem;
	background: #EEEEEE;
	border-radius: 0.4rem;
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 1.4;
	color: #111;
	display: inline-block;
	letter-spacing: normal;
	transition: all 0.5s;
}
@media screen and (min-width: 769px) {
	.newslist__categories__item:hover {
		color: #fff;
		background: #111;
	}
}
.newslist__categories__item.active {
	color: #fff;
	background: #111;
}
.newslist .news__lists {
	row-gap: 4rem;
}

.news-detail {
	margin: 6rem auto 12rem;
}
.news-detail__box {
	background: #FAFAFA;
	padding: 10rem;
}
.news-detail__head {
	margin-bottom: 4rem;
	border-bottom: 0.1rem solid #D9D9D9;
	padding-bottom: 4rem;
}
.news-detail__info {
	display: flex;
	align-items: center;
	gap: 2rem;
}
.news-detail__info .date {
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	font-size: 1.5rem;
	letter-spacing: 0.06em;
}
.news-detail__info .category {
	background: #111111;
	padding: 0.4rem 2rem;
	border-radius: 0.4rem;
	color: #fff;
	font-weight: 600;
	font-size: 1.5rem;
	letter-spacing: normal;
}
.news-detail__tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 2rem;
	margin: 2rem 0;
}
.news-detail__tags li {
	color: #666666;
	font-weight: 500;
	font-size: 1.5rem;
	letter-spacing: 0.1em;
}
.news-detail__title {
	font-weight: 700;
	font-size: 3.6rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
	color: #000;
}
.news-detail__contents p {
	margin: 2rem 0;
	color: #000;
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 2;
	letter-spacing: 0.1em;
}
.news-detail__contents h2 {
	margin-top: 6rem;
	margin-bottom: 2rem;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
	color: #000;
}
.news-detail__contents h3 {
	margin-top: 4rem;
	margin-bottom: 2rem;
	font-weight: 600;
	font-size: 2rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
	color: #000;
}
.news-detail__contents h4 {
	margin-top: 4rem;
	margin-bottom: 2rem;
	font-weight: 600;
	font-size: 1.8rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
	color: #000;
}
.news-detail__contents ul,
.news-detail__contents ol {
	margin-left: 4rem;
	list-style-type: decimal;
}
.news-detail__contents ul ul,
.news-detail__contents ul ol {
	margin-left: 2rem;
}
.news-detail__contents ol ul,
.news-detail__contents ol ol {
	margin-left: 2rem;
}

.news-detail__contents ul li,
.news-detail__contents ol li {
	margin: 2rem 0;
	color: #000;
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 2;
	letter-spacing: 0.1em;
}

.news-detail__contents ul li {
	list-style: disc;
}

.news-detail__contents ul li::marker,
.news-detail__contents ol li::marker {
	font-size: 1.5rem;
}
.news-detail__contents a {
	display: inline-block;
	text-decoration: underline;
}
.news-detail .listlink {
	margin: auto;
	text-align: center;
	margin-top: 8rem;
}
.news-detail .listlink a {
	width: 18.5rem;
	height: 5rem;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.8rem;
	border-radius: 4rem;
	border: 0.2rem solid #111;
	background-color: #fff;
	color: #111;
	font-weight: 600;
	font-size: 1.5rem;
	letter-spacing: 0.12em;
	transition: all 0.5s;
}
@media screen and (min-width: 769px) {
	.news-detail .listlink a:hover {
		color: #fff;
		background-color: #111;
	}
}

.blog-list {
	margin: 8rem auto 12rem;
}
.blog-list .bloglist {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 4.8rem;
}
.blog-list .bloglist__item {
	max-width: 36.8rem;
	width: 100%;
}
@media screen and (min-width: 769px) {
	.blog-list .bloglist__item a:hover .bloglist__item__thumb img {
		transform: scale(1.1);
	}
}
.blog-list .bloglist__item__thumb {
	position: relative;
	overflow: hidden;
	border-radius: 1rem;
}
.blog-list .bloglist__item__thumb img {
	transition: all 0.5s;
	width: 100%;
	height: auto;
	aspect-ratio: 3/2;
	-o-object-fit: cover;
	object-fit: cover;
}
.blog-list .bloglist__item__contents {
	margin-top: 2rem;
}
.blog-list .bloglist__item__title {
	color: #000;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.4;
	letter-spacing: 0.02em;
}
.blog-list .bloglist__item__tag {
	margin-top: 2rem;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 2rem;
}
.blog-list .bloglist__item__tag li {
	padding: 0.4rem 1rem;
	background-color: #111;
	color: #fff;
	border-radius: 1.4rem;
	font-weight: 600;
	font-size: 1.1rem;
	letter-spacing: 0.06em;
}
.blog-list .bloglist__item__author {
	margin-top: 2rem;
	font-family: "Jost", serif;
	font-weight: 400;
	font-size: 1.3rem;
	color: #666666;
}

body:has(.blog-fv__img) main {
	position: relative;
}
body:has(.blog-fv__img) main .blog-fv__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 75rem;
	-o-object-fit: cover;
	object-fit: cover;
	z-index: -1;
}
body:has(.blog-fv__img) main .blog-fv__img img {
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.blog-fv__img::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../img/blur.webp);
    background-size: cover;
    background-position: center;
    opacity: 1; /* ←Figmaと同じなら1 */
    z-index: 0;
}

body:has(.blog-fv__img) .header {
	background-color: transparent;
	box-shadow: none;
	transition: all 0.5s;
}
body:has(.blog-fv__img) .header.active {
	background-color: #fff;
}
body:has(.blog-fv__img) .header.active .header__logo a img {
	filter: none;
}
body:has(.blog-fv__img) .header.active .header__list a {
	color: #000;
}
body:has(.blog-fv__img) .header.active .header__item::before {
	background-color: rgb(38, 38, 38);
}
body:has(.blog-fv__img) .header.active .header__link::after {
	background-color: #000;
}
body:has(.blog-fv__img) .header__logo a img {
	filter: invert(1);
}
body:has(.blog-fv__img) .header__list a {
	color: #fff;
}
body:has(.blog-fv__img) .header__item::before {
	background-color: #fff;
}
body:has(.blog-fv__img) .header__link::after {
	background-color: #fff;
}
body:has(.blog-fv__img) .mv__subtitle,
body:has(.blog-fv__img) .mv__title {
	color: #fff;
}
body:has(.blog-fv__img) .breadcrumb__item::after {
	color: #fff;
}

body:has(.blog-fv__img) .breadcrumb__item a {
	color: #fff;
}

.blog-detail {
	margin: 8rem auto 12rem;
}
.blog-detail__box {
	padding: 10rem;
	border-radius: 2rem;
	background-color: #fff;
}
.blog-detail__head {
	padding-bottom: 4rem;
	position: relative;
	margin-bottom: 4rem;
}
.blog-detail__head::after {
	position: absolute;
	content: "";
	width: 3rem;
	height: 0.1rem;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background-color: #AAAAAA;
}
.blog-detail__title {
	color: #000;
	font-weight: 700;
	font-size: 3.6rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
	text-align: center;
}
.blog-detail__tags {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: 4rem;
}
.blog-detail__tags li {
	background-color: #111;
	color: #fff;
	border-radius: 1.4rem;
	padding: 0.4rem 1rem;
	font-weight: 600;
	font-size: 1.5rem;
	letter-spacing: 0.06em;
}
.blog-detail__author {
	font-family: "Jost", sans-serif;
	font-size: 18px;
	text-align: center;
	color: #666666;
	margin-top: 4rem;
	line-height: 1.5;
	letter-spacing: -0.02em;
}
.blog-detail__contents {
	max-width: 80rem;
	width: 100%;
	margin: auto;
}
.blog-detail__contents p {
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 1.9;
	letter-spacing: 0.06em;
	color: #000;
	margin: 2rem 0;
}
.blog-detail__contents h2 {
	margin-top: 4rem;
	margin-bottom: 2rem;
	font-weight: 700;
	font-size: 3rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
}
.blog-detail__contents h3 {
	margin-top: 4rem;
	margin-bottom: 2rem;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
}
.blog-detail__contents ul {
	margin-left: 2rem;
}
.blog-detail__contents ul li {
	list-style: disc;
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 2;
	letter-spacing: 0.06em;
	color: #000;
}
.blog-detail__contents ul li::marker {
	font-size: 1rem;
}
.blog-detail__contents img {
	margin: 3rem 0;
}
.blog-detail__contents a {
	text-decoration: underline;
	word-break: break-word;
	overflow-wrap: anywhere;
}
.blog-detail .author {
	margin: 4rem 0;
	border: 0.1rem solid #DDDDDD;
	padding: 4rem;
	display: flex;
	align-items: center;
	gap: 2rem;
}
.blog-detail .author__img {
	min-width: 12rem;
	width: 12rem;
	height: 12rem;
}
.blog-detail .author__img img {
	margin: 0;
	border-radius: 50%;
	aspect-ratio: 1/1;
	-o-object-fit: cover;
	object-fit: cover;
}
.blog-detail .author_name {
	margin: 0;
	font-weight: 500;
	font-size: 1.6rem;
	color: #000;
	letter-spacing: 0.06em;
}
.blog-detail .author_position {
	color: #777;
	font-weight: 500;
	font-size: 1.3rem;
	letter-spacing: 0.06em;
	margin-left: 2rem;
}
.blog-detail .author__intro {
	margin: 0;
	margin-top: 0.5rem;
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1.8;
	letter-spacing: 0.06em;
	color: #000;
}
.blog-detail .listlink {
	margin: auto;
	text-align: center;
	margin-top: 8rem;
}
.blog-detail .listlink a {
	width: 18.5rem;
	height: 5rem;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.8rem;
	border-radius: 4rem;
	border: 0.2rem solid #111;
	background-color: #fff;
	color: #111;
	font-weight: 600;
	font-size: 1.5rem;
	letter-spacing: 0.12em;
	transition: all 0.5s;
}
@media screen and (min-width: 769px) {
	.blog-detail .listlink a:hover {
		color: #fff;
		background-color: #111;
	}
}

.pagenavi {
	margin-top: 8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
}
.pagenavi span,
.pagenavi a {
	background: #EEEEEE;
	border-radius: 50%;
	width: 3rem;
	min-width: 3rem;
	height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 1.4rem;
	text-align: center;
	color: #111;
	transition: all 0.5s;
}
@media screen and (min-width: 769px) {
	.pagenavi span:hover,
	.pagenavi a:hover {
		background-color: #111;
		color: #fff;
	}
}
.pagenavi span.current,
.pagenavi a.current {
	background-color: #111;
	color: #fff;
}
.pagenavi span.extend,
.pagenavi a.extend {
	background: transparent;
}

.p-contact {
	position: relative;
	margin: 6rem auto 12rem;
}
.p-contact .red {
	color: #E10000;
}
.p-contact__toptxt {
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 2;
	letter-spacing: 0.06em;
}
.p-contact__box {
	margin-top: 4rem;
	padding: 10rem;
	background: #FAFAFA;
}
.p-contact__form {
	position: relative;
}
.p-contact__item {
	margin-bottom: 3rem;
}
.p-contact__item__head {
	margin-bottom: 1.2rem;
	font-weight: 600;
	font-size: 1.5rem;
	letter-spacing: 0.06em;
	line-height: 1.4;
	color: #111;
	position: relative;
}
.p-contact__item__head::after {
	content: " *";
	color: #E10000;
}
.p-contact__item__input {
	width: 100%;
}
.p-contact__item__input input,
.p-contact__item__input textarea {
	width: 100%;
	border: 1px solid #DDDDDD;
	background: #FFFFFF;
	height: 5.6rem;
	padding: 0 2rem;
	font-weight: 500;
	color: #111;
	font-size: 1.4rem;
	letter-spacing: normal;
}
.p-contact__item__input textarea {
	padding: 2rem;
}
.p-contact__item__input input::-moz-placeholder, .p-contact__item__input textarea::-moz-placeholder {
	color: #999;
}
.p-contact__item__input input::placeholder,
.p-contact__item__input textarea::placeholder {
	color: #999;
}
.p-contact__item__input textarea {
	height: 10rem;
}
.p-contact__item__input input[type=radio] {
	width: 2rem;
	height: 2rem;
	border: 1px solid #DDDDDD;
}
.p-contact__item__input input[type=checkbox] {
	width: 2rem;
	height: 2rem;
	border: 1px solid #DDDDDD;
}
.p-contact__item__input.radio {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 2rem;
}
.p-contact__item__input.radio label {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	font-weight: 500;
	color: #111;
	font-size: 1.4rem;
	letter-spacing: 0.06em;
}
.p-contact__item__input.radio.column {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 2rem;
}
.p-contact__item__input.radio.column .wpcf7-radio {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 2rem;
}
.p-contact__item__input.checkbox {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.2rem;
}
.p-contact__item__input.checkbox label {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-weight: 500;
	color: #111;
	font-size: 1.4rem;
	letter-spacing: 0.06em;
}
.p-contact__item__input .wpcf7-list-item {
	margin: 0;
}
.p-contact__item__input .wpcf7-checkbox {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 1.2rem;
}
.p-contact__item__input .wpcf7-radio {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 2rem;
}
.p-contact .privacybox {
	padding-top: 4rem;
	border-top: 0.1rem solid #D9D9D9;
	display: flex;
	align-items: center;
	justify-content: center;
}
.p-contact .privacybox label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}
.p-contact .privacybox label input {
	width: 2rem;
	height: 2rem;
	border: 1px solid #DDDDDD;
}
.p-contact .privacybox a {
	text-decoration: underline;
	display: inline;
}
.p-contact .submitbtn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-top: 4rem;
}
.p-contact .submitbtn input {
	width: 17rem;
	height: 5rem;
	border-radius: 4rem;
	padding: 0.8rem;
	border: 0.2rem solid #111;
	color: #111;
	background-color: #fff;
	transition: all 0.5s;
	font-weight: 600;
	font-size: 1.5rem;
	letter-spacing: 0.12em;
	text-align: center;
}

.p-contact__item .wpcf7-form-control-wrap {
	width: 100%;
}

.wpcf7-not-valid-tip {
	margin-top: 2rem;
}

@media screen and (min-width: 769px) {
	.p-contact .submitbtn input:hover {
		color: #fff;
		background-color: #111;
	}
}

.not_page {
	margin-top: 5rem;
	text-align: center;
}

.not_page a {
	display: block;
	margin-top: 3rem;
	text-decoration: underline;
}

@media (max-width: 768px) {
    .news__lists>li {
        width: 100%;
    }
}

@media (max-width: 768px) {
	.sp {
		display: block!important;
	}
	.pc {
		display: none!important;
	}
	p {
		font-size: 1.4rem;
	}
	.header {
		width: 100%;
	}
	.header__container {
        width: 90%;
		padding: 2rem 0;
        margin-left: 0;
        margin: auto;
	}
	.header__logo {
		position: relative;
		z-index: 10000;
	}
	.header__logo a img {
		width: 14rem;
	}
	.header__nav {
		display: none;
	}
	.header__icon {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		width: 3rem;
		height: 3rem;
	}
    .header__menu {
        padding-top: 8rem;
    }
	.header__item {
		margin-bottom: 2rem;
		margin-right: 0;
	}
    .header__item::before {
        display: none;
    }
    .header__item:last-child a {
        margin: 0 4rem;
    }
	.header__list a {
		font-size: 1.6rem;
	}
	.header__ja {
		font-family: "Noto Sans JP", sans-serif;
		font-optical-sizing: auto;
		font-weight: 500;
		font-style: normal;
	}
	.top-mv {
		padding-top: 10rem!important;
		padding-bottom: 0!important;
	}
	.top-mv__title {
		width: 100%;
		font-size: 4rem;
		margin-bottom: 3rem;
	}
    .top-mv__title span.visible:nth-child(7) {
        display: block;
        height: 0;
    }
	.top-mv__txt {
		font-size: 1.5rem;
	}
	.roop__slider {
        margin-top: 5rem;
        height: 18rem;
    }
    section {
        padding: 5rem 0!important;
    }
	.wrapper {
		width: 90%!important;
	}
    .news__lists li a {
        gap: 1rem;
    }
    .news__lists li a::before {
        top: initial;
        bottom: 1rem;
        width: 2rem;
        height: 2rem;
    }
    .news__lists__title {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2; /* 2行まで */
        overflow: hidden;
    }
    .news__lists__thumb img {
        width: 13rem;
        height: 8rem;
    }
    .btn {
        margin-top: 3rem;
    }
	.top-h2 {
		margin-bottom: 3rem;
	}
    .top-h2 span {
        font-size: 2.8rem;
    }
    .top-about__box {
        gap: 3rem;
    }
    .top-about__txt {
        width: 100%;
    }
    .top-about__txt01 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    .top-about__txt span {
        font-size: 3rem;
    }
    .top-about__video video {
        width: 100%;
        height: 28rem;
    }
    .top-service__txt01 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    .top-service__lists {
        gap: 3rem;
    }
    .top-service__lists li {
        width: 100%;
        padding: 2rem;
    }
    .top-service__lists__num {
        font-size: 3.8rem;
    }
    .top-service .roop__slider {
        margin-top: 5rem;
    }
    .blog__lists {
        gap: 3rem;
    }
    .blog__lists>li {
        width: 100%;
    }
    .blog__lists__thumb img {
        height: 23rem;
    }
    .blog__lists__contents {
        padding: 2rem;
    }
    .blog__lists__title {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        margin: 1rem 0;
    }
    .roop__txt {
        margin-top: 5rem;
    }
    .roop__txt__track {
        animation: roop__txt 20s linear infinite;
    }
    .roop__txt__item {
        font-size: 8rem;
    }
    .contact__txt01 {
        line-height: 1.5;
        margin-bottom: 3rem;
    }
	footer {
		padding: 5rem 0;
	}
    .footer__nav {
		width: 100%;
	}
	.footer__container {
		flex-direction: column;
		gap: 3rem;
	}
    .footer__logo img {
		width: 14rem;
	}
    .footer__nav {
        gap: 3rem;
    }
    .footer__nav01, .footer__nav02, .footer__nav03 {
        gap: 3rem;
    }
    .footer__nav01 {
        width: 18rem;
    }
    .footer__nav02 {
        width: 14rem;
    }
	.footer__copy {
		margin-top: 5rem;
	}


    .values__lists__box,
    .values__lists li {
        width: 100%;
    }

	.mv {
		padding: 10rem 0 0 0!important;
	}
	.mv .wrapper {
		width: 90%;
	}
	.mv__subtitle {
		font-size: 3rem;
	}
	.mv__title {
		font-size: 1.4rem;
		margin: 0;
	}
    .breadcrumb {
        bottom: -3rem;
    }
    .mv_img {
        margin-top: 5rem;
    }

    .philosophy__txt01 {
        font-size: 2.2rem;
    }

	.philosophy__lists>li {
        margin-top: 3rem;
    }

    .philosophy__lists__txt01 span {
        font-size: 2.2rem;
        line-height: 1.5;
		letter-spacing: 0.25em;
    }

    .back_line {
        padding: 0.5rem 1rem;
    }

	.back_line.sp {
		display: inline-block!important;
	}
	
    .members__lists {
        gap: 3rem 1rem;
    }

    .members__lists li {
        width: 47.5%;
    }

    .members__lists__img img {
        height: 22rem;
    }

    .members__lists__name {
        font-size: 1.4rem;
    }

    .members__lists__position {
        font-size: 1.2rem;
    }

    .overview__table th {
        width: 12rem;
        padding-right: 1rem;
    }

    .thinking__txt01 {
        font-size: 2.2rem;
    }

    .thinking__txt02 {
        margin-bottom: 5rem;
    }

    .service__roop__txt {
        height: initial;
        margin-top: 1rem;
    }

    .roop__slider__txt {
        padding: 1rem 2rem;
        font-size: 3rem;
    }

    .approach .h2_title_box {
        flex-wrap: wrap;
    }

    .approach__lists li {
        padding: 2rem;
    }

    .approach__lists__title {
        font-size: 2.2rem;
    }

    .service-domain .h2_title_box {
        flex-wrap: wrap;
    }

    .service-domain__lists>li {
        margin-bottom: 5rem;
    }

    .service-domain__lists__box {
        gap: 2rem;
    }

    .service-domain__lists__num {
        font-size: 3.5rem;
    }

    .service-domain__lists__title {
        font-size: 2.2rem;
    }

    .service-domain__lists__category {
        flex-wrap: wrap;
    }

    .service-domain__lists__category li {
        line-height: 1.5;
        padding: 0.5rem 1rem;
    }

    .service-domain__lists__img__box {
		width: calc(100% + 1.9rem);
        gap: 2rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

	.service-domain__lists__img__box.is-scroll {
		width: calc(100% + 1.9rem);
	}

	.service-domain__lists__img__box::-webkit-scrollbar {
		height: 6px;
	}

	.service-domain__lists__img__box::-webkit-scrollbar-thumb {
		background: #ccc;
		border-radius: 10px;
	}

    .service-domain__lists__img img {
        width: 30rem;
        height: 20rem;
    }

    .newslist {
        margin: 5rem auto;
    }

    .newslist__categories {
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .breadcrumb {
        position: initial;
        margin-top: 1rem;
    }

    .breadcrumb__list {
        gap: 1rem 0;
        justify-content: flex-end;
    }

    .news-detail {
        margin: 0;
    }

    .news-detail__box {
        padding: 2rem;
    }

    .news-detail__head {
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }

    .news-detail__title {
        font-size: 2.2rem;
    }

    .news-detail__tags {
        gap: 1rem;
    }

    .news-detail__contents h2 {
        margin-top: 4rem;
    }

	.news-detail__contents ul,
	.news-detail__contents ol {
		margin-left: 2rem;
	}

	.news-detail__contents ul ul,
	.news-detail__contents ul ol {
		margin-left: 2rem;
	}

	.news-detail__contents ol ul,
	.news-detail__contents ol ol {
		margin-left: 2rem;
	}

    .news-detail .listlink {
        margin-top: 5rem;
    }

    .blog-list {
        margin: 0;
    }

    .blog-list .bloglist__item__tag {
        gap: 1rem;
    }

    body:has(.blog-fv__img) main .blog-fv__img {
        height: 40rem;
    }

    .blog-fv__img img {
        height: 100%;
        object-fit: cover;
    }

    .blog-detail {
        margin: 0;
    }

    .blog-detail__box {
        padding: 2rem;
    }
    
    .blog-detail__title {
        font-size: 2.2rem;
    }

    .blog-detail__tags {
        flex-wrap: wrap;
    }

    .blog-detail .author {
        padding: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .blog-detail .author_position {
        display: block;
        margin-left: 0;
    }

    .blog-detail__contents h2 {
        font-size: 2.2rem;
    }

    body:has(.blog-fv__img) .header__bar {
        background-color: #FFF;
    }

    body:has(.blog-fv__img) .header.active .header__bar {
        background-color: #333;
    }

	.no-scroll:has(.blog-fv__img) .header__bar {
        background-color: #000;
    }

	.no-scroll:has(.blog-fv__img) .header__logo a img {
		filter: initial;
	}

	.no-scroll:has(.blog-fv__img) .header__list a {
		color: #000;
	}

    .p-contact {
        margin: 0;
    }

    .p-contact__box {
        padding: 2rem;
    }

	.faq {
		margin: 0;
	}

    .faq__inlinks {
        margin-bottom: 3rem;
    }

    .faq__box__content {
        margin-top: 0;
    }

    .faq__box {
        margin-bottom: 3rem;
    }

    .privacy__box {
        margin: 0;
    }

    .mv_img__txt {
        font-size: 5rem;
    }

    /* .roop__slider__slide img {
        width: 100%;
    } */

    .flow__itembox {
        width: 100%;
    }

    .recruit-main__logo {
        margin: 2rem 0;
    }

    .recruit-main__logo img {
        width: 80%;
        margin: auto;
    }
    
    .recruit-main__txt p {
        font-size: 1.5rem;
        margin-bottom: 3rem;
    }

    .recruit-roop {
        padding: 0!important;
    }

    .recruit-roop .roop__slider {
        margin-top: 0;
        height: 18rem;
    }

    .flow {
        margin: 0;
    }
    
    .jobdesc .h2_title_box {
        flex-direction: column;
        align-items: baseline;
    }

    .jobdesc__item {
        padding: 2rem;
    }

    .jobdesc__item__h3 {
        font-size: 2rem;
        padding: 1rem;
        text-align: left;
    }

    .jobdesc__item__morebtn {
        top: 1rem;
        transform: initial;
    }

    .jobdesc__item__bottom {
        flex-wrap: wrap;
    }

    .jobdesc__item__bottom .flexbox {
        max-width: initial;
    }

    .recruit-faq {
        margin: 0;
        padding-bottom: 0!important;
    }

    .recruit-faq .faq__box {
        margin-top: 0;
    }

    .entrylink {
        margin-bottom: 5rem;
    }

    .entrylink a {
        font-size: 3rem;
    }

    .thanks {
        padding-top: 10rem!important;
    }

    .thanks__title {
        font-size: 4rem;
    }

    .thanks__txt {
        margin: 5rem 0;
    }

	.not_page {
		margin-top: 0;
		text-align: center;
	}

	.fixed_btn {
		top: initial;
		bottom: 0;
		right: initial;
		width: 100%;
		margin-bottom: 0;
	}
	.fixed_btn a {
		width: 100%;
		border: none;
		border-top: 0.1rem solid var(--black-1);
		padding: 1.5rem
	}

	.delay02,
	.delay04,
	.delay06,
	.delay08,
	.delay10,
	.delay12,
	.delay14 {
		animation-delay: 0.2s;
	}
}