@charset "UTF-8";
/* A Modern CSS Reset */
*, *::before, *::after {
	box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
	margin: 0;
}

ul[role=list], ol[role=list] {
	list-style: none;
}

html:focus-within {
	scroll-behavior: smooth;
}

body {
	min-height: 100vh;
	line-height: 1.5;
	text-rendering: optimizeSpeed;
}

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

img, picture {
	display: block;
	max-width: 100%;
}

input, button, textarea, select {
	font: inherit;
}
:root {
	--spacing: 0.02em;
	--scrollbar: 0;
}

* {
	letter-spacing: var(--spacing);
}

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

.preload * {
	transition: none !important;
}

html {
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;
	font-size: 62.5%;
}
html.is-nav-active {
	z-index: 0;
	position: fixed;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

body {
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	min-width: 1310px;
	color: #2d2d2d;
	font-size: 1.6rem;
	line-height: 1.813;
	font-family: "Noto Sans JP", sans-serif;
	line-break: strict;
	word-break: normal;
	overflow-wrap: anywhere;
	opacity: 0;
	transition: opacity 0.3s ease;
}
body.is-font-loaded {
	opacity: 1;
}

input,
textarea,
button {
	font-size: inherit;
	line-height: inherit;
	font-family: inherit;
}

button {
	color: inherit;
}

a {
	color: #2d2d2d;
	text-decoration: none;
}
body:not(.is-touch-device) a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}

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

strong,
em,
b {
	font-weight: bold;
}

em {
	font-style: normal;
}

button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 0;
	border: none;
	background-color: transparent;
	cursor: pointer;
}

b {
	font-weight: bold;
}

ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

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

table {
	border-spacing: 0;
}

.l-page {
	background: #ffffff;
}
.l-header__fixed {
	z-index: 100;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	min-width: 100%;
	padding-right: var(--scrollbar);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 51.44%, rgba(255, 255, 255, 0) 100%);
	transition: background-color 0.2s ease;
}

.l-footer {
	padding: 90px 0;
}

.l-contents {
	background: url(../img/common/bg.png) no-repeat center top;
}
.page-history .l-contents {
	background-image: none;
}
.page-top .l-contents {
	background: none;
}
.page-contact .l-contents {
	padding-bottom: 50px;
}

.l-main {
	overflow: hidden;
}
.page-top .l-main {
	position: relative;
	padding-top: 19px;
}

.l-side-sticky {
	z-index: 10;
	position: fixed;
	top: 140px;
	right: 0;
	width: 66px;
	height: 380px;
}

.c-btn {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	border: 1px solid;
	text-align: center;
	cursor: pointer;
}

.c-textbox,
.c-textarea,
.c-select {
	display: block;
	color: #2d2d2d;
}
.c-textbox:focus,
.c-textarea:focus,
.c-select:focus {
	border-color: #1754b5;
	outline: none;
	background-color: rgba(23, 84, 181, 0.05);
}

.c-textbox {
	width: 100%;
	max-width: 680px;
	height: 60px;
	padding: 12px;
	border: 1px solid #f4f4f4;
	border-radius: 10px;
	background-color: #f4f4f4;
}

.c-textbox::-moz-placeholder {
	color: #909090;
}

.c-textbox::placeholder {
	color: #909090;
}

.c-textbox--search::-moz-placeholder {
	color: #909090;
	font-size: 1.4rem;
}

.c-textbox--search::placeholder {
	color: #909090;
	font-size: 1.4rem;
}

.c-textarea {
	display: block;
	width: 100%;
	height: 180px;
	padding: 24px;
	border: 1px solid #f4f4f4;
	border-radius: 10px;
	outline: none;
	background-color: #f4f4f4;
	resize: vertical;
}

::-ms-expand {
	display: none;
}

.c-radio-list {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 10px;
}

.c-radio {
	position: relative;
	padding-left: 40px;
	line-height: 24px;
	cursor: pointer;
}
.c-radio__input {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	cursor: pointer;
	opacity: 0;
}
.c-radio__input:checked + .c-radio__label::before {
	border-color: #1754b5;
}
.c-radio__input:checked + .c-radio__label::after {
	opacity: 1;
}
.c-radio__label {
	display: inline-block;
	cursor: pointer;
}
.c-radio__label::before, .c-radio__label::after {
	display: block;
	position: absolute;
	border-radius: 100%;
	content: "";
}
.c-radio__label::before {
	top: 0;
	left: 0;
	width: 24px;
	height: 24px;
	border: 1px solid #c3c3c3;
	background: #ffffff;
}
.c-radio__label::after {
	top: 5px;
	left: 5px;
	width: 14px;
	height: 14px;
	background: #1754b5;
	opacity: 0;
}

.c-checkbox {
	display: inline-block;
	position: relative;
	padding-left: 48px;
	line-height: 32px;
	cursor: pointer;
}
.c-checkbox__input {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	cursor: pointer;
	opacity: 0;
}
.c-checkbox__input:checked + .c-checkbox__label::before {
	border-color: #1754b5;
}
.c-checkbox__input:checked + .c-checkbox__label::after {
	opacity: 1;
}
.c-checkbox__label {
	display: inline-block;
	cursor: pointer;
}
.c-checkbox__label::before, .c-checkbox__label::after {
	display: block;
	position: absolute;
	content: "";
}
.c-checkbox__label::before {
	top: 0;
	left: 0;
	width: 32px;
	height: 32px;
	border: 1px solid #c3c3c3;
	border-radius: 4px;
	background: #ffffff;
}
.c-checkbox__label::after {
	top: 10px;
	left: 8.5px;
	width: 15px;
	height: 15px;
	background: url(../img/common/icon_checked.svg) no-repeat center center;
	background-size: contain;
	opacity: 0;
}

.c-inner-min, .c-inner-wide, .c-inner {
	margin-inline: auto;
	padding-inline: 25px;
}

.c-inner {
	max-width: 1310px;
}

.c-inner-wide {
	max-width: none;
}

.c-inner-min {
	width: 100%;
	min-width: calc(1260px + clamp(1.5rem, -12.5rem + 10.938vw, 5rem) * 2);
}

.c-text-link {
	color: #1754b5;
	text-decoration: underline;
}
.c-text-link:hover {
	text-decoration: none;
	transition: opacity 0.2s ease-out;
}
.c-text-link[target=_blank]::after {
	display: inline-block;
	width: 13px;
	height: 13px;
	margin-left: 5px;
	background: url(../img/common/icon_blank.svg) no-repeat left top;
	background-size: contain;
	content: "";
	vertical-align: middle;
}
.c-text-link[href$=".pdf"] {
	padding-left: calc(16px + 8px);
	background: url(../img/common/icon_pdf.svg) no-repeat left top;
	vertical-align: middle;
}
.c-text-link[href$=".pdf"][target=_blank]::after {
	display: none;
}

.c-arrow-link {
	display: inline-block;
	padding-left: calc(7px + 13px);
	background: url(../img/common/arrow_link_red.svg) no-repeat left 0.2em;
	transition: opacity 0.2s ease-out;
}
.c-arrow-link:link, .c-arrow-link:visited {
	color: inherit;
}
.c-arrow-link[target=_blank]::after {
	display: inline-block;
	width: 13px;
	height: 13px;
	margin-left: 5px;
	background: url(../img/common/icon_blank.svg) no-repeat left top;
	background-size: contain;
	content: "";
	vertical-align: middle;
}
.c-arrow-link[href$=".pdf"] {
	padding-left: calc(16px + 8px);
	background: url(../img/common/icon_pdf.svg) no-repeat left top;
	vertical-align: middle;
}
.c-arrow-link[href$=".pdf"][target=_blank]::after {
	display: none;
}
.c-arrow-link[href^="#"] {
	padding-left: calc(12px + 12px);
	background: url(../img/common/anchor_link_red.svg) no-repeat left top;
	vertical-align: middle;
}
.c-arrow-link[download] {
	padding-left: calc(16px + 8px);
	background: url(../img/common/icon_ai.svg) no-repeat left top;
	vertical-align: middle;
}
.c-arrow-link[download]::after {
	background-size: contain;
	vertical-align: middle;
}

.c-rollover-link {
	transition: opacity 0.2s ease-out;
}

.c-list-dot__item {
	position: relative;
	padding-left: 1em;
}
.c-list-dot__item::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "・";
}

.c-list-order-notes {
	counter-reset: order;
}
.c-list-order-notes__item {
	position: relative;
	padding-left: 1.5em;
}
.c-list-order-notes__item::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "*" counter(order);
	counter-increment: order;
}

.c-list-note__item {
	position: relative;
	padding-left: 1em;
}
.c-list-note__item::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "※";
}

.c-list-decimal__item {
	margin-left: 1em;
	padding-left: 0.5em;
	list-style-type: decimal;
}

.c-list-order {
	counter-reset: order;
}
.c-list-order__item {
	position: relative;
	padding-left: 1.5em;
}
.c-list-order__item::before {
	position: absolute;
	top: 0;
	left: 0;
	content: counter(order) ".";
	counter-increment: order;
}

.c-list-roman__item {
	position: relative;
	padding-left: 3em;
}
.c-list-roman__mark {
	position: absolute;
	top: 0;
	left: 0;
	width: 3em;
	padding-right: 0.5em;
	text-align: right;
}

.c-list-data-attr__item {
	position: relative;
}
.c-list-data-attr__item::before {
	position: absolute;
	top: 0;
	left: 0;
	content: attr(data-num);
}
.c-list-data-attr--asterisk-num .c-list-data-attr__item {
	padding-left: 1.5em;
}
.c-list-data-attr--asterisk-num .c-list-data-attr__item::before {
	width: 1.5em;
	height: 1em;
}

.c-list-mark__item {
	position: relative;
	padding-left: 1.5em;
}
.c-list-mark__mark {
	position: absolute;
	top: 0;
	left: 0;
}

.c-desc-list__term:not(:first-child) {
	margin-top: 1em;
}

.c-desc-list-alpha {
	counter-reset: alpha;
}
.c-desc-list-alpha__head {
	position: relative;
	padding-left: 2.5em;
	font-weight: 500;
}
.c-desc-list-alpha__head::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "（" counter(alpha, lower-alpha) "）";
	counter-increment: alpha;
}
.c-desc-list-alpha__desc {
	margin-left: 1em;
}
.c-desc-list-alpha__desc + .c-desc-list-alpha__head {
	margin-top: 1.667em;
}

.c-data-list {
	display: table;
}
.c-data-list__item {
	display: table-row;
}
.c-data-list__item-head {
	display: table-cell;
	position: relative;
	padding-right: 1em;
	color: #1754b5;
	font-weight: 500;
	white-space: nowrap;
}
.c-data-list__item-head::after {
	position: absolute;
	top: 0;
	right: 0;
	content: "：";
	color: #2d2d2d;
}
.c-data-list__item-body {
	display: table-cell;
	width: auto;
}

.p-btn {
	border-radius: 999px;
	border-color: #c3c3c3;
	background-color: #ffffff;
	transition: all 0.2s ease-out;
}
.p-btn.p-btn--transparent {
	background: transparent;
}
.p-btn--lang {
	justify-content: flex-start;
	width: 140px;
	height: 40px;
	padding-left: calc(21px + 21.22px + 2.5px);
	border-color: #2d2d2d;
	background: url(../img/common/icon_lang.svg) no-repeat 21.22px center;
}
.p-btn--lang .p-btn__text {
	width: -moz-fit-content;
	width: fit-content;
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 1;
	font-family: "Poppins", sans-serif;
}
.p-btn--menu {
	justify-content: flex-start;
	border-radius: 7.25806px;
	background-position: 18px center;
	background-repeat: no-repeat;
}
.p-btn--menu.is-history {
	padding-left: calc(26px + 18px + 17px);
	background-image: url(../img/common/icon_history.svg);
}
.p-btn--menu.is-data {
	padding-left: calc(26px + 18px + 15px);
	background-image: url(../img/common/icon_data.svg);
}
.p-btn--menu .p-btn__text {
	font-weight: 500;
	font-size: 1.5rem;
}
.is-history .p-btn--menu .p-btn__text strong {
	--spacing: -0.02em;
	font-weight: 600;
	font-size: 2.4rem;
	font-family: "Poppins", sans-serif;
}
.is-data .p-btn--menu .p-btn__text strong {
	font-weight: 700;
	font-size: 1.8rem;
}
.p-btn--menu.is-history strong {
	--spacing: -0.02em;
	font-weight: 600;
	font-size: 2.4rem;
	font-family: "Poppins", sans-serif;
}
.p-btn--menu.is-data strong {
	font-weight: 700;
	font-size: 1.8rem;
}
.p-btn--sticky {
	font-feature-settings: "vert" on;
	width: 100%;
	border: none;
	color: #ffffff;
	font-weight: 700;
	text-align: center;
}
.p-btn--sticky.is-contact {
	background: #df1a21;
}
.p-btn--sticky.is-free {
	background: #1754b5;
}
.p-btn--contact {
	justify-content: normal;
	width: 580px;
	height: 120px;
	padding-right: 55px;
	padding-left: calc(50px + 55px + 52px);
	border: 2px solid #df1a21;
	border-radius: 999px;
	background: url(../img/common/icon_mail.svg) no-repeat 55px center #ffffff;
}
.p-btn--contact .p-btn__text {
	color: #df1a21;
	font-weight: 700;
	font-size: 2.6rem;
	line-height: 1.615;
}
.p-btn--detail {
	position: relative;
	justify-content: normal;
	width: 240px;
	height: 60px;
	padding: 0 43px 0 30px;
	border: 1px solid #2d2d2d;
	border-radius: 999px;
	text-align: left;
}
.p-btn--detail::before {
	display: block;
	position: absolute;
	top: 50%;
	right: 25px;
	width: 10px;
	height: 10px;
	transform: translateY(-50%);
	border-radius: 50%;
	background: #df1a21;
	content: "";
}
.p-btn--detail-variable {
	width: -moz-fit-content;
	width: fit-content;
	min-width: 240px;
	max-width: 350px;
}
.p-btn--detail.is-centering {
	display: flex;
	margin-inline: auto;
}
.p-btn--detail .p-btn__text {
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 1.6;
}
.p-btn--history {
	border-color: #ffffff;
	background-color: transparent;
}
.p-btn--history .p-btn__text {
	color: #ffffff;
}
.p-btn--back {
	position: relative;
	width: 240px;
	height: 60px;
	padding-inline: 30px;
	border: 1px solid #2d2d2d;
	border-radius: 999px;
}
.p-btn--back::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 20px;
	width: 9px;
	height: 12.5px;
	margin-top: -4px;
	transform: rotate(180deg);
	background: url(../img/common/arrow_link_red.svg) no-repeat 0px center #ffffff;
	background-size: contain;
	content: "";
}
.p-btn--link {
	position: relative;
	justify-content: start;
	width: 406px;
	height: 200px;
	padding: 50px 75px 50px 50px;
	border: 1px solid #c3c3c3;
	border-radius: 10px;
	background: #ffffff;
}
.p-btn--link::before {
	display: block;
	position: absolute;
	top: 50%;
	right: 20px;
	width: 32px;
	height: 32px;
	transform: translateY(-50%);
	border-radius: 50%;
	background: url(../img/common/arrow_link_wh.svg) no-repeat center center #df1a21;
	background-size: 5px auto;
	content: "";
}
.p-btn--link .p-btn__text {
	--spacing: 0.05em;
	font-weight: 700;
	font-size: 2.6rem;
	line-height: 1;
}
.p-btn--submit {
	width: 480px;
	height: 110px;
	margin-inline: auto;
	border: 2px solid #df1a21;
	border-radius: 999px;
	background: #ffffff;
	color: #df1a21;
	font-weight: 700;
	font-size: 2.2rem;
	line-height: 1.591;
}
.p-btn--submit[disabled] {
	border-color: #c3c3c3;
	background: #f4f4f4;
	color: #909090;
	cursor: default;
}

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

.p-btn-list {
	display: grid;
}
.p-btn-list--category-link {
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.p-btn-common .p-btn-list {
	gap: 20px;
}
.p-section {
	margin-bottom: 120px;
}
.p-section--unset {
	margin-bottom: unset;
}
.p-section--wide {
	position: relative;
	right: 50%;
	left: 50%;
	width: 100vw;
	margin-right: -50vw;
	margin-left: -50vw;
}
.p-section--zebra {
	position: relative;
	margin-bottom: 0;
}
.p-section--zebra::before, .p-section--zebra::after {
	display: block;
	z-index: -1;
	position: absolute;
	width: 200%;
	background: #f4f4f4;
	content: "";
}
.p-section--zebra::before {
	left: -100%;
}
.p-section--zebra::after {
	right: -100%;
}

.p-btn-common {
	margin-bottom: 40px;
}

.p-fig--main {
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto;
}
.p-fig--main .p-fig__img {
	display: grid;
	justify-content: center;
	margin-bottom: 60px;
}
.p-fig--main .p-fig__caption {
	padding-top: 0;
}
.p-fig--1col, .p-fig--2col, .p-fig--3col {
	display: grid;
	row-gap: 60px;
}
.p-fig--1col, .p-fig--2col, .p-fig--3col {
	margin-bottom: 60px;
}
.p-fig--1col {
	grid-template-columns: 1fr;
}
.p-fig--2col {
	grid-template-columns: repeat(2, 1fr);
	gap: 60px;
}
.p-fig--3col {
	grid-template-columns: repeat(3, 1fr);
	gap: 60px 20px;
}
.p-fig__caption {
	padding-top: 17px;
}
.p-fig__caption-title {
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.611;
}
.p-fig__item:has(.p-text) .p-fig__caption-title {
	margin-bottom: 10px;
}
.p-fig__item > a {
	transition: opacity 0.2s ease-out;
}
.p-fig__img {
	display: grid;
	justify-content: center;
}
.p-fig__img img {
	border-radius: 10px;
}

.p-title-lv2, .p-title-lv3, .p-title-lv4 {
	font-weight: 700;
}
.p-title-lv2 {
	font-size: 3rem;
	line-height: 1.6;
}
.p-title-lv2:not(.p-title-lv2--main) {
	position: relative;
	margin-bottom: 60px;
	padding-bottom: 31px;
	padding-left: 32.5px;
	border-bottom: 1px solid #c3c3c3;
}
.p-title-lv2:not(.p-title-lv2--main)::before {
	display: block;
	position: absolute;
	top: calc(0.8em - 6px);
	left: 0;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #df1a21;
	content: "";
}
.p-title-lv2--main {
	margin-bottom: 30px;
	text-align: center;
}
.p-title-lv3 {
	margin-bottom: 30px;
	font-size: 2.6rem;
	line-height: 1.615;
}
.p-title-lv3--mark {
	position: relative;
	padding-left: 26px;
}
.p-title-lv3--mark::before {
	display: block;
	position: absolute;
	top: calc(0.8em - 5px);
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #df1a21;
	content: "";
}
.p-title-colored {
	color: #df1a21;
}

.p-title-grid {
	display: grid;
	grid-template-columns: 1fr 170px;
	width: -moz-fit-content;
	width: fit-content;
	gap: 16px;
}
.p-title-grid--date {
	grid-template-columns: 140px 1fr;
}
.p-title-grid__date {
	padding-top: 0.4em;
}
.p-title-grid .p-btn--detail {
	width: 170px;
	height: 44px;
	padding: 0 26px 0 27px;
}
.p-title-grid .p-btn--detail::before {
	top: 50%;
	right: 18px;
	width: 8px;
	height: 8px;
}
.p-title-grid .p-btn--detail .p-btn__text {
	font-size: 1.4rem;
	line-height: 1.571;
}

.p-title-date {
	--spacing: 0.1em;
	display: grid;
	place-content: center;
	max-width: 140px;
	height: 30px;
	border-radius: 999px;
	background: #df1a21;
	color: #ffffff;
	font-weight: 500;
	font-size: 1.3rem;
	line-height: 1;
	font-family: "Poppins", sans-serif;
}

.p-text {
	margin-bottom: 30px;
	font-size: 1.6rem;
	line-height: 1.813;
}
.p-text:last-child {
	margin-bottom: 0;
}
.p-text-notes .p-text {
	color: #666666;
	font-size: 1.4rem;
	line-height: 1.786;
}

.p-text-notes {
	margin-bottom: 20px;
}

.p-desc-list {
	margin-bottom: 40px;
}
.p-desc-list--inline {
	display: grid;
	grid-template-columns: 115px 1fr;
	gap: 20px;
}
.p-desc-list__title {
	margin-bottom: 10px;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.611;
}
.p-desc-list__desc {
	margin-bottom: 20px;
}
.p-desc-list--inline .p-desc-list__desc {
	margin-bottom: 0;
}

.p-list-inline {
	display: grid;
	-moz-column-gap: 20px;
	column-gap: 20px;
}
.p-list-inline.is-2col {
	grid-template-columns: repeat(2, 1fr);
}
.p-list-inline.is-3col {
	grid-template-columns: repeat(3, 1fr);
}

.p-2col {
	display: flex;
	-moz-column-gap: 65px;
	column-gap: 65px;
	flex-direction: row-reverse;
	justify-content: space-between;
	margin-bottom: 60px;
}
.p-2col *:last-child {
	margin-bottom: 0;
}

.p-table__cell-w10 {
	width: 10% !important;
}
.p-table__cell-w20 {
	width: 20% !important;
}
.p-table__cell-w30 {
	width: 30% !important;
}
.p-table__cell-w40 {
	width: 40% !important;
}
.p-table__cell-w50 {
	width: 50% !important;
}
.p-table__cell-w60 {
	width: 60% !important;
}
.p-table__cell-w70 {
	width: 70% !important;
}
.p-table__cell-w80 {
	width: 80% !important;
}
.p-table__cell-w90 {
	width: 90% !important;
}
.p-table-container {
	margin-bottom: 60px;
	overflow-x: auto;
}

.p-table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	background: #ffffff;
}
.p-table th,
.p-table td {
	padding: 24px 30px;
	font-size: 1.6rem;
	line-height: 1.625;
	text-align: left;
	vertical-align: top;
}
.p-table th {
	font-weight: 700;
}
.p-table__zebra tbody tr:nth-of-type(2n+1) {
	background: #f4f4f4;
}
.p-box--colored .p-table__zebra tbody tr:nth-of-type(2n+1) {
	background: #ececec;
}
.p-table tr > *:not(:last-child) {
	border-right: 1px solid #c3c3c3;
}
.p-table thead th,
.p-table thead td {
	border-bottom: 1px solid #c3c3c3;
}
.p-table thead th[scope=col] {
	background: #f4f4f4;
}
.p-table thead + tbody th[scope=row] {
	background: #f4f4f4;
}
.p-table thead + tbody tr:not(:last-of-type) th,
.p-table thead + tbody tr:not(:last-of-type) td {
	border-bottom: 1px solid #c3c3c3;
}
.p-table__row-border tr:not(:last-of-type) th,
.p-table__row-border tr:not(:last-of-type) td {
	border-bottom: 1px solid #c3c3c3;
}

.p-box {
	margin-bottom: 60px;
	padding: 70px;
	border: 1px solid #c3c3c3;
	border-radius: 10px;
	background-color: #ffffff;
}
.p-box--colored {
	border-color: #f4f4f4;
	background: #f4f4f4;
}
.p-box > *:last-child {
	margin-bottom: 0;
}

