*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
	border: 0;
	font: inherit;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 400;
}

html {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
	display: block;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

caption,
th,
td {
	font-weight: normal;
	text-align: left;
	vertical-align: middle;
}

q,
blockquote {
	quotes: none;
}

q:before,
q:after {
	content: "";
	content: none;
}

blockquote:before,
blockquote:after {
	content: "";
	content: none;
}

/*------------------------------------------------------------------
#カラー
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
#フォント
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
#マップ型変数breakpointsを定義
-------------------------------------------------------------------*/

body {
	color: #111;
	font-family: "Noto Serif JP", serif;
	overflow-wrap: break-word;
	overflow-x: hidden;
}

img {
	border: none;
	height: auto;
	max-width: 100%;
	vertical-align: bottom;
}

a {
	color: inherit;
	cursor: pointer;
	text-decoration: none;
}

/*------------------------------------------------------------------
#header
-------------------------------------------------------------------*/

.header {
	background-color: rgba(255, 255, 255, 0.6);
	height: 80px;
	left: 0;
	position: fixed;
	top: 0;
	transition: top 0.5s linear;
	width: 100%;
	z-index: 100;
}

.header.hide {
	top: -80px;
}

.header__inner {
	display: flex;
	height: inherit;
	margin-inline: auto;
	max-width: 1480px;
	padding-inline: 20px;
}

.header__left {
	height: inherit;
}

.header__logo {
	max-width: 200px;
}

.header__logo img {
	-o-object-fit: cover;
	aspect-ratio: 200/80;
	object-fit: cover;
}

.header__logo-link {
	display: block;
	transition: opacity 0.3s;
}

.header__logo-link:hover {
	opacity: 0.7;
}

.header__right {
	display: flex;
	height: inherit;
	margin-left: auto;
}

.header-nav {
	height: inherit;
}

.header-nav__list {
	display: flex;
	gap: clamp(10px, 4vw, 50px);
	height: inherit;
}

.header-nav__item {
	height: inherit;
}

.header-nav__link {
	align-items: center;
	color: #393939;
	display: flex;
	font-family: "Playfair Display", serif;
	font-size: clamp(12px, 1.6vw, 18px);
	height: inherit;
	position: relative;
	transition: transform 0.3s;
}

.header-nav__link::after {
	background: #000;
	bottom: 20px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform 0.3s;
	width: 100%;
}

.header-nav__link:hover::after {
	transform: scale(1, 1);
	transform-origin: left top;
}

.header-nav__link.current::after {
	transform: scale(1, 1);
	transform-origin: left top;
}

.header__btn-Link {
	align-items: center;
	background-color: #011950;
	color: #fff;
	display: flex;
	font-weight: bold;
	height: inherit;
	padding: 20px 30px;
	position: relative;
	transition: color 0.3s;
	width: 170px;
	z-index: 1;
}

.header__btn-Link::before {
	background-color: #fff;
	content: "";
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transform: scaleX(0);
	transform-origin: 100% 0%;
	transition: background-color 0.3s, transform 0.3s;
	width: 100%;
	z-index: -1;
}

.header__btn-Link svg {
	height: 18px;
	width: 22px;
}

.header__btn-Link path {
	fill: #fff;
	transition: fill 0.3s;
}

.header__btn-Link span {
	font-family: "Playfair Display", serif;
	margin-left: 10px;
}

.header__btn-Link:hover {
	color: #011950;
}

.header__btn-Link:hover::before {
	transform: scaleX(1);
	transform-origin: 0% 100%;
}

.header__btn-Link:hover path {
	fill: #011950;
}

/*------------------------------------------------------------------
#footer
-------------------------------------------------------------------*/

.footer {
	background: #001135;
}

.footer__inner {
	background: #001135;
	display: flex;
	flex-direction: row-reverse;
	margin-inline: auto;
	max-width: 1140px;
	padding: 60px 20px;
}

.footer-nav {
	width: 25%;
}

.footer-nav__list {
	text-align: left;
}

.footer-nav__item {
	margin-top: 20px;
}

.footer-nav__item:first-child {
	margin-top: 0;
}

.footer-nav__link {
	color: #fff;
	line-height: 1.3;
	transition: opacity 0.3s;
}

.footer-nav__link:hover {
	opacity: 0.7;
}

.footer-info {
	width: 75%;
}

.footer-info__head {
	align-items: center;
	display: flex;
	margin-top: 40px;
}

.footer__logo {
	margin-right: 60px;
}

.footer__logo a {
	display: block;
	max-width: 245px;
	transition: opacity 0.3s;
	width: 100%;
}

.footer__logo a:hover {
	opacity: 0.7;
}

.footer__logo a img {
	border: none;
	height: auto;
	max-width: 100%;
	vertical-align: top;
}

.footer__sns {
	align-items: center;
	display: flex;
	gap: 30px;
	justify-content: center;
}

.sns-icon__link {
	align-items: center;
	display: flex;
	height: 22px;
	justify-content: center;
	transition: opacity 0.3s;
	width: 22px;
}

.sns-icon__link img {
	display: block;
	height: auto;
	max-width: 100%;
	width: 100%;
}

.sns-icon__link:hover {
	opacity: 0.7;
}

.footer-copyright {
	margin-top: 20px;
}

.footer-copyright__text {
	color: #fff;
	display: block;
	font-size: 12px;
}

/*------------------------------------------------------------------
#drawer
-------------------------------------------------------------------*/

.drawer-icon {
	background: none;
	border: 2px solid #333;
	border-radius: 50%;
	display: none;
	height: 60px;
	position: fixed;
	right: 20px;
	top: 10px;
	transition: transform 0.5s;
	width: 60px;
	z-index: 500;
}

.drawer-icon.is-active {
	border: 2px solid #fff;
}

.drawer-icon.is-active::after {
	color: #fff;
	content: "CLOSE";
}

.drawer-icon.is-active .drawer-icon__line {
	background-color: transparent;
}

.drawer-icon.is-active .drawer-icon__line::before {
	background: #fff;
	top: 0;
	transform: rotate(-45deg);
}

.drawer-icon.is-active .drawer-icon__line::after {
	background: #fff;
	top: 0;
	transform: rotate(45deg);
}

.drawer-icon::after {
	color: #333;
	content: "MENU";
	display: block;
	display: block;
	font-family: "Playfair Display", serif;
	font-size: 15px;
	letter-spacing: 0.2em;
	position: absolute;
	top: 60px;
}

.drawer-icon__line {
	background-color: #333;
	display: inline-block;
	height: 2px;
	inset: 0;
	margin: auto;
	position: absolute;
	transition: transform 0.5s;
	width: 30px;
}

.drawer-icon__line::before,
.drawer-icon__line::after {
	background: #333;
	content: "";
	display: inline-block;
	height: 100%;
	inset: 0;
	position: absolute;
	transition: transform 0.5s;
	width: 100%;
}

.drawer-icon__line::before {
	top: 10px;
}

.drawer-icon__line::after {
	top: -10px;
}

.drawer__content {
	background: #001135;
	height: 100vh;
	opacity: 0;
	overflow: auto;
	pointer-events: none;
	position: fixed;
	right: 0;
	top: 0;
	transition: opacity 0.5s;
	width: 100%;
	z-index: 400;
}

.drawer__content.is-active {
	opacity: 1;
	pointer-events: auto;
}

.drawer__inner {
	margin: 0 auto;
	padding: 0px 20px;
}

.drawer__logo {
	width: 110px;
}

.drawer__logo img {
	-o-object-fit: cover;
	aspect-ratio: 110/80;
	object-fit: cover;
}

.drawer__logo-link {
	display: block;
}

.drawer-nav__list {
	margin: 0 auto;
	padding: 40px 0;
}

.drawer-nav__item {
	border-bottom: 2px dotted #fff;
	margin: 0 auto;
}

.drawer-nav__link {
	color: #fff;
	display: block;
	padding: 18px 15px;
}

.drawer__sns-list {
	align-items: center;
	display: flex;
	gap: 30px;
	justify-content: center;
	margin-top: 10px;
	padding: 0 50px;
}

.drawer__sns-link img {
	height: 22px;
	width: 22px;
}

.lower-top {
	height: 520px;
	margin: 120px auto 0;
	max-width: 1920px;
	padding-left: 60px;
	position: relative;
}

.lower-top::before {
	bottom: 0;
	content: "";
	height: 80%;
	position: absolute;
	right: 20px;
	width: 88%;
	z-index: -1;
}

.lower-top-about::before {
	background: url(../img/lower-top-about.jpg) no-repeat center center/cover;
}

.lower-top-service::before {
	background: url(../img/lower-top-service.jpg) no-repeat center center/cover;
}

.lower-top-news::before {
	background: url(../img/lower-top-news.jpg) no-repeat center center/cover;
}

.lower-top-works::before {
	background: url(../img/lower-top-works.jpg) no-repeat center center/cover;
}

.lower-top-contact::before {
	background: url(../img/lower-top-contact.jpg) no-repeat center center/cover;
}

.lower-top__heading {
	background: #fff;
	color: #000;
	padding: 30px 120px 50px 100px;
	width: -moz-fit-content;
	width: fit-content;
}

.lower-top__title-en {
	display: block;
	font-family: "Playfair Display", serif;
	font-size: 100px;
	font-weight: bold;
	line-height: 1.5;
}

.lower-top__title-ja {
	display: block;
	font-size: 20px;
	font-weight: bold;
}

/*------------------------------------------------------------------
#top
-------------------------------------------------------------------*/

.section__titleWrap--left {
	text-align: left;
}

.section__titleWrap--center {
	text-align: center;
}

.section__titleWrap--right {
	text-align: right;
}

.section__title {
	display: inline-block;
	font-family: "Playfair Display", serif;
	font-size: 70px;
	font-weight: bold;
	line-height: 1;
}

/*------------------------------------------------------------------
#about
-------------------------------------------------------------------*/

.about__title {
	width: -moz-fit-content;
	width: fit-content;
}

.about__title-ja {
	color: #001e63;
	display: block;
}

.about__title-en {
	display: block;
	font-family: "Playfair Display", serif;
	font-size: 40px;
	font-weight: bold;
	line-height: 1;
	margin-top: 10px;
	padding-right: 80px;
	position: relative;
}

.about__title-en::after {
	background: transparent url(../img/title-bar.png) no-repeat center center/contain;
	content: "";
	height: 2px;
	position: absolute;
	right: 0;
	top: 55%;
	transform: translateY(-50%);
	width: 60px;
}

/*------------------------------------------------------------------
#works
-------------------------------------------------------------------*/

.works-category__list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.works__category {
	background: #f3f3f3;
	border: 1px solid #707070;
	color: #707070;
	display: inline-block;
	font-size: 11px;
	height: 25px;
	line-height: 1;
	padding: 5px 18px;
	text-align: center;
}

.low-works__category {
	background: #F3F3F3;
	color: #626262;
}

/*------------------------------------------------------------------
#news
-------------------------------------------------------------------*/

.news-category__list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.news__category {
	background: #fff;
	color: #626262;
	font-size: 11px;
	height: 25px;
	padding: 5px 18px;
}

.low-news__category {
	background: #F3F3F3;
	color: #626262;
}

.news-single__category {
	background: #f8f8f8;
	color: #626262;
}

.button {
	color: #001e63;
	cursor: pointer;
	display: inline-block;
	font-size: 14px;
	line-height: 1;
	padding-right: 15px;
	position: relative;
	transition: transform 0.3s;
}

.button::before {
	background: #001e63;
	bottom: -5px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform 0.3s;
	width: 100%;
}

.button:hover::before {
	transform: scale(1, 1);
	transform-origin: left top;
}

.button::after {
	background: transparent url(../img/arrow-forward-blue.png) no-repeat center center/contain;
	content: "";
	height: 8px;
	position: absolute;
	right: 3px;
	top: 50%;
	transform: translateY(-50%);
	transition: right 0.3s;
	width: 5px;
}

.button:hover::after {
	background: url(../img/arrow-forward-blue.png) no-repeat center center/cover;
	right: 0px;
}

.button--border {
	border: 1px solid #011950;
	border-radius: 5px;
	padding: 14px 25px 14px 20px;
}

.button--border::before {
	display: none;
}

.button--border::after {
	right: 12px;
}

.button--border:hover::after {
	right: 8px;
}

/*------------------------------------------------------------------
#breadcrumb
-------------------------------------------------------------------*/

.breadcrumb {
	color: #c2c2c2;
	font-size: 16px;
	margin: 20px auto 0;
	max-width: 1260px;
	padding: 0 60px;
	text-align: right;
}

.breadcrumb .current-item {
	color: #242424;
}

.breadcrumb-single {
	margin: 150px auto 0;
}

.breadcrumb span[property=name] {
	display: inline-block;
	max-width: 100px;
	overflow: hidden;
	padding: 0;
	text-overflow: ellipsis;
	vertical-align: top;
	white-space: nowrap;
}

.breadcrumb span[property=name]:hover {
	max-width: none;
}

/*------------------------------------------------------------------
#TOPへ戻るボタン
-------------------------------------------------------------------*/

.pagetop {
	background: rgba(255, 255, 255, 0.8);
	border: solid 1px #3e3e3e;
	bottom: 20px;
	display: block;
	height: 50px;
	opacity: 0;
	position: fixed;
	right: 20px;
	transition: opacity 0.5s, visibility 0.5s;
	visibility: hidden;
	width: 50px;
	z-index: 10;
}

.pagetop:after {
	border-right: solid 3px #3e3e3e;
	border-top: solid 3px #3e3e3e;
	content: "";
	display: block;
	height: 15px;
	left: 15px;
	position: absolute;
	top: 20px;
	transform: rotate(-45deg);
	width: 15px;
}

.pagetop.is-show {
	opacity: 1;
	visibility: visible;
}

/*------------------------------------------------------------------
#pagination
-------------------------------------------------------------------*/

.l-pager {
	margin-top: 60px;
}

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

.page-numbers {
	align-items: center;
	background: #e9eeef;
	color: #242424;
	display: flex;
	font-size: 14px;
	height: 40px;
	justify-content: center;
	line-height: 1;
	margin: 0 5px;
	transition: background 0.3s, color 0.3s;
	white-space: nowrap;
	width: 40px;
}

.page-numbers:hover {
	background: #001e63;
	color: #fff;
}

.page-numbers.current {
	background: #001e63;
	color: #fff;
}

.page-numbers.dots {
	background: #e9eeef;
	color: #242424;
}

.prev.page-numbers,
.next.page-numbers {
	background: transparent;
}

.prev-content,
.next-content {
	height: 18px;
	line-height: 1;
	transition: opacity 0.3s;
	width: 11px;
}

.prev-content:hover,
.next-content:hover {
	opacity: 0.8;
}

.prev-content {
	background: url(../img/Icon-navigate-left.png) no-repeat center center/cover;
}

.next-content {
	background: url(../img/Icon-navigate-right.png) no-repeat center center/cover;
}

/*------------------------------------------------------------------
#前の記事・次の記事 
-------------------------------------------------------------------*/

.single-pager {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
}

.single-pager__prev a,
.single-pager__next a {
	border: 1px solid #001e63;
	border-radius: 4px;
	color: #001e63;
	display: block;
	font-size: 14px;
	position: relative;
}

.single-pager__prev a {
	padding: 12px 25px 12px 40px;
}

.single-pager__prev a::before {
	background: url(../img/arrow-forward-blue-left.png) no-repeat center center/cover;
	content: "";
	height: 9px;
	left: 25px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: left 0.3s;
	width: 5px;
}

.single-pager__prev a:hover::before {
	left: 20px;
}

.single-pager__next a {
	padding: 12px 40px 12px 25px;
}

.single-pager__next a::before {
	background: url(../img/arrow-forward-blue.png) no-repeat center center/cover;
	content: "";
	height: 9px;
	position: absolute;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
	transition: right 0.3s;
	width: 5px;
}

.single-pager__next a:hover::before {
	right: 20px;
}

/*------------------------------------------------------------------
#mv
-------------------------------------------------------------------*/

.l-top-bg {
	position: relative;
}

.l-top-bg::before {
	background: #f8f8f8;
	content: "";
	height: 85%;
	left: 0;
	position: absolute;
	top: 0;
	width: calc(50vw + 200px);
	z-index: -1;
}

/*------------------------------------------------------------------
#top-swiper
-------------------------------------------------------------------*/

.top-fv {
	display: flex;
	margin: 100px auto 0;
	max-width: 1960px;
	padding-inline: 20px;
	position: relative;
}

.fv__swiper {
	max-height: 700px;
	overflow: hidden;
	width: 78%;
}

.fv__slide {
	position: relative;
}

.fv__img img {
	-o-object-fit: cover;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.top-fv__right {
	position: relative;
	width: 22%;
}

.top-fv__title {
	display: flex;
	flex-direction: row-reverse;
	gap: 30px;
	left: 50%;
	margin-top: 150px;
	position: absolute;
	transform: translateX(-50%);
}

.top-fv__title-wrap {
	color: #000;
	display: block;
	font-size: clamp(16px, 5vw, 60px);
	font-weight: bold;
	line-height: 1;
	writing-mode: vertical-rl;
}

.top-fv__title-wrap span {
	animation: fade 1s forwards;
	opacity: 0;
	position: relative;
}

.top-fv__title-wrap1 span:nth-child(1) {
	animation-delay: 2.2s;
}

.top-fv__title-wrap1 span:nth-child(2) {
	animation-delay: 2.4s;
}

.top-fv__title-wrap1 span:nth-child(3) {
	animation-delay: 2.6s;
}

.top-fv__title-wrap1 span:nth-child(4) {
	animation-delay: 2.8s;
}

.top-fv__title-wrap2 span:nth-child(1) {
	animation-delay: 3s;
}

.top-fv__title-wrap2 span:nth-child(2) {
	animation-delay: 3.2s;
}

.top-fv__title-wrap2 span:nth-child(3) {
	animation-delay: 3.4s;
}

.top-fv__title-wrap2 span:nth-child(4) {
	animation-delay: 3.6s;
}

.top-fv__title-wrap2 span:nth-child(5) {
	animation-delay: 3.8s;
}

.top-fv__title-wrap2 span:nth-child(6) {
	animation-delay: 4s;
}

.top-fv__title-wrap2 span:nth-child(7) {
	animation-delay: 4.2s;
}

/*------------------------------------------------------------------
#top__info
-------------------------------------------------------------------*/

.top-info {
	margin: 60px auto 0;
	max-width: 1480px;
	overflow: hidden;
	padding-inline: 20px;
}

.top-info__text {
	animation: slide 15s linear infinite;
	color: #011950;
	display: inline-block;
	font-family: "Playfair Display", serif;
	font-size: 150px;
	font-weight: bold;
	line-height: 1.45;
	padding-left: 100%;
	white-space: nowrap;
}

/*------------------------------------------------------------------
#top-about
-------------------------------------------------------------------*/

.top-about {
	margin-top: 50px;
}

.top-about__inner {
	display: flex;
	gap: 60px;
	margin-inline: auto;
	max-width: 1140px;
	padding-inline: 20px;
}

.top-about__video {
	width: 50%;
}

.top-about__video video {
	-o-object-fit: cover;
	filter: brightness(120%);
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.top-about__content {
	width: 44.5%;
}

.top-about__title {
	font-family: "Playfair Display", serif;
	font-size: 50px;
	font-weight: bold;
	line-height: 2;
	margin-top: 10%;
}

.top-about__text {
	line-height: 2;
	margin-top: 20px;
}

.top-about__btn {
	margin-top: 25px;
	text-align: right;
}

/*------------------------------------------------------------------
#service
-------------------------------------------------------------------*/

.top-service {
	margin-top: 120px;
	padding-bottom: 120px;
}

.top-service__inner {
	margin-inline: auto;
	max-width: 1140px;
	padding-inline: 20px;
}

.top-service__titleWrap {
	text-align: right;
}

.top-service__list {
	display: flex;
	gap: 18px;
	margin-top: 40px;
}

.top-service__item {
	display: flex;
	flex-direction: column;
	position: relative;
}

.top-service__subtitle {
	color: #fff;
	font-weight: bold;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 170px;
}

.top-service__subtitle-en {
	display: block;
}

.top-service__subtitle-ja {
	display: block;
	font-size: 26px;
	margin-top: 10px;
}

.top-service__img {
	border-radius: 5px;
	height: 170px;
	opacity: 0;
	overflow: hidden;
	position: relative;
}

.top-service__img::before {
	content: "";
	display: block;
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
}

.top-service__img01::before {
	background: url(../img/top-service01.jpg) no-repeat center center/cover;
}

.top-service__img02::before {
	background: url(../img/top-service02.jpg) no-repeat center center/cover;
}

.top-service__img03::before {
	background: url(../img/top-service03.jpg) no-repeat center center/cover;
}

.top-service__text {
	line-height: 2.2;
	margin-top: 20px;
}

.top-service__btn {
	margin-top: auto;
	padding-top: 15px;
}

/*------------------------------------------------------------------
#works
-------------------------------------------------------------------*/

.top-works {
	background: #f8f8f8;
	padding-top: 140px;
}

.top-works__inner {
	margin-inline: auto;
	max-width: 1140px;
	padding-inline: 20px;
}

.top-works__list {
	background: #fff;
	border-radius: 3px;
	margin-top: 40px;
	padding-inline: 40px;
}

.top-works__link {
	border-bottom: 1px solid #e2e2e2;
	display: flex;
	gap: 50px;
	margin-inline: auto;
	padding-block: 40px;
}

.top-works__link:hover .top-works__subtitle span {
	background-size: 100% 1px;
}

.top-works__link:hover .top-works__img img {
	transform: scale(1.05);
}

.top-works__img {
	overflow: hidden;
	width: 290px;
}

.top-works__img img {
	-o-object-fit: cover;
	aspect-ratio: 29/23;
	object-fit: cover;
	transition: transform 1s;
}

.top-works__body {
	display: flex;
	flex-direction: column;
	width: calc(100% - 340px);
}

.top-works__subtitle {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	margin-top: 30px;
	overflow: hidden;
}

.top-works__subtitle span {
	background-image: linear-gradient(90deg, #000, #000); /* 線の色 */
	background-position: left bottom; /* 線の起点を左・下に設定 */
	background-repeat: no-repeat;
	background-size: 0 1px; /* 線の横幅を0、縦幅を1pxに */
	color: #000; /* 文字色 */
	display: inline;
	font-size: 24px;
	line-height: 1.6;
	text-decoration: none; /* デフォルトの下線を非表示にする */
	transition: background-size 0.4s; /* 線を伸ばすアニメーション実行時間を指定 */
}

.top-works__text {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	color: #626262;
	display: -webkit-box;
	line-height: 2.37;
	margin-top: 20px;
	overflow: hidden;
}

.top-works__time {
	color: #a9a9a9;
	display: block;
	font-size: 12px;
	font-weight: bold;
	margin-top: auto;
}

.top-works__btn {
	padding-block: 40px;
	text-align: right;
}

/*------------------------------------------------------------------
#news
-------------------------------------------------------------------*/

.news {
	background: #f8f8f8;
	padding-bottom: 40px;
	padding-top: 110px;
}

.news__inner {
	display: flex;
	margin-inline: auto;
	max-width: 1140px;
	padding-inline: 20px;
}

.news__left {
	border-right: 1px solid #e2e2e2;
	width: 26%;
}

.news-nav {
	margin-top: 70px;
}

.news-nav__list {
	margin-top: 30px;
}

.news-nav__list:first-child {
	margin-top: 0;
}

.news-nav__link {
	color: #a9a9a9;
	display: block;
	font-size: 14px;
	padding-left: 25px;
	position: relative;
}

.news-nav__link::before {
	background: url(../img/car.png) no-repeat center center/cover;
	content: "";
	display: none;
	height: 20px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
}

.news-nav__link.current {
	color: #000;
}

.news-nav__link.current::before {
	display: block;
}

.news-all__list {
	margin-top: 20px;
	padding-left: 25px;
}

.news__right {
	width: 74%;
}

.news__list {
	margin-left: 60px;
}

.news__link {
	border-bottom: 1px solid #e2e2e2;
	display: block;
	padding-block: 30px;
}

.news__link:hover .news__subtitle span {
	background-size: 100% 1px; /* 線の横幅を100%にする */
}

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

.news__time {
	color: #a9a9a9;
	display: block;
	font-size: 12px;
	font-weight: bold;
	margin-right: 20px;
}

.news__subtitle {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	margin-top: 20px;
	overflow: hidden;
}

.news__subtitle span {
	background-image: linear-gradient(90deg, #000, #000); /* 線の色 */
	background-position: left bottom; /* 線の起点を左・下に設定 */
	background-repeat: no-repeat;
	background-size: 0 1px; /* 線の横幅を0、縦幅を1pxに */
	color: #000; /* 文字色 */
	display: inline;
	line-height: 2.37;
	text-decoration: none; /* デフォルトの下線を非表示にする */
	transition: background-size 0.4s; /* 線を伸ばすアニメーション実行時間を指定 */
}

.news__btn {
	padding-block: 40px;
	text-align: right;
}

.news-search {
	margin-top: 50px;
}

.news-search__title {
	font-family: "Playfair Display", serif;
	font-size: 18px;
	margin-bottom: 10px;
}

.search-form {
	position: relative;
}

.search-field {
	background-color: transparent;
	border: solid 1px #ccc;
	border-radius: 50px 0 0 50px;
	font-family: "Playfair Display", serif;
	font-size: 14px;
	height: 38px;
	outline: none;
	padding: 2px 15px;
	width: 80%;
}

.search-submit {
	background: url(../img/search.png) no-repeat center center/20px 20px;
	background-color: #011950;
	border-radius: 0 50px 50px 0;
	content: "";
	cursor: pointer;
	height: 38px;
	position: absolute;
	width: 40px;
}

/*------------------------------------------------------------------
#slider
-------------------------------------------------------------------*/

.gallery {
	padding-bottom: 120px;
	padding-top: 120px;
}

.gallery__swiper {
	height: 100%;
	overflow: hidden;
	width: 100%;
}

.gallery__wrapper {
	margin-inline: auto;
	transition-timing-function: linear !important;
}

.gallery__img {
	position: relative;
}

.gallery__img::after {
	align-items: center;
	background: rgba(255, 255, 255, 0.7);
	color: #3e3a39;
	content: "VIEW MORE";
	display: flex;
	font-family: "Playfair Display", serif;
	font-size: 1.4rem;
	height: 100%;
	justify-content: center;
	left: 0;
	letter-spacing: 0.2em;
	opacity: 0;
	position: absolute;
	top: 0;
	transform: translate(0, 1rem);
	transition: all 0.5s;
	width: 100%;
	z-index: 2;
}

.gallery__img:hover::after {
	opacity: 1;
	transform: none;
}

.gallery__body {
	margin-top: 15px;
}

.gallery__title {
	color: #3e3a39;
	font-size: 26px;
}

.gallery__text {
	color: #3e3a39;
	font-size: 16px;
	margin-top: 10px;
}

/*------------------------------------------------------------------
#top-contact
-------------------------------------------------------------------*/

.top-contact {
	background: #011950;
}

.top-contact__inner {
	display: flex;
	flex-direction: row-reverse;
	margin-inline: auto;
	max-width: 100%;
	width: 1440px;
}

.top-contact__content {
	background: #011950;
	padding: 80px 0;
	text-align: center;
	width: 45%;
}

.top-contact__text {
	color: #fff;
	font-size: 18px;
	line-height: 1.65;
}

.top-contact__btnWrap {
	font-size: 22px;
	margin-top: 25px;
}

.top-contact__btn-mail,
.top-contact__btn-tel {
	align-items: center;
	background: #011950;
	border: 1px solid #fff;
	border-radius: 4px;
	color: #fff;
	display: flex;
	justify-content: center;
	margin: 25px auto 0;
	max-width: 235px;
	padding: 20px 0px;
	transition: color 0.3s, background 0.3s;
	width: 100%;
}

.top-contact__btn-mail path,
.top-contact__btn-tel path {
	transition: fill 0.3s;
}

.top-contact__btn-mail:hover,
.top-contact__btn-tel:hover {
	background: #fff;
	color: #011950;
}

.top-contact__btn-mail:hover path,
.top-contact__btn-tel:hover path {
	fill: #011950;
}

.top-contact__btn-mail span,
.top-contact__btn-tel span {
	margin-left: 16px;
}

.top-contact__btn-mail svg,
.top-contact__btn-tel svg {
	height: 24px;
	width: 24px;
}

.top-contact__info {
	color: #fff;
	font-size: 14px;
	line-height: 2;
	margin-top: 15px;
}

.top-contact__img {
	width: 55%;
}

.top-contact__img img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

/*------------------------------------------------------------------
#main
-------------------------------------------------------------------*/

.lower-main {
	padding-bottom: 120px;
	padding-top: 70px;
}

.lower-main__inner {
	margin-inline: auto;
	max-width: 880px;
	padding-inline: 20px;
}

.lower-main__list {
	align-items: center;
	display: flex;
	gap: 120px;
	justify-content: center;
}

.lower-main__link {
	color: #011950;
	cursor: pointer;
	padding-right: 20px;
	position: relative;
	transition: opacity 0.3s;
}

.lower-main__link:hover {
	opacity: 0.7;
}

.lower-main__link::after {
	background: transparent url(../img/Icon-arrow-down-blue.png) no-repeat center center/contain;
	content: "";
	height: 5px;
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
}

.lower-main__title {
	font-size: 40px;
	font-weight: bold;
	line-height: 1.5;
	margin-top: 100px;
}

.lower-main__text {
	line-height: 2.3;
	margin-top: 40px;
}

/*------------------------------------------------------------------
#Philosophy
-------------------------------------------------------------------*/

.about-Philosophy__inner {
	display: flex;
	margin-inline: auto;
	max-width: 1140px;
	padding-inline: 20px;
}

.about-Philosophy__content {
	background: #f8f8f8;
	margin-right: -200px;
	padding: 50px 250px 50px 70px;
	position: relative;
	width: 100%;
}

.about-Philosophy__text {
	line-height: 2.37;
	margin-top: 60px;
}

.about-Philosophy__text-name {
	margin-top: 40px;
	text-align: right;
}

.about-Philosophy__img {
	position: relative;
	top: 150px;
	width: 370px;
	z-index: 1;
}

/*------------------------------------------------------------------
#グラフ・図
-------------------------------------------------------------------*/

.about-chart {
	padding-bottom: 50px;
	padding-top: 50px;
}

.about-chart.first {
	background: #f8f8f8;
	margin-top: 150px;
}

.about-chart__inner {
	align-items: center;
	display: flex;
	gap: 20px;
	margin: 0 auto;
	max-width: 1200px;
	padding-inline: 20px;
}

.flex-reverse {
	flex-direction: row-reverse;
}

.about-chart__content {
	font-family: "Noto Serif JP", serif;
	width: 65%;
}

.about-chart__title {
	font-family: "Noto Serif JP", serif;
	font-size: 30px;
	font-weight: 600;
	line-height: 1.5;
}

.about-chart__text {
	font-size: 18px;
	line-height: 1.8;
	margin-top: 40px;
}

/* Contents */

.home-chart img {
	width: 100%;
}

.home-chart p {
	text-align: center;
}

/* グラフの文字 */

.ct-label {
	fill: #fff;
	font-size: 16px;
}

/* 円グラフ */

.ct-series-a .ct-slice-pie {
	fill: #2d3374;
}

.ct-series-b .ct-slice-pie {
	fill: #3a7edf;
}

.ct-series-c .ct-slice-pie {
	fill: #9bcbf8;
}

.ct-series-d .ct-slice-pie {
	fill: #bbb;
}

/* 棒グラフ */

.ct-series-a .ct-bar {
	stroke: #2d3374;
}

.ct-bar {
	stroke-width: 10%;
}

/*------------------------------------------------------------------
#Company
-------------------------------------------------------------------*/

.about-Company {
	background: #f8f8f8;
	padding-bottom: 120px;
	padding-top: 70px;
}

.about-Company__inner {
	margin-inline: auto;
	max-width: 1140px;
	padding-inline: 20px;
}

.about-Company__info {
	margin-top: 30px;
}

.about-Company__info-row {
	border-bottom: 1px solid #e2e2e2;
	display: flex;
	line-height: 2.7;
	padding: 30px 0;
}

.about-Company__left {
	width: 170px;
}

.about-Company__right {
	width: calc(100% - 170px);
}

/*------------------------------------------------------------------
#Access
-------------------------------------------------------------------*/

.about-Access {
	padding-bottom: 120px;
	padding-top: 120px;
}

.about-Access__inner {
	margin-inline: auto;
	max-width: 1140px;
	padding-inline: 20px;
}

.about-Access__adress {
	margin-top: 38px;
}

.about-Access__map {
	margin-top: 40px;
}

.about-Access__iframe-wrap iframe {
	-o-object-fit: cover;
	aspect-ratio: 11/4;
	object-fit: cover;
	width: 100%;
}

/*------------------------------------------------------------------
#search
-------------------------------------------------------------------*/

.search-titleWrap {
	margin-bottom: 30px;
	text-align: center;
}

.search-title {
	font-size: 40px;
}

.search-title span {
	color: #011950;
}

.search-text {
	font-size: 20px;
	margin-top: 100px;
	text-align: center;
}

/*------------------------------------------------------------------
#404
-------------------------------------------------------------------*/

.entry-404 {
	padding: 300px 20px 200px;
}

.entry-404__inner {
	background: url(../img/not-found.jpg) no-repeat center center/cover;
	height: 600px;
	margin-inline: auto;
	max-width: 1480px;
	padding-inline: 20px;
	position: relative;
}

.entry-404__content {
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.entry-404__title {
	color: #fff;
	font-size: 70px;
	font-weight: bold;
	line-height: 1.5;
}

.entry-404__text {
	color: #fff;
	line-height: 2.2;
	margin-top: 20px;
}

.entry-404__btnWrap {
	margin: 20px auto 0;
	text-align: left;
}

.entry-404__btn {
	border: 1px solid #fff;
	border-radius: 4px;
	color: #fff;
	display: inline-block;
	font-size: 14px;
	max-width: 100%;
	padding-bottom: 14px;
	padding-left: 35px;
	padding-top: 12px;
	position: relative;
	text-align: center;
	width: 140px;
}

.entry-404__btn::after {
	background: url(../img/arrow-forward-white-left.png) no-repeat center center/cover;
	content: "";
	height: 9px;
	left: 30px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: left 0.3s;
	width: 6px;
}

.entry-404__btn:hover::after {
	left: 25px;
}

.contact {
	padding-bottom: 120px;
	padding-top: 60px;
}

.contact__inner {
	margin-inline: auto;
	max-width: 680px;
	padding-inline: 20px;
}

.contact__info {
	line-height: 2.2;
	text-align: left;
}

.contact__area {
	padding-top: 20px;
}

.contact__item {
	margin-top: 40px;
}

.contact__top {
	padding-bottom: 10px;
	width: 100%;
}

.contact__text {
	font-size: 15px;
	padding-right: 10px;
	position: relative;
}

.contact__text::after {
	background: transparent url(../img/stare-red.png) no-repeat center center/contain;
	content: "";
	height: 21px;
	position: absolute;
	right: 0px;
	top: 50%;
	transform: translateY(-50%);
	width: 7px;
}

.contact__description {
	font-size: 14px;
	font-weight: 300;
	margin-left: 20px;
}

.contact__bottom {
	width: 100%;
}

.contact__bottom [type=text],
.contact__bottom [type=email],
.contact__bottom [type=tel] {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: transparent;
	background-image: none;
	border: 1px solid #e2e2e2;
	border-radius: 5px;
	color: inherit;
	font-family: inherit;
	font-size: 14px;
	padding: 15px;
	width: 100%;
}

.contact__bottom [type=text]::-moz-placeholder,
.contact__bottom [type=email]::-moz-placeholder,
.contact__bottom [type=tel]::-moz-placeholder {
	color: #a9a9a9;
}

.contact__bottom [type=text]::placeholder,
.contact__bottom [type=email]::placeholder,
.contact__bottom [type=tel]::placeholder {
	color: #a9a9a9;
}

.contact__bottom [type=text]:hover,
.contact__bottom [type=text]:focus,
.contact__bottom [type=email]:hover,
.contact__bottom [type=email]:focus,
.contact__bottom [type=tel]:hover,
.contact__bottom [type=tel]:focus {
	box-shadow: 0 0 5px rgba(0, 17, 53, 0.7);
	outline: none;
}

.contact__bottom select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background: transparent url(../img/select-drop-down.png) no-repeat center right 10px/12px 8px;
	border: 1px solid #e2e2e2;
	border-radius: 5px;
	color: inherit;
	cursor: pointer;
	font-family: inherit;
	font-size: 14px;
	padding: 15px;
	width: 100%;
}

.contact__bottom select:hover,
.contact__bottom select:focus {
	box-shadow: 0 0 5px rgba(0, 17, 53, 0.7);
	outline: none;
}

.contact__bottom textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: transparent;
	background-image: none;
	border: 1px solid #e2e2e2;
	border-radius: 5px;
	color: inherit;
	font-family: inherit;
	font-size: 14px;
	height: 160px;
	overflow: auto;
	padding: 15px;
	resize: vertical;
	width: 100%;
}

.contact__bottom textarea::-moz-placeholder {
	color: #a9a9a9;
}

.contact__bottom textarea::placeholder {
	color: #a9a9a9;
}

.contact__bottom textarea:hover,
.contact__bottom textarea:focus {
	box-shadow: 0 0 5px rgba(0, 17, 53, 0.7);
	outline: none;
}

.contact__accept {
	margin-top: 40px; /* デフォルトのチェックボックスを非表示 */
}

.contact__accept [type=checkbox] {
	opacity: 0;
	position: absolute; /* チェックボックスを設置するため、左側にスペースを確保 */ /* チェック時に表示する*/
}

.contact__accept [type=checkbox] + span {
	cursor: pointer;
	display: inline-block;
	line-height: 1;
	padding-left: 30px;
	position: relative;
	vertical-align: middle; /* 擬似要素を共通でセット */ /* チェックボックスの枠 */ /* チェックマーク*/
}

.contact__accept [type=checkbox] + span::before,
.contact__accept [type=checkbox] + span::after {
	content: "";
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.contact__accept [type=checkbox] + span::before {
	background: #fff;
	border: 1px solid #e2e2e2;
	display: block;
	height: 24px;
	transition: border 0.3s;
	width: 24px;
}

.contact__accept [type=checkbox] + span::after {
	border-bottom: 4px solid #000;
	border-left: 4px solid #000;
	display: block;
	height: 14px;
	margin-top: -5px;
	opacity: 0;
	transform: translateY(-50%) rotate(-45deg);
	transition: opacity 0.3s;
	width: 24px;
}

.contact__accept [type=checkbox]:checked + span::after {
	opacity: 1;
}

.contact__accept [type=checkbox]:hover + span::before,
.contact__accept [type=checkbox]:focus + span::before {
	box-shadow: 0 0 5px rgba(0, 17, 53, 0.7);
}

.contact__accept-wrap {
	position: relative;
}

.contact__accept-wrap::after {
	background: transparent url(../img/stare-red.png) no-repeat center center/contain;
	content: "";
	height: 21px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 7px;
}

.confirm__btn-Wrap {
	margin: 40px auto 0;
	position: relative;
	text-align: center;
	width: 350px;
}

.confirm__btn-Wrap::before {
	background: url(../img/arrow-forward-white.png) no-repeat center center/cover;
	content: "";
	height: 9px;
	pointer-events: none;
	position: absolute;
	right: 100px;
	top: 50%;
	transform: translateY(-50%);
	transition: right 0.3s;
	width: 6px;
}

.confirm__btn-Wrap:hover::before {
	background: url(../img/arrow-forward-white.png) no-repeat center center/cover;
	right: 90px;
}

.confirm__btn {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background: #011950;
	border-radius: 4px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 14px;
	max-width: 100%;
	padding: 24px;
	text-align: center;
	width: 350px;
}

span.wpcf7-spinner {
	display: none;
}

.wpcf7-form-control-wrap > .wpcf7-not-valid-tip {
	display: none;
	margin-top: 10px;
}

.wpcf7-form-control-wrap.is-show > .wpcf7-not-valid-tip {
	display: block;
}

.wpcf7-form.invalid .wpcf7-response-output {
	display: none;
}

/*------------------------------------------------------------------
#tab
-------------------------------------------------------------------*/

.tab__btn-list {
	border-bottom: 1px solid #011950;
	display: flex;
	margin-top: 50px;
}

.tab__btn-item {
	flex: 1 1 1;
}

.tab__btn-item:nth-of-type(n + 2) {
	margin-left: 20px;
}

.tab__btn-btn {
	align-items: center;
	background: #fff;
	border: 1px solid #011950;
	border-bottom-width: 0;
	border-radius: 0.5rem 0.5rem 0 0;
	color: #011950;
	cursor: pointer;
	display: inline-flex;
	font-family: "Playfair Display", serif;
	font-size: 14px;
	font-weight: 700;
	justify-content: center;
	line-height: 1.5;
	padding: 10px 30px;
	position: relative;
	text-align: center;
	transition: 0.5s ease;
}

.tab__btn-btn:focus,
.tab__btn-btn:hover {
	background: #011950;
	color: #fff;
}

.tab__panel {
	display: none;
}

.tab__btn-btn[aria-selected=true] {
	background: #011950;
	color: #fff;
	pointer-events: none;
}

.tab__panel[aria-hidden=false] {
	display: block;
}

.exclusive__text {
	font-size: 20px;
	font-weight: bold;
	margin-top: 30px;
}

/*------------------------------------------------------------------
#modal
-------------------------------------------------------------------*/

.modal__btn {
	color: blue;
	cursor: pointer;
	margin-top: 20px;
}

.modal {
	align-items: center;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	height: 100%;
	inset: 0;
	justify-content: center;
	opacity: 0;
	position: fixed;
	transition: opacity 0.5s, visibility 0.5s;
	visibility: hidden;
	width: 100%;
	z-index: 500;
}

.modal__inner {
	margin: 0 auto;
	max-width: 1200px;
	padding-left: 2rem;
	padding-right: 2rem;
	width: 100%;
}

.modal__content {
	background: #fff;
	border-radius: 0.5rem;
	max-height: 40rem;
	overflow-y: auto;
	padding: 5rem;
	position: relative;
}

.modal__title {
	font-size: 2.5rem;
	line-height: 1.5;
	text-align: center;
}

.modal__text {
	font-size: 1.5rem;
	line-height: 1.5;
	margin-top: 3.5rem;
}

.modal__close {
	cursor: pointer;
	display: inline-block;
	font-size: 3.5rem;
	font-weight: 700;
	position: absolute;
	right: 2rem;
	top: 2rem;
}

.modal.is-show {
	opacity: 1;
	visibility: visible;
}

.contact-confirm__item {
	display: flex;
	gap: 50px;
}

.contact-confirm__left {
	margin-top: 10px;
	width: 165px;
}

.contact-confirm__right {
	width: calc(100% - 165px);
}

.contact-confirm__text {
	font-size: 14px;
	line-height: 2.2;
}

.contact__btns-Wrap {
	display: flex;
	justify-content: space-between;
	margin: 60px auto 0;
}

.contact__btn-Wrap1 {
	position: relative;
}

.contact__btn-Wrap1::before {
	background: url(../img/arrow-forward-blue-left.png) no-repeat center center/cover;
	content: "";
	height: 9px;
	left: 100px;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: left 0.3s;
	width: 6px;
}

.contact__btn-Wrap1:hover::before {
	left: 90px;
}

.contact__btn-Wrap2 {
	position: relative;
}

.contact__btn-Wrap2::before {
	background: url(../img/arrow-forward-white.png) no-repeat center center/cover;
	content: "";
	height: 9px;
	pointer-events: none;
	position: absolute;
	right: 80px;
	top: 50%;
	transform: translateY(-50%);
	transition: right 0.3s;
	width: 6px;
}

.contact__btn-Wrap2:hover::before {
	right: 70px;
}

.back__btn {
	background: #fff;
	border: 2px solid #011950;
	border-radius: 4px;
	color: #011950;
	cursor: pointer;
	display: inline-block;
	font-size: 18px;
	max-width: 100%;
	padding: 24px;
	text-align: center;
	transition: color 0.3s, background 0.3s, border 0.3s;
	width: 280px;
}

.submit__btn {
	background: #011950;
	border: 2px solid transparent;
	border-radius: 4px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 18px;
	max-width: 100%;
	padding: 24px;
	text-align: center;
	transition: color 0.3s, background 0.3s, border 0.3s;
	width: 280px;
}

.wpcf7-form.sent .wpcf7-response-output {
	display: none;
}

.contact-complete {
	margin-bottom: 120px;
	margin-top: 60px;
}

.contact-complete__inner {
	margin-inline: auto;
	max-width: 680px;
	padding-inline: 20px;
}

.contact-complete__title {
	text-align: center;
}

.contact-complete__title-en {
	display: block;
	font-size: 40px;
	font-weight: bold;
}

.contact-complete__title-ja {
	display: block;
	font-size: 18px;
	margin-top: 20px;
}

.contact-complete__text {
	line-height: 2.2;
	margin-top: 40px;
}

.contact-complete__btnWrap {
	margin: 60px auto 0;
	text-align: center;
}

.contact-complete__btn {
	background: #001e63;
	border-radius: 4px;
	color: #fff;
	display: inline-block;
	font-size: 14px;
	max-width: 100%;
	padding: 15px;
	position: relative;
	text-align: center;
	width: 280px;
}

.contact-complete__btn::after {
	background: url(../img/arrow-forward-white-left.png) no-repeat center center/cover;
	content: "";
	height: 9px;
	left: 70px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: left 0.3s;
	width: 6px;
}

.contact-complete__btn:hover::after {
	background: url(../img/arrow-forward-white-left.png) no-repeat center center/cover;
	left: 60px;
}

/*------------------------------------------------------------------
#service
-------------------------------------------------------------------*/

.service {
	padding-bottom: 250px;
}

.service__inner {
	margin-inline: auto;
	max-width: 1240px;
	padding-inline: 20px;
}

.service__item {
	margin-top: 250px;
	position: relative;
}

.service__item:first-child {
	margin-top: 0;
}

.service__content {
	background: #f8f8f8;
	display: flex;
	padding-top: 70px;
}

.service__body {
	padding-bottom: 160px;
	padding-left: 40px;
	padding-right: 110px;
	width: 50%;
}

.service__number {
	color: #001e63;
	font-size: 40px;
	font-weight: bold;
	line-height: 1.5;
	padding-right: 20px;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
}

.service__number::after {
	background: transparent url(../img/service-border.png) no-repeat center center/contain;
	content: "";
	height: 34px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
}

.service__title {
	font-size: 28px;
	margin-top: 20px;
}

.service__text {
	font-size: 22px;
	line-height: 2;
	margin-top: 20px;
}

.service__img {
	display: inline-block;
	overflow: hidden;
	position: relative;
	width: 50%;
}

.service__img::before {
	background: #001e63;
	content: "";
	display: block;
	inset: 0;
	position: absolute;
}

.service__img img {
	-o-object-fit: cover;
	aspect-ratio: 640/500;
	object-fit: cover;
}

.service__features {
	background: #fff;
	left: 50px;
	padding: 40px;
	position: absolute;
	top: 370px;
	width: 650px;
	z-index: 1;
}

.service__features-title {
	align-items: center;
	display: flex;
}

.service__features-title-en {
	color: #001e63;
	font-family: "Playfair Display", serif;
	font-size: 22px;
	font-weight: bold;
}

.service__features-title-ja {
	font-size: 12px;
	margin-left: 16px;
}

.service__features-text {
	line-height: 2.37;
	margin-top: 20px;
}

/*------------------------------------------------------------------
#Q＆A
-------------------------------------------------------------------*/

.qa {
	background: #f8f8f8;
	padding: 100px 0;
}

.qa__inner {
	margin: 0 auto;
	max-width: 840px;
	padding: 0 20px;
}

.heading.heading--center {
	text-align: center;
}

.heading__en {
	display: block;
	font-family: "Noto Serif JP", serif;
	font-size: 50px;
	font-weight: 700;
	letter-spacing: 5px;
	line-height: 1;
}

.heading__ja {
	display: block;
	font-family: "Noto Serif JP", serif;
	letter-spacing: 1.28px;
	line-height: 1;
	margin-top: 15px;
}

.qa__boxes {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin-top: 80px;
}

.qa-box {
	background: transparent;
}

.qa-box:first-of-type .qa-box__body {
	display: block;
}

.qa-box__head {
	background: linear-gradient(to right, #011950, #599ace);
	cursor: pointer;
	padding: 20px 80px 20px 20px;
	position: relative;
}

.qa-box__head::before,
.qa-box__head::after {
	background: #fff;
	border-radius: 10px;
	content: "";
	display: inline-block;
	height: 3px;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	transition: transform 0.3s;
	width: 25px;
}

.qa-box__head::after {
	transform: translateY(-50%) rotate(90deg);
}

.qa-box__head.is-open::after {
	transform: translateY(-50%) rotate(0);
}

.qa-box__q {
	align-items: center;
	display: flex;
	gap: 20px;
	justify-content: center;
}

.qa-box__head-icon {
	color: #fff;
	flex-shrink: 0;
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
}

.qa-box__head-text {
	color: #fff;
	flex-grow: 1;
	font-weight: 500;
	line-height: 1.5;
}

.qa-box__body {
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	display: none;
	padding: 20px 35px 20px 20px;
}

.qa-box__a {
	align-items: center;
	display: flex;
	gap: 20px;
	justify-content: center;
}

.qa-box__a-icon {
	flex-shrink: 0;
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
}

.qa-box__a-text {
	flex-grow: 1;
	font-weight: 700;
	line-height: 1.5;
}

.low-news {
	background: #fff;
	padding-bottom: 120px;
	padding-top: 60px;
}

.blog .news-nav {
	position: sticky;
	top: 130px;
}

.news-single {
	padding-bottom: 120px;
	padding-top: 60px;
}

.news-single__inner {
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 20px;
}

.news-single__article {
	width: calc(100% - 300px - 40px);
}

.news-single__title {
	font-size: 26px;
	line-height: 2;
	margin-top: 20px;
}

.news-single__time {
	color: #a9a9a9;
	display: block;
	font-size: 11px;
	font-weight: bold;
	margin-top: 20px;
}

.news-single__img {
	margin-top: 40px;
	width: 100%;
}

.news-single__img img {
	-o-object-fit: cover;
	aspect-ratio: 720/380;
	object-fit: cover;
}

.news-single__content {
	border-bottom: 1px solid #e2e2e2;
}

.news-single__content h2 {
	background: #f8f9f9;
	border-left: 5px solid #001e63;
	color: #000;
	font-size: 22px;
	line-height: 1.8;
	margin-top: 50px;
	padding: 8px 13px;
}

.news-single__content h3 {
	border-bottom: 1px solid #e4e4e4;
	font-size: 18px;
	line-height: 2.2;
	margin-top: 40px;
	position: relative;
}

.news-single__content h3::before {
	background: #001e63;
	bottom: -2px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	width: 50%;
}

.news-single__content p {
	line-height: 2;
	margin-top: 40px;
}

.news-single__content ul {
	margin-top: 40px;
}

.news-single__content ul li {
	line-height: 2;
	padding-left: 10px;
	position: relative;
}

.news-single__content ul li::after {
	background: url(../img/cercle-blue.png) no-repeat center center/cover;
	content: "";
	height: 6px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
}

.news-single__sidebar {
	width: 300px;
}

.sidebar__block:not(:first-child) {
	margin-top: 40px;
}

.sidebar__title {
	background: #001135;
	color: #fff;
	font-size: 14px;
	padding: 15px 18px;
}

.sidebar-article__list {
	padding: 0 15px;
}

.sidebar-article__link {
	border-bottom: 1px solid #e4e4e4;
	display: flex;
	gap: 15px;
	padding: 15px 0;
}

.sidebar-article__link:hover .sidebar-article__img img {
	transform: scale(1.1);
}

.sidebar-article__img {
	flex-shrink: 0;
	overflow: hidden;
	width: 100px;
}

.sidebar-article__img img {
	-o-object-fit: cover;
	aspect-ratio: 1/1;
	object-fit: cover;
	transition: transform 1s;
}

.sidebar-article__body {
	display: flex;
	flex-direction: column;
	flex-shrink: 1;
}

.sidebar-article__title {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	display: -webkit-box;
	font-size: 14px;
	line-height: 2.2;
	overflow: hidden;
}

.sidebar-article__time {
	color: #a9a9a9;
	font-size: 10px;
	font-weight: bold;
	margin-top: auto;
}

.sidebar-archive__list li {
	border-bottom: 1px solid #e4e4e4;
}

.sidebar-archive__list li a {
	display: block;
	font-size: 14px;
	line-height: 2;
	padding: 18px;
	transition: opacity 0.3s;
}

.sidebar-archive__list li a:hover {
	opacity: 0.7;
}

.sidebar-archive__item,
.sidebar-category__item {
	border-bottom: 1px solid #e4e4e4;
}

.sidebar-archive__item:last-child,
.sidebar-category__item:last-child {
	border-bottom: none;
}

.sidebar-archive__link,
.sidebar-category__link {
	display: block;
	font-size: 14px;
	line-height: 2;
	padding: 18px;
	transition: opacity 0.3s;
}

.sidebar-archive__link:hover,
.sidebar-category__link:hover {
	opacity: 0.7;
}

.works {
	background: #fff;
	padding-bottom: 120px;
	padding-top: 60px;
}

.works__inner {
	display: flex;
	margin-inline: auto;
	max-width: 1140px;
	padding-inline: 20px;
}

.works__left {
	border-right: 1px solid #e2e2e2;
	width: 22%;
}

.works-nav {
	margin-top: 70px;
	position: sticky;
	top: 130px;
}

.works-nav__list {
	margin-top: 27px;
}

.works-nav__list:first-child {
	margin-top: 0;
}

.works-nav__link {
	color: #a9a9a9;
	display: block;
	font-size: 14px;
	padding-left: 25px;
	position: relative;
}

.works-nav__link::before {
	background: url(../img/car.png) no-repeat center center/cover;
	content: "";
	display: none;
	height: 20px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
}

.works-nav__link.current {
	color: #000;
}

.works-nav__link.current::before {
	display: block;
}

.works__right {
	width: 78%;
}

.works__link {
	border-bottom: 1px solid #e2e2e2;
	display: flex;
	gap: 30px;
	margin-left: 40px;
	margin-top: 30px;
	padding-bottom: 30px;
}

.works__link:hover .works__subtitle span {
	background-size: 100% 1px;
}

.works__link:hover .works__img img {
	transform: scale(1.05);
}

.works__img {
	overflow: hidden;
	width: 160px;
}

.works__img img {
	-o-object-fit: cover;
	aspect-ratio: 1/1;
	object-fit: cover;
	transition: transform 1s;
}

.works__body {
	display: flex;
	flex-direction: column;
	width: calc(100% - 160px);
}

.works__category {
	background: #f8f8f8;
	border: 1px solid #707070;
	color: #626262;
	font-size: 11px;
	height: 25px;
	line-height: 1;
	padding: 5px 18px;
	text-align: center;
	width: -moz-fit-content;
	width: fit-content;
}

.works__subtitle {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	margin-top: 30px;
	overflow: hidden;
}

.works__subtitle span {
	background-image: linear-gradient(90deg, #000, #000); /* 線の色 */
	background-position: left bottom; /* 線の起点を左・下に設定 */
	background-repeat: no-repeat;
	background-size: 0 1px; /* 線の横幅を0、縦幅を1pxに */
	color: #000; /* 文字色 */
	display: inline;
	font-size: 18px;
	line-height: 1.6;
	text-decoration: none; /* デフォルトの下線を非表示にする */
	transition: background-size 0.4s; /* 線を伸ばすアニメーション実行時間を指定 */
}

.works__time {
	color: #a9a9a9;
	display: block;
	font-size: 10px;
	font-weight: bold;
	margin-top: auto;
}

.works-single {
	padding-bottom: 120px;
	padding-top: 60px;
}

.works-single__inner {
	margin: 0 auto;
	max-width: 880px;
	padding: 0 20px;
}

.works-single__category {
	background: #f8f8f8;
	color: #626262;
	display: inline-block;
	font-size: 11px;
	height: 25px;
	padding: 5px 18px;
}

.works-single__title {
	font-size: 26px;
	line-height: 2;
	margin-top: 20px;
}

.works-single__time {
	color: #a9a9a9;
	display: block;
	font-size: 11px;
	font-weight: bold;
	margin-top: 20px;
}

.works-single__img {
	margin-top: 40px;
	width: 100%;
}

.works-single__img img {
	-o-object-fit: cover;
	aspect-ratio: 840/470;
	object-fit: cover;
	width: 100%;
}

.works-single__content h2 {
	background: #f8f9f9;
	border-left: 5px solid #001e63;
	color: #000;
	font-size: 22px;
	line-height: 1.8;
	margin-top: 50px;
	padding: 8px 13px;
}

.works-single__content h3 {
	border-bottom: 1px solid #E4E4E4;
	font-size: 18px;
	line-height: 2.2;
	margin-top: 40px;
	position: relative;
}

.works-single__content h3::before {
	background: #001E63;
	bottom: -2px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	width: 50%;
}

.works-single__content p {
	line-height: 2;
	margin-top: 40px;
}

.works-single__content ul {
	margin-top: 40px;
}

.works-single__content ul li {
	line-height: 2;
	padding-left: 10px;
	position: relative;
}

.works-single__content ul li::after {
	background: url(../img/cercle-blue.png) no-repeat center center/cover;
	content: "";
	height: 6px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
}

.works-single__btn {
	margin: 60px auto 0;
	text-align: center;
}

.works-single__btn a {
	border: 1px solid #001e63;
	border-radius: 5px;
	color: #001e63;
	display: inline-block;
	font-size: 14px;
	max-width: 280px;
	padding: 15px;
	position: relative;
	text-align: center;
	width: 100%;
}

.works-single__btn a::after {
	background: url(../img/arrow-forward-blue-left.png) no-repeat center center/cover;
	content: "";
	height: 10px;
	left: 70px;
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	transition: left 0.3s;
	width: 6px;
}

.works-single__btn a:hover::after {
	background: url(../img/arrow-forward-blue-left.png) no-repeat center center/cover;
	left: 65px;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {

.hidden-tab {
	display: none;
}

.drawer-nav__item {
	max-width: 250px;
}

.about-Philosophy {
	margin-bottom: -100px;
}

.service__body {
	padding: 0 20px 160px;
}

}

@media screen and (min-width: 1024px) {

.hidden-pc {
	display: none;
}

.drawer__content.is-active {
	opacity: 0;
}

}

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

.hidden-sp {
	display: none;
}

.header {
	height: 100px;
}

.header.hide {
	top: 0;
}

.header__logo {
	align-items: center;
	display: flex;
	width: 110px;
}

.header__logo img {
	aspect-ratio: 110/80;
}

.header__right {
	display: none;
}

.footer__inner {
	display: block;
	padding: 60px 50px;
}

.footer-nav {
	width: 100%;
}

.footer-info {
	width: 100%;
}

.drawer-icon {
	display: block;
}

.drawer-nav__item {
	max-width: 250px;
}

.lower-top {
	height: 250px;
	margin-top: 130px;
	padding: 0 10px;
	width: 100%;
}

.lower-top::before {
	height: 100%;
}

.lower-top-about::before {
	background: url(../img/lower-top-about-sp.jpg) no-repeat center center/cover;
}

.lower-top-service::before {
	background: url(../img/lower-top-service-sp.jpg) no-repeat center center/cover;
}

.lower-top-news::before {
	background: url(../img/lower-top-news-sp.jpg) no-repeat center center/cover;
}

.lower-top-works::before {
	background: url(../img/lower-top-works-sp.jpg) no-repeat center center/cover;
}

.lower-top-contact::before {
	background: url(../img/lower-top-contact-sp.jpg) no-repeat center center/cover;
}

.lower-top__heading {
	padding: 0 30px 20px 10px;
}

.lower-top__title-en {
	font-size: 44px;
}

.lower-top__title-ja {
	font-size: 12px;
}

.section__title {
	font-size: 34px;
}

.about__title-ja {
	font-size: 12px;
}

.about__title-en {
	font-size: 26px;
	padding-right: 50px;
}

.about__title-en::after {
	width: 40px;
}

.works__category {
	font-size: 10px;
	padding: 5px 15px;
}

.news-category__list {
	gap: 10px;
}

.news__category {
	font-size: 10px;
	margin-right: 6px;
	padding: 5px 15px;
}

.breadcrumb {
	font-size: 12px;
	margin: 10px auto 0;
	padding-right: 40px;
}

.breadcrumb-single {
	font-size: 10px;
	margin: 110px auto 0;
	padding-right: 10px;
}

.pagetop {
	height: 40px;
	width: 40px;
}

.pagetop:after {
	left: 12px;
	top: 15px;
}

.l-pager {
	margin-top: 40px;
}

.page-numbers {
	height: 30px;
	width: 30px;
}

.single-pager {
	margin-top: 40px;
}

.single-pager__prev a,
.single-pager__next a {
	font-size: 11px;
}

.l-top-bg::before {
	width: calc(50vw + 40px);
}

.top-fv {
	display: block;
	width: 100%;
}

.fv__swiper {
	height: 100vh;
	width: 100%;
}

.top-fv__right {
	width: 100%;
}

.top-fv__title {
	display: block;
	gap: 0;
	margin-top: 20px;
	width: 100%;
}

.top-fv__title-wrap {
	font-size: 34px;
	line-height: 1.4;
	writing-mode: horizontal-tb;
}

.top-info {
	margin-top: 150px;
}

.top-info__text {
	font-size: 84px;
	line-height: 1.2;
}

.top-about {
	margin-top: 60px;
}

.top-about__inner {
	flex-direction: column;
	max-width: 540px;
}

.top-about__video {
	width: 100%;
}

.top-about__content {
	width: 100%;
}

.top-about__title {
	font-size: 30px;
	margin-top: 30px;
}

.top-about__text {
	line-height: 2.2;
	margin-top: 10px;
}

.top-service {
	margin-top: 80px;
	padding-bottom: 40px;
}

.top-service__inner {
	max-width: 540px;
}

.top-service__titleWrap {
	text-align: center;
}

.top-service__list {
	flex-direction: column;
	margin-inline: auto;
}

.top-service__item {
	margin-top: 50px;
}

.top-service__img {
	height: 200px;
}

.top-service__text {
	margin-top: 15px;
}

.top-works {
	padding-top: 80px;
}

.top-works__inner {
	max-width: 540px;
}

.top-works__list {
	margin-top: 30px;
	padding-inline: 20px;
}

.top-works__link {
	gap: 20px;
	padding-block: 30px;
}

.top-works__img {
	min-width: 150px;
	width: 45%;
}

.top-works__body {
	width: 55%;
}

.top-works__subtitle {
	-webkit-line-clamp: 3;
	margin-top: 10px;
}

.top-works__subtitle span {
	font-size: 14px;
}

.top-works__text {
	display: none;
}

.top-works__time {
	font-size: 10px;
}

.news {
	padding-top: 80px;
}

.news__inner {
	flex-direction: column;
	max-width: 540px;
}

.news__left {
	border-right: none;
	width: 100%;
}

.news-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0 30px;
	margin-top: 20px;
}

.news-nav__list {
	margin-top: 25px;
}

.news-nav__list:first-child {
	margin-top: 25px;
}

.news-all__list {
	display: none;
}

.news__right {
	margin-top: 40px;
	width: 100%;
}

.news__list {
	margin-left: 0px;
}

.news__link:first-child {
	border-top: 1px solid #e2e2e2;
}

.news__time {
	font-size: 10px;
	margin-right: 10px;
	min-width: 50px;
}

.news__subtitle span {
	font-size: 14px;
}

.search-field {
	width: 250px;
}

.gallery {
	padding-bottom: 80px;
	padding-top: 80px;
}

.gallery__swiper {
	height: 100%;
}

.gallery__img img {
	height: inherit;
}

.gallery__body {
	margin-top: 10px;
}

.gallery__title {
	font-size: 18px;
}

.gallery__text {
	font-size: 12px;
	margin-top: 5px;
}

.top-contact__inner {
	display: block;
}

.top-contact__content {
	padding: 80px 0;
	width: 100%;
}

.top-contact__text {
	font-size: 14px;
}

.top-contact__btnWrap {
	font-size: 16px;
	margin-top: 40px;
	padding-right: 0;
}

.top-contact__btn-mail span,
.top-contact__btn-tel span {
	margin-left: 10px;
}

.top-contact__btn-mail svg,
.top-contact__btn-tel svg {
	height: 16px;
	width: 16px;
}

.top-contact__info {
	font-size: 12px;
	margin-top: 10px;
}

.top-contact__img {
	width: 100%;
}

.lower-main {
	padding-bottom: 60px;
	padding-top: 30px;
}

.lower-main__inner {
	max-width: 640px;
}

.lower-main__list {
	font-size: 14px;
	gap: 25px;
}

.lower-main__title {
	font-size: 18px;
	line-height: 2;
	margin-top: 50px;
}

.lower-main__text {
	font-size: 14px;
	margin-top: 20px;
}

.about-Philosophy {
	margin-bottom: -200px;
}

.about-Philosophy__inner {
	flex-direction: column;
	max-width: 640px;
}

.about-Philosophy__content {
	padding: 60px 20px 245px;
	width: 100%;
}

.about-Philosophy__text {
	font-size: 14px;
	margin-top: 30px;
}

.about-Philosophy__text-name {
	font-size: 14px;
	margin-top: 30px;
}

.about-Philosophy__img {
	margin-left: auto;
	right: 20px;
	top: -200px;
	width: 220px;
}

.about-chart.first {
	margin-top: 70px;
}

.about-chart__inner {
	display: block;
}

.about-chart__content {
	margin-bottom: 50px;
	text-align: left;
	width: 100%;
}

.about-chart__text {
	margin-top: 30px;
}

.ct-bar {
	stroke-width: 15%;
}

.about-Company {
	padding-bottom: 80px;
	padding-top: 60px;
}

.about-Company__inner {
	max-width: 640px;
}

.about-Company__info {
	font-size: 14px;
}

.about-Company__info-row {
	display: block;
	line-height: 1;
	padding: 15px 0;
}

.about-Company__left {
	width: 100%;
}

.about-Company__right {
	line-height: 2;
	margin-top: 10px;
	width: 100%;
}

.about-Access {
	padding: 40px 0 80px;
}

.about-Access__inner {
	max-width: 640px;
}

.about-Access__adress {
	font-size: 14px;
	line-height: 1.5;
	margin-top: 20px;
}

.about-Access__map {
	margin-top: 20px;
}

.search-title {
	font-size: 24px;
}

.search-text {
	font-size: 16px;
}

.entry-404 {
	padding: 200px 20px 100px;
}

.entry-404__inner {
	height: 400px;
}

.entry-404__title {
	font-size: 35px;
}

.entry-404__text {
	font-size: 14px;
}

.contact {
	padding-bottom: 80px;
	padding-top: 30px;
}

.contact__info {
	font-size: 14px;
}

.contact__item {
	margin-top: 30px;
}

.contact__description {
	display: block;
	margin-left: 0;
	margin-top: 10px;
}

.contact__accept {
	font-size: 12px;
	margin-top: 30px;
}

.confirm__btn-Wrap::before {
	right: 120px;
}

.confirm__btn {
	padding: 18px;
	width: 270px;
}

.tab__btn-btn {
	font-size: 14px;
	padding: 10px;
}

.exclusive__text {
	font-size: 16px;
	margin-top: 20px;
}

.modal__inner {
	padding-left: 1rem;
	padding-right: 1rem;
	width: 95%;
}

.modal__content {
	padding-inline: 1rem;
}

.modal__title {
	font-size: 1.5rem;
}

.modal__text {
	font-size: 14px;
	margin-top: 30px;
}

.modal__close {
	font-size: 2.5rem;
	right: 1rem;
	top: 1rem;
}

.contact-confirm__item {
	display: block;
}

.contact-confirm__left {
	font-size: 15px;
	width: 100%;
}

.contact-confirm__right {
	width: 100%;
}

.contact__btns-Wrap {
	gap: 50px;
	justify-content: center;
}

.contact__btn-Wrap1::before {
	left: 30px;
}

.contact__btn-Wrap2::before {
	right: 20px;
}

.back__btn {
	width: 150px;
}

.submit__btn {
	width: 150px;
}

.contact-complete {
	margin-bottom: 80px;
}

.contact-complete__title-en {
	font-size: 24px;
}

.contact-complete__title-ja {
	margin-top: 10px;
}

.contact-complete__text {
	margin-top: 30px;
}

.service {
	padding-bottom: 50px;
}

.service__inner {
	max-width: 640px;
}

.service__item {
	margin-top: 50px;
}

.service__content {
	border-radius: 3px;
	display: block;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 30px;
}

.service__body {
	padding: 0 0 10px;
	width: 100%;
}

.service__number {
	font-size: 32px;
}

.service__number::after {
	height: 25px;
	left: 50px;
}

.service__title {
	font-size: 20px;
}

.service__text {
	font-size: 14px;
}

.service__img {
	width: 100%;
}

.service__features {
	left: 0;
	padding: 30px 20px;
	position: static;
	width: 100%;
}

.service__features-title-en {
	font-size: 18px;
}

.service__features-title-ja {
	font-size: 10px;
}

.service__features-text {
	font-size: 14px;
}

.qa {
	padding: 60px 0;
}

.heading__en {
	font-size: 38px;
	letter-spacing: 3.8px;
}

.heading__ja {
	font-size: 14px;
}

.qa__boxes {
	margin-top: 50px;
}

.qa-box__head::before,
.qa-box__head::after {
	right: 15px;
}

.qa-box__head {
	padding: 20px 55px 20px 15px;
}

.qa-box__head-text {
	font-size: 14px;
	letter-spacing: 1.12px;
}

.qa-box__body {
	padding: 20px 20px 20px 15px;
}

.qa-box__a-text {
	font-size: 14px;
}

.news-single {
	padding-bottom: 80px;
	padding-top: 50px;
}

.news-single__inner {
	display: block;
}

.news-single__article {
	padding: 0 0 80px;
	width: 100%;
}

.news-single__title {
	font-size: 18px;
	margin-top: 10px;
}

.news-single__time {
	font-size: 10px;
	margin-top: 10px;
}

.news-single__content h2 {
	font-size: 18px;
	padding: 8px 11px;
}

.news-single__sidebar {
	max-width: 450px;
	width: 100%;
}

.works {
	padding-bottom: 80px;
	padding-top: 30px;
}

.works__inner {
	display: block;
}

.works__left {
	border-right: none;
	width: 100%;
}

.works-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	margin-top: 30px;
}

.works-nav__list {
	margin-top: 0;
}

.works-nav__link {
	font-size: 12px;
	margin-left: 40px;
}

.works__right {
	margin-top: 40px;
	width: 100%;
}

.works__link {
	gap: 15px;
	margin: 0px;
	padding: 20px 0;
}

.works__img {
	width: 130px;
}

.works__body {
	width: calc(100% - 130px);
}

.works__category {
	font-size: 10px;
	padding: 5px 15px;
}

.works__subtitle {
	margin-top: 10px;
}

.works__subtitle span {
	font-size: 14px;
	margin-top: 12px;
}

.works__time {
	margin-top: 10px;
}

.works-single {
	padding-bottom: 80px;
	padding-top: 50px;
}

.works-single__category {
	font-size: 10px;
	margin-right: 6px;
	padding: 5px 15px;
}

.works-single__title {
	font-size: 18px;
	margin-top: 10px;
}

.works-single__time {
	font-size: 10px;
	margin-top: 10px;
}

.works-single__content h2 {
	font-size: 18px;
	padding: 8px 11px;
}

}

@keyframes fade {

0% {
	opacity: 0;
}

100% {
	opacity: 1;
}

}

@keyframes slide {

from {
	transform: translate(0);
}

to {
	transform: translate(-100%);
}

}

