*,
*::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;
	font-size: 100%;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

li,
dd {
	list-style-type: none;
}

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

img {
	border: none;
	vertical-align: bottom;
}

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

input,
select,
textarea {
	color: inherit;
	font: inherit;
	vertical-align: top;
}

body {
	color: #1a1a1a;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.72;
}

body.is-fixed {
	overflow: hidden;
}

img {
	height: auto;
	max-width: 100%;
}

a {
	color: inherit;
}

.l-inner {
	margin: 0 auto;
	max-width: 1100px;
	width: 100%;
}

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

.l-bg-diagonal::before {
	background: #edf3f8;
	clip-path: polygon(0% 72%, 100% 100%, 100% 28%, 0% 0%);
	content: "";
	height: 800px;
	left: 0;
	position: absolute;
	top: 150px;
	width: 100%;
	z-index: -1;
}

.c-header {
	background: #ffffff;
	position: relative;
	z-index: 999;
}

.c-header__inner {
	align-items: center;
	display: flex;
	height: 100px;
	justify-content: space-between;
	padding: 16px;
}

.c-header__logo {
	width: 280px;
}

.c-drawer-icon {
	align-items: flex-start;
	background-color: #ffffff;
	cursor: pointer;
	display: flex;
	height: 18px;
	position: relative;
	width: 27px;
}

.c-drawer-icon.is-checked .c-drawer-icon__bar:nth-child(1) {
	top: 9px;
	transform: rotate(45deg);
}

.c-drawer-icon.is-checked .c-drawer-icon__bar:nth-child(2) {
	display: none;
}

.c-drawer-icon.is-checked .c-drawer-icon__bar:nth-child(3) {
	top: 9px;
	transform: rotate(-45deg);
}

.c-drawer-icon__bar {
	background-color: #023e78;
	border-radius: 3px;
	height: 2.25px;
	position: absolute;
	transition: top 0.3s, transform 0.3s, background 0.3s;
	width: 27px;
}

.c-drawer-icon__bar:nth-child(1) {
	top: 2.125px;
}

.c-drawer-icon__bar:nth-child(2) {
	top: 8.875px;
}

.c-drawer-icon__bar:nth-child(3) {
	top: 15.625px;
}

.c-drawer-content {
	z-index: 100;
}

.c-drawer__nav {
	align-items: center;
	background: #023e78;
	display: flex;
	flex-direction: column;
	gap: 40px;
	height: calc(100vh - 60px);
	left: 0;
	overflow: auto;
	padding: 58px 40px;
	position: fixed;
	top: 60px;
	transform: translateY(-100vh);
	transition: all 0.3s ease-in-out;
	width: 100%;
	z-index: 100;
}

.c-drawer__nav.is-checked {
	opacity: 1;
	transform: translateY(0);
}

.c-drawer__lists {
	align-items: center;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	font-size: 16px;
	font-weight: 400;
	gap: 36px;
	justify-content: center;
}

.c-drawer-content__buttons {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 32px;
	justify-content: center;
	max-width: 295px;
	width: 100%;
}

.c-drawer-content__button1.c-button-blue {
	border: 1px solid #ffffff;
	padding: 19px 10px;
}

.c-drawer-content__button2.c-button-white {
	padding: 20px 10px;
}

.c-nav {
	align-items: center;
	display: flex;
	gap: 30px;
}

.c-nav__lists {
	display: flex;
}

.c-nav__list:not(:last-child)::after {
	content: "／";
	margin: 0 14.7px;
}

.c-nav__lists .menu-item:not(:last-child)::after {
  content: "／";
  margin: 0 16px;
}

.c-nav__buttons {
	display: flex;
	gap: 10px;
}

.c-nav__buttons .c-nav__button {
	font-size: 14px;
	height: 68px;
	line-height: 1.43;
	padding: 24px 30px;
	width: 176px;
}

.c-button-white {
	background: #ffffff;
	border: 1px solid #023e78;
	color: #023e78;
	cursor: pointer;
	font-size: 16px;
	max-width: 336px;
	padding: 24px 10px;
	text-align: center;
	transition: 0.3s;
	width: 100%;
}

.c-button-white:hover {
	background: #023e78;
	color: #ffffff;
}

.c-button-blue {
	background: #023e78;
	border: 1px solid #023e78;
	color: #ffffff;
	cursor: pointer;
	font-size: 16px;
	max-width: 336px;
	padding: 24px 10px;
	text-align: center;
	transition: 0.3s;
	width: 100%;
}

.c-button-blue:hover {
	background: #002a52;
	color: #ffffff;
}

.c-button-white-arrow {
	background: #ffffff;
	border: 1px solid #023e78;
	color: #023e78;
	cursor: pointer;
	font-size: 16px;
	max-width: 336px;
	padding: 24px 10px;
	position: relative;
	text-align: center;
	transition: 0.3s;
	width: 100%;
}

.c-button-white-arrow::after {
	background: url(../img/icon-arrow-blue.svg) center center no-repeat;
	content: "";
	height: 14px;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	transition: right 0.3s;
	width: 23px;
}

.c-button-white-arrow:hover {
	background: #023e78;
	color: #ffffff;
}

.c-button-white-arrow:hover::after {
	background: url(../img/icon-arrow-white.svg) center center no-repeat;
	right: 10px;
}

.c-button-more-yellow {
	border: 3px solid #fff400;
	color: #fff400;
	display: block;
	font-size: 24px;
	line-height: normal;
	margin-inline: auto;
	max-width: 315px;
	padding: 30px 10px 32px 10px;
	position: relative;
	text-align: center;
	text-align: center;
	transition: 0.3s;
	width: 100%;
}

.c-button-more-yellow::after {
	background: url(../img/icon-arrow-yellow.svg) center center/cover no-repeat;
	content: "";
	height: 14px;
	position: absolute;
	right: 32px;
	top: 50%;
	transform: translateY(-50%);
	transition: right 0.3s;
	width: 20px;
}

.c-button-more-yellow:hover {
	background: #fff400;
	color: #1a1a1a;
}

.c-button-more-yellow:hover::after {
	background: url(../img/icon-arrow-black.svg) center center no-repeat;
	right: 16px;
}

.c-button-more-white {
	align-items: center;
	color: #ffffff;
	display: flex;
	font-size: 32px;
	gap: 19px;
	padding-right: 140px;
	position: relative;
}

.c-button-more-white__arrow {
	border-bottom: 2px solid #ffffff;
	display: block;
	height: 10px;
	position: absolute;
	right: 26px;
	transition: 0.3s;
	width: 95px;
	z-index: 1;
}

.c-button-more-white__arrow::after {
	border-right: 2px solid #ffffff;
	bottom: -4.85px;
	content: "";
	display: block;
	height: 18px;
	position: absolute;
	right: 6px;
	transform: rotate(-55deg);
	transition: 0.3s;
	width: 2px;
}

.c-button-more-white__circle {
	background: url(../img/circle.png) center center no-repeat;
	background-size: contain;
	content: "";
	display: block;
	height: 51px;
	left: 238px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 51px;
}

.c-button-more-navy {
	align-items: center;
	color: #023e78;
	display: flex;
	font-size: 32px;
	gap: 19px;
	padding-right: 140px;
	position: relative;
}

.c-button-more-navy__arrow {
	border-bottom: 2px solid #023e78;
	display: block;
	height: 10px;
	position: absolute;
	right: 26px;
	transition: 0.3s;
	width: 95px;
	z-index: 1;
}

.c-button-more-navy__arrow::after {
	border-right: 2px solid #023e78;
	bottom: -4.85px;
	content: "";
	display: block;
	height: 18px;
	position: absolute;
	right: 6px;
	transform: rotate(-55deg);
	transition: 0.3s;
	width: 2px;
}

.c-button-more-navy__circle {
	background: url(../img/circle-fill.png) center center no-repeat;
	background-size: contain;
	content: "";
	display: block;
	height: 51px;
	left: 238px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 51px;
}

.c-lower-mv {
	position: relative;
}

.c-lower-mv__background {
	overflow: hidden;
	-o-object-fit: cover;
	object-fit: cover;
}

.c-lower-mv__background img {
	height: 250px;
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
}

.c-lower-mv__background::before {
	background: rgba(26, 26, 26, 0.2) center center no-repeat;
	content: "";
	height: 250px;
	inset: 0 0 0 0;
	position: absolute;
	width: 100%;
}

.c-lower-mv__background::after {
	background: url(../img/lower-mv-decoration_pc.png) center center/contain;
	content: "";
	height: 250px;
	left: 0;
	position: absolute;
	top: 0;
	width: 365.654px;
}

.c-lower-mv__title {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 8px;
	left: 17.1875%;
	position: absolute;
	top: 70px;
}

.c-lower-mv__title-en {
	align-items: center;
	background: #ffffff;
	color: #023e78;
	display: inline-flex;
	font-size: 60px;
	height: 72px;
}