.p-link-list {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	margin-bottom: 60px;
	gap: 5px 50px;
}
.p-link-list--inline {
	flex-direction: row;
}
.p-link-list .c-arrow-link:not([href$=".pdf"]) {
	background-position-y: 0.5em;
}
.p-link-list .c-arrow-link:not([href$=".pdf"])[href^="#"] {
	background-position-y: 0.6em;
}
.p-link-list .c-arrow-link:not([href$=".pdf"])[download] {
	background-position-y: 0.2em;
}
.p-link-list .c-arrow-link[href$=".pdf"] {
	background-position-y: 0.2em;
}
.p-link-list--inverse .c-arrow-link {
	padding-left: 0;
	background-image: none;
}
.p-link-list--inverse .c-arrow-link::after {
	display: inline-block;
	background-position: 0 center;
	background-repeat: no-repeat;
	content: "";
}
.p-link-list--inverse .c-arrow-link:not([href$=".pdf"])::after {
	width: 7px;
	height: 12px;
	margin-left: 13px;
	background-image: url(../img/common/arrow_link_red.svg);
}
.p-link-list--inverse .c-arrow-link:not([href$=".pdf"]):not([href^="#"])[target=_blank]::before {
	display: inline-block;
	width: 13px;
	height: 13px;
	margin-right: 5px;
	background: url(../img/common/icon_blank.svg) no-repeat left top;
	background-size: contain;
	content: "";
	vertical-align: middle;
}
.p-link-list--inverse .c-arrow-link:not([href$=".pdf"])[href^="#"]::after {
	width: 12px;
	height: 9px;
	margin-left: 12px;
	background-image: url(../img/common/anchor_link_red.svg);
}
.p-link-list--inverse .c-arrow-link[href$=".pdf"]::after {
	display: inline-block;
	width: 16px;
	height: 21px;
	margin-left: 8px;
	background-image: url(../img/common/icon_pdf.svg);
}
.p-link-list--inverse .c-arrow-link[download]::after {
	display: inline-block;
	width: 16px;
	height: 20px;
	margin-left: 8px;
	background-image: url(../img/common/icon_ai.svg);
	background-position-y: 0;
}

.p-hr {
	margin-block: 60px;
	border: none;
	border-top: 1px solid #c3c3c3;
}

.p-hr-margin {
	margin: 0;
	padding: 0;
	border: none;
}

.p-cvr {
	margin-bottom: 60px;
	padding-block: 50px;
	background: #f4f4f4;
}
.c-inner .p-cvr {
	position: relative;
}
.c-inner .p-cvr::before, .c-inner .p-cvr::after {
	display: block;
	z-index: inherit;
	position: absolute;
	top: 0;
	width: 200%;
	height: 100%;
	background: #f4f4f4;
	content: "";
}
.c-inner .p-cvr::before {
	left: -100%;
}
.c-inner .p-cvr::after {
	right: -100%;
}
.p-cvr__box {
	z-index: 2;
	position: relative;
	padding: 50px 70px;
	border: 1px solid #c3c3c3;
	border-radius: 10px;
	background-color: #ffffff;
}
.p-cvr--borderless .p-cvr__box {
	border: none;
	border-radius: 0;
}
.p-cvr__box-inner {
	display: grid;
	grid-template-columns: 230px repeat(2, auto);
}
.p-cvr__box-inner.p-contact {
	position: static;
	margin-top: 0;
	background: transparent;
}
.p-cvr__title {
	position: relative;
	grid-column: 1/2;
	padding-left: 22px;
	font-weight: 600;
	font-size: 2.2rem;
}
.p-cvr__title::before {
	display: block;
	position: absolute;
	top: calc(0.9em - 4px);
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #df1a21;
	content: "";
}
.p-cvr__tel {
	grid-column: 2/3;
	padding: 0 50px;
	border-left: 1px solid #c3c3c3;
}
.p-cvr__mail {
	grid-column: 3/4;
	align-content: center;
}
.p-cvr__mail .p-btn--contact {
	width: 400px;
	height: 80px;
	padding-left: 101px;
	border-width: 1px;
	border-color: #c3c3c3;
	background-size: 36px auto;
	text-align: left;
}
.p-cvr__mail .p-btn--contact .p-btn__text {
	color: #2d2d2d;
	font-size: 2rem;
	line-height: 1.6;
}
.p-cvr .p-cvr__tel-sec {
	margin-bottom: 11px;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.611;
}
.p-cvr .p-cvr__tel-num {
	margin-bottom: 14px;
	padding-left: calc(54px + 5px);
	background: url(../img/common/icon_freedial.svg) no-repeat left center;
	color: #1754b5;
	font-size: 4rem;
	line-height: 1;
	font-family: "Poppins", sans-serif;
}
.p-cvr .p-cvr__tel-num.is-no-freedial {
	padding-left: calc(34px + 10px);
	background-image: url(../img/common/icon_tel_bl.svg);
}
.p-cvr .p-cvr__tel-num {
	font-weight: 600;
}
.p-cvr .p-cvr__tel-num a {
	color: inherit;
}
.p-cvr .p-cvr__tel-hours {
	font-size: 1.4rem;
	line-height: 1.3;
}

.p-margin-block {
	margin-bottom: 60px;
}
.p-margin-block > *:last-child {
	margin-bottom: 0;
}

.p-margin-bottom0 {
	margin-bottom: 0px !important;
}

.p-margin-bottom15 {
	margin-bottom: 15px !important;
}

.p-margin-bottom30 {
	margin-bottom: 30px !important;
}

.p-margin-bottom45 {
	margin-bottom: 45px !important;
}

.p-margin-bottom60 {
	margin-bottom: 60px !important;
}

.p-margin-bottom-minus10 {
	margin-bottom: -10px !important;
}

.p-margin-bottom-minus15 {
	margin-bottom: -15px !important;
}

.p-margin-bottom-minus20 {
	margin-bottom: -20px !important;
}

.p-margin-bottom-minus30 {
	margin-bottom: -30px !important;
}

.scroll-hint-icon-wrap .scroll-hint-icon {
	width: 125px;
	height: 90px;
	padding-top: 14px;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.6);
}
.scroll-hint-icon-wrap .scroll-hint-icon::before {
	width: 39px;
	height: 39.86px;
	background-image: url(../img/common/icon_scroll-hint.svg);
}
.scroll-hint-icon-wrap .scroll-hint-icon::after {
	display: none;
	transition: none;
}
.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
	opacity: 1;
}
.scroll-hint-icon-wrap.is-active .scroll-hint-icon::before {
	animation: none;
}

.scroll-hint-text {
	--spacing: 0.02em;
	margin-top: 10px;
	font-weight: 700;
	font-size: 1.1rem;
	line-height: 1.182;
}

.p-scroll-img {
	overflow: hidden;
}

.p-contact {
	position: relative;
	margin-top: 140px;
	background: #f4f4f4;
}
.p-contact__inner {
	max-width: 580px;
	margin-inline: auto;
	padding: 68px 0 106px;
}
.p-contact__title {
	--spacing: 0.04em;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #1754b5;
	font-weight: 700;
	font-size: 8.6rem;
	line-height: 1;
	font-family: "Poppins", sans-serif;
	text-align: center;
	overflow-wrap: normal;
}
.p-contact__lead {
	margin-bottom: 40px;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.583;
	text-align: center;
}
.p-contact__mail {
	margin-bottom: 44px;
}
.p-contact__tel {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 28px;
}
.p-contact__tel-title {
	--spacing: 0;
	align-content: center;
	padding-right: 28px;
	border-right: 1px solid #2d2d2d;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.5;
}
.p-contact__tel-num {
	align-content: center;
	margin-bottom: 5px;
	font-weight: 500;
	font-size: 4rem;
	line-height: 1;
	font-family: "Poppins", sans-serif;
}
.p-contact__tel-hours {
	font-weight: 500;
	line-height: 1.3;
}

.p-faq-list {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 20px;
	margin-bottom: 60px;
}
.p-faq-list__qa {
	padding: 40px 70px;
	border: 1px solid #c3c3c3;
	border-radius: 10px;
	background: #ffffff;
}
.p-faq-list__q, .p-faq-list__a {
	position: relative;
	padding-left: 46px;
}
.p-faq-list__q::before, .p-faq-list__a::before {
	--spacing: 0.1em;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 1em;
	height: 100%;
	content: "";
	font-weight: 500;
	font-size: 3.2rem;
	line-height: 1;
	font-family: "Poppins", sans-serif;
}
.p-faq-list__q {
	min-height: 32px;
	padding-right: calc(25px + 5px);
	background: url(../img/common/icon_open_gray.svg) no-repeat right center;
	font-weight: 600;
	font-size: 2rem;
	line-height: 1.6;
	cursor: pointer;
}
.p-faq-list__q.is-opened {
	background-image: url(../img/common/icon_close_gray.svg);
}
.p-faq-list__q::before {
	content: "Q";
	color: #df1a21;
}
.p-faq-list__a {
	display: none;
	margin-top: 40px;
}
.p-faq-list__a::before {
	content: "A";
	color: #1754b5;
}
.p-faq-list__a > *:last-child {
	margin-bottom: 0;
}

.p-footer {
	position: relative;
	line-height: 1;
}
.p-footer__main {
	display: grid;
	grid-template-columns: 1fr 775px;
	margin-bottom: 60px;
	padding-bottom: 60px;
	border-bottom: 1px solid #c3c3c3;
}
.p-footer__bottom {
	display: grid;
	grid-template-columns: 1fr auto;
	justify-content: space-between;
	gap: 26px;
}
.p-footer__nav {
	display: grid;
	grid-template-columns: 510px 1fr;
	gap: 30px 25px;
}
.p-footer__nav-list {
	grid-row: 1/2;
	grid-column: 1/3;
}
.p-footer__btn-list {
	grid-row: 2/3;
	grid-column: 1/2;
}
.p-footer__pis-link {
	grid-row: 2/3;
	grid-column: 2/3;
	align-content: center;
	padding-left: 25px;
	border-left: 1px solid #c3c3c3;
}

.p-footer-logo {
	width: 255px;
}

.p-footer-nav-list {
	display: grid;
	grid-template-rows: auto 1fr;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 34px;
}

.p-footer-nav-link {
	display: inline-block;
	background-position-y: center;
	color: #2d2d2d;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.8;
}

.p-footer-nav-accordion.is-accordion-sp {
	padding: 10px 0 0 19px;
}

.p-footer-nav-submenu-list {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 8px;
}
.p-footer-nav-submenu-list__item {
	font-size: 1.4rem;
	line-height: 1.5;
}
.p-footer-nav-submenu-list__item.is-category-top {
	display: none;
}

.p-footer-nav-submenu-link {
	transition: opacity 0.2s ease-out;
}

.p-footer-nav-sustainability-list {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 10px;
	margin-top: 10px;
}
.p-footer-nav-sustainability-list__item {
	position: relative;
	padding-left: 15px;
	font-size: 1.3rem;
	line-height: 1.077;
}
.p-footer-nav-sustainability-list__item::before {
	display: block;
	position: absolute;
	top: 7px;
	left: 0;
	width: 8px;
	height: 1px;
	background: #c3c3c3;
	content: "";
}
.p-footer-nav-sustainability-list__link {
	transition: opacity 0.2s ease-out;
}

.p-footer-btn-list {
	grid-template-columns: repeat(2, 250px);
	justify-content: space-between;
}
.p-footer-btn-list .p-btn--menu {
	width: 100%;
	height: 64px;
}

.p-pis-link {
	display: block;
	width: -moz-fit-content;
	width: fit-content;
	min-height: 22px;
	padding-left: calc(24px + 14px);
	background: url(../img/common/icon_pis.svg) no-repeat left center;
}
.p-pis-link__text {
	color: #2d2d2d;
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 1.5;
	transition: opacity 0.2s ease-out;
}

.p-footer-info-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.p-footer-info-list__item {
	line-height: 1;
}

.p-footer-info-link {
	color: #666666;
	font-size: 1.3rem;
	transition: opacity 0.2s ease-out;
}

.p-copyright {
	--spacing: 0.04em;
	font-size: 1.2rem;
	font-family: font_family_en;
}

.p-pagetop {
	position: absolute;
	top: -90px;
	right: 0;
	width: 70px;
	height: 70px;
	margin-top: -35px;
	border-radius: 50%;
	background: url(../img/common/btn_pagetop.svg) no-repeat center center #2d2d2d;
	opacity: 0.6;
	transition: opacity 0.2s ease-out;
}

.p-header {
	display: grid;
	position: relative;
	width: 100vw;
	height: 120px;
	padding-right: var(--scrollbar);
	transition: height 0.2s ease;
}
.p-header__inner {
	display: grid;
	position: relative;
	grid-template-rows: auto;
	grid-template-columns: 208px 1fr;
	-moz-column-gap: 20px;
	column-gap: 20px;
	justify-content: space-between;
	min-width: 1260px;
	padding: 50px 40px 0;
	transition: padding-top 0.2s ease;
}
.p-header__logo {
	grid-row: 1/2;
	grid-column: 1/2;
	line-height: 1;
}
.p-header__nav-btn {
	display: contents;
	grid-row: 1/2;
	grid-column: 2/3;
}
.p-header__nav-target {
	display: grid;
	position: static;
	grid-template-columns: auto auto;
	-moz-column-gap: 24px;
	column-gap: 24px;
	justify-content: flex-end;
	height: 70px;
}
.p-header__nav {
	height: 100%;
	padding-top: 10px;
}
.p-header__nav:has(.p-gnav-link__accordion.is-open) {
	height: unset;
}
.p-header__lang-search {
	display: grid;
	grid-template-columns: 200px 140px;
	-moz-column-gap: 10px;
	column-gap: 10px;
}
.p-header__search {
	width: 200px;
	height: 40px;
}
.p-header__search .area-search {
	border-radius: 999px;
	background-color: #e7e7e7;
}
.p-header__search .area-search .gsc-search-box {
	height: 40px;
	margin-bottom: 0;
	margin-inline: 0;
	border-radius: 999px;
}
.p-header__search .area-search .gsc-input-box {
	border: none;
	background-color: transparent;
}
.p-header__search .area-search .gsc-input {
	background-color: transparent !important;
	line-height: normal;
}
.p-header__search .area-search .gsc-search-button {
	width: 1px;
	padding-right: 0;
}
.p-header__search .area-search .gsc-search-button-v2 {
	width: 1px;
	height: 10px;
	padding: 0;
	border: none;
	background: transparent;
}
.p-header__search .area-search .gsc-search-button-v2 svg {
	display: none;
}
.p-header__search .area-search .gsib_b {
	height: auto;
}
.p-header__search .area-search .gsst_b {
	display: grid;
	place-content: center;
	line-height: 1;
}
.p-header__search .area-search .gsst_a {
	padding-right: 0;
	line-height: 1;
}
.p-header__search .area-search .gsst_a .gscb_a {
	color: #df1a21;
}
.p-header__search .area-search .gsst_a:hover .gscb_a, .p-header__search .area-search .gsst_a:focus .gscb_a {
	color: #d75d58;
}

.p-label-service {
	display: grid;
	place-content: center;
	width: -moz-fit-content;
	width: fit-content;
	min-height: 42px;
	padding: 5px 16px;
	border-radius: 999px;
	background: #f4f4f4;
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1;
}

.p-label-list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.p-movie {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 56.25%;
	overflow: hidden;
}
.p-movie__source {
	display: block;
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}
.p-movie__source--video.is-current .p-movie__video {
	z-index: 0;
	opacity: 1;
}
.p-movie__thumb {
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}
.p-movie__thumb img {
	width: 100%;
}
.p-movie__thumb::after {
	display: block;
	z-index: 2;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 130px;
	height: 130px;
	transform: translate(-50%, -50%);
	background: url(../img/common/btn_movie_play.svg) no-repeat center center;
	background-size: cover;
	content: "";
}
.p-movie__thumb.is-inactive {
	z-index: -1;
}
.p-movie__thumb.is-inactive img {
	display: none;
}

.p-gnav-list {
	display: grid;
	grid-template-columns: repeat(4, auto);
	-moz-column-gap: 24px;
	column-gap: 24px;
	justify-content: flex-end;
	width: auto;
	height: 100%;
	margin-inline: 0;
}
.p-gnav-list__item {
	display: unset;
}
.p-gnav-list__item:has(.p-gnav-submenu) .p-gnav-link {
	position: relative;
}

.p-gnav-link {
	display: grid;
	justify-content: center;
	width: 100%;
	color: #2d2d2d;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1;
	text-align: center;
	cursor: pointer;
}
.p-gnav-link:link, .p-gnav-link:visited {
	color: inherit;
}
.p-gnav-link__text {
	position: relative;
}
.p-gnav-link__text::after {
	display: block;
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 0;
	height: 4px;
	background: #1754b5;
	content: "";
	transition: all 0.3s ease;
}
.p-gnav-submenu__inner {
	display: grid;
	grid-template-rows: auto 1fr;
	grid-template-columns: 334px 1fr;
	width: 1260px;
	margin-inline: auto;
}
.p-gnav-submenu__title {
	display: grid;
	grid-template-columns: 1fr;
	color: #1754b5;
	font-weight: 700;
	line-height: 1;
}
.p-gnav-submenu__title-en {
	--spacing: 0.04em;
	margin-bottom: 8px;
	font-size: 5.1rem;
	line-height: 1;
	font-family: "Poppins", sans-serif;
}
.p-gnav-submenu__title-ja {
	--spacing: 0.05em;
	font-size: 2.2rem;
}
.p-gnav-submenu__category-top-link {
	display: block;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
	margin-top: 16px;
	padding-left: 25px;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.611;
	transition: opacity 0.2s ease-out;
}
.p-gnav-submenu__category-top-link::before {
	display: block;
	position: absolute;
	top: calc(50% + 0.05em);
	left: 0;
	width: 16px;
	height: 16px;
	transform: translateY(-50%);
	border-radius: 50%;
	background: url(../img/common/arrow_link_wh.svg) no-repeat center center #df1a21;
	content: "";
}
.p-gnav-submenu--service .p-gnav-submenu__category-top-small {
	font-size: 1.4rem;
}
.p-gnav-submenu--company .p-gnav-submenu__footer-btn {
	grid-template-columns: 1fr;
	row-gap: 4px;
	justify-items: flex-end;
}

.p-gnav-submenu-tagline__title {
	display: block;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
	margin-bottom: 20px;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.611;
}
.p-gnav-submenu-search__title {
	margin-bottom: 20px;
	padding-left: calc(15px + 14px);
	background: url(../img/common/icon_business-search.svg) no-repeat left center;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.611;
}
.p-gnav-submenu-list {
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	gap: 16px 20px;
}
.p-gnav-submenu-list__item {
	line-height: 1.2;
}

.p-gnav-submenu-link {
	font-weight: 500;
}

.p-gnav-submenu-lineup {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 12px;
	margin-top: 15px;
	padding-left: 20px;
	font-size: 1.2rem;
	line-height: 1.2;
}

.p-gnav-sustainability-list {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 12px;
	margin-top: 15px;
	padding-left: 20px;
	font-size: 1.2rem;
	line-height: 1.083;
}
.p-gnav-sustainability-list__item {
	display: grid;
	position: relative;
}
.p-gnav-sustainability-list__item::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 8px;
	height: 1px;
	background-color: #c3c3c3;
	content: "";
}
.p-gnav-sustainability-list__link {
	box-sizing: content-box;
	display: grid;
	place-content: center;
	width: -moz-fit-content;
	width: fit-content;
	min-width: 50px;
	padding: 0 0 0 16px;
	font-size: 1.2rem;
	line-height: 1.2;
	transition: opacity 0.2s ease-out;
}

.p-drawer-nav-btn {
	display: none;
	height: 50px;
}
.p-drawer-nav-btn__trigger {
	display: none;
	position: absolute;
	top: 50%;
	right: 15px;
	width: 44px;
	height: 44px;
	transform: translateY(-50%);
	border: none;
	border-radius: 50%;
	outline: none;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: #2d2d2d;
	cursor: pointer;
}
.p-drawer-nav-btn__trigger--open {
	z-index: 100;
	background-image: url(../img/common/btn_header_gnav_open.svg);
	opacity: 1;
	transition: all 0.8s;
}
.p-drawer-nav-btn__trigger--open.is-active {
	z-index: 0;
	background-image: none;
	opacity: 0;
}
.p-drawer-nav-btn__trigger--open.is-active + .p-drawer-nav-btn__trigger--close {
	z-index: 1;
	background-image: url(../img/common/btn_header_gnav_close.svg);
	opacity: 1;
}
.p-drawer-nav-btn__text {
	z-index: -9999;
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	font-size: 0;
	white-space: nowrap;
	clip-path: inset(0 0 0 0);
}

.p-news-list {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 60px;
}
.p-news-list__item {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 20px;
}
.p-news-list__item .p-link-list {
	margin-bottom: 0;
}
.p-news-list__header {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px 16px;
}
.p-news-list__date {
	grid-row: 1/2;
	grid-column: 1/2;
}
.p-news-list__category {
	grid-row: 1/2;
	grid-column: 2/3;
}
.p-news-list__title {
	grid-row: 2/3;
	grid-column: 1/3;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.583;
}
.p-news-date {
	color: #909090;
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 1.933;
	font-family: "Poppins", sans-serif;
}

.p-news-category {
	display: grid;
	place-content: center;
	width: -moz-fit-content;
	width: fit-content;
	min-width: 120px;
	height: 26px;
	padding: 2px 5px;
	border-radius: 4px;
	background: #f4f4f4;
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 1;
}

