:root {
	--font-family-base: "Yu Gothic", "游ゴシック", "Zen Kaku Gothic New", sans-serif;
	--font-family-second: "Work Sans", sans-serif;
}

:root {
	--black: #333;
	--white: #fff;
	--bg-color: #D8DEE1;
	--main-color: #001C36;
	--blue: #00479D;
}

:root {
	--z-index-bg-video: -2;
	--z-index-header: 1000;
	--z-index-to-top: 200;
	--z-index-drawer: 100;
	--z-index-modal: 10000;
}

body {
	color: #333;
	color: var(--black);
	font-family: "Yu Gothic", "游ゴシック", "Zen Kaku Gothic New", sans-serif;
	font-family: var(--font-family-base);
}

.u-desktop {
	display: none;
}

/* リキッドレイアウト対応 */

html {
	font-size: 16px;
}

/* グローバルリセット */

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

/* テキストサイズの調整をリセット */

html {
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

html.html-top {
	scroll-behavior: smooth;
}

/* ボディの基本設定 */

body {
	word-wrap: anywhere;
	line-break: strict;
	line-height: 1.5;
	margin: 0;
	min-height: 100vh;
	text-rendering: optimizeLegibility;
	word-break: normal;
}

/* デフォルトの余白とパディングを削除 */

ul,
ol,
button,
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
time,
small {
	margin: 0;
	padding: 0;
}

/* リストスタイルのリセット */

ul,
ol {
	list-style: none;
}

/* クラスなしのaタグにデフォルトのスタイルを適用 */

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

/* インラインブロック要素 */

a,
span,
button {
	display: inline-block;
}

/* フォントとマージンのリセット */

small,
time,
figure {
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}

address {
	font-style: normal;
}

/* 画像の調整 */

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

/* 記事内の自然な余白を設定 */

article > * + * {
	margin-top: 1em;
}

/* フォーム要素のフォント継承 */

input,
button,
textarea,
select {
	font: inherit;
}

/* フォームのリセット */

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
}

textarea {
	resize: vertical;
}

/* チェックボックスとラジオボタンを非表示 */

input[type=checkbox],
input[type=radio] {
	display: none;
}

/* ボタンやラベルにカーソルを設定 */

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

/* IE用の選択ボックスアイコンを非表示 */

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

/* aタグのスタイルとトランジション */

a {
	-webkit-text-decoration: none;
	color: inherit;
	text-decoration: none;
	transition: 0.3s;
}

button {
	color: inherit;
}

/* ホバー時のカーソル設定 */

/* PCでtelリンクを無効化 */

/* タップ時のハイライトを透明に設定 */

a {
	-webkit-tap-highlight-color: transparent; /* リンクのハイライトを透明に */
}

button {
	-webkit-tap-highlight-color: transparent; /* ボタンのハイライトも透明に */
}

/* ===== 背景動画全体を包む固定ラッパー ===== */

.bg-img-wrap {
	height: 100vh;
	left: 0;
	overflow: hidden;
	position: fixed;
	top: 0;
	width: 100vw;
	z-index: -2;
	z-index: var(--z-index-bg-video);
}

/* ===== 動画自体 ===== */

.bg-img {
	-o-object-fit: cover;
	aspect-ratio: 375/720;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

/* ===== グラデーションオーバーレイ ===== */

.bg-img__overlay {
	background: #fff;
	bottom: 0;
	left: 0;
	mix-blend-mode: hard-light;
	opacity: 0.5;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}

/* ===== 背景動画全体を包む固定ラッパー ===== */

.bg-video-wrapper {
	height: 100vh;
	left: 0;
	overflow: hidden;
	position: fixed;
	top: 0;
	width: 100vw;
	z-index: -2;
	z-index: var(--z-index-bg-video);
}

/* ===== 動画自体 ===== */

.bg-video {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

/* ===== グラデーションオーバーレイ ===== */

.bg-video__overlay {
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.9) 100%);
	bottom: 0;
	left: 0;
	mix-blend-mode: hard-light;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}

.brand-story {
	overflow-x: clip;
	padding-bottom: 6.25rem;
}

.brand-story__bg-top {
	position: relative;
}

.brand-story__bg-top::before {
	background-color: #D8DEE1;
	content: "";
	height: 30%;
	left: 50%;
	opacity: 0.5;
	position: absolute;
	top: 59.5%;
	translate: -50% -50%;
	width: 100vw;
	z-index: -1;
}

.brand-story__bg-bottom {
	position: relative;
}

.brand-story__bg-bottom::before {
	background-color: #D8DEE1;
	content: "";
	height: 40%;
	left: 50%;
	opacity: 0.5;
	position: absolute;
	top: 62.4%;
	translate: -50% -50%;
	width: 100vw;
	z-index: -1;
}

.brand-story__subtitle {
	margin-top: 0.9375rem;
}

.brand-story__description {
	font-feature-settings: "halt" on;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.78;
	margin-top: 1.25rem;
}

.brand-story__video {
	-o-object-fit: cover;
	aspect-ratio: 375/400;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.brand-story__block--mission {
	margin-top: 7.5rem;
}

.brand-story__block--value {
	margin-top: 7.5rem;
}

.brand-story__value-list {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	gap: 3.125rem;
	margin-top: 2.5rem;
	text-align: center;
}

.brand-story__value-item {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
}

.brand-story__value-text-en {
	color: #001C36;
	color: var(--main-color);
	font-family: "Work Sans", sans-serif;
	font-family: var(--font-family-second);
	font-size: 1.375rem;
	font-weight: 500;
	text-transform: uppercase;
}

.brand-story__value-text-en::first-letter {
	color: #00479D;
	color: var(--blue);
}

.brand-story__value-text-ja {
	color: #7B7B7B;
	font-size: 0.875rem;
	font-weight: 500;
}

/* ===============================================
# future
=============================================== */

.brand-story__future {
	margin-top: 7.5rem;
}

.brand-story__future-description {
	font-feature-settings: "halt" on, "kern" off;
	color: rgba(0, 0, 0, 0.8);
	font-kerning: none;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.78;
	margin-top: 1.875rem;
}

.brand-story__future-content {
	margin-top: 1.875rem;
}

.brand-story__future-list {
	display: flex;
}

.brand-story__future-item-img-wrap {
	border-radius: 5px;
	overflow: hidden;
}

.brand-story__future-item-img {
	-o-object-fit: cover;
	aspect-ratio: 14/9;
	border-radius: 5px;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
	width: 100%;
}

.brand-story__future-item-title {
	color: #001C36;
	color: var(--main-color);
	font-size: 1rem;
	font-weight: 700;
	transition: color 0.3s ease-in-out;
}

.brand-story__future-item-description {
	font-feature-settings: "halt" on, "kern" off;
	color: #7B7B7B;
	font-kerning: none;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	margin-top: 0.125rem;
	transition: color 0.3s ease-in-out;
}

.breadcrumb__list {
	align-items: center;
	display: flex;
	gap: 0.4375rem;
}

.breadcrumb__item::after {
	content: ">";
	left: 50%;
	margin-left: 0.4375rem;
	top: 50%;
	translate: -50% -50%;
}

.breadcrumb__item:last-child::after {
	content: "";
}

.breadcrumb__link {
	transition: opacity 0.3s ease-in-out;
}

.breadcrumb__link:hover {
	opacity: 0.7;
}

.company {
	background-color: #fff;
	overflow-x: clip;
}

.company__block {
	display: grid;
	grid-template-columns: 1fr;
}

.company__block-text-wrap {
	display: flex;
	flex-direction: column;
	gap: 1.875rem;
	position: relative;
	z-index: 1;
}

.company__block-description {
	font-feature-settings: "halt" on, "kern" off;
	font-kerning: none;
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.78571;
}

.company__block-img-wrap {
	position: relative;
	z-index: 1;
}

.company__block-img {
	-o-object-fit: cover;
	aspect-ratio: 375/250;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.company__block--mission {
	position: relative;
}

.company__block-bg {
	background: #D8DEE1;
	height: 100%;
	opacity: 0.5;
	position: absolute;
	top: 0;
	width: 100vw;
	z-index: 0;
}

.company__block--reverse .company__block-text-wrap {
	padding-bottom: 3.125rem;
	padding-top: 7.5rem;
}

.company__block-list {
	display: flex;
	flex-direction: column;
}

.company__block-item {
	font-feature-settings: "halt" on, "kern" off;
	font-kerning: none;
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.78571;
}

/* ===============================================
# company__message
=============================================== */

.company__message {
	padding-bottom: 6.25rem;
	padding-top: 6.25rem;
}

.company__message-content {
	grid-gap: 3.125rem;
	display: grid;
	gap: 3.125rem;
	grid-template-columns: 1fr;
}

.company__message-profile {
	display: flex;
	flex-direction: column;
	gap: 1.875rem;
}

.company__message-name {
	font-feature-settings: "halt" on;
	color: #001C36;
	color: var(--main-color);
	font-size: 1.1875rem;
	font-weight: 700;
}

.company__message-career {
	font-feature-settings: "halt" on, "kern" off;
	font-kerning: none;
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.78571;
}

.company__message-text-wrap {
	display: flex;
	flex-direction: column;
	gap: 1.5625rem;
}

.company__message-text {
	font-feature-settings: "halt" on, "kern" off;
	font-kerning: none;
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.78571;
}

.company__message-text.company__message-text--title {
	font-weight: 700;
}

/* ===============================================
# company__history + company__info
=============================================== */

.company__history,
.company__info {
	padding-bottom: 6.25rem;
	padding-top: 6.25rem;
}

.company__history-title,
.company__info-title {
	font-feature-settings: "halt" on;
	color: rgba(0, 0, 0, 0.8);
	font-size: 1.1875rem;
	font-weight: 700;
	text-align: center;
}

.company__history-list,
.company__info-list {
	display: flex;
	flex-direction: column;
	margin-top: 1.875rem;
}

.company__history-item,
.company__info-item {
	border-bottom: 1px solid #DDD;
	display: grid;
	grid-template-columns: 1fr;
	padding: 1.875rem 0.625rem;
}

.company__history-item:first-child,
.company__info-item:first-child {
	border-top: 1px solid #DDD;
}

.company__history-year,
.company__info-heading {
	font-feature-settings: "halt" on, "kern" off;
	color: #001C36;
	color: var(--main-color);
	font-kerning: none;
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.78571;
}

.company__history-event,
.company__info-data {
	font-feature-settings: "halt" on, "kern" off;
	font-kerning: none;
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.78571;
}

.company__hr {
	background: #DDD;
	border: none;
	height: 1px;
	margin: 0 calc(50% - 50vw);
}

.contact {
	overflow-x: clip;
	padding-top: 1.875rem;
	position: relative;
}

.contact::before {
	background: #D8DEE1;
	background: var(--bg-color);
	content: "";
	height: 18.75rem;
	left: 50%;
	opacity: 0.5;
	position: absolute;
	top: 0;
	translate: -50% 0;
	width: 100%;
	z-index: -1;
}

.contact__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 500px;
	padding-left: 10px;
	padding-right: 10px;
}

.contact__content {
	background: #fff;
	padding: 1.875rem 1.25rem 0 1.25rem;
}

/* ===============================================
# form
=============================================== */

.wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 1.875rem;
}

.form__group {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.form__label {
	font-feature-settings: "halt" on, "kern" off;
	align-items: center;
	display: flex;
	font-kerning: none;
	font-size: 0.9375rem;
	font-weight: 700;
	gap: 0.5rem;
	letter-spacing: 0.05em;
	line-height: 1.8;
}

.form__input {
	background: #FDF5EA;
	border: 1px solid #DDD;
	border-radius: 5px;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25) inset;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
	padding: 0.75rem 0.9375rem;
	width: 100%;
}

.form__input::-moz-placeholder {
	color: #7B7B7B;
	opacity: 0.6;
}

.form__input::placeholder {
	color: #7B7B7B;
	opacity: 0.6;
}

.form__required {
	background: #FF6701;
	border-radius: 2px;
	color: #FFF;
	font-size: 0.625rem;
	font-weight: 700;
	line-height: 1;
	padding: 0.3125rem 0.3125rem;
}

.form__radio-group {
	align-items: center;
	display: flex;
	gap: 0.625rem 1.25rem;
}

.form__radio {
	align-items: center;
	display: flex;
	gap: 0.3125rem;
}

.form__radio-label {
	font-size: 0.875rem;
	font-weight: 500;
}

.form__radio:has(.form__radio-input:checked) .form__radio-label {
	color: #00479D;
	color: var(--blue);
	font-weight: 700;
}

.form__radio-icon {
	color: #757575;
	font-size: 20px;
	font-variation-settings: "FILL" 1, "wght" 700, "GRAD" 0, "opsz" 20;
	font-weight: 700;
}

.form__radio:has(.form__radio-input:checked) .form__radio-icon {
	color: #00479D;
	color: var(--blue);
}

.form__radio-input {
	align-items: center;
	display: flex;
	font-size: 0.875rem;
	font-weight: 500;
	gap: 1.875rem;
	margin-left: 0.625rem;
}

.form__radio-input .wpcf7-list-item-label {
	align-items: center;
	display: flex;
	position: relative;
}

.form__radio-input .wpcf7-list-item-label::before {
	color: #757575;
	content: "check_circle";
	font-family: "Material Symbols Rounded";
	font-size: 1.25rem;
	font-variation-settings: "FILL" 1, "wght" 700, "GRAD" 0, "opsz" 20;
	font-weight: 700;
	left: -1.5625rem;
	position: absolute;
	top: calc(50% - 0.125rem);
	translate: 0 -50%;
}

.form__radio-input input[type=radio]:checked + .wpcf7-list-item-label {
	color: #00479D;
	color: var(--blue);
	font-weight: 700;
}

.form__radio-input input[type=radio]:checked + .wpcf7-list-item-label::before {
	color: #00479D;
	color: var(--blue);
}

.form__textarea {
	background: #FDF5EA;
	border: 1px solid #DDD;
	border-radius: 5px;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25) inset;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
	height: 8.75rem;
	padding: 0.75rem 0.9375rem;
	width: 100%;
}

.form__textarea::-moz-placeholder {
	color: #7B7B7B;
	opacity: 0.6;
}

.form__textarea::placeholder {
	color: #7B7B7B;
	opacity: 0.6;
}

.wpcf7-spinner {
	display: none;
}

.form__checkbox {
	align-items: center;
	display: flex;
	gap: 0.1875rem;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	width: -moz-fit-content;
	width: fit-content;
}

.form__checkbox-label {
	font-size: 0.8125rem;
	font-weight: 700;
}

.material-symbols-rounded.form__checkbox-icon {
	color: #757575;
	font-size: 20px;
	font-variation-settings: "FILL" 1, "wght" 700, "GRAD" 0, "opsz" 20;
	font-weight: 700;
}

.form__checkbox:has(.form__checkbox-input:checked) .form__checkbox-icon {
	color: #00479D;
	color: var(--blue);
}

.form__submit-btn {
	margin-left: auto;
	margin-right: auto;
	max-width: 20.625rem;
	position: relative;
	width: 100%;
}

.form__submit-button {
	align-items: center;
	background: #00479D;
	background: var(--blue);
	border: 1px solid transparent;
	border-radius: 5px;
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
	color: #FFF;
	display: flex;
	font-size: 0.9375rem;
	font-weight: 700;
	height: 3.75rem;
	justify-content: center;
	line-height: 1.5;
	transition: color 0.3s ease, background 0.3s ease, border 0.3s ease;
	width: 100%;
}

.form__submit-button:hover {
	background: #fff;
	border: 1px solid #00479D;
	border: 1px solid var(--blue);
	color: #00479D;
	color: var(--blue);
}

.form__submit-btn::after {
	color: #fff;
	content: "expand_circle_right";
	font-family: "Material Symbols Rounded";
	font-size: 1rem;
	font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 16;
	font-weight: 400;
	position: absolute;
	right: 0.5rem;
	top: 50%;
	transition: color 0.3s ease;
	translate: 0 -50%;
}

.form__submit-btn:hover::after {
	color: #00479D;
	color: var(--blue);
}

.form__group.form__group--textarea {
	gap: 0;
}