.c-lower-mv__title-jp {
	align-items: center;
	background: #ffffff;
	color: #023e78;
	display: inline-flex;
	font-size: 20px;
	font-weight: 700;
	height: 29px;
	height: 29px;
}

.c-breadcrumb {
	align-items: center;
	display: flex;
	overflow: auto;
	padding-bottom: 8px;
	padding-top: 8px;
	white-space: nowrap;
  font-size: 12px;
	color: #888888;
}

.c-breadcrumb__item {
	color: #888888;
	font-size: 12px;
}

.c-breadcrumb__item:not(:last-child)::after {
	content: "＞";
	margin-left: 8px;
	margin-right: 8px;
}

.breadcrumb-separation {
	margin-left: 8px;
	margin-right: 8px;
}

.c-breadcrumb__text {
	color: #1a1a1a;
}

.current-item {
	color: #1a1a1a;
}

.c-heading {
	align-items: flex-start;
	color: #023e78;
	display: flex;
	flex-direction: column;
}

.c-heading-white {
	align-items: flex-start;
	color: #ffffff;
	display: flex;
	flex-direction: column;
}

.c-heading__en {
	align-items: center;
	display: inline-flex;
	font-size: 100px;
	height: 120px;
	margin-bottom: -4px;
}

.c-heading__jp {
	align-items: center;
	display: inline-flex;
	font-size: 24px;
	font-weight: 700;
	height: 35px;
}

.c-heading-block__h2 {
	align-items: center;
	background: #f8f8f8;
	border-left: 6px solid #023e78;
	color: #023e78;
	display: flex;
	font-size: 20px;
	font-weight: 700;
	padding: 10px 20px 10px 26px;
}

.c-heading-block__h3 {
	align-items: center;
	border-bottom: 1px solid #023e78;
	color: #023e78;
	display: flex;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.22;
	padding-bottom: 10px;
}

.c-heading-block__h4 {
	color: #023e78;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
}

.c-excerpt-block {
	background: #f8f8f8;
	border-left: 4px solid #023e78;
	margin-right: 114px;
	padding: 30px 35px;
	position: relative;
}

.c-excerpt-block::after {
	background: url(../img/quote.png) center center/cover;
	content: "";
	height: 47.436px;
	left: 20px;
	position: absolute;
	top: 15px;
	width: 55.076px;
	z-index: 0;
}

.c-excerpt-block__text {
	position: relative;
	z-index: 1;
}

.c-sidebar {
	width: 300px;
}

.c-sidebar__title {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
}

.c-sidebar-new__lists {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 16px;
}

.c-sidebar-new__link {
	display: flex;
	justify-content: space-between;
	width: 300px;
}

.c-sidebar-new__thumbnail {
	height: 100px;
	width: 100px;
}

.c-sidebar-new__thumbnail img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.c-sidebar-new__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 190px;
}

