:root {
	--color-header: #003a93;
	--color-hamburger: #003a93;
	--color-drawer: #003a93;
	--color-footer: #001d58;
	--height-header: 150px;
	--height-header-sp: 80px;
	--color-main: #003a93;
}

.c-hamburger {
	align-items: center;
	background-color: var(--color-hamburger);
	border: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
	height: 40px;
	margin-inline: auto;
	position: relative;
	transition: all 0.5s;
	width: 80px;
}

.c-hamburger__bar {
	background-color: #fff;
	height: 2px;
	position: absolute; /* ハンバーガーボタンのバーのデザイン */
	width: 44px;
}

.c-hamburger__bar:nth-child(1) {
	left: 50%;
	top: 15%;
	transform: translateX(-50%);
}

.c-hamburger__bar:nth-child(2) {
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.c-hamburger__bar:nth-child(3) {
	bottom: 15%;
	left: 50%;
	transform: translateX(-50%);
}

.drawer-open .c-hamburger__bar { /* 斜めにする際に長さを伸ばす */
	width: 50%; /* 中央寄せにして回転 */
}

.drawer-open .c-hamburger__bar:nth-child(1) {
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(135deg);
}

.drawer-open .c-hamburger__bar:nth-child(2) {
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}

.drawer-open .c-hamburger__bar:nth-child(3) {
	bottom: 50%;
	left: 50%;
	transform: translate(-50%, 50%) rotate(-135deg);
}

.c-btn__button {
	height: 70px;
	line-height: 70px;
	margin-left: auto;
	margin-top: 63px;
	position: relative;
	text-align: center;
	width: 300px;
}

.c-btn__button a {
	background-color: white;
	border: 1px solid black;
	display: block; /* ブロック要素として表示 */
	font-size: 18px;
	font-weight: 300;
	transition: translate 0.3s; /* アニメーション効果を追加 */
}

.c-btn__button::after {
	background-color: transparent;
	border: 1px solid white;
	content: "";
	inset: 0;
	position: absolute;
	translate: 3px 3px;
	z-index: -1;
}

.c-btn__button a:hover {
	opacity: 1;
	translate: 3px 3px;
}

.c-btn__arrow {
	background-color: black;
	height: 1px;
	margin-right: 16px;
	position: relative;
	width: 20px;
}

.c-btn__arrow::after {
	background-color: black;
	bottom: 0;
	content: "";
	height: 1px;
	position: absolute;
	right: 0;
	transform: rotate(45deg);
	transform-origin: right top;
	width: 10px;
}

.c-btn-rev__button {
	height: 85px;
	line-height: 85px;
	margin-inline: auto;
	margin-top: 63px;
	position: relative;
	text-align: center;
	width: 370px;
}

.c-btn-rev__button a {
	background-color: #001c55;
	border: 1px solid white;
	color: white;
	display: block;
	font-size: 21px;
	font-weight: 300;
	line-height: 3.5714285714;
	position: relative;
	transition: translate 0.3s; /* アニメーション効果を追加 */
	z-index: 2;
}

.c-btn-rev__button::after {
	background-color: #001c55;
	border: 1px solid white;
	content: "";
	inset: 0;
	position: absolute;
	translate: -3px -3px;
	z-index: 1;
}

.c-btn-rev__button:hover a {
	opacity: 1;
	translate: -3px -3px;
}

.c-btn-rev__arrow {
	background-color: white;
	height: 1px;
	margin-right: 16px;
	position: relative;
	width: 20px;
}

.c-btn-rev__arrow::after {
	background-color: white;
	bottom: 0;
	content: "";
	height: 1px;
	position: absolute;
	right: 0;
	transform: rotate(45deg);
	transform-origin: right top;
	width: 10px;
}

.scroll-hint-icon {
	height: auto;
	z-index: 999;
}

html {
	font-size: 62.5%;
}

body {
	color: #000;
	font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "NOTO SANS JP", sans-serif;
	font-size: 1.6rem;
	line-height: 1.6;
}

img {
	height: 100%;
	width: 100%;
}

a,
button {
	color: inherit;
	display: inline-block;
	height: 100%;
	text-decoration: none;
	transition: opacity 0.3s;
	width: 100%;
}

a:hover,
button:hover {
	opacity: 0.7;
}

/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */

/* Reset box-model and set borders */

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

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

/* Document */

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

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

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

/* Sections */

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

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

body {
	margin: 0;
}

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

main {
	display: block;
}

/* Vertical rhythm */

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

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

/* Headings */

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

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

/* Lists (enumeration) */

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

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

/* Lists (definition) */

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

dt {
	font-weight: bold;
}

dd {
	margin-left: 0;
}

/* Grouping content */

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

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

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

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

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

address {
	font-style: inherit;
}

/* Text-level semantics */

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

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

a {
	background-color: transparent;
	color: inherit;
	text-decoration: none;
}

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

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

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

b,
strong {
	font-weight: bolder;
}

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

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

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

small {
	font-size: 80%;
}

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

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

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Replaced content */

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

/**
 * Prevent vertical alignment issues.
 */

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

/* Forms */

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

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

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

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

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

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

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

:-moz-focusring {
	outline: auto;
}

select:disabled {
	opacity: inherit;
}

/**
 * Remove padding
 */

option {
	padding: 0;
}

/**
 * Reset to invisible
 */

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

legend {
	padding: 0;
}

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

progress {
	vertical-align: baseline;
}

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

textarea {
	overflow: auto;
}

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

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

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

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

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

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

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

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

/**
 * Fix appearance for Firefox
 */

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

/**
 * Clickable labels
 */

label[for] {
	cursor: pointer;
}

/* Interactive */

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

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

details {
	display: block;
}

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

summary {
	display: list-item;
}

/*
 * Remove outline for editable content.
 */

[contenteditable]:focus {
	outline: auto;
}

/* Tables */

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

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

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

caption {
	text-align: left;
}

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

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

span {
	display: inline-block;
}

.mincho {
	font-family: "MyYuMinchoC", sans-serif;
}

.noto {
	font-family: "NOTO SANS JP", sans-serif;
}

.mincho2 {
	font-family: "Yu Mincho", YuMincho, serif;
}

.kozuka {
	font-family: "Kozuka Gothic Pr6N";
}

@font-face {
	font-family: "コーポレート・ロゴ ver2 Bold";
	font-style: normal;
	font-weight: bold;
	src: url("../font/Corporate-Logo-Bold-ver2.ttf") format("truetype");
}

.corporate-logo {
	font-family: "コーポレート・ロゴ ver2 Bold";
}

@font-face {
	font-family: "DIN Condensed";
	font-style: normal;
	font-weight: normal;
	src: url("../font/din-condensed-regular.ttf") format("truetype");
}

.din-condensed {
	font-family: "DIN Condensed";
}

@font-face {
	font-family: "Source Han Sans JP";
	font-style: normal;
	font-weight: normal;
	src: url("../font/SourceHanSansJP-Medium.otf") format("opentype");
}

.gennokaku {
	font-family: "Source Han Sans JP", "源ノ角ゴシック", sans-serif;
}

.l-header {
	background-color: var(--color-header);
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
}

.l-header__inner {
	margin-inline: auto;
	max-width: 1540px;
	padding-inline: 20px;
}

.l-header__content {
	display: flex;
	height: var(--height-header);
	justify-content: space-between;
}

.l-header__logo--link {
	align-items: center;
	color: white;
	display: flex;
	flex: 0 0 300px;
	flex-direction: column;
	margin-left: -5px;
}

.l-header__logo--top {
	align-items: center;
	display: flex;
	justify-content: center;
	margin-top: 35px;
}

.l-header__logo--img {
	height: 22px;
	width: 95px;
}

.l-header__logo--text-sub {
	font-size: 14px;
	font-weight: 300;
	line-height: 7.5px;
	margin-left: 12px;
	margin-top: 8px;
}

.l-header__logo--text-main {
	font-size: 41px;
	line-height: 24px;
	margin-top: 21px;
}

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

.l-header__nav--item,
.l-header__nav--item-contact {
	font-size: 17px;
	line-height: 27px;
}

.l-header__nav--item {
	color: white;
	position: relative;
}

.l-header__nav--item:not(:first-child)::before {
	content: "／";
	left: -2.5rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.l-header__nav--item-link {
	background: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
	padding-block: 16px;
	padding-block: 16px;
	transition: color 0.3s;
	transition: color 0.3s;
}

.l-header__nav--dropdown {
	background-color: #fff;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	left: 50%;
	opacity: 0;
	position: absolute;
	text-align: center;
	top: 100%;
	transition: opacity 0.3s, visibility 0.3s;
	translate: -50%;
	visibility: hidden;
	width: 150px;
}

.l-header__nav--dropdown.is-active {
	opacity: 1;
	visibility: visible;
}

.l-header__nav--dropdown-link {
	background-color: white;
	color: #333;
	display: block;
	padding-block: 9px;
	transition: background-color 0.3s;
}

.l-header__nav--dropdown-link:not(:last-child) {
	border-bottom: 1px solid #333;
}

.l-header__nav--link-contact {
	align-items: center;
	background-color: white;
	border-radius: 28px;
	color: #247cff;
	display: flex;
	gap: 15px;
	justify-content: center;
	padding: 16px 24px;
}

.l-header__nav--icon-contact {
	fill: currentColor;
}

.l-section__inner {
	margin-inline: auto;
	max-width: 1140px;
	padding-inline: 20px;
	width: 100%;
}

.l-section__title--en {
	color: #003a93;
	font-size: 15px;
	font-weight: 600;
	line-height: 32px;
}

.l-section__title--ja {
	font-size: 38px;
	font-weight: 600;
	line-height: 58px;
}

.l-section__title--bar {
	background-color: #003a93;
	height: 1px;
	margin-top: 22px;
	width: 70px;
}

.l-footer {
	background-color: var(--color-footer);
	color: #fff;
	padding-bottom: 112px;
	padding-top: 150px;
}

.l-footer__inner {
	margin-inline: auto;
	max-width: 1540px;
	padding-inline: 20px;
}

.l-footer__contents {
	display: flex;
	justify-content: space-between;
}

.l-footer__logo--link {
	color: white;
	flex: 0 0 300px;
	height: -moz-fit-content;
	height: fit-content;
	margin-left: 5px;
	margin-top: 5px;
}

.l-footer__logo--top {
	align-items: center;
	display: flex;
}

.l-footer__logo--img {
	height: 22px;
	width: 95px;
}

.l-footer__logo--text-sub {
	font-size: 14px;
	font-weight: 300;
	line-height: 7.5px;
	margin-left: 12px;
	margin-top: 8px;
}

.l-footer__logo--text-main {
	font-size: 41px;
	line-height: 24px;
	margin-left: -2px;
	margin-top: 21px;
}

.l-footer__office-info {
	display: flex;
	gap: 30px;
	margin-top: 42px;
}

.l-footer__office-info--title {
	font-size: 23px;
	font-weight: bold;
	margin-bottom: 4px;
}

.l-footer__office-info--text {
	font-size: 18px;
	margin-bottom: 3px;
}

.l-footer__links-sns {
	display: flex;
	gap: 25px;
	margin-top: 39px;
}

.l-footer__links-sns--item {
	background-color: #fff;
	border-radius: 50%;
	display: block;
	height: 28px;
	width: 28px;
}

.l-footer__links-sns--item i {
	color: var(--color-footer);
	display: grid;
	height: 100%;
	place-items: center;
	width: 100%;
}

.l-footer__nav {
	display: flex;
	justify-content: flex-end;
}

.l-footer__nav--list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.l-footer__nav--item {
	border-bottom: #fff 2px solid;
	color: #fff;
	font-size: 18px;
	line-height: 31.5px;
	padding-bottom: 11px;
	width: 330px;
}

.l-footer__nav--link {
	padding-left: 5px;
	text-decoration: none;
	transition: opacity 0.3s;
}

.l-footer__nav--link:hover {
	opacity: 0.7;
}

.l-footer__copy {
	background-color: #ccc;
	color: #000;
	display: block;
	font-size: 18px;
	padding-block: 8px;
	text-align: center;
}

.p-nav {
	background-color: var(--color-hamburger);
	color: white; /* width: 55px; */
	height: 70px;
	position: fixed;
	right: 50px;
	text-align: center;
	top: 40px;
	width: 80px;
	z-index: 1000;
}

.p-nav__hamburger {
	margin-top: 6px;
}

.p-nav__hamburger--text {
	color: white;
	font-size: 13px;
}

.p-drawer__nav {
	background-color: var(--color-drawer);
	color: white;
	height: calc(100% - var(--height-header));
	opacity: 0.9;
	position: fixed;
	right: -100%;
	top: var(--height-header);
	transition: 0.7s;
	width: 280px;
	z-index: 500;
}

.drawer-open .p-drawer__nav {
	right: 0;
}

.p-drawer__nav--list {
	align-items: center;
	display: flex;
	flex-direction: column;
	font-size: 30px;
	margin-block: 100px;
	text-align: center;
}

.p-drawer__nav--item {
	width: 100%;
}

.p-drawer__nav--link {
	padding-block: 3rem;
}

.p-drawer__mask {
	background: transparent;
	content: "";
	inset: 0;
	left: 100%;
	position: fixed;
	transition: 0.7s;
	z-index: 50;
}

.drawer-open .p-drawer__mask {
	left: 0;
}

.p-header__spacer {
	height: var(--height-header);
}

.p-fv {
	position: relative;
}

.p-fv__contents {
	height: calc(100vh - var(--header-height));
	width: 100%;
}

.p-fv__wrapper {
	display: flex;
}

.p-fv__img {
	flex: 0 0 50%;
}

.p-fv__texts {
	color: white;
	position: absolute;
	right: clamp(10rem, calc(8.49vw + 1.2961rem), 17.6rem);
	text-align: right;
	top: 61%;
	transform: translateY(-50%);
	width: 100%;
}

.p-fv__img-logo {
	display: inline-block;
	height: clamp(4.8rem, calc(4.92vw + -0.2391rem), 9.2rem);
	width: clamp(20rem, calc(21.79vw + -2.3324rem), 39.5rem);
}

.p-fv__img-logo img {
	-o-object-fit: cover;
	object-fit: cover;
}

.p-fv__bar {
	background-color: white;
	display: block;
	height: 2px;
	margin-left: auto;
	margin-top: clamp(3.2rem, calc(2.12vw + 1.024rem), 5.1rem);
	width: clamp(11rem, calc(12.29vw + -1.5978rem), 22rem);
}

.p-fv__message-main {
	font-size: clamp(3.6rem, calc(4.02vw + -0.5229rem), 7.2rem);
	letter-spacing: 7px;
	line-height: 1.5;
	margin-top: clamp(1.6rem, calc(1.9vw + -0.3469rem), 3.3rem);
}

.p-fv__message-sub {
	font-family: "NOTO SANS JP", sans-serif;
	font-size: 36px;
	font-size: clamp(2rem, calc(1.79vw + 0.1676rem), 3.6rem);
	font-weight: 100;
}

.p-news {
	padding-bottom: 88px;
	padding-top: 60px;
}

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

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

.p-news__title--bar {
	background-color: #003a93;
	height: 2px;
	width: 75px;
}

.p-news__title--ja {
	font-size: 35px;
	font-weight: 300;
	line-height: 1;
	margin-left: 37px;
}

.p-news__contents {
	margin-top: 12px;
	padding-inline: 84px;
}

.p-news-item {
	background: #fff;
	border-bottom: 1px solid black;
	transition: background-color 0.3s ease;
}

.p-news-item:hover {
	background-color: #eee;
}

.p-news-item-link {
	align-items: center;
	display: flex;
	padding-block: 31px;
}

.p-news-item-data {
	color: #808080;
	flex: 0 0 176px;
	font-size: 20px;
	font-weight: 300;
}

.p-news-item-text {
	color: #000;
	font-size: 20px;
	font-weight: 300;
	line-height: 1.6;
	padding-right: 16px;
}

.p-about {
	padding-bottom: 208px; /* background: url(./assets/img/about-bg.webp) no-repeat center center/cover; */
	padding-top: 186px;
	position: relative;
}

.p-about__bar {
	margin-top: 31px;
}

.p-about__message {
	letter-spacing: 2px;
	line-height: 2;
	margin-top: 32px;
	width: 68%;
}

.p-about__button {
	background-color: #003a93;
	color: white;
	margin-top: 30px;
	position: relative;
	text-align: center;
	width: 280px;
}

.p-about__button a {
	font-size: 18px;
	line-height: 54px;
}

.p-about__button::after {
	background-color: white;
	content: "";
	height: 1px;
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
}

.p-about__bg {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	z-index: -1;
}

.p-reason__wrapper {
	display: flex;
}

.p-reason__img {
	flex: 1;
	object-fit:cover;
}

.p-reason__container {
	flex: 0 0 40%;
	padding-bottom: 40px;
	padding-top: 60px;
}

.p-reason__inner {
	max-width: revert;
	padding-inline: clamp(3.6rem, calc(6.27vw + -6.4376rem), 5.6rem);
}

.p-reason__message {
	letter-spacing: 2px;
	line-height: 2;
	margin-top: 33px;
}

.p-reason__list {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(1.6rem, calc(-10.66vw + 22.064rem), 5rem);
	justify-content: center;
	margin-top: 42px;
}

.p-reason__item {
	background-color: #247cff;
	clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 20%);
	padding-block: 16px;
	text-align: center;
	width: 45%;
	padding:3%;
}

.p-reason__item--number {
	background-color: white;
	color: #247cff;
	display: inline-block;
	font-family: "DIN Condensed";
	font-size: 35px;
	line-height: 1;
	padding-block: 2px;
	padding-inline: 18px;
}

.p-reason__item--text {
	color: white;
	font-size: 2.2rem;
	font-weight: 600;
	line-height: 1.75;
	margin-top: 6px;
}

.p-overview {
	padding-bottom: 128px;
	padding-top: 128px;
	position: relative;
}

.p-overview__list {
	display: flex;
	gap: 2%;
	justify-content: center;
	margin-top: 57px;
}

.p-overview__item {
	display: flex;
	flex-direction: column;
	height: 712px;
	width: 49%;
}

.p-overview__item--img {
	aspect-ratio: 536/440;
	height: auto;
	width: 100%;
}

.p-overview__item--wrapper {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding-inline: 52px;
}

.p-overview__item--texts {
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: space-between;
}

.p-overview__item--title {
	color: #003a93;
	font-size: 30px;
	font-weight: 600;
	margin-top: 32px;
	text-align: center;
}

.p-overview__item--text {
	font-size: 18px;
	font-weight: 300;
	line-height: 1.7;
	margin-top: 18px;
}

.p-overview__item--link {
	display: block;
	font-size: 18px;
	height: auto;
	line-height: 38px;
	margin-left: auto;
	padding-inline: 8px;
	position: relative;
	transition: all 0.3s ease;
	width: 162px;
}

.p-overview__item--link:hover {
	margin-right: -5px;
	width: 167px;
}

.p-overview__item--link::before {
	background-color: black;
	bottom: 0;
	content: "";
	display: block;
	height: 1px;
	left: 0;
	position: absolute;
	width: 100%;
}

.p-overview__item--link::after {
	background-color: black;
	bottom: 0;
	content: "";
	display: block;
	height: 1px;
	position: absolute;
	right: 0;
	rotate: 45deg;
	transform-origin: right top;
	width: 10%;
}

.p-overview__bg {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	z-index: -1;
}

.p-company {
	padding-bottom: 239px;
	padding-top: 232px;
	position: relative;
}

.p-company__wrapper {
	display: flex;
	position: relative;
	z-index: 1;
}

.p-company__hgroup {
	flex: 0 0 264px;
	padding-top: 19px;
}

.p-company__title--en {
	color: white;
}

.p-company__title--ja {
	color: white;
	margin-top: 16px;
}

.p-company__bar {
	display: none;
}

.p-company__contents {
	border-left: 1px solid white;
	flex: 1;
}

.p-company__mask {
	background-color: rgba(115, 99, 87, 0.47);
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-company__message {
	color: white;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.7;
	margin-left: 101px;
	margin-right: -5px;
}

.p-company__bg {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	z-index: -1;
}

.p-recruit {
	padding-bottom: 227px;
	padding-top: 220px;
	position: relative;
}

.p-recruit__wrapper {
	display: flex;
	position: relative;
	z-index: 1;
}

.p-recruit__hgroup {
	flex: 0 0 264px;
	padding-top: 54px;
}

.p-recruit__title--en {
	color: white;
}

.p-recruit__title--ja {
	color: white;
	margin-top: 16px;
}

.p-recruit__bar {
	display: none;
}

.p-recruit__contents {
	border-left: 1px solid white;
	flex: 1;
}

.p-recruit__mask {
	background-color: rgba(0, 39, 74, 0.2);
	height: 100%;
	left: 0;
	mix-blend-mode: darken;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-recruit__message {
	color: white;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.8;
	margin-left: 101px;
	margin-right: -5px;
}

.p-recruit__bg {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	z-index: -1;
}

.p-contact {
	background-color: white;
	overflow: hidden;
	padding-bottom: 127px;
	padding-top: 100px;
	position: relative;
	text-align: center;
}

.p-office .p-contact,
.p-sec-contact .p-contact,
.p-privacy .p-contact {
	background-color: #f2f2f2;
}

.p-contact__contents {
	margin-top: 20px;
}

.p-contact__message {
	font-size: 18px;
	font-weight: 300;
}

.p-contact__buttons {
	align-items: stretch;
	display: flex;
	gap: 4%;
	justify-content: center;
	margin-top: 45px;
}

.p-contact__button-tel,
.p-contact__button-mail {
	background-color: var(--color-main);
	border: 4px solid var(--color-main);
	border-radius: 10px;
	color: white;
	display: flex;
	flex-direction: column;
	padding: 30px;
	width: 48%;
}

.p-contact__button-mail {
	background-color: white;
	color: var(--color-main);
}

.p-contact__button-tel:hover {
	background-color: white;
	color: var(--color-main);
}

.p-contact__button-mail:hover {
	background-color: var(--color-main);
	color: white;
}

.p-contact__button-tel--text,
.p-contact__button-mail--text {
	font-size: 18px;
	font-weight: 300;
}

.p-contact__button-tel--wrapper,
.p-contact__button-mail--wrapper {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-bottom: -9px;
	margin-left: 16px;
}

.p-contact__button-tel--wrapper {
	margin-top: -13px;
}

.p-contact__button-tel--number {
	font-family: "NOTO SANS JP", sans-serif;
	font-size: clamp(4.5rem, calc(0.89vw + 3.5838rem), 5.3rem);
	font-weight: 400;
	letter-spacing: 2px;
}

.p-contact__button-mail--contact {
	font-size: clamp(2.8rem, calc(0.56vw + 2.2274rem), 3.3rem);
	font-weight: 600;
}

.p-contact__button-tel--number:hover,
.p-contact__button-mail--address:hover {
	opacity: revert;
}

.p-contact__button-tel--icon-svg,
.p-contact__button-mail--icon-svg {
	fill: currentColor;
}

.p-contact__bg {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	z-index: -1;
}

.gray-triangle {
	background-color: rgba(242, 242, 242, 0.4);
	clip-path: polygon(0 0, 81% 0, 0 100%);
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transition: translate 3s ease-out;
	translate: -100% 0;
	width: 100%;
}

.is-show .gray-triangle {
	translate: 0 0;
}

.p-office .gray-triangle,
.p-sec-contact .gray-triangle,
.p-privacy .gray-triangle {
	display: none;
}

.blue-triangle {
	background-color: rgba(36, 124, 255, 0.05);
	clip-path: polygon(100% 100%, 48% 100%, 100% 35%);
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	transition: translate 3s;
	translate: 100% 0;
	width: 100%;
}

.is-show .blue-triangle {
	translate: 0 0;
}

.l-footer__nav--item {
	padding-left: 5px;
	position: relative;
}

.l-footer__nav--item:has(.js-nav-dropdown.is-active) {
	margin-bottom: 110px;
}

.l-footer__nav--dropdown {
	background-color: #fff;
	box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
	left: 0;
	opacity: 0;
	position: absolute;
	text-align: center;
	top: calc(100% + 10px);
	transition: opacity 0.3s, visibility 0.3s;
	visibility: hidden;
	width: 150px;
}

.l-footer__nav--dropdown.is-active {
	opacity: 1;
	visibility: visible;
}

.l-footer__nav--dropdown-link {
	background-color: white;
	color: #333;
	display: block;
	padding-block: 9px;
	transition: background-color 0.3s;
}

.l-footer__nav--dropdown-link:not(:last-child) {
	border-bottom: 1px solid #333;
}

.l-footer__nav--dropdown-link:hover {
	background-color: #eee;
}

button.l-footer__nav--link {
	background: none;
	border: none;
	color: inherit;
	cursor: pointer;
	font-family: inherit;
}

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

.display-inline-block {
	display: inline-block;
}

.overflow-auto {
	overflow: auto;
}

@media (any-hover: hover) {

.l-header__nav--item-link:hover {
	opacity: 0.7;
}

.l-header__nav--dropdown-link:hover {
	background-color: #eee;
	opacity: revert;
}

}

@media (hover: hover) {

.l-header__nav--link-contact:hover {
	background-color: #247cff;
	color: white;
	opacity: revert;
}

}

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

.l-footer__nav--item {
	width: 200px;
}

.is-sp {
	display: none !important;
}

.is-pc {
	display: none !important;
}

.hidden-tab {
	display: none !important;
}

}

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

.p-nav {
	display: none;
}

}

@media (min-width: 1025px) {

.p-recruit__button {
	margin-top: 50px;
}

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

.is-sp {
	display: none !important;
}

.is-tab {
	display: none !important;
}

.hidden-pc {
	display: none !important;
}

}

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

.p-reason__wrapper {
	flex-direction: column;
}

.p-reason__list {
	gap: 60px;
}

.p-reason__item {
	max-width: 470px;
}

}

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

