html {
	scroll-behavior: smooth;
	scroll-padding-top: 74px; /* ヘッダーの高さ */
}

body {
	background-image: repeating-linear-gradient(90deg, #FCFAFA, #FCFAFA 1px, transparent 1px, transparent 30px), repeating-linear-gradient(0deg, #FCFAFA, #FCFAFA 1px, #FFFFFF 1px, #FFFFFF 30px);
	color: #1D1D1D;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
}

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

a {
	color: inherit;
}

[onclick]:not(a):not(button) {
	cursor: pointer;
}

.grecaptcha-badge {
	visibility: hidden;
}

.recaptcha-text {
	color: rgba(177, 177, 177, 0.8);
	font-size: 11px;
	line-height: 1.4;
	margin-top: 12px;
	text-align: center;
}

.recaptcha-text a {
	color: rgba(177, 177, 177, 0.8);
	text-decoration: none;
	transition: color 0.3s ease;
}

.recaptcha-text a:hover {
	color: #26346A;
	text-decoration: underline;
}

/* Reset box-model and set borders */

/* ============================================ */

*,
::before,
::after {
	border-style: solid;
	border-width: 0;
	box-sizing: border-box;
	min-width: 0;
}

/* Document */

/* ============================================ */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */

html {
	line-height: 1.15; /* 1 */
	-webkit-text-size-adjust: 100%; /* 2 */
	-webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */

/* ============================================ */

/**
 * Remove the margin in all browsers.
 */

body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
	display: block;
}

/* Vertical rhythm */

/* ============================================ */

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
	margin: 0;
}

/* Headings */

/* ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit;
	margin: 0;
}

/* Lists (enumeration) */

/* ============================================ */

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

/* Lists (definition) */

/* ============================================ */

dt {
	font-weight: bold;
}

dd {
	margin-left: 0;
}

/* Grouping content */

/* ============================================ */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
	border-top-width: 1px;
	box-sizing: content-box; /* 1 */
	clear: both;
	color: inherit;
	height: 0; /* 1 */
	margin: 0;
	overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
	font-family: monospace, monospace; /* 1 */
	font-size: inherit; /* 2 */
}

address {
	font-style: inherit;
}

/* Text-level semantics */

/* ============================================ */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
	background-color: transparent;
	color: inherit;
	display: inline-block; /* 追加設定 */
	text-decoration: none;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
	font-family: monospace, monospace; /* 1 */
	font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* span要素の設定 */

span {
	display: inline-block; /* 追加設定 */
}

/* Replaced content */

/* ============================================ */

/**
 * Prevent vertical alignment issues.
 */

svg,
embed,
object,
iframe {
	vertical-align: bottom;
}

/* 画像の設定 - 追加設定を適用 */

img {
	height: auto; /* 追加設定 */
	vertical-align: bottom;
	width: 100%; /* 追加設定 */
	-o-object-fit: cover;
	object-fit: cover; /* 追加設定 */
}

/* Forms */

/* ============================================ */

/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */

button,
input,
optgroup,
select,
textarea {
	-webkit-appearance: none; /* 1 */
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border-radius: 0;
	color: inherit;
	font: inherit;
	margin: 0;
	padding: 0;
	text-align: inherit;
	text-transform: inherit; /* 2 */
	vertical-align: middle;
}

/**
 * Correct cursors for clickable elements.
 */