.p-page-header {
	position: relative;
	top: 0;
	left: 0;
}
.p-page-header__img img {
	border-radius: 12px;
}
.page-history .p-page-header--category-top {
	background-repeat: no-repeat;
	background-position-x: center;
}
.p-page-header--category-top .p-page-header__inner {
	display: grid;
	grid-template-rows: auto 1fr;
	grid-template-columns: 1fr 530px;
	gap: 40px 35px;
}
.page-strength .p-page-header--category-top .p-page-header__inner, .page-solution .p-page-header--category-top .p-page-header__inner, .page-service .p-page-header--category-top .p-page-header__inner {
	grid-template-columns: 630px 1fr;
	gap: 30px 65px;
}
.page-contact .p-page-header--category-top .p-page-header__inner, .page-data .p-page-header--category-top .p-page-header__inner {
	grid-template-rows: auto;
	grid-template-columns: 1fr;
}
.page-history .p-page-header--category-top .p-page-header__inner {
	grid-template-rows: auto 1fr;
	grid-template-columns: 1fr;
}
.page-data .p-page-header--category-top .p-page-header__text {
	max-width: 1017px;
}
.p-page-header--category-top .p-page-header__text-main {
	display: grid;
	flex: 1;
	align-self: flex-start;
}
.page-strength .p-page-header--category-top .p-page-header__picture, .page-solution .p-page-header--category-top .p-page-header__picture, .page-service .p-page-header--category-top .p-page-header__picture {
	z-index: 1;
	position: relative;
	margin-top: -30px;
}
.p-page-header--category-top .p-page-header__title {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 18px;
	color: #1754b5;
}
.page-contact .p-page-header--category-top .p-page-header__title, .page-data .p-page-header--category-top .p-page-header__title {
	gap: 16px;
}
.page-history .p-page-header--category-top .p-page-header__title {
	gap: 16px;
	color: #ffffff;
}
.p-page-header--category-top .p-page-header__title-ja {
	--spacing: 0.05em;
	font-weight: 700;
	font-size: 3.2rem;
	line-height: 1;
}
.p-page-header--category-top .p-page-header__title-en {
	--spacing: 0.04em;
	font-weight: 700;
	font-size: 9.2rem;
	line-height: 1;
	font-family: "Poppins", sans-serif;
}
.page-history .p-page-header--category-top .p-page-header__title-en {
	color: #ffffff;
	font-size: 8.6rem;
}
.p-page-header--category-top .p-page-header__lead {
	--spacing: 0.1em;
	font-weight: 700;
	font-size: 2.6rem;
	line-height: 1.3;
}
.page-strength .p-page-header--category-top .p-page-header__lead, .page-solution .p-page-header--category-top .p-page-header__lead, .page-service .p-page-header--category-top .p-page-header__lead {
	font-size: 2.8rem;
	line-height: 1.607;
}
.page-data .p-page-header--category-top .p-page-header__lead {
	--spacing: 0.02em;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1.813;
}
.page-history .p-page-header--category-top .p-page-header__lead {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 20px;
	color: #ffffff;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1.813;
}
.p-page-header--category-top .p-page-header__tagline {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 18px;
	margin-bottom: 18px;
	font-family: "Poppins", sans-serif;
}
.p-page-header--category-top .p-page-header__tagline-shoulder {
	display: grid;
	place-content: center;
	width: -moz-fit-content;
	width: fit-content;
	min-width: 173px;
	height: 36px;
	padding: 5px 20px;
	border: 1px solid #c3c3c3;
	border-radius: 4px;
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 1;
}
.p-page-header--category-top .p-page-header__tagline-text {
	--spacing: 0.03em;
	font-weight: 700;
	font-size: 5.5rem;
	line-height: 1;
}
.p-page-header--category-top .p-page-header__logo {
	line-height: 1;
}
.p-page-header--detail .p-page-header__inner {
	display: flex;
}
.page-solution .p-page-header--detail .p-page-header__inner {
	display: grid;
	grid-template-rows: auto 1fr;
	grid-template-columns: 1fr 530px;
	-moz-column-gap: 35px;
	column-gap: 35px;
}
.page-service .p-page-header--detail .p-page-header__inner {
	display: grid;
	grid-template-rows: auto 1fr;
	grid-template-columns: 1fr 530px;
	gap: 35px;
}
.p-page-header--detail .p-page-header__text {
	display: grid;
	grid-template-columns: 1fr;
	flex: 1;
	gap: 15px;
}
.page-solution .p-page-header--detail .p-page-header__text {
	align-self: flex-start;
}
.page-service .p-page-header--detail .p-page-header__text {
	grid-row: 1/2;
	grid-column: 1/2;
	align-self: flex-start;
	gap: 0;
}
.page-service .p-page-header--detail .p-page-header__img {
	grid-row: 1/3;
	grid-column: 2/3;
}
.p-page-header--detail .p-page-header__category {
	--spacing: 0.05em;
	position: relative;
	padding-left: 20px;
	color: #1754b5;
	font-weight: 700;
	font-size: 2.2rem;
	line-height: 1.3;
}
.p-page-header--detail .p-page-header__category::before {
	display: block;
	position: absolute;
	top: 0.5em;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #1754b5;
	content: "";
}
.p-page-header--detail .p-page-header__title {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 11px;
	color: #1754b5;
}
.page-service .p-page-header--detail .p-page-header__title {
	row-gap: 24px;
}
.page-service.is-development .p-page-header--detail .p-page-header__title {
	color: #f08300;
}
.page-service.is-supply .p-page-header--detail .p-page-header__title {
	color: #bb8dbe;
}
.page-service.is-manufacturing .p-page-header--detail .p-page-header__title {
	color: #008ccf;
}
.page-service.is-qualitycontrol .p-page-header--detail .p-page-header__title {
	color: #00a73c;
}
.page-service.is-fulfillment .p-page-header--detail .p-page-header__title {
	color: #9dc814;
}
.page-service.is-aftercare .p-page-header--detail .p-page-header__title {
	color: #ea5550;
}
.p-page-header--detail .p-page-header__title-ja {
	font-weight: 700;
	font-size: 5.8rem;
	line-height: 1.3;
}
.page-solution .p-page-header--detail .p-page-header__title-ja {
	color: #2d2d2d;
	font-size: 3.6rem;
	line-height: 1.306;
}
.page-service .p-page-header--detail .p-page-header__title-ja {
	font-size: 7rem;
	line-height: 1;
}
.p-page-header--detail .p-page-header__title-en {
	--spacing: 0.1em;
	font-weight: 600;
	font-size: 1.7rem;
	line-height: 1;
	font-family: "Poppins", sans-serif;
}
.page-service .p-page-header--detail .p-page-header__title-en {
	font-size: 2.3rem;
}
.p-page-header--detail .p-page-header__lead {
	font-size: 1.6rem;
	line-height: 1.813;
}
.page-service .p-page-header--detail .p-page-header__lead {
	grid-row: 2/3;
	grid-column: 1/2;
	font-weight: 600;
	font-size: 3rem;
	line-height: 1.6;
}
.p-page-header--detail .p-page-header__text:has(.p-page-header__lead) .p-page-header__title {
	margin-bottom: 16px;
}
.page-solution .p-page-header--detail .p-page-header__text:has(.p-page-header__lead) .p-page-header__title {
	margin-bottom: 4px;
}
.page-service .p-page-header--detail .p-page-header__text:has(.p-page-header__lead) .p-page-header__title {
	margin-bottom: 34px;
}

.p-related-solution {
	margin-top: 140px;
	padding-top: 80px;
	border-top: 1px solid #c3c3c3;
}
.p-related-solution__title {
	margin-bottom: 50px;
}

.p-related-service {
	z-index: 1;
	position: relative;
}
.p-related-service__box {
	display: grid;
	grid-template-columns: 210px 1fr;
	margin-top: 50px;
	margin-bottom: 0;
	padding: 60px;
	gap: 20px;
}
.p-related-service__title {
	margin-bottom: 0;
	padding-left: 22px;
	font-size: 2.4rem;
}
.p-related-service__title::before {
	top: calc(0.8em - 4px);
	width: 8px;
	height: 8px;
}

.p-search-result {
	max-width: 1060px;
	margin-inline: auto;
}
.p-search-result__footer {
	display: grid;
	justify-content: center;
	margin-top: 50px;
}
.p-search-result .gsc-control-cse {
	padding: 0;
}
.p-search-result form.gsc-search-box {
	padding: 10px;
	background: #f4f4f4;
}
.p-search-result .gsc-search-button-v2 {
	position: relative;
	width: 140px;
	height: 40px;
	border: 1px solid #2d2d2d;
	border-radius: 999px;
}
.p-search-result .gsc-search-button-v2::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 2em;
	height: 1em;
	transform: translate(-50%, -50%);
	content: "検索";
	color: #2d2d2d;
	font-weight: 600;
	font-size: 1.6rem;
	line-height: 1;
}
.p-search-result .gsc-search-button-v2 {
	transition: opacity 0.2s ease-out;
}
.p-search-result .gsc-search-button-v2:focus, .p-search-result .gsc-search-button-v2:hover {
	border-color: #2d2d2d;
	background-color: #ffffff;
}
.p-search-result .gsc-search-button-v2 svg {
	display: none;
}
.p-search-result .gsst_b {
	display: grid;
	place-content: center;
	line-height: 1;
}
.p-search-result .gsst_a {
	padding-right: 10px;
	line-height: 1;
}
.p-search-result .gsst_a .gscb_a {
	color: #df1a21;
}
.p-search-result .gsst_a:hover .gscb_a, .p-search-result .gsst_a:focus .gscb_a {
	color: #d75d58;
}
.p-search-result .gsc-input-box {
	border: 1px solid #c3c3c3;
	border-radius: 4px;
}
.p-search-result .gsc-input {
	line-height: normal;
}
.p-search-result .gs-result a {
	display: inline-block;
	position: relative;
}
.p-search-result .gsc-above-wrapper-area,
.p-search-result .gsc-wrapper {
	max-width: none;
}

.gsc-results .gsc-cursor-box {
	margin-inline: 0 !important;
}

.p-side-sticky.p-btn-list {
	grid-template-columns: 1fr;
	gap: 8px;
}

.u-align-center {
	text-align: center !important;
}

.u-align-left {
	text-align: left !important;
}

.u-align-right {
	text-align: right !important;
}

.u-align-top {
	vertical-align: top !important;
}

.u-align-middle {
	vertical-align: middle !important;
}

.u-align-bottom {
	vertical-align: bottom !important;
}

.u-jc-center {
	justify-content: center !important;
}

.u-alternate {
	z-index: -9999;
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background: transparent;
	color: transparent;
	font-size: 0;
	white-space: nowrap;
	clip-path: inset(0 0 0 0);
}

.u-hidden {
	display: none;
}

.u-content {
	display: content;
}

.u-mb0 {
	margin-bottom: 0px !important;
}

.u-mb5 {
	margin-bottom: 5px !important;
}

.u-mb10 {
	margin-bottom: 10px !important;
}

.u-mb15 {
	margin-bottom: 15px !important;
}

.u-mb20 {
	margin-bottom: 20px !important;
}

.u-mb25 {
	margin-bottom: 25px !important;
}

.u-mb30 {
	margin-bottom: 30px !important;
}

.u-mb35 {
	margin-bottom: 35px !important;
}

.u-mb40 {
	margin-bottom: 40px !important;
}

.u-mb45 {
	margin-bottom: 45px !important;
}

.u-mb50 {
	margin-bottom: 50px !important;
}

.u-mb55 {
	margin-bottom: 55px !important;
}

.u-mb60 {
	margin-bottom: 60px !important;
}

.u-mb65 {
	margin-bottom: 65px !important;
}

.u-mb70 {
	margin-bottom: 70px !important;
}

.u-mb75 {
	margin-bottom: 75px !important;
}

.u-mb80 {
	margin-bottom: 80px !important;
}

.u-mb85 {
	margin-bottom: 85px !important;
}

.u-mb90 {
	margin-bottom: 90px !important;
}

.u-mb95 {
	margin-bottom: 95px !important;
}

.u-mb100 {
	margin-bottom: 100px !important;
}
.p-category-top-btn {
	padding: 60px;
	background: #f4f4f4;
}
.p-category-top-btn + .l-main {
	padding-top: 120px;
	background: #ffffff;
}

.p-category-top-btn-list {
	display: grid;
	grid-template-columns: repeat(2, 520px);
	justify-self: center;
	max-width: 1060px;
	margin-inline: auto;
	gap: 20px;
}
.p-category-top-btn-list .p-btn--menu {
	width: 520px;
	height: 140px;
}
.p-category-top-btn-list .p-btn__text {
	font-size: 2rem;
	line-height: 1;
}

.p-category-top-card-list {
	row-gap: 80px;
}

.p-category-top-card {
	position: relative;
}
.p-category-top-card__caption {
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.611;
	text-align: center;
}
.p-category-top-card .p-fig__img {
	display: block;
	position: relative;
}
.p-category-top-card .p-fig__img img {
	aspect-ratio: 530/332;
	width: 100%;
	max-width: none;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-service-point {
	margin-bottom: 110px;
}
.p-service-point::before, .p-service-point::after {
	z-index: inherit;
	top: 50%;
	height: 440px;
	transform: translateY(-50%);
}
.p-service-point__box {
	z-index: 1;
	position: relative;
	max-width: 1185px;
	margin-bottom: 0;
	margin-left: auto;
	padding: 70px;
}

.p-service-point-list {
	display: grid;
	row-gap: 30px;
	margin-left: -145px;
}
.p-service-point-list__item {
	display: grid;
	grid-template-columns: 150px 1fr;
	align-items: center;
	gap: 54px;
}
.p-service-point-list__item-head {
	display: grid;
	place-content: center;
	height: 150px;
	border-radius: 10px;
	color: #ffffff;
	line-height: 1;
	font-family: "Poppins", sans-serif;
}
.page-service.is-development .p-service-point-list__item-head {
	background-color: #f08300;
}
.page-service.is-supply .p-service-point-list__item-head {
	background-color: #bb8dbe;
}
.page-service.is-manufacturing .p-service-point-list__item-head {
	background-color: #008ccf;
}
.page-service.is-qualitycontrol .p-service-point-list__item-head {
	background-color: #00a73c;
}
.page-service.is-fulfillment .p-service-point-list__item-head {
	background-color: #9dc814;
}
.page-service.is-aftercare .p-service-point-list__item-head {
	background-color: #ea5550;
}
.p-service-point-list__item-point {
	--spacing: 0.08em;
	font-weight: 600;
	font-size: 1.8rem;
	text-align: center;
}
.p-service-point-list__item-num {
	--spacing: 0.01em;
	font-size: 5.3rem;
	line-height: 1.075;
	text-align: center;
}
.p-service-point-list__item-title {
	margin-bottom: 15px;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.583;
}
.page-service.is-development .p-service-point-list__item-title {
	color: #f08300;
}
.page-service.is-supply .p-service-point-list__item-title {
	color: #bb8dbe;
}
.page-service.is-manufacturing .p-service-point-list__item-title {
	color: #008ccf;
}
.page-service.is-qualitycontrol .p-service-point-list__item-title {
	color: #00a73c;
}
.page-service.is-fulfillment .p-service-point-list__item-title {
	color: #9dc814;
}
.page-service.is-aftercare .p-service-point-list__item-title {
	color: #ea5550;
}

.p-service-section__header {
	margin-bottom: 65px;
}
.p-service-section__header-title {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 14px;
	color: #1754b5;
	font-weight: 700;
}
.p-service-section__header-title-ja {
	font-size: 3rem;
	line-height: 1.6;
}
.p-service-section__header-title-en {
	--spacing: 0.04em;
	font-size: 8.6rem;
	line-height: 1;
	font-family: "Poppins", sans-serif;
}

.p-service-lineup {
	position: relative;
}
.page-service.is-development .p-service-lineup__title::before {
	background-color: #f08300;
}
.page-service.is-supply .p-service-lineup__title::before {
	background-color: #bb8dbe;
}
.page-service.is-manufacturing .p-service-lineup__title::before {
	background-color: #008ccf;
}
.page-service.is-qualitycontrol .p-service-lineup__title::before {
	background-color: #00a73c;
}
.page-service.is-fulfillment .p-service-lineup__title::before {
	background-color: #9dc814;
}
.page-service.is-aftercare .p-service-lineup__title::before {
	background-color: #ea5550;
}

.p-service-lineup-scroll-img {
	display: grid;
	grid-template-columns: 210px 1fr;
	gap: 4px;
}
.p-service-lineup-scroll-img__title {
	padding: 29px 32px;
	border-radius: 10px;
	background: #1754b5;
	color: #ffffff;
	font-weight: 700;
	font-size: 2.3rem;
	line-height: 1.304;
}
.p-service-lineup-category {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}
.p-service-lineup-category__group {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 20px;
}
.p-service-lineup-category__group-title {
	display: grid;
	place-content: center;
	min-height: 120px;
	border-width: 3px;
	border-style: solid;
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1.625;
}
.page-service.is-development .p-service-lineup-category__group-title {
	border-color: #f08300;
	color: #f08300;
}
.page-service.is-supply .p-service-lineup-category__group-title {
	border-color: #bb8dbe;
	color: #bb8dbe;
}
.page-service.is-manufacturing .p-service-lineup-category__group-title {
	border-color: #008ccf;
	color: #008ccf;
}
.page-service.is-qualitycontrol .p-service-lineup-category__group-title {
	border-color: #00a73c;
	color: #00a73c;
}
.page-service.is-fulfillment .p-service-lineup-category__group-title {
	border-color: #9dc814;
	color: #9dc814;
}
.page-service.is-aftercare .p-service-lineup-category__group-title {
	border-color: #ea5550;
	color: #ea5550;
}
.p-service-lineup-category__group-title .is-feature {
	display: grid;
	place-content: center;
	text-align: center;
}
.p-service-lineup-category__group-title .is-feature .title {
	--spacing: 0.09em;
}
.p-service-lineup-category__group-title .is-feature .num {
	font-weight: 500;
	font-size: 4rem;
	line-height: 1.28;
	font-family: "Poppins", sans-serif;
}
.p-service-lineup-category__group-content {
	align-self: center;
	padding-right: 28px;
}
.p-service-lineup-category__group-content .is-strong {
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.611;
}

.p-service-lineup-category-list {
	display: flex;
	-moz-column-gap: 34px;
	column-gap: 34px;
	flex-wrap: wrap;
}
.p-service-lineup-category-list__item {
	position: relative;
}
.p-service-lineup-category-list__item:not(:last-child)::after {
	display: block;
	position: absolute;
	top: 50%;
	right: -28px;
	width: 20px;
	height: 0px;
	transform: rotate(120deg);
	border: 1px solid #c3c3c3;
	content: "";
}

.p-service-list {
	grid-template-columns: repeat(3, 280px);
	justify-self: start;
	margin-bottom: 0;
}
.p-service-list__caption {
	text-align: center;
}

.p-service-case-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 36px 20px;
}
.p-service-case-list__item.p-box {
	margin-bottom: 0;
	padding: 18px 20px 41px 30px;
}

.p-service-case-header {
	display: grid;
	position: relative;
	grid-template-columns: 69px 1fr;
	align-items: end;
	min-height: 70px;
	margin-bottom: 20.87px;
	padding-right: 70px;
}
.p-service-case-header .title {
	margin: 0;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.1;
}
.page-service.is-development .p-service-case-header .title {
	color: #f08300;
}
.page-service.is-supply .p-service-case-header .title {
	color: #bb8dbe;
}
.page-service.is-manufacturing .p-service-case-header .title {
	color: #008ccf;
}
.page-service.is-qualitycontrol .p-service-case-header .title {
	color: #00a73c;
}
.page-service.is-fulfillment .p-service-case-header .title {
	color: #9dc814;
}
.page-service.is-aftercare .p-service-case-header .title {
	color: #ea5550;
}
.p-service-case-header::after {
	display: block;
	position: absolute;
	top: 0px;
	right: 0px;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: #f4f4f4;
	content: "";
}
.p-service-case-header.is-pc::after {
	background-image: url(../img/service/icon_pc.svg);
}
.p-service-case-header.is-tablet::after {
	background-image: url(../img/service/icon_tablet.svg);
}
.p-service-case-header.is-smartphone::after {
	background-image: url(../img/service/icon_smartphone.svg);
}
.p-service-case-header.is-smartwatch::after {
	background-image: url(../img/service/icon_smartwatch.svg);
}
.p-service-case-header.is-translator::after {
	background-image: url(../img/service/icon_translator.svg);
}
.p-service-case-header.is-register::after {
	background-image: url(../img/service/icon_register.svg);
}

.p-service-case-content .list {
	display: grid;
	row-gap: 4px;
	font-size: 1.8rem;
	line-height: 1.389;
}
.p-service-case-content .list__group {
	display: grid;
	grid-template-columns: calc(2em + 32px + 1px) 1fr;
	padding-block: 1.5px;
}
.p-service-case-content .list__title {
	position: relative;
	font-weight: 700;
}
.page-service.is-development .p-service-case-content .list__title {
	color: #f08300;
}
.page-service.is-supply .p-service-case-content .list__title {
	color: #bb8dbe;
}
.page-service.is-manufacturing .p-service-case-content .list__title {
	color: #008ccf;
}
.page-service.is-qualitycontrol .p-service-case-content .list__title {
	color: #00a73c;
}
.page-service.is-fulfillment .p-service-case-content .list__title {
	color: #9dc814;
}
.page-service.is-aftercare .p-service-case-content .list__title {
	color: #ea5550;
}
.p-service-case-content .list__title::after {
	display: block;
	position: absolute;
	top: 0.25em;
	right: 16px;
	width: 1px;
	height: 1em;
	background-color: #c3c3c3;
	content: "";
}
.p-service-case-content .list--vertical {
	grid-template-columns: 1fr;
	row-gap: 15px;
}
.p-service-case-content .list--vertical .list__group {
	grid-template-columns: 1fr;
	row-gap: 5px;
}
.p-service-case-content .list--vertical .list__title::after {
	display: none;
}

.p-service-chain {
	display: flex;
	align-items: center;
	min-height: 820px;
	background: url(../img/service/bg_chain.png) no-repeat center bottom;
}
.p-service-chain.is-movie {
	align-items: start;
	min-height: 825px;
	padding-top: 85px;
	background-image: url(../img/service/bg_movie.png);
	background-position: center center;
}
.p-service-chain__inner {
	width: 100%;
	max-width: 1050px;
	margin-inline: auto;
	padding-inline: 25px;
}
.p-service-chain__picture {
	margin-inline: auto;
}

.p-service-chain-movie__frame {
	border-radius: 10px;
}
.p-service-chain-movie__caption {
	margin-bottom: 36px;
	color: #1754b5;
	font-weight: 700;
	font-size: 3rem;
	line-height: 1.2;
}

.p-service-category {
	padding-top: 120px;
}

.p-service-category-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 60px;
}
.p-service-outline-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px 50px;
}
.p-service-outline-list__item {
	position: relative;
	padding-left: 32px;
	font-weight: 600;
	font-size: 1.9rem;
	line-height: 1.5;
}
.p-service-outline-list__item::before {
	display: block;
	position: absolute;
	top: calc(0.6em + 2px);
	left: 0;
	width: 16px;
	height: 2px;
	content: "";
}

.p-service-category-card {
	display: grid;
	grid-template-rows: auto 1fr;
	grid-template-columns: 1fr 560px;
	gap: 30px;
}
.p-service-category-card__title {
	grid-row: 1/2;
	grid-column: 1/2;
}
.p-service-category-card__img {
	grid-row: 1/3;
	grid-column: 2/3;
}
.p-service-category-card__text {
	grid-row: 2/3;
	grid-column: 1/2;
}
.p-service-category-card.is-development .p-title-lv3--mark::before {
	background-color: #f08300;
}
.p-service-category-card.is-development .p-service-outline-list__item::before {
	background-color: #f08300;
}
.p-service-category-card.is-development .p-btn--detail::before {
	background-color: #f08300;
}
.p-service-category-card.is-supply .p-title-lv3--mark::before {
	background-color: #bb8dbe;
}
.p-service-category-card.is-supply .p-service-outline-list__item::before {
	background-color: #bb8dbe;
}
.p-service-category-card.is-supply .p-btn--detail::before {
	background-color: #bb8dbe;
}
.p-service-category-card.is-manufacturing .p-title-lv3--mark::before {
	background-color: #008ccf;
}
.p-service-category-card.is-manufacturing .p-service-outline-list__item::before {
	background-color: #008ccf;
}
.p-service-category-card.is-manufacturing .p-btn--detail::before {
	background-color: #008ccf;
}
.p-service-category-card.is-qualitycontrol .p-title-lv3--mark::before {
	background-color: #00a73c;
}
.p-service-category-card.is-qualitycontrol .p-service-outline-list__item::before {
	background-color: #00a73c;
}
.p-service-category-card.is-qualitycontrol .p-btn--detail::before {
	background-color: #00a73c;
}
.p-service-category-card.is-fulfillment .p-title-lv3--mark::before {
	background-color: #9dc814;
}
.p-service-category-card.is-fulfillment .p-service-outline-list__item::before {
	background-color: #9dc814;
}
.p-service-category-card.is-fulfillment .p-btn--detail::before {
	background-color: #9dc814;
}
.p-service-category-card.is-aftercare .p-title-lv3--mark::before {
	background-color: #ea5550;
}
.p-service-category-card.is-aftercare .p-service-outline-list__item::before {
	background-color: #ea5550;
}
.p-service-category-card.is-aftercare .p-btn--detail::before {
	background-color: #ea5550;
}
.p-service-category-card .p-title-lv3 {
	margin-bottom: 0;
}
.p-service-category-card .p-btn-list {
	padding-top: 50px;
}

.p-solution-meta {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px;
}
.p-solution-meta__title {
	padding-top: 5px;
	padding-right: calc(6px + 10px);
	background: url(../img/common/arrow_triangle_bk.svg) no-repeat right calc(0.5em + 5px - 3px);
	font-size: 1.4rem;
	line-height: 1;
}
.p-solution-meta__list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.p-solution-meta__item {
	position: relative;
	padding: 5px 10px;
	border: 1px solid #c3c3c3;
	border-radius: 4px;
	font-weight: 700;
	font-size: 1.2rem;
	line-height: 1;
}

.p-solution-section-start {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 20px;
	margin-bottom: 70px;
}
.p-solution-section-start::before, .p-solution-section-start::after {
	z-index: inherit;
	top: 50%;
	height: 440px;
	transform: translateY(-50%);
}

.p-solution-section-end {
	z-index: 1;
}
.p-solution-section-end::before, .p-solution-section-end::after {
	top: 408px;
	height: 295px;
}

.p-solution-summary {
	display: grid;
	position: relative;
	grid-template-columns: 260px 1fr;
	align-items: center;
}
.p-solution-summary__box {
	display: grid;
	z-index: 1;
	position: relative;
	align-content: center;
	min-height: 320px;
	margin-bottom: 0;
	margin-left: -130px;
	padding-left: 194px;
	padding-block: 40px;
}
.p-solution-summary__title {
	display: grid;
	z-index: 2;
	position: relative;
	justify-content: center;
	min-height: 240px;
	padding-top: 165px;
	border-width: 3px;
	border-style: solid;
	border-radius: 10px;
	background-repeat: no-repeat;
	background-color: #ffffff;
	font-weight: 700;
	font-size: 2.3rem;
	line-height: 1;
}
.p-solution-summary--problem .p-solution-summary__title {
	border-color: #1754b5;
	background-image: url(../img/solution/icon_problem.svg);
	background-position: 81px 48px;
	background-size: 99px 97px;
	color: #1754b5;
}
.p-solution-summary--solution .p-solution-summary__title {
	border-color: #df1a21;
	background-image: url(../img/solution/icon_solution.svg);
	background-position: 78px 47px;
	background-size: 105px 92px;
	color: #df1a21;
}