.form__group.form__group--textarea .form__label {
	margin-bottom: 0.625rem;
}

.form__textarea-cont {
	font-size: 0.875rem;
	font-weight: 600;
}

/* ===============================================
# confirm
=============================================== */

.contact--confirm .form__label {
	pointer-events: none;
}

.contact--confirm .form__group--submit {
	gap: 0.9375rem;
	margin-top: 3.125rem;
}

.confirm-text {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
}

/* ===============================================
# thanks
=============================================== */

.contact__thanks-text {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.8;
	margin-top: 3.125rem;
	text-align: center;
}

.contact__thanks-btn {
	margin-top: 3.125rem;
}

.contact__thanks-btn-link {
	align-items: center;
	background: #00479D;
	background: var(--blue);
	border: 1px solid transparent;
	border-radius: 5px;
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
	color: #FFF;
	display: flex;
	font-size: 0.9375rem;
	font-weight: 700;
	height: 3.75rem;
	justify-content: center;
	line-height: 1.5;
	margin-left: auto;
	margin-right: auto;
	max-width: 20.625rem;
	position: relative;
	transition: color 0.3s ease, background 0.3s ease, border 0.3s ease;
	width: 100%;
	width: 100%;
}

.inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 500px;
	padding-left: 30px;
	padding-right: 30px;
	width: 100%;
}

.journal {
	margin-top: 2.5rem;
	position: relative;
	z-index: 2;
}

.journal__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 500px;
	padding-left: 30px;
	padding-right: 30px;
}

.journal__nav-list {
	display: flex;
}

.journal__nav-item:not(:last-child) {
	border-right: 1px solid #ddd;
}

.journal__nav-link {
	color: #C0C0C0;
	font-size: 0.6875rem;
	font-weight: 700;
	padding-left: 0.9375rem;
	padding-right: 0.9375rem;
	transition: color 0.3s ease;
	white-space: nowrap;
}

.journal__nav-link.is-current {
	color: #1E1E1E;
}

.journal__content {
	margin-top: 3.125rem;
}

.journal__list {
	grid-gap: 1.5625rem;
	display: grid;
	gap: 1.5625rem;
	grid-template-columns: repeat(2, 1fr);
}

.journal__pagination {
	margin-top: 3.125rem;
}

.mv {
	height: 100svh;
	overflow-x: clip;
}

.mv__inner {
	height: 100%;
	margin-left: auto;
	margin-right: auto;
}

.mv__content {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
	height: 100%;
}

.mv__title {
	color: #001C36;
	color: var(--main-color);
	font-family: "Yu Gothic", "游ゴシック", "Zen Kaku Gothic New", sans-serif;
	font-family: var(--font-family-base);
	font-size: 1rem;
	font-style: normal;
	font-weight: 700;
	letter-spacing: 0.2em;
	line-height: 2.0625;
	opacity: 0;
	text-align: center;
	transition: opacity 0.8s ease-in-out;
	transition-delay: 0.1s;
}

.mv__link-wrap {
	margin-top: 1.5625rem;
	opacity: 0;
	transition: opacity 0.8s ease-in-out;
	transition-delay: 0.4s;
}

.mv__catch {
	-webkit-clip-path: inset(0 0 22% 0);
	clip-path: inset(0 0 22% 0);
	color: #00479D;
	color: var(--blue);
	display: flex;
	font-family: "Work Sans", sans-serif;
	font-family: var(--font-family-second);
	font-size: 1.625rem;
	font-weight: 300;
	gap: 1.5625rem;
	letter-spacing: 1em;
	line-height: 1;
	margin-top: -1.3125rem;
	opacity: 0.1;
	text-align: center;
	text-indent: 1em;
	text-transform: uppercase;
	white-space: nowrap;
}

.mv__catch span {
	display: inline-block;
	letter-spacing: 0;
	opacity: 0;
	text-indent: 0;
	transform: translateX(10px);
	transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
	transition-delay: calc(0.1s * var(--index));
	width: -moz-fit-content;
	width: fit-content;
}

.mv__content.is-active .mv__title {
	opacity: 1;
}

.mv__content.is-active .mv__link-wrap {
	opacity: 1;
}

.mv__catch.is-active span {
	opacity: 1;
	transform: translateX(0);
}

.news {
	margin-top: 3.125rem;
	position: relative;
	z-index: 2;
}

.news__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 500px;
	padding-left: 30px;
	padding-right: 30px;
}

.news__pagination {
	margin-top: 3.125rem;
}

.news-list__item-not-found {
	font-size: 0.875rem;
}

.not-found__title-wrap {
	background: rgba(216, 222, 225, 0.5);
	padding-bottom: 2.84375rem;
	padding-top: 2.84375rem;
}

.not-found__title {
	font-feature-settings: "halt" on;
	color: rgba(0, 0, 0, 0.8);
	font-size: 1.1875rem;
	font-weight: 700;
	margin-left: auto;
	margin-right: auto;
	max-width: 500px;
	padding-left: 10px;
	padding-right: 10px;
}

.not-found__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 500px;
	padding-left: 30px;
	padding-right: 30px;
}

.not-found__content {
	padding-bottom: 2.5rem;
	padding-top: 2.5rem;
}

.not-found__text {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 2;
}

.not-found__link {
	display: flex;
	justify-content: center;
}

.policy__title-wrap {
	background: rgba(216, 222, 225, 0.5);
	padding-bottom: 2.84375rem;
	padding-top: 2.84375rem;
}

.policy__title {
	font-feature-settings: "halt" on;
	color: rgba(0, 0, 0, 0.8);
	font-size: 1.1875rem;
	font-weight: 700;
	margin-left: auto;
	margin-right: auto;
	max-width: 500px;
	padding-left: 30px;
	padding-right: 30px;
}

.policy__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 500px;
	padding-left: 30px;
	padding-right: 30px;
}

.policy__content {
	display: flex;
	flex-direction: column;
	gap: 3.125rem;
	margin-top: 3.125rem;
}

.policy__text,
.policy__section-title,
.policy__item,
.policy__sub-item,
.policy__sub-sub-item,
.policy__address {
	color: #7B7B7B;
	font-size: 0.75rem;
	font-weight: 500;
}

.policy__list-has-sub-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.policy__list--mt {
	margin-top: 1.25rem;
}

.policy__item {
	padding-left: 1.125rem;
	text-indent: -0.875rem;
}

.policy__sub-list {
	margin-top: 1.25rem;
}

.policy__sub-item {
	text-indent: 0;
}

.policy__sub-sub-list {
	margin-top: 0.625rem;
}

.policy__text--mt {
	margin-top: 1.25rem;
}

.recruit__title-wrap {
	background: rgba(216, 222, 225, 0.5);
	padding-bottom: 2.84375rem;
	padding-top: 2.84375rem;
}

.recruit__title {
	font-feature-settings: "halt" on;
	color: rgba(0, 0, 0, 0.8);
	font-size: 1.1875rem;
	font-weight: 700;
	margin-left: auto;
	margin-right: auto;
	max-width: 500px;
	padding-left: 30px;
	padding-right: 30px;
}

.recruit__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 500px;
	padding-left: 30px;
	padding-right: 30px;
}

.recruit__content {
	padding-bottom: 8.8125rem;
	padding-top: 8.8125rem;
}

.recruit__text {
	color: #7B7B7B;
	font-size: clamp(12px, 4px + 0.5555555556vw, 14px);
	font-weight: 500;
	text-align: center;
}

/* ===============================================
# service-sec01
=============================================== */

.service-sec01 {
	background-color: #fff;
	padding-bottom: 0;
	padding-top: 7.5rem;
}

.service-sec01__inner {
	display: grid;
	grid-template-columns: 1fr;
}

.service-sec01__block {
	display: flex;
	flex-direction: column;
	gap: 1.875rem;
}

.service-sec01__block:not(:first-child) {
	margin-top: 7.5rem;
}

.service-sec01__lead {
	font-feature-settings: "halt" on;
	color: #001C36;
	color: var(--main-color);
	font-size: 1.1875rem;
	font-weight: 500;
	letter-spacing: 0.05em;
}

.service-sec01__lead .lead-blue {
	color: #00479D;
	color: var(--blue);
}

.service-sec01__description {
	font-feature-settings: "halt" on, "kern" off;
	font-kerning: none;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.78571;
}

.service-sec01__description .link-text {
	-webkit-text-decoration-skip: ink;
	font-weight: 700;
	text-decoration-line: underline;
	text-decoration-skip-ink: auto;
	text-decoration-style: solid;
	text-decoration-thickness: auto;
	transition: color 0.3s ease;
}

.service-sec01__image-area {
	height: -moz-fit-content;
	height: fit-content;
	position: sticky;
	top: 0;
}