button,
[type=button],
[type=reset],
[type=submit] {
	cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
	cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */

:-moz-focusring {
	outline: auto;
}

select:disabled {
	opacity: inherit;
}

/**
 * Remove padding
 */

option {
	padding: 0;
}

/**
 * Reset to invisible
 */

fieldset {
	margin: 0;
	min-width: 0;
	padding: 0;
}

legend {
	padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
	overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * Correct the outline style in Safari.
 */

[type=search] {
	outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type=search]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */

::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */

[type=number] {
	-moz-appearance: textfield;
}

/**
 * Clickable labels
 */

label[for] {
	cursor: pointer;
}

/* Interactive */

/* ============================================ */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
	display: list-item;
}

/*
 * Remove outline for editable content.
 */

[contenteditable]:focus {
	outline: auto;
}

/* Tables */

/* ============================================ */

/**
1. Correct table border color inheritance in all Chrome and Safari.
*/

table {
	border-collapse: collapse;
	border-color: inherit; /* 1 */
}

caption {
	text-align: left;
}

td,
th {
	padding: 0;
	vertical-align: top;
}

th {
	font-weight: bold;
	text-align: left;
}

.l-inner {
	margin-inline: auto;
	padding-inline: 30px;
	width: 100%;
}

.l-inner.l-inner--footer {
	padding: 50px 10px 26px;
}

.l-inner.l-inner--contact-slider {
	padding-inline: 0;
}

.l-inner.l-inner--feature {
	padding-left: 30px;
	padding-right: 24px;
}

.l-inner.l-inner--top-news {
	padding-inline: 15px;
}

.l-inner.l-inner--contact {
	padding-inline: 15px;
}

.l-inner.l-inner--voice-other {
	padding-inline: 0;
}

.l-header {
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 20; /* $layer マップから header の値(20)を取得 */
}

.l-header.is-scrolled {
	mix-blend-mode: difference;
}

.l-header.is-scrolled .l-header__grid {
	opacity: 0;
}

.l-header.is-scrolled .p-header__logo svg,
.l-header.is-scrolled .p-header__link,
.l-header.is-scrolled .p-header__contact svg {
	mix-blend-mode: normal;
}

.l-header__grid {
	background-image: repeating-linear-gradient(90deg, #FCFAFA, #FCFAFA 1px, transparent 1px, transparent 30px), repeating-linear-gradient(0deg, #FCFAFA, #FCFAFA 1px, #FFFFFF 1px, #FFFFFF 30px);
	background-position: 0 3px;
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.l-footer {
	background: #303030;
	border-top: 1px solid #FFFFFF;
}

.l-contact-slider {
	background-image: repeating-linear-gradient(90deg, #FCFAFA, #FCFAFA 1px, transparent 1px, transparent 30px), repeating-linear-gradient(0deg, #FCFAFA, #FCFAFA 1px, #FFFFFF 1px, #FFFFFF 30px);
	border-radius: 10px;
	border-radius: 10px;
	overflow: hidden;
	padding-bottom: 37px;
}

.l-footer-content {
	margin-top: 47px;
}

.l-footer-content--noimg {
	margin-top: 0;
	padding: 80px 0 60px;
}

.l-service {
	background-image: repeating-linear-gradient(90deg, #FCFAFA, #FCFAFA 1px, transparent 1px, transparent 30px), repeating-linear-gradient(0deg, #FCFAFA, #FCFAFA 1px, #FFFFFF 1px, #FFFFFF 30px);
	overflow: hidden;
	padding-top: 45px;
}

.l-section-divider {
	background-image: repeating-linear-gradient(90deg, #FCFAFA, #FCFAFA 1px, transparent 1px, transparent 30px), repeating-linear-gradient(0deg, #FCFAFA, #FCFAFA 1px, #FFFFFF 1px, #FFFFFF 30px);
	padding-top: 47px;
}

.l-feature {
	background-image: repeating-linear-gradient(90deg, #FCFAFA, #FCFAFA 1px, transparent 1px, transparent 30px), repeating-linear-gradient(0deg, #FCFAFA, #FCFAFA 1px, #FFFFFF 1px, #FFFFFF 30px);
}

.l-voice {
	background-color: #303030;
	overflow: hidden;
}

.l-news {
	background-image: repeating-linear-gradient(90deg, #FCFAFA, #FCFAFA 1px, transparent 1px, transparent 30px), repeating-linear-gradient(0deg, #FCFAFA, #FCFAFA 1px, #FFFFFF 1px, #FFFFFF 30px);
	padding-bottom: 62px;
	padding-top: 46px;
}

.l-lower-contact {
	margin-bottom: 90px;
	margin-top: 62px;
}

.l-lower-voice-detail {
	margin-top: 68px;
	position: relative;
	z-index: 2;
}

/* ================================
 * 汎用ボタンコンポーネント
 * ================================ */

.c-btn {
	align-items: center;
	cursor: pointer;
	display: inline-flex;
	justify-content: center;
	position: relative;
	text-decoration: none;
	transition: all 0.3s ease;
}

.c-section-title {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.c-section-title.c-section-title--light .c-section-title__en {
	font-family: "Outfit", sans-serif;
	font-size: 64px;
	letter-spacing: -3.2px;
	line-height: 58.917px;
}

.c-section-title.c-section-title--dark .c-section-title__en {
	color: #FFFFFF;
	font-size: 64px;
	font-weight: 200;
	letter-spacing: -1.92px;
	line-height: 62px;
}

.c-section-title.c-section-title--dark .c-section-title__en.c-section-title__en--top-voice {
	margin-left: -4px;
}

.c-section-title.c-section-title--dark .c-section-title__ja {
	color: #FFFFFF;
}

.c-section-title.c-section-title--dark .c-section-title__ja::before {
	background: #FFFFFF;
}

.c-section-title__ja {
	line-height: 42px; /* 262.5% */
	padding-left: 30px;
	position: relative;
}

.c-section-title__ja::before {
	background: #3F4F8A;
	content: "";
	height: 15px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 15px;
}

.c-section-title__en {
	font-family: "Outfit", sans-serif;
	font-size: 62px;
	font-weight: 200;
	letter-spacing: -2.45px;
	line-height: 42px;
}

.c-section-title__en.c-section-title__en--company {
	position: relative;
}

.c-section-title__en.c-section-title__en--company::before {
	background-color: #303030;
	content: "";
	height: 1px;
	left: -15px;
	opacity: 0.25;
	position: absolute;
	top: 0;
	width: 170px;
}

.c-section-title__en.c-section-title__en--company::after {
	background-color: #303030;
	bottom: -3px;
	content: "";
	height: 1px;
	left: 103px;
	opacity: 0.25;
	position: absolute;
	width: 160px;
}

.c-section-title__en.c-section-title__en--access {
	position: relative;
}

.c-section-title__en.c-section-title__en--access::before {
	background-color: #303030;
	content: "";
	height: 1px;
	left: -15px;
	opacity: 0.25;
	position: absolute;
	top: 0;
	width: 107px;
}

.c-section-title__en.c-section-title__en--access::after {
	background-color: #303030;
	bottom: -3px;
	content: "";
	height: 1px;
	left: 70px;
	opacity: 0.25;
	position: absolute;
	width: 140px;
}

.c-section-title__en.c-section-title__en--message {
	position: relative;
}

.c-section-title__en.c-section-title__en--message::after {
	background-color: #1D1D1D;
	bottom: -2px;
	content: "";
	height: 1px;
	left: -15px;
	opacity: 0.25;
	position: absolute;
	width: calc(100% + 15px);
}

.c-section-title__en.c-section-title__en--top-feature {
	margin-top: 8px;
	position: relative;
}

.c-section-title__en.c-section-title__en--top-feature::before {
	background-color: #303030;
	content: "";
	height: 1px;
	left: -15px;
	opacity: 0.25;
	position: absolute;
	top: 0;
	width: 180px;
}

.c-section-title__en.c-section-title__en--top-feature::after {
	background-color: #303030;
	bottom: -4px;
	content: "";
	height: 1px;
	left: 135px;
	opacity: 0.25;
	position: absolute;
	width: 187px;
}

.c-section-title__en.c-section-title__en--top-news {
	letter-spacing: -2.2px;
	line-height: 58.917px;
	margin-left: -3px;
}

.c-section-title__en.c-section-title__en--contact {
	font-size: 53px;
	line-height: 30px;
}

.c-section-title__en.c-section-title__en--news-detail {
	font-family: "Outfit", sans-serif;
	font-size: 70px;
	font-weight: 200;
	letter-spacing: -1.4px;
	line-height: 1;
	margin-bottom: 14px;
}

.c-contact-text {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 1px;
	line-height: 28px;
	text-align: center;
}

.c-btn-arrow {
	color: #1D1D1D;
	opacity: 0.4;
	transition: opacity 0.3s ease;
}

.c-btn-arrow svg {
	height: 30px;
	width: 84px;
}

.c-btn-arrow svg path,
.c-btn-arrow svg rect {
	stroke: currentColor;
}

.c-btn-arrow.c-btn-arrow--dark {
	color: #1D1D1D;
}

.c-btn-arrow.c-btn-arrow--light {
	color: #FFFFFF;
	opacity: 0.3;
}

/* 共通スタイル */

.c-loop-slider__swiper + .c-loop-slider__swiper {
	margin-top: 9px;
}

.c-loop-slider__wrapper {
	transition-timing-function: linear !important;
}

.c-loop-slider__item {
	height: 90px;
	margin-right: 8px;
}

.c-slider-card__image img {
	-o-object-fit: cover;
	border-radius: 5px;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.c-footer-logo {
	color: #FFFFFF;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size: 28px;
	font-weight: 400;
}

.c-footer-address__location {
	color: #FFFFFF;
	font-size: 14px;
	letter-spacing: 0.84px;
	line-height: 24px;
}

.c-footer-copyright,
.c-footer-copyright__link {
	color: #FFFFFF;
	font-size: 10px;
	letter-spacing: 0.6px;
	line-height: normal;
	opacity: 0.7;
}

.c-text-wrap {
	white-space: nowrap;
	word-spacing: -3px;
}

.c-text-wrap.c-text-wrap--voice-detail {
	padding-left: 183px;
}

.c-text-wrap.c-text-wrap--voice-detail {
	padding-left: 145px;
}

.c-text-wrap__letter {
	color: transparent;
	display: inline-block;
	font-size: 14px;
	letter-spacing: 0.84px;
	overflow: hidden;
	text-align: center;
	text-shadow: 0 0 0 #FFFFFF, 0 1.2em 0 #FFFFFF;
}

.c-text-wrap__letter.c-text-wrap__letter--about {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: -0.5px;
	line-height: 32px;
	text-shadow: 0 0 0 #1D1D1D, 0 1.4em 0 #1D1D1D;
}

.c-text-wrap__letter.c-text-wrap__letter--service {
	text-shadow: 0 0 0 #1D1D1D, 0 1.4em 0 #1D1D1D;
}

.c-text-wrap__letter.c-text-wrap__letter--feature {
	font-size: 16px;
	letter-spacing: -0.72px;
	text-shadow: 0 0 0 #1D1D1D, 0 1.4em 0 #1D1D1D;
}

.c-text-wrap__letter.c-text-wrap__letter--top-voice {
	font-size: 16px;
	letter-spacing: -0.72px;
}

.c-text-wrap__letter.c-text-wrap__letter--top-news {
	letter-spacing: 0.4px;
	text-shadow: 0 0 0 #1D1D1D, 0 1.5em 0 #1D1D1D;
}

.c-text-wrap__letter.c-text-wrap__letter--voice-detail {
	letter-spacing: 0.4px;
	text-shadow: 0 0 0 #1D1D1D, 0 1.4em 0 #1D1D1D;
}

.c-button-line {
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 182px;
}

.c-button-line::before,
.c-button-line::after {
	background-color: #303030;
	content: "";
	height: 1px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
}

.c-button-line::before {
	left: 0;
}

.c-button-line::after {
	left: -100%;
}

.c-button-line.c-button-line--feature {
	width: 80px;
}

.c-button-line.c-button-line--top-voice {
	width: 80px;
}

.c-button-line.c-button-line--top-voice::before,
.c-button-line.c-button-line--top-voice::after {
	background-color: #FFFFFF;
}

.c-button-line.c-button-line--top-news {
	top: -3px;
	width: 100px;
}

.c-button-line.c-button-line--voice-detail {
	left: 7px;
	top: -2px;
	width: 112px;
}

.c-heading-lines {
	position: relative;
}

.c-heading-line {
	background-color: #303030;
	content: "";
	height: 1px;
	opacity: 0.25;
	position: absolute;
}

.c-heading-line1--about {
	left: -15px;
	top: 8px;
	width: 145px;
}

.c-heading-line1--service {
	left: -16px;
	top: 8px;
	width: 180px;
}

.c-heading-line1--feature1 {
	background-color: #FFFFFF;
	left: -18px;
	opacity: 0.2;
	top: 40px;
	width: 78px;
}

.c-heading-line1--feature2 {
	background-color: #FFFFFF;
	left: -15px;
	opacity: 0.2;
	top: 39px;
	width: 78px;
}

.c-heading-line2--about {
	left: 67px;
	top: 41px;
	width: 216px;
}

.c-heading-line2--service {
	bottom: -54px;
	left: 106px;
	width: 195px;
}

.c-heading-line2--feature1 {
	background-color: #FFFFFF;
	left: 34px;
	opacity: 0.2;
	top: 62px;
	width: 57px;
}

.c-heading-line2--feature2 {
	background-color: #FFFFFF;
	left: 73px;
	opacity: 0.2;
	top: 62px;
	width: 65px;
}

.c-heading-line3--about {
	left: -15px;
	top: 56px;
	width: 248px;
}

.c-heading-line3--feature1 {
	background-color: #FFFFFF;
	left: -10px;
	opacity: 0.2;
	top: 73px;
	width: 138px;
}

.c-heading-line3--feature2 {
	background-color: #FFFFFF;
	left: 11px;
	opacity: 0.2;
	top: 74px;
	width: 89px;
}

.c-heading-line4--about {
	left: 125px;
	top: 89px;
	width: 204px;
}

.c-heading-line4--feature1 {
	background-color: #FFFFFF;
	left: 104px;
	opacity: 0.2;
	top: 98px;
	width: 155px;
}

.c-heading-line4--feature2 {
	background-color: #FFFFFF;
	left: 80px;
	opacity: 0.2;
	top: 97px;
	width: 90px;
}

.c-card {
	margin-bottom: 45px;
	margin-top: 46px;
	position: relative;
}

.c-card::before {
	background-color: #303030;
	content: "";
	height: 1px;
	left: 0;
	opacity: 0.2;
	position: absolute;
	top: -45px;
	width: 100%;
}

.c-card::after {
	background-color: #303030;
	content: ""; /*
   * 線の高さを自動調整する方法
   * 100%: カードのコンテンツ自体の高さ
   * +150px: 追加の高さ（内訳）
   *   - 45px: 上部の余白（top: -45px）
   *   - 55px: 下部の余白
   *   - 50px: デザイン安定性のための安全マージン
   * この方法により、画面サイズやコンテンツ量が変わっても線の長さが自動調整される
   */
	height: calc(100% + 100px);
	opacity: 0.2;
	position: absolute;
	right: -2px;
	top: -45px;
	width: 1px;
}

.c-card.c-card--top-voice::before {
	display: none;
}

.c-card.c-card--top-voice::after {
	background-color: #FFFFFF;
	height: calc(100% + 65px);
	opacity: 0.25;
	right: -32px;
	top: -29px;
}

.c-card.c-card--voice-section {
	margin-bottom: 30px;
}

.c-card.c-card--voice-section.c-card--voice-section:nth-child(3n-1)::before {
	left: 16px;
	width: calc(100% - 32px);
}

.c-card.c-card--voice-section.c-card--voice-section:nth-child(3n-1)::after {
	height: calc(100% + 117px);
}

.c-card.c-card--voice-section.c-card--voice-section:first-child::before {
	display: none;
}

.c-card.c-card--voice-section.c-card--voice-section:nth-child(3n)::after {
	display: none;
}

.c-card.c-card--voice-section.c-card--voice-section:nth-child(3n-2)::before {
	left: 1px;
}

.c-card.c-card--voice-section.c-card--voice-section:nth-child(3n-2)::after {
	height: calc(100% + 86px);
}

.c-card.c-card--voice-section::before,
.c-card.c-card--voice-section::after {
	background-color: #FFFFFF;
}

.c-card.c-card--voice-section::before {
	left: 16px;
	width: calc(100% - 32px);
}

.c-card.c-card--voice-section::after {
	display: none;
}

.c-card.c-card--voice-detail::before {
	display: none;
}

.c-card.c-card--voice-detail::after {
	display: none;
}

.c-card__article {
	padding-inline: 30px;
}

.c-card__article::before {
	background-color: #303030;
	bottom: -45px;
	content: "";
	height: 1px;
	left: 0;
	opacity: 0.2;
	position: absolute;
	width: 100%;
}

.c-card__article.c-card__article--top-feature {
	padding-left: 0;
	padding-right: 0;
}

.c-card__article.c-card__article--voice-other {
	padding-inline: 20px;
}

.c-card__article.c-card__article--page-feature::before {
	background-color: #FFFFFF;
}

.c-card__content-link:focus {
	outline: 2px solid #3F4F8A;
	outline-offset: 2px;
}

.c-card__image {
	border-radius: 10px;
	overflow: hidden;
	width: 100%;
	will-change: transform; /* Safari対策 */
}

.c-card__image img {
	aspect-ratio: 9/10;
}

.c-card__content {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-top: 25px;
}

.c-card__title {
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 1.2px;
	line-height: 22px; /* 110% */
}

.c-card__subtitle {
	font-family: "Outfit", sans-serif;
	font-size: 14px;
	font-weight: 250;
	line-height: 28px;
}

.c-card__link {
	margin-top: 11px;
}

.c-swiper__wrapper {
	display: flex;
	gap: 0;
}

.c-swiper__wrapper.c-swiper__wrapper--top-voice {
	flex-wrap: nowrap;
}

.c-page-header {
	position: relative;
}

.c-page-header__container {
	height: 30vh;
	margin-top: -75px;
	max-height: 100%;
	min-height: auto;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.c-page-header__image {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center center;
	aspect-ratio: 1440/438;
	object-position: center center;
}

.c-page-header__image--voice {
	-o-object-position: 45% center;
	object-position: 45% center;
}

.c-page-header__overlay {
	background: linear-gradient(180deg, #1D1D1D 0%, rgba(29, 29, 29, 0.2) 100%);
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.c-page-header__title {
	bottom: -6px;
	display: flex;
	flex-direction: column;
	left: 30px;
	position: absolute;
	width: 90%;
	z-index: 2;
}

.c-page-header__ja {
	color: #FFFFFF;
	line-height: 42px;
	padding-left: 5px;
	position: relative;
}

.c-page-header__ja::before {
	background-color: #FFFFFF;
	content: "";
	height: 1px;
	left: -105px;
	position: absolute;
	top: 55%;
	width: 100px;
}

.c-page-header__en {
	color: #FFFFFF;
	font-family: "Outfit", sans-serif;
	font-size: clamp(43px, 9px + 10.6vw, 70px);
	font-weight: 200;
	letter-spacing: -1.5px;
	line-height: 1;
}

.c-page-header--noimg .c-page-header__container {
	background-color: #303030;
	margin-top: -75px;
	min-height: 30vh;
}

.c-grid-background {
	background-color: #303030;
	background-image: repeating-linear-gradient(90deg, rgba(252, 250, 250, 0.1), rgba(252, 250, 250, 0.1) 1px, transparent 1px, transparent 30px), repeating-linear-gradient(0deg, rgba(252, 250, 250, 0.1), rgba(252, 250, 250, 0.1) 1px, transparent 1px, transparent 30px);
	position: relative;
	z-index: 2;
}

.c-grid-background.c-grid-background--page-feature {
	background-image: repeating-linear-gradient(90deg, rgba(252, 250, 250, 0.03), rgba(252, 250, 250, 0.03) 1px, transparent 1px, transparent 30px), repeating-linear-gradient(0deg, rgba(252, 250, 250, 0.03), rgba(252, 250, 250, 0.03) 1px, transparent 1px, transparent 30px);
}

/* ================================
 * プライマリーボタンコンポーネント
 * ================================ */

.c-btn-top {
	align-items: center;
	background-color: #3F4F8A;
	color: #FFFFFF;
	cursor: pointer;
	display: inline-flex;
	justify-content: center;
	letter-spacing: 1.6px;
	line-height: 200%;
	padding: 10px 39px 10px 40px;
	position: relative;
	text-decoration: none;
	transition: all 0.3s ease;
}

/* ================================
 * お問い合わせボタンコンポーネント
 * ================================ */

.c-btn-contact {
	align-items: center;
	background-color: #3F4F8A;
	color: #FFFFFF;
	cursor: pointer;
	display: flex;
	height: 60px;
	justify-content: center;
	letter-spacing: 1.6px;
	line-height: 2;
	margin: auto;
	max-width: 300px;
	position: relative;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease;
	width: 100%;
}

.c-btn-contact:focus {
	outline: 1px solid #26346A;
	outline-offset: 1px;
}

/* ================================
 * アウトラインボタンコンポーネント
 * ================================ */

.c-btn-outline {
	background-color: transparent;
	border: 1px solid #3F4F8A;
	color: #3F4F8A;
	letter-spacing: 1.6px;
	line-height: 2;
	margin: auto;
	max-width: 300px;
	padding: 10px 39px 10px 40px;
	width: 100%;
}

.c-btn-outline:focus {
	outline: 1px solid #26346A;
	outline-offset: 1px;
}

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

.page-numbers {
	align-items: center;
	border: 1px solid #1D1D1D;
	border-radius: 50%;
	color: #1D1D1D;
	display: flex;
	font-family: "Outfit", sans-serif;
	font-size: 18px;
	font-weight: 200;
	height: 50px;
	justify-content: center;
	letter-spacing: -0.9px;
	line-height: 1;
	opacity: 0.4;
	text-decoration: none;
	transition: color 0.3s, background-color 0.3s;
	width: 50px;
}

.page-numbers.current {
	background-color: #1D1D1D;
	border: 1px solid #1D1D1D;
	color: #FFFFFF;
	opacity: 1;
}

.post-type-archive-voice .page-numbers {
	border: 1px solid #FFFFFF;
	color: #FFFFFF;
}

.post-type-archive-voice .page-numbers.current {
	background-color: #FFFFFF;
	border: 1px solid #FFFFFF;
	color: #1D1D1D;
	opacity: 1;
}

.c-sidebar__heading {
	border-bottom: 1px solid #1D1D1D;
	font-family: "Outfit", sans-serif;
	font-weight: 300;
	letter-spacing: 0.64px;
	line-height: 0px;
	margin-bottom: 16px;
	padding-bottom: 24px;
}

.c-sidebar__heading.c-sidebar__heading--archive {
	margin-bottom: 18px;
	padding-bottom: 19px;
}

.c-sidebar__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.c-sidebar__list.c-sidebar__list--archive {
	gap: 15px;
}

.c-sidebar__list a {
	font-size: 14px;
	letter-spacing: 1.4px;
	line-height: 20px;
	position: relative;
}

.c-sidebar__list a::after {
	background-color: #1D1D1D;
	bottom: -6px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform 0.3s;
	width: 100%;
}

.c-sidebar__number {
	color: #B1B1B1;
	font-size: 14px;
	letter-spacing: 1.4px;
	line-height: 20px;
	padding-left: 6px;
}

.c-btn-link {
	color: #3F4F8A;
	font-weight: 700;
	letter-spacing: 1.28px;
	line-height: 2;
	padding-left: 35px;
	position: relative;
	text-decoration: none;
}

.c-btn-link::before,
.c-btn-link::after {
	content: "";
	position: absolute;
	transition: background-color 0.3s, background-image 0.3s;
}

.c-btn-link::before {
	border: 1px solid #3F4F8A;
	border-radius: 50%;
	height: 26px;
	left: -2px;
	padding: 9px;
	top: 3px;
	width: 26px;
}

.c-btn-link::after {
	background-image: url(../img/link-arrow.svg);
	background-position: left 1px center;
	background-repeat: no-repeat;
	height: 9px;
	left: 7px;
	top: 12px;
	width: 9px;
}

.p-header__inner {
	align-items: center;
	display: flex;
	justify-content: flex-start;
	padding: 16px 18px 18px;
}

.p-header__logo svg {
	height: 16.51px;
	mix-blend-mode: difference;
	width: 124.49px;
	fill: #000;
}

.p-header__nav {
	margin-left: auto;
}

.p-header__menu {
	display: none;
}

.p-header__icon {
	align-items: center;
	display: flex;
	gap: 7px;
}

.p-header__contact svg {
	height: 40px;
	mix-blend-mode: difference;
	width: 40px;
	fill: #000;
}

.p-drawer {
	height: 100vh;
	left: 0;
	opacity: 0;
	position: fixed;
	top: 0;
	transition: opacity 0.4s ease, visibility 0s 0.4s;
	visibility: hidden;
	width: 100%;
	z-index: 40;
}

.p-drawer.is-active {
	opacity: 1;
	transition: opacity 0.4s ease, visibility 0s;
	visibility: visible;
}

.p-drawer__container {
	background-color: #303030;
	background-image: repeating-linear-gradient(90deg, rgba(217, 217, 217, 0.03), rgba(217, 217, 217, 0.03) 1px, transparent 1px, transparent 30px), repeating-linear-gradient(0deg, rgba(217, 217, 217, 0.03), rgba(217, 217, 217, 0.03) 1px, transparent 1px, transparent 30px);
	height: 100vh;
	left: 0;
	overflow: hidden;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 40;
}

.p-drawer__header {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 48px;
	padding: 16px 18px 0;
	position: relative;
	z-index: 41;
}

.p-drawer__logo svg {
	height: 16.51px;
	width: 124.49px;
	fill: #FFFFFF;
}

.p-drawer__close {
	background: #000;
	border-radius: 50%;
	cursor: pointer;
	height: 40px;
	width: 40px;
}

.p-drawer__close:focus {
	outline: 2px solid #3F4F8A;
	outline-offset: 2px;
}

.p-drawer__close-line {
	background: #FFFFFF;
	content: "";
	height: 1px;
	left: 50%;
	position: absolute;
	top: 50%;
	transition: all 0.3s ease;
	width: 17.1px;
}

.p-drawer__close-line:nth-child(1) {
	transform: translate(-50%, -50%) rotate(28deg);
}

.p-drawer__close-line:nth-child(2) {
	transform: translate(-50%, -50%) rotate(-28deg);
}

.p-drawer__content {
	padding-inline: 30px;
}

.p-drawer__nav {
	margin-top: 85px;
}

.p-drawer__item {
	margin-bottom: 32px;
}

.p-drawer__item:nth-child(2) .p-drawer__link::after,
.p-drawer__item:nth-child(2) .p-drawer__link::before {
	top: 102px;
}

.p-drawer__item:nth-child(3) .p-drawer__link::after,
.p-drawer__item:nth-child(3) .p-drawer__link::before {
	top: 104px;
}

.p-drawer__link {
	color: #FFFFFF;
	display: inline-block;
	font-size: 15px;
	letter-spacing: 0.9px;
	padding-bottom: 4px;
	position: relative;
}

.p-drawer__link::before,
.p-drawer__link:after {
	background-color: #FFFFFF;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	top: 42px;
	width: 315px;
}

.p-drawer__link:before {
	opacity: 0.25;
}

.p-drawer__link::after {
	opacity: 0.25;
}

.p-drawer__submenu {
	display: grid;
	grid-template-columns: 117px 173px;
	grid-row-gap: 10px;
	margin-left: 14px;
}

.p-drawer__submenu-item {
	position: relative;
}

.p-drawer__submenu-item::before {
	background: #FFFFFF;
	content: "";
	height: 1px;
	left: -14px;
	opacity: 0.7;
	position: absolute;
	top: 13px;
	width: 8px;
}

.p-drawer__submenu-link {
	color: #FFFFFF;
	font-size: 13px;
	letter-spacing: 0.78px;
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.p-drawer__image-container {
	display: none;
}

.p-hamburger {
	background: #FFFFFF;
	border-radius: 50%;
	cursor: pointer;
	height: 40px;
	mix-blend-mode: difference;
	width: 40px;
	z-index: 40;
}

.p-hamburger:focus {
	outline: 2px solid #3F4F8A;
	outline-offset: 2px;
}

.p-hamburger.is-checked .p-hamburger__line:nth-child(1),
.p-hamburger.is-checked .p-hamburger__line:nth-child(2) {
	left: 50%; /* 中央揃え */
	top: 19px; /* モバイル用の位置調整 */
}

.p-hamburger.is-checked .p-hamburger__line:nth-child(1) {
	transform: translateX(-50%) rotate(28deg); /* transformXを維持 */
	width: 17.1px; /* モバイル用の幅を統一 */
}

.p-hamburger.is-checked .p-hamburger__line:nth-child(2) {
	transform: translateX(-50%) rotate(-28deg); /* transformXを維持 */
	width: 17.1px; /* モバイル用の幅を統一 */
}

.p-hamburger__line {
	background: #000;
	content: "";
	height: 1px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	transition: all 0.3s ease;
	width: 17.1px;
}

.p-hamburger__line:nth-child(1) {
	top: 17px;
}

.p-hamburger__line:nth-child(2) {
	left: 22px;
	top: 22px;
	width: 12px;
}

.p-contact-slider {
	display: flex;
	flex-direction: column;
}

.p-contact-slider__container {
	padding-top: 33px;
}

.p-contact-slider__heading {
	padding-left: 30px;
}

.p-contact-slider__wrapper {
	margin-top: 23px;
}

.p-contact-slider__text {
	margin-top: 30px;
}

.p-contact-slider__button {
	margin-top: 15px;
	text-align: center;
}

.p-footer-content {
	display: flex;
	flex-direction: column;
}

.p-footer-content__container {
	display: contents;
}

.p-footer-content__title {
	order: 1;
}

.p-footer-content__info {
	margin-top: 44px;
	order: 3;
}

.p-footer-content__copyright {
	margin-top: 28px;
	text-align: center;
}

.p-footer-content__menu {
	order: 2;
	padding-top: 13px;
}

.p-footer-menu {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.p-footer-menu__title {
	color: #FFFFFF;
	letter-spacing: 0.96px;
	line-height: normal;
	padding-top: 32px;
	position: relative;
}

.p-footer-menu__title::before {
	background-color: #FFFFFF;
	content: "";
	height: 1px;
	left: 0;
	max-width: 315px;
	opacity: 0.25;
	position: absolute;
	top: 15px;
	width: 100%;
}

.p-footer-menu__title--contact::after {
	background-color: #FFFFFF;
	bottom: -19px;
	content: "";
	height: 1px;
	left: 0;
	max-width: 315px;
	opacity: 0.25;
	position: absolute;
	width: 100%;
}

.p-footer-menu__title--large {
	padding-top: 32px;
}

.p-footer-menu__title a {
	position: relative;
}

.p-footer-menu__title a::after {
	background-color: #FFFFFF;
	bottom: -4px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transition: none;
	width: 0;
}

.p-footer-menu__list {
	display: grid;
	gap: 8px 0px;
	grid-template-columns: auto 1fr;
	margin-top: 8px;
}

.p-footer-menu__list--grid {
	display: grid;
	gap: 8px 30px;
	grid-template-columns: auto auto 1fr;
	margin-top: 8px;
}

.p-footer-menu__item {
	padding-left: 10px;
	position: relative;
}

.p-footer-menu__item::before {
	background: #FFFFFF;
	content: "";
	height: 1px;
	left: -3px;
	opacity: 0.7;
	position: absolute;
	top: 13.5px;
	transition: opacity 0.3s ease;
	width: 8px;
}

.p-footer-menu__link {
	color: #FFFFFF;
	font-size: 15px;
	letter-spacing: 0.9px;
	line-height: normal;
	opacity: 0.7;
}

.p-hero {
	background-image: repeating-linear-gradient(90deg, #FCFAFA, #FCFAFA 1px, transparent 1px, transparent 30px), repeating-linear-gradient(0deg, #FCFAFA, #FCFAFA 1px, #FFFFFF 1px, #FFFFFF 30px);
	padding-top: 13px;
}

.p-hero__wrapper {
	padding-left: 24px;
	padding-right: 30px;
}

.p-hero__content {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.p-hero__title {
	color: #303030;
	font-family: "Outfit", sans-serif;
	font-size: 70px;
	font-weight: 300;
	letter-spacing: -3.5px;
	line-height: 67px; /* 95.714% */
}

.p-hero__subtitle {
	font-weight: 400;
	letter-spacing: 1.12px;
	line-height: 29px;
}

.p-hero__subtitle span {
	padding-left: 7px;
}

.p-hero__scroll-btn {
	content: "";
	cursor: pointer;
	position: absolute;
	right: 30px;
	top: 232px;
	transition: transform 0.3s ease;
}

.p-hero__scroll-btn:focus {
	outline: 2px solid #3F4F8A;
	outline-offset: 2px;
}

.p-hero__scroll-icon {
	height: 60px;
	width: 60px;
}

.p-hero__scroll-icon .arrow-down {
	animation: subtle-bounce 2s ease-in-out infinite;
}

.p-hero__mainvisual {
	margin-top: 41px;
	position: relative;
	width: 100%;
}

.p-hero__image {
	display: block;
	position: relative;
}

.p-hero__image img {
	height: 100%;
	width: 100%;
}

.p-hero__ornament {
	position: absolute;
	right: 0;
	top: -30px;
}

.p-hero__ornament img {
	height: 75px;
	width: 60px;
}

.p-about {
	background-image: repeating-linear-gradient(90deg, #FCFAFA, #FCFAFA 1px, transparent 1px, transparent 30px), repeating-linear-gradient(0deg, #FCFAFA, #FCFAFA 1px, #FFFFFF 1px, #FFFFFF 30px);
	padding-top: 52px;
}

.p-about__heading {
	padding-left: 3px;
	position: relative;
}

.p-about__heading-en {
	color: #3F4F8A;
	font-family: "Outfit", sans-serif;
	font-size: 50px;
	font-weight: 200;
	letter-spacing: -2.5px;
	line-height: 47.5px;
}

.p-about__wrapper {
	display: flex;
	flex-direction: column;
	margin-top: 39px;
}

.p-about__heading-ja {
	font-size: 26px;
	line-height: 42px;
	margin-left: -17px;
}

.p-about__text {
	display: flex;
	flex-direction: column;
	font-weight: 400;
	gap: 32px;
	letter-spacing: 1.6px;
	line-height: 32px;
	margin-top: 18px;
}

.p-about__item {
	margin-top: 40px;
	padding-left: 198px;
	position: relative;
}

.p-about__image {
	display: none;
}

.p-about__ornament {
	display: none;
}

.p-scroll-text-section {
	position: relative;
	width: 100%;
}

.p-scroll-text--drawer {
	display: none;
}

.p-scroll-text--section-divider {
	height: 75px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.p-scroll-text--section-divider::before,
.p-scroll-text--section-divider::after {
	background-color: #303030;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	width: 100%;
}

.p-scroll-text--section-divider::before {
	top: 0;
}

.p-scroll-text--section-divider:after {
	bottom: 0;
}

.p-scroll-text--rtl {
	height: 83px;
	position: relative;
	width: 100%;
}

.p-scroll-text--feature-page::before,
.p-scroll-text--feature-page::after {
	background-color: #FFFFFF;
}

.p-scroll-text__wrapper {
	animation: loop-divider 20s linear infinite;
}

.p-scroll-text__wrapper--rtl {
	animation: loop-rtl 20s linear infinite;
}

.p-scroll-text__content {
	display: flex;
	font-family: "Outfit", sans-serif;
	white-space: nowrap;
}

.p-scroll-text__content--section-divider {
	font-size: 125px;
	font-weight: 200;
	letter-spacing: -2.5px;
	line-height: 66.609px;
}

.p-scroll-text__content--rtl {
	color: #FFFFFF;
	font-size: 125px;
	font-weight: 200;
	letter-spacing: -2.5px;
	line-height: 66.609px;
}

.p-scroll-text__content--feature-page {
	color: #FFFFFF;
}

.p-service__item {
	display: none;
}

.p-service__container {
	padding-top: 48px;
	position: relative;
}

.p-service__cards {
	margin-inline: -30px;
	overflow: visible;
	padding-inline: 0;
}

.p-service__card {
	width: 20.5rem;
}

.p-service__content {
	position: relative;
}

.p-service__ornament {
	content: "";
	position: absolute;
	right: 2px;
	top: -6px;
}

.p-service__ornament img {
	height: 15px;
}

.p-service__ornament[data-size=small] img {
	width: 15px;
}

.p-service__ornament[data-size=medium] img {
	width: 30px;
}

.p-service__ornament[data-size=large] img {
	width: 45px;
}

.p-service-section {
	margin-block: 100px;
}

.p-service-section__inner {
	padding-inline: 30px;
}

.p-service-section__container {
	display: flex;
	flex-direction: column-reverse;
	gap: 20px;
	padding-block: 56px;
	position: relative;
}

.p-service-section__container--reverse {
	flex-direction: column-reverse;
}

.p-service-section__container::before {
	background-color: #303030;
	content: "";
	height: 1px;
	left: 50%;
	opacity: 0.25;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	width: calc(100% + 30px);
}

.p-service-section__container:last-child::after {
	background-color: #303030;
	bottom: 0;
	content: "";
	height: 1px;
	left: 50%;
	opacity: 0.25;
	position: absolute;
	transform: translateX(-50%);
	width: calc(100% + 30px);
}

.p-service-section__content-block {
	position: relative;
}

.p-service-section__content-block--first::before {
	display: none;
}

.p-service-section__heading {
	align-items: center;
	display: flex;
	gap: 20px;
}

.p-service-section__number {
	color: #B7C8D0;
	font-family: "Outfit", sans-serif;
	font-size: 48px;
	font-weight: 250;
	letter-spacing: 2px;
}

.p-service-section__ja {
	font-size: 20px;
	line-height: 1.3;
}

.p-service-section__en {
	font-size: 12px;
	font-weight: 250;
}

.p-service-section__item {
	color: #3F4F8A;
	font-size: 11px;
	line-height: 1.4;
	padding-top: 25px;
	position: relative;
}

.p-service-section__item::after {
	background-color: #1D1D1D;
	content: "";
	height: 1px;
	left: 50%;
	opacity: 0.2;
	position: absolute;
	top: 55px;
	transform: translateX(-50%);
	width: 100%;
}

.p-service-section__ornament {
	content: "";
	height: 10px;
	position: absolute;
	right: 0;
	top: 30px;
}

.p-service-section__ornament[data-size=small] {
	width: 10px;
}

.p-service-section__ornament[data-size=medium] {
	width: 20px;
}

.p-service-section__ornament[data-size=large] {
	width: 30px;
}

.p-service-section__text {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.3px;
	line-height: 1.8;
	margin-top: 40px;
}

.p-service-section__image img {
	aspect-ratio: 21/20;
}

.p-service-section__image--first::before {
	background-image: url("../img/service-page-square1.svg");
	background-size: contain;
	content: "";
	height: 45px;
	left: -30px;
	position: absolute;
	top: -15px;
	width: 45px;
	z-index: 1;
}

.p-service-section__image--first::after {
	background-image: url("../img/service-page-square2.svg");
	background-size: contain;
	bottom: -15px;
	content: "";
	height: 45px;
	position: absolute;
	right: -30px;
	width: 45px;
}

.p-service-section__image--second::after {
	background-image: url("../img/service-page-square3.svg");
	background-size: contain;
	bottom: -30px;
	content: "";
	height: 45px;
	left: -45px;
	position: absolute;
	width: 60px;
}

.p-service-section__image--third::after {
	background-image: url("../img/service-page-square4.svg");
	background-size: contain;
	bottom: -15px;
	content: "";
	height: 45px;
	position: absolute;
	right: -30px;
	width: 60px;
	z-index: 1;
}

.p-feature-section {
	color: #FFFFFF;
	margin-inline: auto;
	padding-block: 60px;
}

.p-feature-section__inner {
	padding-inline: 15px;
}

.p-feature-section__container {
	display: flex;
	flex-direction: column-reverse;
	gap: 40px;
}

.p-feature-section__heading {
	position: relative;
}

.p-feature-section__title {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.p-feature-section__en {
	color: #59B9C7;
	font-family: "Outfit", sans-serif;
	font-weight: 300;
	line-height: 24px;
	overflow: hidden;
	padding-left: 30px;
	position: relative;
	text-overflow: ellipsis;
}

.p-feature-section__en::before {
	background-color: #59B9C7;
	content: "";
	height: 15px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 15px;
}

.p-feature-section__ja {
	font-size: 26px;
	line-height: 36px;
}

.p-feature-section__content {
	margin-top: 15px;
}

.p-feature-section__text {
	font-weight: 400;
	letter-spacing: 1.6px;
	line-height: 32px; /* 200% */
}

.p-feature-section__image {
	position: relative;
}

.p-feature-section__image--first::before {
	background-image: url(../img/feature-page-square1.svg);
	background-size: contain;
	content: "";
	height: 48px;
	left: 2px;
	position: absolute;
	top: 0;
	width: 48px;
}

.p-feature-section__image--first::after {
	background-image: url(../img/feature-page-square2.svg);
	background-size: contain;
	bottom: -11px;
	content: "";
	height: 60px;
	position: absolute;
	right: 20px;
	width: 45px;
}

.p-feature-section__image--second::before {
	background-image: url(../img/feature-page-square3.svg);
	background-size: contain;
	content: "";
	height: 47px;
	position: absolute;
	right: 1px;
	top: 0;
	width: 79px;
}

.p-feature-section__image--second::after {
	background-image: url(../img/feature-page-square4.svg);
	background-size: contain;
	bottom: 0;
	content: "";
	height: 45px;
	left: 0;
	position: absolute;
	width: 60px;
}

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

.p-about-section__inner {
	padding-inline: 20px;
}

.p-about-section__container {
	display: flex;
	flex-direction: column;
	margin-top: 2px;
}

.p-about-section__image {
	z-index: -1;
}

.p-about-section__image img {
	max-width: 100%;
}

.p-about-section__content-block {
	padding-top: 88px;
	position: relative;
}

.p-about-section__content-block::before {
	background-color: #1D1D1D;
	content: "";
	height: 1px;
	left: 50%;
	opacity: 0.25;
	position: absolute;
	top: 50px;
	transform: translateX(-50%);
	width: calc(100% + 60px);
}

.p-about-section__content-block::after {
	background-color: #1D1D1D;
	bottom: -30px;
	content: "";
	height: 1px;
	left: 0;
	opacity: 0.25;
	position: absolute;
	width: calc(100% + 30px);
}

.p-about-section__ornament-right {
	content: "";
	height: 60px;
	left: calc(100% - 30px);
	position: absolute;
	top: 35px;
	width: 60px;
}

.p-about-section__ornament-left {
	bottom: -30px;
	content: "";
	height: 60px;
	left: -30px;
	position: absolute;
	width: 60px;
}

.p-about-section__heading-en {
	color: #3F4F8A;
	font-size: 22px;
	letter-spacing: -2.5px;
	line-height: 47.5px; /* 95% */
}

.p-about-section__text {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 1.6px;
	line-height: 29px;
	padding-top: 20px;
}

.p-about-section__signature {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	padding-right: 7px;
	padding-top: 19px;
}

.p-about-section__signature-image {
	height: 27.447px;
	width: 120.024px;
}

.p-about-section__signature-text {
	font-size: 12px;
	font-weight: 400;
}

.p-error {
	padding: 80px 20px;
	text-align: center;
}

.p-error__container {
	margin: 0 auto;
	max-width: 800px;
}

.p-error__title {
	color: #1D1D1D;
	font-family: "Outfit", sans-serif;
	font-size: 32px;
	margin-bottom: 24px;
}

.p-error__message {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 16px;
}

.p-error__description {
	line-height: 1.75;
}

.p-error__action {
	margin-top: 40px;
}

.p-contact-complete {
	padding: 80px 20px;
	text-align: center;
}

.p-contact-complete__container {
	margin: 0 auto;
	max-width: 800px;
}

.p-contact-complete__title {
	color: #3F4F8A;
	font-size: 20px;
	font-weight: 700;
}

.p-contact-complete__message {
	line-height: 1.75;
	margin-top: 48px;
}

.p-contact-complete__text + .p-contact-complete__text {
	margin-top: 16px;
}

.p-contact-complete__action {
	margin-top: 48px;
}

/* ================================
 * お問い合わせ確認ページ
 * ================================ */

.p-contact-confirm {
	display: none;
	margin-block: 80px;
}

.p-contact-confirm__inner {
	margin: 0 auto;
	max-width: 800px;
	padding: 0 20px;
}

.p-contact-confirm__content {
	margin-top: 40px;
}

.p-contact-confirm__lead {
	line-height: 1.6;
	text-align: center;
}

.p-contact-confirm__form {
	margin-top: 40px;
}

.p-contact-confirm__dt {
	align-items: center;
	display: flex;
	font-weight: 700;
	padding: 20px 0;
	width: 100%;
}

.p-contact-confirm__field-block {
	align-items: center;
	display: flex;
	gap: 8px;
}

.p-contact-confirm__dd {
	background: #EFEFEF;
	padding: 7px 17px;
	padding-left: 20px;
	width: 100%;
}

.p-contact-confirm__dd.p-contact-confirm__dd--small {
	width: 66px;
}

.p-contact-confirm__dd.p-contact-confirm__dd--medium {
	width: 75px;
}

.p-contact-confirm__line {
	background: #1D1D1D;
	height: 1px;
	pointer-events: none; /* クリックできないようにする */
	width: 10.5px;
}

.p-contact-confirm_required {
	color: #F03341;
	display: inline-block;
	font-size: 12px;
	margin-left: 8px;
}

.p-contact-confirm__buttons {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: center;
	margin-inline: auto;
	margin-top: 55px;
}

/* ================================
 * プライバシーポリシーページ
 * ================================ */

.p-privacy {
	margin-bottom: 95px;
	margin-top: 60px;
}

.p-privacy__inner {
	margin-inline: auto;
	max-width: 850px;
	padding-inline: 20px;
	width: 100%;
}

.p-privacy__content {
	display: flex;
	flex-direction: column;
	gap: 21.2px;
}

.p-privacy__text {
	letter-spacing: 1.28px;
	line-height: 2;
	margin-bottom: 18px;
}

.p-privacy__heading {
	border-bottom: 1px solid rgba(29, 29, 29, 0.25);
	font-size: 22px;
	letter-spacing: 1.1px;
	line-height: 1.8;
	margin-bottom: 17px;
	padding-bottom: 15px;
	width: 100%;
}

.p-privacy__body {
	font-weight: 400;
	letter-spacing: 1.28px;
	line-height: 2;
}

.p-privacy__num {
	padding-right: 0.3rem;
	position: relative;
}

.p-privacy__num::after {
	content: ".";
	left: 8px;
	position: absolute;
	top: 2px;
}

.p-privacy__num--roman::after {
	content: ".";
	left: 17px;
	position: absolute;
	top: 3px;
}

.p-privacy__num--alpha::after {
	content: ".";
	left: 10px;
	position: absolute;
	top: 3px;
}

.p-privacy__row {
	display: flex;
	flex-wrap: wrap;
}

.p-privacy__dt,
.p-privacy__dd {
	display: inline;
	margin: 0;
}

.p-values-section {
	position: relative;
	top: 70px;
	z-index: -2;
}

.p-values-section__image {
	height: 100vh;
	position: relative;
}

.p-values-section__image img {
	height: 100%;
	-o-object-position: 28% center;
	object-position: 28% center;
}

.p-values-section__ornament {
	display: none;
}

.p-values-section__ornament-right {
	content: "";
	height: 60px;
	position: absolute;
	right: 0;
	top: -30px;
	width: 100%;
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	background-image: repeating-linear-gradient(90deg, #FCFAFA, #FCFAFA 1px, transparent 1px, transparent 30px), repeating-linear-gradient(0deg, #FCFAFA, #FCFAFA 1px, #FFFFFF 1px, #FFFFFF 30px);
}

.p-values-section__ornament-left {
	bottom: -60px;
	content: "";
	height: 90px;
	left: 0;
	position: absolute;
	width: 100%;
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	background-image: repeating-linear-gradient(90deg, #FCFAFA, #FCFAFA 1px, transparent 1px, transparent 30px), repeating-linear-gradient(0deg, #FCFAFA, #FCFAFA 1px, #FFFFFF 1px, #FFFFFF 30px);
}

.p-values-section__overlay {
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
	background-size: 30px 30px;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-values-section__right {
	bottom: 60px;
	display: flex;
	flex-direction: column;
	gap: 1px;
	position: absolute;
	right: 20px;
}

.p-values-section__big-title {
	color: #FFFFFF;
	font-family: "Outfit", sans-serif;
	font-size: 68px;
	font-weight: 200;
	left: -18px;
	letter-spacing: -5px;
	line-height: 75px;
	position: absolute;
	top: -5px;
	writing-mode: vertical-rl;
}

.p-values-section__big-title::after {
	background-color: #FFFFFF;
	content: "";
	height: 63vh;
	left: 59px;
	position: absolute;
	top: 0;
	width: 1px;
}

.p-values-section__lead {
	color: #FFFFFF;
	font-size: 14px;
}

.p-values-section__text1 {
	background-color: #3F4F8A;
	margin-left: 1px;
	padding: 5px 3px 5px 10px;
}

.p-values-section__text2 {
	background-color: #3F4F8A;
	margin-left: 30px;
	padding: 5px 3px 5px 10px;
}

.p-values-section__text3 {
	background-color: #3F4F8A;
	margin-left: 95px;
	padding: 5px 3px 5px 6px;
}

.p-company-section {
	margin-top: 120px;
}

.p-company-section__inner {
	padding-inline: 20px;
}

.p-company-section__container {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.p-company-section__list {
	border-top: 1px solid rgba(29, 29, 29, 0.25);
}

.p-company-section__row {
	border-bottom: 1px solid rgba(29, 29, 29, 0.25);
	display: flex;
	flex-direction: column;
	padding-bottom: 20px;
	padding-top: 20px;
}

.p-company-section__term {
	letter-spacing: 0.96px;
}

.p-company-section__description {
	font-weight: 400;
	letter-spacing: 0.96px;
	margin-top: 10px;
}

.p-company-section__description-list {
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.9px;
}

.p-access-section {
	border-top: 1px solid rgba(29, 29, 29, 0.25);
	margin-top: 60px;
}

.p-access-section__inner {
	padding-inline: 30px;
}

.p-access-section__container {
	display: flex;
	flex-direction: column;
}

.p-access-section__content {
	display: flex;
	flex-direction: column;
	gap: 30px;
	padding-block: 60px;
}

.p-access-section__postcode {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.84px;
	line-height: 24px;
}

.p-access-section__address {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.84px;
	line-height: 24px;
}

.p-access-section__map {
	aspect-ratio: 16/9;
	margin: 0 calc(50% - 50vw);
	overflow: hidden;
	position: relative;
	width: 100vw;
}

.p-access-section__map iframe {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-feature {
	overflow: hidden;
	padding-bottom: 80px;
	padding-top: 2px;
	position: relative;
}

.p-feature::before {
	background-color: rgba(0, 0, 0, 0.02);
	content: "";
	height: 100%;
	left: 57px;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}

.p-feature__decoration {
	content: "";
	position: absolute;
}

.p-feature__decoration.p-feature__decoration--top-right {
	background: url(../img/feature-ornament-right.svg) no-repeat center center/contain;
	height: 60px;
	right: 15px;
	top: 10px;
	width: 60px;
}

.p-feature__decoration.p-feature__decoration--bottom-left {
	background: url(../img/feature-ornament-left.svg) no-repeat center center/contain;
	bottom: 15px;
	height: 45px;
	left: 15px;
	width: 45px;
}

.p-feature__heading {
	margin-top: 71px;
	z-index: 1;
}

.p-feature__container {
	display: grid;
	grid-template-columns: 1fr;
	margin-top: 52px;
	position: relative;
	row-gap: 25px;
	z-index: 2;
}

.p-feature__image-container {
	display: grid;
	margin-left: -5px;
	place-items: center;
	position: relative;
}

.p-feature__background-image {
	grid-column: 1/-1;
	grid-row: 1/-1;
	z-index: -2;
}

.p-feature__background-image img {
	border-radius: 10px;
	height: 335px;
	width: 250px;
}

.p-feature__image {
	grid-column: 1/-1;
	grid-row: 1/-1;
	z-index: 1;
}

.p-feature__image img {
	border-radius: 10px;
	height: 315px;
	width: 285px;
}

.p-feature__overlay {
	background: #303030;
	border-radius: 10px;
	grid-column: 1/-1;
	grid-row: 1/-1;
	height: 335px;
	opacity: 0.4;
	width: 250px;
	z-index: -1;
}

.p-feature__lead-text {
	font-size: 26px;
	line-height: 42px;
	margin-top: 5px;
}

.p-feature__text {
	font-weight: 400;
	letter-spacing: 1.6px;
	line-height: 32px;
	margin-top: 18px;
}

.p-feature__item {
	display: flex;
	margin-left: 0;
	margin-top: 42px;
	padding-left: 96px;
	position: relative;
}

.p-feature__scroll-text {
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 368px;
	width: 100%;
	z-index: 1;
}

.p-voice {
	padding-bottom: 67px;
	padding-top: 60px;
}

.p-voice__wrapper {
	display: flex;
	flex-direction: column;
	position: relative;
}

.p-voice__wrapper::before,
.p-voice__wrapper::after {
	background-color: #FFFFFF;
	content: "";
	height: 1px;
	left: 50%;
	opacity: 0.25;
	position: absolute;
	transform: translateX(-50%);
	width: 100%;
}

.p-voice__wrapper::before {
	top: 207px;
	width: 100vw;
}

.p-voice__wrapper::after {
	bottom: 8px;
	width: 100vw;
}

.p-voice__heading::before {
	display: none;
}

.p-voice__nav {
	display: none;
}

.p-voice__container {
	margin-top: 18px;
	width: 100%;
}

.p-voice__cards {
	overflow: visible;
}

.p-voice__card {
	width: 210px;
}

.p-voice__number {
	color: #FFFFFF;
	font-family: "Outfit", sans-serif;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 0.28px;
	line-height: 10px;
	margin-bottom: 20px;
}

.p-voice__content {
	gap: 5px;
}

.p-voice__company {
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 1.4px;
	line-height: 20px;
	opacity: 0.5;
}

.p-voice__text {
	-webkit-line-clamp: 3; /* 3行表示 */
	color: #FFFFFF;
	display: -webkit-box;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 1.08px;
	line-height: 32px;
	-webkit-box-orient: vertical; /* 垂直方向に配置 */
	overflow: hidden; /* 溢れた部分を隠す */
}

.p-voice__item {
	margin-top: 30px;
	padding-left: 146px;
	position: relative;
}

.p-news__container {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.p-news__heading {
	padding-left: 15px;
}

.p-news__blog.p-news__blog--news-archive {
	order: 2;
}

.p-news__list.p-news__list:first-child {
	border-top: 1px solid rgba(29, 29, 29, 0.25);
}

.p-news__item {
	border-bottom: 1px solid rgba(29, 29, 29, 0.25);
	display: flex;
	flex-direction: column;
	order: 2;
	padding-top: 30px;
	position: relative;
	z-index: 1;
}

.p-news__item::before {
	background: #EFEFEF;
	bottom: 0;
	content: "";
	left: 0;
	opacity: 0.5;
	position: absolute;
	right: 0;
	top: 0;
	transform: scaleY(0);
	transform-origin: left top;
	transition: transform 0.3s;
	z-index: -1;
}

.p-news__thumbnail {
	aspect-ratio: 315/210;
	margin-inline: auto;
	width: 91%;
}

.p-news__thumbnail img {
	border-radius: 5px;
	height: 100%;
}

.p-news__text {
	padding: 23px 15px 26px;
}

.p-news__badge {
	background: #303030;
	border-radius: 15px;
	color: #EFEFEF;
	display: inline-block;
	font-size: 12px;
	font-weight: 400;
	height: 24px;
	letter-spacing: 1.2px;
	line-height: 20px;
	padding: 3px 12px;
	width: 78px;
}

.p-news__date {
	font-family: "Outfit", sans-serif;
	font-weight: 200;
	letter-spacing: 0.64px;
	line-height: 0px;
	padding-left: 12px;
}

.p-news__title {
	-webkit-line-clamp: 2; /* 2行のみ表示 */
	display: -webkit-box;
	font-size: 14px;
	letter-spacing: 1.08px;
	line-height: 25px;
	padding-top: 10px;
	-webkit-box-orient: vertical; /* 垂直方向に配置 */
	overflow: hidden; /* 溢れた部分を隠す */
}

.p-news__link {
	margin-left: 15px;
	margin-top: 41px;
	padding-left: 118px;
	position: relative;
}

.p-voice-section {
	padding-bottom: 75px;
	padding-top: 80px;
}

.p-voice-section__inner {
	padding-inline: 10px;
}

.p-voice-section__grid {
	display: grid;
	position: relative;
}

.p-voice-section__grid::before {
	background-color: #FFFFFF;
	content: "";
	height: 1px;
	left: 50%;
	opacity: 0.2;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	width: 90%;
}

.p-voice-section__grid::after {
	background-color: #FFFFFF;
	bottom: 0;
	content: "";
	height: 1px;
	left: 50%;
	opacity: 0.2;
	position: absolute;
	transform: translateX(-50%);
	width: 90%;
}

.p-voice-section__number {
	color: #FFFFFF;
	font-family: "Outfit", sans-serif;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 0.28px;
	line-height: 10px;
	padding-bottom: 20px;
}

.p-voice-section__content {
	margin-top: 26px;
}

.p-voice-section__company {
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 1.4px;
	line-height: 20px;
	opacity: 0.5;
}

.p-voice-section__text {
	color: #FFFFFF;
	font-size: 18px;
	letter-spacing: 1.08px;
	line-height: 32px;
}

.p-voice-section__link {
	margin-top: 15px;
}

.p-voice-section__pagination {
	margin-top: 33px;
}

.p-voice-detail {
	padding-bottom: 88px;
}

.p-voice-detail p {
	font-size: 14px;
}

.p-voice-detail__inner {
	padding-inline: 10px;
}

.p-voice-detail__date {
	font-family: "Outfit", sans-serif;
	font-weight: 200;
	letter-spacing: 0.64px;
	line-height: 0px;
}

.p-voice-detail__title {
	font-size: 18px;
	letter-spacing: 0.6px;
	line-height: 2;
}

.p-voice-detail__figure {
	aspect-ratio: 800/390;
	padding-top: 14px;
	position: relative;
}

.p-voice-detail__figure img {
	border-radius: 10px;
	height: 100%;
}

.p-voice-detail__figure::before {
	background: linear-gradient(180deg, rgba(48, 48, 48, 0) 0%, #1D1D1D 100%);
	border-radius: 10px;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-voice-detail__figcaption {
	bottom: 15px; /* 画像下部からの距離 */
	color: #FFFFFF;
	font-size: 13px;
	left: 15px; /* 左からの距離 */
	line-height: 1.6;
	max-width: calc(100% - 30px); /* 左右のマージンを考慮 */
	position: absolute;
}

.p-voice-detail__question {
	color: #3F4F8A;
	font-size: 20px;
	letter-spacing: 1px;
	line-height: 1.74;
	margin-bottom: 29px;
	margin-top: 60px;
}

.p-voice-detail__decoration svg {
	max-width: 100%;
	width: 800px;
}

.p-voice-detail__answer {
	font-weight: 400;
	letter-spacing: 1.28px;
	line-height: 2;
	margin-bottom: 60px;
	margin-top: 20px;
}

.p-voice-detail__answer > :first-child {
	margin-top: 0;
}

.p-voice-detail__text {
	font-weight: 400;
	letter-spacing: 1.9px;
	line-height: 2;
	text-align: right;
}

.p-voice-detail__link {
	margin-inline: auto;
	margin-top: 70px;
	max-width: 340px;
	position: relative;
	width: 100%;
}

.p-voice-other {
	padding-bottom: 70px;
	padding-top: 66px;
	position: relative;
}

.p-voice-other::before {
	background-color: rgba(0, 0, 0, 0.02);
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-voice-other__inner {
	padding-inline: 15px;
}

.p-voice-other__grid {
	display: grid;
	margin-top: 50px;
	position: relative;
}

.p-voice-other__grid::before {
	background-color: #1D1D1D;
	content: "";
	height: 1px;
	left: 0;
	opacity: 0.2;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-voice-other__card {
	margin-top: 50px;
}

.p-voice-other__number {
	margin-bottom: 15px;
}

.p-voice-other__content {
	margin-top: 24px;
}

.p-voice-other__company {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 1.4px;
	line-height: 20px;
	opacity: 0.5;
}

.p-voice-other__text {
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	letter-spacing: 1.08px;
	line-height: 32px;
}

.p-news-archive {
	padding-bottom: 100px;
	padding-top: 80px;
}

.p-news-archive__inner {
	padding-inline: 15px;
}

.p-news-archive__container {
	display: flex;
	flex-direction: column;
}

.p-news-archive__sidebar {
	margin-top: 50px;
	order: 2;
	width: 100%;
}

.p-news-archive__sidebar-archive {
	margin-top: 50px;
}

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

.p-news-detail {
	padding-bottom: 70px;
	padding-top: 40px;
}

.p-news-detail p {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 1.28px;
	line-height: 2;
	margin-bottom: 20px;
	margin-top: 20px;
}

.p-news-detail__inner {
	padding-inline: 20px;
	width: 100%;
}

.p-news-detail__container {
	display: flex;
	flex-direction: column;
	gap: 65px;
}

.p-news-detail__content {
	order: 1;
	width: 100%;
}

.p-news-detail__title {
	border-bottom: 1px solid #1D1D1D;
	font-size: 24px;
	margin-bottom: 15px;
	margin-top: 20px;
	padding-bottom: 20px;
}

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

.p-news-detail__body h2 {
	border-bottom: 1px solid rgba(29, 29, 29, 0.25);
	font-size: 20px;
	letter-spacing: 1.4px;
	line-height: 1.6;
	margin-bottom: 20px;
	margin-top: 60px;
	padding-bottom: 15px;
	position: relative;
}

.p-news-detail__body h2::after {
	border-bottom: solid 1px #3F4F8A;
	bottom: -1px;
	content: " ";
	display: block;
	position: absolute;
	width: 11%;
}

.p-news-detail__body h2:first-of-type {
	margin-top: 0;
}

.p-news-detail__body h3 {
	background: #EFEFEF;
	font-size: 18px;
	letter-spacing: 1.2px;
	line-height: 1.6;
	margin-bottom: 20px;
	padding: 11px 26px;
	position: relative;
}

.p-news-detail__body h3::before {
	background-color: #3F4F8A;
	content: "";
	height: 10px;
	left: -1px; /*アイコンの位置*/
	position: absolute;
	top: 50%; /*アイコンの位置*/
	transform: translateY(-50%);
	width: 10px;
}

.p-news-detail__body h4 {
	border-bottom: 1px solid rgba(29, 29, 29, 0.25);
	font-size: 16px;
	letter-spacing: 1.1px;
	line-height: 1.8;
	margin-bottom: 20px;
	padding-bottom: 15px;
}

.p-news-detail__body h5 {
	background: #EFEFEF;
	font-size: 15px;
	letter-spacing: 1px;
	line-height: 1.6;
	margin-bottom: 20px;
	padding: 12px 24px;
}

.p-news-detail__body h6 {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.9px;
	line-height: 1.8;
	margin-bottom: 20px;
	padding: 0 28px;
	position: relative;
}

.p-news-detail__body h6::before {
	background-color: #3F4F8A;
	content: "";
	height: 14px;
	left: -1px; /*アイコンの位置*/
	position: absolute;
	top: 10px; /*アイコンの位置*/
	width: 14px;
}

.p-news-detail__body ul {
	margin-bottom: 20px;
}

.p-news-detail__body li {
	font-size: 16px;
	letter-spacing: 1.28px;
	line-height: 2;
	padding-left: 25px;
}

.p-news-detail__body li + li {
	margin-top: 6px;
}

.p-news-detail__body ul li {
	position: relative;
}

.p-news-detail__body ul li::before {
	background-color: #3F4F8A;
	border-radius: 50%;
	content: "";
	height: 15px;
	left: -1px;
	position: absolute;
	top: 0.6em;
	width: 15px;
}

.p-news-detail__body ol {
	counter-reset: number;
	margin-bottom: 20px;
}

.p-news-detail__body ol li {
	position: relative;
}

.p-news-detail__body ol li::before {
	color: #3F4F8A;
	content: counter(number) ".";
	counter-increment: number;
	font-family: "Outfit", sans-serif;
	font-size: 20px;
	font-weight: 400;
	left: -1px;
	letter-spacing: 0.8px;
	line-height: 1;
	position: absolute;
	top: 0.3em;
}

.p-news-detail__body a:not(.c-btn):not(.c-btn-link):not(.p-section-button) {
	color: #3F4F8A;
	font-weight: 400;
	letter-spacing: 1.28px;
	line-height: 2;
	text-decoration-line: underline;
}

.p-news-detail__sidebar-wrapper {
	margin-top: -20px;
	order: 2;
	width: 100%;
}

.p-news-detail__sidebar-category {
	margin-top: 21px;
	padding-left: 3px;
}

.p-news-detail__sidebar-archive {
	margin-top: 50px;
	padding-left: 3px;
}

.p-news-detail__btn {
	margin-top: 0.3em;
}

.p-news-detail__link {
	margin-left: 15px;
	margin-top: 70px;
	padding-left: 118px;
	position: relative;
}

/* ギャラリー全体のコンテナ */

.p-news-detail__custom-gallery-layout {
	padding: 10px; /* 左右に余白を追加 */
}

.p-news-detail__image-wrapper {
	width: 100% !important;
}

/* 各段の設定 */

.p-news-detail__gallery-row-1,
.p-news-detail__gallery-row-2,
.p-news-detail__gallery-row-3 {
	margin-bottom: 15px;
}

.p-news-detail__gallery-row-3 {
	margin-bottom: 0; /* 最後の段は下余白なし */
}

/* 1段目：1枚の画像 */

.p-news-detail__gallery-row-1 {
	text-align: center; /* 画像を中央揃え */
}

.p-news-detail__gallery-row-1 img {
	aspect-ratio: 800/500;
	border-radius: 5px; /* 角を少し丸く */
	height: auto;
	width: 100%;
}

/* 2段目：2枚の画像を横並び */

.p-news-detail__gallery-row-2 {
	align-items: center; /* 中央揃え */
	display: flex; /* 横並びにする */
	flex-direction: column; /* 縦並びにする */
	gap: 15px; /* 余白を狭く */
}

.p-news-detail__gallery-row-2 img {
	aspect-ratio: 390/240;
	border-radius: 5px; /* 角を少し丸く */
	height: auto;
	width: 100%;
}

/* 3段目：3枚の画像を横並び */

.p-news-detail__gallery-row-3 {
	align-items: center; /* 中央揃え */
	display: flex; /* 横並びにする */
	flex-direction: column; /* 縦並びにする */
	gap: 15px; /* 余白を狭く */
}

.p-news-detail__gallery-row-3 img {
	aspect-ratio: 256/158;
	border-radius: 5px;
	height: auto;
	width: 100%;
}

.p-contact__text {
	font-size: 14px;
	letter-spacing: 1.28px;
	line-height: 2.3;
	margin-inline: auto;
	max-width: 800px;
	width: 100%;
}

.p-contact__text-small {
	font-size: 13px;
	letter-spacing: 1.12px;
	line-height: 2;
}

.p-contact__area {
	margin-top: 30px;
}

/* --------------------------------------------------
  Contact Form 7 上書きスタイル
-------------------------------------------------- */

.wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

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

.wpcf7-not-valid-tip {
	color: #F03341;
	display: block;
	font-size: 12px;
	margin-top: 5px;
}

/* Contact Form 7のデフォルトメッセージを非表示 */

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

/* --------------------------------------------------
  フォーム要素 基本スタイル
-------------------------------------------------- */

.form-text {
	background-color: #EFEFEF;
	border: 1px solid rgba(48, 48, 48, 0.1);
	letter-spacing: 1.28px;
	line-height: 2;
	padding: 7px 17px;
	width: 100%;
}

.form-text::-moz-placeholder {
	color: #1D1D1D;
	opacity: 0.2;
}

.form-text::placeholder {
	color: #1D1D1D;
	opacity: 0.2;
}

.form-text:focus {
	border-color: #3F4F8A;
	outline: none;
}

.form-textarea {
	background-color: #EFEFEF;
	border: 1px solid rgba(48, 48, 48, 0.1);
	height: 210px;
	letter-spacing: 1.28px;
	line-height: 2;
	max-width: 800px;
	padding: 7px 17px;
	width: 100%;
}

.form-textarea::-moz-placeholder {
	color: #1D1D1D;
	opacity: 0.2;
}

.form-textarea::placeholder {
	color: #1D1D1D;
	opacity: 0.2;
}

.form-textarea:focus {
	border-color: #3F4F8A;
	outline: none;
}

.form-checkbox,
input[type=checkbox] {
	height: 1px;
	position: absolute;
	width: 1px;
	clip: rect(0, 0, 0, 0);
	overflow: hidden;
}

.form-checkbox:checked + .form-checkbox-text::before,
.form-checkbox:checked + .wpcf7-list-item-label::before,
input[type=checkbox]:checked + .form-checkbox-text::before,
input[type=checkbox]:checked + .wpcf7-list-item-label::before {
	background-color: #3F4F8A;
}

.form-checkbox:checked + .form-checkbox-text::after,
.form-checkbox:checked + .wpcf7-list-item-label::after,
input[type=checkbox]:checked + .form-checkbox-text::after,
input[type=checkbox]:checked + .wpcf7-list-item-label::after {
	opacity: 1;
}

.form-checkbox:focus + .form-checkbox-text::before,
.form-checkbox:focus + .wpcf7-list-item-label::before,
input[type=checkbox]:focus + .form-checkbox-text::before,
input[type=checkbox]:focus + .wpcf7-list-item-label::before {
	border-color: #3F4F8A;
	outline: none;
}

.form-checkbox-text,
.wpcf7-list-item-label {
	letter-spacing: 1.28px;
	line-height: 2;
	padding-left: 25px;
	position: relative;
}

.form-checkbox-text::before,
.form-checkbox-text::after,
.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
	content: "";
	left: 0;
	position: absolute;
	top: 0.6em;
}

.form-checkbox-text::before,
.wpcf7-list-item-label::before {
	background: #FFFFFF;
	border: 1px solid rgba(48, 48, 48, 0.3);
	border-radius: 3px;
	height: 18px;
	width: 18px;
}

.form-checkbox-text::after,
.wpcf7-list-item-label::after {
	background-image: url("../img/check-icon.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	height: 11.5px;
	left: 0.1em;
	opacity: 0;
	top: 0.8em;
	transition: opacity 0.2s;
	width: 13.5px;
}

.form-checkbox-text a,
.wpcf7-list-item-label a {
	color: #3F4F8A;
	letter-spacing: 1.28px;
	line-height: 2;
	text-decoration-line: underline;
}

.form-checkbox-text a:focus,
.wpcf7-list-item-label a:focus { /*
  a 要素は インライン要素で、デフォルトでは border や box-shadow はない。
  そのため、outline: none; を付けると何の視覚的変化も残らず、完全に見えなくなる。
  */
	outline: 1px solid #3F4F8A;
	outline-offset: 1px;
}

/* --------------------------------------------------
  カスタムコンタクトフォームスタイル
-------------------------------------------------- */

.p-contact-control__title {
	padding-bottom: 10.5px;
}

.p-contact-control__text {
	align-items: center;
	display: flex;
	font-size: 18px;
	gap: 5px;
	letter-spacing: 1.44px;
	line-height: 2;
}

.p-contact-control__required {
	color: #F03341;
	font-size: 12px;
	letter-spacing: 0.96px;
	line-height: 2;
}

.p-contact-control__field-block {
	display: flex;
	gap: 30px;
	position: relative;
}

.p-contact-control__field {
	margin-bottom: 22px;
}

.p-contact-control__field.p-contact-control__field--small {
	margin-bottom: 20px;
	width: 66px;
}

.p-contact-control__field.p-contact-control__field--medium {
	margin-bottom: 20px;
	width: 75px;
}

.p-contact-control__line {
	background: #1D1D1D;
	height: 1px;
	left: 76px;
	pointer-events: none; /* クリックできないようにする */
	position: absolute;
	top: 23px;
	width: 10.5px;
}

.p-form__list {
	margin-inline: auto;
	max-width: 800px;
	width: 100%;
}

.p-form__privacy {
	margin-top: 34px;
	text-align: center;
}

.p-form__submit {
	margin-top: 8px;
}

/* スクリーンリーダー用のクラス */

.u-visually-hidden {
	border: 0;
	height: 1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
}

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

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

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

@media (any-hover: hover) {

.c-btn-arrow:hover {
	opacity: 1;
}

.c-footer-copyright__link:hover {
	opacity: 1;
}

.c-card__content-link:hover .c-card__image img {
	transform: scale(1.1);
	transition: transform 0.3s ease;
}

.c-card__content-link:hover .c-btn-arrow {
	opacity: 1;
}

.c-btn-top:hover {
	background-color: #26346A;
}

.c-btn-contact:hover {
	background-color: #26346A;
}

.c-btn-outline:hover {
	background-color: #3F4F8A;
	color: #FFFFFF;
}

.page-numbers:hover {
	opacity: 1;
}

.post-type-archive-voice .page-numbers:hover {
	opacity: 1;
}

.c-sidebar__list a:hover::after {
	transform: scale(1, 1);
}

.c-btn-link:hover::before {
	background-color: #3F4F8A;
}

.c-btn-link:hover::after {
	background-image: url(../img/link-arrow-white.svg);
}

.p-drawer__close:hover {
	background: #FFFFFF;
	border: 1px solid #000;
}

.p-drawer__close:hover .p-drawer__close-line {
	background: #000;
}

.p-drawer__link:hover::after {
	opacity: 1;
	transform: scaleX(1);
}

.p-drawer__submenu-link:hover {
	opacity: 1;
}

.p-hamburger:hover {
	background: #000;
	border: 1px solid #FFFFFF;
}

.p-hamburger:hover .p-hamburger__line {
	background: #FFFFFF;
}

.p-footer-menu__title a:hover::after {
	transition: width 0.4s ease;
	transition-delay: 0.2s;
	width: 100%;
}

.p-footer-menu__title a:not(:hover)::after {
	transition: width 0.4s ease;
	width: 0;
}

.p-footer-menu__item:hover::before {
	opacity: 1;
}

.p-footer-menu__item:hover .p-footer-menu__link {
	opacity: 1;
}

.p-hero__scroll-btn:hover {
	transform: translateY(5px);
}

.p-section-button:hover .c-text-wrap__letter {
	text-shadow: 0 -1.4em 0 #1D1D1D, 0 0 0 #1D1D1D;
	transition: text-shadow 0.4s;
	transition-delay: calc(var(--index) * 0.05s);
}

.p-section-button:hover .c-text-wrap__letter.c-text-wrap__letter--about {
	text-shadow: 0 -1.5em 0 #1D1D1D, 0 0 0 #1D1D1D;
}

.p-section-button:hover .c-text-wrap__letter.c-text-wrap__letter--top-voice {
	text-shadow: 0 -1.4em 0 #FFFFFF, 0 0 0 #FFFFFF;
}

.p-section-button:hover .c-text-wrap__letter.c-text-wrap__letter--voice-detail {
	text-shadow: 0 -1.6em 0 #1D1D1D, 0 0 0 #1D1D1D;
}

.p-section-button:hover .c-text-wrap__letter.c-text-wrap__letter--top-news {
	text-shadow: 0 -1.5em 0 #1D1D1D, 0 0 0 #1D1D1D;
}

.p-section-button:hover .c-button-line::before { /* 素早く始まり、ゆっくり終わる - 滑らか */
	animation: lineFlow 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s both; /* easeOutExpo */
}

.p-section-button:hover .c-button-line::after { /* 始まりと終わりが滑らかで中間が速い - バランスの取れた印象 */
	animation: lineFlow 0.5s cubic-bezier(1, 0, 0, 1) 0s both; /* easeInOutExpo */
}

.p-news__item:hover::before {
	transform: scaleY(1);
	transform-origin: left bottom;
}

.p-news-detail__body a:hover {
	opacity: 0.8;
}

.form-checkbox-text a:hover,
.wpcf7-list-item-label a:hover {
	opacity: 0.8;
}

}

@media (min-width: 320px) {

.c-section-title__en {
	font-size: 50px;
}

.c-section-title__en.c-section-title__en--access::before {
	top: 4px;
	width: 90px;
}

.c-section-title__en.c-section-title__en--access::after {
	bottom: 2px;
	left: 55px;
	width: 112px;
}

.c-section-title__en.c-section-title__en--top-feature::before {
	top: 4px;
	width: 153px;
}

.c-section-title__en.c-section-title__en--top-feature::after {
	bottom: 2px;
	left: 85px;
	width: 178px;
}

.c-text-wrap__letter.c-text-wrap__letter--feature {
	font-size: 13px;
}

.c-text-wrap__letter.c-text-wrap__letter--top-voice {
	font-size: 13px;
}

.c-button-line::before,
.c-button-line::after {
	top: 16px;
	width: 138px;
}

.c-button-line.c-button-line--feature {
	top: -4px;
	width: 75px;
}

.c-button-line.c-button-line--top-voice {
	top: -4px;
	width: 75px;
}

.c-heading-line1--service {
	top: 12px;
}

.c-heading-line2--service {
	bottom: -49px;
	left: 45px;
}

.c-heading-line4--about {
	left: 87px;
}

.c-page-header__title--voice {
	bottom: -6px;
}

.c-page-header__en--voice {
	font-size: 43px;
}

.c-page-header--noimg .c-page-header__en--privacy {
	font-size: 47px;
}

.p-drawer__content {
	padding-inline: 20px;
}

.p-drawer__link::before,
.p-drawer__link:after {
	width: 283px;
}

.p-hero__title {
	font-size: 65px;
}

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

.p-about__inner {
	padding-inline: 27px;
}

.p-about__heading-en {
	font-size: 43px;
}

.p-about__heading-ja {
	font-size: 23px;
}

.p-about__text {
	font-size: 14px;
}

.p-about__item {
	padding-left: 148px;
}

.p-service-section__inner {
	padding-inline: 15px;
}

.p-service-section__container::before {
	width: 100%;
}

.p-service-section__text {
	font-size: 12px;
}

.p-service-section__image--first::before {
	left: -15px;
}

.p-service-section__image--first::after {
	right: -15px;
}

.p-service-section__image--second::after {
	left: -30px;
}

.p-service-section__image--third::after {
	right: -15px;
}

.p-about-section__content-block::before {
	width: calc(100% + 40px);
}

.p-about-section__content-block::after {
	width: calc(100% + 20px);
}

.p-about-section__ornament-right {
	left: calc(100% - 40px);
}

.p-values-section__right {
	margin-left: 10px;
	right: 10px;
}

.p-access-section__content {
	padding-bottom: 40px;
	padding-top: 30px;
}

.p-feature__background-image img {
	height: auto;
	width: 220px;
}

.p-feature__image img {
	height: auto;
	width: 250px;
}

.p-feature__overlay {
	height: 296px;
	width: 220px;
}

.p-feature__item {
	padding-left: 90px;
}

.p-voice__item {
	padding-left: 100px;
}

}

@media (min-width: 375px) {

.l-inner.l-inner--footer {
	padding-inline: 30px;
}

.l-inner.l-inner--contact {
	padding-inline: 30px;
}

.c-section-title__en {
	font-size: 62px;
}

.c-section-title__en.c-section-title__en--access::before {
	top: 1px;
	width: 110px;
}

.c-section-title__en.c-section-title__en--access::after {
	bottom: -3px;
	left: 70px;
	width: 140px;
}

.c-section-title__en.c-section-title__en--top-feature::before {
	top: 0;
	width: 180px;
}

.c-section-title__en.c-section-title__en--top-feature::after {
	bottom: -4px;
	left: 135px;
	width: 187px;
}

.c-section-title__en.c-section-title__en--contact {
	font-size: 57px;
}

.c-text-wrap.c-text-wrap--voice-detail {
	padding-left: 165px;
}

.c-text-wrap__letter.c-text-wrap__letter--feature {
	font-size: 16px;
}

.c-text-wrap__letter.c-text-wrap__letter--top-voice {
	font-size: 16px;
}

.c-text-wrap__letter.c-text-wrap__letter--top-news {
	font-size: 15px;
}

.c-text-wrap__letter.c-text-wrap__letter--voice-detail {
	font-size: 15px;
}

.c-button-line::before,
.c-button-line::after {
	top: 15px;
	width: 182px;
}

.c-button-line.c-button-line--feature {
	top: -1px;
	width: 80px;
}

.c-button-line.c-button-line--top-voice {
	top: -1px;
	width: 130px;
}

.c-button-line.c-button-line--top-news {
	width: 148px;
}

.c-button-line.c-button-line--voice-detail {
	left: 18px;
	width: 130px;
}

.c-heading-line1--service {
	top: 8px;
}

.c-heading-line2--service {
	bottom: -54px;
	left: 106px;
}

.c-heading-line4--about {
	left: 125px;
}

.c-card__article.c-card__article--voice-other {
	padding-inline: 30px;
}

.c-page-header__title {
	bottom: -8px;
}

.c-page-header__title--voice {
	bottom: -8px;
}

.c-page-header__en--voice {
	font-size: 50px;
}

.c-page-header--noimg .c-page-header__title--privacy {
	bottom: -6px;
}

.c-page-header--noimg .c-page-header__title--privacy {
	bottom: -7px;
}

.c-page-header--noimg .c-page-header__en--privacy {
	font-size: 53px;
}

.p-drawer__content {
	padding-inline: 30px;
}

.p-hero__title {
	font-size: 70px;
}

.p-hero__subtitle {
	font-size: 16px;
}

.p-about__inner {
	padding-inline: 30px;
}

.p-about__heading-en {
	font-size: 50px;
}

.p-about__heading-ja {
	font-size: 26px;
}

.p-about__text {
	font-size: 16px;
}

.p-about__item {
	padding-left: 198px;
}

.p-service-section__inner {
	padding-inline: 30px;
}

.p-service-section__container::before {
	width: calc(100% + 30px);
}

.p-service-section__item {
	font-size: 12px;
}

.p-service-section__text {
	font-size: 14px;
}

.p-service-section__image--first::before {
	left: -30px;
}

.p-service-section__image--first::after {
	right: -30px;
}

.p-service-section__image--second::after {
	left: -45px;
}

.p-service-section__image--third::after {
	right: -30px;
}

.p-feature-section__inner {
	padding-inline: 30px;
}

.p-about-section__inner {
	padding-inline: 30px;
}

.p-about-section__content-block::before {
	width: calc(100% + 60px);
}

.p-about-section__content-block::after {
	width: calc(100% + 30px);
}

.p-about-section__ornament-right {
	left: calc(100% - 30px);
}

.p-about-section__heading-en {
	font-size: 26px;
}

.p-contact-complete__title {
	font-size: 23px;
}

.p-values-section__image img {
	-o-object-position: 21% center;
	object-position: 21% center;
}

.p-values-section__right {
	margin-left: 0;
	right: 20px;
}

.p-values-section__big-title {
	font-size: 80px;
	left: -15px;
}

.p-values-section__big-title::after {
	height: 80vh;
	left: 62px;
}

.p-values-section__lead {
	font-size: 16px;
}

.p-values-section__text3 {
	margin-left: 100px;
	padding: 5px 3px 5px 10px;
}

.p-company-section__inner {
	padding-inline: 30px;
}

.p-feature__background-image img {
	height: auto;
	width: 250px;
}

.p-feature__image img {
	height: 360px;
	width: 285px;
}

.p-feature__overlay {
	height: 335px;
	width: 250px;
}

.p-feature__item {
	padding-left: 96px;
}

.p-voice__card {
	width: 269px;
}

.p-voice__item {
	padding-left: 146px;
}

.p-news__title {
	font-size: 18px;
}

.p-news__link {
	padding-left: 165px;
}

.p-voice-section__inner {
	padding-inline: 16px;
}

.p-voice-detail__inner {
	padding-inline: 15px;
}

.p-voice-detail__title {
	font-size: 22px;
}

.p-voice-detail__figcaption {
	font-size: 14px;
}

.p-news-archive__inner {
	padding-inline: 30px;
}

.p-news-detail__inner {
	padding-inline: 30px;
}

.p-news-detail__link {
	margin-left: 0;
	padding-left: 165px;
}

.p-contact__text {
	font-size: 16px;
}

.p-contact__text-small {
	font-size: 14px;
}

}

@media (min-width: 414px) {

.p-feature-section__image--first::before {
	height: 55px;
	width: 55px;
}

.p-feature-section__image--first::after {
	bottom: -8px;
	right: 24px;
}

}

@media (min-width: 428px) {

.p-feature-section__image--first::before {
	height: 57px;
	width: 57px;
}

.p-feature-section__image--second::before {
	height: 57px;
	right: 1px;
	width: 95px;
}

.p-feature-section__image--second::after {
	height: 58px;
	left: 0;
	width: 76px;
}

}

@media (min-width: 500px) {

.p-feature-section__inner {
	padding-inline: 65px;
}

}

@media (min-width: 576px) {

.l-inner.l-inner--top-news {
	padding-inline: 30px;
}

.l-contact-slider {
	margin-inline: auto;
	max-width: 768px;
	width: 70%;
}

.l-contact-slider {
	max-width: 768px;
	width: 95%;
}

.c-section-title__ja {
	margin-left: 75px;
}

.c-loop-slider__item {
	height: 150px;
}

.c-card.c-card--voice-section {
	margin-inline: auto;
	width: 80%;
}

.c-page-header__title {
	bottom: -11px;
}

.c-page-header__en {
	font-size: 62px;
}

.p-drawer__content {
	display: grid;
	place-items: center;
}

.p-hero__mainvisual {
	padding-inline: 30px;
}

.p-service-section__inner {
	margin-inline: auto;
	width: 80%;
}

.p-feature-section__inner {
	padding-inline: 60px;
}

.p-feature-section__image {
	margin-inline: auto;
	width: 81%;
}

.p-feature-section__image--second::before {
	height: 58px;
	right: 0;
	width: 97px;
}

.p-feature-section__image--second::after {
	height: 57px;
	left: 1px;
	width: 74px;
}

.p-feature__image img {
	height: auto;
	margin-left: auto;
	margin-right: auto;
	max-width: 400px;
}

.p-news__blog {
	margin-inline: auto;
	width: 90%;
}

.p-news__link {
	margin-inline: auto;
	max-width: 340px;
}

.p-voice-section__grid::before {
	width: 75%;
}

.p-voice-section__grid::after {
	width: 75%;
}

.p-voice-detail__figcaption {
	bottom: 20px;
	font-size: 18px;
	left: 20px;
	max-width: calc(100% - 40px);
}

.p-voice-other__inner {
	padding-inline: 20px;
}

.p-news-detail__link {
	margin-inline: auto;
	max-width: 340px;
	width: 100%;
}

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

}

@media (min-width: 600px) {

.p-feature-section__inner {
	padding-inline: 91px;
}

}

@media (min-width: 700px) {

.p-feature-section__inner {
	padding-inline: 140px;
}

}

@media (min-width: 768px) {

.l-inner {
	padding-inline: 40px;
}

.l-inner.l-inner--service {
	padding-inline: 30px;
}

.l-inner.l-inner--footer {
	padding-top: 90px;
}

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

.l-inner.l-inner--feature {
	max-width: 1280px;
	padding-inline: 40px;
}

.l-footer-content {
	margin-inline: auto;
	margin-top: 119px;
	max-width: 1200px;
	padding-bottom: 149px;
}

.l-footer-content--noimg {
	margin-top: 0;
	padding-bottom: 138px;
	padding-top: 118px;
}

.l-service {
	overflow: visible;
	padding-top: 166px;
}

.l-section-divider {
	padding-top: 180px;
}

.l-lower-contact {
	margin-bottom: 120px;
	margin-top: 92px;
}

.l-lower-voice-detail {
	margin-top: 136px;
}

.c-section-title {
	gap: 4px;
}

.c-section-title.c-section-title--light .c-section-title__en {
	font-size: 76px;
	letter-spacing: -2.28px;
	line-height: 73px; /* 96.053% */
}

.c-section-title.c-section-title--dark .c-section-title__en {
	font-size: 76px;
	letter-spacing: -2.28px;
	line-height: 73px;
}

.c-section-title.c-section-title--dark .c-section-title__en.c-section-title__en--top-voice {
	margin-left: 0;
}

.c-section-title__ja {
	margin-left: 160px;
	padding-left: 30px;
}

.c-section-title__ja::before {
	left: 0;
}

.c-section-title__en.c-section-title__en--company::before {
	left: -15px;
	top: 0px;
	width: 165px;
}

.c-section-title__en.c-section-title__en--company::after {
	bottom: -2px;
	left: 103px;
	width: 170px;
}

.c-section-title__en.c-section-title__en--message::after {
	bottom: -2px;
	left: -15px;
	width: 95%;
}

.c-section-title__en.c-section-title__en--top-feature {
	margin-top: 0;
}

.c-section-title__en.c-section-title__en--top-feature::before {
	left: -13px;
	top: 1px;
	width: 184px;
}

.c-section-title__en.c-section-title__en--top-feature::after {
	bottom: -2px;
	left: 109px;
	width: 213px;
}

.c-loop-slider__item {
	height: 220px;
}

.c-slider-card__image img {
	-o-object-position: center 10%;
	object-position: center 10%;
}

.c-footer-logo {
	font-size: 32px;
}

.c-footer-address__location {
	font-size: 15px;
	letter-spacing: 0.9px;
}

.c-footer-copyright,
.c-footer-copyright__link {
	font-size: 12px;
	letter-spacing: 0.72px;
}

.c-text-wrap {
	display: flex;
	white-space: normal;
	word-spacing: 0;
}

.c-text-wrap.c-text-wrap--voice-detail {
	padding-left: 183px;
}

.c-text-wrap__letter.c-text-wrap__letter--about {
	letter-spacing: 0.96px;
}

.c-text-wrap__letter.c-text-wrap__letter--service {
	letter-spacing: 0.96px;
}

.c-text-wrap__letter.c-text-wrap__letter--feature {
	letter-spacing: 1.6px;
}

.c-text-wrap__letter.c-text-wrap__letter--top-voice {
	letter-spacing: 1.6px;
}

.c-button-line {
	width: 163px;
}

.c-button-line::before,
.c-button-line::after {
	top: 16px;
	width: 163px;
}

.c-button-line.c-button-line--service {
	left: 50px;
	width: 110px;
}

.c-button-line.c-button-line--service::before,
.c-button-line.c-button-line--service::after {
	top: 9px;
}

.c-button-line.c-button-line--feature {
	top: -6px;
	width: 163px;
}

.c-button-line.c-button-line--top-voice {
	top: -6px;
	width: 163px;
}

.c-button-line.c-button-line--top-news {
	width: 163px;
}

.c-button-line.c-button-line--voice-detail {
	left: 0;
	width: 163px;
}

.c-heading-line1 {
	top: 16px;
	width: 330px;
}

.c-heading-line1--about {
	left: -40px;
}

.c-heading-line1--service {
	left: -2px;
	top: 4px;
	width: 195px;
}

.c-heading-line1--feature1 {
	left: -18px;
	top: 40px;
	width: 78px;
}

.c-heading-line1--feature2 {
	left: -15px;
	top: 39px;
	width: 78px;
}

.c-heading-line2--about {
	left: 154px;
	top: 90px;
	width: 466px;
}

.c-heading-line2--service {
	left: 106px;
	top: 48px;
	width: 195px;
}

.c-heading-line2--feature1 {
	left: 34px;
	top: 62px;
	width: 57px;
}

.c-heading-line2--feature2 {
	left: 73px;
	top: 62px;
	width: 65px;
}

.c-heading-line3--about {
	left: -40px;
	top: 123px;
	width: 556px;
}

.c-heading-line3--feature1 {
	left: -10px;
	top: 73px;
	width: 138px;
}

.c-heading-line3--feature2 {
	left: 11px;
	top: 74px;
	width: 89px;
}

.c-heading-line4--about {
	left: 280px;
	top: 195px;
	width: 460px;
}

.c-heading-line4--feature1 {
	left: 104px;
	top: 98px;
	width: 155px;
}

.c-heading-line4--feature2 {
	left: 80px;
	top: 97px;
	width: 90px;
}

.c-card {
	margin-right: 40px;
	margin-top: 60px;
}

.c-card:nth-child(3) {
	margin-top: 120px;
}

.c-card::before {
	top: -60px;
	width: 100%;
}

.c-card::after {
	height: calc(100% + 105px);
	right: 0;
	top: -60px;
}

.c-card.c-card--top-voice:nth-child(3) {
	margin-top: 60px;
}

.c-card.c-card--top-voice::after {
	height: calc(100% + 100px);
	right: -30px;
	top: -62px;
}

.c-card.c-card--voice-section {
	margin-bottom: -5px;
	margin-left: 0;
	margin-right: 20px;
	margin-top: 60px;
	width: auto;
}

.c-card.c-card--voice-section.c-card--voice-section:nth-child(3n-1)::before {
	display: none;
}

.c-card.c-card--voice-section::before {
	display: none;
}

.c-card.c-card--voice-detail {
	margin-right: 0;
	margin-top: 0;
}

.c-card.c-card--voice-detail:nth-child(3) {
	margin-top: 0;
}

.c-card__article {
	padding-left: 30px;
	padding-right: 40px;
}

.c-card__article::before {
	display: none;
}

.c-card__article.c-card__article--voice-other {
	padding-inline: 50px;
}

.c-card__article.c-card__article--page-feature::before {
	display: block;
}

.c-card__image {
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.c-card__image img { /*
    * デザインカンプの寸法に合わせた縦横比: 360px × 390px
    * 標準的な 12/13 より少し高さが必要なため 12/13.1 を使用
    */
	aspect-ratio: 12/13.1;
	transition: transform 0.6s ease;
}

.c-card__content {
	gap: 8px;
	margin-top: 41px;
}

.c-card__title {
	font-size: 20px;
	letter-spacing: 1.68px;
	line-height: 20px; /* 78.571% */
}

.c-card__link {
	margin-top: 21px;
}

.c-swiper__wrapper {
	display: flex;
	flex-wrap: wrap;
	transform: none;
}

.c-page-header__container {
	height: 40vh;
	margin-top: -92px;
}

.c-page-header__image--voice {
	-o-object-position: center center;
	object-position: center center;
}

.c-page-header__title {
	bottom: -14px;
	gap: 0;
	left: 50px;
}

.c-page-header__ja {
	font-size: 20px;
	padding-left: 12px;
}

.c-page-header__ja::before {
	left: -108px;
}

.c-page-header__en {
	font-size: 105px;
	letter-spacing: -3.8px;
	line-height: 105px; /* 55.263% */
	text-overflow: ellipsis;
	white-space: nowrap;
}

.c-page-header--noimg .c-page-header__container {
	height: 40vh;
	margin-top: -138px;
}

.c-page-header--noimg .c-page-header__title {
	bottom: -20px;
	gap: 0;
}

.c-page-header--noimg .c-page-header__en {
	font-size: 90px;
}

.c-btn-top {
	font-size: 20px;
	padding: 10px 53px 10px 54px;
}

.c-btn-contact {
	font-size: 20px;
}

.c-btn-outline {
	font-size: 20px;
	padding: 10px 53px 10px 54px;
}

.p-header__logo svg {
	height: 22.008px;
	width: 165.984px;
}

.p-header__nav {
	margin-right: 37px;
}

.p-header__link {
	display: inline-flex;
	flex-direction: column;
	mix-blend-mode: difference;
	overflow: hidden;
	padding-bottom: 6px;
	position: relative;
}

.p-header__link::after {
	background-color: #FFFFFF;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transition: none;
	width: 0;
}

.p-header__icon {
	gap: 12px;
}

.p-header__contact svg {
	height: 58px;
	transition: all 0.4s ease 0s;
	width: 58px;
}

.p-drawer__header {
	padding: 17px 30px 0 60px;
}

.p-drawer__logo svg {
	height: 22.008px;
	width: 165.984px;
}

.p-drawer__close {
	height: 58px;
	width: 58px;
}

.p-drawer__close-line {
	height: 1px;
	width: 24.9px;
}

.p-drawer__content {
	display: block;
	flex: 0;
	margin-inline: auto;
	min-width: 480px;
	width: 100%;
}

.p-drawer__nav {
	margin-inline: auto;
	margin-top: 139px;
	width: 480px;
}

.p-drawer__item {
	display: grid;
	grid-template-columns: 181px 293px;
	margin-bottom: 49px;
}

.p-drawer__item:last-child {
	margin-bottom: 26px;
}

.p-drawer__item:nth-child(2) .p-drawer__link::after,
.p-drawer__item:nth-child(2) .p-drawer__link::before {
	top: 87px;
}

.p-drawer__item:nth-child(3) .p-drawer__link::after,
.p-drawer__item:nth-child(3) .p-drawer__link::before {
	top: 90px;
}

.p-drawer__link {
	color: #FFFFFF;
	font-size: 17px;
	letter-spacing: 1.02px;
}

.p-drawer__link::before,
.p-drawer__link:after {
	top: 52px;
	transition: transform 0.3s ease, opacity 0.3s ease;
	width: 480px;
}

.p-drawer__link::after {
	opacity: 0;
	transform: scaleX(0);
	transform-origin: left;
}

.p-drawer__submenu {
	grid-template-columns: 120px 172px;
	grid-row-gap: 17px;
}

.p-drawer__submenu-item::before {
	left: -15px;
	top: 12px;
}

.p-drawer__submenu-link {
	color: #FFFFFF;
	font-size: 15px;
	letter-spacing: 0.9px;
}

.p-drawer__bg {
	background-color: #303030;
	height: 100%;
	left: 0;
	opacity: 0.14;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}

.p-drawer__image {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.p-drawer__image.active {
	opacity: 1;
}

.p-hamburger {
	height: 58px;
	width: 58px;
}

.p-hamburger.is-checked .p-hamburger__line:nth-child(1),
.p-hamburger.is-checked .p-hamburger__line:nth-child(2) {
	top: 28px; /* PC用の位置調整 */
}

.p-hamburger.is-checked .p-hamburger__line:nth-child(1) {
	width: 24.9px; /* PC用の幅を統一 */
}

.p-hamburger.is-checked .p-hamburger__line:nth-child(2) {
	width: 24.9px; /* PC用の幅を統一 */
}

.p-hamburger__line {
	height: 1px;
	width: 24.9px;
}

.p-hamburger__line:nth-child(1) {
	top: 25px;
}

.p-hamburger__line:nth-child(2) {
	left: 32px;
	top: 32px;
	width: 17.4px;
}

.p-contact-slider__heading {
	padding-left: 0;
}

.p-footer-content {
	flex-direction: row;
	justify-content: space-between;
}

.p-footer-content__container {
	display: block;
}

.p-footer-content__title {
	margin-top: -7px;
}

.p-footer-content__info {
	margin-top: 53px;
}

.p-footer-content__copyright {
	margin-top: 13px;
	text-align: left;
}

.p-footer-content__menu {
	padding-top: 0;
}

.p-footer-menu {
	flex-direction: row;
	gap: 8px;
}

.p-footer-menu__title::before {
	width: 0;
}

.p-footer-menu__title--contact::after {
	width: 0;
}

.p-footer-menu__title--large {
	padding-top: 0;
}

.p-footer-menu__title {
	letter-spacing: 0.96px;
	padding-top: 0;
}

.p-footer-menu__title + .p-footer-menu__title {
	margin-top: 20px;
}

.p-footer-menu__title[data-spacing=large] {
	margin-top: 30px;
}

.p-footer-menu__list {
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin-top: 15px;
}

.p-footer-menu__item {
	padding-left: 0;
}

.p-footer-menu__item::before {
	left: 0px;
	top: 12px;
}

.p-footer-menu__link {
	padding-left: 15px;
}

.p-hero {
	padding-top: 82px;
}

.p-hero__inner {
	padding-right: 30px;
}

.p-hero__wrapper {
	padding-left: 78px;
}

.p-hero__content {
	gap: 46px;
}

.p-hero__title {
	font-size: 75px;
	letter-spacing: -6.55px;
	line-height: 70px; /* 53.435% */
}

.p-hero__subtitle {
	font-size: 18px;
	letter-spacing: 1.26px;
	line-height: 32px;
	padding-left: 13px;
}

.p-hero__subtitle span {
	padding-left: 0;
}

.p-hero__subtitle span:first-child {
	margin-right: 11px;
}

.p-hero__scroll-btn {
	right: 90px;
	top: 196px;
}

.p-hero__scroll-icon {
	height: 120px;
	width: 120px;
}

.p-hero__mainvisual {
	margin-top: 55px;
	padding-inline: 0;
	width: 96%;
}

.p-hero__ornament {
	right: -60px;
	top: -60px;
}

.p-hero__ornament img {
	height: 150px;
	width: 120px;
}

.p-about {
	padding-top: 102px;
}

.p-about__inner {
	padding-left: 20px;
	padding-right: 50px;
}

.p-about__heading {
	padding-left: 0;
}

.p-about__heading-en {
	font-size: 98px;
	font-weight: 250;
	letter-spacing: -5.5px;
	line-height: 105px;
}

.p-about__wrapper {
	flex-direction: row;
	justify-content: space-between;
	margin-top: 70px;
}

.p-about__container { /*
    最初の0：flex-growが0なので、余白があっても伸びない
    2つ目の0：flex-shrinkが0なので、スペースが足りなくても縮まない
    auto：flex-basisが自動で、widthプロパティを尊重する
    */
	flex: 0 0 auto;
	width: 55%;
}

.p-about__heading-ja {
	font-size: 24px;
	margin-left: 0;
}

.p-about__text {
	font-size: 14px;
	gap: 24px;
	margin-top: 45px;
}

.p-about__item {
	margin-left: 20px;
	margin-top: 81px;
	padding-left: 183px;
}

.p-about__content {
	flex: 0 0 auto;
	margin-top: 7px;
	min-height: 420px;
	position: relative;
	width: 46%;
}

.p-about__image {
	display: block;
	position: relative;
	z-index: 1;
}

.p-about__ornament {
	display: block;
	display: grid;
	grid-template-areas: "main";
	overflow-x: hidden;
}

.p-about__ornament-right img {
	height: 100px;
	width: 80px;
}

.p-about__ornament-right {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	transform: translate(40px, -40px);
}

.p-about__ornament-left img {
	height: 60px;
	width: 60px;
}

.p-about__ornament-left {
	align-self: end;
	content: "";
	grid-area: main;
	justify-self: start;
	margin: 0 0 -40px -20px;
	position: absolute;
}

.p-scroll-text--drawer {
	bottom: 40px;
	height: 100px;
	left: 0;
	mix-blend-mode: difference;
	position: absolute;
	z-index: 1;
}

.p-scroll-text--section-divider {
	height: 150px;
}

.p-scroll-text--rtl {
	height: 167px;
}

.p-scroll-text__wrapper {
	display: flex;
}

.p-scroll-text__content--drawer {
	animation: loop 20s linear infinite;
	color: #FFFFFF;
	font-size: 170px;
	font-weight: 100;
	letter-spacing: -8.5px;
	line-height: 1;
	opacity: 0.4;
}

.p-scroll-text__content--drawer span {
	padding-right: 50px; /* テキスト間の間隔 */
}

.p-scroll-text__content--section-divider {
	font-size: 248px;
	font-weight: 200;
	letter-spacing: -5px;
	line-height: 140px;
}

.p-scroll-text__content--rtl {
	font-size: 248px;
	font-weight: 200;
	letter-spacing: -5px;
	line-height: 140px;
}

.p-service__heading {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin-inline: 30px;
	position: relative;
}

.p-service__item {
	display: flex;
	margin-left: auto;
	padding-left: 182px;
	position: relative;
}

.p-service__container {
	padding-top: 76px;
}

.p-service__cards {
	margin-inline: 0;
}

.p-service__card {
	margin-right: 20px;
	width: 47%;
}

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

.p-service__ornament {
	right: -2px;
	top: -5px;
}

.p-feature-section__inner {
	padding-inline: 30px;
}

.p-feature-section__content-block {
	margin-inline: auto;
	max-width: 570px;
	width: 90%;
}

.p-feature-section__image--first::before {
	height: 90px;
	left: 3px;
	width: 90px;
}

.p-feature-section__image--first::after {
	bottom: -24px;
	height: 120px;
	right: 30px;
	width: 90px;
}

.p-feature-section__image--second::before {
	height: 90px;
	width: 150px;
}

.p-feature-section__image--second::after {
	height: 90px;
	width: 120px;
}

.p-about-section__heading {
	padding-left: 35px;
}

.p-about-section__container {
	flex-direction: row;
	flex-wrap: wrap;
	gap: 0;
}

.p-about-section__image {
	margin-inline: auto;
	max-width: 720px;
	width: 100%;
}

.p-about-section__content-block {
	margin-inline: auto;
	max-width: 510px;
	width: 100%;
}

.p-about-section__text {
	font-size: 16px;
	line-height: 32px;
}

.p-error {
	padding: 120px 0;
}

.p-error__title {
	font-size: 48px;
}

.p-error__message {
	font-size: 24px;
}

.p-contact-complete {
	padding: 120px 0;
}

.p-contact-complete__title {
	font-size: 32px;
}

.p-privacy {
	margin-bottom: 114px;
	margin-top: 109px;
}

.p-privacy__content {
	gap: 42.6px;
}

.p-company-section__row {
	flex-direction: row;
	padding-bottom: 29px;
	padding-top: 29px;
}

.p-company-section__term {
	letter-spacing: 1.6px;
	line-height: 32px;
	width: 24%;
}

.p-company-section__description {
	letter-spacing: 1.6px;
	line-height: 32px;
	margin-left: -32px;
	margin-top: 0;
	width: 76%;
}

.p-company-section__description-list {
	font-size: 16px;
	letter-spacing: 1.6px;
	line-height: 33px; /* 206.25% */
}

.p-access-section__inner {
	padding-inline: 0;
}

.p-access-section__container {
	align-items: normal;
	flex-direction: row;
	gap: 0;
	height: 100%;
	justify-content: space-between;
	max-height: 510px;
}

.p-access-section__content {
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: center;
	margin-inline: auto;
	max-width: 303px;
	width: 21.0416666667%;
}

.p-access-section__postcode {
	letter-spacing: 1.4px;
	line-height: 28px;
}

.p-access-section__address {
	letter-spacing: 1.4px;
	line-height: 28px;
}

.p-access-section__map {
	width: 60.4166666667%;
}

.p-access-section__map iframe {
	aspect-ratio: 870/510;
}

.p-feature {
	overflow: visible;
	padding-bottom: 190px;
	padding-top: 35px;
}

.p-feature::before {
	left: 0;
}

.p-feature__decoration.p-feature__decoration--top-right {
	height: 120px;
	right: 40px;
	top: 60px;
	width: 120px;
}

.p-feature__decoration.p-feature__decoration--bottom-left {
	bottom: 70px;
	height: 90px;
	left: 50px;
	width: 90px;
}

.p-feature__heading {
	margin-top: 0;
}

.p-feature__container {
	margin-inline: auto;
	margin-top: 88px;
	max-width: 800px;
}

.p-feature__image-container {
	margin-inline: auto;
	max-width: 100%;
	width: -moz-fit-content;
	width: fit-content;
	width: 60%;
}

.p-feature__background-image {
	margin-left: 2px;
}

.p-feature__background-image img {
	height: 483px;
	width: 360px;
}

.p-feature__image img {
	height: 100%;
	margin-left: 0;
	margin-right: 0;
	width: 100%;
}

.p-feature__overlay {
	height: 483px;
	width: 360px;
}

.p-feature__lead-text {
	font-size: 40px;
	line-height: 48px;
	margin-top: 30px;
}

.p-feature__text {
	margin-top: 40px;
}

.p-feature__item {
	margin-top: 42px;
	padding-left: 182px;
}

.p-feature__scroll-text {
	top: 347px;
}

.p-news__heading {
	padding-left: 60px;
}

.p-news__blog {
	width: 80%;
}

.p-news__link {
	padding-left: 185px;
}

.p-voice-section {
	padding-bottom: 94px;
	padding-top: 88px;
}

.p-voice-section__inner {
	margin-inline: auto;
	max-width: 1440px;
	padding-inline: 30px;
}

.p-voice-section__grid {
	grid-template-columns: repeat(2, 1fr);
}

.p-voice-section__grid::before {
	left: 0;
	transform: none;
	width: 100%;
}

.p-voice-section__grid::after {
	bottom: -30px;
	left: 0;
	transform: none;
	width: 100%;
}

.p-voice-section__content {
	margin-top: 29px;
}

.p-voice-section__link {
	margin-top: 26px;
}

.p-voice-section__pagination {
	margin-top: 66px;
}

.p-voice-detail {
	padding-bottom: 125px;
}

.p-voice-detail p {
	font-size: 16px;
}

.p-voice-detail__inner {
	margin-inline: auto;
	max-width: 880px;
	padding-inline: 40px;
}

.p-voice-detail__title {
	font-size: 32px;
}

.p-voice-detail__figcaption {
	bottom: 30px;
	font-size: 22px;
	left: 28px;
	width: calc(100% - 58px);
}

.p-voice-detail__link {
	margin-top: 110px;
}

.p-voice-other__grid {
	grid-template-columns: repeat(2, 1fr);
	margin-top: 73px;
}

.p-voice-other__grid::before {
	top: -30px;
}

.p-voice-other__grid::after {
	background-color: #1D1D1D;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	opacity: 0.2;
	position: absolute;
	width: 100%;
}

.p-news-archive {
	padding-bottom: 155px;
	padding-top: 148px;
}

.p-news-archive__inner {
	padding-inline: 40px;
}

.p-news-archive__sidebar {
	margin-inline: auto;
	width: 80%;
}

.p-news-archive__pagination {
	margin-top: 65px;
}

.p-news-detail {
	padding-bottom: 110px;
	padding-top: 67px;
}

.p-news-detail p {
	font-size: 16px;
	margin-bottom: 40px;
}

.p-news-detail__inner {
	margin-inline: auto;
	padding-inline: 40px;
	width: 95%;
}

.p-news-detail__title {
	font-size: 32px;
	line-height: 1.8;
	margin-bottom: 60px;
	margin-top: 10px;
	padding-bottom: 15px;
}

.p-news-detail__body {
	margin-top: 61px;
}

.p-news-detail__body h2 {
	font-size: 28px;
}

.p-news-detail__body h3 {
	font-size: 24px;
}

.p-news-detail__body h4 {
	font-size: 22px;
}

.p-news-detail__body h5 {
	font-size: 20px;
}

.p-news-detail__body h6 {
	font-size: 18px;
}

.p-news-detail__sidebar {
	position: sticky;
	top: 110px;
}

.p-news-detail__link {
	padding-left: 185px;
}

.p-news-detail__custom-gallery-layout {
	margin: 0 auto; /* 中央揃え */
	max-width: 800px;
	padding: 0;
}

.p-news-detail__image-wrapper {
	width: auto;
}

.p-news-detail__gallery-row-1,
.p-news-detail__gallery-row-2,
.p-news-detail__gallery-row-3 {
	margin-bottom: 30px; /* 段と段の間の余白 */
}

.p-news-detail__gallery-row-1 img {
	height: 500px;
	width: 800px;
}

.p-news-detail__gallery-row-2 {
	flex-direction: row;
	gap: 30px; /* 画像間の余白 */
	justify-content: center; /* 中央揃え */
}

.p-news-detail__gallery-row-2 img {
	height: 240px;
	width: 390px;
}

.p-news-detail__gallery-row-3 {
	flex-direction: row;
	gap: 21px; /* 画像間の余白 */
	justify-content: center; /* 中央揃え */
}

.p-news-detail__gallery-row-3 img {
	height: 158px;
	width: 256px;
}

.p-contact__text-small {
	line-height: 2.5;
}

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

.form-checkbox-text,
.wpcf7-list-item-label {
	padding-left: 34px;
}

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

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

}

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

.p-header__link:hover::after {
	transition: width 0.4s ease;
	transition-delay: 0.2s;
	width: 100%;
}

.p-header__link:hover .c-text-wrap__letter {
	text-shadow: 0 -1.4em 0 #FFFFFF, 0 0 0 #FFFFFF;
	transition: text-shadow 0.4s;
	transition-delay: calc(var(--index) * 0.05s);
}

.p-header__link:not(:hover)::after {
	transition: width 0.4s ease;
	width: 0;
}

.p-header__contact svg:hover {
	fill: #FFFFFF;
}

.p-header__contact svg:hover circle {
	stroke: #000;
}

.p-header__contact svg:hover rect,
.p-header__contact svg:hover path {
	stroke: #000;
}

}

@media (min-width: 790px) {

.p-feature-section__image {
	width: 76%;
}

}

@media (min-width: 880px) {

.p-feature-section__image {
	width: 69%;
}

}

@media (min-width: 940px) {

.p-feature-section__image {
	width: 62%;
}

}

@media (min-width: 992px) {

html {
	scroll-padding-top: 104px;
}

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

.l-inner.l-inner--feature {
	max-width: 950px;
	padding-inline: 40px;
}

.l-inner.l-inner--top-voice {
	padding-inline: 30px;
}

.l-contact-slider {
	height: 540px;
	margin-inline: auto;
	max-width: 1320px;
	padding-bottom: 0;
	padding-top: 0;
	width: 100%;
}

.l-feature {
	padding-top: 44px;
}

.l-voice {
	margin-top: -24px;
	overflow: visible;
}

.l-news {
	padding-bottom: 88px;
	padding-top: 109px;
}

.c-section-title {
	gap: 0;
}

.c-section-title.c-section-title--dark .c-section-title__en.c-section-title__en--top-voice {
	font-size: 70px;
}

.c-section-title__ja {
	margin-left: 0;
}

.c-section-title__ja.c-section-title__ja--contact::before {
	left: 0;
}

.c-section-title__en {
	font-size: 75px;
	font-weight: 250;
	letter-spacing: -5.5px;
	line-height: 105px; /* 95.455% */
}

.c-section-title__en.c-section-title__en--company::before {
	left: -28px;
	top: 27px;
	width: 212px;
}

.c-section-title__en.c-section-title__en--company::after {
	bottom: 24px;
	left: 120px;
	width: 180px;
}

.c-section-title__en.c-section-title__en--access::before {
	left: -25px;
	top: 28px;
	width: 140px;
}

.c-section-title__en.c-section-title__en--access::after {
	bottom: 25px;
	left: 80px;
	width: 153px;
}

.c-section-title__en.c-section-title__en--message::after {
	bottom: 25px;
	left: -43px;
	width: 80%;
}

.c-section-title__en.c-section-title__en--top-feature::before {
	left: -15px;
	top: 28px;
	width: 210px;
}

.c-section-title__en.c-section-title__en--top-feature::after {
	bottom: 25px;
	left: 125px;
	width: 250px;
}

.c-section-title__en.c-section-title__en--top-news {
	font-size: 76px;
	letter-spacing: -2.28px;
	line-height: 73px;
}

.c-section-title__en.c-section-title__en--contact {
	font-size: 80px;
	font-weight: 250;
	letter-spacing: -5.5px;
	line-height: 102px;
}

.c-contact-text {
	font-weight: 400;
	letter-spacing: 3.9px;
	line-height: 32px;
	text-align: left;
}

.c-loop-slider {
	display: flex;
	flex-direction: row; /* PC版では横並び */
	height: 700px;
}

.c-loop-slider__swiper {
	height: 100%; /* 親要素の高さいっぱいに */
	margin-left: 0;
	margin-right: 0;
	width: calc((100% - 30px) / 2);
}

.c-loop-slider__swiper + .c-loop-slider__swiper {
	margin-left: 30px;
	margin-top: 0;
}

.c-loop-slider__container {
	height: auto;
}

.c-loop-slider__wrapper {
	display: flex;
	flex-direction: column;
}

.c-loop-slider__item {
	height: auto;
	margin-bottom: 15px;
	margin-right: 0;
}

.c-slider-card__image img {
	border-radius: 10px;
}

.c-text-wrap__letter.c-text-wrap__letter--service {
	letter-spacing: 3.65px;
}

.c-text-wrap__letter.c-text-wrap__letter--top-news {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 1.6px;
	line-height: 32px;
}

.c-text-wrap__letter.c-text-wrap__letter--voice-detail {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 1.6px;
	line-height: 32px;
}

.c-button-line.c-button-line--service {
	left: 0;
	width: 163px;
}

.c-button-line.c-button-line--top-news {
	top: 0;
}

.c-heading-line1--service {
	left: -18px;
	top: 26px;
}

.c-heading-line1--feature1 {
	left: -22px;
	top: 50px;
	width: 114px;
}

.c-heading-line1--feature2 {
	left: -22px;
	top: 50px;
	width: 119px;
}

.c-heading-line2--service {
	left: 123px;
	top: 80px;
	width: 220px;
}

.c-heading-line2--feature1 {
	left: 51px;
	top: 89px;
	width: 96px;
}

.c-heading-line2--feature2 {
	left: 121px;
	top: 89px;
	width: 108px;
}

.c-heading-line3--feature1 {
	top: 103px;
	width: 230px;
}

.c-heading-line3--feature2 {
	top: 103px;
	width: 161px;
}

.c-heading-line4--feature1 {
	left: 174px;
	top: 140px;
	width: 233px;
}

.c-heading-line4--feature2 {
	left: 137px;
	top: 140px;
	width: 146px;
}

.c-card:nth-child(2) {
	margin-top: 90px;
}

.c-card::before {
	left: -30px;
	top: -60px;
	width: calc(100% + 41px);
}

.c-card::after {
	height: calc(100% + 165px);
	right: -11px;
}

.c-card.c-card--top-voice:nth-child(2) {
	margin-top: 60px;
}

.c-card.c-card--top-voice::after {
	height: 630px;
	right: -60px;
	top: -60px;
}

.c-card.c-card--voice-section.c-card--voice-section:nth-child(3n-1) {
	margin-left: 22px;
	margin-right: -2px;
	margin-top: 89px;
}

.c-card.c-card--voice-section.c-card--voice-section:nth-child(3n-1)::before {
	display: block;
	left: -31px;
	width: calc(100% + 41px);
}

.c-card.c-card--voice-section.c-card--voice-section:first-child::before {
	display: block;
}

.c-card.c-card--voice-section.c-card--voice-section:nth-child(3n) {
	margin-left: 40px;
	margin-right: -20px;
	margin-top: 120px;
}

.c-card.c-card--voice-section::before {
	display: block;
	left: -28px;
	width: calc(100% + 10px);
}

.c-card.c-card--voice-section::after {
	display: block;
	right: -10px;
}

.c-card.c-card--voice-detail::after {
	display: block;
	height: calc(100% - 8px);
	right: 0;
	top: 8px;
}

.c-card.c-card--voice-detail:nth-child(2) {
	margin-top: 0;
}

.c-swiper__wrapper {
	flex-wrap: nowrap;
	max-width: 100%;
	overflow: hidden;
}

.c-swiper__wrapper.c-swiper__wrapper--top-service {
	overflow: visible;
}

.c-swiper__wrapper.c-swiper__wrapper--page-feature {
	flex-wrap: wrap;
}

.c-swiper__wrapper.c-swiper__wrapper--top-feature {
	overflow: visible;
}

.c-swiper__wrapper.c-swiper__wrapper--top-voice {
	overflow: visible;
}

.c-page-header__container {
	height: 100%;
	margin-top: -110px;
}

.c-page-header__title {
	bottom: 4px;
	gap: 20px;
	left: 60px;
}

.c-page-header__title--voice {
	bottom: -2px;
	gap: 20px;
	left: 60px;
}

.c-page-header__en {
	font-size: 150px;
}

.c-page-header__en--voice {
	font-size: 140px;
}

.c-page-header--noimg .c-page-header__container {
	height: 100%;
	margin-top: -138px;
	min-height: 34vh;
}

.c-page-header--noimg .c-page-header__title {
	bottom: -5px;
	gap: 3px;
}

.c-page-header--noimg .c-page-header__en {
	font-size: 130px;
}

.c-step-shape {
	background-color: #EFEFEF;
	clip-path: polygon(0 0, 33.33vw 0, 33.33vw 2.08vw, 66.67vw 2.08vw, 66.67vw 4.17vw, 0 4.17vw);
	height: 6.94vw;
	left: 0;
	opacity: 0.25;
	position: relative;
	top: -4.17vw;
	width: 66.67vw;
}

.c-step-shape.c-step-shape--top-voice {
	background-color: #303030;
	opacity: 1;
	top: -4.03vw;
}

.p-header__inner {
	padding: 16px 25px 30px;
}

.p-drawer {
	height: 806px;
}

.p-drawer__container {
	display: flex;
	height: 806px;
	justify-content: flex-end;
}

.p-drawer__content {
	flex: 0 0 40%;
	margin-inline: auto;
	max-width: 40%;
	min-width: 480px;
	padding-inline: 0;
	position: relative;
	width: 100%;
	z-index: 2;
}

.p-drawer__image-container {
	display: block;
	flex: 0 0 40%;
	height: 806px;
	max-width: 40%;
	overflow: hidden;
	position: relative;
}

.p-contact-slider {
	flex-direction: row;
	gap: 40px;
}

.p-contact-slider__container {
	padding-top: 107px;
	width: 41.452991453%;
}

.p-contact-slider__wrapper {
	margin-top: 0;
	width: 48.7179487179%;
}

.p-contact-slider__text {
	margin-top: 38px;
}

.p-contact-slider__button {
	margin-top: 31px;
	text-align: left;
}

.p-footer-menu {
	flex-direction: row;
	gap: 35px;
}

.p-hero__title {
	font-size: 105px;
}

.p-about__inner {
	padding-left: 30px;
	padding-right: 60px;
}

.p-about__heading {
	padding-left: 10px;
}

.p-about__heading-en {
	font-size: 110px;
}

.p-about__heading-ja {
	font-size: 32px;
}

.p-about__text {
	font-size: 16px;
	gap: 32px;
	padding-left: 20px;
}

.p-about__content {
	flex: none;
	width: 47%;
}

.p-scroll-text {
	display: flex;
	white-space: nowrap;
}

.p-service__heading {
	display: flex;
	flex-direction: row;
	gap: 85px;
	justify-content: space-around;
	margin-inline: 0;
	position: relative;
}

.p-service__item {
	display: flex;
	margin-left: 0;
	margin-top: 95px;
	padding-left: 182px;
}

.p-service__card {
	margin-right: 40px;
	width: calc((100% - 60px) / 3);
}

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

.p-service-section {
	margin-block: 118px;
}

.p-service-section__inner {
	margin-inline: 0;
	padding-inline: 0;
	width: auto;
}

.p-service-section__container {
	flex-direction: row;
	justify-content: space-between;
	margin-inline: auto;
	max-width: 1440px;
	padding-block: 0;
	width: 100%;
}

.p-service-section__container--reverse {
	flex-direction: row-reverse;
}

.p-service-section__container::before {
	width: 95%;
}

.p-service-section__container:last-child::after {
	width: 95%;
}

.p-service-section__content-block {
	padding: 26px 8px 0px 47px;
	width: 52%;
}

.p-service-section__content-block--first::before {
	background-image: url("../img/service-page-square1.svg");
	background-size: contain;
	content: "";
	display: block;
	height: 45px;
	left: 0;
	position: absolute;
	top: -15px;
	width: 45px;
}

.p-service-section__heading {
	gap: 28px;
}

.p-service-section__number {
	font-size: 73px;
	letter-spacing: 6.468px;
	line-height: 1;
}

.p-service-section__number--second {
	letter-spacing: -3.532px;
}

.p-service-section__number--third {
	letter-spacing: -2.532px;
}

.p-service-section__ja {
	font-size: 26px;
	line-height: 42px;
}

.p-service-section__en {
	font-family: "Outfit", sans-serif;
	font-size: 14px;
	line-height: 28px;
}

.p-service-section__item {
	font-size: 15px;
	letter-spacing: 1.8px;
	line-height: 32px;
	padding-top: 22px;
}

.p-service-section__item::after {
	top: 62px;
}

.p-service-section__ornament {
	right: 14px;
	top: 32px;
}

.p-service-section__text {
	font-size: 14px;
	letter-spacing: 0.56px;
	line-height: 30px;
	margin-top: 25px;
}

.p-service-section__image img {
	aspect-ratio: auto;
}

.p-service-section__image {
	width: 48%;
}

.p-service-section__image--first::before {
	display: none;
}

.p-service-section__image--first::after {
	bottom: -30px;
	height: 45px;
	right: 0;
	width: 45px;
}

.p-service-section__image--second::after {
	bottom: -45px;
	height: 45px;
	left: -15px;
	width: 60px;
}

.p-service-section__image--third::after {
	bottom: -15px;
	height: 45px;
	right: 0;
	width: 60px;
}

.p-feature-section {
	max-width: 1182px;
	padding: 90px 20px 84px 45px;
}

.p-feature-section--reverse {
	max-width: 1140px;
	padding: 121px 55px 118px 30px;
}

.p-feature-section__inner {
	padding-inline: 0;
}

.p-feature-section__container {
	flex-direction: row;
	gap: 0;
	justify-content: space-between;
}

.p-feature-section__container--reverse {
	flex-direction: row-reverse;
}

.p-feature-section__content-block {
	margin-inline: 0;
	max-width: none;
	padding-left: 6px;
	padding-top: 25px;
	width: 42%;
}

.p-feature-section__content-block--reverse {
	padding-left: 17px;
	padding-top: 30px;
	width: 43.5%;
}

.p-feature-section__title {
	gap: 15px;
}

.p-feature-section__en {
	font-size: 18px;
	letter-spacing: -0.36px;
	line-height: 25px; /* 138.889% */
}

.p-feature-section__ja {
	font-size: 42px;
	line-height: 54px;
}

.p-feature-section__content {
	margin-top: 22px;
}

.p-feature-section__text {
	letter-spacing: 1.6px;
	line-height: 32px;
}

.p-feature-section__image {
	margin-inline: 0;
	width: 51.5%;
}

.p-feature-section__image--first::before {
	height: 77px;
	width: 77px;
}

.p-feature-section__image--first::after {
	bottom: -20px;
	height: 108px;
	right: 26px;
	width: 81px;
}

.p-feature-section__image--second {
	width: 50%;
}

.p-feature-section__image--second::before {
	height: 74px;
	width: 123px;
}

.p-feature-section__image--second::after {
	bottom: 28px;
	height: 81px;
	left: -5px;
	width: 107px;
}

.p-about-section {
	margin-top: 105px;
}

.p-about-section__inner {
	padding-inline: 0;
}

.p-about-section__heading {
	padding-left: 100px;
}

.p-about-section__container {
	flex-direction: row;
	flex-wrap: wrap;
	gap: 55px;
	margin-top: -26px;
}

.p-about-section__content-block {
	flex: 0 0 50%;
	max-width: none;
}

.p-about-section__content-block::before {
	left: 185px;
	top: 30px;
	width: calc(100% + 40px);
}

.p-about-section__content-block::after {
	left: -86px;
	max-width: 720px;
	transform: none;
	width: calc(100% + 90px);
}

.p-about-section__ornament-right {
	height: 120px;
	left: calc(100% - 78px);
	top: 0;
	width: 120px;
}

.p-about-section__ornament-left {
	height: 90px;
	left: -120px;
	width: 90px;
}

.p-about-section__heading-en {
	font-size: 32px;
	line-height: 52px;
}

.p-about-section__text {
	font-weight: 500;
	padding-top: 34px;
}

.p-about-section__signature {
	gap: 20px;
	padding-right: 11px;
	padding-top: 32px;
}

.p-about-section__signature-text {
	font-size: 14px;
	letter-spacing: 1.4px;
	line-height: 32px;
}

.p-values-section__image {
	height: auto;
}

.p-values-section__image img {
	height: auto;
	-o-object-position: 0% center;
	object-position: 0% center;
}

.p-values-section__ornament {
	display: block;
}

.p-values-section__ornament-right {
	top: -20px;
	width: min(720px, 50.8%);
}

.p-values-section__ornament-left {
	width: min(720px, 50%);
}

.p-values-section__right {
	bottom: 70px;
	gap: 1px;
	right: 50px;
	width: 400px;
}

.p-values-section__big-title {
	font-size: 160px;
	letter-spacing: -8px;
	line-height: 90px;
}

.p-values-section__big-title::after {
	height: 100vh;
	left: 96px;
	top: 0;
}

.p-values-section__lead {
	font-size: 18px;
	letter-spacing: 0.8px;
	line-height: 1.6;
}

.p-values-section__text1 {
	padding: 6px 3px 6px 13px;
}

.p-values-section__text2 {
	margin-left: 35px;
	padding: 6px 3px 7px 13px;
}

.p-values-section__text3 {
	margin-left: 115px;
	padding: 7px 3px 6px 13px;
}

.p-company-section {
	margin-top: 115px;
}

.p-company-section__container {
	flex-direction: row;
	justify-content: center;
}

.p-company-section__heading {
	width: 36.6500829187%;
}

.p-company-section__content {
	margin-top: 42px;
	width: 52.2388059701%;
}

.p-access-section {
	margin-top: 118px;
}

.p-access-section__map {
	margin: 0;
	width: 60%;
}

.p-feature {
	padding-bottom: 277px;
	padding-top: 0;
}

.p-feature__decoration.p-feature__decoration--top-right {
	right: 90px;
	top: 182px;
}

.p-feature__decoration.p-feature__decoration--bottom-left {
	bottom: 171px;
	left: 91px;
}

.p-feature__heading {
	margin-top: -20px;
}

.p-feature__container {
	grid-template-columns: 410px 1fr;
	margin-top: 78px;
	-moz-column-gap: 55px;
	column-gap: 55px;
	margin-inline: auto;
	max-width: 1170px;
}

.p-feature__image-container {
	height: 100%;
	margin-left: -40px;
	margin-top: -6px;
	width: 100%;
}

.p-feature__text {
	margin-top: 264px;
}

.p-feature__scroll-text {
	top: 460px;
}

.p-voice {
	margin-top: 20px;
	padding-bottom: 152px;
	padding-top: 0;
}

.p-voice__wrapper {
	flex-direction: row;
	gap: 95px;
}

.p-voice__wrapper::before {
	top: 0;
	width: 100%;
}

.p-voice__wrapper::after {
	bottom: -2px;
	width: 100%;
}

.p-voice__heading {
	margin-top: 90px;
	width: 39%;
}

.p-voice__heading::before {
	background-color: #FFFFFF;
	content: "";
	display: block;
	height: calc(100% + 2px);
	left: 31.3vw;
	opacity: 0.25;
	position: absolute;
	top: 0;
	width: 1px;
}

.p-voice__nav {
	display: flex;
	gap: 13px;
	margin-top: 262px;
}

.p-voice__container {
	margin-right: -30px;
	margin-top: 0;
	width: 100%;
}

.p-voice__cards {
	overflow: hidden;
	padding-left: 120px;
}

.p-voice__card {
	width: 18.8rem;
}

.p-voice__number {
	margin-bottom: 21px;
}

.p-voice__content {
	gap: 7px;
	margin-top: 0;
	padding-bottom: 1rem;
	padding-top: 1.6rem;
}

.p-voice__text {
	letter-spacing: 1.1px;
}

.p-voice__item {
	margin-inline: auto;
	margin-top: 96px;
	max-width: 360px;
	padding-left: 185px;
}

.p-news {
	margin-inline: auto;
	max-width: 1200px;
	width: 100%;
}

.p-news__container {
	flex-direction: row;
	gap: 63px;
}

.p-news__heading {
	padding-left: 0;
}

.p-news__blog {
	margin-inline: 0;
	margin-top: 11px;
	width: 75%;
}

.p-news__blog.p-news__blog--news-archive {
	margin-top: 0;
}

.p-news__item {
	align-items: center;
	flex-direction: row;
	gap: 45px;
	padding-bottom: 30px;
	padding-top: 29px;
}

.p-news__thumbnail {
	aspect-ratio: 180/115;
	flex-shrink: 0;
	padding-left: 7px;
	padding-right: 2px;
	width: 21%;
}

.p-news__thumbnail.p-news__thumbnail--news-archive {
	padding-left: 1px;
	padding-right: 10px;
}

.p-news__text {
	flex-grow: 1;
	padding: 0;
}

.p-news__badge {
	padding: 2px 12px;
}

.p-news__title {
	line-height: 22px;
	padding-top: 16px;
}

.p-news__link {
	margin-left: auto;
	margin-right: 0;
	margin-top: 60px;
	max-width: 340px;
}

.p-voice-section__grid {
	grid-template-columns: repeat(3, 1fr);
}

.p-voice-section__grid::before {
	display: none;
}

.p-voice-section__grid::after {
	display: none;
}

.p-voice-other {
	padding-bottom: 120px;
	padding-top: 106px;
}

.p-voice-other::before {
	left: 0;
}

.p-voice-other__inner {
	padding-inline: 30px;
}

.p-voice-other__grid {
	grid-template-columns: repeat(3, 1fr);
	margin-top: 73px;
}

.p-voice-other__grid::before {
	display: none;
}

.p-voice-other__grid::after {
	height: calc(100% - 8px);
	left: 0;
	opacity: 0.2;
	top: 8px;
	width: 1px;
}

.p-voice-other__card {
	margin-bottom: 0;
}

.p-voice-other__content {
	margin-top: 25px;
}

.p-news-archive__inner {
	margin-inline: auto;
	max-width: 1260px;
	width: 100%;
}

.p-news-archive__container {
	flex-direction: row;
	gap: 70px;
}

.p-news-archive__sidebar {
	margin-top: -25px;
	order: 1;
	width: 17.5%;
}

.p-news-archive__sidebar-wrapper {
	position: sticky;
	top: 115px;
}

.p-news-detail__inner {
	max-width: 1190px;
	width: 100%;
}

.p-news-detail__container {
	flex-direction: row;
	gap: 96px;
}

.p-news-detail__content {
	order: 2;
	width: 72.972972973%;
}

.p-news-detail__sidebar-wrapper {
	order: 1;
}

.p-news-detail__sidebar-wrapper--archive {
	width: 100%;
}

.p-news-detail__sidebar-wrapper--single {
	width: 18.9189189189%;
}

.p-news-detail__link {
	margin-top: 86px;
}

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

.u-text-center {
	text-align: left;
}

}

@media (min-width: 1200px) {

html {
	scroll-padding-top: 110px;
}

.l-inner.l-inner--contact-slider {
	padding-inline: 80px;
	padding-right: 20px;
}

.l-inner.l-inner--feature {
	max-width: 1280px;
	padding-inline: 80px;
}

.c-section-title.c-section-title--dark .c-section-title__en.c-section-title__en--top-voice {
	font-size: 76px;
}

.c-section-title__ja {
	padding-left: 30px;
}

.c-section-title__en {
	font-size: 95px;
}

.c-section-title__en.c-section-title__en--company::before {
	left: -25px;
	top: 20px;
	width: 255px;
}

.c-section-title__en.c-section-title__en--company::after {
	bottom: 17px;
	left: 155px;
	width: 236px;
}

.c-section-title__en.c-section-title__en--access::before {
	left: -30px;
	top: 21px;
	width: 172px;
}

.c-section-title__en.c-section-title__en--access::after {
	bottom: 17px;
	left: 108px;
	width: 193px;
}

.c-section-title__en.c-section-title__en--message::after {
	bottom: 12px;
	left: -87px;
	width: 52%;
}

.c-section-title__en.c-section-title__en--top-feature::before {
	left: -21px;
	top: 22px;
	width: 280px;
}

.c-section-title__en.c-section-title__en--top-feature::after {
	bottom: 17px;
	left: 163px;
	width: 328px;
}

.c-section-title__en.c-section-title__en--contact {
	font-size: 90px;
}

.c-heading-line1--service {
	left: -24px;
	top: 16px;
}

.c-heading-line2--service {
	left: 183px;
	top: 92px;
	width: 330px;
}

.c-card::before {
	left: -30px;
	top: -60px;
	width: calc(100% + 42px);
}

.c-card::after {
	height: calc(100% + 163px);
}

.c-card__title {
	font-size: 23px;
}

.c-page-header__title {
	bottom: 10px;
	gap: 40px;
	left: 7.5%;
}

.c-page-header__title--voice {
	bottom: 5px;
}

.c-page-header__en {
	font-size: 190px;
}

.c-page-header__en--voice {
	font-size: 160px;
}

.c-page-header--noimg .c-page-header__title {
	bottom: 2px;
	gap: 10px;
}

.c-page-header--noimg .c-page-header__en {
	font-size: 150px;
}

.p-header__inner {
	margin-inline: auto;
	padding: 17px 30px 35px 60px;
}

.p-header__menu {
	align-items: center;
	display: flex;
	gap: 36px;
	justify-content: flex-end;
}

.p-drawer__content {
	flex: 0 0 50%;
	max-width: 50%;
}

.p-drawer__image-container {
	flex: 0 0 50%;
	max-width: 50%;
}

.p-contact-slider {
	flex-direction: row;
	gap: 90px;
}

.p-footer-menu {
	flex-direction: row;
	gap: 79px;
}

.p-hero__title {
	font-size: 131px;
}

.p-about__inner {
	padding-left: 100px;
	padding-right: 80px;
}

.p-about__container {
	flex: none;
	width: 43.6507936508%;
}

.p-about__ornament-right img {
	height: 150px;
	width: 120px;
}

.p-about__ornament-right {
	transform: translate(60px, -60px);
}

.p-about__ornament-left img {
	height: 90px;
	width: 90px;
}

.p-about__ornament-left {
	margin: 0 0 -60px -30px;
}

.p-service-section__content-block {
	padding: 77px 49px 70px 67px;
	width: 50%;
}

.p-service-section__content-block--first::before {
	height: 90px;
	left: 0;
	top: -30px;
	width: 90px;
}

.p-service-section__number {
	font-size: 80.851px;
}

.p-service-section__ja {
	font-size: 32px;
}

.p-service-section__content {
	margin-top: 8px;
}

.p-service-section__item {
	font-size: 18px;
	padding-top: 28px;
}

.p-service-section__item::after {
	top: 75px;
}

.p-service-section__ornament {
	top: 39px;
}

.p-service-section__text {
	margin-top: 44px;
}

.p-service-section__image {
	width: 50%;
}

.p-service-section__image--first::after {
	bottom: -60px;
	height: 90px;
	right: 0;
	width: 90px;
}

.p-service-section__image--second::after {
	bottom: -90px;
	height: 90px;
	left: -30px;
	width: 120px;
}

.p-service-section__image--third::after {
	bottom: -30px;
	height: 90px;
	right: 0;
	width: 120px;
}

.p-feature-section--reverse {
	padding: 121px 8px 118px 0;
}

.p-feature-section__content-block {
	padding-top: 69px;
}

.p-feature-section__content-block--reverse {
	padding-top: 68px;
}

.p-feature-section__ja {
	font-size: 44px;
}

.p-feature-section__image--first::before {
	height: 90px;
	width: 90px;
}

.p-feature-section__image--first::after {
	bottom: -24px;
	height: 120px;
	right: 30px;
	width: 90px;
}

.p-feature-section__image--second::before {
	height: 90px;
	width: 150px;
}

.p-feature-section__image--second::after {
	bottom: 0;
	left: 0;
}

.p-about-section__inner {
	margin-inline: auto;
	max-width: 1440px;
}

.p-about-section__heading {
	padding-left: 118px;
}

.p-about-section__container {
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 4%;
	margin-inline: auto;
	margin-top: -14px;
	max-width: 1200px;
}

.p-about-section__image {
	flex: 0 0 50%;
	margin-inline: 0;
}

.p-about-section__content-block::before {
	left: 200px;
	top: 30px;
	width: calc(100% + 30px);
}

.p-about-section__content-block::after {
	left: -48px;
}

.p-about-section__ornament-right {
	left: calc(100% - 78px);
}

.p-about-section__ornament-left {
	height: 90px;
	left: -78px;
	width: 90px;
}

.p-about-section__heading-en {
	font-size: 34px;
	letter-spacing: -2.2px;
}

.p-values-section {
	top: -10px;
}

.p-values-section__right {
	bottom: 80px;
	gap: 1.5px;
	right: 85px;
	width: 480px;
}

.p-values-section__big-title {
	font-size: 195px;
	letter-spacing: -10px;
	line-height: 100px;
	top: -15px;
}

.p-values-section__big-title::after {
	left: 113px;
}

.p-values-section__lead {
	font-size: 21px;
	letter-spacing: 1.4px;
	line-height: 1.7;
}

.p-values-section__text1 {
	padding: 6px 3px 6px 16px;
}

.p-values-section__text2 {
	margin-left: 42px;
	padding: 7px 3px 8px 16px;
}

.p-values-section__text3 {
	margin-left: 132px;
	padding: 8px 3px 7px 16px;
}

.p-company-section__inner {
	padding-left: 119px;
	padding-right: 118px;
}

.p-company-section__container {
	gap: 53px;
	justify-content: flex-start;
}

.p-company-section__heading {
	width: 45%;
}

.p-company-section__content {
	margin-top: 42px;
	width: 55%;
}

.p-access-section__content {
	display: flex;
	gap: 38px;
	justify-content: initial;
	max-width: none;
	padding-block: 134px;
	width: 23.5%;
}

.p-voice__wrapper {
	gap: 145px;
}

.p-voice__heading {
	margin-left: auto;
	width: 25%;
}

.p-voice__container {
	width: 62.5%;
}

.p-voice__cards {
	padding-left: 125px;
}

.p-news__container {
	gap: 125px;
}

.p-news__item {
	gap: 56px;
}

.p-news__item.p-news__item--news-archive {
	gap: 52px;
}

.p-voice-detail__figcaption {
	bottom: 27px;
}

.p-voice-other__inner {
	margin-inline: auto;
	max-width: 1200px;
	padding-inline: 0;
}

.p-news-archive__inner {
	padding-left: 29px;
	padding-right: 32px;
}

.p-news-archive__container {
	gap: 90px;
}

}

@media (min-width: 1400px) {

.l-inner.l-inner--contact-slider {
	padding-inline: 90px;
	padding-right: 60px;
}

.l-inner.l-inner--feature {
	padding-inline: 40px;
}

.c-section-title__en {
	font-size: 108px;
}

.c-section-title__en.c-section-title__en--company::before {
	top: 17px;
	width: 300px;
}

.c-section-title__en.c-section-title__en--company::after {
	bottom: 12px;
	left: 182px;
	width: 270px;
}

.c-section-title__en.c-section-title__en--access::before {
	left: -40px;
	top: 18px;
	width: 189px;
}

.c-section-title__en.c-section-title__en--access::after {
	bottom: 11px;
	left: 142px;
	width: 189px;
}

.c-section-title__en.c-section-title__en--top-feature::before {
	left: -30px;
	top: 14px;
	width: 330px;
}

.c-section-title__en.c-section-title__en--top-feature::after {
	bottom: 14px;
	left: 189px;
	width: 381px;
}

.c-section-title__en.c-section-title__en--contact {
	font-size: 110px;
}

.c-card::after {
	height: calc(100% + 208px);
}

.c-card__article {
	padding-left: 30px;
	padding-right: 52px;
}

.c-card__title {
	font-size: 28px;
}

.c-page-header__title--voice {
	bottom: 10px;
	gap: 40px;
	left: 7.5%;
}

.c-page-header__ja::before {
	left: -168px;
	width: 163px;
}

.c-page-header__en--voice {
	font-size: 190px;
}

.c-page-header--noimg .c-page-header__container {
	min-height: 342px;
}

.c-page-header--noimg .c-page-header__title {
	gap: 45px;
}

.c-page-header--noimg .c-page-header__en {
	font-size: 190px;
}

.p-contact-slider {
	flex-direction: row;
	justify-content: space-between;
}

.p-hero {
	padding-top: 93px;
}

.p-about {
	margin-inline: auto;
	max-width: 1440px;
	width: 100%;
}

.p-about__inner {
	padding-right: 60px;
}

.p-about__wrapper {
	gap: 60px;
	justify-content: flex-start;
}

.p-service__container {
	padding-bottom: 56px;
}

.p-service-section__content-block {
	padding: 107px 76px 120px 120px;
	width: 52%;
}

.p-service-section__content-block--second {
	padding-left: 90px;
	padding-right: 106px;
}

.p-service-section__content-block--third {
	padding-right: 76px;
}

.p-service-section__image {
	width: 45.8%;
}

.p-feature-section__image--second::after {
	height: 90px;
	width: 120px;
}

.p-about-section__container {
	gap: 90px;
	margin-top: -14px;
	max-width: none;
}

.p-about-section__content-block {
	flex: none;
	margin-inline: 0;
	padding-top: 138px;
	width: 36%;
}

.p-about-section__content-block::before {
	left: 50%;
	max-width: 690px;
	top: 30px;
	transform: translateX(-50%);
	width: calc(100% + 180px);
}

.p-about-section__content-block::after {
	left: -86px;
	width: calc(100% + 197px);
}

.p-about-section__ornament-right {
	height: 120px;
	left: 98%;
	width: 120px;
}

.p-about-section__ornament-left {
	left: -120px;
}

.p-values-section {
	top: 0;
}

.p-values-section__ornament-right {
	top: -30px;
}

.p-values-section__right {
	bottom: 89px;
	gap: 2px;
	right: 118px;
	width: 542px;
}

.p-values-section__big-title {
	font-size: 220px;
	left: 0;
	letter-spacing: -11px;
	line-height: 105px;
}

.p-values-section__big-title::after {
	left: 120px;
}

.p-values-section__lead {
	font-size: 24px;
	letter-spacing: 1.9px;
	line-height: 1.8;
}

.p-values-section__text1 {
	padding: 7px 3px 7px 19px;
}

.p-values-section__text2 {
	margin-left: 50px;
	padding: 8px 3px 10px 19px;
}

.p-values-section__text3 {
	margin-left: 149px;
	padding: 10px 3px 8px 19px;
}

.p-company-section {
	margin-top: 77px;
}

.p-feature__image img {
	max-width: none;
}

.p-voice__wrapper {
	gap: 25px;
}

.p-voice__container {
	margin-right: 0;
	margin-top: 0;
	width: 66.6666666667%;
}

.p-voice__cards {
	margin-right: -30px;
	padding-left: 50px;
}

.p-news-detail__inner {
	margin-left: 77px;
}

}

@media (min-width: 1600px) {

.c-card::after {
	height: calc(100% + 210px);
}

.p-values-section__ornament-right {
	width: min(930px, 50%);
}

.p-values-section__ornament-left {
	width: 960px;
}

.p-company-section__inner {
	margin-inline: auto;
	max-width: 1440px;
}

.p-access-section {
	margin-inline: auto;
	max-width: 1440px;
}

.p-news-detail__inner {
	margin-inline: auto;
}

}

@keyframes subtle-bounce {

0%,100% {
	transform: translateY(0);
}

50% {
	transform: translateY(3px);
}

}

@keyframes lineFlow {

0% {
	transform: translate(0) translateY(-50%);
}

100% {
	transform: translate(100%) translateY(-50%);
}

}

@keyframes loop {

0% {
	transform: translateX(0);
}

100% {
	transform: translateX(-50%);
}

}

@keyframes loop-divider {

0% {
	transform: translateX(0);
}

100% {
	transform: translateX(-110%);
}

}

@keyframes loop-rtl {

0% {
	transform: translateX(-110%);
}

100% {
	transform: translate(0);
}

}