.p-solution-num-list {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 11px;
}
.p-solution-num-list__item {
	position: relative;
	padding-left: 42px;
	font-size: 1.8rem;
	line-height: 1.5;
}
.p-solution-num-list__item::before {
	display: grid;
	position: absolute;
	top: 0;
	left: 0;
	place-content: center;
	width: 27px;
	height: 27px;
	border-radius: 50%;
	content: attr(data-num);
	color: #ffffff;
	font-weight: 500;
	font-size: 1.3rem;
	line-height: 1;
	font-family: "Poppins", sans-serif;
}
.p-solution-summary--problem .p-solution-num-list__item::before {
	background: #1754b5;
}
.p-solution-summary--solution .p-solution-num-list__item::before {
	background: #df1a21;
}

.p-solution-result {
	z-index: 1;
	position: relative;
	padding-top: 60px;
	background: url(../img/common/arrow_triangle_red.svg) no-repeat center top;
}
.p-solution-result__title {
	margin-bottom: 60px;
	font-weight: 700;
	font-size: 3.4rem;
	line-height: 1.5;
	text-align: center;
}
.p-solution-result__content {
	display: grid;
	grid-template-rows: auto 1fr;
	grid-template-columns: 530px 1fr;
	gap: 20px 50px;
}
.p-solution-result__img {
	grid-row: 1/3;
	grid-column: 1/2;
}
.p-solution-result__text {
	grid-row: 1/2;
	grid-column: 2/3;
	font-size: 1.8rem;
	line-height: 1.778;
}
.p-solution-result__effect {
	display: grid;
	place-content: center;
}

.p-solution-effect-list {
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	justify-content: center;
	width: -moz-fit-content;
	width: fit-content;
	margin-inline: auto;
	padding: 35px;
	gap: 14px;
	border: 2px solid #df1a21;
	border-radius: 10px;
	background: #ffffff;
}
.p-solution-effect-list__item {
	display: grid;
	align-content: end;
	justify-content: center;
	width: 85px;
	min-height: 72px;
	background-position: center top;
	background-repeat: no-repeat;
	color: #df1a21;
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 1.133;
	text-align: center;
}
.p-solution-effect-list__item.is-hour {
	background-image: url(../img/solution/icon_hour.svg);
}
.p-solution-effect-list__item.is-cost {
	background-image: url(../img/solution/icon_cost.svg);
}
.p-solution-effect-list__item.is-date {
	background-image: url(../img/solution/icon_date.svg);
}
.p-solution-effect-list__item.is-quality {
	background-image: url(../img/solution/icon_quality.svg);
}
.p-solution-effect-list__item.is-efficiency {
	background-image: url(../img/solution/icon_efficiency.svg);
}
.p-solution-effect-list__item.is-global {
	min-height: 85px;
	background-image: url(../img/solution/icon_global.svg);
}
.p-solution-effect-list__item.is-information {
	background-image: url(../img/solution/icon_information.svg);
}

.p-solution-card-list {
	row-gap: 90px;
}

.p-solution-card {
	position: relative;
}
.p-solution-card__category-group {
	display: flex;
	position: absolute;
	top: 20px;
	left: 20px;
	flex-wrap: wrap;
	align-items: flex-start;
	width: calc(100% - 40px);
	max-height: calc(100% - 40px);
	gap: 10px;
}
.p-solution-card__category {
	display: grid;
	place-content: center;
	min-width: 122px;
	height: 37px;
	padding: 4px;
	border-radius: 4px;
	background: #df1a21;
	color: #ffffff;
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 1;
	text-align: center;
}
.p-solution-card__caption {
	font-size: 1.8rem;
	line-height: 1.611;
	text-align: center;
}
.p-solution-card .p-fig__img {
	display: block;
	position: relative;
}
.p-solution-card .p-fig__img img {
	aspect-ratio: 530/332;
	width: 100%;
	max-width: none;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-solution-top-section {
	padding-bottom: 0;
}
.p-solution-top-section::before, .p-solution-top-section::after {
	z-index: inherit;
	top: 0;
	height: 360px;
}

.p-solution-filter-range {
	z-index: 2;
	position: relative;
	padding-top: 60px;
}
.p-solution-filter-range .is-no-result {
	color: #df1a21;
	font-weight: 500;
	font-size: 1.8rem;
	text-align: center;
}
.p-solution-filter-range__title {
	display: grid;
	position: relative;
	align-content: center;
	min-height: 52px;
	margin-bottom: 40px;
	padding-left: 68px;
	font-weight: 700;
	font-size: 2.1rem;
	line-height: 1.619;
}
.p-solution-filter-range__title::before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: url(../img/common/icon_business-search_wh.svg) no-repeat center center #1754b5;
	content: "";
}
.p-solution-filter-range__filter {
	margin-bottom: 120px;
	overflow: hidden;
	border: 1px solid #c3c3c3;
	border-radius: 10px;
}
.p-solution-filter__group {
	display: grid;
	grid-template-columns: 180px 1fr;
}
.p-solution-filter__title {
	align-content: center;
	padding: 20px 30px;
	background: #1754b5;
	color: #ffffff;
	font-weight: 700;
	line-height: 1.625;
}
.p-solution-filter__list {
	padding: 20px 45px;
	background: #ffffff;
}

.p-solution-filter-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, 182px);
	gap: 16px;
}
.p-solution-filter-list button {
	display: grid;
	place-content: center;
	width: 100%;
	height: 42px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: #f4f4f4;
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1;
	text-align: center;
}
.p-solution-filter-list button.is-selected {
	border-color: #df1a21;
	background: #ffffff;
	color: #df1a21;
}

.p-data-section {
	margin-bottom: 150px;
}

.p-data-footer {
	padding-top: 120px;
	border-top: 1px solid #c3c3c3;
}

.p-data-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.p-data-list__item {
	padding: 50px;
}

.p-data-card__title.p-title-lv3--mark {
	margin-bottom: 44px;
	line-height: 1;
}
.p-data-card__title.p-title-lv3--mark::before {
	top: calc(0.5em - 5px);
	background: #1754b5;
}
.p-data-card__content {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 30px;
	justify-items: center;
}
.p-data-card.is-sales .p-data-card__content, .p-data-card.is-market .p-data-card__content {
	row-gap: 40px;
}
.p-data-card__text {
	max-width: 450px;
}

.p-data {
	display: grid;
	position: relative;
	grid-template-columns: repeat(2, auto);
	-moz-column-gap: 10px;
	column-gap: 10px;
	align-items: baseline;
	justify-self: center;
	width: -moz-fit-content;
	width: fit-content;
	min-height: 115px;
}
.p-data-card.is-founding .p-data {
	padding-right: 90px;
}
.p-data-card.is-trading .p-data {
	padding-right: 98px;
}
.p-data-card.is-certification .p-data {
	padding-right: 86px;
}
.p-data-card.is-presentation .p-data {
	padding-right: 81px;
}
.p-data::after {
	display: block;
	position: absolute;
	right: 0;
	bottom: 13px;
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	content: "";
}
.p-data-card.is-founding .p-data::after {
	width: 90px;
	height: 86px;
	background-image: url(../img/data/icon_founding.svg);
}
.p-data-card.is-trading .p-data::after {
	width: 98px;
	height: 86px;
	background-image: url(../img/data/icon_trading.svg);
}
.p-data-card.is-certification .p-data::after {
	width: 86px;
	height: 86px;
	background-image: url(../img/data/icon_certification.svg);
}
.p-data-card.is-presentation .p-data::after {
	width: 81px;
	height: 86px;
	background-image: url(../img/data/icon_presentation.svg);
}
.p-data-card.is-sales .p-data, .p-data-card.is-market .p-data {
	grid-template-columns: 250px 1fr;
	align-items: start;
	margin-inline: -7px;
	gap: 25px;
}
.p-data__num {
	--spacing: -0.04em;
	color: #1754b5;
	font-weight: 600;
	font-size: 11.5rem;
	line-height: 1;
	font-family: "Poppins", sans-serif;
}
.p-data__unit {
	--spacing: 0.02em;
	font-weight: 700;
	font-size: 3.4rem;
	line-height: 1;
}
.p-data-card.is-founding .p-data__unit {
	padding-right: 22px;
}
.p-data-card.is-trading .p-data__unit {
	padding-right: 20px;
}
.p-data-card.is-certification .p-data__unit {
	padding-right: 24px;
}
.p-data-card.is-presentation .p-data__unit {
	padding-right: 31px;
}
.p-data__legend {
	align-self: center;
}

.p-data-sales {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 14px;
}
.p-data-sales__item {
	display: grid;
	grid-template-columns: 56px 1fr;
	align-items: center;
}
.p-data-sales__title {
	position: relative;
	padding-left: 24.85px;
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 1.267;
}
.p-data-sales__title::before {
	display: block;
	position: absolute;
	top: 0.1em;
	left: 0;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	content: "";
}
.p-data-sales__item.is-domestic .p-data-sales__title::before {
	background-color: #1754b5;
}
.p-data-sales__item.is-overseas .p-data-sales__title::before {
	background-color: #d7d7d7;
}
.p-data-sales__desc {
	line-height: 1;
}
.p-data-sales__num {
	--spacing: -0.04em;
	position: relative;
	padding-left: 30.27px;
	color: #1754b5;
	font-weight: 600;
	font-size: 4rem;
	line-height: 1;
}
.p-data-sales__num::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 6.4px;
	width: 30.27px;
	height: 1em;
	margin-top: -0.3em;
	content: "…";
	color: #2d2d2d;
	font-size: 1.5rem;
}
.p-data-sales__unit {
	font-weight: 700;
	font-size: 2.2rem;
	line-height: 1;
}

.p-data-market {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 6px;
}
.p-data-market__item {
	display: grid;
	grid-template-columns: 144px 1fr;
	align-items: center;
}
.p-data-market__title {
	--spacing: -0.01em;
	position: relative;
	padding-left: 24.85px;
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 1.267;
}
.p-data-market__title::before {
	display: block;
	position: absolute;
	top: 0.1em;
	left: 0;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	content: "";
}
.p-data-market__item.is-manufacturing .p-data-market__title::before {
	background-color: #1754b5;
}
.p-data-market__item.is-wholesale .p-data-market__title::before {
	background-color: #19b2e7;
}
.p-data-market__item.is-education .p-data-market__title::before {
	background-color: #eec40b;
}
.p-data-market__item.is-telecom .p-data-market__title::before {
	background-color: #a1cb00;
}
.p-data-market__item.is-lease .p-data-market__title::before {
	background-color: #1aaf1a;
}
.p-data-market__item.is-other .p-data-market__title::before {
	background-color: #d7d7d7;
}
.p-data-market__desc {
	line-height: 1;
}
.p-data-market__num {
	--spacing: -0.01em;
	position: relative;
	padding-left: 30.27px;
	color: #1754b5;
	font-weight: 600;
	font-size: 2.9rem;
	line-height: 1;
}
.p-data-market__num::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 6.4px;
	width: 30.27px;
	height: 1em;
	margin-top: -0.3em;
	content: "…";
	color: #2d2d2d;
	font-size: 1.5rem;
}
.p-data-market__unit {
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1;
}

.p-strength-section {
	padding-top: 80px;
	padding-bottom: 0;
}
.p-strength-section::before, .p-strength-section::after {
	z-index: inherit;
	top: 0;
	height: 370px;
	background: #1754b5;
}

.p-strength {
	z-index: 2;
	position: relative;
	padding: 100px 90px 0;
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
	background-color: #ffffff;
}
.p-strength__item:not(:last-child) {
	margin-bottom: 150px;
}
.p-strength__header {
	display: grid;
	grid-template-columns: 109px 1fr;
	-moz-column-gap: 81px;
	column-gap: 81px;
}
.p-strength__shoulder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	min-height: 107px;
	line-height: 1;
	font-family: "Poppins", sans-serif;
}
.p-strength__strength {
	--spacing: 0.08em;
	color: #909090;
	font-weight: 600;
	font-size: 1.9rem;
}
.p-strength__num {
	--spacing: 0.01em;
	color: #df1a21;
	font-weight: 400;
	font-size: 7.5rem;
}
.p-strength__title {
	font-weight: 700;
	font-size: 3rem;
	line-height: 1.6;
}
.p-strength__lead {
	margin: -35px 0 50px;
	padding-left: 190px;
}
.p-strength__img {
	display: flex;
	justify-content: center;
	padding-left: 190px;
}
.p-strength__img img {
	border-radius: 10px;
}
.p-strength__btn {
	margin-top: 50px;
}
.p-strength__btn .p-btn-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}

.p-strength-table {
	overflow: hidden;
	border: 1px solid #c3c3c3;
	border-radius: 10px;
	border-collapse: separate;
}
.p-strength-table th {
	padding: 14.5px 20px;
	vertical-align: middle;
}
.p-strength-table td {
	padding: 5px;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1;
	text-align: center;
	vertical-align: middle;
}
.p-strength-table thead th {
	font-size: 1.4rem;
	line-height: 1.214;
	text-align: center;
}
.p-strength-table thead th.p-strength-table__th-business {
	width: auto;
	text-align: left;
}
.p-strength-table thead th.p-strength-table__th-bpo {
	padding-block: 10px;
	background: #1754b5;
	color: #ffffff;
	font-size: 1.6rem;
	line-height: 1.188;
}
.p-strength-table thead tr.p-strength-table__row-business th {
	width: 92px;
	padding: 5px 8px;
	font-size: 1.2rem;
	line-height: 1.167;
}
.p-strength-table thead tr.p-strength-table__row-business th.is-wide {
	width: 100px;
	font-size: 1.1rem;
	line-height: 1.182;
}
.p-strength-table thead tr.p-strength-table__row-business-category th {
	padding: 12.5px 5px;
	font-size: 1.4rem;
	line-height: 1.214;
}
.p-strength-table tbody th[scope=row] {
	font-size: 1.3rem;
	line-height: 1.5;
}
.p-strength-table tbody tr:nth-child(2n) {
	background-color: #f4f4f4;
}
.p-strength-table tbody tr td:nth-of-type(-n+2) {
	color: #f08300;
}
.p-strength-table tbody tr td:nth-of-type(3) {
	color: #bb8dbe;
}
.p-strength-table tbody tr td:nth-of-type(n+4):nth-of-type(-n+8) {
	color: #008ccf;
}
.p-strength-table tbody tr td:nth-of-type(9) {
	color: #00a73c;
}
.p-strength-table tbody tr td:nth-of-type(10) {
	color: #9dc814;
}
.p-strength-table tbody tr td:nth-of-type(n+11):nth-of-type(-n+12) {
	color: #ea5550;
}
.p-strength-table .is-development {
	color: #f08300;
}
.p-strength-table .is-supply {
	color: #bb8dbe;
}
.p-strength-table .is-manufacturing {
	color: #008ccf;
}
.p-strength-table .is-qualitycontrol {
	color: #00a73c;
}
.p-strength-table .is-fulfillment {
	color: #9dc814;
}
.p-strength-table .is-aftercare {
	color: #ea5550;
}

.p-strength-clients {
	margin-top: 70px;
}
.p-strength-clients__title {
	margin-bottom: 30px;
	font-weight: 700;
	font-size: 2.5rem;
	line-height: 1.615;
	text-align: center;
}
.p-strength-clients__logo {
	display: flex;
	justify-content: center;
}

.p-strength-supply-chain {
	display: grid;
	position: relative;
}
.p-strength-supply-chain.p-box {
	margin-bottom: 0;
	padding: 60px;
}
.p-strength-supply-chain__flow01, .p-strength-supply-chain__flow02 {
	display: contents;
}
.p-strength-supply-chain__client {
	position: relative;
}
.p-strength-supply-chain__client::after {
	display: block;
	position: absolute;
	bottom: -40px;
	left: 50%;
	width: 100%;
	height: 40px;
	transform: translateX(-50%);
	background: url(../img/strength/arrow_triangle.svg) no-repeat center calc(50% + 2px);
	content: "";
}
.p-strength-supply-chain__client-title {
	margin-bottom: 9px;
	padding-top: 49px;
	background: url(../img/strength/icon_client.svg) no-repeat center top;
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 1.571;
	text-align: center;
}
.p-strength-supply-chain__client-img {
	max-width: 210px;
	margin-inline: auto;
}
.p-strength-supply-chain__us {
	position: relative;
}
.p-strength-supply-chain__us::before {
	display: block;
	position: absolute;
	top: 159px;
	left: -151px;
	width: 152px;
	height: 94px;
	background: url(../img/strength/flow01_pc.svg) no-repeat center center;
	content: "";
}
.p-strength-supply-chain__us-flow {
	display: grid;
	grid-template-columns: 1fr;
}
.p-strength-supply-chain__us-header {
	text-align: center;
}
.p-strength-supply-chain__us-logo {
	display: block;
	width: 187px;
	margin: 0 auto 13px;
}
.p-strength-supply-chain__us-title {
	display: block;
	font-weight: 700;
	font-size: 1.9rem;
	line-height: 1.421;
}
.p-strength-supply-chain__us-content {
	display: grid;
	position: relative;
}
.p-strength-supply-chain__us-global {
	border: 2px solid #df1a21;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: rgba(255, 255, 255, 0.35);
}
.p-strength-supply-chain__us-global-text {
	padding-bottom: 68px;
	background: url(../img/strength/icon_partner.svg) no-repeat center bottom;
	font-weight: 700;
	font-size: 1.7rem;
	line-height: 1.412;
}
.p-strength-supply-chain__enduser {
	padding: 18px;
}
.p-strength-supply-chain__enduser-text {
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1.625;
	text-align: center;
}
.p-strength-supply-chain__enduser-text small {
	display: block;
	font-size: 1.2rem;
}

.p-strength-quality-management {
	padding-left: 190px;
}
.p-strength-quality-management .p-box {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 0;
	padding: 38px;
}

.p-strength-footer {
	margin-top: 126px;
	padding-top: 100px;
	border-top: 1px solid #c3c3c3;
}

:root {
	--history-nav-height: 120px; /* PCデフォルト */
	--transition-duration: 300ms;
}

.p-history-container {
	margin-top: 100px;
	overflow: hidden;
}

.p-history-section {
	margin-bottom: 0;
}

.p-history-navbar {
	display: grid;
	place-content: center;
	width: 100%;
	height: 120px;
	background: #f4f4f4;
	transition: height ease 0.3s;
}
.p-history-navbar.is-fixed {
	z-index: 5;
	position: fixed;
	left: 0;
}
.p-history-navbar.is-fixed + .p-history-container {
	padding-top: 90px;
}

.p-history-nav {
	display: grid;
	grid-template-columns: repeat(4, 261px);
	max-width: 1044px;
	margin-inline: auto;
}
.p-history-nav__item:not(:last-child) {
	border-right: 1px solid #c3c3c3;
}
.p-history-nav__link {
	display: block;
	padding: 0 70px;
	transition: opacity 0.2s ease-out;
}
.p-history-nav__text {
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
}
.p-history-nav__text::after {
	display: block;
	position: absolute;
	top: 50%;
	right: -28px;
	width: 12px;
	height: 6px;
	transform: translateY(-50%);
	background: url(../img/common/anchor_link.svg) no-repeat center center;
	background-size: contain;
	content: "";
}
.p-history-nav__era {
	--spacing: 0.05em;
	display: block;
	margin-bottom: 9px;
	font-weight: 700;
	font-size: 3rem;
	line-height: 1.067;
	text-align: center;
}
.p-history-nav__year {
	--spacing: 0.01em;
	display: block;
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1;
	font-family: "Roboto", sans-serif;
	text-align: center;
}
.p-history-nav__item.is-era01 .p-history-nav__text {
	color: #9e7246;
}
.p-history-nav__item.is-era02 .p-history-nav__text {
	color: #b54745;
}
.p-history-nav__item.is-era03 .p-history-nav__text {
	color: #655cb7;
}
.p-history-nav__item.is-era04 .p-history-nav__text {
	color: #1277c9;
}

.p-history-era {
	display: grid;
	position: relative;
	grid-template-rows: 1fr 105px;
	grid-template-columns: 1fr;
	min-height: 499px;
	overflow: hidden;
}
.p-history-era::before {
	display: block;
	z-index: 0;
	position: absolute;
	top: 89px;
	left: 0;
	width: 100%;
	height: 100%;
	min-height: 410px;
	background-position: center top;
	background-size: auto 100%;
	background-repeat: no-repeat;
	content: "";
}
.p-history-section.is-era01 .p-history-era::before {
	background-image: url(../img/history/bg_era01_mv_pc.png);
}
.p-history-section.is-era02 .p-history-era::before {
	background-image: url(../img/history/bg_era02_mv_pc.png);
}
.p-history-section.is-era03 .p-history-era::before {
	background-image: url(../img/history/bg_era03_mv_pc.png);
}
.p-history-section.is-era04 .p-history-era::before {
	background-image: url(../img/history/bg_era04_mv_pc.png);
}
.p-history-era__era {
	--spacing: 0.04em;
	position: absolute;
	right: 0;
	bottom: 0;
	grid-row: 2/3;
	justify-self: end;
	width: 100%;
	height: 100%;
	color: rgba(255, 255, 255, 0.1);
	font-weight: 700;
	font-size: 14.2rem;
	line-height: 110px;
	font-family: "Poppins", sans-serif;
	text-align: right;
}
.p-history-era__inner {
	display: grid;
	position: relative;
	grid-template-rows: 65px 1fr;
	grid-template-columns: 630px 1fr;
	-moz-column-gap: 60px;
	column-gap: 60px;
	grid-row: 1/2;
	width: 1270px;
	height: 100%;
	margin-inline: auto;
}
.p-history-era__header {
	display: flex;
	-moz-column-gap: 19px;
	column-gap: 19px;
	grid-row: 1/2;
	grid-column: 2/3;
	flex-wrap: wrap;
	align-items: baseline;
}
.p-history-section.is-era01 .p-history-era__header {
	color: #9e7246;
}
.p-history-section.is-era02 .p-history-era__header {
	color: #b54745;
}
.p-history-section.is-era03 .p-history-era__header {
	color: #655cb7;
}
.p-history-section.is-era04 .p-history-era__header {
	color: #1277c9;
}
.p-history-era__title {
	--spacing: 0.05em;
	font-weight: 700;
	font-size: 6rem;
	line-height: 1.083;
}
.p-history-era__period {
	--spacing: 0.01em;
	font-weight: 500;
	font-size: 2rem;
	line-height: 1;
	font-family: "Roboto", sans-serif;
}
.p-history-era__mv {
	z-index: 1;
	position: relative;
	grid-row: 1/3;
	grid-column: 1/2;
	padding-top: 9px;
}
.p-history-era__mv img {
	border-radius: 10px;
}
.p-history-era__content {
	grid-row: 2/3;
	grid-column: 2/3;
	padding-top: 80px;
}
.p-history-era__text {
	color: #ffffff;
	font-size: 1.6rem;
	line-height: 1.813;
}
.p-history-era__btn {
	padding-top: 30px;
}

.p-history-content {
	position: relative;
}
.p-history-section.is-era01 .p-history-content {
	padding-top: 97px;
}
.p-history-content::before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100% + 89px);
	background: url(../img/history/bg_era_pc.png) no-repeat right top;
	content: "";
}
.p-history-content__inner {
	position: relative;
	max-width: 1160px;
	margin-inline: auto;
	padding-inline: 25px;
}

.p-history-line {
	position: relative;
	padding: 97px 0 100px;
}
.p-history-section.is-era01 .p-history-line {
	padding-top: 0;
}
.p-history-line::before {
	display: block;
	position: absolute;
	top: 0;
	left: 221px;
	width: 2px;
	height: calc(100% + 9px);
	border-left: 2px solid #df1a21;
	content: "";
}
.p-history-section.is-era01 .p-history-line::before {
	top: 30px;
}