.service-sec01__img {
	-o-object-fit: cover;
	aspect-ratio: 375/820;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

/* ===============================================
# service-sec02
=============================================== */

.service-sec02 {
	background: rgba(255, 255, 255, 0.4);
	border-top: 1px solid #DDD;
	padding-bottom: 7.5rem;
	padding-top: 7.5rem;
}

.service-sec02__inner {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 1.875rem;
}

.service-sec02__title {
	font-feature-settings: "halt" on;
	color: #001C36;
	color: var(--main-color);
	font-size: 1.1875rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-align: center;
}

.service-sec02__title .title-blue {
	color: #00479D;
	color: var(--blue);
}

.service-sec02__text-wrap {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.service-sec02__text {
	font-feature-settings: "halt" on, "kern" off;
	font-kerning: none;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.78571;
}

/* ===============================================
# service-sec03
=============================================== */

.service-sec03 {
	background-color: #fff;
	border-top: 1px solid #DDD;
	padding-top: 7.5rem;
}

.service-sec03__title {
	font-feature-settings: "halt" on, "kern" off;
	color: rgba(0, 0, 0, 0.8);
	font-kerning: none;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.78571;
	text-align: center;
}

.service-sec03__title--blue {
	color: #00479D;
	color: var(--blue);
}

.service-sec03__list {
	display: grid;
	grid-template-columns: 1fr;
	margin-top: 5.625rem;
}

.service-sec03__item {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	height: 100%;
}

.service-sec03__item-img-wrap {
	border-radius: 20px;
}

.service-sec03__item-img {
	-o-object-fit: cover;
	aspect-ratio: 315/231;
	border-radius: 20px;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.service-sec03__item--lifestyle-item02 .service-sec03__logo {
	aspect-ratio: 400/128;
}

.service-sec03__item-logo {
	align-items: center;
	border: 1px solid #DDD;
	display: flex;
	justify-content: center;
	min-height: 6.25rem;
	padding: 1.25rem 0.625rem;
}

.service-sec03__logo {
	-o-object-fit: contain;
	aspect-ratio: 154/41;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	max-width: 9.625rem;
	object-fit: contain;
	width: 100%;
}

.service-sec03__item--ezboat-fishing .service-sec03__logo,
.service-sec03__item--fishing-girl .service-sec03__logo {
	aspect-ratio: 125/50;
	max-width: 7.8125rem;
}

.service-sec03__item--lifestyle-item03 .service-sec03__logo {
	max-width: 13.1875rem;
}

.service-sec03__item--one-space .service-sec03__item-logo {
	padding: 0.625rem 0.625rem;
}

.service-sec03__item--one-space .service-sec03__logo {
	aspect-ratio: 202/74;
	max-width: 12.625rem;
}

.service-sec03__item-content {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.service-sec03__item-title {
	font-feature-settings: "halt" on, "kern" off;
	font-kerning: none;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.78571;
}

.service-sec03__item-description {
	font-feature-settings: "halt" on, "kern" off;
	font-kerning: none;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.78571;
}

.service-sec03__btn {
	margin-left: auto;
	margin-right: auto;
}

.service-sec03__btn.link-btn {
	text-transform: none;
}

/* ===============================================
# service-sec04
=============================================== */

.service-sec04 {
	background-color: #fff;
	border-top: 1px solid #DDD;
	padding-top: 6.25rem;
}

.service-sec04__text-wrap {
	align-items: center;
	display: flex;
	flex-direction: column;
}

.service-sec04__lead {
	color: #00479D;
	color: var(--blue);
	font-size: 1.125rem;
	font-weight: 700;
	text-align: center;
}

.service-sec04__description {
	color: rgba(0, 0, 0, 0.8);
	font-size: 0.8125rem;
	font-weight: 700;
	line-height: 1.875;
}

.service-sec04__btn-wrap {
	margin-top: 3.125rem;
	text-align: center;
}

.service-sec04__btn {
	-webkit-clip-path: polygon(0% 0%, 0% 100%, calc(100% - 11px) 100%, 100% 80%, 100% 100%, 100% 100%, 100% 0%);
	align-items: center;
	background-color: #00479D;
	background-color: var(--blue);
	border: medium none currentColor;
	border: initial;
	clip-path: polygon(0% 0%, 0% 100%, calc(100% - 11px) 100%, 100% 80%, 100% 100%, 100% 100%, 100% 0%);
	color: #fff;
	display: flex;
	height: 100%;
	height: 2.9375rem;
	justify-content: center;
	letter-spacing: 0.04em;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	text-align: center;
	transition: background-color 0.3s ease-in-out, color 0.3s ease;
	width: 100%;
	z-index: 1;
}

.service-sec04__btn::after {
	-webkit-clip-path: polygon(0% 0%, 0% 100%, calc(100% - 11px) 100%, 100% 80%, 100% 100%, 100% 100%, 100% 0%);
	background-color: #00479D;
	background-color: var(--blue);
	bottom: 0;
	clip-path: polygon(0% 0%, 0% 100%, calc(100% - 11px) 100%, 100% 80%, 100% 100%, 100% 100%, 100% 0%);
	content: "";
	display: block;
	height: calc(100% - 2px);
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
	transition: background-color 0.3s ease;
	width: calc(100% - 2px);
	z-index: -1;
}

.service-sec04__btn-text {
	font-family: "Work Sans", sans-serif;
	font-family: var(--font-family-second);
	font-size: 0.8125rem;
	font-weight: 600;
}

.service-sec04__btn-text--arrow {
	position: relative;
}

.service-sec04__btn-text--arrow::after {
	content: "\e0b2";
	display: block;
	font-family: "Material Icons Round";
	font-size: 1.25rem;
	font-weight: 400;
	position: absolute;
	right: -1.875rem;
	top: 50%;
	transform: translateY(-50%);
}

/* ===============================================
# service-slide
=============================================== */

.service-slide {
	background: #fff;
	border-top: 1px solid #DDD;
	overflow-x: clip;
	padding-bottom: 5rem;
	padding-top: 5rem;
}

.service-slide__content {
	-ms-overflow-style: none;
	display: block;
	margin-left: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
	margin-left: calc(50% - 50vi);
	margin-right: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-right: calc(50% - 50vi);
	overflow-x: auto;
	padding-bottom: 2rem;
	padding-left: 30px;
	padding-right: 30px;
	scrollbar-width: none;
}

.service-slide__title {
	font-feature-settings: "halt" on;
	color: #001C36;
	color: var(--main-color);
	font-size: 1.1875rem;
	font-weight: 500;
	letter-spacing: 0.05em;
}

.service-slide__title .title-blue {
	color: #00479D;
	color: var(--blue);
}

.service-slide__scroll-wrap {
	position: relative;
}

.custom-scrollbar {
	background-color: #7B7B7B;
	bottom: 0;
	cursor: pointer;
	height: 4px;
	left: 0;
	position: absolute;
	transition: width 0.1s ease;
	width: 0%;
}

.service-slide__content::-webkit-scrollbar {
	display: none;
}

.service-slide__list {
	grid-gap: 1.875rem;
	display: grid;
	gap: 1.875rem;
	grid-auto-columns: 15rem;
	grid-auto-flow: column;
	margin-top: 1.625rem;
	width: -moz-fit-content;
	width: fit-content;
}

.no-select {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

/* ===============================================
# service-flow
=============================================== */

.service-flow {
	padding-bottom: 3.125rem;
	padding-top: 3.125rem;
}

.service-flow__title {
	font-feature-settings: "halt" on;
	color: #001C36;
	color: var(--main-color);
	font-size: 1.1875rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-align: center;
}

.service-flow__title .title-blue {
	color: #00479D;
	color: var(--blue);
}

.service-flow__lead {
	font-feature-settings: "halt" on, "kern" off;
	font-kerning: none;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.78571;
	margin-top: 0.9375rem;
	padding-bottom: 1.25rem;
	padding-top: 1.25rem;
}

.service-flow__list {
	display: flex;
	flex-direction: column;
	gap: 0.1875rem;
	margin-top: 0.9375rem;
}

.service-flow__item {
	background-color: #fff;
	border-radius: 10px;
	display: grid;
	grid-template-columns: 1fr;
	padding: 0.625rem 1.25rem 1.25rem 1.25rem;
}

.service-flow__step {
	color: #00479D;
	color: var(--blue);
	font-family: "Work Sans", sans-serif;
	font-family: var(--font-family-second);
	font-size: 1.4375rem;
	font-weight: 200;
	line-height: 1.30435;
	text-align: center;
}

.service-flow__subtitle {
	font-size: 0.8125rem;
	font-weight: 700;
}

.service-flow__text {
	font-feature-settings: "halt" on, "kern" off;
	font-kerning: none;
	font-size: 0.75rem;
	font-weight: 500;
	margin-top: 0.4375rem;
}

.single-journal {
	container-type: inline-size;
	padding-top: 3.125rem;
}

.single-journal__header {
	position: relative;
}

.single-journal__bg {
	background: rgba(216, 222, 225, 0.5);
	height: 30%;
	height: calc(100% + 8.625rem);
	left: 50%;
	position: absolute;
	top: -3.125rem;
	translate: -50% 0;
	width: 100cqi;
	z-index: -1;
}

.single-journal__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 500px;
	padding-left: 30px;
	padding-right: 30px;
}

.single-journal__meta {
	align-items: center;
	display: flex;
	gap: 1.3125rem;
}

.single-journal__meta-date,
.single-journal__meta-category {
	align-items: center;
	display: flex;
	gap: 0.3125rem;
}

.single-journal__meta-date-icon {
	color: #7B7B7B;
	font-family: "Material Icons Round";
	font-size: clamp(10px, 2px + 0.5555555556vw, 12px);
	font-weight: 400;
}

.single-journal__date {
	color: #7B7B7B;
	font-family: "Work Sans", sans-serif;
	font-family: var(--font-family-second);
	font-size: clamp(10px, 2px + 0.5555555556vw, 12px);
	font-weight: 500;
}

.single-journal__meta-category-icon {
	color: #7B7B7B;
	font-family: "Material Icons Round";
	font-size: clamp(10px, 2px + 0.5555555556vw, 12px);
	font-weight: 400;
}

.single-journal__category {
	color: #7B7B7B;
	font-family: "Work Sans", sans-serif;
	font-family: var(--font-family-second);
	font-size: clamp(10px, 2px + 0.5555555556vw, 12px);
	font-weight: 500;
}

.single-journal__title {
	font-feature-settings: "halt" on;
	color: rgba(0, 0, 0, 0.8);
	font-size: 1.1875rem;
	font-weight: 700;
	margin-top: 1.25rem;
}

.single-journal__img-wrap {
	-webkit-clip-path: polygon(0% 0%, 0% 100%, 98% 100%, 100% 95%, 100% 100%, 100% 100%, 100% 0%);
	clip-path: polygon(0% 0%, 0% 100%, 98% 100%, 100% 95%, 100% 100%, 100% 100%, 100% 0%);
	margin-top: 1.625rem;
}

.single-journal__img {
	-o-object-fit: cover;
	aspect-ratio: 315/161.16;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.single-journal__content {
	margin-top: 3.125rem;
}

.single-journal__content h2 {
	font-size: 24px;
	font-weight: 700;
	margin-top: 15px;
}

.single-journal__content h3 {
	font-size: 22px;
	font-weight: 700;
	margin-top: 15px;
}

.single-journal__content h4 {
	font-size: 20px;
	font-weight: 700;
	margin-top: 15px;
}

.single-journal__content h5 {
	font-size: 18px;
	font-weight: 700;
	margin-top: 15px;
}

.single-journal__content p {
	font-feature-settings: "halt" on, "kern" off;
	font-kerning: none;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.8;
	margin-top: 15px;
}

.single-journal__content ul {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-top: 15px;
}

.single-journal__content ul li {
	font-size: 15px;
	padding-left: 12px;
	text-indent: -5px;
}

.single-journal__content ul li::before {
	background-color: #333;
	border-radius: 50%;
	content: "";
	display: inline-block;
	height: 6px;
	margin-right: 5px;
	position: relative;
	top: -2px;
	width: 6px;
}

.single-journal__content ol {
	counter-reset: number;
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-top: 15px;
}

.single-journal__content ol li {
	font-size: 15px;
	padding-left: 16px;
	text-indent: -3px;
}

.single-journal__content ol li::before {
	color: #333;
	content: counter(number) ".";
	counter-increment: number;
	display: inline-block;
	line-height: 1;
	margin-right: 5px;
}

.single-journal__content figure {
	margin-top: 15px;
}

.single-journal__content a {
	-webkit-text-decoration: underline;
	font-size: 15px;
	text-decoration: underline;
	transition: color 0.3s ease;
}

.single-journal__link {
	display: flex;
	justify-content: center;
	margin-top: 3.125rem;
}

.single-news {
	container-type: inline-size;
	padding-top: 3.125rem;
}

.single-news__header {
	position: relative;
}

.single-news__bg {
	background: rgba(216, 222, 225, 0.5);
	height: 30%;
	height: calc(100% + 8.625rem);
	left: 50%;
	position: absolute;
	top: -3.125rem;
	translate: -50% 0;
	width: 100cqi;
	z-index: -1;
}

.single-news__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 500px;
	padding-left: 30px;
	padding-right: 30px;
}

.single-news__meta {
	align-items: center;
	display: flex;
	gap: 1.3125rem;
}

.single-news__meta-date {
	align-items: center;
	display: flex;
	gap: 0.3125rem;
}

.single-news__meta-date-icon {
	color: #7B7B7B;
	font-family: "Material Icons Round";
	font-size: clamp(10px, 2px + 0.5555555556vw, 12px);
	font-weight: 400;
}

.single-news__date {
	color: #7B7B7B;
	font-family: "Work Sans", sans-serif;
	font-family: var(--font-family-second);
	font-size: clamp(10px, 2px + 0.5555555556vw, 12px);
	font-weight: 500;
}

.single-news__title {
	font-feature-settings: "halt" on;
	color: rgba(0, 0, 0, 0.8);
	font-size: 1.1875rem;
	font-weight: 700;
	margin-top: 1.25rem;
}

.single-news__img-wrap {
	-webkit-clip-path: polygon(0% 0%, 0% 100%, 98% 100%, 100% 95%, 100% 100%, 100% 100%, 100% 0%);
	clip-path: polygon(0% 0%, 0% 100%, 98% 100%, 100% 95%, 100% 100%, 100% 100%, 100% 0%);
	margin-top: 1.625rem;
}

.single-news__img {
	-o-object-fit: cover;
	aspect-ratio: 315/161.16;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.single-news__content {
	margin-top: 3.125rem;
}

.single-news__content h2 {
	font-size: 24px;
	font-weight: 700;
	margin-top: 15px;
}

.single-news__content h3 {
	font-size: 22px;
	font-weight: 700;
	margin-top: 15px;
}

.single-news__content h4 {
	font-size: 20px;
	font-weight: 700;
	margin-top: 15px;
}

.single-news__content h5 {
	font-size: 18px;
	font-weight: 700;
	margin-top: 15px;
}

.single-news__content p {
	font-feature-settings: "halt" on, "kern" off;
	font-kerning: none;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.8;
	margin-top: 15px;
}

.single-news__content ul {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-top: 15px;
}

.single-news__content ul li {
	font-size: 15px;
	padding-left: 12px;
	text-indent: -5px;
}

.single-news__content ul li::before {
	background-color: #333;
	border-radius: 50%;
	content: "";
	display: inline-block;
	height: 6px;
	margin-right: 5px;
	position: relative;
	top: -2px;
	width: 6px;
}

.single-news__content ol {
	counter-reset: number;
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-top: 15px;
}

.single-news__content ol li {
	font-size: 15px;
	padding-left: 16px;
	text-indent: -3px;
}

.single-news__content ol li::before {
	color: #333;
	content: counter(number) ".";
	counter-increment: number;
	display: inline-block;
	line-height: 1;
	margin-right: 5px;
}

.single-news__content figure {
	margin-top: 15px;
}

.single-news__content a {
	-webkit-text-decoration: underline;
	font-size: 15px;
	text-decoration: underline;
	transition: color 0.3s ease;
}

.single-news__link {
	display: flex;
	justify-content: center;
	margin-top: 3.125rem;
}

.top-journal {
	background: rgba(255, 255, 255, 0.8);
	overflow-x: clip;
	padding-bottom: 7.5rem;
	padding-top: 7.125rem;
}

.top-journal__content {
	-ms-overflow-style: none;
	display: block;
	margin-left: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
	margin-left: calc(50% - 50vi);
	margin-right: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-right: calc(50% - 50vi);
	overflow-x: auto;
	padding-bottom: 2rem;
	padding-left: 30px;
	padding-right: 30px;
	scrollbar-width: none;
}

.top-journal__scroll-wrap {
	position: relative;
}

.custom-scrollbar {
	background-color: #7B7B7B;
	bottom: 0;
	cursor: pointer;
	height: 4px;
	left: 0;
	position: absolute;
	transition: width 0.1s ease;
	width: 0%;
}

.top-journal__content::-webkit-scrollbar {
	display: none;
}

.top-journal__list {
	grid-gap: 1.9375rem;
	display: grid;
	gap: 1.9375rem;
	grid-auto-columns: 15rem;
	grid-auto-flow: column;
	margin-top: 1.625rem;
	width: -moz-fit-content;
	width: fit-content;
}

.no-select {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.top-news {
	background: rgba(255, 255, 255, 0.6);
}

.top-news__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 500px;
}

.top-news__content {
	grid-gap: 3.75rem;
	display: grid;
	gap: 3.75rem;
}

.top-news__img-wrap {
	-webkit-clip-path: polygon(0% 0%, 0% 100%, 97% 100%, 100% 95%, 100% 100%, 100% 100%, 100% 0%);
	clip-path: polygon(0% 0%, 0% 100%, 97% 100%, 100% 95%, 100% 100%, 100% 100%, 100% 0%);
}

.top-news__img {
	-o-object-fit: cover;
	aspect-ratio: 375/221.9;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.top-news__text-content {
	display: flex;
	flex-direction: column;
	gap: 0.9375rem;
}

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

.top-news__title {
	color: #00479D;
	color: var(--blue);
	font-family: "Work Sans", sans-serif;
	font-family: var(--font-family-second);
	font-size: 1.5625rem;
	font-weight: 200;
}

.top-news__link {
	font-feature-settings: "halt" on, "kern" off;
	font-kerning: none;
	font-size: 0.9375rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1;
	padding-bottom: 0.3125rem;
	padding-top: 0.3125rem;
	position: relative;
	transition: color 0.3s ease-in-out;
}

.top-news__link::before {
	background-color: #00479D;
	background-color: var(--blue);
	bottom: 0;
	content: "";
	height: 1px;
	left: 50%;
	position: absolute;
	transform: scale(1, 1);
	transform-origin: left top;
	transition: transform 0.2s ease-in-out;
	translate: -50% 0;
	width: 100%;
}

.top-news__link:hover::before {
	transform: scale(0, 1);
	transform-origin: right top;
}

.top-our-service {
	background: rgba(255, 255, 255, 0.6);
}

.top-our-service__text-content {
	max-width: 500px;
	padding-bottom: 3.75rem;
	padding-left: 1.875rem;
	padding-right: 1.875rem;
}

.top-our-service__sub-title {
	margin-top: 1.6875rem;
}

.top-our-service__description {
	margin-top: 1.875rem;
}

.accordion-list {
	display: flex;
	gap: 0.3125rem;
}

.accordion-item {
	-webkit-clip-path: polygon(0% 0%, 0% 100%, calc(100% - 10px) 100%, 100% calc(100% - 10px), 100% 100%, 100% 100%, 100% 0%);
	background-color: #001C36;
	background-color: var(--main-color);
	clip-path: polygon(0% 0%, 0% 100%, calc(100% - 10px) 100%, 100% calc(100% - 10px), 100% 100%, 100% 100%, 100% 0%);
}

.accordion-title {
	align-items: center;
	background-color: #001C36;
	background-color: var(--main-color);
	display: flex;
	gap: 1.25rem;
	padding: 1.25rem 1.875rem;
	text-align: left;
}

.accordion-title__arrow {
	color: #00479D;
	color: var(--blue);
	font-family: "Material Icons Round";
	font-size: 0.875rem;
	font-weight: 400;
	text-align: center;
	transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
	writing-mode: initial;
}

.accordion-item:not(.is-open) .accordion-title__arrow {
	color: #FFF;
	transform: rotate(90deg);
}

.accordion-title__text {
	background-color: #001C36;
	background-color: var(--main-color);
	color: #FFF;
	font-family: "Yu Gothic", "游ゴシック", "Zen Kaku Gothic New", sans-serif;
	font-family: var(--font-family-base);
	font-size: 0.875rem;
	font-weight: 700;
}

.accordion-content {
	width: 100%;
}

.accordion-content__title {
	color: #FFF;
	font-family: "Yu Gothic", "游ゴシック", "Zen Kaku Gothic New", sans-serif;
	font-family: var(--font-family-base);
	font-size: 0.875rem;
	font-weight: 500;
}

.accordion-content__img-wrap {
	height: 100%;
	margin-top: 2.1875rem;
	width: 100%;
}

.accordion-content__img {
	-o-object-fit: cover;
	aspect-ratio: 430/220;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.accordion-content__category {
	font-feature-settings: "halt" on, "kern" off;
	border: 1px solid #FFF;
	color: #FFF;
	display: block;
	font-family: "Yu Gothic", "游ゴシック", "Zen Kaku Gothic New", sans-serif;
	font-family: var(--font-family-base);
	font-kerning: none;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.78571;
	margin-top: 2.4375rem;
	padding-left: 0.625rem;
	padding-right: 0.625rem;
	width: 100%;
}

.accordion-content__description {
	font-feature-settings: "halt" on, "kern" off;
	color: #FFF;
	font-family: "Yu Gothic", "游ゴシック", "Zen Kaku Gothic New", sans-serif;
	font-family: var(--font-family-base);
	font-kerning: none;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.8;
	margin-top: 1.25rem;
}

.accordion-content__link-wrap {
	margin-top: 2.1875rem;
}

.top-what-we-do {
	padding-bottom: 7.5rem;
}

.top-what-we-do__content {
	display: grid;
	margin-top: 1.6875rem;
}

.top-what-we-do__text-block {
	position: relative;
}

.top-what-we-do__text-block::before {
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	background: #FFF;
	content: "";
	display: block;
	height: 100%;
	left: -3.125rem;
	opacity: 0.5;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.top-what-we-do__description {
	margin-top: 1.25rem;
}

.top-what-we-do__link-wrap {
	margin-top: 3.125rem;
}

.top-what-we-do__video {
	-o-object-fit: cover;
	aspect-ratio: 375/203;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

/* ===============================================
# フェードアニメーション：IntersectionObserver＆GSAP用
=============================================== */

/* 左方向にスライド */

.js-slide-left {
	opacity: 0;
	transition: opacity 1s ease-out, translate 1s ease-out;
	translate: -20px 0;
}

.js-slide-left.is-active {
	opacity: 1;
	translate: 0 0;
}

/* 右方向にスライド */

.js-slide-right {
	opacity: 0;
	transition: opacity 1s ease-out, translate 1s ease-out;
	translate: 20px 0;
}

.js-slide-right.is-active {
	opacity: 1;
	translate: 0 0;
}

/* クリップパス */

.js-clip-img,
.js-clip-img-rootMargin-110 {
	overflow: hidden;
}

.js-clip-img img,
.js-clip-img-rootMargin-110 img {
	-webkit-clip-path: inset(0 100% 0 0);
	clip-path: inset(0 100% 0 0);
	scale: 1.3;
	transition: scale 1s cubic-bezier(0.48, 0.07, 0.33, 0.79), -webkit-clip-path 1s cubic-bezier(0.48, 0.07, 0.33, 0.79);
	transition: scale 1s cubic-bezier(0.48, 0.07, 0.33, 0.79), clip-path 1s cubic-bezier(0.48, 0.07, 0.33, 0.79);
	transition: scale 1s cubic-bezier(0.48, 0.07, 0.33, 0.79), clip-path 1s cubic-bezier(0.48, 0.07, 0.33, 0.79), -webkit-clip-path 1s cubic-bezier(0.48, 0.07, 0.33, 0.79);
}

.js-clip-img.is-active img,
.js-clip-img-rootMargin-110.is-active img {
	-webkit-clip-path: inset(0 0 0 0);
	clip-path: inset(0 0 0 0);
	scale: 1;
}

.js-clip-video,
.js-clip-video-rootMargin-110 {
	overflow: hidden;
}

.js-clip-video video,
.js-clip-video-rootMargin-110 video {
	-webkit-clip-path: inset(0 100% 0 0);
	clip-path: inset(0 100% 0 0);
	scale: 1.3;
	transition: scale 1s cubic-bezier(0.48, 0.07, 0.33, 0.79), -webkit-clip-path 1s cubic-bezier(0.48, 0.07, 0.33, 0.79);
	transition: scale 1s cubic-bezier(0.48, 0.07, 0.33, 0.79), clip-path 1s cubic-bezier(0.48, 0.07, 0.33, 0.79);
	transition: scale 1s cubic-bezier(0.48, 0.07, 0.33, 0.79), clip-path 1s cubic-bezier(0.48, 0.07, 0.33, 0.79), -webkit-clip-path 1s cubic-bezier(0.48, 0.07, 0.33, 0.79);
}

.js-clip-video.is-active video,
.js-clip-video-rootMargin-110.is-active video {
	-webkit-clip-path: inset(0 0 0 0);
	clip-path: inset(0 0 0 0);
	scale: 1;
	transition-delay: 0.3s;
	transition-delay: var(--delay-3);
}

/* ジャーナル一覧 */

.js-journal-slide-right .top-journal__item,
.js-journal-slide-right .service-slide__item {
	opacity: 0;
	transition: opacity 1s ease-out, translate 1s ease-out;
	translate: 30px 0;
}

.js-journal-slide-right.is-active .top-journal__item,
.js-journal-slide-right.is-active .service-slide__item {
	opacity: 1;
	translate: 0 0;
}

/* ニュース一覧 */

.js-news-slide-right .news-list__item {
	opacity: 0;
	transition: opacity 1s ease-out, translate 1s ease-out;
	translate: 30px 0;
}

.js-news-slide-right .news-list__item:nth-child(1) {
	transition-delay: 0.1s;
}

.js-news-slide-right .news-list__item:nth-child(2) {
	transition-delay: 0.2s;
}

.js-news-slide-right .news-list__item:nth-child(3) {
	transition-delay: 0.3s;
}

.js-news-slide-right .news-list__item:nth-child(4) {
	transition-delay: 0.4s;
}

.js-news-slide-right .news-list__item:nth-child(5) {
	transition-delay: 0.5s;
}

.js-news-slide-right .news-list__item:nth-child(6) {
	transition-delay: 0.6s;
}

.js-news-slide-right .news-list__item:nth-child(7) {
	transition-delay: 0.7s;
}

.js-news-slide-right .news-list__item:nth-child(8) {
	transition-delay: 0.8s;
}

.js-news-slide-right .news-list__item:nth-child(9) {
	transition-delay: 0.9s;
}

.js-news-slide-right .news-list__item:nth-child(10) {
	transition-delay: 1s;
}

.js-news-slide-right.is-active .news-list__item {
	opacity: 1;
	translate: 0 0;
}

/* ブランドストーリー */

.js-value-list .brand-story__value-item {
	opacity: 0;
	transition: opacity 1s ease-out, translate 1s ease-out;
	translate: 30px 0;
}

.js-value-list .brand-story__value-item:nth-child(1) {
	transition-delay: 0.2s;
}

.js-value-list .brand-story__value-item:nth-child(2) {
	transition-delay: 0.3s;
}

.js-value-list .brand-story__value-item:nth-child(3) {
	transition-delay: 0.4s;
}

.js-value-list.is-active .brand-story__value-item {
	opacity: 1;
	translate: 0 0;
}

/* ブランドストーリー */

.js-future-list .brand-story__future-item {
	opacity: 0;
	transition: opacity 1s ease-out, translate 1s ease-out;
	translate: 30px 0;
}

.js-future-list .brand-story__future-item:nth-child(1) {
	transition-delay: 0.2s;
}

.js-future-list .brand-story__future-item:nth-child(2) {
	transition-delay: 0.3s;
}

.js-future-list .brand-story__future-item:nth-child(3) {
	transition-delay: 0.4s;
}

.js-future-list .brand-story__future-item:nth-child(4) {
	transition-delay: 0.6s;
}

.js-future-list .brand-story__future-item:nth-child(5) {
	transition-delay: 0.7s;
}

.js-future-list.is-active .brand-story__future-item {
	opacity: 1;
	translate: 0 0;
}

.js-company-list .company__history-item,
.js-company-list .company__info-item {
	opacity: 0;
	transition: opacity 1s ease-out, translate 1s ease-out;
	transition-delay: calc(var(--index) * 0.1s);
	translate: 30px 0;
}

.js-company-list.is-active .company__history-item,
.js-company-list.is-active .company__info-item {
	opacity: 1;
	translate: 0 0;
}

:root {
	--delay-1: 0.1s;
	--delay-2: 0.2s;
	--delay-3: 0.3s;
	--delay-4: 0.4s;
	--delay-5: 0.5s;
}

.--delay-1 {
	transition-delay: 0.1s;
	transition-delay: var(--delay-1);
}

.--delay-2 {
	transition-delay: 0.2s;
	transition-delay: var(--delay-2);
}

.--delay-3 {
	transition-delay: 0.3s;
	transition-delay: var(--delay-3);
}

.--delay-4 {
	transition-delay: 0.4s;
	transition-delay: var(--delay-4);
}

.--delay-5 {
	transition-delay: 0.5s;
	transition-delay: var(--delay-5);
}

.breadcrumbs__list {
	align-items: center;
	display: flex;
	gap: 0.625rem;
	justify-content: center;
}

.breadcrumbs__link {
	color: rgba(0, 0, 0, 0.8);
	display: block;
	font-family: "Work Sans", sans-serif;
	font-family: var(--font-family-second);
	font-size: 0.75rem;
	font-weight: 400;
	letter-spacing: -0.132px;
	line-height: 1.5;
	text-align: center;
	transition: color 0.3s ease, opacity 0.3s ease;
	white-space: nowrap;
}

.material-symbols-rounded.breadcrumbs__separator {
	color: #7B7B7B;
	display: block;
	font-family: "Material Icons Round";
	font-size: 0.75rem;
	font-weight: 400;
}

.breadcrumbs__current {
	color: #7B7B7B;
	display: block;
	display: block;
	font-family: "Work Sans", sans-serif;
	font-family: var(--font-family-second);
	font-size: 0.75rem;
	font-weight: 400;
	letter-spacing: -0.132px;
	line-height: 1.5;
	text-align: center;
	white-space: nowrap;
}

.card-item__link {
	display: block;
	height: 100%;
	transition: opacity 0.3s ease-in-out;
}

.card-item__img-wrap {
	-webkit-clip-path: polygon(0% 0%, 0% 100%, 95% 100%, 100% 90%, 100% 100%, 100% 100%, 100% 0%);
	clip-path: polygon(0% 0%, 0% 100%, 95% 100%, 100% 90%, 100% 100%, 100% 100%, 100% 0%);
	overflow: hidden;
}

.card-item__img {
	-o-object-fit: cover;
	-webkit-clip-path: polygon(0% 0%, 0% 100%, 95% 100%, 100% 90%, 100% 100%, 100% 100%, 100% 0%);
	aspect-ratio: 430/220;
	clip-path: polygon(0% 0%, 0% 100%, 95% 100%, 100% 90%, 100% 100%, 100% 100%, 100% 0%);
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease-in-out;
	width: 100%;
}

.service-slide__item .card-item__img {
	aspect-ratio: 320/164;
}

.service-slide__item .card-item__title {
	margin-top: 0.375rem;
}

.service-slide__item .card-item__date {
	margin-top: 0.5rem;
}

.card-item__date {
	color: #7B7B7B;
	display: inline-block;
	font-family: "Work Sans", sans-serif;
	font-family: var(--font-family-second);
	font-size: 0.625rem;
	font-weight: 500;
	margin-top: 1rem;
}

.card-item__title {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	color: rgba(0, 0, 0, 0.8);
	display: -webkit-box;
	font-family: "Yu Gothic", "游ゴシック", "Zen Kaku Gothic New", sans-serif;
	font-family: var(--font-family-base);
	font-size: 0.8125rem;
	font-weight: 700;
	height: 3em;
	line-height: 1.5;
	margin-top: 0.1875rem;
	overflow: hidden;
}

.card-item__text {
	-webkit-box-orient: vertical;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	color: #7B7B7B;
	display: -webkit-box;
	font-family: "Work Sans", sans-serif;
	font-family: var(--font-family-second);
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.5;
	margin-top: 0.5rem;
	overflow: hidden;
}

#scroll-content {
	cursor: grab;
}

.footer {
	background-color: #fff;
	padding-bottom: 1.875rem;
	padding-top: 10rem;
}

.footer__inner {
	padding-left: 1.875rem;
	padding-right: 1.875rem;
}

.footer__pc-nav-list {
	align-items: center;
	border-bottom: 1px solid #001C36;
	border-bottom: 1px solid var(--main-color);
	border-top: 1px solid #001C36;
	border-top: 1px solid var(--main-color);
	display: flex;
	justify-content: center;
	padding: 1.875rem 1.25rem;
}

.footer__pc-nav-item:last-child .footer__pc-nav-link {
	border-right: none;
}

.footer__pc-nav-link {
	border-right: 1px solid #001C36;
	border-right: 1px solid var(--main-color);
	padding: 0.9375rem 4.1875rem;
}

.footer__pc-nav-link-text {
	color: rgba(0, 0, 0, 0.8);
	font-family: "Work Sans", sans-serif;
	font-family: var(--font-family-second);
	font-size: 1rem;
	font-weight: 700;
	position: relative;
	text-transform: uppercase;
	transition: color 0.5s cubic-bezier(0.6, 0, 0, 1);
}

.footer__pc-nav-link-text::after {
	background-color: #00479D;
	background-color: var(--blue);
	bottom: -1px;
	content: "";
	height: 1px;
	left: 50%;
	position: absolute;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform 0.5s cubic-bezier(0.6, 0, 0, 1);
	translate: -50% 0;
	width: 100%;
}

.footer__pc-services-list {
	align-items: center;
	border-bottom: 1px solid #001C36;
	border-bottom: 1px solid var(--main-color);
	display: flex;
	gap: 2.5rem;
	justify-content: center;
	padding-bottom: 1.875rem;
	padding-top: 1.875rem;
}

.footer__pc-services-link {
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.5;
	position: relative;
	transition: color 0.5s cubic-bezier(0.6, 0, 0, 1);
}

.footer__pc-services-link::after {
	background-color: #00479D;
	background-color: var(--blue);
	bottom: -1px;
	content: "";
	height: 1px;
	left: 50%;
	position: absolute;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform 0.5s cubic-bezier(0.6, 0, 0, 1);
	translate: -50% 0;
	width: 100%;
}

.footer__bottom {
	align-items: center;
	display: flex;
	gap: 1.875rem;
}

.footer__info {
	align-items: center;
	display: flex;
	gap: 0.1875rem;
}

.footer__company,
.footer__address,
.footer__tel {
	font-size: 0.625rem;
	font-weight: 500;
}

.footer__logo {
	transition: opacity 0.3s ease;
	width: 10.75rem;
}

.footer__logo-img {
	-o-object-fit: contain;
	aspect-ratio: 172/50;
	height: auto;
	object-fit: contain;
	width: 100%;
}

.footer__policy-list {
	align-items: center;
	display: flex;
	gap: 0.875rem;
}

.footer__policy-link {
	font-size: 0.75rem;
	font-weight: 500;
}

.footer__copyright {
	color: rgba(0, 0, 0, 0.8);
	display: block;
	font-family: "Work Sans", sans-serif;
	font-family: var(--font-family-second);
	font-size: 0.625rem;
	font-weight: 500;
	margin-top: 3.125rem;
	text-align: center;
}

/* mobile */

.footer__mobile-nav-list {
	display: flex;
	flex-direction: column;
}

.footer__mobile-nav-item {
	border-bottom: 1px solid #001C36;
	border-bottom: 1px solid var(--main-color);
	display: block;
	padding-bottom: 1.25rem;
	padding-top: 1.3125rem;
}

.footer__mobile-nav-item:first-child {
	border-top: 1px solid #001C36;
	border-top: 1px solid var(--main-color);
}

.footer__mobile-nav-link-text {
	color: rgba(0, 0, 0, 0.8);
	font-family: "Work Sans", sans-serif;
	font-family: var(--font-family-second);
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
}

.footer__mobile-nav-btn {
	display: block;
	text-align: left;
}

.footer__mobile-nav-btn .footer__mobile-nav-link-text {
	display: block;
	position: relative;
}

.footer__mobile-nav-btn .footer__mobile-nav-link-text::before,
.footer__mobile-nav-btn .footer__mobile-nav-link-text::after {
	background: #3B73CA;
	content: "";
	position: absolute;
	top: 50%;
	translate: 0 -50%;
}

.footer__mobile-nav-btn .footer__mobile-nav-link-text::before {
	height: 0.0625rem;
	right: 0.5rem;
	width: 0.9375rem;
}

.footer__mobile-nav-btn .footer__mobile-nav-link-text::after {
	height: 0.9375rem;
	right: 0.9375rem;
	transition: rotate 0.3s ease;
	width: 0.0625rem;
}

.footer__mobile-nav-btn.is-open .footer__mobile-nav-link-text::after {
	rotate: 90deg;
}

.footer__mobile-nav-sub {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-in-out;
}

.footer__mobile-nav-sub-list {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	margin-top: 1.25rem;
}

.footer__mobile-nav-sub-link {
	font-family: "Yu Gothic", "游ゴシック", "Zen Kaku Gothic New", sans-serif;
	font-family: var(--font-family-base);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.05em;
}

.footer__breadcrumb {
	padding-bottom: 3.125rem;
}

.footer__breadcrumb--news {
	position: relative;
	z-index: 2;
}

.header {
	background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
	bottom: auto;
	height: 3.75rem;
	left: 0;
	pointer-events: none;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1000;
	z-index: var(--z-index-header);
}

.header__inner {
	align-items: center;
	display: grid;
	grid-template-columns: 4.9583125rem auto;
	height: 100%;
	justify-content: space-between;
	padding-left: 1.1875rem;
	padding-right: 1.0625rem;
}

.header__logo-link {
	display: inline-block;
	pointer-events: auto;
	transition: opacity 0.3s ease;
}

.header__logo-img {
	-o-object-fit: contain;
	height: auto;
	object-fit: contain;
	width: 100%;
}

.header__nav {
	height: 100%;
}

.header__nav-list {
	align-items: center;
	display: flex;
	gap: 2.625rem;
	height: 100%;
}

.header__nav-link {
	color: #001C36;
	color: var(--main-color);
	font-family: "Work Sans", sans-serif;
	font-family: var(--font-family-second);
	font-size: clamp(12px, 9.7142857143px + 0.2976190476vw, 14px);
	font-weight: 600;
	pointer-events: auto;
	text-transform: uppercase;
	transition: color 0.3s ease-in-out;
}

.header__nav-link--service {
	padding-bottom: 1.25rem;
	padding-top: 1.25rem;
}

.header__nav-text {
	padding-bottom: 0.1875rem;
	padding-top: 0.1875rem;
	position: relative;
}

.header__nav-text::before {
	background-color: #00479D;
	background-color: var(--blue);
	bottom: 0;
	content: "";
	height: 1px;
	left: 50%;
	position: absolute;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform 0.6s cubic-bezier(0.6, 0, 0, 1);
	translate: -50% 0;
	width: 100%;
}

.header__nav-link.is-current .header__nav-text::before {
	transform: scale(1, 1);
}

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

.header__nav-link--contact {
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid #001C36;
	border: 1px solid var(--main-color);
	border-radius: 100px;
	line-height: 1;
	padding: clamp(7px, 3.5714285714px + 0.4464285714vw, 10px) 2.32421875rem;
	transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

/* ===============================================
# サブナビゲーション
=============================================== */

.header__sub-nav-service {
	height: -moz-fit-content;
	height: fit-content;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	right: 2.625rem;
	top: calc(var(--header-height) - 3.125rem);
	transition: opacity 0.3s ease, visibility 0.3s ease;
	visibility: hidden;
	width: -moz-fit-content;
	width: fit-content;
}

.header__sub-nav-service.is-active {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.header__sub-nav-service-inner {
	background-color: #FFF;
	border-radius: 10px;
	box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
	display: inline-block;
	max-width: 790px;
	padding: 1.875rem 2.5rem;
}

.header__sub-nav-service-list {
	grid-row-gap: 1.5625rem;
	grid-column-gap: 1.25rem;
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	display: grid;
	grid-template-columns: repeat(3, max-content);
	row-gap: 1.5625rem;
}

.header__sub-nav-service-item {
	display: block;
}

.header__sub-nav-service-link {
	grid-gap: 0.625rem;
	align-items: center;
	display: grid;
	gap: 0.625rem;
	grid-template-columns: 3.125rem auto;
}

.header__sub-nav-service.is-active .header__sub-nav-service-img {
	opacity: 1;
	transition-delay: 0.1s;
	translate: 0 0;
}

.header__sub-nav-service-img {
	-o-object-fit: cover;
	aspect-ratio: 1/1;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.5s cubic-bezier(0.13, 0.78, 0.38, 0.98), translate 0.5s cubic-bezier(0.13, 0.78, 0.38, 0.98);
	transition-delay: 0.1s;
	translate: -10px 0;
	width: 100%;
}

.header__sub-nav-service-text {
	font-feature-settings: "kern" off;
	color: #001C36;
	color: var(--main-color);
	font-family: "Yu Gothic", "游ゴシック", "Zen Kaku Gothic New", sans-serif;
	font-family: var(--font-family-base);
	font-kerning: none;
	font-size: clamp(9px, 5.5714285714px + 0.4464285714vw, 12px);
	font-weight: 500;
	overflow: hidden;
	padding-bottom: 0.1875rem;
	padding-top: 0.1875rem;
	transition: color 0.3s ease-in-out;
	white-space: nowrap;
}

.header__sub-nav-service.is-active .header__sub-nav-service-text-line {
	transition: translate 0.5s cubic-bezier(0.13, 0.78, 0.38, 0.98);
	transition-delay: 0.2s;
	translate: 0 0;
}

.header__sub-nav-service-text-line {
	position: relative;
	translate: 0 20px;
}

.header__sub-nav-service-text-line::before {
	background-color: #00479D;
	background-color: var(--blue);
	bottom: -2px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform 0.6s cubic-bezier(0.6, 0, 0, 1);
	width: 100%;
}

/* ===============================================
# ハンバーガーメニュー
=============================================== */

.header__hamburger {
	align-items: center;
	aspect-ratio: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
	justify-content: center;
	pointer-events: auto;
	transition: width 0.5s;
	width: 100%;
	width: 24px;
}

.header__hamburger span {
	background: #3B73CA;
	height: 1px;
	transition: 0.5s ease;
	width: 18px;
}

.header__hamburger.is-open span:nth-of-type(1) {
	rotate: 45deg;
	translate: 0 5px;
	width: 18px;
}

.header__hamburger.is-open span:nth-of-type(2) {
	opacity: 0;
	visibility: hidden;
}

.header__hamburger.is-open span:nth-of-type(3) {
	rotate: -45deg;
	translate: 0 -5px;
	width: 18px;
}

/* ===============================================
# ドロワーメニュー
=============================================== */

.header__drawer {
	align-items: center;
	background-color: #fff;
	bottom: 0;
	display: flex;
	flex-direction: column;
	height: 100vh;
	left: 0;
	opacity: 0;
	overflow: auto;
	padding: 5.625rem 0 3.125rem 0;
	position: fixed;
	right: 0;
	scrollbar-width: none;
	top: 0;
	transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
	visibility: hidden;
	width: 100vw;
	z-index: 100;
	z-index: var(--z-index-drawer);
}

.header__drawer::-webkit-scrollbar {
	display: none;
}

.header__drawer.is-open {
	opacity: 1;
	visibility: visible;
}

.header__drawer-nav {
	height: -moz-fit-content;
	height: fit-content;
	margin: 0 auto;
	max-width: 500px;
	padding-left: 2.5rem;
	padding-right: 2.5rem;
	width: 100%;
}

.header__drawer-item {
	display: contents;
}

.header__drawer-item-link {
	border-bottom: 1px solid #001C36;
	border-bottom: 1px solid var(--main-color);
	color: rgba(0, 0, 0, 0.8);
	display: block;
	font-family: "Work Sans", sans-serif;
	font-family: var(--font-family-second);
	font-size: 1rem;
	font-weight: 500;
	font-weight: 700;
	line-height: 1;
	padding: 1.5625rem 0;
	text-align: left;
	text-transform: uppercase;
	width: 100%;
}

.header__drawer-item-link-text {
	display: block;
	position: relative;
}

.header__drawer-item-link-text::before,
.header__drawer-item-link-text::after {
	background: #3B73CA;
	content: "";
	position: absolute;
	top: 50%;
	translate: 0 -50%;
}

.header__drawer-item-link-text::before {
	height: 0.0625rem;
	right: 0.5rem;
	width: 0.9375rem;
}

.header__drawer-item-link-text::after {
	height: 0.9375rem;
	right: 0.9375rem;
	transition: rotate 0.3s ease;
	width: 0.0625rem;
}

.header__drawer-item-link-text.is-open::after {
	rotate: 90deg;
}

.header__drawer-sub-nav-service {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-in-out;
}

.header__drawer-sub-nav-service-list {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	margin-top: 1.25rem;
}

.header__drawer-sub-nav-service-link {
	font-family: "Yu Gothic", "游ゴシック", "Zen Kaku Gothic New", sans-serif;
	font-family: var(--font-family-base);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	width: 100%;
}

.header__drawer-item:first-of-type {
	border-top: 1px solid #001C36;
	border-top: 1px solid var(--main-color);
}

.header__drawer-bottom {
	margin-top: 1.875rem;
}

.header__drawer-policy-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.header__drawer-policy-item {
	display: block;
}

.header__drawer-policy-link {
	align-content: center;
	display: grid;
	font-family: "Yu Gothic", "游ゴシック", "Zen Kaku Gothic New", sans-serif;
	font-family: var(--font-family-base);
	font-size: 0.75rem;
	font-weight: 500;
	justify-content: center;
	letter-spacing: 0.05em;
	place-content: center;
}

.header__drawer-logo {
	margin-top: 3.125rem;
	width: 10.75rem;
}

.header__drawer-logo-img {
	-o-object-fit: contain;
	height: auto;
	object-fit: contain;
	width: 100%;
}

.body-hidden {
	overflow: hidden;
}

.link-btn {
	-webkit-clip-path: polygon(0% 0%, 0% 100%, 95% 100%, 100% 75%, 100% 100%, 100% 100%, 100% 0%);
	align-items: center;
	background-color: #00479D;
	background-color: var(--blue);
	border: medium none currentColor;
	border: initial;
	clip-path: polygon(0% 0%, 0% 100%, 95% 100%, 100% 75%, 100% 100%, 100% 100%, 100% 0%);
	color: #fff;
	display: flex;
	font-family: "Work Sans", sans-serif;
	font-family: var(--font-family-second);
	font-size: 0.8125rem;
	font-weight: 600;
	height: 2.9375rem;
	justify-content: center;
	letter-spacing: 0.04em;
	position: relative;
	text-align: center;
	text-transform: uppercase;
	transition: background-color 0.3s ease-in-out, color 0.3s ease;
	width: 14.375rem;
	z-index: 1;
}

.link-btn::after {
	-webkit-clip-path: polygon(0% 0%, 0% 100%, 95% 100%, 100% 75%, 100% 100%, 100% 100%, 100% 0%);
	background-color: #00479D;
	background-color: var(--blue);
	bottom: 0;
	clip-path: polygon(0% 0%, 0% 100%, 95% 100%, 100% 75%, 100% 100%, 100% 100%, 100% 0%);
	content: "";
	display: block;
	height: calc(100% - 2px);
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
	transition: background-color 0.3s ease;
	width: calc(100% - 2px);
	z-index: -1;
}

.link-btn.link-btn--arrow::before {
	content: "\e0b2";
	display: block;
	font-family: "Material Icons Round";
	font-size: 1.25rem;
	font-weight: 400;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}

.link-btn-white {
	-webkit-clip-path: polygon(0% 0%, 0% 100%, 95% 100%, 100% 75%, 100% 100%, 100% 100%, 100% 0%);
	align-items: center;
	background-color: #fff;
	border: medium none currentColor;
	border: initial;
	clip-path: polygon(0% 0%, 0% 100%, 95% 100%, 100% 75%, 100% 100%, 100% 100%, 100% 0%);
	color: #001C36;
	color: var(--main-color);
	display: flex;
	font-family: "Work Sans", sans-serif;
	font-family: var(--font-family-second);
	font-size: 0.8125rem;
	font-weight: 600;
	height: 2.9375rem;
	justify-content: center;
	letter-spacing: 0.04em;
	position: relative;
	text-align: center;
	text-transform: uppercase;
	transition: background-color 0.3s ease-in-out, color 0.3s ease;
	width: 14.375rem;
	z-index: 1;
}

.link-btn-white::after {
	-webkit-clip-path: polygon(0% 0%, 0% 100%, 95% 100%, 100% 75%, 100% 100%, 100% 100%, 100% 0%);
	background-color: #fff;
	bottom: 0;
	clip-path: polygon(0% 0%, 0% 100%, 95% 100%, 100% 75%, 100% 100%, 100% 100%, 100% 0%);
	content: "";
	display: block;
	height: calc(100% - 2px);
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
	transition: background-color 0.3s ease;
	width: calc(100% - 2px);
	z-index: -1;
}

.news-list {
	display: flex;
	flex-direction: column;
}

.news-list__item {
	display: block;
}

.news-list__item:last-child {
	position: relative;
}

.news-list__item:last-child::before {
	background-color: #DDD;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transform: scale(1, 1);
	transform-origin: left top;
	transition: transform 0.4s ease-in-out;
	width: 100%;
}

.news-list__item:last-child::after {
	background-color: #00479D;
	background-color: var(--blue);
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform 0.4s ease-in-out;
	width: 100%;
}

.news-list__item-article-link {
	display: grid;
	padding-bottom: 1.0625rem;
	padding-top: 1.25rem;
	position: relative;
}

.news-list__item-article-link::before,
.news-list__item-article-link::after {
	content: "";
	height: 1px;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
}

.news-list__item-article-link::before {
	background-color: #DDD;
}

.news-list__item-article-link::after {
	background-color: #00479D;
	background-color: var(--blue);
	transform: scaleX(0);
	transform-origin: right top;
	transition: transform 0.4s ease-in-out;
}

.news-list__item-article-link.hovered::after {
	transform: scaleX(1);
	transform-origin: left top;
}

.news-list__item-date {
	font-feature-settings: "halt" on, "kern" off;
	font-kerning: none;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.8;
	transition: color 0.3s ease-in-out;
}

.news-list__item-text {
	font-feature-settings: "halt" on, "kern" off;
	-webkit-box-orient: vertical;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	display: -webkit-box;
	font-kerning: none;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.75px;
	line-height: 1.8;
	overflow: hidden;
	transition: color 0.3s ease-in-out;
}

#news .news-list__item-date {
	color: #7B7B7B;
	font-family: "Work Sans", sans-serif;
	font-family: var(--font-family-second);
	font-size: clamp(7px, 3.2790697674px + 0.484496124vw, 12px);
}

#news .news-list__item-text {
	color: #7B7B7B;
	font-size: clamp(9px, 5.2790697674px + 0.484496124vw, 14px);
	font-weight: 500;
}

.news-list__item-text-wrap {
	grid-gap: 10px;
	align-items: center;
	display: grid;
	gap: 10px;
	grid-template-columns: auto max-content;
}

.news-list__item-arrow {
	color: #7B7B7B;
	font-family: "Material Icons Round";
	font-size: clamp(9px, 5.2790697674px + 0.484496124vw, 14px);
	font-weight: 400;
}

.pagination {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	row-gap: 0.625rem;
}

.current-page {
	border-right: 1px solid #DDD;
	color: #001C36;
	color: var(--main-color);
	font-family: "Work Sans", sans-serif;
	font-family: var(--font-family-second);
	font-size: 0.875rem;
	font-weight: 700;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

.page-link {
	border-right: 1px solid #DDD;
	color: #DDD;
	font-family: "Work Sans", sans-serif;
	font-family: var(--font-family-second);
	font-size: 0.875rem;
	font-weight: 700;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	transition: color 0.3s ease;
}

.page-next-arrow {
	padding-right: 1.25rem;
}

.page-prev-arrow {
	padding-left: 1.25rem;
}

.page-prev-arrow {
	border-right: none;
}

.page-next-arrow-icon,
.page-prev-arrow-icon {
	color: #DDD;
	display: block;
	font-family: "Material Icons Round";
	font-size: 0.75rem;
	font-weight: 400;
	text-align: center;
	transition: color 0.3s ease;
}

.dots {
	border-right: 1px solid #DDD;
	color: #DDD;
	font-size: 0.875rem;
	font-weight: 700;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

.section-description {
	font-feature-settings: "halt" on;
	color: #7B7B7B;
	font-family: "Yu Gothic", "游ゴシック", "Zen Kaku Gothic New", sans-serif;
	font-family: var(--font-family-base);
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.7857;
}

.section-header {
	grid-gap: 1.25rem;
	align-items: center;
	display: grid;
	gap: 1.25rem;
	grid-template-columns: max-content auto;
}

.section-header.--reverse {
	grid-template-columns: auto max-content;
}

.section-header.--center {
	grid-template-columns: auto max-content auto;
}

.section-header__title {
	color: #001C36;
	color: var(--main-color);
	font-family: "Work Sans", sans-serif;
	font-family: var(--font-family-second);
	font-size: 1.625rem;
	font-weight: 200;
	text-transform: uppercase;
}

.section-header__title span {
	display: inline-block;
	letter-spacing: 0;
	opacity: 0;
	transform: translateX(10px);
	transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
	transition-delay: calc(0.05s * var(--index));
	width: -moz-fit-content;
	width: fit-content;
}

.section-header__title.is-active span {
	opacity: 1;
	transform: translateX(0);
}

.section-header__border {
	background: #001C36;
	background: var(--main-color);
	display: block;
	height: 1px;
	width: 100%;
}

.js-section-title span {
	opacity: 0;
	transform: translateX(10px);
	transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
	transition-delay: calc(0.05s * var(--index));
}

.js-section-title.is-active span {
	opacity: 1;
	transform: translateX(0);
}

/* ===============================================
  # brand-story
  =============================================== */

.section-sub-title {
	font-feature-settings: "halt" on;
	color: #001C36;
	color: var(--main-color);
	font-family: "Yu Gothic", "游ゴシック", "Zen Kaku Gothic New", sans-serif;
	font-family: var(--font-family-base);
	font-size: 1.1875rem;
	font-weight: 500;
	letter-spacing: 0.05em;
}

.section-sub-title::first-letter {
	color: #00479D;
	color: var(--blue);
}

.sub-list-mv {
	padding-top: 4.375rem;
	position: relative;
}

.sub-list-mv__bg {
	aspect-ratio: 205/141;
	background: #D8DEE1;
	background: var(--bg-color);
	opacity: 0.5;
	position: absolute;
	right: 0;
	top: 75%;
	translate: 0 -50%;
	width: 54.6666666667%;
	z-index: 1;
}

.sub-list-mv__inner {
	grid-gap: 0.625rem;
	align-items: center;
	display: grid;
	gap: 0.625rem;
	grid-template-columns: 165fr 170fr;
	padding-left: 1.875rem;
	position: relative;
	z-index: 2;
}

.js-sub-list-mv .sub-list-mv__title span {
	display: inline-block;
	letter-spacing: 0;
	opacity: 0;
	transform: translateX(10px);
	transition: opacity 0.5s cubic-bezier(0.48, 0.07, 0.33, 0.79), transform 0.5s cubic-bezier(0.48, 0.07, 0.33, 0.79);
	transition-delay: calc(0.05s * var(--index));
	width: -moz-fit-content;
	width: fit-content;
}

.js-sub-list-mv .sub-list-mv__title-line {
	transition: width 0.7s cubic-bezier(0.48, 0.07, 0.33, 0.79);
	transition-delay: 0.1s;
	width: 0;
}

.js-sub-list-mv .sub-list-mv__img-wrap {
	overflow: hidden;
}

.js-sub-list-mv .sub-list-mv__img {
	opacity: 0;
	scale: 1.3;
	transition: scale 1s cubic-bezier(0.48, 0.07, 0.33, 0.79), opacity 1s cubic-bezier(0.48, 0.07, 0.33, 0.79);
	transition-delay: 0.1s;
}

.js-sub-list-mv.is-active .sub-list-mv__title span {
	opacity: 1;
	transform: translateX(0);
}

.js-sub-list-mv.is-active .sub-list-mv__title-line {
	width: 100%;
}

.js-sub-list-mv.is-active .sub-list-mv__img {
	opacity: 1;
	scale: 1;
}

.sub-list-mv__title-wrap {
	grid-gap: 0.625rem;
	align-items: center;
	display: grid;
	gap: 0.625rem;
	grid-template-columns: max-content auto;
}

.sub-list-mv__title {
	color: #001C36;
	color: var(--main-color);
	font-family: "Work Sans", sans-serif;
	font-family: var(--font-family-second);
	font-size: 1.4375rem;
	font-weight: 200;
}

.sub-list-mv__title-line {
	background: #001C36;
	background: var(--main-color);
	height: 1px;
	width: 100%;
}

.sub-list-mv__img-wrap {
	border-radius: 10px 0px 0px 10px;
}

.sub-list-mv__img {
	-o-object-fit: cover;
	aspect-ratio: 170/140;
	border-radius: 10px 0px 0px 10px;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.sub-mv-small {
	padding-bottom: 3.40625rem;
	padding-top: 6.90625rem;
}

.sub-mv-small__inner {
	align-items: center;
	display: flex;
	flex-direction: column;
}

.sub-mv-small__title {
	color: #001C36;
	color: var(--main-color);
	font-family: "Work Sans", sans-serif;
	font-family: var(--font-family-second);
	font-size: 23px;
	font-weight: 300;
	letter-spacing: 0.5em;
	opacity: 0;
	text-indent: 0.75rem;
	text-transform: uppercase;
	transition: opacity 0.6s ease-in-out;
	transition-delay: 0.1s;
}

.sub-mv-small__title.is-active {
	opacity: 1;
}

.sub-mv-small__catch {
	-webkit-clip-path: inset(0 -5% 30% 0);
	align-items: center;
	clip-path: inset(0 -5% 30% 0);
	color: #00479D;
	color: var(--blue);
	display: flex;
	font-family: "Work Sans", sans-serif;
	font-family: var(--font-family-second);
	font-size: 1.375rem;
	font-weight: 300;
	gap: 1.4375rem;
	justify-content: center;
	margin-top: -0.9375rem;
	opacity: 0.1;
	text-transform: uppercase;
}

.sub-mv-small__catch.sub-mv-small__catch--privacy-policy {
	transform: translateX(-0.375rem);
}

.sub-mv-small__catch.sub-mv-small__catch--security-policy {
	transform: translateX(-0.6875rem);
}

.sub-mv-small__catch.sub-mv-small__catch--recruit {
	transform: translateX(-0.6875rem);
}

.sub-mv-small__catch span {
	display: inline-block;
	letter-spacing: 0;
	opacity: 0;
	text-indent: 0;
	transition: opacity 0.3s ease-in-out, translate 0.3s ease-in-out;
	transition-delay: calc(0.05s * var(--index));
	translate: 10px 0;
	width: -moz-fit-content;
	width: fit-content;
}

.sub-mv-small__catch.is-active span {
	opacity: 1;
	translate: 0 0;
}

.sub-mv {
	height: 100svh;
	overflow-x: clip;
}

.sub-mv.sub-mv--brand-story .sub-mv__content {
	padding-top: 6.25rem;
}

.sub-mv.sub-mv--brand-story .sub-mv__catch {
	margin-top: 0;
}

.sub-mv.sub-mv--overlay {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 65%, #FFF 100%);
}

.sub-mv__inner {
	height: 100%;
	margin-left: auto;
	margin-right: auto;
}

.sub-mv__content {
	align-items: center;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	padding-top: 3.75rem;
}

.sub-mv__logo {
	opacity: 0;
	transition: opacity 0.8s ease-in-out;
	transition-delay: 0.1s;
	width: 4.75rem;
}

.sub-mv__logo-img {
	-o-object-fit: contain;
	height: auto;
	object-fit: contain;
	width: 100%;
}

.sub-mv__title {
	color: #001C36;
	color: var(--main-color);
	font-family: "Work Sans", sans-serif;
	font-family: var(--font-family-second);
	font-size: 1.4375rem;
	font-weight: 300;
	letter-spacing: 0.5em;
	opacity: 0;
	text-transform: uppercase;
	transition: opacity 0.8s ease-in-out;
	transition-delay: 0.3s;
}

.sub-mv__catch {
	-webkit-clip-path: inset(0 -5% 30% 0);
	align-items: center;
	clip-path: inset(0 -5% 30% 0);
	color: #00479D;
	color: var(--blue);
	display: flex;
	font-family: "Work Sans", sans-serif;
	font-family: var(--font-family-second);
	font-size: 1.375rem;
	font-weight: 300;
	gap: 1.3125rem;
	justify-content: center;
	letter-spacing: 1em;
	margin-top: -0.9375rem;
	opacity: 0.1;
	text-align: center;
	text-transform: uppercase;
}

.sub-mv__catch span {
	display: inline-block;
	letter-spacing: 0;
	opacity: 0;
	text-indent: 0;
	transition: opacity 0.3s ease-in-out, translate 0.3s ease-in-out;
	transition-delay: calc(0.1s * var(--index));
	translate: 10px 0;
	width: -moz-fit-content;
	width: fit-content;
}

.sub-mv__catch.sub-mv__catch--service {
	transform: translateX(-0.3125rem);
}

.sub-mv__content.is-active .sub-mv__logo {
	opacity: 1;
}

.sub-mv__content.is-active .sub-mv__title {
	opacity: 1;
}

.sub-mv__content.is-active .sub-mv__service-subtitle {
	opacity: 1;
}

.sub-mv__catch.is-active span {
	opacity: 1;
	translate: 0 0;
}

.sub-mv__service-subtitle {
	color: #00479D;
	color: var(--blue);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
	transition-delay: 0.8s;
}

@media (any-hover: hover) {

a:hover {
	cursor: pointer;
}

.brand-story__future-item-img-wrap:hover .brand-story__future-item-img {
	filter: brightness(0.8);
	transform: scale(1.1);
}

.brand-story__future-item-img-wrap:hover + .brand-story__future-item-text-block .brand-story__future-item-title {
	color: #00479D;
	color: var(--blue);
}

.brand-story__future-item-img-wrap:hover + .brand-story__future-item-text-block .brand-story__future-item-description {
	color: #00479D;
	color: var(--blue);
}

.form__submit-btn:hover::after {
	color: #00479D;
	color: var(--blue);
}

.contact__thanks-btn-link:hover {
	background: #fff;
	border: 1px solid #00479D;
	border: 1px solid var(--blue);
	color: #00479D;
	color: var(--blue);
}

.journal__nav-link:hover {
	color: #1E1E1E;
}

.service-sec01__description .link-text:hover {
	color: #00479D;
	color: var(--blue);
	text-decoration-line: none;
}

.service-sec04__btn:hover {
	color: #00479D;
	color: var(--blue);
}

.service-sec04__btn:hover::after {
	background-color: #fff;
}

.single-journal__content a:hover {
	color: #00479D;
	color: var(--blue);
}

.single-news__content a:hover {
	color: #00479D;
	color: var(--blue);
}

.top-news__link:hover {
	color: #00479D;
	color: var(--blue);
}

.breadcrumbs__link:hover {
	color: #00479D;
	color: var(--blue);
	opacity: 0.8;
}

.card-item__link:hover {
	opacity: 0.8;
}

.card-item__link:hover .card-item__img {
	transform: scale(1.05);
}

.footer__pc-nav-link:hover .footer__pc-nav-link-text {
	color: #00479D;
	color: var(--blue);
}

.footer__pc-nav-link:hover .footer__pc-nav-link-text::after {
	transform: scale(1, 1);
	transform-origin: left top;
}

.footer__pc-services-link:hover {
	color: #00479D;
	color: var(--blue);
}

.footer__pc-services-link:hover::after {
	transform: scale(1, 1);
	transform-origin: left top;
}

.footer__logo:hover {
	opacity: 0.6;
}

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

.header__nav-link:not(.header__nav-link--contact):hover {
	color: #00479D;
	color: var(--blue);
}

.header__nav-link.is-current {
	color: #00479D;
	color: var(--blue);
}

.header__nav-link--contact:hover {
	background-color: #001C36;
	background-color: var(--main-color);
	color: #fff;
	color: var(--white);
}

.header__sub-nav-service-link:hover .header__sub-nav-service-text {
	color: #00479D;
	color: var(--blue);
}

.header__sub-nav-service-link:hover .header__sub-nav-service-text-line::before {
	transform: scale(1, 1);
	transform-origin: left top;
}

.link-btn:hover {
	color: #00479D;
	color: var(--blue);
}

.link-btn:hover::after {
	background-color: #fff;
}

.link-btn-white:hover {
	color: #fff;
}

.link-btn-white:hover::after {
	background-color: #001C36;
	background-color: var(--main-color);
}

.news-list__item:last-child:hover::before {
	transform: scale(0, 1);
	transform-origin: right top;
}

.news-list__item:last-child:hover::after {
	transform: scale(1, 1);
	transform-origin: left top;
}

.news-list__item-article-link:hover .news-list__item-date {
	color: #00479D;
	color: var(--blue);
}

.news-list__item-article-link:hover .news-list__item-text {
	color: #00479D;
	color: var(--blue);
}

.news-list__item-article-link:hover::after {
	transform: scaleX(1);
	transform-origin: left top;
}

#news .news-list__item-article-link:hover .news-list__item-date {
	color: #00479D;
	color: var(--blue);
}

#news .news-list__item-article-link:hover .news-list__item-text {
	color: #00479D;
	color: var(--blue);
}

#news .news-list__item-article-link:hover .news-list__item-arrow {
	color: #00479D;
	color: var(--blue);
}

.page-link:hover {
	color: #001C36;
	color: var(--main-color);
}

.page-next-arrow-icon:hover,
.page-prev-arrow-icon:hover {
	color: #001C36;
	color: var(--main-color);
}

}

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

.u-desktop {
	display: block;
}

.u-mobile {
	display: none;
}

html {
	font-size: 1.1940298507vw;
}

.bg-img {
	aspect-ratio: 1440/800;
}

.bg-video__overlay {
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.brand-story {
	padding-bottom: 12.5rem;
}

.brand-story__bg-top::before {
	height: 61.2987012987%;
	left: 50%;
	top: 60%;
	translate: -50% -50%;
}

.brand-story__bg-bottom::before {
	height: 37.6079447323%;
	top: 43.2%;
}

.brand-story__block {
	grid-gap: 2.8125rem;
	display: grid;
	gap: 2.8125rem;
	grid-template-columns: 680fr 610fr;
}

.brand-story__block.--reverse {
	grid-template-columns: 610fr 680fr;
}

.brand-story__block.--reverse .brand-story__text-block {
	padding: 7.5rem 0 0 0;
}

.brand-story__block.--reverse .brand-story__header {
	padding-left: 0;
	padding-right: 1.25rem;
}

.brand-story__block.--reverse .brand-story__description {
	margin-left: 0;
	margin-right: auto;
}

.brand-story__block.--reverse .brand-story__subtitle {
	text-align: left;
}

.brand-story__text-block {
	padding: 7.5rem 0 0 0;
}

.brand-story__header {
	padding-left: 1.25rem;
	padding-right: 0;
}

.brand-story__subtitle {
	margin-top: 1.25rem;
	text-align: right;
}

.brand-story__description {
	font-size: 0.9375rem;
	line-height: 1.8;
	margin-left: auto;
	margin-right: 0;
	margin-top: 1.875rem;
	max-width: 25rem;
}

.brand-story__video-wrap {
	border-radius: 20px;
}

.brand-story__video {
	aspect-ratio: 610/770;
	border-radius: 20px;
}

.brand-story__value-list {
	gap: 1.875rem;
	margin-top: 1.25rem;
	text-align: right;
}

.brand-story__future-header {
	padding-left: 3.125rem;
	padding-right: 3.125rem;
}

.brand-story__future-description {
	font-size: 1rem;
	line-height: 1.87;
	margin-left: auto;
	margin-right: auto;
	margin-top: 5rem;
	max-width: 40.625rem;
}

.brand-story__future-content {
	margin-top: 6.25rem;
}

.brand-story__future-list {
	flex-wrap: wrap;
	gap: 5rem 4.375rem;
	justify-content: center;
}

.brand-story__future-item {
	width: calc((100% - 8.75rem) / 3);
}

.brand-story__future-item-img-wrap {
	border-radius: 20px;
}

.brand-story__future-item-img {
	aspect-ratio: 400/390;
	border-radius: 20px;
}

.brand-story__future-item-title {
	margin-top: 1.875rem;
	text-align: center;
}

.brand-story__future-item-description {
	font-size: 0.875rem;
	line-height: 1.8;
	text-align: center;
}

.company__block {
	align-items: center;
	gap: 3.125rem;
	grid-template-columns: 630fr 610fr;
	padding: 4.375rem 3.125rem 4.375rem 0;
}

.company__block-text-wrap {
	align-items: flex-end;
	margin-left: auto;
	max-width: 26rem;
}

.company__block-description {
	font-size: 0.9375rem;
	line-height: 1.8;
}

.company__block-img-wrap {
	border-radius: 20px;
}

.company__block-img {
	aspect-ratio: 610/400;
	border-radius: 20px;
}

.company__block-bg {
	left: 16.875rem;
}

.company__block--reverse {
	direction: rtl;
}

.company__block--reverse .company__block-text-wrap {
	align-items: flex-start;
	direction: ltr;
	margin-left: 0;
	margin-right: auto;
	max-width: 100%;
}

.company__block-item {
	font-size: 0.9375rem;
	line-height: 1.8;
}

.company__message {
	padding: 4.375rem;
}

.company__message-content {
	background: #FFF;
	border: 1px solid #DDD;
	gap: clamp(14px, -27.1428571429px + 5.3571428571vw, 50px);
	grid-template-columns: 22.375rem auto;
	padding: 6.25rem 3.125rem;
}

.company__message-name {
	font-size: 1.25rem;
}

.company__message-career {
	font-size: 0.9375rem;
	line-height: 1.8;
}

.company__message-text {
	font-size: 0.9375rem;
	line-height: 1.8;
}

.company__history-title,
.company__info-title {
	font-size: 1.375rem;
}

.company__history-list,
.company__info-list {
	margin-left: auto;
	margin-right: auto;
	max-width: 50rem;
}

.company__history-item,
.company__info-item {
	align-items: center;
	grid-template-columns: 9.375rem auto;
	padding: 1.34375rem 1.25rem;
}

.company__history-year,
.company__info-heading {
	font-size: 0.9375rem;
	line-height: 1.8;
}

.company__history-event,
.company__info-data {
	font-size: 0.9375rem;
	line-height: 1.8;
}

.contact {
	padding-top: 3.125rem;
}

.contact__inner {
	max-width: 870px;
	padding-left: 35px;
	padding-right: 35px;
}

.contact__content {
	padding: 3.125rem 6.25rem 0 6.25rem;
}

.wpcf7-form {
	gap: 2.0625rem;
}

.form__radio-group {
	gap: 1.875rem;
}

.contact--confirm .form__group--submit {
	flex-direction: row;
	gap: 2.5rem;
	margin-top: 3.125rem;
}

.contact__thanks-text {
	font-size: 1rem;
}

.inner {
	max-width: 1410px;
	padding-left: 35px;
	padding-right: 35px;
}

.journal {
	margin-top: 6.25rem;
}

.journal__inner {
	max-width: 1410px;
	padding-left: 35px;
	padding-right: 35px;
}

.journal__nav-list {
	flex-wrap: wrap;
	row-gap: 0.625rem;
}

.journal__nav-link {
	font-size: 0.8125rem;
}

.journal__list {
	gap: 3.125rem;
	grid-template-columns: repeat(3, 1fr);
}

.journal__pagination {
	margin-top: 6.25rem;
}

.mv {
	height: 100%;
	padding-bottom: 33.25rem;
	padding-top: 20.3125rem;
}

.mv__title {
	transition: opacity 1s ease-in-out;
	transition-delay: 0.3s;
}

.mv__link-wrap {
	transition: opacity 1s ease-in-out;
	transition-delay: 0.6s;
}

.mv__catch {
	font-size: 4.8125rem;
	gap: 4.375rem;
	margin-top: -0.625rem;
}

.mv__catch span {
	transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
	transition-delay: calc(0.1s * var(--index));
}

.news {
	padding-bottom: 3.125rem;
}

.news__inner {
	max-width: 1440px;
	padding-left: 50px;
	padding-right: 50px;
}

.news__pagination {
	margin-top: 1.875rem;
}

.news-list__item-not-found {
	font-size: 1rem;
}

.not-found__title-wrap {
	padding-bottom: 5rem;
	padding-top: 5rem;
}

.not-found__title {
	font-size: 1.5rem;
	letter-spacing: -0.264px;
	max-width: 870px;
	padding-left: 35px;
	padding-right: 35px;
}

.not-found__inner {
	max-width: 870px;
	padding-left: 35px;
	padding-right: 35px;
}

.not-found__content {
	padding-bottom: 3.75rem;
	padding-top: 5rem;
}

.not-found__text {
	font-size: 1rem;
	text-align: center;
}

.policy__title-wrap {
	padding-bottom: 5rem;
	padding-top: 5rem;
}

.policy__title {
	font-size: 1.5rem;
	letter-spacing: -0.264px;
	max-width: 900px;
	padding-left: 50px;
	padding-right: 50px;
}

.policy__inner {
	max-width: 900px;
	padding-left: 50px;
	padding-right: 50px;
}

.policy__text,
.policy__section-title,
.policy__item,
.policy__sub-item,
.policy__sub-sub-item,
.policy__address {
	font-size: clamp(10px, 7.7142857143px + 0.2976190476vw, 12px);
}

.policy__sub-list {
	margin-left: 1.875rem;
}

.policy__sub-sub-list {
	margin-left: 1.5625rem;
}

.recruit__title-wrap {
	padding-bottom: 5rem;
	padding-top: 5rem;
}

.recruit__title {
	font-size: 1.5rem;
	letter-spacing: -0.264px;
	max-width: 870px;
	padding-left: 35px;
	padding-right: 35px;
}

.recruit__inner {
	max-width: 870px;
	padding-left: 35px;
	padding-right: 35px;
}

.recruit__content {
	padding-bottom: 39.375rem;
	padding-top: 3.125rem;
}

.service-sec01 {
	padding-bottom: 6.25rem;
	padding-top: 9.375rem;
}

.service-sec01__inner {
	gap: 2.5rem;
	grid-template-columns: 630fr 660fr;
}

.service-sec01__text-area {
	padding-bottom: 18.75rem;
}

.service-sec01__block:not(:first-child) {
	margin-top: 12.5rem;
}

.service-sec01__lead {
	font-size: 1.875rem;
}

.service-sec01__description {
	font-size: 0.9375rem;
	line-height: 1.8;
	word-break: keep-all;
}

.service-sec01__image-area {
	top: 9.375rem;
}

.service-sec01__image-wrap {
	border-radius: 20px;
	margin-right: clamp(0px, -57.1428571429px + 7.4404761905vw, 50px);
}

.service-sec01__img {
	aspect-ratio: 660/780;
	border-radius: 20px;
}

.service-sec02 {
	padding-bottom: 15.625rem;
	padding-top: 15.625rem;
}

.service-sec02__title {
	font-size: 1.875rem;
}

.service-sec02__text-wrap {
	gap: 1.875rem;
}

.service-sec02__text {
	font-size: 1rem;
	line-height: 1.875;
	text-align: center;
}

.service-sec03 {
	padding-top: 9.375rem;
}

.service-sec03__title {
	font-size: 1.375rem;
}

.service-sec03__list {
	grid-template-columns: repeat(3, 1fr);
}

.service-sec03__item {
	padding-left: 3.0625rem;
	padding-right: 3.0625rem;
}

.service-sec03__item-img {
	aspect-ratio: 346.67/231;
}

.service-sec03__item-title {
	font-size: 0.9375rem;
	line-height: 1.8;
}

.service-sec03__item-description {
	font-size: 0.9375rem;
	line-height: 1.8;
}

.service-sec03__btn {
	margin-top: auto;
}

.service-sec04 {
	padding-top: 9.375rem;
}

.service-sec04__lead {
	font-size: 1.375rem;
}

.service-sec04__description {
	font-size: 1rem;
	text-align: center;
}

.service-sec04__btn-wrap {
	margin-top: 3.125rem;
}

.service-sec04__btn {
	-webkit-clip-path: polygon(0% 0%, 0% 100%, 98.5% 100%, 100% 85%, 100% 100%, 100% 100%, 100% 0%);
	clip-path: polygon(0% 0%, 0% 100%, 98.5% 100%, 100% 85%, 100% 100%, 100% 100%, 100% 0%);
	height: 6.25rem;
	max-width: 58.75rem;
}

.service-sec04__btn::after {
	-webkit-clip-path: polygon(0% 0%, 0% 100%, 98.5% 100%, 100% 85%, 100% 100%, 100% 100%, 100% 0%);
	clip-path: polygon(0% 0%, 0% 100%, 98.5% 100%, 100% 85%, 100% 100%, 100% 100%, 100% 0%);
}

.service-sec04__btn-text {
	font-size: 0.9375rem;
}

.service-slide {
	padding-bottom: 9.375rem;
	padding-top: 9.375rem;
}

.service-slide__content {
	padding-bottom: 3.125rem;
	padding-left: 3.125rem;
	padding-right: 3.125rem;
}

.service-slide__title {
	font-size: 1.875rem;
}

.service-slide__list {
	grid-auto-columns: 20rem;
	margin-top: 1.3125rem;
}

.service-flow {
	padding-bottom: 14.75rem;
	padding-top: 15.625rem;
}

.service-flow__inner.inner {
	max-width: 63.125rem;
}

.service-flow__title {
	font-size: 1.875rem;
}

.service-flow__lead {
	font-size: 1rem;
	line-height: 1.875;
	margin-top: 1.875rem;
	text-align: center;
}

.service-flow__list {
	margin-top: 1.875rem;
}

.service-flow__item {
	align-items: center;
	grid-template-columns: max-content auto;
	padding: 1.4375rem 1.25rem 1.4375rem 3.125rem;
}

.service-flow__step {
	font-size: 2.8125rem;
	padding-right: 2.5rem;
}

.service-flow__content {
	border-left: 1px solid #DDD;
	padding-left: 2.5rem;
}

.service-flow__subtitle {
	font-size: 1.1875rem;
}

.service-flow__text {
	font-size: 1rem;
	line-height: 1.875;
	margin-top: 0.3125rem;
}

.single-journal {
	padding-top: 5rem;
}

.single-journal__bg {
	height: calc(100% + 20rem);
	top: -5rem;
}

.single-journal__inner {
	max-width: 870px;
	padding-left: 35px;
	padding-right: 35px;
}

.single-journal__title {
	font-size: 1.5rem;
	letter-spacing: -0.264px;
}

.single-journal__img-wrap {
	margin-top: 3.1875rem;
}

.single-journal__img {
	aspect-ratio: 800/409.3;
}

.single-journal__content h2 {
	font-size: 28px;
	margin-top: 20px;
}

.single-journal__content h3 {
	font-size: 26px;
	margin-top: 20px;
}

.single-journal__content h4 {
	font-size: 24px;
	margin-top: 20px;
}

.single-journal__content h5 {
	font-size: 22px;
	margin-top: 20px;
}

.single-journal__content p {
	margin-top: 20px;
}

.single-journal__content ul {
	margin-top: 20px;
}

.single-journal__content ol {
	margin-top: 20px;
}

.single-journal__content figure {
	margin-top: 20px;
}

.single-journal__link {
	padding-bottom: 3.125rem;
}

.single-news {
	padding-top: 5rem;
}

.single-news__bg {
	height: calc(100% + 20rem);
	top: -5rem;
}

.single-news__inner {
	max-width: 870px;
	padding-left: 35px;
	padding-right: 35px;
}

.single-news__title {
	font-size: clamp(18px, 11.1428571429px + 0.8928571429vw, 24px);
	letter-spacing: -0.264px;
}

.single-news__img-wrap {
	margin-top: 3.1875rem;
}

.single-news__img {
	aspect-ratio: 800/409.3;
}

.single-news__content h2 {
	font-size: 28px;
	margin-top: 20px;
}

.single-news__content h3 {
	font-size: 26px;
	margin-top: 20px;
}

.single-news__content h4 {
	font-size: 24px;
	margin-top: 20px;
}

.single-news__content h5 {
	font-size: 22px;
	margin-top: 20px;
}

.single-news__content p {
	margin-top: 20px;
}

.single-news__content ul {
	margin-top: 20px;
}

.single-news__content ol {
	margin-top: 20px;
}

.single-news__content figure {
	margin-top: 20px;
}

.single-news__link {
	padding-bottom: 3.125rem;
}

.top-journal {
	padding-bottom: 7.5rem;
	padding-top: 5.625rem;
}

.top-journal__content {
	padding-bottom: 3.125rem;
	padding-left: 3.125rem;
	padding-right: 3.125rem;
}

.top-journal__list {
	gap: 3.125rem;
	grid-auto-columns: 26.875rem;
	margin-top: 1.3125rem;
}

.top-news__inner {
	max-width: 1440px;
	padding-right: 2.5rem;
}

.top-news__content {
	align-items: center;
	grid-template-columns: 460fr 880fr;
}

.top-news__img-wrap {
	-webkit-clip-path: polygon(0% 0%, 0% 100%, 95% 100%, 100% 95%, 100% 100%, 100% 100%, 100% 0%);
	clip-path: polygon(0% 0%, 0% 100%, 95% 100%, 100% 95%, 100% 100%, 100% 100%, 100% 0%);
}

.top-news__img {
	aspect-ratio: 460/537;
}

.top-news__text-content {
	margin-top: -1.25rem;
}

.top-our-service {
	padding-bottom: 7.5rem;
	padding-top: 7.0625rem;
}

.top-our-service__inner {
	display: flex;
	justify-content: space-between;
}

.top-our-service__text-content {
	max-width: clamp(250px, -115.7142857143px + 47.619047619vw, 570px);
	padding: 6.8125rem clamp(10px, -41.4285714286px + 6.6964285714vw, 55px) 7.5rem clamp(20px, -2.8571428571px + 2.9761904762vw, 40px);
	width: 35%;
}

.top-our-service__sub-title {
	margin-top: 0.625rem;
}

.top-our-service__description {
	margin-top: 1.25rem;
}

.accordion-list {
	gap: 0.3125rem;
	justify-content: flex-end;
	max-width: 900px;
	width: 65%;
}

.accordion-item {
	-webkit-clip-path: polygon(0% 0%, 0% 100%, calc(100% - 13px) 100%, 100% 98%, 100% 100%, 100% 100%, 100% 0%);
	clip-path: polygon(0% 0%, 0% 100%, calc(100% - 13px) 100%, 100% 98%, 100% 100%, 100% 100%, 100% 0%);
	display: flex;
	flex: 0.75;
	overflow: hidden;
	transition: flex 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}

.accordion-item.is-open {
	flex: 5;
}

.accordion-item:not(.is-open):hover {
	flex: 0.9;
}

.accordion-title {
	gap: 1.25rem;
	padding: 1.875rem 1.875rem 1.875rem 1.875rem;
	text-align: left;
	transition: padding-left 0.3s ease-in-out, padding-right 0.3s ease-in-out;
	writing-mode: sideways-rl;
}

.accordion-title__arrow {
	font-size: 1.25rem;
}

.accordion-item:not(.is-open) .accordion-title__arrow {
	transform: rotate(180deg);
}

.accordion-title__text {
	font-size: 1rem;
}

.accordion-content {
	padding-bottom: 5rem;
	padding-top: 3.75rem;
}

.accordion-content__inner {
	display: grid;
	padding-right: 1.25rem;
}

.accordion-content__title {
	font-size: 1.125rem;
}

.accordion-content__img-wrap {
	width: 26.875rem;
}

.accordion-content__img {
	-webkit-clip-path: polygon(0% 0%, 0% 100%, 95% 100%, 100% 90%, 100% 100%, 100% 100%, 100% 0%);
	clip-path: polygon(0% 0%, 0% 100%, 95% 100%, 100% 90%, 100% 100%, 100% 100%, 100% 0%);
}

.accordion-content__category {
	display: inline-block;
	font-size: 0.9375rem;
	line-height: 1.8;
	margin-top: 2.1875rem;
	width: -moz-fit-content;
	width: fit-content;
}

.accordion-content__description {
	font-size: 0.9375rem;
}

.top-what-we-do__content {
	gap: 5.625rem;
	grid-template-columns: minmax(0, 622px) minmax(0, 610px);
	justify-content: space-between;
	margin-top: 1.25rem;
}

.top-what-we-do__text-block::before {
	height: calc(100% - 8.125rem);
	left: -3.125rem;
	top: -16.875rem;
	width: calc(100% + clamp(50px, -16.2857142857px + 8.630952381vw, 108px));
}

.top-what-we-do__link-wrap {
	margin-top: 1.875rem;
}

.top-what-we-do__video-wrap {
	border-radius: 20px;
}

.top-what-we-do__video {
	aspect-ratio: 610/770;
	border-radius: 20px;
}

.js-clip-img img,
.js-clip-img-rootMargin-110 img {
	transition: scale 1.3s cubic-bezier(0.48, 0.07, 0.33, 0.79), -webkit-clip-path 1.3s cubic-bezier(0.48, 0.07, 0.33, 0.79);
	transition: scale 1.3s cubic-bezier(0.48, 0.07, 0.33, 0.79), clip-path 1.3s cubic-bezier(0.48, 0.07, 0.33, 0.79);
	transition: scale 1.3s cubic-bezier(0.48, 0.07, 0.33, 0.79), clip-path 1.3s cubic-bezier(0.48, 0.07, 0.33, 0.79), -webkit-clip-path 1.3s cubic-bezier(0.48, 0.07, 0.33, 0.79);
}

.js-clip-video video,
.js-clip-video-rootMargin-110 video {
	transition: scale 1.3s cubic-bezier(0.48, 0.07, 0.33, 0.79), -webkit-clip-path 1.3s cubic-bezier(0.48, 0.07, 0.33, 0.79);
	transition: scale 1.3s cubic-bezier(0.48, 0.07, 0.33, 0.79), clip-path 1.3s cubic-bezier(0.48, 0.07, 0.33, 0.79);
	transition: scale 1.3s cubic-bezier(0.48, 0.07, 0.33, 0.79), clip-path 1.3s cubic-bezier(0.48, 0.07, 0.33, 0.79), -webkit-clip-path 1.3s cubic-bezier(0.48, 0.07, 0.33, 0.79);
}

.js-service-sec01-clip-img {
	overflow: hidden;
}

.js-service-sec01-clip-img img {
	-webkit-clip-path: inset(0 100% 0 0);
	clip-path: inset(0 100% 0 0);
	scale: 1.3;
	transition: scale 1.3s cubic-bezier(0.48, 0.07, 0.33, 0.79), -webkit-clip-path 1.3s cubic-bezier(0.48, 0.07, 0.33, 0.79);
	transition: scale 1.3s cubic-bezier(0.48, 0.07, 0.33, 0.79), clip-path 1.3s cubic-bezier(0.48, 0.07, 0.33, 0.79);
	transition: scale 1.3s cubic-bezier(0.48, 0.07, 0.33, 0.79), clip-path 1.3s cubic-bezier(0.48, 0.07, 0.33, 0.79), -webkit-clip-path 1.3s cubic-bezier(0.48, 0.07, 0.33, 0.79);
}

.js-service-sec01-clip-img.is-active img {
	-webkit-clip-path: inset(0 0 0 0);
	clip-path: inset(0 0 0 0);
	scale: 1;
}

.service-slide__item .card-item__title {
	margin-top: 0.625rem;
}

.card-item__content {
	padding-right: 3.125rem;
}

.card-item__date {
	margin-top: 1rem;
}

.card-item__title {
	font-size: 1rem;
	margin-top: 0.3125rem;
}

.footer {
	padding-bottom: 7.5rem;
	padding-top: 7.5rem;
}

.footer__inner {
	padding-left: 3.125rem;
	padding-right: 3.125rem;
}

.footer__pc-nav-list {
	padding: 1.875rem 1.25rem;
}

.footer__pc-services-list {
	padding-bottom: 1.625rem;
	padding-top: 1.3125rem;
}

.footer__bottom {
	gap: 5vw;
	margin-left: auto;
	margin-right: auto;
	margin-top: 5rem;
	max-width: 1340px;
}

.footer__info {
	gap: 1.875rem;
}

.footer__policy-list {
	gap: 2.125rem;
}

.footer__policy-link {
	font-size: 0.625rem;
	position: relative;
	transition: color 0.5s cubic-bezier(0.6, 0, 0, 1);
}

.footer__policy-link::after {
	background-color: #00479D;
	background-color: var(--blue);
	bottom: -1px;
	content: "";
	height: 1px;
	left: 50%;
	position: absolute;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform 0.5s cubic-bezier(0.6, 0, 0, 1);
	translate: -50% 0;
	width: 100%;
}

.footer__copyright {
	margin-top: 5rem;
}

.footer__mobile-nav {
	display: none;
}

.header {
	height: 10.25rem;
}

.header__inner {
	grid-template-columns: 6.4673125rem auto;
	padding-left: 3.125rem;
	padding-right: 2.625rem;
}

.header__hamburger {
	display: none;
}

.header__drawer {
	display: none;
}

.link-btn {
	font-size: 1rem;
}

.link-btn-white {
	font-size: 1rem;
}

.news-list__item-article-link {
	align-items: center;
	grid-template-columns: 7.375rem auto;
	padding-bottom: 1.25rem;
	padding-top: 1.25rem;
}

.news-list__item-date {
	letter-spacing: 0.75px;
}

.news-list__item-text {
	line-clamp: 2;
	-webkit-line-clamp: 2;
	font-size: 0.9375rem;
}

#news .news-list__item-article-link {
	grid-template-columns: clamp(70px, 43.9534883721px + 3.3914728682vw, 105px) auto;
	padding-bottom: clamp(18px, 16.511627907px + 0.1937984496vw, 20px);
	padding-top: clamp(18px, 16.511627907px + 0.1937984496vw, 20px);
}

#news .news-list__item-text {
	line-clamp: 1;
	-webkit-line-clamp: 1;
}

.page-link {
	padding-left: 1.5625rem;
	padding-right: 1.5625rem;
}

.page-next-arrow {
	padding-left: 1.5625rem;
	padding-right: 1.5625rem;
}

.page-prev-arrow {
	padding-left: 1.5625rem;
	padding-right: 1.5625rem;
}

.page-prev-arrow {
	border-right: 1px solid #DDD;
}

.section-description {
	font-size: 0.9375rem;
	line-height: 1.8;
}

.section-header {
	gap: 3.125rem;
}

.section-header__title {
	font-size: 3.75rem;
}

.section-header__border--pc-none {
	display: none;
}

.section-sub-title {
	font-size: 1.875rem;
}

.sub-list-mv {
	padding-top: 10.625rem;
}

.sub-list-mv__bg {
	aspect-ratio: 810/593;
	top: 101%;
	width: 56.25%;
}

.sub-list-mv__inner {
	gap: 3.125rem;
	grid-template-columns: 750fr 610fr;
	padding-left: 3.125rem;
	padding-right: 3.125rem;
}

.sub-list-mv__title-wrap {
	gap: 3.125rem;
}

.sub-list-mv__title {
	font-size: 3.75rem;
}

.sub-list-mv__img-wrap {
	border-radius: 20px;
}

.sub-list-mv__img {
	aspect-ratio: 610/400;
	border-radius: 20px;
}

.sub-mv-small {
	padding-bottom: 2.7375rem;
	padding-top: 8.75rem;
}

.sub-mv-small__title {
	font-size: 1.875rem;
}

.sub-mv-small__catch {
	-webkit-clip-path: inset(0 -5% 33% 0);
	clip-path: inset(0 -5% 33% 0);
	font-size: 2.8125rem;
	gap: 2.8125rem;
	margin-top: -1.875rem;
}

.sub-mv-small__catch.sub-mv-small__catch--privacy-policy span {
	transition: opacity 0.4s ease-in-out, translate 0.4s ease-in-out;
	transition-delay: calc(0.05s * var(--index));
}

.sub-mv-small__catch.sub-mv-small__catch--security-policy span {
	transition: opacity 0.4s ease-in-out, translate 0.4s ease-in-out;
	transition-delay: calc(0.05s * var(--index));
}

.sub-mv-small__catch.sub-mv-small__catch--recruit span {
	transition: opacity 0.4s ease-in-out, translate 0.4s ease-in-out;
	transition-delay: calc(0.05s * var(--index));
}

.sub-mv-small__catch span {
	transition: opacity 0.5s ease-in-out, translate 0.5s ease-in-out;
	transition-delay: calc(0.1s * var(--index));
}

.sub-mv {
	height: 50rem;
}

.sub-mv.sub-mv--brand-story {
	height: 50.625rem;
}

.sub-mv.sub-mv--brand-story .sub-mv__content {
	padding-top: 9.375rem;
}

.sub-mv.sub-mv--brand-story .sub-mv__catch {
	margin-top: -3.75rem;
}

.sub-mv__content {
	padding-top: 5rem;
}

.sub-mv__logo {
	transition: opacity 1s ease-in-out;
	transition-delay: 0.3s;
}

.sub-mv__title {
	font-size: 3.75rem;
	letter-spacing: 0.5em;
	transition: opacity 1s ease-in-out;
	transition-delay: 0.6s;
}

.sub-mv__title.sub-mv__title--company,
.sub-mv__title.sub-mv__title--service {
	transition-delay: 0.2s;
}

.sub-mv__catch {
	-webkit-clip-path: inset(0 -5% 40% 0);
	clip-path: inset(0 -5% 40% 0);
	font-size: 4.8125rem;
	gap: 5rem;
	letter-spacing: 1em;
	margin-top: -3.75rem;
}

.sub-mv__catch {
	transition: opacity 0.5s ease-in-out, translate 0.5s ease-in-out;
	transition-delay: calc(0.1s * var(--index));
}

.sub-mv__catch.sub-mv__catch--service {
	margin-top: -3.4375rem;
	transform: translateX(-1.04375rem);
}

.sub-mv__service-subtitle {
	font-size: 1rem;
	margin-top: -1.875rem;
	transition: opacity 1s ease-in-out;
	transition-delay: 1s;
}

}

@media (min-width: 768px) {

a[href*="tel:"] {
	-webkit-text-decoration: none;
	cursor: default;
	pointer-events: none;
	text-decoration: none;
}

}

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

.service-sec03__item:not(:last-child) {
	border-right: 1px solid #DDD;
}

}

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

.top-our-service__text-content {
	width: 40%;
}

}

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

.top-our-service__text-content {
	margin-left: auto;
	margin-right: auto;
	max-width: 35rem;
}

}

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

.footer__policy-link:hover {
	color: #00479D;
	color: var(--blue);
}

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

}

@media (min-width: 1300px) {

.footer__bottom {
	gap: 6.75rem;
	max-width: clamp(1340px, 1020px + 22.2222222222vw, 1420px);
}

}

@media (min-width: 1340px) {

html {
	font-size: 16px;
}

}

@media (min-width: 1400px) {

.top-what-we-do__text-block::before {
	height: calc(100% - 8.125rem);
	left: calc(-50vw + 38.875rem);
	top: -16.875rem;
	width: calc(50vw + 3.125rem);
}

}

@media (min-width: 1440px) {

.service-slide__content {
	padding-left: calc(50vw - 50%);
}

.service-slide__list {
	grid-auto-columns: clamp(320px, 80px + 16.6666666667vw, 380px);
}

.top-journal__content {
	padding-left: calc(50vw - 50%);
}

.accordion-list {
	width: 60%;
}

.footer__company,
.footer__address,
.footer__tel {
	font-size: clamp(10px, 6px + 0.2777777778vw, 11px);
}

.footer__logo {
	width: clamp(172px, 140px + 2.2222222222vw, 180px);
}

.footer__policy-link {
	font-size: clamp(10px, 6px + 0.2777777778vw, 11px);
}

.footer__copyright {
	font-size: clamp(10px, 6px + 0.2777777778vw, 11px);
}

}

@media (min-width: 1500px) {

.sub-list-mv__bg {
	max-height: 37.5rem;
}

}

@media (max-width: 768px) {

.--delay-1,
.--delay-2,
.--delay-3,
.--delay-4 {
	transition-delay: 0s;
}

}

@media (max-width: 767px) {

.brand-story__block.--reverse {
	display: flex;
	flex-direction: column-reverse;
}

.brand-story__block--vision {
	margin-top: 7.5rem;
}

.brand-story__video-wrap {
	margin-left: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
	margin-left: calc(50% - 50vi);
	margin-right: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-right: calc(50% - 50vi);
	margin-top: 3.125rem;
}

.brand-story__future-list {
	flex-direction: column;
	gap: 1.875rem;
}

.brand-story__future-item {
	grid-gap: 1.25rem;
	align-items: center;
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 140fr 155fr;
}

.company__block-text-wrap {
	padding-bottom: 1.875rem;
	padding-top: 1.875rem;
}

.company__block-img-wrap {
	margin-left: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
	margin-left: calc(50% - 50vi);
	margin-right: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-right: calc(50% - 50vi);
}

.company__block-bg {
	left: 50%;
	translate: -50% 0;
}

.company__block-item {
	padding-left: 1.125rem;
	text-indent: -1.125rem;
}

.company__history-item,
.company__info-item {
	gap: 0.625rem;
}

.form__radio-group {
	flex-wrap: wrap;
}

.journal__nav {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	overflow-x: auto;
	padding-left: 30px;
}

.journal__nav-item:first-child .journal__nav-link {
	padding-left: 0;
}

.mv__content {
	justify-content: center;
	margin-top: 2.5rem;
}

.mv__title {
	padding-left: 0.625rem;
	padding-right: 0.625rem;
}

.policy__list-has-sub-list .policy__item {
	padding-left: 0;
	text-indent: 0;
}

.service-sec01__text-area {
	order: 2;
	padding-bottom: 6.25rem;
	position: relative;
	z-index: 2;
}

.service-sec01__image-area {
	order: 1;
	z-index: 1;
}

.service-sec01__image-wrap {
	margin-left: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
	margin-left: calc(50% - 50vi);
	margin-right: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-right: calc(50% - 50vi);
}

.service-sec01__img {
	opacity: 0.3;
}

.service-sec03__list {
	gap: 6.25rem;
}

.service-flow__step {
	border-bottom: 1px solid #DDD;
	padding-bottom: 0.3125rem;
}

.service-flow__content {
	margin-top: 0.9375rem;
}

.service-flow__subtitle {
	text-align: center;
}

.service-flow__text {
	letter-spacing: 0.05em;
}

.top-news__text-content {
	gap: 0.8125rem;
	padding: 0px 1.875rem 6.25rem 1.875rem;
}

.top-our-service__inner {
	margin: 0 auto;
	max-width: 440px;
}

.accordion-list {
	flex-direction: column;
}

.accordion-title {
	flex-direction: row-reverse;
	justify-content: space-between;
	width: 100%;
}

.accordion-title__arrow {
	transform: rotate(-90deg);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease-in-out;
}

.accordion-item.is-open .accordion-content {
	max-height: 800px;
}

.accordion-content__inner {
	padding: 0.625rem 1.875rem 3.125rem 1.875rem;
}

.accordion-content__title {
	text-align: center;
}

.accordion-content__img {
	border-radius: 0px 0px 10px 0px;
}

.accordion-content__category {
	text-align: center;
}

.accordion-content__link-wrap {
	display: flex;
	justify-content: center;
}

.accordion-content__link.link-btn {
	font-size: 1rem;
}

.top-what-we-do {
	background: rgba(255, 255, 255, 0.5);
	padding-bottom: 7.1875rem;
	padding-top: 7.5rem;
}

.top-what-we-do__text-block::before {
	display: none;
}

.top-what-we-do__link-wrap {
	display: flex;
	justify-content: center;
}

.top-what-we-do__video-wrap {
	margin-top: 3.125rem;
}

.js-clip-video.is-active video,
.js-clip-video-rootMargin-110.is-active video {
	transition-delay: 0;
}

.js-news-slide-right .news-list__item {
	translate: 20px 0;
}

.js-value-list .brand-story__value-item {
	translate: 20px 0;
}

.js-future-list .brand-story__future-item {
	translate: 20px 0;
}

.js-service-sec01-clip-img {
	opacity: 0;
	transition: opacity 1s ease-out;
}

.js-service-sec01-clip-img.is-active {
	opacity: 1;
}

.breadcrumbs.breadcrumbs--long-text {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	overflow-x: auto;
	padding-left: 30px;
}

.breadcrumbs.breadcrumbs--long-text .breadcrumbs__list {
	justify-content: flex-start;
}

.card-item__text {
	letter-spacing: 0.05em;
}

.footer--sub {
	padding-bottom: 1.875rem;
	padding-top: 6.25rem;
}

.footer__pc-nav {
	display: none;
}

.footer__bottom {
	flex-direction: column;
}

.footer__info {
	flex-direction: column;
	order: 3;
}

.footer__logo {
	order: 2;
}

.footer__policy-list {
	flex-direction: column;
	padding-bottom: 1.5625rem;
	padding-top: 1.875rem;
	width: 100%;
}

.footer__policy-item {
	text-align: center;
	width: 100%;
}

.footer__policy-link {
	width: 100%;
}

.header__nav {
	display: none;
}

.header__sub-nav-service {
	display: none;
}

.page-link.page-link--last {
	border-right: none;
}

.brand-story__header .section-header__title {
	font-size: 1.875rem;
}

.section-sub-title {
	text-align: center;
}

.sub-mv-small__catch.sub-mv-small__catch--privacy-policy {
	gap: 0.9375rem;
	transform: translateX(0rem);
}

.sub-mv-small__catch.sub-mv-small__catch--security-policy {
	gap: 0.7875rem;
	transform: translateX(0rem);
}

.sub-mv-small__catch.sub-mv-small__catch--recruit {
	gap: 1rem;
	transform: translateX(0rem);
}

}

@media (max-width: 500px) {

.top-what-we-do__video-wrap {
	margin-left: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
	margin-left: calc(50% - 50vi);
	margin-right: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-right: calc(50% - 50vi);
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}