.p-reason__item {
	max-width: 300px;
	min-width: 200px;
}

}

@media (max-width: 1024px) {

.c-hamburger {
	height: 22px;
	width: 53px;
}

.c-hamburger__bar {
	width: 30px;
}

.c-btn__button {
	height: 50px;
	line-height: 50px;
	margin-inline: auto;
	margin-top: 20px;
	width: 200px;
}

.c-btn-rev__button {
	height: 50px;
	line-height: 50px;
	margin-inline: auto;
	margin-top: 20px;
	width: 200px;
}

.l-header__content {
	height: var(--height-header-sp);
}

.l-header__logo--link {
	flex: 0 0 200px;
}

.l-header__logo--top {
	margin-top: 15px;
}

.l-header__logo--img {
	height: 14px;
	width: 63px;
}

.l-header__logo--text-sub {
	font-size: 9px;
	line-height: 5px;
	margin-left: 8px;
	margin-top: 5px;
}

.l-header__logo--text-main {
	font-size: 27px;
	line-height: 16px;
	margin-top: 14px;
}

.l-section__title--en {
	font-size: 12px;
	line-height: 26px;
}

.l-section__title--ja {
	font-size: 24px;
	line-height: 36px;
}

.l-section__title--bar {
	margin-top: 15px;
	width: 45px;
}

.p-nav {
	right: 0;
	top: 0;
}

.p-nav__hamburger {
	margin-top: 26px;
}

.p-nav__hamburger--text {
	font-size: 9px;
}

.p-drawer__nav {
	height: calc(100% - var(--height-header-sp));
	top: var(--height-header-sp);
}

.p-drawer__nav--list {
	font-size: 20px;
	margin-block: 50px;
}

.p-drawer__nav--link {
	padding-block: 2rem;
}

.p-header__spacer {
	height: var(--height-header-sp);
}

.p-fv__texts {
	right: clamp(1.6rem, calc(4.83vw + 0.0546rem), 5rem);
	top: 50%;
	transform: translateY(-50%);
}

.p-fv__img-logo {
	height: clamp(2.3rem, calc(3.27vw + 1.2546rem), 4.6rem);
	width: clamp(10rem, calc(14.2vw + 5.4546rem), 20rem);
}

.p-fv__bar {
	height: 1px;
	margin-top: clamp(1.6rem, calc(2.27vw + 0.8727rem), 3.2rem);
	width: clamp(6rem, calc(8.52vw + 3.2727rem), 12rem);
}

.p-fv__message-main {
	font-size: clamp(1.4rem, calc(1.99vw + 0.7636rem), 2.8rem);
	letter-spacing: 5px;
	margin-top: clamp(1rem, calc(1.42vw + 0.5455rem), 2rem);
}

.p-fv__message-sub {
	font-size: clamp(0.9rem, calc(0.99vw + 0.5818rem), 1.6rem);
}

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

.p-news__title--bar {
	width: 45px;
}

.p-news__contents {
	padding-inline: 0;
}

.p-news-item-link {
	align-items: revert;
	flex-direction: column;
	padding-block: 10px;
}

.p-news-item-data {
	flex: 0 0 100%;
	font-size: 16px;
}

.p-news-item-text {
	font-size: 16px;
	margin-top: 5px;
	padding-right: 0;
}

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

.p-about__message {
	line-height: 1.7;
	width: 100%;
}

.p-reason__container {
	padding-bottom: 40px;
	padding-top: 40px;
}

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

.p-reason__message {
	line-height: 1.7;
	margin-top: 20px;
}

.p-reason__item--number {
	font-size: 25px;
}

.p-reason__item--text {
	font-size: 20px;
}

.p-overview {
	padding-bottom: 20px;
	padding-top: 40px;
}

.p-overview__list {
	flex-direction: column;
	gap: 0;
	margin-top: 40px;
}

.p-overview__item {
	height: auto;
	width: 100%;
}

.p-overview__item--wrapper {
	padding-bottom: 40px;
	padding-inline: 20px;
}

.p-overview__item--title {
	font-size: 24px;
	margin-top: 20px;
}

.p-overview__item--text {
	font-size: 16px;
	margin-top: 12px;
}

.p-overview__item--link {
	margin-top: 20px;
}

.p-company {
	padding-bottom: 40px;
	padding-top: 40px;
}

.p-company__wrapper {
	flex-direction: column;
}

.p-company__hgroup {
	flex: 0 0 100%;
	padding-top: 0;
}

.p-company__title--ja {
	margin-top: 0;
}

.p-company__bar {
	background-color: white;
	display: block;
}

.p-company__contents {
	border-left: none;
	margin-top: 20px;
}

.p-company__message {
	font-size: 16px;
	line-height: 1.6;
	margin-left: 0;
	margin-right: 0;
	padding-inline: 20px;
}

.p-recruit {
	padding-bottom: 40px;
	padding-top: 40px;
}

.p-recruit__wrapper {
	flex-direction: column;
}

.p-recruit__hgroup {
	flex: 0 0 100%;
	padding-top: 0;
}

.p-recruit__title--ja {
	margin-top: 0;
}

.p-recruit__bar {
	background-color: white;
	display: block;
}

.p-recruit__contents {
	border-left: none;
	margin-top: 20px;
}

.p-recruit__message {
	font-size: 16px;
	line-height: 1.6;
	margin-left: 0;
	margin-right: 0;
	padding-inline: 20px;
}

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

.p-contact .l-section__title--ja {
	font-size: 20px;
}

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

.p-contact__buttons {
	flex-direction: column;
	gap: 20px;
}

.p-contact__button-tel,
.p-contact__button-mail {
	margin-inline: auto;
	max-width: 280px;
	padding: 20px;
	width: 100%;
}

.p-contact__button-tel--text,
.p-contact__button-mail--text {
	font-size: 16px;
}

.p-contact__button-tel--wrapper,
.p-contact__button-mail--wrapper {
	gap: revert;
	margin-left: 0;
}

.p-contact__button-tel--wrapper {
	margin-top: 0;
}

.p-contact__button-tel--icon,
.p-contact__button-mail--icon {
	scale: 0.5;
}

.p-contact__button-tel--number {
	font-size: 22px;
	letter-spacing: normal;
	width: auto;
}

.p-contact__button-mail--contact {
	font-size: 14px;
	width: auto;
}

.is-tab {
	display: none !important;
}

.is-pc {
	display: none !important;
}

.hidden-sp {
	display: none !important;
}

}

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