.p-history-milestone {
	display: grid;
	position: relative;
	grid-template-columns: 221px 1fr;
	-moz-column-gap: 37px;
	column-gap: 37px;
}
.p-history-milestone--mb {
	margin-bottom: 95px;
}
.p-history-milestone--mb-s {
	margin-bottom: 27px;
}
.p-history-milestone__year {
	--spacing: 0;
	justify-self: end;
	padding-right: 40px;
	font-weight: 700;
	font-size: 6.4rem;
	line-height: 1;
	font-family: "Roboto", sans-serif;
}
.p-history-section.is-era01 .p-history-milestone__year {
	color: #9e7246;
}
.p-history-section.is-era02 .p-history-milestone__year {
	color: #b54745;
}
.p-history-section.is-era03 .p-history-milestone__year {
	color: #655cb7;
}
.p-history-section.is-era04 .p-history-milestone__year {
	color: #1277c9;
}
.p-history-milestone__year small {
	--spacing: 0;
	display: block;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
	margin-left: auto;
	padding-right: 0.15em;
	font-size: 3.6rem;
}
.p-history-milestone__year small::before {
	content: " " "-" " ";
}
.p-history-milestone__event {
	display: grid;
	position: relative;
	grid-template-columns: 1fr 400px;
	-moz-column-gap: 20px;
	column-gap: 20px;
	margin-bottom: 140px;
}
.p-history-milestone__event:has(.p-history-milestone__img) {
	margin-bottom: 0;
}
.p-history-milestone__event:not(:has(.p-history-milestone__img)) {
	grid-template-columns: 1fr;
}
.p-history-milestone__event--no-mb {
	margin-bottom: 0;
}
.p-history-milestone__img {
	display: flex;
	justify-content: center;
}
.p-history-milestone__img:not(.is-no-radius) img {
	border-radius: 10px;
	filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.07));
}
.p-history-milestone__text {
	position: relative;
	padding-top: 13px;
}
.p-history-milestone__event-text {
	position: relative;
	font-weight: 700;
	font-size: 2.2rem;
	line-height: 1.5;
}
.p-history-milestone__event-text::before {
	display: block;
	position: absolute;
	top: 0.5em;
	left: -36px;
	width: 16px;
	height: 16px;
	transform: translateX(-50%);
	border-radius: 50%;
	background: #df1a21;
	content: "";
}
.p-history-milestone__event-text--no-point {
	margin-top: 30px;
}
.p-history-milestone__event-text--no-point::before {
	display: none;
}
.p-history-milestone__event-text--sub {
	margin-top: 20px;
	color: #7d7d7d;
	font-weight: 500;
	font-size: 2rem;
}
.p-history-milestone__event-text--sub::before {
	width: 14px;
	height: 14px;
	border-radius: 0;
	background: #cccccc;
}
.p-history-milestone__event-text small {
	display: block;
	margin-top: 13px;
	font-weight: 400;
	font-size: 1.8rem;
}

.p-history-slogan {
	display: grid;
	z-index: 1;
	position: relative;
	place-content: center;
	background-position: center center;
	background-repeat: no-repeat;
}
.p-history-slogan__inner {
	margin-inline: auto;
	padding-inline: 25px;
}
.p-history-slogan__title {
	--spacing: 0.04em;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
	margin-bottom: 30px;
	color: rgba(255, 255, 255, 0.3);
	font-weight: 700;
	font-size: 10.2rem;
	line-height: 1;
	font-family: "Poppins", sans-serif;
	text-align: center;
}
.p-history-slogan__title::after {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "ONE STEP FORWARD";
	mix-blend-mode: overlay;
}
.p-history-slogan__text {
	color: #ffffff;
	font-weight: 500;
	font-size: 2.4rem;
	line-height: 1.792;
	text-align: center;
}
.p-history-slogan__btn {
	margin-top: 50px;
}
.p-history-slogan__btn .p-btn-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}
.page-top .p-contact {
	margin-top: 0;
}

.p-top-kv {
	position: relative;
	height: 900px;
	margin-bottom: 19px;
}
.p-top-kv__wrapper {
	z-index: 0;
	position: relative;
	height: 100%;
	background: url(../img/top/kv_bg.png) no-repeat right top/auto 900px;
}
.p-top-kv__inner {
	position: relative;
	max-width: 1600px;
	height: 100%;
	margin: 0 auto;
	background: url(../img/top/kv_base.png) no-repeat right top/auto 900px;
}
.p-top-kv__text-box-wrapper {
	z-index: 1;
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 100%;
	max-width: 1600px;
	height: 900px;
	transform: translateX(-50%);
}
.p-top-kv__text-box {
	position: absolute;
	bottom: 130px;
	left: clamp(2.5rem, -48.093rem + 38.621vw, 13.7rem);
}
.p-top-kv__title {
	font-weight: 900;
	font-size: 10.3rem;
	line-height: 1;
	letter-spacing: 0.03em;
}
.p-top-kv__title span {
	display: block;
}
.p-top-kv__title span + span {
	margin-top: 15px;
}
.p-top-kv__text-en {
	position: relative;
	margin-top: 58px;
	padding-top: 47px;
	color: #909090;
	font-weight: 600;
	font-size: 2.8rem;
	line-height: 1.1;
	font-family: "Poppins", sans-serif;
	letter-spacing: 0.06em;
}
.p-top-kv__text-en::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 94px;
	height: 1px;
	background-color: #909090;
	content: "";
}
.p-top-kv__illustration {
	position: relative;
	height: 100%;
}
.p-top-kv__illustration img {
	position: absolute;
	max-width: 100%;
}
.p-top-kv__illustration-line--01 {
	top: 0;
	right: 828px;
}
.p-top-kv__illustration-line--02-01 {
	top: 68px;
	right: 582px;
}
.p-top-kv__illustration-line--02-02 {
	top: 68px;
	right: 345px;
}
.p-top-kv__illustration-line--02-03 {
	top: 183px;
	right: 386px;
}
.p-top-kv__illustration-line--03-01 {
	top: 340px;
	right: 434px;
}
.p-top-kv__illustration-line--03-02 {
	top: 240px;
	right: 462px;
}
.p-top-kv__illustration-line--03-03 {
	top: 310px;
	right: 541px;
}
.p-top-kv__illustration-tile {
	top: 33px;
	right: 416px;
}
.p-top-kv__illustration-airplane {
	top: 76px;
	right: 49px;
}
.p-top-kv__illustration-monitor--01 {
	top: 60px;
	right: 993px;
}
.p-top-kv__illustration-monitor-shadow--01 {
	top: 172px;
	right: 985px;
}
.p-top-kv__illustration-monitor--02 {
	top: 468px;
	right: 180px;
}
.p-top-kv__illustration-monitor-shadow--02 {
	top: 585px;
	right: 177px;
}
.p-top-kv__illustration-truck--01 {
	top: 0;
	right: 393px;
}
.p-top-kv__illustration-truck--02 {
	top: 309px;
	right: 143px;
}
.p-top-kv__illustration-forklift--01 {
	top: 66px;
	right: 560px;
}
.p-top-kv__illustration-forklift--02 {
	top: 464px;
	right: 388px;
}
.p-top-kv__illustration-desk--01 {
	top: 166px;
	right: 887px;
}
.p-top-kv__illustration-desk--02-01 {
	top: 333px;
	right: 632px;
}
.p-top-kv__illustration-desk--02-02 {
	top: 288px;
	right: 561px;
}
.p-top-kv__illustration-person--01 {
	top: 201px;
	right: 928px;
	opacity: 0;
}
.p-top-kv__illustration-person--02-01 {
	top: 297px;
	right: 662px;
	opacity: 0;
}
.p-top-kv__illustration-person--02-02 {
	top: 252px;
	right: 591px;
	opacity: 0;
}
.p-top-kv__illustration-person--03 {
	top: 558px;
	right: 265px;
	opacity: 0;
}

.p-top-strength-section .p-top-section__header {
	position: absolute;
	top: 0;
	left: 0;
	margin-bottom: 24px;
	transform: translateY(-19px);
}
.p-top-clients-section .p-top-section__header {
	margin-bottom: 40px;
	text-align: center;
}
.p-top-service-section .p-top-section__header {
	margin-bottom: 16px;
}
.p-top-solution-section .p-top-section__header {
	margin-bottom: 24px;
}
.p-top-info-section .p-top-section__header {
	margin-bottom: 20px;
}
.p-top-info-section .p-top-section__header-title-en {
	--spacing: 0.03em;
	font-size: 6rem;
	line-height: 1.08;
}
.p-top-section__header-title {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 16px;
	color: #1754b5;
	font-weight: 700;
}
.p-top-section__header-title-ja {
	--spacing: 0.05em;
	font-size: 3.2rem;
	line-height: 1;
}
.p-top-section__header-title-en {
	--spacing: 0.04em;
	font-size: 8.6rem;
	line-height: 1;
	font-family: "Poppins", sans-serif;
}

.p-top-title-grid {
	display: grid;
	grid-template-columns: 1fr 240px;
	align-items: center;
	justify-content: space-between;
}
.p-top-title-grid .p-title-lv3 {
	margin-bottom: 0;
}
.p-top-title-grid .p-btn--detail {
	background-color: transparent;
}

.p-top-strength-section {
	margin-bottom: 0;
	background-color: #f4f4f4;
}
.p-top-strength-section__inner {
	position: relative;
	padding: 139px 0 130px;
}
.p-top-strength-section .p-top-title-grid {
	margin-bottom: 80px;
}

.p-top-strength-list {
	display: flex;
	-moz-column-gap: 44px;
	column-gap: 44px;
	row-gap: 80px;
	flex-wrap: wrap;
	justify-content: center;
}

.p-top-strength-card {
	position: relative;
	padding-top: 22px;
}
.p-top-strength-card__shoulder {
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	min-height: 95px;
	line-height: 1;
	font-family: "Poppins", sans-serif;
}
.p-top-strength-card__strength {
	--spacing: 0.08em;
	color: #909090;
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 1.04;
}
.p-top-strength-card__num {
	--spacing: 0.01em;
	color: #df1a21;
	font-weight: 500;
	font-size: 7.1rem;
	line-height: 1.08;
}
.p-top-strength-card__title {
	--spacing: 0.02em;
	margin-top: 24px;
	font-weight: 600;
	font-size: 2.8rem;
	line-height: 1.4;
	text-align: center;
}

.p-top-clients-section {
	padding: 140px 0 123px;
	background-color: rgba(255, 255, 255, 0.85);
}

.p-top-clients__logo {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
	background-color: #ffffff;
}
.p-top-clients__lead {
	--spacing: 0.02em;
	font-weight: 700;
	font-size: 3rem;
	line-height: 1.6;
	text-align: center;
}

.p-top-service-section {
	padding-bottom: 158px;
	background-color: rgba(255, 255, 255, 0.85);
}
.p-top-service-section__inner {
	max-width: 1600px;
}
.p-top-service-section .p-top-title-grid {
	margin-bottom: 50px;
}

.p-top-service {
	display: grid;
	grid-template-columns: 1fr 630px;
	justify-content: space-between;
}
.p-top-service__supply-chain {
	margin-right: 154px;
	margin-left: -66px;
}
.p-top-service__supply-chain img {
	display: block;
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
}
.p-top-service__content {
	max-width: 1310px;
	padding-inline: 25px;
}

.p-top-service-link-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	-moz-column-gap: 40px;
	column-gap: 40px;
}
.p-top-service-link-list__item {
	border-bottom: 1px solid #c3c3c3;
}

.p-top-service-link {
	--spacing: 0.02em;
	display: block;
	z-index: 0;
	position: relative;
	padding: 30px 26px;
	font-size: 1.8rem;
	line-height: 1.08;
	transition: opacity 0.2s ease-out;
}
.p-top-service-link::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 16px;
	height: 16px;
	transform: translateY(-50%);
	border-radius: 50%;
	content: "";
}
.p-top-service-link::after {
	display: block;
	position: absolute;
	top: 50%;
	left: 6px;
	width: 5px;
	height: 8px;
	transform: translateY(-50%);
	background: url(../img/common/arrow_link_wh.svg) no-repeat left center;
	content: "";
}
.p-top-service-link-list__item--dev .p-top-service-link::before {
	background-color: #f08300;
}
.p-top-service-link-list__item--sup .p-top-service-link::before {
	background-color: #bb8dbe;
}
.p-top-service-link-list__item--mfg .p-top-service-link::before {
	background-color: #008ccf;
}
.p-top-service-link-list__item--qc .p-top-service-link::before {
	background-color: #00a73c;
}
.p-top-service-link-list__item--ffm .p-top-service-link::before {
	background-color: #9dc814;
}
.p-top-service-link-list__item--ac .p-top-service-link::before {
	background-color: #ea5550;
}

.p-top-solution-section {
	position: relative;
	background-color: rgba(255, 255, 255, 0.85);
}
.p-top-solution-section__inner {
	max-width: 1490px;
	margin-inline: auto;
}
.p-top-solution-section .p-top-title-grid {
	margin-bottom: 70px;
}

.p-top-solution .p-solution-card__caption {
	--spacing: 0.02em;
	padding-top: 28px;
	font-size: 2rem;
	line-height: 1.8;
}
.p-top-solution .p-solution-card-list {
	gap: 0;
}

.splide__arrows {
	display: flex;
	justify-content: center;
	margin-top: 25px;
	gap: 24px;
}
.splide__arrow {
	border: none;
	background-color: transparent;
	cursor: pointer;
}
.splide__arrow img {
	width: 64px;
	height: 64px;
}
.splide__arrow--next img {
	transform: scale(-1, 1);
}
.splide__pagination {
	gap: 16px;
}
.splide__pagination__page {
	width: 10px;
	height: 10px;
	border: 1px solid #2d2d2d;
	border-radius: 50%;
}
.splide__pagination__page.is-active {
	background-color: #2d2d2d;
}

.p-top-info-section {
	padding: 140px 0 160px;
	background-color: #ffffff;
}

.p-top-info {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
.p-top-info .p-btn--detail {
	width: 170px;
	height: 44px;
	padding: 0 26px 0 27px;
}
.p-top-info .p-btn--detail::before {
	top: 50%;
	right: 18px;
	width: 8px;
	height: 8px;
}
.p-top-info .p-btn--detail .p-btn__text {
	font-size: 1.4rem;
}

.p-top-info-news-list {
	row-gap: 40px;
	margin-top: 40px;
}
.p-top-info-news-list .p-news-list__link {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px 16px;
	transition: all 0.2s ease-out;
}
.p-top-info-news-list .p-news-list__title {
	--spacing: 0.02em;
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 1.6;
}
.p-top-info-news-list .p-news-date {
	--spacing: 0.02em;
	font-size: 1.8rem;
	line-height: 1.6;
}

.p-top-info-link-list.p-link-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin: 44px 0 65px;
	gap: 36px 10px;
}
.p-top-info-link-list__item .c-arrow-link:not([href$=".pdf"]) {
	padding-left: 22px;
	background-position-y: 0.3em;
	font-size: 1.8rem;
	line-height: 1.222;
}

.p-top-info-link-sub-list {
	display: flex;
	position: relative;
	row-gap: 15px;
	flex-wrap: wrap;
	width: -moz-fit-content;
	width: fit-content;
	margin: 20px 0 0 22px;
}
.p-top-info-link-sub-list__item {
	display: grid;
	place-content: center;
}
.p-top-info-link-sub-list__item:not(:last-child) {
	margin-right: 16px;
	border-right: 1px solid #c3c3c3;
}
.p-top-info-link-sub-list__link {
	box-sizing: content-box;
	display: grid;
	place-content: center;
	width: -moz-fit-content;
	width: fit-content;
	min-width: 50px;
	padding: 0 16px 0 0;
	font-size: 1.6rem;
	line-height: 1.063;
	white-space: nowrap;
	transition: opacity 0.2s ease-out;
}

.p-top-info-btn-list {
	display: grid;
	grid-template-columns: repeat(2, 300px);
	gap: 20px;
}
.p-top-info-btn-list .p-btn--menu {
	width: 100%;
	height: 140px;
	padding-left: 81px;
	border-radius: 10px;
}

.p-news-section-group {
	margin-bottom: 120px;
}
.p-news-section-group__footer {
	display: grid;
	place-content: center;
}

.p-news-section {
	max-height: 9999px;
	margin-bottom: 60px;
	overflow: hidden;
	opacity: 1;
	transition: max-height 0.3s ease, opacity 0.3s ease;
}
.p-news-section.is-inactive {
	max-height: 0;
	margin-bottom: 0;
	opacity: 0;
}

.p-contact-section {
	padding-bottom: 0;
}
.p-contact-section::before, .p-contact-section::after {
	z-index: inherit;
	top: 0;
	height: 360px;
}

.p-contact-title {
	display: grid;
	position: relative;
	align-content: center;
	min-height: 72px;
	margin-bottom: 30px;
	padding-left: 88px;
	font-weight: 700;
	font-size: 2.6rem;
}
.p-contact-title::before, .p-contact-title::after {
	display: block;
	position: absolute;
	width: 72px;
	height: 72px;
	content: "";
}
.p-contact-title::before {
	top: 0;
	left: 0;
	background-position: center center;
	background-repeat: no-repeat;
}
.p-contact-form .p-contact-title::before {
	background-image: url(../img/common/icon_mail.svg);
	background-size: 30px auto;
}
.p-contact-tel .p-contact-title::before {
	background-image: url(../img/common/icon_tel.svg);
	background-size: 29px auto;
}
.p-contact-title::after {
	top: 0;
	left: 0;
	border: 1px solid #df1a21;
	border-radius: 50%;
}

.p-contact-form {
	z-index: 2;
	position: relative;
	padding-top: 60px;
}
.p-contact-form .is-required {
	padding-right: 6px;
	color: #df1a21;
	font-size: 1.6rem;
}
.p-contact-form__header {
	margin-bottom: 60px;
}
.p-contact-form__content .p-box {
	margin-bottom: 0;
	padding: 80px;
}