.c-sidebar-new__meta {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.c-sidebar-new__label {
	align-items: center;
	border: 1px solid #e61264;
	color: #e61264;
	display: flex;
	justify-content: center;
	line-height: normal;
	padding: 3.5px 9px;
}

.c-sidebar-new__date {
	color: #888888;
	line-height: normal;
}

.c-sidebar-new__title {
	display: -webkit-box;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.c-sidebar-category {
	margin-top: 80px;
}

.c-sidebar-category h2 {
	border-bottom: 1px solid #ddd;
	padding-bottom: 21px;
}

.c-sidebar-category__lists {
	display: flex;
	flex-direction: column;
}

.c-sidebar-category__link {
	align-items: center;
	border-bottom: 1px solid #ddd;
	display: flex;
	font-size: 16px;
	font-weight: 700;
	height: 57px;
	line-height: normal;
	padding-left: 39px;
	position: relative;
}

.c-sidebar-category__link::after {
	background: url(../img/arrow.png) center center/contain;
	content: "";
	height: 16.026px;
	left: 20px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 9.424px;
}

.c-pagination{
	display: flex;
	justify-content: center;
	gap: 8px;
}

.c-pagination__prev,
.c-pagination__next {
	background: #f8f8f8;
	height: 50px;
	position: relative;
	width: 50px;
}

.c-pagination__prev::after,
.c-pagination__next::after {
	background: url(../img/icon-chevron-left.png) center center/cover no-repeat;
	content: "";
	height: 16.026px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 9.424px;
}

.c-pagination__prev {
	margin-right: 30px;
}

.c-pagination__numbers {
	display: flex;
	gap: 8px;
}

.c-pagination__number {
	align-items: center;
	background: #f8f8f8;
	color: #888888;
	display: flex;
	font-size: 16px;
	height: 50px;
	justify-content: center;
	line-height: normal;
	width: 50px;
}

.c-pagination__number.c-pagination__current {
	background: #023e78;
	color: #ffffff;
}

.c-pagination__next {
	margin-left: 30px;
}

.c-pagination__next::after {
	background: url(../img/icon-chevron-right.png) center center/cover no-repeat;
}

.p-about {
	padding-bottom: 243px;
	padding-top: 104px;
	position: relative;
}

.p-about__background {
	max-height: 800px;
	position: absolute;
	right: 0;
	top: 0;
	width: 39%;
	z-index: -1;
}

.p-about__background img,
.p-about__background source {
	max-height: 800px;
	width: 100%;
}

.p-about__background::before {
	background: rgba(2, 62, 120, 0.8) center center no-repeat;
	content: "";
	height: 100%;
	inset: 0 0 0 0;
	position: absolute;
	width: 100%;
}

.p-about__top {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.p-about__content {
	align-items: center;
	display: flex;
	gap: 40px;
	justify-content: space-between;
	margin-top: 28px;
	max-width: 1100px;
}

.p-about__text {
	width: calc(36.27% - 20px);
}

.p-about__image {
	width: calc(63.73% - 20px);
}

.p-fv {
	margin-bottom: 150px;
	margin-left: 50px;
	overflow: hidden;
	position: relative;
}

.p-fv-swiper {
	margin-left: 40px;
	overflow: hidden;
}

.p-fv-title {
	bottom: 60px;
	left: 0;
	position: absolute;
	z-index: 2;
}

.p-fv-title__en {
	align-items: flex-start;
	color: #023e78;
	display: flex;
	flex-direction: column;
	font-size: 60px;
	gap: 16px;
}

.p-fv-title__above {
	display: flex;
}

.p-fv-title__text {
	align-items: center;
	background: #ffffff;
	display: inline-flex;
	height: 72px;
}

.p-fv-title__text.p-fv-title__text--change {
	margin-left: -1px;
	padding-left: 16px;
}

.p-fv-title__jp {
	align-items: center;
	background: #023e78;
	color: #ffffff;
	display: inline-flex;
	font-size: 20px;
	font-weight: 700;
	height: 29px;
	margin-top: 16px;
}

.p-service {
	margin-top: 119px;
}

.p-service.l-bg-diagonal::before {
	top: 445px;
}

.p-service__top {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.p-service__cards {
	display: flex;
	justify-content: space-between;
	margin-top: 25px;
	padding-top: 55px;
}

.p-service__cards .p-service__card:nth-child(2) {
	margin-top: 60px;
}

.p-service__cards .p-service__card:nth-child(3) {
	margin-top: 120px;
}

.p-service__card {
	width: 29.1%;
}

.p-service__card-number {
	height: 123px;
	position: absolute;
	right: 0;
	top: -55px;
	width: 102px;
}

.p-service__card-number img {
	height: 123px;
	width: 102px;
}

.p-service__card-image {
	position: relative;
}

.p-service__card-title {
	align-items: flex-start;
	bottom: 33px;
	color: #023e78;
	display: flex;
	flex-direction: column;
	font-size: 28px;
	font-weight: 700;
	gap: 8px;
	left: -32px;
	position: absolute;
}

.p-service__card-title--text {
	align-items: center;
	background: #ffffff;
	display: inline-flex;
	height: 41px;
}

.p-service__card-text {
	margin-top: 14px;
}

.p-case {
	background: url(../img/case-bg.png) center center/cover;
	margin-top: 109px;
	padding-bottom: 127px;
	padding-top: 100px;
}

.p-case__top {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.p-case__cards {
	display: flex;
	flex-wrap: wrap;
	gap: 70px 0;
	justify-content: space-between;
	margin-top: 77px;
}

.p-case__card {
	width: 29.09%;
}

.p-case__card:hover .p-case__card-arrow {
	background: url(../img/arrow-icon-yellow.png) center center/cover no-repeat;
	right: -10px;
}

.p-case__card-image {
	align-items: center;
	background: #ffffff;
	display: flex;
	height: 240px;
	justify-content: center;
}

.p-case__card-image img {
	width: 200px;
}

.p-case__card-company {
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	margin-top: 14px;
}

.p-case__card-bottom {
	color: #ffffff;
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
	position: relative;
}

.p-case__card-category {
	border: 1px solid #ffffff;
	display: inline-flex;
	font-weight: 700;
	line-height: normal;
	margin-right: 36px;
	padding: 5px 16px;
}

.p-case__card-arrow {
	background: url(../img/arrow-icon.png) center center/cover no-repeat;
	height: 30px;
	position: absolute;
	right: 0;
	top: 0;
	transition: 0.3s;
	width: 30px;
}

.p-news {
	margin-bottom: 160px;
	margin-top: 160px;
}

.p-news.l-bg-diagonal::before {
	height: 640px;
	top: 297px;
}

.p-news__top {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.p-news__body {
	margin-top: 80px;
}

.p-news__card {
	background: #ffffff;
	box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
	margin-inline: auto;
	max-width: 768px;
	padding: 56px 40px 40px;
}

.p-news__lists .p-news__link:nth-child(1) {
	padding-bottom: 27px;
	padding-top: 26px;
}

.p-news__lists .p-news__link:nth-child(2) {
	padding-bottom: 27px;
}

.p-news__lists .p-news__link:nth-child(3) {
	padding-bottom: 23px;
	padding-top: 28px;
}

.p-news__link {
	border-bottom: 1px solid #ddd;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.p-news__link-meta {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.p-news__link-label {
	align-items: center;
	border: 1px solid #e61264;
	color: #e61264;
	display: flex;
	gap: 10px;
	justify-content: center;
	line-height: normal;
	padding: 6px 23px;
}

.p-news__link-date {
	color: #888888;
}

.p-news__link-title {
	color: #1a1a1a;
	font-size: 16px;
	font-weight: 700;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding-right: 40px;
}

.p-footer-links {
	display: flex;
}

.p-footer-links__link {
	padding-bottom: 52px;
	padding-top: 52px;
	text-align: center;
	width: 50%;
}

.p-footer-link__download {
	background: url(../img/img-download.png) center center/cover;
}

.p-footer-link__contact {
	background: url(../img/img-contact.png) center center/cover;
}

.p-footer-links__head {
	color: #ffffff;
	line-height: normal;
	margin-bottom: 41px;
}

.p-footer-links__title-en {
	font-size: 60px;
	margin-bottom: 3px;
}

.p-footer-links__title-jp {
	font-size: 16px;
	font-weight: 700;
}

.p-footer {
	background: #1a1a1a;
	color: #ffffff;
	padding-bottom: 17px;
	padding-top: 129px;
	position: relative;
	text-align: center;
}

.p-footer__company {
	text-align: center;
}

.p-footer__name img {
	width: 363px;
}

.p-footer__info {
	margin-bottom: 76px;
	margin-top: 34px;
}

.p-footer__text {
	display: inline-block;
	text-align: left;
}

.p-footer__button {
	bottom: 40px;
	position: absolute;
	right: 20px;
	width: 40px;
}

.p-philosophy {
	margin-bottom: 120px;
	margin-top: 70px;
	padding-bottom: 172px;
}

.p-philosophy__mission,
.p-philosophy__vision {
	height: 353px;
	max-width: 1100px;
	padding: 20px;
	position: relative;
}

.p-philosophy__mission .c-heading-white .c-heading__jp,
.p-philosophy__vision .c-heading-white .c-heading__jp {
	height: 35px;
}

.p-philosophy__mission {
	background: url(../img/img-company01_pc.png) center center/cover;
}

.p-philosophy__vision {
	background: url(../img/img-company02_pc.png) center center/cover;
	margin-top: 257px;
}

.p-philosophy-message__wrapper {
	background: #ffffff;
	box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
	display: flex;
	flex-direction: column;
	gap: 30px;
	left: 50%;
	padding: 30px 40px;
	position: absolute;
	top: 293px;
	transform: translateX(-50%);
	width: 688px;
}

.p-philosophy-message__title {
	color: #023e78;
	font-size: 24px;
	font-weight: 700;
	line-height: normal;
	text-align: center;
}

.p-company {
	background: url(../img/bg-campany.png) center center/cover;
	padding-bottom: 92.5px;
	padding-top: 92.5px;
}

.p-company__card {
	background: #ffffff;
	border: 1px solid #707070;
	margin-inline: auto;
	max-width: 768px;
	padding: 59px 40px;
}

.p-company__title {
	font-size: 24px;
	font-weight: 700;
	line-height: normal;
	text-align: center;
}

.p-company__content {
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	margin-inline: auto;
	margin-top: 60px;
	text-align: left;
}

.p-company__content tr {
	height: 72px;
}

.p-company__content tr:first-child th {
	border-top: 1px solid #023e78;
}

.p-company__content tr:first-child td {
	border-top: 1px solid #e8eaec;
}

.p-company__content th,
.p-company__content td {
	overflow-wrap: break-word;
	padding: 24px 32px;
	padding-left: 32px;
	vertical-align: middle;
	white-space: normal;
	word-break: break-word;
}

.p-company__content th {
	border-bottom: 1px solid #023e78;
	width: 200px;
}

.p-company__content td {
	border-bottom: 1px solid #e8eaec;
	width: 488px;
}

.p-company__content tr:nth-of-type(2) td {
	padding-left: 39px;
}

.p-executives {
	padding-bottom: 187px;
	padding-top: 117px;
}

.p-executives.l-bg-diagonal::before {
	bottom: -45px;
	top: auto;
}

.p-executives__title {
	font-size: 24px;
	font-weight: 700;
	text-align: center;
}

.p-executives__cards {
	display: flex;
	flex-direction: column;
	gap: 60px;
	margin-inline: auto;
	margin-top: 55px;
	max-width: 688px;
}

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

.p-executives__content {
	display: flex;
	flex-direction: column;
	gap: 30px;
	width: 408px;
}

.p-executives__content-top {
	align-items: center;
	display: flex;
	gap: 20px;
}

.p-executives__position {
	font-weight: 700;
	line-height: normal;
}

.p-executives__name {
	font-size: 20px;
	font-weight: 700;
	line-height: normal;
}

.p-executives__sns {
	display: flex;
	gap: 24px;
}

.p-executives__sns img {
	width: 32px;
}

.p-executives__image {
	height: 320px;
	width: 240px;
}

.p-news-home {
	display: flex;
	gap: 40px;
	justify-content: center;
	padding-bottom: 138px;
	padding-top: 70px;
}

.p-news-home__main {
	flex: 1;
	max-width: 760px;
}

.p-news-home__title {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.25;
}

.p-news-home__lists {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin-top: 20px;
}

.p-news-home__link {
	align-items: flex-start;
	display: flex;
	gap: 20px;
	max-width: 760px;
}

.p-news-home__link img {
	aspect-ratio: 250/156;
	height: auto;
	width: 32.9%;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-news-home__link-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 12px;
	max-width: 64.5%;
}

.p-news-home__link-meta {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.p-news-home__link-label {
	align-items: center;
	border: 1px solid #e61264;
	color: #e61264;
	display: flex;
	justify-content: center;
	line-height: normal;
	padding: 3.5px 9px;
}

.p-news-home__link-date {
	color: #888888;
	line-height: normal;
}

.p-news-home__link-title {
	display: -webkit-box;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.27;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.p-news-home__pagination {
	margin-top: 60px;
}

.p-news-single {
	display: flex;
	gap: 40px;
	justify-content: center;
	padding-bottom: 160px;
	padding-top: 70px;
}

.p-news-single__main {
	flex: 1;
	max-width: 760px;
}

.p-news-single__top {
	display: flex;
	flex-direction: column;
	gap: 24px;
	max-width: 760px;
}

.p-news-single__top-meta {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.p-news-single__top-label {
	align-items: center;
	border: 1px solid #e61264;
	color: #e61264;
	display: flex;
	justify-content: center;
	line-height: normal;
	padding: 7px 24px;
}

.p-news-single__top-date {
	color: #888888;
	line-height: normal;
}

.p-news-single__top-title {
	display: -webkit-box;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.27;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.p-news-single__body {
	margin-top: 40px;
}

.p-news-single__body h2 {
	background: #f8f8f8;
	border-left: 6px solid #023e78;
	color: #023e78;
	font-size: 20px;
	font-weight: 700;
	line-height: normal;
	padding: 7px 20px;
}

.p-news-single__body h3 {
	border-bottom: 1px solid #023e78;
	color: #023e78;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.22;
	margin-top: 30px;
	padding-bottom: 9px;
}

.p-news-single__body h4 {
	color: #023e78;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	margin-top: 28px;
}

.p-news-single__body p,
.p-news-single__body ol,
.p-news-single__body ul {
	margin-top: 14px;
}

.p-news-single__body ol {
	padding-left: 1.5em;
}

.p-news-single__body ol li::marker {
	content: counters(list-item, ".") ". ";
}

.p-news-single__body ul {
	font-weight: 400;
	padding-left: 1.5em;
}

.p-news-single__body ul li::marker {
	content: "・";
}

.p-news-single__excerpt {
	background: #f8f8f8;
	border-left: 4px solid #023e78;
	display: flex;
	margin-right: 114px;
	margin-top: 14px;
	padding: 31px;
	position: relative;
	z-index: 1;
}

.p-news-single__excerpt p {
	z-index: 1;
}

.p-news-single__excerpt::after {
	background: url(../img/quote.png) center center/cover;
	content: "";
	height: 47.436px;
	left: 20px;
	position: absolute;
	top: 15px;
	width: 55.076px;
	z-index: -1;
}

.wp-block-quote {
	margin-inline-start: 0px;
  margin-inline-end: 0px;
}

.p-news-single__pagination {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
}

.p-news-single__pagination-prev,
.p-news-single__pagination-next {
	align-items: center;
	border: 1px solid #023e78;
	border-radius: 4px;
	color: #023e78;
	display: flex;
	height: 36px;
	justify-content: center;
	width: 114px;
}

.p-service-top__title {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.43;
	margin-bottom: 80px;
	margin-top: 70px;
	text-align: center;
}

.p-service-top__cards .l-bg-diagonal {
	margin-top: 116px;
}

.p-service-top__cards .l-bg-diagonal::before {
	clip-path: polygon(0% 83%, 100% 100%, 100% 17%, 0% 0%);
	height: 1329px;
	top: -116px;
}

.p-service-top__cards .p-service-top__card:nth-of-type(3) {
	margin-top: 117px;
}

.p-service-top__card {
	align-items: flex-start;
	display: flex;
	flex-direction: row-reverse;
	margin-inline: auto;
	max-width: 1280px;
	padding: 53px 50px 84px 140px;
}

.p-service-top__card.p-service-top__card2 {
	flex-direction: row;
	padding: 61px 140px 84px 50px;
}

.p-service-top__card2 .p-service-top__image {
	margin-left: 0px;
	margin-right: -60px;
}

.p-service-top__card2 .p-service-top__card-number {
	left: auto;
	right: 44px;
	top: -62px;
}

.p-service-top__card2 .p-service-top__detail {
	padding: 77px 40px 62px;
}

.p-service-top__image {
	margin-left: -60px;
	margin-top: 63px;
	max-width: 560px;
	width: 51.38%;
}

.p-service-top__detail {
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
	padding: 82px 40px 60px;
	position: relative;
	width: 54.13%;
}

.p-service-top__card-number {
	height: 123px;
	left: 58px;
	position: absolute;
	top: -53px;
	width: 102px;
}

.p-service-top__card-number img {
	height: 123px;
	width: 102px;
}

.p-service-top__jp {
	font-family: "Noto Sans CJK JP";
	font-size: 40px;
	font-weight: 700;
	line-height: normal;
}

.p-service-top__en {
	color: #023e78;
	font-size: 16px;
	line-height: normal;
}

.p-service-top__text {
	margin-top: 59px;
}

.p-service-top__dls {
	border-top: 1px solid #cccccc;
	margin-top: 58px;
}

.p-service-top__dl {
	align-items: center;
	border-bottom: 1px solid #cccccc;
	display: flex;
	gap: 52px;
	padding-block: 29px;
}

.p-service-top__dl dt {
	font-weight: 700;
	white-space: nowrap;
}

.p-service-top__button {
	display: flex;
	justify-content: center;
	margin-inline: auto;
	margin-top: 62px;
}

.p-service-top__button.c-button-white-arrow {
	max-width: 304px;
	padding: 21px 10px;
}

.p-service-flow {
	background: url(../img/bg-service-flow.png) center center/cover;
	margin-top: 78px;
	padding-bottom: 119px;
	padding-top: 76px;
}

.p-service-flow__title {
	color: #ffffff;
	font-size: 24px;
	font-weight: 700;
	line-height: normal;
	text-align: center;
}

.p-service-flow__items {
	display: flex;
	justify-content: center;
	margin-top: 66px;
}

.p-service-flow__items .p-service-flow__item:not(:first-child) {
	margin-left: -23px;
}

.p-service-flow__step-head {
	align-items: baseline;
	color: #fff400;
	display: flex;
	font-weight: 500;
	gap: 7px;
	line-height: normal;
}

.p-service-flow__step {
	font-size: 20px;
}

.p-service-flow__number {
	font-size: 40px;
}

.p-service-flow__item-body {
	padding-bottom: 47px;
	padding-top: 46px;
	position: relative;
}

.p-service-flow__item-body1 {
	background: url(../img/Rectangle1.png) center center/cover;
	padding-left: 43px;
	width: 298px;
	z-index: 4;
}

.p-service-flow__item-body2 {
	background: url(../img/Rectangle2.png) center center/cover;
	padding-left: 50px;
	width: 298px;
	z-index: 3;
}

.p-service-flow__item-body3 {
	background: url(../img/Rectangle3.png) center center/cover;
	padding-left: 50px;
	width: 298px;
	z-index: 2;
}

.p-service-flow__item-body4 {
	background: url(../img/Rectangle4.png) center center/cover;
	padding-bottom: 23px;
	padding-left: 50px;
	width: 275px;
	z-index: 1;
}

.p-service-flow__item-title {
	color: #023e78;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
}

.p-service-flow__item-text {
	margin-top: 22px;
	width: 200px;
}

.p-service-flow__item-text span {
	color: #e61264;
}

.p-service-qa {
	padding-bottom: 162px;
	padding-top: 160px;
}

.p-service-qa__title {
	font-size: 24px;
	font-weight: 700;
	line-height: normal;
	text-align: center;
}

.p-service-qa__boxes {
	margin-inline: auto;
	margin-top: 60px;
	max-width: 688px;
}

.p-service-qa__box {
	border-bottom: 1px solid #ddd;
}

.p-service-qa__box.is-open .p-service-question {
	color: #e61264;
}

.p-service-qa__box.is-open .p-service-qa__toggle::before {
	background: #e61264;
	transform: translate(-50%, -50%) rotate(45deg);
}

.p-service-qa__box.is-open .p-service-qa__toggle::after {
	background: #e61264;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.p-service-qa__head {
	align-items: center;
	background: none;
	display: flex;
	justify-content: space-between;
	padding-bottom: 31px;
	padding-top: 31px;
	cursor: pointer;
	width: 100%;
}

.p-service-question {
	font-size: 20px;
	font-weight: 700;
	line-height: normal;
	transition: 0.3s;
}

.p-service-qa__toggle {
	flex-shrink: 0;
	height: 21px;
	margin-right: 15px;
	position: relative;
	width: 21px;
}

.p-service-qa__toggle::before,
.p-service-qa__toggle::after {
	background: #1a1a1a;
	content: "";
	height: 2px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: 0.3s;
	width: 21px;
}

.p-service-qa__toggle::before {
	transform: translate(-50%, -50%) rotate(90deg);
}

.p-service-qa__body {
	display: none;
	padding: 0 60px 30px 40px;
}

.p-case-study {
	padding-bottom: 160px;
	padding-top: 70px;
}

.p-case-study__categories {
	display: flex;
	gap: 16px;
}

.p-case-study__category {
	background: #eee;
	border-radius: 4px;
	font-weight: 700;
	line-height: normal;
	padding: 12px 0px;
	text-align: center;
	width: 208px;
}

.p-case-study__case {
	margin-top: 83px;
}

.p-case-study__title {
	align-items: center;
	display: flex;
	gap: 20px;
}

.p-case-study__title-jp {
	border-left: 8px solid #023e78;
	font-size: 28px;
	font-weight: 700;
	line-height: normal;
	padding-left: 10px;
}

.p-case-study__title-en {
	color: #023e78;
	font-size: 16px;
	line-height: normal;
}

.p-case-study__cards {
	display: flex;
	flex-wrap: wrap;
	gap: 62px 0;
	justify-content: space-between;
	margin-top: 60px;
}

.p-case-study__card {
	border-radius: 12px;
	box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
	width: 510px;
}

.p-case-study__card-head {
	background: #023e78;
	border-radius: 12px 12px 0 0;
	color: #ffffff;
	padding: 22px 40px 20px;
	position: relative;
}

.p-case-study__card-business {
	font-weight: 700;
	line-height: 1.21429;
}

.p-case-study__card-name {
	font-size: 24px;
	font-weight: 700;
	line-height: normal;
	margin-top: 5px;
}

.p-case-study__card-name span {
	font-size: 16px;
	margin-left: 15px;
}

.p-case-study__card-image {
	align-items: center;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
	display: flex;
	height: 112px;
	justify-content: center;
	position: absolute;
	right: 20px;
	top: -6px;
	width: 160px;
}

.p-case-study__card-image img {
	height: 100px;
	width: 100px;
}

.p-case-study__card-body {
	padding: 33px 40px;
}

.p-case-study__card-title {
	border-bottom: 1px solid #ddd;
	font-size: 16px;
	font-weight: 700;
	line-height: normal;
	padding-bottom: 12px;
}

.p-case-study__card-title span {
	margin-left: 9px;
}

.p-case-study__card-list {
	margin-top: 27px;
}

.p-case-study__list-title {
	font-size: 18px;
	font-weight: 700;
	line-height: normal;
	padding-left: 30px;
	position: relative;
}

.p-case-study__list-title::before {
	background: url(../img/Icon-checkbox.png) center center/cover;
	content: "";
	height: 20px;
	left: 0;
	position: absolute;
	top: 8px;
	width: 20px;
}

.p-case-study__list-text {
	margin-top: 10px;
}

.p-case-study__button {
  display: flex;
  justify-content: center;
	margin-top: 60.8px;
}

.p-case-study__button .c-button-white-arrow {
	max-width: 1000px;
	padding: 19px 80px;
	width: auto;
}

.p-download {
	padding-bottom: 160px;
	padding-top: 70px;
}

.p-download__contents {
	display: flex;
}

.p-download__document {
	padding-right: 40px;
	width: 50%;
}

.p-download__document-title {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.42857;
}

.p-download__document-image {
	display: flex;
	margin-inline: auto;
	margin-top: 32px;
	width: 300px;
}

.p-download__document-text {
	margin-top: 22px;
}

.p-download__form-area {
	background: #edf3f8;
	border-radius: 12px;
	padding: 40px;
	width: 50%;
}

.p-download__form-title {
	font-size: 32px;
	font-weight: 700;
	line-height: normal;
}

.p-download__form {
	margin-top: 37px;
}

.p-download__fields {
	display: flex;
	flex-direction: column;
	gap: 31px;
}

.p-download__field {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.p-download__field-head {
	align-items: center;
	display: flex;
}

.p-download__field-label {
	font-size: 18px;
	font-weight: 700;
	line-height: normal;
}

.p-download__field-item input::-moz-placeholder {
	color: #ccc;
}

.p-download__field-item input::placeholder {
	color: #ccc;
}

.p-download__form-text {
	background: #ffffff;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
	line-height: normal;
	padding: 8px 15px;
	width: 100%;
}

.p-download__form-text:focus {
	border: 1px solid #1a1a1a;
	outline: none;
}

.p-download__field-tag {
	background: #e61264;
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	height: 20px;
	line-height: normal;
	margin-left: 9px;
	padding: 1px 8px;
	width: 40px;
}

.p-download__privacy {
	margin-top: 46px;
}

.p-download__checkbox {
	display: flex;
	justify-content: center;
}

.p-download__checkbox-input {
	height: 1px;
	position: absolute;
	width: 1px;
	clip: rect(0, 0, 0, 0);
	overflow: hidden;
}

.p-download__checkbox-input:checked + .p-download__checkbox-text .p-download__checkbox-box::after {
	opacity: 1;
}

.p-download__checkbox-input:checked ~ .wpcf7-list-item-label .p-download__checkbox-box::after {
  opacity: 1;
}

.p-download__checkbox-text {
	align-items: center;
	cursor: pointer;
	display: flex;
	font-size: 16px;
	font-weight: 500;
	gap: 10px;
	justify-content: center;
	line-height: normal;
}

.p-download__checkbox-box {
	position: relative;
	width: 32px;
}

.p-download__checkbox-box::before {
	background: #ffffff;
	border: 1px solid #3e3e3e;
	content: "";
	height: 32px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 32px;
}

.p-download__checkbox-box::after {
	background: url(../img/Check.png) no-repeat center center/contain;
	content: "";
	height: 11px;
	left: 50%;
	opacity: 0;
	position: absolute;
	top: -5px;
	transform: translateX(-50%);
	width: 14px;
}

.p-download__button {
	margin-inline: auto;
	margin-top: 38px;
}

.p-download__button.c-button-white {
padding: 0;
}

.p-download__button-submit {
	background: none;
	border: none;
	width: 100%;
	cursor: pointer;
	padding: 19px 10px;
}


.p-download__thanks-title {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.5;
}

.p-download__thanks {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 38px;
}

.p-download__thanks-text1 {
	line-height: normal;
}

.p-download__thanks-text2 {
	line-height: normal;
}

.p-download__thanks-text2 .u-underline-link {
	font-weight: 500;
}

.p-download__thanks-text3 {
	line-height: 2;
}

.p-contact {
	padding-bottom: 160px;
	padding-top: 70px;
}

.p-contact__wrapper {
	margin-inline: auto;
	max-width: 687px;
}

.p-contact__form-area {
	margin-top: 80px;
}

.p-contact__form-title {
	font-size: 24px;
	font-weight: 700;
	line-height: normal;
	text-align: center;
}

.p-contact__form {
	margin-top: 58px;
}

.p-contact__fields {
	display: flex;
	flex-direction: column;
	gap: 29.3px;
}

.p-contact__field {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.p-contact__field-head {
	align-items: center;
	display: flex;
}

.p-contact__field-label {
	font-size: 18px;
	font-weight: 700;
	line-height: normal;
}

.p-contact__field-item input::-moz-placeholder,
.p-contact__field-item select::-moz-placeholder,
.p-contact__field-item textarea::-moz-placeholder {
	color: #ccc;
}

.p-contact__field-item input::placeholder,
.p-contact__field-item select::placeholder,
.p-contact__field-item textarea::placeholder {
	color: #ccc;
}

.p-contact__form-text,
.p-contact__form-select,
.p-contact__form-textarea {
	background: #ffffff;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
	line-height: normal;
	padding: 9px 15px;
	width: 100%;
}

.p-contact__form-text:focus,
.p-contact__form-select:focus,
.p-contact__form-textarea:focus {
	border: 1px solid #1a1a1a;
	outline: none;
}

.p-contact__form-select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("../img/select-arrow.png");
	background-position: right 16px center; /* 画像の位置 */
	background-repeat: no-repeat;
	background-size: 10.814px 6.807px; /* 画像のサイズ（幅 高さ）*/
	cursor: pointer;
}

.p-contact__form-select:invalid {
	color: #ccc;
}

.p-contact__form-textarea {
	height: 240px;
}

.p-contact__field-tag {
	background: #e61264;
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	height: 20px;
	line-height: normal;
	margin-left: 9px;
	padding: 1px 8px;
	width: 40px;
}

.p-contact__privacy {
	margin-top: 43px;
}

.p-contact__checkbox-input {
	height: 1px;
	position: absolute;
	width: 1px;
	clip: rect(0, 0, 0, 0);
	overflow: hidden;
}

.p-contact__checkbox-input:checked + .p-contact__checkbox-text .p-contact__checkbox-box::after {
	opacity: 1;
}

.p-contact__checkbox-input:checked ~ .wpcf7-list-item-label .p-contact__checkbox-box::after {
  opacity: 1;
}

.p-contact__checkbox-text {
	align-items: center;
	cursor: pointer;
	display: flex;
	font-size: 16px;
	font-weight: 500;
	gap: 10px;
	justify-content: center;
	line-height: normal;
}

.p-contact__checkbox,
.wpcf7-list-item-label {
  display: flex;
  justify-content: center;
}

.p-contact__checkbox-box {
	position: relative;
	width: 32px;
}

.p-contact__checkbox-box::before {
	background: #ffffff;
	border: 1px solid #3e3e3e;
	content: "";
	height: 32px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 32px;
}

.p-contact__checkbox-box::after {
	background: url(../img/Check.png) no-repeat center center/contain;
	content: "";
	height: 11px;
	left: 50%;
	opacity: 0;
	position: absolute;
	top: -5px;
	transform: translateX(-50%);
	width: 14px;
}


.p-contact__button {
	margin-inline: auto;
	margin-top: 38px;
}

.p-contact__button.c-button-white {
	max-width: 295px;
	padding: 0;
}

.p-contact__button-submit {
	background: none;
	border: none;
	width: 100%;
	padding: 21px 10px;
	cursor: pointer;
}

.wpcf7-spinner {
  display: none !important;
}

.p-contact__thanks-title {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.5;
}

.p-contact__thanks {
	margin-inline: auto;
	max-width: 687px;
	padding-bottom: 157px;
	padding-top: 70px;
}

.p-contact__thanks-link {
	margin-top: 11px;
}

.u-separate {
	margin-bottom: 24px;
	margin-top: 24px;
}

.u-font-en {
	font-family: "Fira Sans", sans-serif;
	font-style: italic;
}

.u-dev__bg-color {
	background: #edf3f8;
}

.u-underline {
	font-weight: 700;
	text-decoration: underline;
}

.u-underline-link {
	color: #023e78;
	font-weight: 400;
	text-decoration-line: underline;
}

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

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

.c-button-more-white:hover .c-button-more-white__arrow {
	right: -19px;
	width: 140px;
}

.c-button-more-navy:hover .c-button-more-navy__arrow {
	right: -19px;
	width: 140px;
}

.u-hidden-tp {
	display: none;
}

}

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

.u-hidden-pc {
	display: none;
}

}

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

.l-inner {
	padding-left: 50px;
	padding-right: 50px;
}

.l-bg-diagonal::before {
	height: 700px;
}

.c-button-more-yellow {
	max-width: 250px;
}

.c-heading__en {
	font-size: 60px;
	height: 70px;
}

.c-sidebar {
	width: 200px;
}

.c-sidebar-new__link {
	width: 200px;
}

.c-sidebar-new__thumbnail {
	height: 70px;
	width: 70px;
}

.c-sidebar-new__body {
	gap: 0;
	width: 120px;
}

.c-sidebar-new__meta {
	align-items: normal;
	flex-direction: column;
}

.c-sidebar-new__label {
	margin-right: auto;
}

.c-sidebar-new__title {
	-webkit-line-clamp: 2;
}

.p-about__background {
	width: 47%;
}

.p-service__card-title {
	font-size: 20px;
}

.p-service__card-title--text {
	height: 28px;
}

.p-footer-links__title-en {
	font-size: 48px;
}

.p-service-top__card {
	padding: 53px 20px 84px 30px;
}

.p-service-top__card.p-service-top__card2 {
	padding: 53px 30px 84px 20px;
}

.p-service-top__card2 .p-service-top__image {
	margin-right: -180px;
}

.p-service-top__image {
	margin-left: -180px;
}

.p-service-top__detail {
	width: 70%;
}

.p-service-top__jp {
	font-size: 25px;
}

.p-service-flow__item-body {
	height: 16.3710938vw;
	padding-bottom: 0;
	padding-top: 2.59vw;
}

.p-service-flow__item-body1 {
	padding-left: 3.90625vw;
	width: 23.28125vw;
}

.p-service-flow__item-body2 {
	padding-left: 3.90625vw;
	width: 23.28125vw;
}

.p-service-flow__item-body3 {
	padding-left: 3.90625vw;
	width: 23.28125vw;
}

.p-service-flow__item-body4 {
	padding-left: 3.90625vw;
	width: 21.484375vw;
}

.p-service-flow__item-title {
	font-size: 1.5625vw;
}

.p-service-flow__item-text {
	font-size: 1.09375vw;
	width: 15.625vw;
}

.p-case-study__card {
	max-width: 470px;
	min-width: 320px;
	width: 39.84375vw;
}

.p-case-study__card-head {
	padding: 22px 20px 20px;
}

.p-case-study__card-image {
	right: -6px;
	width: 112px;
}

.p-download__checkbox-text {
	font-size: 14px;
}

.p-download__checkbox-box {
	width: 24px;
}

.p-download__checkbox-box::before {
	height: 24px;
	width: 24px;
}

.p-contact__checkbox-text {
	font-size: 14px;
}

.p-contact__checkbox-box {
	width: 24px;
}

.p-contact__checkbox-box::before {
	height: 24px;
	width: 24px;
}

.u-hidden-tb {
	display: none;
}

.c-drawer__nav {
	height: calc(100vh - 100px);
	top: 100px;
}

.p-news-single__excerpt {
	margin-right: 0;
}

}

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

.l-inner {
	padding-left: 20px;
	padding-right: 20px;
}

.l-bg-diagonal::before {
	clip-path: polygon(0% 92%, 100% 100%, 100% 8%, 0% 0%);
	height: 854px;
	top: 107px;
}

.c-header__inner {
	height: 60px;
	padding: 10px 20px 13px 20px;
}

.c-header__logo {
	width: 198px;
}

.c-button-more-yellow {
	border: 2px solid #fff400;
	font-size: 16px;
	max-width: 295px;
	padding: 29px 10px 29px 10px;
}

.c-button-more-yellow::after {
	right: 20px;
}

.c-button-more-white {
	font-size: 20px;
	gap: 12px;
	justify-content: flex-end;
	padding-right: 20px;
}

.c-button-more-white__arrow {
	position: relative;
	right: 0;
	width: 64px;
}

.c-button-more-white__arrow {
	width: 64px;
}

.c-button-more-white__circle {
	height: 40px;
	left: auto;
	right: 0;
	width: 40px;
}

.c-button-more-navy {
	font-size: 20px;
	gap: 12px;
	justify-content: flex-end;
	padding-right: 20px;
}

.c-button-more-navy__arrow {
	position: relative;
	right: 0;
	width: 64px;
}

.c-button-more-navy__arrow {
	width: 64px;
}

.c-button-more-navy__circle {
	height: 40px;
	left: auto;
	right: 0;
	width: 40px;
}

.c-lower-mv__background::after {
	background: url(../img/lower-mv-decoration_sp.png) center center/contain;
	width: 165.654px;
}

.c-lower-mv__title {
	gap: 9px;
	left: 5.3333333333%;
	top: 92px;
}

.c-lower-mv__title-en {
	font-size: 32px;
	height: 38px;
}

.c-lower-mv__title-jp {
	font-size: 16px;
	height: 19px;
}

.c-heading__en {
	font-size: 52px;
	height: auto;
	line-height: 1.2;
}

.c-heading__jp {
	font-size: 16px;
	height: 23px;
}

.c-sidebar {
	width: 100%;
}

.c-sidebar-new__lists {
	gap: 20px;
	margin-top: 24px;
}

.c-sidebar-new__link {
	width: 100%;
}

.c-sidebar-new__thumbnail {
	height: 24vw;
	width: 35.8%;
}

.c-sidebar-new__thumbnail img {
	aspect-ratio: 120/90;
}

.c-sidebar-new__body {
	gap: 6px;
	max-width: 60.6%;
	width: 100%;
}

.c-sidebar-new__meta {
	align-items: center;
	flex-direction: row;
}

.c-sidebar-new__label {
	font-size: 12px;
	padding: 2.5px 9px;
}

.c-sidebar-new__title {
	-webkit-line-clamp: 3;
}

.c-sidebar-category {
	margin-top: 60px;
}

.c-pagination__prev,
.c-pagination__next {
	height: 40px;
	width: 40px;
}

.c-pagination__prev::after,
.c-pagination__next::after {
	height: 12.722px;
	width: 7.481px;
}

.c-pagination__prev {
	margin-right: 6px;
}

.c-pagination__numbers {
	gap: 6px;
}

.c-pagination__number {
	height: 40px;
	width: 40px;
}

.c-pagination__next {
	margin-left: 6px;
}

.p-about {
	padding-bottom: 175px;
	padding-top: 0;
}

.p-about__background {
	bottom: 135px;
	top: auto;
	width: 79%;
}

.p-about__content {
	flex-direction: column;
	gap: 69px;
	margin-top: 67px;
}

.p-about__text {
	padding-inline: 1px;
	width: 100%;
}

.p-about__image {
	margin-bottom: 35px;
	width: 100%;
}

.p-fv {
	margin-bottom: 60px;
	margin-left: 20px;
}

.p-fv-swiper {
	margin-left: 20px;
}

.p-fv-title {
	bottom: 20px;
}

.p-fv-title__en {
	font-size: 40px;
	gap: 8px;
}

.p-fv-title__above {
	align-items: flex-start;
	flex-direction: column;
	gap: 8px;
}

.p-fv-title__text {
	height: 48px;
}

.p-fv-title__text.p-fv-title__text--change {
	margin-left: 0;
	padding-left: 0;
}

.p-fv-title__jp {
	font-size: 16px;
	height: auto;
	line-height: normal;
	margin-top: 17px;
}

.p-service.l-bg-diagonal::before {
	bottom: -108px;
	clip-path: polygon(0% 95%, 100% 100%, 100% 8%, 0% 0%);
	height: 1178px;
	top: auto;
}

.p-service {
	margin-top: 60px;
}

.p-service__cards {
	flex-direction: column;
	gap: 73px;
	margin-bottom: 32px;
	margin-top: 12px;
}

.p-service__cards .p-service__card:nth-child(2),
.p-service__cards .p-service__card:nth-child(3) {
	margin-top: 0px;
}

.p-service__card {
	padding-left: 15px;
	width: 100%;
}

.p-service__card-title {
	font-size: 28px;
	left: -15px;
}

.p-service__card-title--text {
	height: 41px;
}

.p-case {
	background: url(../img/case-bg-sp.png) center center/cover;
	margin-top: 168px;
	padding-bottom: 60px;
	padding-top: 60px;
}

.p-case__cards {
	flex-direction: column;
	gap: 48px 0;
	margin-bottom: 60px;
	margin-top: 47px;
}

.p-case__card {
	margin-inline: auto;
	max-width: 450px;
	width: 100%;
}

.p-case__card-image {
	height: 251px;
}

.p-news.l-bg-diagonal::before {
	clip-path: polygon(0% 90%, 100% 100%, 100% 10%, 0% 0%);
	height: 580px;
	top: 116px;
}

.p-news {
	margin-bottom: 187px;
	margin-top: 60px;
}

.p-news__body {
	margin-top: 60px;
}

.p-news__card {
	margin-bottom: 38px;
	padding: 40px 20px;
}

.p-news__lists .p-news__link:nth-child(1) {
	padding-top: 0;
}

.p-news__lists .p-news__link:nth-child(2) {
	padding-top: 17px;
}

.p-news__lists .p-news__link:nth-child(3) {
	padding-bottom: 31px;
	padding-top: 18px;
}

.p-news__link-label {
	font-size: 12px;
	padding: 4px 20px 3px;
}

.p-news__link-title {
	font-size: 14px;
	padding-right: 0;
}

.p-footer-links {
	flex-direction: column;
}

.p-footer-links__link {
	padding-bottom: 35px;
	padding-inline: 15px;
	padding-top: 35px;
	width: 100%;
}

.p-footer-link__download {
	background: url(../img/img-download-sp.png) center center/cover;
}

.p-footer-link__contact {
	background: url(../img/img-contact-sp.png) center center/cover;
}

.p-footer-links__head {
	margin-bottom: 39px;
}

.p-footer-links__title-en {
	font-size: 40px;
	margin-bottom: 5px;
}

.p-footer {
	padding-inline: 20px;
	padding-top: 75px;
}

.p-footer__name img {
	width: 280px;
}

.p-footer__info {
	margin-bottom: 34px;
	margin-top: 31px;
}

.p-footer__copyright {
	font-size: 12px;
}

.p-footer__button {
	bottom: 28px;
	height: 40px;
	right: 10px;
	width: 40px;
}

.p-philosophy {
	margin-bottom: 60px;
	margin-top: 60px;
	padding-bottom: 218px;
}

.p-philosophy.l-inner {
	padding-inline: 0;
}

.p-philosophy__mission,
.p-philosophy__vision {
	height: 281px;
}

.p-philosophy__mission {
	background: url(../img/img-company01_sp.png) center center/cover;
}

.p-philosophy__vision {
	background: url(../img/img-company02_sp.png) center center/cover;
	margin-top: 254px;
}

.p-philosophy-message__wrapper {
	gap: 18px;
	margin-inline: 20px;
	min-width: 335px;
	padding: 20px 20px 18px;
	top: 241px;
	transform: translateX(calc(-50% - 20px));
	width: calc(100% - 40px);
}

.p-philosophy-message__title {
	font-size: 20px;
}

.p-company {
	background: url(../img/bg-campany-sp.png) center center/cover;
	padding-bottom: 89px;
	padding-top: 60px;
}

.p-company__card {
	max-width: 500px;
	padding: 40px 20px 41px;
}

.p-company__content {
	font-size: 14px;
	line-height: normal;
	margin-top: 40px;
}

.p-company__content tr {
	height: 49px;
}

.p-company__content th {
	padding: 14.6px 0;
	width: 33.9%;
}

.p-company__content td {
  padding: 14.5px 0 12.5px 20px;
	width: 66.1%;
}

.p-company__content tr:nth-of-type(2) td {
	padding-left: 25px;
}

.p-executives {
	padding-bottom: 149px;
	padding-top: 56px;
}

.p-executives.l-bg-diagonal::before {
	bottom: 49px;
	clip-path: polygon(0% 94.5%, 100% 100%, 100% 5.5%, 0% 0%);
	height: 1238px;
}

.p-executives__cards {
	margin-top: 36px;
	max-width: 335px;
}

.p-executives__cards .p-executives__card:last-child {
	margin-top: -6px;
}

.p-executives__card {
	flex-direction: column-reverse;
	gap: 22px;
}

.p-executives__content {
	gap: 17px;
	width: auto;
}

.p-executives__image {
	margin-inline: auto;
}

.p-news-home {
	flex-direction: column;
	gap: 59px;
	padding-bottom: 101px;
	padding-top: 56px;
}

.p-news-home__title {
	font-size: 20px;
	line-height: normal;
}

.p-news-home__lists {
	gap: 20px;
	margin-top: 25px;
}

.p-news-home__link {
	gap: 12px;
}

.p-news-home__link img {
	aspect-ratio: 120/90;
	width: 35.8%;
}

.p-news-home__link-body {
	gap: 6px;
	max-width: 60.6%;
}

.p-news-home__link-label {
	font-size: 12px;
	padding: 1.5px 9px;
}

.p-news-home__link-title {
	font-size: 14px;
}

.p-news-home__pagination {
	margin-top: 40px;
}

.p-news-single {
	flex-direction: column;
	gap: 100px;
	padding-bottom: 100px;
	padding-top: 60px;
}

.p-news-single__top {
	gap: 20px;
}

.p-news-single__top-title {
	font-size: 20px;
	line-height: 1.4;
	margin-bottom: 4px;
}

.p-news-single__body {
	margin-top: 20px;
}

.p-news-single__body h2 {
	line-height: 1.2;
	padding: 11px 20px;
}

.p-news-single__body h3 {
	padding-bottom: 9px;
}

.p-news-single__body h4 {
	margin-top: 29px;
}

.p-news-single__excerpt {
	margin-right: 0;
	padding: 30px 35px 29px 31px;
}

.p-service-top__title {
	font-size: 20px;
	margin-block: 60px;
}

.p-service-top__cards .l-bg-diagonal {
	margin-top: 0;
}

.p-service-top__cards .l-bg-diagonal::before {
	clip-path: polygon(0% 94%, 100% 100%, 100% 6%, 0% 0%);
	height: 1092px;
	top: -18px;
}

.p-service-top__cards .p-service-top__card:nth-of-type(3) {
	margin-top: 25px;
}

.p-service-top__cards .p-service-top__card:nth-of-type(3) .p-service-top__jp {
	line-height: 1.28;
}

.p-service-top__cards .p-service-top__card:nth-of-type(3) .p-service-top__en {
	margin-top: 7px;
}

.p-service-top__card {
	flex-direction: column;
	padding: 0 20px 55px;
}

.p-service-top__card.p-service-top__card2 {
	flex-direction: column;
	padding: 0 20px 55px;
}

.p-service-top__card2 .p-service-top__image {
	margin-bottom: -148.5px;
	margin-left: -20px;
	margin-right: auto;
	margin-top: 25px;
}

.p-service-top__card2 .p-service-top__card-number {
	right: 20px;
	top: -42px;
}

.p-service-top__card2 .p-service-top__detail {
	padding: 39.5px 20px 40px;
}

.p-service-top__card2 .p-service-top__jp {
	line-height: 1.28;
}

.p-service-top__card2 .p-service-top__en {
	margin-top: 7px;
}

.p-service-top__image {
	margin-bottom: -148.5px;
	margin-left: auto;
	margin-right: -20px;
	margin-top: 0;
	width: 56%;
}

.p-service-top__detail {
	padding: 39.5px 20px 40px;
	width: 100%;
}

.p-service-top__card-number {
	height: 82px;
	left: 20px;
	top: -43.5px;
	width: 71px;
}

.p-service-top__card-number img {
	height: 82px;
	width: 71px;
}

.p-service-top__jp {
	font-size: 28px;
}

.p-service-top__en {
	font-size: 14px;
	margin-top: 3px;
}

.p-service-top__text {
	margin-top: 30px;
}

.p-service-top__dls {
	margin-top: 31px;
}

.p-service-top__dl {
	padding-block: 18px;
}

.p-service-top__button {
	margin-top: 32px;
}

.p-service-top__button.c-button-white-arrow {
	font-size: 14px;
	padding: 23px 10px;
}

.p-service-top__button.c-button-white-arrow::after {
	right: 11px;
}

.p-service-flow {
	background: url(../img/bg-service-flow-sp.png) center center/cover;
	margin-top: 6px;
	padding-bottom: 60px;
	padding-top: 60px;
}

.p-service-flow__items {
	flex-direction: column;
	margin-inline: auto;
	margin-top: 40px;
	max-width: 335px;
}

.p-service-flow__items .p-service-flow__item:not(:first-child) {
	margin-left: 0;
}

.p-service-flow__items .p-service-flow__item:nth-child(1) .p-service-flow__step-head {
	margin-top: 26px;
}

.p-service-flow__items .p-service-flow__item:nth-child(2) {
	margin-top: -22px;
}

.p-service-flow__items .p-service-flow__item:nth-child(2) .p-service-flow__step-head {
	margin-top: 45px;
}

.p-service-flow__items .p-service-flow__item:nth-child(3) {
	margin-top: -29px;
}

.p-service-flow__items .p-service-flow__item:nth-child(3) .p-service-flow__step-head {
	margin-top: 49px;
}

.p-service-flow__items .p-service-flow__item:nth-child(4) {
	margin-top: -29px;
}

.p-service-flow__items .p-service-flow__item:nth-child(4) .p-service-flow__step-head {
	margin-top: 63px;
}

.p-service-flow__item {
	display: flex;
	gap: 17px;
}

.p-service-flow__step-head {
	flex-direction: column;
	gap: 0;
}

.p-service-flow__item-body {
	height: auto;
}

.p-service-flow__item-body1 {
	background: url(../img/Rectangle1-sp.png) center center/cover;
	max-width: 275px;
	padding-bottom: 45px;
	padding-inline: 20px;
	padding-top: 22px;
	width: 100%;
}

.p-service-flow__item-body2 {
	background: url(../img/Rectangle2-sp.png) center center/cover;
	max-width: 275px;
	padding-bottom: 48px;
	padding-inline: 20px;
	padding-top: 38px;
	width: 100%;
}

.p-service-flow__item-body3 {
	background: url(../img/Rectangle3-sp.png) center center/cover;
	max-width: 275px;
	padding-bottom: 47px;
	padding-inline: 20px;
	padding-top: 41px;
	width: 100%;
}

.p-service-flow__item-body4 {
	background: url(../img/Rectangle4-sp.png) center center/cover;
	margin-left: -1px;
	max-width: 275px;
	padding-bottom: 20px;
	padding-inline: 20px;
	padding-top: 42px;
	width: 100%;
}

.p-service-flow__item-title {
	font-size: 18px;
	line-height: normal;
	text-align: center;
}

.p-service-flow__item-text {
	font-size: 14px;
	margin-top: 7px;
	width: 100%;
}

.p-service-qa {
	padding-bottom: 102px;
	padding-inline: 20px;
	padding-top: 60px;
}

.p-service-qa__boxes {
	margin-top: 40px;
}

.p-service-qa__box.is-open .p-service-qa__toggle {
	margin-top: 3px;
}

.p-service-qa__head {
	align-items: start;
	gap: 44px;
	padding-bottom: 16px;
	padding-top: 16px;
}

.p-service-question {
	font-size: 16px;
	text-align: left;
}

.p-service-qa__toggle {
	margin-right: 8px;
}

.p-service-qa__body {
	padding: 2px 0 15px 0;
}

.p-case-study {
	padding-bottom: 100px;
	padding-top: 60px;
}

.p-case-study__categories {
	flex-direction: column;
	gap: 20px;
	padding-inline: 20.5px;
}

.p-case-study__category {
	margin-inline: auto;
	max-width: 294px;
	width: 100%;
}

.p-case-study__case {
	margin-top: 60px;
}

.p-case-study__title {
	align-items: flex-start;
	flex-direction: column;
	gap: 0;
}

.p-case-study__title-jp {
	font-size: 24px;
	padding-bottom: 15px;
}

.p-case-study__title-en {
	font-size: 14px;
	margin-top: -16px;
	padding-left: 18px;
}

.p-case-study__cards {
	align-items: center;
	flex-direction: column;
	gap: 53px 0;
	margin-top: 30px;
}

.p-case-study__card {
	max-width: 500px;
	min-width: 0;
	width: 89.333333vw;
}

.p-case-study__card-head {
	padding: 19px 20px 21px;
}

.p-case-study__card-business {
	font-size: 12px;
	line-height: normal;
}

.p-case-study__card-name {
	font-size: 16px;
	margin-top: -1px;
}

.p-case-study__card-name span {
	font-size: 14px;
	margin-left: 12px;
}

.p-case-study__card-image {
	border-radius: 4px;
	height: 68px;
	right: 20px;
	top: 6px;
	width: 90px;
}

.p-case-study__card-image img {
	height: 52px;
	width: 52px;
}

.p-case-study__card-body {
	padding: 18px 20px 20px;
}

.p-case-study__card-title span {
	margin-left: 7px;
}

.p-case-study__card-list {
	margin-top: 16.5px;
}

.p-case-study__list-title {
	font-size: 16px;
	padding-left: 25px;
}

.p-case-study__list-title::before {
	height: 15.516px;
	top: 6px;
	width: 15.516px;
}

.p-case-study__button {
	margin-top: 40px;
	width: 100%;
}

.p-case-study__button .c-button-white-arrow {
  font-size: 14px;
	padding: 21px 25px;
	width: 295px;
}

.p-case-study__button .c-button-white-arrow::after {
	right: 10px;
}

.p-download {
	padding-bottom: 100px;
	padding-top: 60px;
}

.p-download__contents {
	flex-direction: column;
	gap: 60px;
}

.p-download__document {
	padding-right: 0;
	width: 100%;
}

.p-download__document-title {
	font-size: 20px;
	line-height: 1.4;
}

.p-download__form-area {
	padding: 40px 20px;
	width: 100%;
}

.p-download__form-title {
	font-size: 24px;
}

.p-download__form {
	margin-top: 39px;
}

.p-download__fields {
	gap: 19px;
}

.p-download__field {
	gap: 7px;
}

.p-download__field-label {
	font-size: 14px;
}

.p-download__form-text {
	font-size: 14px;
	padding: 11px 15px;
}

.p-download__field-tag {
	font-size: 10px;
	height: 17px;
	margin-left: 8px;
	margin-top: 1px;
	width: 36px;
}

.p-download__privacy {
	margin-top: 42px;
}

.p-download__checkbox-text a {
	margin-right: -4px;
}

.p-download__checkbox-box {
	width: 28px;
}

.p-download__checkbox-box::before {
	height: 28px;
	top: 2px;
	width: 28px;
}

.p-download__checkbox-box::after {
	top: -2px;
}

.p-download__button {
	font-size: 14px;
	margin-top: 39px;
}

.p-download__button.c-button-white {

}

.p-download__thanks-title {
	font-size: 24px;
	line-height: 1.667;
}

.p-download__thanks {
	margin-top: 34px;
}

.p-download__thanks-text1 {
	line-height: 1.72;
}

.p-contact {
	padding-bottom: 100px;
	padding-top: 62px;
}

.p-contact__form-area {
	margin-top: 60px;
}

.p-contact__form {
	margin-top: 38px;
}

.p-contact__fields {
	gap: 18.5px;
}

.p-contact__field {
	gap: 7px;
}

.p-contact__field-label {
	font-size: 14px;
}

.p-contact__form-text,
.p-contact__form-select,
.p-contact__form-textarea {
	padding: 11px 13px;
}

.p-contact__form-text,
.p-contact__form-select,
.p-contact__form-textarea {
	font-size: 14px;
}

.p-contact__form-textarea {
	height: 140px;
}

.p-contact__field-tag {
	font-size: 10px;
	height: 17px;
	margin-left: 8px;
	margin-top: 1px;
	width: 36px;
}

.p-contact__checkbox-text a {
	margin-right: -4px;
}

.p-contact__checkbox-box {
	width: 28px;
}

.p-contact__checkbox-box::before {
	height: 28px;
	top: 2px;
	width: 28px;
}

.p-contact__checkbox-box::after {
	top: -3px;
}

.p-contact__button {
	font-size: 14px;
	margin-top: 41px;
}

.p-contact__thanks-title {
	font-size: 24px;
	line-height: 1.667;
}

.p-contact__thanks {
	padding-bottom: 100px;
	padding-top: 60px;
}

.p-contact__thanks-link {
	margin-top: 14px;
}

.u-hidden-sp {
	display: none;
}

.p-contact__form-title {
  margin-top: -22px;
}

.wp-block-contact-form-7-contact-form-selector {
	margin-top: -21px;
}

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

.p-footer__copyright {
	font-size: 11px;
}

.p-footer__button {
	bottom: 40px;
}

}

.pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
}

.prev,
.next {
	background: #f8f8f8;
	height: 50px;
	position: relative;
	width: 50px;
	gap: 8px;
}

.prev::after,
.next::after {
	background: url(../img/icon-chevron-left.png) center center/cover no-repeat;
	content: "";
	height: 16.026px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 9.424px;
}

.prev {
	margin-right: 22px;
}

.page-numbers {
	align-items: center;
	background: #f8f8f8;
	color: #888888;
	display: flex;
	font-size: 16px;
	height: 50px;
	justify-content: center;
	line-height: normal;
	width: 50px;
}

.page-numbers.current {
	background: #023e78;
	color: #ffffff;
}

.next {
	margin-left: 22px;
}

.next::after {
	background: url(../img/icon-chevron-right.png) center center/cover no-repeat;
}

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

.prev::after,
.next::after {
  width: 7.481px;
  height: 12.722px;
}

.prev {
	margin-right: 0;
}

.c-pagination {
	gap: 6px;
}

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

.next {
	margin-left: 0;
}

.p-contact__button-submit {
	padding: 18.5px 10px;
}

.p-download__button-submit {
	padding: 20px 10px;
}

.p-service__card-title--text {
  height: auto;
	line-height: 1.5;
}

.c-drawer__nav {
  height: calc(100vh - 60px);
	top: 60px;
}


}

.p-contact__form-select {
color: #CCC;
}

/* value="" 以外を選んだら通常色に */
.p-contact__form-select option:not([value=""]) {
  color: #1A1A1A;
}

.wpcf7-form input:invalid,
.wpcf7-form select:invalid,
.wpcf7-form textarea:invalid {
  box-shadow: none;
  outline: none;
}

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