.c-btn-rev__button a {
	font-size: 15px;
}

.l-header__nav {
	display: none;
}

.p-reason__list {
	gap: clamp(1.6rem, calc(6.25vw + -0.4rem), 6rem);
}

}

@media (max-width: 767px) {

.l-footer {
	padding-bottom: 20px;
	padding-top: 20px;
}

.l-footer__logo--link {
	flex: 0 0 200px;
}

.l-footer__logo--top {
	margin-top: 15px;
}

.l-footer__logo--img {
	height: 14px;
	width: 63px;
}

.l-footer__logo--text-sub {
	font-size: 9px;
	line-height: 5px;
	margin-left: 8px;
	margin-top: 5px;
}

.l-footer__logo--text-main {
	font-size: 27px;
	line-height: 16px;
	margin-top: 14px;
}

.l-footer__office-info {
	flex-direction: column;
	gap: 10px;
	margin-top: 20px;
}

.l-footer__office-info--title {
	font-size: 18px;
}

.l-footer__office-info--text {
	font-size: 12px;
	margin-bottom: 0px;
}

.l-footer__links-sns {
	margin-top: 20px;
}

.l-footer__nav {
	justify-content: flex-start;
}

.l-footer__nav--item {
	font-size: 12px;
	line-height: 24.5px;
	padding-bottom: 2px;
	width: 200px;
}

.l-footer__copy {
	font-size: 14px;
}

}

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

.l-footer__nav--item:has(.js-nav-dropdown.is-active) {
	margin-bottom: 90px;
}

}

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

.l-footer__contents {
	flex-direction: column;
	gap: 40px;
	margin-inline: auto;
	max-width: 200px;
}
	.p-reason__item{
		width:75%;
	}


}
/*  アニメーション*/
       .fade {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 1s ease-out, transform 1s ease-out;
        }

        .fade.show {
            opacity: 1;
            transform: translateY(0);
        }