.p-form {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 36px;
	max-width: 930px;
	margin-inline: auto;
}
.p-form .is-required {
	padding-right: 0;
	padding-left: 3px;
}
.p-form__field {
	display: grid;
	grid-template-columns: 250px 1fr;
}
.p-form__field:nth-child(1 of .p-form__field) .p-form__label {
	padding-top: 0;
}
.p-form__field fieldset {
	display: contents;
}
.p-form__label {
	padding: 15px 15px 0 0;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.611;
}
.p-form__control {
	align-content: center;
}
.p-form__control--name {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.p-form__notes {
	margin-top: 14px;
	color: #666666;
	font-size: 1.2rem;
	line-height: 1.2;
}

.p-form-privacy {
	margin-top: 80px;
	padding: 55px 70px 50px;
	border-radius: 10px;
	background: #f4f4f4;
}
.p-form-privacy__text {
	margin-bottom: 40px;
	padding-bottom: 50px;
	border-bottom: 1px solid #c3c3c3;
}
.p-form-privacy__title {
	position: relative;
	margin-bottom: 40px;
	padding-left: 22px;
	font-weight: 600;
	font-size: 2.2rem;
	line-height: 1.2;
}
.p-form-privacy__title::before {
	display: block;
	position: absolute;
	top: calc(0.8em - 4px);
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #df1a21;
	content: "";
}
.p-form-privacy__desc {
	font-size: 1.6rem;
	line-height: 1.813;
}
.p-form-privacy__checbox {
	width: -moz-fit-content;
	width: fit-content;
	margin-inline: auto;
}
.p-form-privacy__checbox .c-checkbox__label {
	font-weight: 700;
	font-size: 1.8rem;
}

.p-form-footer {
	display: grid;
	place-items: center;
	margin-top: 80px;
}

.p-form-progressbar {
	margin-bottom: 70px;
	padding-bottom: 64px;
	border-bottom: 1px solid #c3c3c3;
}

.p-contact-tel {
	padding-block: 70px;
}
.p-contact-tel__list {
	display: grid;
	grid-template-columns: repeat(3, 406px);
	justify-content: space-between;
}
.p-contact-tel .p-cvr {
	height: 100%;
	margin-bottom: 0;
	padding-block: 0;
}
.p-contact-tel .p-cvr__box {
	height: 100%;
	padding: 38px 39px;
}
.p-contact-tel .p-cvr__title {
	margin-bottom: 26px;
	padding-left: 20px;
	font-weight: 600;
	font-size: 1.8rem;
	line-height: 1.389;
}
.p-contact-tel .p-cvr__title::before {
	top: calc(0.7em - 4px);
}
.p-contact-tel .p-cvr__tel {
	padding-inline: 0;
	border-left: none;
}
.p-contact-tel .p-cvr__tel-num {
	padding-left: 0;
	background-image: none;
}
.p-contact-tel .p-cvr__tel-sec {
	margin-bottom: 10px;
	font-weight: 600;
	font-size: 1.6rem;
}
.p-contact-tel .p-cvr__tel-num {
	margin-bottom: 7px;
	font-weight: 600;
}
.p-contact-tel .p-cvr__link-list {
	margin-top: 20px;
	margin-bottom: 0;
	font-size: 1.5rem;
	line-height: 1.2;
}
.p-contact-tel .p-cvr__link-list .c-arrow-link {
	background-position-y: 0.2em;
}

.p-form-complete.p-box {
	margin-bottom: 47px;
	padding-top: 120px;
	padding-bottom: 170px;
}
.p-form-complete__message {
	font-weight: 700;
	font-size: 2.6rem;
	line-height: 1.615;
	text-align: center;
}
.p-form-complete__footer {
	display: grid;
	justify-content: center;
	margin-top: 60px;
}
.p-form-complete__footer .p-btn--back {
	width: 290px;
}
.p-form-complete__footer .p-btn--back::before {
	left: 40px;
}
.p-form-complete__footer .p-btn__text {
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.611;
}

/* トップページに戻る */

@media screen and (min-width: 769px){
	.page-top .l-header {
		opacity: 0;
	}
	.is-scrolled .l-header__fixed {
		-webkit-backdrop-filter: blur(20px);
		backdrop-filter: blur(20px);
		background: rgba(255, 255, 255, 0.85);
	}
	.page-top .l-footer {
		position: relative;
		background: #ffffff;
		opacity: 0;
	}
	.page-top .l-main {
		opacity: 0;
	}
	.page-top .l-side-sticky {
		opacity: 0;
	}
	.p-btn--sticky {
		display: grid;
		place-content: center;
		width: 66px;
		height: 186px;
		border-radius: 10px 0px 0px 10px;
		font-size: 1.8rem;
		line-height: 1.056;
	}
	.p-box .p-2col {
		-moz-column-gap: 50px;
		column-gap: 50px;
	}
	.p-2col--inverse {
		flex-direction: row;
	}
	.p-2col__item--text {
		flex: 1;
	}
	.p-2col__item--img {
		flex-basis: 480px;
	}
	.p-footer-nav-list__item.is-strength {
		grid-row: 1/2;
		grid-column: 1/2;
	}
	.p-footer-nav-list__item.is-service {
		grid-row: 2/3;
		grid-column: 1/2;
	}
	.p-footer-nav-list__item.is-solution {
		grid-row: 3/4;
		grid-column: 1/2;
	}
	.p-footer-nav-list__item.is-company {
		grid-row: 1/4;
		grid-column: 2/3;
	}
	.p-footer-nav-list__item.is-recruit {
		grid-row: 1/4;
		grid-column: 3/4;
	}
	.is-scrolled .p-header {
		height: 100px;
	}
	.is-scrolled .p-header__inner {
		padding-top: 30px;
	}
	.p-gnav-list__item.is-current .p-gnav-link__text::after {
		width: 100%;
	}
	.p-gnav-submenu {
		display: none;
		position: fixed;
		top: 119px;
		left: 0;
		width: 100%;
		padding: 70px 0 90px;
		overflow-x: auto;
		background: #ffffff;
	}
	.is-scrolled .p-gnav-submenu {
		top: 99px;
	}
	.p-gnav-submenu__header {
		grid-row: 1/2;
		grid-column: 1/2;
		padding-right: 40px;
	}
	.p-gnav-submenu__header.is-accordion-sp {
		pointer-events: none;
	}
	.p-gnav-submenu__category {
		grid-row: 2/3;
		grid-column: 1/2;
	}
	.p-gnav-submenu__content {
		grid-row: 1/3;
		grid-column: 2/3;
	}
	.p-gnav-submenu--service .p-gnav-submenu__header {
		grid-row: 1/2;
	}
	.p-gnav-submenu--service .p-gnav-submenu__content {
		padding-top: 23px;
	}
	.p-gnav-submenu--solution .p-gnav-submenu__content {
		padding-top: 23px;
	}
	.p-gnav-submenu--company .p-gnav-submenu__content {
		padding-top: 30px;
	}
	.p-gnav-submenu--company .p-gnav-submenu__footer {
		grid-row: 1/3;
		grid-column: 3/4;
		align-content: center;
		border-left: 1px solid #c3c3c3;
	}
	.p-gnav-submenu--company .p-gnav-submenu__footer-btn .p-btn--menu {
		width: 270px;
		height: 60px;
	}
	.p-gnav-submenu__accordion {
		display: contents !important;
	}
	.p-drawer-nav-btn__text {
		display: none;
	}
	.p-page-header {
		padding-top: 192px;
	}
	.p-page-header--category-top {
		padding-bottom: 100px;
	}
	.page-service .p-page-header--category-top {
		padding-bottom: 80px;
	}
	.page-solution .p-page-header--category-top {
		padding-bottom: 80px;
	}
	.page-strength .p-page-header--category-top {
		padding-bottom: 80px;
	}
	.page-data .p-page-header--category-top {
		padding-bottom: 100px;
	}
	.page-history .p-page-header--category-top {
		padding-top: 150px;
		padding-bottom: 0;
		background-image: url(../img/history/bg_history_mv_pc.png);
		background-position-y: 150px;
	}
	.page-history .p-page-header--category-top .p-page-header__inner {
		height: 630px;
		padding-top: 125px;
		gap: 45px;
	}
	.p-page-header--category-top .p-page-header__text-main {
		grid-template-columns: auto 1fr;
		-moz-column-gap: 31px;
		column-gap: 31px;
		grid-row: 1/2;
		grid-column: 1/2;
	}
	.p-page-header--category-top .p-page-header__text-sub {
		grid-row: 2/3;
		grid-column: 1/2;
	}
	.p-page-header--category-top .p-page-header__img {
		grid-row: 1/3;
		grid-column: 2/3;
	}
	.page-history .p-page-header--category-top .p-page-header__logo {
		margin-top: -14px;
	}
	.p-page-header--detail {
		padding-bottom: 100px;
	}
	.page-service .p-page-header--detail, .page-solution .p-page-header--detail {
		padding-bottom: 80px;
	}
	.page-search .p-page-header--detail {
		min-height: 0;
	}
	.page-solution .p-page-header--detail .p-page-header__text {
		grid-row: 1/2;
		grid-column: 1/2;
	}
	.page-solution .p-page-header--detail .p-page-header__img {
		grid-row: 1/3;
		grid-column: 2/3;
	}
	.page-solution .p-page-header--detail .p-page-header__meta {
		grid-row: 2/3;
		grid-column: 1/2;
		padding-top: 30px;
	}
	.gsc-results .gsc-cursor-box .gsc-cursor {
		display: grid !important;
		grid-template-columns: repeat(auto-fill, 52px);
		gap: 10px;
	}
	.gsc-results .gsc-cursor-box .gsc-cursor-page {
		display: grid !important;
		place-content: center;
		width: 52px !important;
		height: 52px !important;
		margin: 0 !important;
		border: 1px solid #2d2d2d !important;
		border-radius: 50%;
		color: #2d2d2d !important;
		font-size: 2rem;
	}
	.gsc-results .gsc-cursor-box .gsc-cursor-page.gsc-cursor-current-page {
		border-color: #df1a21 !important;
		color: #df1a21 !important;
		font-weight: 500 !important;
	}
	.gsc-results .gsc-cursor-box .gsc-cursor-page:hover {
		border-color: #df1a21 !important;
		color: #df1a21 !important;
		text-decoration: none !important;
	}
	.gsc-results .gsc-cursor-box .gsc-cursor-page {
		transition: opacity 0.2s ease-out;
	}
	.p-side-sticky__item {
		writing-mode: vertical-rl;
	}
	.u-pc-hidden {
		display: none !important;
	}
	.p-category-top-btn-list .p-btn--menu.is-history {
		padding-left: 171px;
		background-size: 50px auto;
		background-position-x: 46px;
	}
	.p-category-top-btn-list .p-btn--menu.is-history strong {
		font-size: 3.8rem;
	}
	.p-category-top-btn-list .p-btn--menu.is-data {
		padding-left: 169.5px;
		background-size: 50px auto;
		background-position-x: 46px;
	}
	.p-category-top-btn-list .p-btn--menu.is-data strong {
		font-size: 2.8rem;
	}
	.p-service-outline-list.is-no-col {
		grid-template-columns: 1fr;
	}
	.p-solution-filter__group:not(:last-child) {
		border-bottom: 1px dashed #c3c3c3;
	}
	.c-inner:has(.p-strength-section) {
		padding-inline: 0px;
	}
	.p-strength {
		margin-inline: -65px;
	}
	.p-strength-supply-chain {
		grid-template-rows: 350px 80px;
		grid-template-columns: 270px 1fr;
		gap: 40px 100px;
	}
	.p-strength-supply-chain__client {
		grid-row: 1/2;
		grid-column: 1/2;
		margin-bottom: 0;
		padding: 31px 29px;
	}
	.p-strength-supply-chain__us {
		grid-row: 1/3;
		grid-column: 2/3;
		margin-bottom: 0;
		padding: 35px 67px 57px 63px;
	}
	.p-strength-supply-chain__us-flow {
		row-gap: 21px;
	}
	.p-strength-supply-chain__us-header {
		grid-row: 1/2;
		grid-column: 1/3;
	}
	.p-strength-supply-chain__us-content {
		grid-template-columns: 313px 220px;
		gap: 107px;
	}
	.p-strength-supply-chain__us-content::before {
		display: block;
		position: absolute;
		top: 0;
		left: 313px;
		width: 107px;
		height: 100%;
		background: url(../img/strength/flow02_pc.svg) no-repeat center center;
		content: "";
	}
	.p-strength-supply-chain__us-global {
		align-content: center;
		align-self: center;
		height: 220px;
		border-radius: 50%;
		background-image: url(../img/strength/bg_global_pc.png);
		text-align: center;
	}
	.p-strength-supply-chain__enduser {
		grid-row: 2/3;
		grid-column: 1/2;
	}
	.p-history-navbar.is-fixed {
		top: 100px;
		height: 90px;
	}
	.p-history-era__inner::after {
		display: block;
		position: absolute;
		top: 0;
		left: 301px;
		width: 2px;
		height: calc(100% + 105px);
		border-left: 2px solid #df1a21;
		content: "";
	}
	.p-history-section.is-era01 .p-history-era__inner::after {
		display: none;
	}
	.p-history-slogan {
		min-height: 560px;
		margin-bottom: 205px;
		background-image: url(../img/history/bg_slogan_pc.png);
	}
	.p-top-kv__wrapper {
		opacity: 0;
	}
	.p-top-kv__title span {
		clip-path: inset(0 100% 0 0);
	}
	.p-top-kv__text-en {
		opacity: 0;
	}
	.p-top-service-section .p-top-title-grid {
		grid-template-columns: 1fr;
		row-gap: 37px;
	}
	.p-top-clients__logo {
		padding-block: 32px;
	}
	.p-top-service__content {
		padding-top: 85px;
	}
	.p-top-solution-section {
		padding-bottom: 130px;
	}
	.p-top-solution-section::before {
		display: block;
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 459px;
		background-color: #f4f4f4;
		content: "";
	}
	.p-top-solution-section__inner {
		padding-inline: 25px;
	}
	.p-top-info-news-list {
		padding-left: 9px;
	}
	.p-top-info-news-list .p-news-list__link {
		padding-right: 20px;
	}
	.p-top-info-link-list__item.is-sustainability {
		grid-column: 1/3;
	}
	.p-top-info-btn-list .p-btn--menu.is-history {
		background-size: 46px 42px;
	}
	.p-top-info-btn-list .p-btn--menu.is-history strong {
		font-size: 3.8rem;
	}
	.p-top-info-btn-list .p-btn--menu.is-data {
		background-size: 46px 46px;
	}
	.p-top-info-btn-list .p-btn--menu.is-data strong {
		font-size: 2.8rem;
	}
	.p-top-info-btn-list .p-btn--menu .p-btn__text {
		--spacing: 0.02em;
		font-weight: 400;
		font-size: 2rem;
		line-height: 1;
		text-align: left;
	}
	.p-top-info-btn-list .p-btn--menu .p-btn__text span {
		display: inline-block;
	}
	.p-top-info-btn-list .p-btn--menu .p-btn__text span:first-child {
		margin-bottom: 6px;
	}
}

@media screen and (min-width: 769px) and (any-hover: hover){
	.p-gnav-list__item:not(.is-current):hover .p-gnav-link__text::after {
		width: 100%;
	}
	.gsc-results .gsc-cursor-box .gsc-cursor-page:hover {
		opacity: 0.7;
	}
}

@media screen and (min-width: 1600px){
	.l-contents {
		background-size: 100% auto;
	}
	.page-history .p-page-header--category-top {
		background-size: cover;
	}
	.p-service-chain {
		background-size: cover;
	}
	.p-history-era::before {
		background-size: cover;
	}
	.p-history-slogan {
		background-size: cover;
	}
}

@media screen and (max-width: 768px){
	body {
		min-width: 360px;
	}
	.page-history .l-header__fixed {
		background: #ffffff;
	}
	.is-scrolled .l-header__fixed {
		width: 0;
		min-width: 0;
		background: transparent;
	}
	.l-footer {
		padding: 60px 0 80px;
	}
	.l-contents {
		background-image: url(../img/common/bg_sp.png);
		background-size: contain;
		background-color: #ffffff;
	}
	.page-history .l-contents {
		background-image: none;
	}
	.page-top .l-main {
		padding-top: 12px;
	}
	.l-side-sticky {
		top: unset;
		right: unset;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 55px;
		padding-block: 6px;
		background: rgba(255, 255, 255, 0.9);
	}
	.c-inner-wide--full-sp {
		padding-inline: 0;
	}
	.c-inner-min {
		min-width: 0;
	}
	.p-btn--menu {
		width: 100%;
	}
	.p-btn--menu.is-history {
		padding-left: 48.77px;
		background-size: 22px auto;
	}
	.p-btn--menu.is-data {
		padding-left: 48px;
		background-size: 22px auto;
	}
	.p-btn--menu .p-btn__text {
		display: block;
		font-size: 1.3rem;
		line-height: 1.2;
		text-align: left;
	}
	.is-history .p-btn--menu .p-btn__text strong {
		font-size: 2.2rem;
	}
	.is-data .p-btn--menu .p-btn__text strong {
		font-size: 1.6rem;
	}
	.p-btn--sticky {
		height: 43px;
		border-radius: 10px;
		font-size: 1.4rem;
		line-height: 1.071;
	}
	.p-btn--contact {
		width: 295px;
		height: 70px;
		padding-right: 20px;
		padding-left: 63.65px;
		background-size: 28px auto;
		background-position-x: 28px;
	}
	.p-btn--contact .p-btn__text {
		font-size: 1.8rem;
		line-height: 1.611;
	}
	.p-btn--detail {
		width: 180px;
		height: 48px;
		padding: 0 37px 0 24px;
	}
	.p-btn--detail::before {
		right: 19px;
	}
	.p-btn--detail-variable {
		width: -moz-fit-content;
		width: fit-content;
		min-width: 180px;
	}
	.p-btn--detail .p-btn__text {
		font-size: 1.4rem;
		line-height: 1.571;
	}
	.p-btn--history {
		width: 240px;
		height: 60px;
		padding-right: 35px;
		padding-left: 30px;
	}
	.p-btn--history::before {
		right: 25px;
	}
	.p-btn--history .p-btn__text {
		font-size: 1.5rem;
		line-height: 1.6;
	}
	.p-btn--back {
		width: 180px;
		height: 48px;
		padding-inline: 10px;
	}
	.p-btn--back::before {
		left: 12px;
		width: 8px;
		height: 11px;
		margin-top: -5px;
	}
	.p-btn--back .p-btn__text {
		font-size: 1.4rem;
		line-height: 1.571;
	}
	.p-btn--link {
		width: 100%;
		max-width: 325px;
		height: 80px;
		padding: 10px 48px 10px 30px;
	}
	.p-btn--link::before {
		right: 12px;
		width: 24px;
		height: 24px;
	}
	.p-btn--link .p-btn__text {
		font-size: 1.8rem;
	}
	.p-btn--submit {
		width: 295px;
		height: 70px;
		font-size: 2rem;
	}
	.p-btn-list--category-link {
		grid-template-columns: 1fr;
		max-width: 325px;
		margin-inline: auto;
		gap: 10px;
	}
	.p-section {
		margin-bottom: 60px;
	}
	.p-section--zebra {
		margin-bottom: 0;
	}
	.p-btn-common {
		margin-bottom: 20px;
	}
	.p-fig--main .p-fig__img {
		margin-bottom: 30px;
	}
	.p-fig--1col, .p-fig--2col, .p-fig--3col {
		row-gap: 30px;
	}
	.p-fig--1col, .p-fig--2col, .p-fig--3col {
		margin-bottom: 30px;
	}
	.p-fig--2col {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
		gap: 30px 20px;
	}
	.p-fig--3col {
		grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
		gap: 24px 20px;
	}
	.p-fig__caption {
		padding-top: 12px;
	}
	.p-fig__caption-title {
		font-size: 1.7rem;
	}
	.p-title-lv2 {
		font-size: 2.1rem;
	}
	.p-title-lv2:not(.p-title-lv2--main) {
		margin-bottom: 30px;
		padding-bottom: 15px;
		padding-left: 26px;
	}
	.p-title-lv2:not(.p-title-lv2--main)::before {
		top: calc(0.8em - 5px);
		width: 10px;
		height: 10px;
	}
	.p-title-lv2--main {
		margin-bottom: 20px;
	}
	.p-title-lv3 {
		margin-bottom: 20px;
		font-size: 1.8rem;
	}
	.p-title-lv3--mark {
		padding-left: 20px;
	}
	.p-title-lv3--mark::before {
		top: calc(0.8em - 4px);
		width: 8px;
		height: 8px;
		margin-bottom: 0;
	}
	.p-title-grid .p-title-lv3 {
		margin-bottom: 0;
	}
	.p-title-grid {
		grid-template-columns: 1fr;
		margin-bottom: 20px;
		gap: 10px;
	}
	.p-title-grid .p-btn--detail {
		padding: 0 26px 0 24px;
	}
	.p-title-grid .p-btn--detail .p-btn__text {
		font-size: 1.3rem;
	}
	.p-desc-list {
		margin-bottom: 25px;
	}
	.p-desc-list__title {
		font-size: 1.7rem;
	}
	.p-2col {
		margin-bottom: 30px;
	}
	.p-2col {
		flex-direction: column;
		justify-content: center;
		gap: 30px 0;
	}
	.p-table__cell-w10-sp {
		width: 10% !important;
	}
	.p-table__cell-w20-sp {
		width: 20% !important;
	}
	.p-table__cell-w30-sp {
		width: 30% !important;
	}
	.p-table__cell-w40-sp {
		width: 40% !important;
	}
	.p-table__cell-w50-sp {
		width: 50% !important;
	}
	.p-table__cell-w60-sp {
		width: 60% !important;
	}
	.p-table__cell-w70-sp {
		width: 70% !important;
	}
	.p-table__cell-w80-sp {
		width: 80% !important;
	}
	.p-table__cell-w90-sp {
		width: 90% !important;
	}
	.p-table-container {
		margin-bottom: 30px;
	}
	.p-table {
		min-width: 768px;
	}
	.p-table-container--sp-noscroll .p-table {
		min-width: auto;
	}
	.p-table th,
	.p-table td {
		padding: 12px 15px;
	}
	.p-box {
		margin-bottom: 30px;
		padding: 30px;
	}
	.p-link-list {
		margin-bottom: 30px;
	}
	.p-hr {
		margin-block: 30px;
	}
	.p-cvr {
		margin-bottom: 30px;
	}
	.p-cvr__box {
		padding: 25px 30px;
	}
	.p-cvr__box-inner {
		grid-template-columns: 1fr;
		row-gap: 20px;
	}
	.p-cvr__tel {
		grid-column: 1/2;
		padding: 20px 0 0;
		border-top: 1px solid #c3c3c3;
		border-left: none;
	}
	.p-cvr__mail {
		grid-column: 1/2;
		justify-self: center;
	}
	.p-cvr__mail .p-btn--contact {
		width: 100%;
		max-width: 295px;
		height: 70px;
		padding-right: 20px;
		padding-left: 63.65px;
		background-size: 28px auto;
		background-position-x: 28px;
	}
	.p-cvr__mail .p-btn--contact .p-btn__text {
		font-size: 1.8rem;
		line-height: 1.4;
	}
	.p-cvr .p-cvr__tel-sec {
		font-size: 1.7rem;
	}
	.p-cvr .p-cvr__tel-num {
		padding-left: 45px;
		background-size: 40px auto;
		font-size: 2.8rem;
	}
	.p-cvr .p-cvr__tel-num.is-no-freedial {
		padding-left: 35px;
		background-size: 25px auto;
	}
	.p-margin-block {
		margin-bottom: 30px;
	}
	.p-margin-bottom0 {
		margin-bottom: 0px !important;
	}
	.p-margin-bottom15 {
		margin-bottom: 10px !important;
	}
	.p-margin-bottom30 {
		margin-bottom: 20px !important;
	}
	.p-margin-bottom45 {
		margin-bottom: 30px !important;
	}
	.p-margin-bottom60 {
		margin-bottom: 40px !important;
	}
	.p-margin-bottom-minus10 {
		margin-bottom: -5px !important;
	}
	.p-margin-bottom-minus15 {
		margin-bottom: -10px !important;
	}
	.p-margin-bottom-minus20 {
		margin-bottom: -15px !important;
	}
	.p-margin-bottom-minus30 {
		margin-bottom: -20px !important;
	}
	.p-scroll-img__container img {
		max-width: none;
	}
	.p-contact {
		margin-top: 80px;
	}
	.p-contact__inner {
		max-width: 295px;
		padding: 46px 0 56px;
	}
	.p-contact__title {
		font-size: 4.4rem;
	}
	.p-contact__lead {
		margin-bottom: 24px;
		font-size: 1.6rem;
		line-height: 1.625;
	}
	.p-contact__mail {
		margin-bottom: 26px;
	}
	.p-contact__tel {
		grid-template-columns: 1fr;
		justify-self: center;
		gap: 15px;
	}
	.p-contact__tel-title {
		justify-self: center;
		padding-right: 0;
		border-right: none;
		font-size: 1.5rem;
		line-height: 1.467;
	}
	.p-contact__tel-desc {
		justify-self: center;
	}
	.p-contact__tel-list {
		display: grid;
		grid-template-columns: 1fr;
		justify-items: center;
		gap: 7px;
	}
	.p-contact__tel-num {
		margin-bottom: 0;
		font-size: 2.8rem;
	}
	.p-contact__tel-hours {
		font-size: 1.3rem;
	}
	.p-faq-list {
		margin-bottom: 30px;
	}
	.p-faq-list__qa {
		padding: 20px;
	}
	.p-faq-list__q, .p-faq-list__a {
		padding-left: 33px;
	}
	.p-faq-list__q::before, .p-faq-list__a::before {
		top: 2px;
		font-size: 2.3rem;
	}
	.p-faq-list__q {
		padding-right: 25px;
		background-size: 20px;
		font-size: 1.8rem;
	}
	.p-footer__main {
		grid-template-columns: 1fr;
		margin-bottom: 40px;
		padding-bottom: 40px;
		gap: 36px;
		border-bottom: 1px solid #c3c3c3;
	}
	.p-footer__bottom {
		grid-template-columns: 1fr;
		justify-items: center;
	}
	.p-footer__nav {
		grid-template-columns: 1fr;
		gap: 25px;
	}
	.p-footer__nav-list {
		grid-column: 1/2;
	}
	.p-footer__btn-list {
		grid-column: 1/2;
		padding-bottom: 5px;
	}
	.p-footer__pis-link {
		grid-row: 3/4;
		grid-column: 1/2;
		padding-left: 0;
		border-left: none;
	}
	.p-footer-logo {
		width: 174px;
	}
	.p-footer-nav-list {
		grid-template-rows: auto;
		grid-template-columns: 1fr;
		gap: 30px 0;
	}
	.p-footer-nav-link {
		display: block;
		padding-left: 0;
		background-image: none;
		cursor: pointer;
	}
	.p-footer-nav-list__item:has(.is-accordion-sp) .p-footer-nav-link {
		background: url(../img/common/icon_open_red.svg) no-repeat right center;
	}
	.p-footer-nav-list__item:has(.is-accordion-sp) .p-footer-nav-link.is-opened {
		background-image: url(../img/common/icon_close_red.svg);
	}
	.p-footer-nav-accordion.is-accordion-sp {
		display: none;
		padding: 12px 0 0 15px;
	}
	.p-footer-nav-submenu-list__item.is-category-top {
		display: block;
		font-weight: 700;
		font-size: 1.6rem;
		line-height: 1.5;
	}
	.p-footer-btn-list {
		grid-template-columns: repeat(2, 1fr);
		-moz-column-gap: 5px;
		column-gap: 5px;
		max-width: 325px;
		margin-inline: auto;
	}
	.p-pis-link {
		max-width: 325px;
	}
	.p-pis-link__text {
		font-size: 1.7rem;
	}
	.p-footer-info-list {
		justify-content: center;
		gap: 14px 20px;
	}
	.p-pagetop {
		top: -60px;
		right: 10px;
		width: 44px;
		height: 44px;
		margin-top: -22px;
		background-size: 12px auto;
	}
	.p-header {
		height: 65px;
	}
	.p-header__inner {
		position: static;
		grid-template-rows: 65px 0;
		grid-template-columns: 142px 1fr;
		align-items: center;
		min-width: 0;
		padding: 0 12px 0 15px;
	}
	.p-header__logo {
		opacity: 1;
		transition: all 0.2s ease;
	}
	.is-scrolled .p-header__logo {
		z-index: -1;
		opacity: 0;
	}
	.p-header__nav-btn {
		display: block;
	}
	.p-header__nav-target {
		position: absolute;
		top: 0;
		left: 0;
		grid-row: 2/3;
		grid-column: 1/3;
		width: 100vw;
		height: calc(100vh - 65px);
		padding-bottom: 50px;
		overflow-y: auto;
		background: #ffffff;
	}
	.p-header__nav {
		height: auto;
		padding: 50px 30px 0;
	}
	.p-header__nav:has(.p-gnav-link__accordion.is-open) {
		height: calc(100vh - 50px);
	}
	.p-header__lang-search {
		grid-template-columns: 1fr;
		row-gap: 24px;
		justify-items: center;
		margin-top: 40px;
		padding: 60px 30px 0;
		border-top: 1px solid #c3c3c3;
	}
	.p-header__search {
		width: 100%;
		height: 58px;
	}
	.p-header__search .area-search .gsc-search-box {
		height: 58px;
	}
	.p-header__search .area-search .gsc-search-button {
		width: 55px;
		height: 100%;
		padding-left: 5px;
	}
	.p-header__search .area-search .gsc-search-button-v2 {
		position: relative;
		width: 100%;
		height: 100%;
		background-color: #ececec;
		background-color: #1754b5;
	}
	.p-header__search .area-search .gsc-search-button-v2::after {
		display: block;
		z-index: 1;
		position: absolute;
		top: 50%;
		left: 0;
		width: 100%;
		transform: translateY(-50%);
		content: "検索";
		color: #ffffff;
		font-weight: 700;
		font-size: 1.5rem;
	}
	.p-label-service {
		min-height: 33px;
		padding: 5px 12px;
		font-size: 1.3rem;
	}
	.p-label-list {
		margin-right: -12px;
		gap: 5px;
	}
	.p-movie__thumb::after {
		width: 65px;
		height: 65px;
	}
	.p-gnav-list {
		grid-template-columns: 1fr;
		-moz-column-gap: 0;
		column-gap: 0;
		row-gap: 40px;
		justify-content: flex-start;
		width: 100%;
		height: auto;
	}
	.p-gnav-list__item {
		display: grid;
	}
	.p-gnav-list__item:has(.p-gnav-submenu) .p-gnav-link {
		display: none;
	}
	.p-gnav-link {
		padding: 10px 20px;
	}
	.p-gnav-submenu {
		display: block;
	}
	.p-gnav-submenu__inner {
		grid-template-rows: auto;
		grid-template-columns: 1fr;
		width: auto;
	}
	.p-gnav-submenu__header.is-accordion-sp {
		background: url(../img/common/icon_open.svg) no-repeat right center;
		cursor: pointer;
	}
	.p-gnav-submenu__header.is-accordion-sp.is-opened {
		background-image: url(../img/common/icon_close.svg);
	}
	.p-gnav-submenu__title {
		grid-template-columns: auto 1fr;
		-moz-column-gap: 10px;
		column-gap: 10px;
		align-items: center;
		padding-right: 14px;
	}
	.p-gnav-submenu__title-en {
		margin-bottom: 0;
		font-size: 2.8rem;
	}
	.p-gnav-submenu__title-ja {
		--spacing: 0;
		font-size: 1.3rem;
		line-height: 1.538;
	}
	.p-gnav-submenu__category-top-link {
		margin-top: 0;
		margin-bottom: 16px;
		font-size: 1.5rem;
		line-height: 1.467;
	}
	.p-gnav-submenu--company .p-gnav-submenu__footer {
		padding-top: 30px;
	}
	.p-gnav-submenu--company .p-gnav-submenu__footer-btn {
		grid-template-columns: repeat(2, 1fr);
		align-items: center;
		justify-content: space-between;
		justify-items: unset;
		max-width: 315px;
		margin-inline: auto;
		gap: 0 5px;
	}
	.p-gnav-submenu--company .p-gnav-submenu__footer-btn .p-btn--menu {
		height: 58px;
	}
	.p-gnav-submenu__accordion.is-accordion-sp {
		display: none;
		padding-top: 18px;
	}
	.p-gnav-submenu-tagline__title {
		margin-bottom: 12px;
		font-size: 1.5rem;
		line-height: 1.467;
	}
	.p-gnav-submenu-search__title {
		margin-bottom: 12px;
		font-size: 1.2rem;
		line-height: 1.583;
	}
	.p-gnav-submenu-list {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 14px 16px;
	}
	.p-gnav-submenu-link {
		display: block;
		padding-left: 17px;
		background-size: 5px 10px;
		font-size: 1.5rem;
	}
	.p-gnav-submenu-lineup {
		margin-top: 12px;
	}
	.p-gnav-sustainability-list {
		margin-top: 12px;
	}
	.p-gnav-sustainability-list__link {
		min-width: 40px;
		padding-right: 12px;
		font-size: 1.3rem;
		line-height: 1.077;
	}
	.p-drawer-nav-btn {
		display: block;
	}
	.p-drawer-nav-btn__trigger {
		display: block;
	}
	.p-drawer-nav-target {
		display: none;
	}
	.p-news-list {
		row-gap: 30px;
	}
	.p-news-list__title {
		font-size: 1.8rem;
	}
	.p-page-header {
		padding-top: 85px;
	}
	.p-page-header--category-top {
		padding-bottom: clamp(4rem, 0.183rem + 10.178vw, 8rem);
	}
	.page-service .p-page-header--category-top {
		padding-bottom: clamp(8.6rem, 2.493rem + 16.285vw, 15rem);
	}
	.page-solution .p-page-header--category-top {
		padding-bottom: clamp(5.3rem, 0.147rem + 13.74vw, 10.7rem);
	}
	.page-strength .p-page-header--category-top {
		padding-bottom: clamp(6.3rem, 4.678rem + 4.326vw, 8rem);
	}
	.page-data .p-page-header--category-top {
		padding-bottom: 40px;
	}
	.page-history .p-page-header--category-top {
		padding-top: 65px;
		padding-bottom: 0;
		background-image: url(../img/history/bg_history_mv_sp.png);
		background-size: 100% auto;
		background-position-y: 0;
	}
	.p-page-header--category-top .p-page-header__inner {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.page-strength .p-page-header--category-top .p-page-header__inner, .page-solution .p-page-header--category-top .p-page-header__inner, .page-service .p-page-header--category-top .p-page-header__inner {
		grid-template-columns: 1fr;
		gap: 26px;
	}
	.page-history .p-page-header--category-top .p-page-header__inner {
		min-height: 645px;
		padding-top: 89px;
		gap: 28px;
	}
	.p-page-header--category-top .p-page-header__text-main {
		grid-template-columns: 1fr;
		row-gap: 17px;
		grid-row: 1/2;
		grid-column: 1/2;
	}
	.page-strength .p-page-header--category-top .p-page-header__text-main, .page-solution .p-page-header--category-top .p-page-header__text-main, .page-service .p-page-header--category-top .p-page-header__text-main {
		padding-top: 0;
	}
	.p-page-header--category-top .p-page-header__text-sub {
		grid-row: 3/4;
		grid-column: 1/2;
	}
	.page-history .p-page-header--category-top .p-page-header__text-sub, .page-strength .p-page-header--category-top .p-page-header__text-sub, .page-solution .p-page-header--category-top .p-page-header__text-sub, .page-service .p-page-header--category-top .p-page-header__text-sub {
		grid-row: 2/3;
	}
	.p-page-header--category-top .p-page-header__img {
		grid-row: 2/3;
		grid-column: 1/2;
		justify-self: center;
	}
	.page-strength .p-page-header--category-top .p-page-header__img, .page-solution .p-page-header--category-top .p-page-header__img, .page-service .p-page-header--category-top .p-page-header__img {
		grid-row: 3/4;
	}
	.page-strength .p-page-header--category-top .p-page-header__picture, .page-solution .p-page-header--category-top .p-page-header__picture, .page-service .p-page-header--category-top .p-page-header__picture {
		max-width: clamp(22.9rem, 1.144rem + 58.015vw, 45.7rem);
		margin-top: 0;
	}
	.p-page-header--category-top .p-page-header__title {
		row-gap: 10px;
	}
	.page-contact .p-page-header--category-top .p-page-header__title, .page-data .p-page-header--category-top .p-page-header__title {
		gap: 10px;
	}
	.page-history .p-page-header--category-top .p-page-header__title {
		order: 2;
		gap: 10px;
	}
	.p-page-header--category-top .p-page-header__title-ja {
		--spacing: 0.05em;
		font-size: 1.8rem;
	}
	.p-page-header--category-top .p-page-header__title-en {
		font-size: 4.4rem;
	}
	.page-history .p-page-header--category-top .p-page-header__title-en {
		font-size: 4.4rem;
	}
	.p-page-header--category-top .p-page-header__lead {
		font-size: 1.7rem;
	}
	.page-strength .p-page-header--category-top .p-page-header__lead, .page-solution .p-page-header--category-top .p-page-header__lead, .page-service .p-page-header--category-top .p-page-header__lead {
		margin-bottom: 4px;
		font-size: 1.8rem;
		line-height: 1.389;
	}
	.page-data .p-page-header--category-top .p-page-header__lead {
		line-height: 1.5;
	}
	.page-history .p-page-header--category-top .p-page-header__lead {
		line-height: 1.5;
	}
	.p-page-header--category-top .p-page-header__tagline {
		row-gap: 14px;
		margin-bottom: 14px;
	}
	.p-page-header--category-top .p-page-header__tagline-shoulder {
		min-width: 137px;
		height: 29px;
		padding: 2px 8px;
		font-size: 1.3rem;
	}
	.p-page-header--category-top .p-page-header__tagline-text {
		font-size: 3rem;
	}
	.page-history .p-page-header--category-top .p-page-header__logo {
		order: 1;
		width: 120px;
	}
	.p-page-header--detail {
		padding-bottom: 40px;
		overflow: hidden;
	}
	.page-solution .p-page-header--detail .p-page-header__inner {
		grid-template-columns: 1fr;
	}
	.page-service .p-page-header--detail .p-page-header__inner {
		grid-template-columns: 1fr;
		row-gap: 30px;
	}
	.p-page-header--detail .p-page-header__text {
		gap: 6px;
	}
	.page-solution .p-page-header--detail .p-page-header__text {
		grid-row: 1/2;
		grid-column: 1/2;
	}
	.page-service .p-page-header--detail .p-page-header__text {
		grid-row: 1/2;
		grid-column: 1/2;
	}
	.page-solution .p-page-header--detail .p-page-header__img {
		grid-row: 2/3;
		grid-column: 1/2;
		justify-self: center;
		padding-top: 20px;
	}
	.page-service .p-page-header--detail .p-page-header__img {
		grid-row: 2/3;
		grid-column: 1/2;
		justify-self: center;
	}
	.page-solution .p-page-header--detail .p-page-header__meta {
		grid-row: 3/4;
		grid-column: 1/2;
		padding-top: 15px;
	}
	.p-page-header--detail .p-page-header__category {
		margin-bottom: 4px;
		padding-left: 14px;
		font-size: 1.4rem;
	}
	.p-page-header--detail .p-page-header__category::before {
		width: 6px;
		height: 6px;
	}
	.page-service .p-page-header--detail .p-page-header__title {
		row-gap: 16px;
	}
	.p-page-header--detail .p-page-header__title-ja {
		font-size: 4.4rem;
	}
	.page-solution .p-page-header--detail .p-page-header__title-ja {
		font-size: 2.2rem;
		line-height: 1.5;
	}
	.page-service .p-page-header--detail .p-page-header__title-ja {
		font-size: 3.4rem;
	}
	.p-page-header--detail .p-page-header__title-en {
		font-size: 1.8rem;
	}
	.page-service .p-page-header--detail .p-page-header__title-en {
		font-size: 1.5rem;
	}
	.p-page-header--detail .p-page-header__lead {
		font-size: 1.4rem;
		line-height: 1.5;
	}
	.page-service .p-page-header--detail .p-page-header__lead {
		grid-row: 3/4;
		grid-column: 1/2;
		font-size: 1.8rem;
		line-height: 1.611;
	}
	.page-service .p-page-header--detail .p-page-header__text:has(.p-page-header__lead) .p-page-header__title {
		margin-bottom: 30px;
	}
	.p-related-solution {
		margin-top: 30px;
		padding-top: 30px;
	}
	.p-related-service__box {
		grid-template-columns: 1fr;
		margin-top: 40px;
		margin-bottom: 0;
		padding: 30px 35px;
	}
	.p-related-service__title {
		margin-bottom: 0;
		padding-left: 14px;
		font-size: 1.6rem;
	}
	.p-related-service__title::before {
		top: calc(0.8em - 3px);
		width: 6px;
		height: 6px;
	}
	.p-search-result table.gsc-search-box .gsc-search-button {
		padding-left: 10px;
	}
	.p-search-result .gsib_a {
		padding-right: 0;
	}
	.p-search-result .gsc-search-button-v2 {
		width: 90px;
		background-size: 17px auto;
	}
	.p-search-result .gsc-search-button-v2::after {
		left: calc(50% + 5px);
		font-size: 1.5rem;
	}
	.is-touch-device .p-search-result .gsc-input-box table {
		height: auto;
	}
	.p-search-result .gs-web-image-box .gs-image,
	.p-search-result .gs-promotion-image-box .gs-promotion-image {
		width: 50px;
		height: 50px;
	}
	.p-side-sticky.p-btn-list {
		grid-template-columns: repeat(2, 1fr);
		max-width: 346px;
		margin-inline: auto;
		gap: 10px;
	}
	.u-sp-hidden {
		display: none !important;
	}
	.u-sp-mb0 {
		margin-bottom: 0px !important;
	}
	.u-sp-mb5 {
		margin-bottom: 5px !important;
	}
	.u-sp-mb10 {
		margin-bottom: 10px !important;
	}
	.u-sp-mb15 {
		margin-bottom: 15px !important;
	}
	.u-sp-mb20 {
		margin-bottom: 20px !important;
	}
	.u-sp-mb25 {
		margin-bottom: 25px !important;
	}
	.u-sp-mb30 {
		margin-bottom: 30px !important;
	}
	.u-sp-mb35 {
		margin-bottom: 35px !important;
	}
	.u-sp-mb40 {
		margin-bottom: 40px !important;
	}
	.u-sp-mb45 {
		margin-bottom: 45px !important;
	}
	.u-sp-mb50 {
		margin-bottom: 50px !important;
	}
	.u-sp-mb55 {
		margin-bottom: 55px !important;
	}
	.u-sp-mb60 {
		margin-bottom: 60px !important;
	}
	.u-sp-mb65 {
		margin-bottom: 65px !important;
	}
	.u-sp-mb70 {
		margin-bottom: 70px !important;
	}
	.u-sp-mb75 {
		margin-bottom: 75px !important;
	}
	.u-sp-mb80 {
		margin-bottom: 80px !important;
	}
	.u-sp-mb85 {
		margin-bottom: 85px !important;
	}
	.u-sp-mb90 {
		margin-bottom: 90px !important;
	}
	.u-sp-mb95 {
		margin-bottom: 95px !important;
	}
	.u-sp-mb100 {
		margin-bottom: 100px !important;
	}
	.p-category-top-btn {
		padding: 20px 0;
	}
	.p-category-top-btn + .l-main {
		padding-top: 60px;
	}
	.p-category-top-btn-list {
		grid-template-columns: repeat(2, 1fr);
		-moz-column-gap: 5px;
		column-gap: 5px;
		width: 100%;
		max-width: 325px;
	}
	.p-category-top-btn-list .p-btn--menu {
		width: 100%;
		height: 64px;
	}
	.p-category-top-card-list {
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
		gap: 40px 20px;
	}
	.p-category-top-card .p-fig__img {
		margin-inline: auto;
	}
	.p-service-point {
		margin-bottom: 80px;
	}
	.p-service-point::before, .p-service-point::after {
		top: 75px;
		height: 721px;
		transform: translateY(0);
	}
	.p-service-point__box {
		margin-bottom: 0;
		padding: 22px 35px;
	}
	.p-service-point-list {
		margin-left: -51px;
	}
	.p-service-point-list__item {
		grid-template-columns: 72px 1fr;
		align-items: start;
		gap: 14px;
	}
	.p-service-point-list__item-head {
		height: 72px;
	}
	.p-service-point-list__item-point {
		margin-bottom: 3px;
		font-size: 1.2rem;
	}
	.p-service-point-list__item-num {
		font-size: 2.9rem;
		line-height: 1;
	}
	.p-service-point-list__item-title {
		display: grid;
		align-content: center;
		min-height: 72px;
		font-size: 1.7rem;
		line-height: 1.529;
	}
	.p-service-point-list__item-text {
		margin-top: 15px;
		margin-left: -41px;
	}
	.p-service-section__header {
		margin-bottom: 40px;
	}
	.p-service-section__header-title {
		row-gap: 10px;
	}
	.p-service-section__header-title-ja {
		--spacing: 0.05em;
		font-size: 1.8rem;
	}
	.p-service-section__header-title-en {
		font-size: 4.4rem;
	}
	.p-service-lineup-scroll-img {
		grid-template-columns: 140px 1fr;
	}
	.p-service-lineup-scroll-img__title {
		padding: 29px 18px;
		font-size: 1.7rem;
		line-height: 1.294;
	}
	.p-service-lineup-category {
		grid-template-columns: 1fr;
	}
	.p-service-lineup-category__group {
		grid-template-columns: 90px 1fr;
	}
	.p-service-lineup-category__group-title {
		height: 90px;
		min-height: 0;
		font-size: 1.5rem;
	}
	.p-service-lineup-category__group-title .is-feature .num {
		font-size: 3rem;
	}
	.p-service-lineup-category__group-content {
		padding-right: 0;
	}
	.p-service-lineup-category__group-content .is-strong {
		font-size: 1.7rem;
	}
	.p-service-lineup-category-list {
		-moz-column-gap: 0;
		column-gap: 0;
	}
	.p-service-lineup-category-list__item {
		font-size: 1.5rem;
	}
	.p-service-lineup-category-list__item:not(:last-child)::after {
		display: inline-block;
		position: static;
		transform: none;
		border: none;
		content: " " "／";
	}
	.p-service-list {
		grid-template-columns: 1fr;
	}
	.p-service-list__caption-title {
		font-size: 1.5rem;
	}
	.p-service-case-list {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 30px 15px;
	}
	.p-service-case-list__item.p-box {
		padding-bottom: 20px;
		padding-left: 20px;
	}
	.p-service-case-header {
		grid-template-columns: 59px 1fr;
		min-height: 50px;
		padding-right: 50px;
	}
	.p-service-case-header .icon {
		width: 48px;
	}
	.p-service-case-header .title {
		font-size: 1.8rem;
	}
	.p-service-case-header::after {
		width: 50px;
		height: 50px;
	}
	.p-service-case-header.is-pc::after {
		background-size: 60% auto;
	}
	.p-service-case-header.is-tablet::after {
		background-size: 60% auto;
	}
	.p-service-case-header.is-smartphone::after {
		background-size: auto 65%;
	}
	.p-service-case-header.is-smartwatch::after {
		background-size: auto 65%;
	}
	.p-service-case-header.is-translator::after {
		background-size: auto 65%;
	}
	.p-service-case-header.is-register::after {
		background-size: 60% auto;
	}
	.p-service-case-content .list {
		font-size: 1.6rem;
	}
	.p-service-chain {
		min-height: clamp(41.5rem, 2.855rem + 103.053vw, 82rem);
		background-size: auto 100%;
	}
	.p-service-chain.is-movie {
		min-height: 0;
		padding-block: 50px;
	}
	.p-service-chain-movie__caption {
		margin-bottom: 18px;
		font-size: 1.8rem;
	}
	.p-service-category {
		padding-top: 60px;
	}
	.p-service-category-list {
		gap: 40px;
	}
	.p-service-outline-list {
		grid-template-columns: 1fr;
		gap: 9px;
	}
	.p-service-outline-list__item {
		padding-left: 28px;
		font-size: 1.7rem;
	}
	.p-service-category-card {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.p-service-category-card__img {
		grid-row: 2/3;
		grid-column: 1/2;
	}
	.p-service-category-card__text {
		grid-row: 3/4;
		grid-column: 1/2;
	}
	.p-service-category-card .p-btn-list {
		padding-top: 30px;
	}
	.p-solution-section-start {
		margin-bottom: 30px;
	}
	.p-solution-section-start::before, .p-solution-section-start::after {
		top: 32px;
		height: 618px;
		transform: translateY(0);
	}
	.p-solution-section-end::before, .p-solution-section-end::after {
		z-index: -1;
		top: 220px;
		height: 645px;
	}
	.p-solution-summary {
		grid-template-columns: 226px 1fr;
		align-items: start;
	}
	.p-solution-summary__box {
		align-content: start;
		margin-bottom: 0;
		margin-left: -225px;
		padding-block: 110px 20px;
	}
	.p-solution-summary__title {
		align-content: center;
		justify-content: start;
		min-height: 70px;
		margin-top: 20px;
		margin-left: -10px;
		padding-top: 0;
		font-size: 1.6rem;
	}
	.p-solution-summary--problem .p-solution-summary__title {
		padding-left: 84px;
		background-position: 15.74px 17.31px;
		background-size: 40px auto;
	}
	.p-solution-summary--solution .p-solution-summary__title {
		padding-left: 69px;
		background-position: 15.54px 17.98px;
		background-size: 40px auto;
	}
	.p-solution-num-list {
		row-gap: 9px;
	}
	.p-solution-num-list__item {
		padding-left: 32.25px;
		font-size: 1.5rem;
	}
	.p-solution-num-list__item::before {
		top: 0.4em;
		width: 20.25px;
		height: 20.25px;
		font-size: 1rem;
	}
	.p-solution-result {
		padding-top: 29px;
		background-size: auto 16.56px;
	}
	.p-solution-result__title {
		margin-bottom: 30px;
		font-size: 2rem;
	}
	.p-solution-result__content {
		grid-template-rows: auto;
		grid-template-columns: 1fr;
		gap: 20px 0;
	}
	.p-solution-result__img {
		grid-row: 1/2;
		grid-column: 1/2;
	}
	.p-solution-result__text {
		grid-row: 2/3;
		grid-column: 1/2;
		font-size: 1.6rem;
		line-height: 1.813;
	}
	.p-solution-effect-list {
		padding: 20px 25px;
		gap: 18px 1px;
	}
	.p-solution-effect-list__item {
		width: 70px;
		min-height: 55px;
		font-size: 1.3rem;
	}
	.p-solution-effect-list__item.is-hour {
		background-size: calc(43px * 0.75) auto;
	}
	.p-solution-effect-list__item.is-cost {
		background-size: calc(46px * 0.75) auto;
	}
	.p-solution-effect-list__item.is-date {
		background-size: calc(40px * 0.75) auto;
	}
	.p-solution-effect-list__item.is-quality {
		background-size: calc(44px * 0.75) auto;
	}
	.p-solution-effect-list__item.is-efficiency {
		background-size: calc(47.97px * 0.75) auto;
	}
	.p-solution-effect-list__item.is-global {
		min-height: 65px;
		background-size: calc(44px * 0.75) auto;
	}
	.p-solution-effect-list__item.is-information {
		background-size: calc(44px * 0.75) auto;
	}
	.p-solution-card-list {
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
		gap: 40px 20px;
	}
	.p-solution-card__category {
		top: 10px;
		left: 10px;
		min-width: 91.5px;
		height: 28px;
		padding: 3px;
	}
	.p-solution-card__caption {
		font-size: 1.6rem;
		line-height: 1.625;
	}
	.p-solution-card .p-fig__img {
		margin-inline: auto;
	}
	.p-solution-top-section::before, .p-solution-top-section::after {
		height: 220px;
	}
	.p-solution-filter-range {
		padding-top: 40px;
	}
	.p-solution-filter-range .is-no-result {
		font-size: 1.6rem;
	}
	.p-solution-filter-range__title {
		min-height: 36px;
		margin-bottom: 20px;
		padding-left: 46px;
		font-size: 1.8rem;
		line-height: 1.611;
	}
	.p-solution-filter-range__title::before {
		width: 36px;
		height: 36px;
		background-size: 12.46px auto;
	}
	.p-solution-filter-range__filter {
		margin-bottom: 60px;
	}
	.p-solution-filter__group {
		grid-template-columns: 1fr;
	}
	.p-solution-filter__title {
		padding: 8px 20px;
		font-size: 1.4rem;
		line-height: 1.571;
	}
	.p-solution-filter__list {
		padding: 20px 19px;
	}
	.p-solution-filter-list {
		grid-template-columns: repeat(auto-fill, 140px);
		justify-content: center;
		gap: 4px;
	}
	.p-solution-filter-list button {
		height: 29px;
		font-size: 1.3rem;
	}
	.p-data-section {
		margin-bottom: 60px;
	}
	.p-data-footer {
		padding-top: 60px;
	}
	.p-data-list {
		grid-template-columns: 1fr;
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
		justify-content: center;
		gap: 10px;
	}
	.p-data-list__item {
		padding: 26px 30px 40px;
	}
	.p-data-card__title.p-title-lv3--mark {
		margin-bottom: 20px;
		padding-left: 14px;
		font-size: 1.6rem;
	}
	.p-data-card__title.p-title-lv3--mark::before {
		top: calc(0.5em - 3px);
		width: 6px;
		height: 6px;
	}
	.p-data-card__content {
		row-gap: 16px;
	}
	.p-data-card.is-sales .p-data-card__content, .p-data-card.is-market .p-data-card__content {
		row-gap: 10px;
	}
	.p-data-card__text {
		font-size: 1.5rem;
		line-height: 1.467;
	}
	.p-data {
		-moz-column-gap: 5px;
		column-gap: 5px;
		min-height: 60px;
	}
	.p-data-card.is-founding .p-data {
		padding-right: 46.65px;
	}
	.p-data-card.is-trading .p-data {
		padding-right: 50.71px;
	}
	.p-data-card.is-certification .p-data {
		padding-right: 44.57px;
	}
	.p-data-card.is-presentation .p-data {
		padding-right: 41.96px;
	}
	.p-data::after {
		bottom: 5px;
	}
	.p-data-card.is-founding .p-data::after {
		width: 46.65px;
		height: 46.65px;
	}
	.p-data-card.is-trading .p-data::after {
		width: 50.71px;
		height: 44.56px;
	}
	.p-data-card.is-certification .p-data::after {
		width: 44.57px;
		height: 44.56px;
	}
	.p-data-card.is-presentation .p-data::after {
		width: 41.96px;
		height: 44.56px;
	}
	.p-data-card.is-sales .p-data, .p-data-card.is-market .p-data {
		grid-template-columns: 1fr;
		justify-items: center;
		gap: 15px;
	}
	.p-data__graph {
		width: clamp(16rem, 7.412rem + 22.901vw, 25rem);
	}
	.p-data__num {
		font-size: 6rem;
	}
	.p-data__unit {
		font-size: 1.8rem;
	}
	.p-data-card.is-founding .p-data__unit {
		padding-right: 10px;
	}
	.p-data-card.is-trading .p-data__unit {
		padding-right: 12px;
	}
	.p-data-card.is-certification .p-data__unit {
		padding-right: 12px;
	}
	.p-data-card.is-presentation .p-data__unit {
		padding-right: 15px;
	}
	.p-data-sales {
		grid-template-columns: repeat(2, 1fr);
		-moz-column-gap: 10px;
		column-gap: 10px;
	}
	.p-data-sales__item {
		grid-template-columns: 1fr;
		row-gap: 3px;
	}
	.p-data-sales__title {
		padding-left: 18px;
		font-size: 1.3rem;
		line-height: 1.308;
	}
	.p-data-sales__title::before {
		top: 0.25em;
		width: 12px;
		height: 12px;
	}
	.p-data-sales__num {
		--spacing: -0.01em;
		padding-left: 18px;
		font-size: 2.4rem;
	}
	.p-data-sales__num::before {
		display: none;
	}
	.p-data-sales__unit {
		font-size: 1.3rem;
	}
	.p-data-market {
		grid-template-columns: repeat(2, 1fr);
		gap: 4px 10px;
	}
	.p-data-market__item {
		grid-template-columns: 1fr;
		row-gap: 3px;
	}
	.p-data-market__title {
		padding-left: 18px;
		font-size: 1.3rem;
		line-height: 1.308;
	}
	.p-data-market__title::before {
		top: 0.25em;
		width: 12px;
		height: 12px;
	}
	.p-data-market__num {
		--spacing: -0.01em;
		padding-left: 18px;
		font-size: 2.4rem;
	}
	.p-data-market__num::before {
		display: none;
	}
	.p-data-market__unit {
		font-size: 1.3rem;
	}
	.p-strength-section {
		padding-top: 50px;
	}
	.p-strength-section::before, .p-strength-section::after {
		height: 229px;
	}
	.c-inner:has(.p-strength-section) {
		padding-inline: 20px;
	}
	.p-strength {
		padding: 40px 0 0;
	}
	.p-strength__item:not(:last-child) {
		margin-bottom: 60px;
	}
	.p-strength__header {
		grid-template-columns: 1fr;
		row-gap: 6px;
		margin: 0 25px 20px;
	}
	.p-strength__shoulder {
		min-height: 68px;
	}
	.p-strength__strength {
		font-size: 1.2rem;
	}
	.p-strength__num {
		font-weight: 500;
		font-size: 5rem;
	}
	.p-strength__title {
		font-size: 2rem;
		text-align: center;
	}
	.p-strength__lead {
		margin: 0 25px 30px;
		padding-left: 0;
	}
	.p-strength__img {
		margin-inline: 25px;
		padding-left: 0;
	}
	.p-strength__btn {
		margin-top: 30px;
	}
	.p-strength__btn .p-btn-list {
		gap: 20px;
	}
	.p-strength-table-container {
		padding-inline: 25px;
	}
	.p-strength-table-container .p-table-container.is-scrollable {
		margin-right: -25px;
		padding-right: 25px;
	}
	.p-strength-table {
		min-width: 1260px;
	}
	.p-strength-clients {
		margin-top: 50px;
	}
	.p-strength-clients__title {
		margin-bottom: 10px;
		font-size: 1.8rem;
		line-height: 1.611;
	}
	.p-strength-clients__logo {
		margin-inline: -7.5px;
	}
	.p-strength-clients__logo img {
		max-width: 300px;
	}
	.p-strength-supply-chain {
		grid-template-rows: auto;
		grid-template-columns: 1fr;
		gap: 0;
	}
	.p-strength-supply-chain.p-box {
		padding: 30px 23px;
	}
	.p-strength-supply-chain__client {
		display: grid;
		grid-template-columns: 1fr;
		row-gap: 10px;
		order: 2;
		margin-bottom: 32px;
		padding: 30px 35px 25px;
	}
	.p-strength-supply-chain__client::after {
		bottom: -32px;
		height: 32px;
	}
	.p-strength-supply-chain__client-title {
		display: grid;
		grid-row: 2/3;
		align-content: center;
		width: -moz-fit-content;
		width: fit-content;
		min-height: 36px;
		margin: 0 auto;
		padding: 0 0 0 67.5px;
		background-position: left center;
		background-size: 60px auto;
		font-size: 1.6rem;
		line-height: 1.625;
	}
	.p-strength-supply-chain__client-img {
		grid-row: 1/2;
	}
	.p-strength-supply-chain__us {
		z-index: 1;
		order: 1;
		margin-bottom: 56px;
		padding: 36px 17px 30px;
	}
	.p-strength-supply-chain__us::before {
		top: auto;
		bottom: -90px;
		left: 50%;
		width: 158px;
		height: 89px;
		transform: translateX(-50%);
		background-image: url(../img/strength/flow01_sp.svg);
	}
	.p-strength-supply-chain__us-flow {
		row-gap: 20px;
	}
	.p-strength-supply-chain__us-logo {
		width: 142px;
		margin-bottom: 17px;
	}
	.p-strength-supply-chain__us-title {
		font-size: 1.6rem;
		line-height: 1.375;
	}
	.p-strength-supply-chain__us-content {
		grid-template-columns: 1fr;
		justify-items: center;
		gap: 59px;
	}
	.p-strength-supply-chain__us-content::before {
		display: none;
	}
	.p-strength-supply-chain__us-img {
		grid-row: 2/3;
	}
	.p-strength-supply-chain__us-global {
		display: grid;
		position: relative;
		grid-row: 1/2;
		align-content: center;
		width: 225px;
		height: 90px;
		padding: 0 20px 0 26px;
		border-radius: 999px;
		background-image: url(../img/strength/bg_global_sp.png);
		background-size: contain;
	}
	.p-strength-supply-chain__us-global::after {
		display: block;
		position: absolute;
		bottom: -59px;
		left: 101px;
		width: 125px;
		height: 46px;
		background: url(../img/strength/flow02_sp.svg) no-repeat center center;
		content: "";
	}
	.p-strength-supply-chain__us-global-text {
		min-height: 41px;
		padding: 0 0 0 52.5px;
		background-position: left center;
		background-size: 40px auto;
		font-size: 1.5rem;
		line-height: 1.4;
	}
	.p-strength-supply-chain__enduser {
		z-index: 0;
		order: 3;
		padding: 18px;
	}
	.p-strength-quality-management {
		padding-left: 0;
	}
	.p-strength-quality-management .p-box {
		margin-inline: 25px;
		padding: clamp(2.1rem, 0.478rem + 4.326vw, 3.8rem) clamp(1.6rem, -0.499rem + 5.598vw, 3.8rem);
	}
	.p-strength-footer {
		margin-top: 60px;
		padding-top: 60px;
	}
	:root {
		--history-nav-height: 90px; /* SPデフォルト */
	}
	.p-history-container {
		margin-top: 50px;
	}
	.p-history-section {
		margin-bottom: 0;
	}
	.p-history-navbar {
		height: 90px;
	}
	.p-history-navbar.is-fixed {
		top: 65px;
		height: 80px;
	}
	.p-history-navbar.is-fixed + .p-history-container {
		padding-top: 80px;
	}
	.p-history-nav {
		grid-template-columns: repeat(4, 1fr);
	}
	.p-history-nav__link {
		padding: 0 14px;
	}
	.p-history-nav__text {
		padding-bottom: 14px;
	}
	.p-history-nav__text::after {
		top: auto;
		right: auto;
		bottom: 0;
		left: 50%;
		transform: translate(-50%, 0);
	}
	.p-history-nav__era {
		margin-bottom: 6px;
		font-size: 1.8rem;
		line-height: 1.056;
	}
	.p-history-nav__year {
		font-size: 1.1rem;
	}
	.p-history-era {
		grid-template-rows: 1fr;
		grid-template-columns: 1fr 60px;
		min-height: 533px;
		padding-bottom: 40px;
	}
	.p-history-era::before {
		top: 93px;
		min-height: 440px;
	}
	.p-history-section.is-era01 .p-history-era::before {
		background-image: url(../img/history/bg_era01_mv_sp.png);
	}
	.p-history-section.is-era02 .p-history-era::before {
		background-image: url(../img/history/bg_era02_mv_sp.png);
	}
	.p-history-section.is-era03 .p-history-era::before {
		background-image: url(../img/history/bg_era03_mv_sp.png);
	}
	.p-history-section.is-era04 .p-history-era::before {
		background-image: url(../img/history/bg_era04_mv_sp.png);
	}
	.p-history-era::before {
		background-size: 100% auto;
	}
	.p-history-era__era {
		bottom: -45px;
		grid-row: 1/2;
		width: 60px;
		height: 100%;
		font-size: 6rem;
		line-height: 48px;
		writing-mode: vertical-rl;
	}
	.p-history-era__era:has(br) {
		right: -6px;
		line-height: 60px;
	}
	.p-history-era__inner {
		grid-template-rows: auto;
		grid-template-columns: 1fr;
		-moz-column-gap: 0;
		column-gap: 0;
		width: calc(100% + 60px);
		padding-inline: 25px;
	}
	.p-history-era__header {
		-moz-column-gap: 10px;
		column-gap: 10px;
		grid-column: 1/2;
		justify-content: center;
	}
	.p-history-era__title {
		font-size: 4rem;
		line-height: 1.075;
	}
	.p-history-era__period {
		font-size: 1.6rem;
	}
	.p-history-era__mv {
		position: relative;
		grid-row: 2/3;
		justify-items: center;
		padding-top: 20px;
	}
	.p-history-era__content {
		grid-row: 3/4;
		grid-column: 1/2;
		padding-top: 20px;
	}
	.p-history-era__text {
		font-size: 1.5rem;
		line-height: 1.467;
	}
	.p-history-era__btn {
		padding-top: 20px;
	}
	.p-history-era__btn .p-btn--history {
		width: 180px;
		height: 48px;
		padding-right: 29px;
		padding-left: 24px;
	}
	.p-history-section.is-era01 .p-history-content {
		padding-top: 50px;
	}
	.p-history-content::before {
		left: 50%;
		height: calc(100% + 43px + 20px + 30px);
		background: url(../img/history/bg_era_sp.png) repeat-y left top;
		background-size: 375px 800px;
	}
	.p-history-content::after {
		display: block;
		position: absolute;
		top: 0;
		left: 50%;
		width: 100%;
		height: calc(100% + 43px + 20px + 30px);
		background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 50%);
		content: "";
	}
	.p-history-content__inner {
		z-index: 1;
	}
	.p-history-line {
		padding: 50px 0 50px;
	}
	.p-history-section.is-era01 .p-history-line {
		padding-top: 0;
	}
	.p-history-line::before {
		left: 20px;
		width: 1px;
		height: calc(100% + 43px + 20px + 30px);
		border-left-width: 1px;
	}
	.p-history-section.is-era01 .p-history-line::before {
		top: 20px;
		height: calc(100% + 43px + 20px - 20px);
	}
	.p-history-milestone {
		grid-template-columns: 1fr;
		row-gap: 7px;
		margin-bottom: 40px;
	}
	.p-history-milestone__year {
		position: relative;
		justify-self: start;
		padding-right: 0;
		padding-left: 45px;
		font-size: 3.8rem;
	}
	.p-history-milestone__year::before {
		display: block;
		position: absolute;
		top: 50%;
		left: 20px;
		width: 10px;
		height: 10px;
		transform: translate(-50%, -50%);
		border-radius: 50%;
		background: #df1a21;
		content: "";
	}
	.p-history-milestone__year small {
		display: inline-block;
		padding-right: 0;
		font-size: 2.2rem;
		line-height: 1;
	}
	.p-history-milestone__event {
		grid-template-columns: 1fr;
		margin-bottom: 0;
		padding-left: 45px;
	}
	.p-history-milestone__img {
		padding-top: 20px;
	}
	.p-history-milestone__text {
		padding-top: 0;
	}
	.p-history-milestone__event-text {
		font-size: 1.8rem;
		line-height: 1.389;
	}
	.p-history-milestone__event-text:not(.p-history-milestone__event-text--sub)::before {
		display: none;
	}
	.p-history-milestone__event-text--sub {
		margin-top: 8px;
		font-size: 1.6rem;
	}
	.p-history-milestone__event-text--sub::before {
		left: -25px;
		width: 10px;
		height: 10px;
	}
	.p-history-milestone__event-text small {
		margin-top: 8px;
		font-size: 1.5rem;
		line-height: 1.467;
	}
	.p-history-slogan {
		min-height: 583px;
		margin-bottom: 102px;
		background-image: url(../img/history/bg_slogan_sp.png);
		background-size: 100% auto;
	}
	.p-history-slogan__title {
		margin-bottom: 20px;
		font-size: 4.8rem;
		line-height: 1.042;
	}
	.p-history-slogan__text {
		font-size: 1.7rem;
		line-height: 1.824;
	}
	.p-history-slogan__btn {
		margin-top: 25px;
	}
	.p-history-slogan__btn .p-btn-list {
		gap: 10px;
	}
	.p-top-kv {
		height: auto;
		margin-bottom: 0;
		padding-bottom: 90px;
	}
	.p-top-kv__text-box {
		bottom: 69px;
		left: 29px;
	}
	.p-top-kv__title {
		font-size: 3.6rem;
		line-height: 1.18;
	}
	.p-top-kv__title span + span {
		margin: 0;
	}
	.p-top-kv__text-en {
		margin-top: 20px;
		padding-top: 16px;
		font-size: 1.25rem;
		line-height: 1.4;
		letter-spacing: 0.07em;
	}
	.p-top-kv__text-en::before {
		width: 32px;
	}
	.p-top-strength-section .p-top-section__header {
		margin-bottom: 16px;
		transform: translateY(-12px);
	}
	.p-top-clients-section .p-top-section__header {
		margin-bottom: 20px;
	}
	.p-top-solution-section .p-top-section__header {
		margin-bottom: 16px;
	}
	.p-top-info-section .p-top-section__header-title-en {
		font-size: 3.6rem;
	}
	.p-top-section__header-title {
		row-gap: 10px;
	}
	.p-top-section__header-title-ja {
		font-size: 1.8rem;
	}
	.p-top-section__header-title-en {
		font-size: 4.4rem;
	}
	.p-top-title-grid {
		grid-template-columns: 1fr;
		row-gap: 30px;
	}
	.p-top-strength-section__inner {
		padding: 76px 0 80px;
	}
	.p-top-strength-section .p-top-title-grid {
		margin-bottom: 50px;
	}
	.p-top-strength-list {
		row-gap: 40px;
	}
	.p-top-strength-card {
		padding-top: 9px;
	}
	.p-top-strength-card__shoulder {
		min-height: 83px;
	}
	.p-top-strength-card__strength {
		font-size: 1.3rem;
	}
	.p-top-strength-card__num {
		font-size: 6.2rem;
	}
	.p-top-strength-card__img {
		padding-inline: 25px;
	}
	.p-top-strength-card__title {
		margin-top: 16px;
		font-size: 2rem;
	}
	.p-top-clients-section {
		padding-block: 80px;
	}
	.p-top-clients__lead {
		font-size: 2rem;
	}
	.p-top-service-section {
		padding-bottom: 70px;
	}
	.p-top-service-section .p-top-title-grid {
		margin-bottom: 40px;
	}
	.p-top-service {
		grid-template-rows: repeat(2, auto);
		grid-template-columns: 1fr;
		row-gap: 50px;
	}
	.p-top-service__supply-chain {
		margin-right: 18px;
		margin-left: -38px;
	}
	.p-top-service__content {
		grid-row: 1/2;
	}
	.p-top-service-link-list {
		grid-template-columns: 1fr;
	}
	.p-top-service-link-list__item:first-child {
		border-top: 1px solid #c3c3c3;
	}
	.p-top-service-link {
		padding: 24px 26px;
		font-size: 1.7rem;
	}
	.p-top-solution-section .p-top-title-grid {
		margin-bottom: 40px;
	}
	.p-top-solution .p-solution-card__caption {
		padding-top: 14px;
		font-size: 1.6rem;
	}
	.p-top-solution .p-solution-card__category-group {
		top: 10px;
		left: 10px;
	}
	.p-top-solution .p-solution-card__category-group span {
		border-radius: 3px;
		font-size: 1.2rem;
	}
	.splide__arrows {
		margin-top: 20px;
		gap: 16px;
	}
	.splide__arrow img {
		width: 54px;
		height: 54px;
	}
	.p-top-info-section {
		padding: 70px 0 102px;
	}
	.p-top-info {
		display: block;
	}
	.p-top-info__item + .p-top-info__item {
		margin-top: 60px;
	}
	.p-top-info .p-btn--detail {
		width: 160px;
		height: 42px;
		padding: 0 24px 0 21px;
	}
	.p-top-info .p-btn--detail .p-btn__text {
		font-size: 1.3rem;
	}
	.p-top-info-news-list {
		row-gap: 24px;
		margin-top: 40px;
	}
	.p-top-info-news-list .p-news-list__link {
		gap: 8px 12px;
	}
	.p-top-info-news-list .p-news-list__title {
		font-size: 1.6rem;
		line-height: 1.4;
	}
	.p-top-info-news-list .p-news-date {
		font-size: 1.6rem;
	}
	.p-top-info-news-list .p-news-category {
		min-width: 100px;
		height: 23px;
		font-size: 1.2rem;
	}
	.p-top-info-link-list.p-link-list {
		grid-template-columns: 1fr;
		row-gap: 20px;
		margin: 40px 0 30px;
	}
	.p-top-info-link-list__item .c-arrow-link:not([href$=".pdf"]) {
		background-position-y: 0.2em;
		font-size: 1.7rem;
		line-height: 1.059;
	}
	.p-top-info-link-sub-list {
		margin-top: 16px;
	}
	.p-top-info-link-sub-list__link {
		min-width: 40px;
		padding-right: 12px;
		font-size: 1.3rem;
		line-height: 1.077;
	}
	.p-top-info-btn-list {
		grid-template-columns: repeat(2, 1fr);
		-moz-column-gap: 5px;
		column-gap: 5px;
		max-width: 325px;
		margin-inline: auto;
	}
	.p-top-info-btn-list .p-btn--menu {
		height: 64px;
	}
	.p-news-section-group {
		margin-bottom: 60px;
	}
	.p-news-section-group__footer .p-btn--detail {
		width: 200px;
	}
	.p-news-section {
		margin-bottom: 30px;
	}
	.p-contact-section::before, .p-contact-section::after {
		height: 220px;
	}
	.p-contact-title {
		min-height: 50px;
		margin-bottom: 20px;
		padding-left: 62px;
		font-size: 2.2rem;
	}
	.p-contact-title::before, .p-contact-title::after {
		width: 50px;
		height: 50px;
	}
	.p-contact-form .p-contact-title::before {
		background-size: 25px auto;
	}
	.p-contact-tel .p-contact-title::before {
		background-size: 24px auto;
	}
	.p-contact-form {
		padding-top: 40px;
	}
	.p-contact-form__header {
		margin-bottom: 30px;
	}
	.p-contact-form__content .p-box {
		margin-bottom: 0;
		padding: 30px;
	}
	.p-form {
		row-gap: 24px;
	}
	.p-form__field {
		grid-template-columns: 1fr;
	}
	.p-form__label {
		padding-top: 0;
		padding-bottom: 10px;
		font-size: 1.6rem;
	}
	.p-form__control--name {
		grid-template-columns: 1fr;
	}
	.p-form-privacy {
		margin-top: 40px;
		padding: 25px;
	}
	.p-form-privacy__text {
		margin-bottom: 20px;
		padding-bottom: 25px;
	}
	.p-form-privacy__title {
		margin-bottom: 20px;
		padding-left: 16px;
		font-size: 1.9rem;
	}
	.p-form-privacy__title::before {
		top: calc(0.6em - 3px);
		width: 6px;
		height: 6px;
		margin-bottom: 0;
	}
	.p-form-privacy__desc {
		font-size: 1.4rem;
	}
	.p-form-footer {
		margin-top: 40px;
	}
	.p-form-progressbar {
		margin-bottom: 35px;
		padding-bottom: 30px;
	}
	.p-contact-tel {
		padding-block: 35px;
	}
	.p-contact-tel__list {
		grid-template-columns: 1fr;
		width: -moz-fit-content;
		width: fit-content;
		margin-inline: auto;
		gap: 20px;
	}
	.p-contact-tel .p-cvr__box {
		padding: 25px;
	}
	.p-contact-tel .p-cvr__title {
		margin-bottom: 15px;
	}
	.p-contact-tel .p-cvr__tel {
		padding-top: 0;
		border-top: none;
	}
	.p-contact-tel .p-cvr__tel-num {
		padding-left: 0;
	}
	.p-contact-tel .p-cvr__tel-sec {
		font-size: 1.6rem;
	}
	.p-form-complete.p-box {
		margin-bottom: 0;
		padding-block: 50px;
	}
	.p-form-complete__message {
		font-size: 2.2rem;
	}
	.p-form-complete__footer {
		margin-top: 30px;
	}
	.p-form-complete__footer .p-btn--back {
		width: 200px;
	}
	.p-form-complete__footer .p-btn--back::before {
		left: 20px;
	}
}

@media screen and (max-width: 599px){
	.p-list-inline.is-2col {
		grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
	}
	.p-list-inline.is-3col {
		grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
	}
}

@media (any-hover: hover){
	.c-text-link:hover:hover {
		opacity: 0.7;
	}
	.c-arrow-link:hover {
		opacity: 0.7;
	}
	.c-rollover-link:hover {
		opacity: 0.7;
	}
	.p-btn:hover {
		opacity: 0.7;
	}
	.p-fig__item > a:hover {
		opacity: 0.7;
	}
	.p-footer-nav-submenu-link:hover {
		opacity: 0.7;
	}
	.p-footer-nav-sustainability-list__link:hover {
		opacity: 0.7;
	}
	.p-pis-link__text:hover {
		opacity: 0.7;
	}
	.p-footer-info-link:hover {
		opacity: 0.7;
	}
	.p-pagetop:hover {
		opacity: 0.3;
	}
	.p-gnav-submenu__category-top-link:hover {
		opacity: 0.7;
	}
	.p-gnav-sustainability-list__link:hover {
		opacity: 0.7;
	}
	.p-search-result .gsc-search-button-v2:hover {
		opacity: 0.7;
	}
	.p-history-nav__link:hover {
		opacity: 0.7;
	}
	.p-top-service-link:hover {
		opacity: 0.7;
	}
	.p-top-info-news-list .p-news-list__link:hover {
		opacity: 0.7;
	}
	.p-top-info-link-sub-list__link:hover {
		opacity: 0.7;
	}
}

@media (prefers-reduced-motion: reduce){
	html:focus-within {
		scroll-behavior: auto;
	}
}

@media{
	img {
		image-rendering: -webkit-optimize-contrast;
	}
	.is-touch-device img {
		image-rendering: auto;
	}
}