@charset "UTF-8";

:root {
	--bl: #000;
	--gray-02: #ccc;
	--grad-01: linear-gradient(60deg, var(--MAIN) 0%, var(--MAIN) 40%, var(--ACC) 100%);
	--grad-02: linear-gradient(90deg, var(--MAIN) 0%, var(--ACC) 100%);
	--transition: all 0.3s ease-in-out;
	--oversize: calc((100% - 100vw) / 2);
}


/* ==================================
リセット・調整
===================================== */
:where(img) {
	/* max-width: 100%; */
	height: auto;
	vertical-align: bottom;
}

/*---------- アクセシビリティ ----------*/
i,
[class*="material-icons"],
[class*="material-symbols"] {
	speak: none;
}

/*---------- ボタンのアイコン変更 ----------*/
/* :where(.lib-link__btn):not([class*="ico-after-"]):not([class*="ico-before-"]) > .txt:after {
content: "\ea03";
font-size: 1em;
} */

/*---------- tableの調整 ----------*/
/* :where(table) > thead th:first-child {
border-left-color: var(--LGRY);
}
:where(table) > thead th {
border-top-color: var(--LGRY);
}
:where(table) > thead th:last-child {
border-right-color: var(--LGRY);
}
:where(table) th,
:where(table) > thead {
border: var(--WHT) 1px solid;
background-color: var(--LGRY);
color: var(--DEF);
}
:where(table) tbody > tr > th:first-child {
border-left-color: var(--LGRY);
}
:where(table) td {
border: var(--LGRY) 1px solid;
} */
@media print, screen and (min-width: 768px) {
	:where(table.lib-table__01) th {
		width: 25%;
	}
	.lib-scroll__outer :where(table.lib-table__02) tbody > tr > th {
		width: 25%;
	}
}


/* ==================================
タイポ
===================================== */
/* ゴシックとか */
.ff-notosans {
	font-family: "Noto Sans JP", serif;
}
.ff-lato {
	font-family: "Lato", sans-serif;
	/* letter-spacing: 0.05rem; */
}
.ff-oswald {
	font-family: "Oswald", sans-serif;
}
.ff-poppins {
	font-family: "Poppins", sans-serif;
}
.ff-zenmarugo {
	font-family: "Staatliches", sans-serif;
}
.ff-montserrat {
	font-family: "Montserrat", sans-serif;
}
.ff-staatliches {
	font-family: "Zen Maru Gothic", sans-serif;
}
.ff-m-plus-rounded-1c {
	font-family: "M PLUS Rounded 1c", sans-serif;
	transform: rotate(0.07deg);
}
/* 明朝とか */
.ff-notoserif {
	font-family: "Noto Serif JP", serif;
}
.ff-yumincho {
	font-family: "Yu Mincho", "YuMincho", serif;
}

.fw-600 {
	font-weight: 600 !important;
}
.fw-800 {
	font-weight: 800 !important;
}
.fw-900 {
	font-weight: 900 !important;
}


/* ==================================
ユーティリティー
===================================== */
/*---------- 画像の比率 ----------*/
.u-aspect img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.u-aspect.--contain img {
	object-fit: contain;
}
.u-aspect.--16x9 img {
	aspect-ratio: 16 / 9;
}
.u-aspect.--4x3 img {
	aspect-ratio: 4 / 3;
}
.u-aspect.--21x9 img {
	aspect-ratio: 21 / 9;
}
.u-aspect.--2x1 img {
	aspect-ratio: 2 / 1;
}
.u-aspect.--3x1 img {
	aspect-ratio: 3 / 1;
}
.u-aspect.--1x1 img {
	aspect-ratio: 1 / 1;
}
.u-aspect.--7x8 img {
	aspect-ratio: 7 / 8;
}
.u-aspect.--9x16 img {
	aspect-ratio: 9 / 16;
}
.u-aspect.--3x4 img {
	aspect-ratio: 3 / 4;
}

/*---------- 角丸 ----------*/
[class*="u-rounded-"] {
	overflow: hidden;
}
.u-rounded-_25 {
	border-radius: 0.25rem !important;
}
.u-rounded-_5 {
	border-radius: 0.5rem !important;
}
.u-rounded-_75 {
	border-radius: 0.75rem !important;
}
.u-rounded-1 {
	border-radius: 1rem !important;
}
.u-rounded-1_5 {
	border-radius: 1.5rem !important;
}
.u-rounded-1_25 {
	border-radius: 1.25rem !important;
}
.u-rounded-2 {
	border-radius: 2rem !important;
}
.u-rounded-3 {
	border-radius: 3rem !important;
}
.--t-only {
	border-bottom-right-radius: unset !important;
	border-bottom-left-radius: unset !important;
}
.--b-only {
	border-top-right-radius: unset !important;
	border-top-left-radius: unset !important;
}
.--r-only {
	border-top-left-radius: unset !important;
	border-bottom-left-radius: unset !important;
}
.--l-only {
	border-top-right-radius: unset !important;
	border-bottom-right-radius: unset !important;
}

/*---------- はみ出させる ----------*/
.u-over {
	margin-inline: var(--oversize);
}
/* 右に */
.u-r-over {
	margin-right: var(--oversize);
}
@media print, screen and (min-width: 768px) {
	.u-r-md-over {
		margin-right: var(--oversize);
	}
}
@media print, screen and (min-width: 992px) {
	.u-r-lg-over {
		margin-right: var(--oversize);
	}
}
/* 左に */
.u-l-over {
	margin-left: var(--oversize);
}
@media print, screen and (min-width: 768px) {
	.u-l-md-over {
		margin-left: var(--oversize);
	}
}
@media print, screen and (min-width: 992px) {
	.u-l-lg-over {
		margin-left: var(--oversize);
	}
}

/*---------- 中央配置 ----------*/
.l-v-center {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.l-center {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

/*---------- Swiper ----------*/
/* 滑らかに */
.u-swiper-liner .swiper-wrapper {
	transition-timing-function: linear;
}


/* ========================================
パーツ
======================================== */
/*---------- アイコン（アイコンフォント想定。大きさはp-*やfs-、個別にwidth・height指定して調整。） ----------*/
.c-icon {
	aspect-ratio: 1 / 1;
	speak: none;
}
.c-icon img {
	aspect-ratio: 1 / 1;
	width: 100%;
	height: 100%;
	object-fit: contain;
	speak: none;
}

/*---------- アイコンとテキスト（ボタンによく使う） ----------*/
.c-icon-text {
	display: grid !important;
	grid-template-columns: repeat(2, auto);
	column-gap: 0.5em;
	justify-content: center;
	align-items: center;
}
/* アイコンだけ右寄せ */
.c-icon-text.--r {
	grid-template-columns: 1fr auto;
}
/* アイコンだけ左寄せ */
.c-icon-text.--l {
	grid-template-columns: auto 1fr;
}
@media print, screen and (min-width: 992px) {
	.c-icon-text {
		column-gap: 1em;
	}
}

/*---------- 背景のベース ----------*/
.p-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	z-index: 1;
}
/* 疑似要素のファンデーション */
.p-bg::before,
.p-bg::after {
	content: "";
	display: block;
	position: absolute;
	z-index: -1;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	pointer-events: none;
	speak: none;
}
/* 黒透明フィルター */
.p-bg.--bl::before {
	inset: 0;
	width: 100%;
	height: 100%;
	background-color: var(--bl);
	opacity: 0.3;
}
/* 白透明フィルター */
.p-bg.--wh::before {
	inset: 0;
	width: 100%;
	height: 100%;
	background-color: var(--WHT);
	opacity: 0.3;
}
/* メインカラーフィルター */
.p-bg.--main::before {
	inset: 0;
	width: 100%;
	height: 100%;
	background-color: var(--MAIN);
	opacity: 0.3;
}
/* アクセントカラーフィルター */
.p-bg.--accent::before {
	inset: 0;
	width: 100%;
	height: 100%;
	background-color: var(--ACC);
	opacity: 0.3;
}
.p-bg.--md::before {
	opacity: 0.5;
}
.p-bg.--strong::before {
	opacity: 0.7;
}
.p-bg.--strongest::before {
	opacity: 0.9;
}

/*---------- ホバーアクション ----------*/
.c-hover {
	transition: var(--transition);
	color: inherit;
	text-decoration: none;
}
.c-hover:hover {
	text-decoration: none;
}
.c-hover.--underline:hover {
	text-decoration: underline;
}
.c-hover.--bg-lmain:hover {
	background-color: var(--LMAIN);
}
.c-hover.--bg-gry:hover {
	background-color: var(--GRY);
}
.c-hover.--text-main:hover {
	color: var(--MAIN) !important;
}
.c-hover.--opacity:hover {
	opacity: 0.8;
}
.c-hover.--up:hover {
	transform: translateY(-0.125rem);
}
.c-hover.--scale-up img {
	transition: var(--transition);
}
.c-hover.--scale-up:hover img {
	transform: scale(1.1);
}

/*---------- アコーディオンボタン（ヘッダー以外にも汎用可能） ----------*/
.c-btn-accordion {
	top: 0;
	right: 0;
	/* height: 2.5em;
	width: 2.5em; */
	background-color: transparent;
	border: none;
}
.c-accordion-icon {
	display: block;
	width: 100%;
	height: 100%;
}
.c-accordion-icon::before,
.c-accordion-icon::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
	background-color: currentColor;
	transition: all 0.3s ease-in-out;
}
.c-accordion-icon::before {
	width: 1em;
	height: 2px;
}
.c-accordion-icon::after {
	width: 2px;
	height: 1em;
}
.c-accordion-icon.is-active::after {
	opacity: 0;
}

/* ==================================
ヘッダー
===================================== */
/*---------- アコーディオンボタン（ヘッダー以外にも汎用可能） ----------*/
.c-btn-accordion {
	top: 0;
	right: 0;
	height: 2.5em;
	width: 2.5em;
	background-color: transparent;
	border: none;
}
.c-accordion-icon {
	display: block;
	width: 100%;
	height: 100%;
}
.c-accordion-icon::before,
.c-accordion-icon::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
	background-color: currentColor;
	transition: all 0.3s ease-in-out;
}
.c-accordion-icon::before {
	width: 1em;
	height: 2px;
}
.c-accordion-icon::after {
	width: 2px;
	height: 1em;
}
.c-accordion-icon.is-active::after {
	opacity: 0;
}


/* ハンバーガーボタン調整 */
/* .p-header .lib-menu__btn::after {
content: "Menu";
display: block;
position: absolute;
right: 0;
bottom: 0.5em;
left: 0;
line-height: 1;
font-family: "Oswald";
text-transform: uppercase;
color: var(--WHT);
}
.p-header .lib-menu__btn > .line:nth-of-type(1) {
top: calc(50% - 1px - 1em);
}
.p-header .lib-menu__btn > .line:nth-of-type(2) {
top: calc(50% - 1px - 0.5em);
}
.p-header .lib-menu__btn > .line:nth-of-type(3) {
top: calc(50% - 1px);
bottom: unset;
}
.p-header .lib-menu__btn.is-open::after {
content: "Close";
}
.p-header .lib-menu__btn[aria-expanded="true"] > .line:nth-of-type(1) {
-webkit-transform: translateY(calc(50% - 1px + 0.5em)) rotate(-45deg);
transform: translateY(calc(50% - 1px + 0.5em)) rotate(-45deg);
}
.p-header .lib-menu__btn[aria-expanded="true"] > .line:nth-of-type(3) {
-webkit-transform: translateY(calc(50% - 1px - 0.5em)) rotate(45deg);
transform: translateY(calc(50% - 1px - 0.5em)) rotate(45deg);
} */


/* ========================================
フッター
======================================== */


/* ========================================
TOP
======================================== */


/* ========================================
下層
======================================== */


/* ========================================
投稿
======================================== */
/*---------- ページネーション ----------*/
.p-navi {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	/* align-items: baseline; */
	align-items: center;
	gap: 0.5em;
}
.p-navi .page-numbers {
	min-width: 2em;
	min-height: 2em;
	text-align: center;
	line-height: 1;
	display: inline-flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	/* border: 1px solid var(--DEF); */
	border-radius: 50em;
	text-decoration: none;
	font-size: .875em;
}
@media print, screen and (min-width: 768px) {
	.p-navi .page-numbers {
		font-size: 1em;
	}
}
@media print, screen and (min-width: 1400px) {
	.p-navi .page-numbers {
		font-size: 1.25em;
	}
}
.p-navi .page-numbers.current,
.p-navi a.page-numbers:hover {
	background-color: var(--DEF);
	color: var(--WHT);
}
.p-navi .page-numbers.prev,
.p-navi .page-numbers.next {
	border: 1px solid var(--DEF);
}




/* ========================================
Contactform - お問い合わせフォーム
======================================== */
/* .wpcf7 {
width: 100%;
margin: 0 0 2.5em !important;
padding: 0;
border: 1px solid #ddd;
background: #fafafa;
font-size: 14px;
}
.wpcf7 form {
margin: 1.5em 1.5em 0;
}
.wpcf7 p {
margin-bottom: 1em;
font-size: 16px;
}
.wpcf7 input,
.wpcf7 textarea {
-webkit-box-sizing: border-box;
box-sizing: border-box;
width: 100%;
padding: 8px;
border: 1px solid #ccc;
line-height: 1.2;
}
.wpcf7 select,
.wpcf7 input[type="checkbox"],
.wpcf7 input[type="radio"] {
width: auto;
max-width: 97%;
padding: 8px;
border: 1px solid #ccc;
}
.wpcf7 select,
.wpcf7 .wpcf7-list-item-label {
font-size: 14px;
line-height: 1.2;
}
.wpcf7 .wpcf7-list-item {
display: block;
}
.wpcf7 textarea {
height: 300px;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus {
border: 1px solid #bbb;
outline: none;
} */


/*.wpcf7 .wpcf7-submit,
.wpcf7 .wpcf7-previous {
	-webkit-transition: all 0.3s;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	position: relative;
	width: 225px;
	height: 48px;
	margin: 30px auto 0;
	border: none !important;
	outline: none;
	/* background-color: #333333; */
	/*color: #fff;
	font-size: 14px;
	line-height: 1.5;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s;
	font-weight: 600;
}
.wpcf7 .wpcf7-previous {
	background-color: var(--DEF);
}
.wpcf7 .wpcf7-submit {
	background-color: var(--MAIN);
}
.wpcf7 .wpcf7-previous:hover {
	background-color: var(--DEF);
	filter: brightness(0.8);
}
.wpcf7 .wpcf7-submit:hover {
	background-color: var(--ACC);
	filter: brightness(0.8);
}
.wpcf7 .wpcf7-submit:before,
.wpcf7 .wpcf7-submit:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
/* .wpcf7 .wpcf7-submit:hover,
.wpcf7 .wpcf7-previous:hover {
background-color: #666666;
} */


/*.wpcf7 .wpcf7-submit .wpcf7-not-valid {
	background: pink;
}
.wpcf7 .wpcf7-submit .wpcf7-response-output {
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	margin: 10px 0 0;
	padding: 8px 35px 8px 14px;
	border-radius: 4px;
}
.wpcf7 .wpcf7-submit .wpcf7-validation-errors {
	border: 1px solid #eed3d7;
	background-color: #f2dede;
	color: #b94a48;
}
.wpcf7 .wpcf7-submit .wpcf7-mail-sent-ok {
	border: 1px solid #bce8f1;
	background-color: #d9edf7;
	color: #3a87ad;
}
.wpcf7 .wpcf7-previous + br {
	display: none;
}
.wpcf7 form .wpcf7-response-output {
	margin: 2em 0.5em 2em;
	padding: 0;
	border: none;
	text-align: center;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
	color: #dc3232;
	font-size: 1em;
}

/* Style for DIVA dark ver.
.wpcf7 {
	color: #000;
} */

/* ==================================
改行
===================================== */
.br-pc {
    display: inline;
}
.br-sp {
    display: none;
}

@media only screen and (max-width: 991px) {
    .br-pc.br-tab {
        display: none;
    }
}
@media only screen and (max-width: 767px) {
    .br-sp {
        display: inline;
    }
    .br-pc {
        display: none;
    }

}

/* ==================================
グラデーション
===================================== */
.grad-color {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==================================
テキストシャドウ
===================================== */
.text-shadow {
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}

/* ==================================
背景画像を設定したい時
===================================== */
.bg_image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* ==================================
黒透過
===================================== */
.bg-black-shadow {
    position: relative;
}
.bg-black-shadow::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

/* ==================================
白透過
===================================== */
.bg-white-shadow {
    position: relative;
}
.bg-white-shadow::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
}


/* ==================================
ユーティリティー
===================================== */
/*---------- 字幅 ----------*/
.u-l-0 {
  letter-spacing: 0;
}
.u-l-1 {
  letter-spacing: 1px;
}
.u-l-2 {
  letter-spacing: 2px;
}
.u-l-3 {
  letter-spacing: 3px;
}
.u-l-4 {
  letter-spacing: 4px;
}
.u-l-5 {
  letter-spacing: 5px;
}

/*---------- 幅 ----------*/
.max-200 {
    max-width: 200px !important;
}
.u-w-90 {
  width: 90% !important;
}
.u-w-85 {
  width: 85% !important;
}
.u-w-80 {
  width: 80% !important;
}
.u-w-75 {
  width: 75% !important;
}
.u-w-70 {
  width: 70% !important;
}
.u-w-65 {
  width: 65% !important;
}
.u-w-60 {
  width: 60% !important;
}
.u-w-55 {
  width: 55% !important;
}
.u-w-50 {
  width: 50% !important;
}
.u-w-45 {
  width: 45% !important;
}
.u-w-40 {
  width: 40% !important;
}
.u-w-35 {
  width: 35% !important;
}
.u-w-30 {
  width: 30% !important;
}
.u-w-25 {
  width: 25% !important;
}
.u-w-20 {
  width: 20% !important;
}
.u-w-10 {
  width: 10% !important;
}

@media print, screen and (max-width: 991px) and (min-width: 768px)  {
.u-w-md-90 {
    width: 90% !important;
  }
  .u-w-md-85 {
    width: 85% !important;
  }
  .u-w-md-80 {
    width: 80% !important;
  }
  .u-w-md-75 {
    width: 75% !important;
  }
  .u-w-md-70 {
    width: 70% !important;
  }
  .u-w-md-65 {
    width: 65% !important;
  }
  .u-w-md-60 {
    width: 60% !important;
  }
  .u-w-md-55 {
    width: 55% !important;
  }
  .u-w-md-50 {
    width: 50% !important;
  }
  .u-w-md-45 {
    width: 45% !important;
  }
  .u-w-md-43 {
    width: 43% !important;
  }
  .u-w-md-40 {
    width: 40% !important;
  }
  .u-w-md-35 {
    width: 35% !important;
  }
  .u-w-md-30 {
    width: 30% !important;
  }
  .u-w-md-25 {
    width: 25% !important;
  }
  .u-w-md-20 {
    width: 20% !important;
  }
  .u-w-md-10 {
    width: 10% !important;
  }
}

@media print, screen and (min-width: 992px) {
.u-w-lg-90 {
    width: 90% !important;
  }
  .u-w-lg-85 {
    width: 85% !important;
  }
  .u-w-lg-80 {
    width: 80% !important;
  }
  .u-w-lg-75 {
    width: 75% !important;
  }
  .u-w-lg-70 {
    width: 70% !important;
  }
  .u-w-lg-65 {
    width: 65% !important;
  }
  .u-w-lg-60 {
    width: 60% !important;
  }
  .u-w-lg-55 {
    width: 55% !important;
  }
  .u-w-lg-50 {
    width: 50% !important;
  }
  .u-w-lg-45 {
    width: 45% !important;
  }
  .u-w-lg-43 {
    width: 43% !important;
  }
  .u-w-lg-40 {
    width: 40% !important;
  }
  .u-w-lg-35 {
    width: 35% !important;
  }
  .u-w-lg-30 {
    width: 30% !important;
  }
  .u-w-lg-25 {
    width: 25% !important;
  }
  .u-w-lg-20 {
    width: 20% !important;
  }
  .u-w-lg-10 {
    width: 10% !important;
  }
}


/* ==================================
common
===================================== */
body {
	font-family: "IBM Plex Sans", 'Noto Sans JP', sans-serif !important;
	color: #123149;
}
.bg-ddgry {
	background-color: var(--DDGRY) !important;
}
.border-def {
    border-color: var(--DEF) !important;
}
.lib-breadcrumb__outer {
	padding: 10px; 
	background-color: #E4E4E4;
}
.lib-breadcrumb__list {
	padding: 0;
}
.lib-link__btn {
	font-weight: 600;
}
#contents {
	padding-top: 0;
}
.top-mv.common-header {
	padding-top: 60px;
}

@media only screen and (min-width: 992px) {
	.top-mv.common-header {
		padding-top: 120px;
	}
}
/*@media only screen and (max-width: 767px) {
	[class*="thumb"].u-aspect.--16x9 img {
    	aspect-ratio: 4 / 3;
	}
}*/

/* ==================================
header
===================================== */
.lib-header__outer.lib-header-BS02 {
	background-image: url(../../img/header-bg.png);
	box-shadow: none;
}
.lib-header__outer.lib-header-BS02 .lib-nav__btn {
	font-weight: 600 !important;
	position: relative;
}
.lib-header__outer.lib-header-BS02 .lib-nav__btn::before {
	content: "";
	position: absolute;
	top: 50%;
	right: -20px;
	transform: translatey(-50%);
	background-color: var(--MAIN);
	width: 1px;
	height: 100%;
}
.lib-header__outer.lib-header-BS02 .lib-nav__item:last-child .lib-nav__btn::before {
	display: none;
}
.lib-header__logo img {
	height: 40px;
	width: auto !important;
}
.lib-header__outer {
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
}
.current-menu-item a {
	color: var(--ACC);
}
#wrapper:has(.lib-header-BS02) {
	padding-top: 0;
}
.logo-white {
	display: none;
}
.lib-nav__list {
	box-shadow: none;
}
@media only screen and (min-width: 992px) {
	#wrapper:has(.lib-header-BS02) .lib-hero__outer {
		padding-top: 120px;
	}
	header .lib-nav__cover {
        padding-right: 20px;
	}
	.lib-header__outer.lib-header-BS02 .lib-nav__list>li~li {
        margin-left: 40px;
	}
	.lib-header__outer, .is-scroll:not(.is-gnav__open) .lib-header__outer {
		height: 80px;
	}
}
@media only screen and (min-width: 992px) and (max-width: 1200px)  {
	.lib-header__outer {
		width: 90%;
	}
}
@media only screen and (max-width: 991px) {
	.lib-header__bar {
		background-color: transparent;
		box-shadow: none;
	}
	header.lib-header__outer {
		padding: 0 !important;
		top: 0;
		background-image: url(../../img/header-bg-sp.png);
        max-width: none;
	}
	.lib-header__outer.lib-header-BS02 .lib-nav__btn {
		font-size: 2rem;
		font-weight: 400 !important;
	}
	html[lang*="ja"] .lib-header__outer.lib-header-BS02 .lib-nav__btn {
		font-size: 2rem;
		font-weight: 500 !important;
	}
	header.lib-header__outer .ico-after-arr:after, header.lib-header__outer .mm_btn::after {
		color: #fff;
	}
	.lib-header__outer.lib-header-BS02 .language-btn {
		margin-top: 50px;
	}
	.lib-header__outer.lib-header-BS02 .language-btn .lib-nav__btn {
		font-size: 1.75rem;
		padding: 0 !important;
	}
	.language-btn .ico-after-arr:after, .language-btn .mm_btn:after {
		display: none;
	}
	header .menu-item-has-children.language-btn>.sub-menu {
		display: block;
        background-color: transparent;
        position: absolute;
        left: 60px;
	}
	header .menu-item-has-children.language-btn>.sub-menu::before {
        content: "";
        position: absolute;
        background-color: var(--DEF);
        width: 1px;
        height: 70%;
        left: -40%;
        top: 15%;
	}
	html[lang*="en"] .l-en a, html[lang*="ja"] .l-ja a {
		color: var(--WHT) !important;
	}
	.lib-header__logo img {
		height: 30px;
	}
	.lib-menu__btn{
		width: 40px;
		height: 40px;
    	margin-right: 10px;
	}
	.lib-menu__btn>.line:nth-of-type(1) {
    	top: calc(50% - 1px - 8px);
	}
	.lib-menu__btn>.line:nth-of-type(3) {
    	bottom: calc(50% - 1px - 8px);
	}
	.lib-menu__btn[aria-expanded=true]>.line:nth-of-type(1) {
    	-webkit-transform: translateY(calc(50% - 1px + 8px)) rotate(-45deg);
    	transform: translateY(calc(50% - 1px + 8px)) rotate(-45deg);
	}
	.lib-menu__btn[aria-expanded=true]>.line:nth-of-type(3) {
		-webkit-transform: translateY(calc(50% - 1px - 8px)) rotate(45deg);
    	transform: translateY(calc(50% - 1px - 8px)) rotate(45deg);
	}
	.lib-nav__panel, .is-open .lib-header__bar {
		background-color: var(--MAIN);
	}
	.is-open .lib-menu__btn {
		background-color: var(--DEF);
	}
	.is-open .logo-white {
		display: block;
	}
	.is-open .logo {
		display: none;
	}
	.lib-nav__panel {
		padding-left: 20px;
		padding-right: 20px;
	}
}


/* ==================================
header プルダウンメニュー
===================================== */
header .menu-item-has-children>.sub-menu {
	display: none;
	list-style: none;
	background-color: rgba(255, 255, 255, .6);
	padding: 0;
}
header .menu-item-has-children>.sub-menu li a {
	display: block;
	height: 100%;
	padding: 14px 20px !important;
}
header .menu-item-has-children>.sub-menu {
	border-radius: unset;
    position: absolute;
    bottom: -60px;
    left: -20px;
}
header .menu-item-has-children {
	position: relative;
}
header .sub-menu .mm_btn {
	display: none !important;
}
.mm_btn {
	position: absolute;
	width: 1rem;
	height: 100%;
	top: 0;
	right: -20px;
	-webkit-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
	cursor: pointer;
}
.mm_btn.active::after {
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
	-webkit-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
}
.mm_btn::after {
	content: "\e5db";
	position: absolute;
	top: 2px;
	right: 0;
	font-family: 'Material Symbols Outlined';
	font-weight: normal;
	font-style: normal;
	font-size: 1rem;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	color: var(--MAIN);
}
@media only screen and (max-width: 991px) {
	.mm_btn {
	    top: 13px;
    	right: 10px;		
	}
	header .menu-item-has-children>.sub-menu {
		position: relative;
		bottom: 0;
		left: 0;
	}
}

/* ==================================
ページTOP
===================================== */
.lib-pagetop__btn a {
    transition: .3s;
}
.lib-pagetop__btn a .txt {
	background-color: transparent;
    box-shadow: none;
}
.lib-pagetop__btn a .txt:before {
	display: none;
}
.lib-pagetop__btn {
    position: absolute;
    bottom: 38px;
}
@media only screen and (min-width: 1200px) {
	.lib-pagetop__btn {
    	bottom: 140px;
    	right: 30px;
	}
}
@media only screen and (max-width: 767px) {
	.lib-pagetop__btn.is-bottom a {
        bottom: 330px;
        right: 10px;
        top: auto;
	}
}

/* ==================================
footer
===================================== */
footer a {
	text-decoration: none;
	font-weight: 600;
}
footer a:hover, .lib-footer__child .ico-after-arr::after {
	color: #fff !important;	
}
.lib-footer__address p, .lib-footer__privacy p {
	border-left: 2px solid #fff;
	padding-left: 1rem;
}
.copyright-block {
	font-size: 12px;
}
.lib-footer__outer {
	border-top: none;
	margin-top: 3rem;
}
@media only screen and (min-width: 768px) {
	.footer-lib-menu li:last-child {
		margin-left: 30px;
		position: relative;
	}
	footer .footer-lib-menu li:last-child:before {
		content: "";
		width: 1px;
		height: 100%;
		display: block;
		position: absolute;
		left: -15px;
		top: 0;
		background-color: var(--MAIN);
	}
}

/* ==================================
TOP
===================================== */
/*----- MV -----*/
.top-mv {
	background-image: url(../../img/mv-bg.png);
	padding-top: 160px;
}
.top-mv h1 {
	font-size: clamp(3rem, calc(2.5rem + 2vw), 4rem);
	line-height: 1;
}
html[lang*="ja"] .top-mv h1 {
	font-size: clamp( 2rem, calc( 1rem + 4vw ), 4rem );
}
.border-wht {
    border-color: var(--WHT) !important;
}
@media only screen and (max-width: 767px) {
	.top-mv {
		background-image: url(../../img/mv-bg-sp.png);
		padding-top: 100px;
	}
}

/*----- What -----*/
.top-what .material-symbols-outlined {
	font-size: clamp( 1.5rem, calc( 1.1875rem + 1.25vw ), 2.125rem );
}
.top-what .bg_image {
	background-image: url(../../img/top-what-bg.png);
    position: absolute;
    width: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-top: -50px;
}
@media only screen and (max-width: 767px) {
	.top-what {
		padding: 0;
	}
	.top-what .bg_image {
	background-image: url(../../img/top-what-bg-sp.png);
		position: relative;
        margin-top: 40px;
        margin-bottom: 40px;
	}
}

/*----- Service -----*/

.container-max-width-half {
  max-width: calc((1120px + .75rem* 2) / 2);
}
.top-service .service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
@media only screen and (max-width: 767px) {
	.top-service .lib-card__thumb img {
        max-height: 220px;
        min-height: 220px;
	}
}

/*.top-service::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	z-index: -1;
}
.top-service::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	z-index: -1;
}
.top-service.--01::before {
	background: #404040 url(../../img/top01-logo.png) 100% / contain no-repeat;
}
.top-service.--01::after {
	background: url(../../img/top01-bg.png) 100% / cover no-repeat;
}
.top-service.--02::before {
	background: url(../../img/top02-bg.png) 100% / cover no-repeat;
}
.top-service.--02::after {
	background: var(--GRY) url(../../img/top02-logo.png) 100% / contain no-repeat;
}
.top-service.--03::before {
	background: #fff url(../../img/top03-logo.png) 100% / contain no-repeat;
}
.top-service.--03::after {
	background: url(../../img/top03-bg.png) 100% / cover no-repeat;
}
@media only screen and (max-width: 767px) {
	.top-service {
		margin-bottom: 40px;
	}
	.top-service.--03 {
		margin-bottom: 0;
	}
	.top-service::before,.top-service::after {
		width: 100%;
		height: 50%;
	}
	.top-service::before, .top-service.--02::after {
		bottom: 0;
		top: auto;
	}
	.top-service.--02::before {
		top: 0;
		bottom: auto;
	}
	.top-about, .top-contact {
		padding: 0 !important;
	}
}


/* ==================================
Meet AQUILA
===================================== */
.person-icon img {
	width: auto !important;
	height: 40px;
}
.person-wrapper .lib-card__thumb {
	position: relative;
}
.person-wrapper .lib-card__thumb::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.person-wrapper.--01 .lib-card__thumb::before {    
	background: -moz-linear-gradient(top right, transparent 80%, #79CEDD); 
	background: -webkit-linear-gradient(top right, transparent 80%, #79CEDD); 
	background: linear-gradient(to bottom left, transparent 80%, #79CEDD); 
}
.person-wrapper.--02 .lib-card__thumb::before {    
	background: -moz-linear-gradient(top right, transparent 80%, #686E9F); 
	background: -webkit-linear-gradient(top right, transparent 80%, #686E9F); 
	background: linear-gradient(to bottom left, transparent 80%, #686E9F); 
}
.person-wrapper.--03 .lib-card__thumb::before {    
	background: -moz-linear-gradient(top right, transparent 80%, #123149); 
	background: -webkit-linear-gradient(top right, transparent 80%, #123149); 
	background: linear-gradient(to bottom left, transparent 80%, #123149); 
}
.person-wrapper.--04 .lib-card__thumb::before {    
	background: -moz-linear-gradient(top right, transparent 80%, #FF9D6E); 
	background: -webkit-linear-gradient(top right, transparent 80%, #FF9D6E); 
	background: linear-gradient(to bottom left, transparent 80%, #FF9D6E); 
}
@media only screen and (max-width: 767px) {
	.top-what.person-icon .bg_image {
	    margin-top: -50px;
		position: absolute;
		margin-bottom: 0;
	}
}

/* ==================================
WHAT WE DO
===================================== */
.service-col3 .lib-card__txtarea {
	padding-top: 1.5rem;
}
@media only screen and (max-width: 767px) {
	.service-col3 .lib-card__txtarea {
		padding-top: 2rem;
	}
	/*.top-service.--post .service-bg .col:first-child {
		height: 450px;
	}
	.top-service.--post .service-bg .col:last-child {
		height: 400px;
	}
	.top-service.--03.--post .service-bg .col {
		height: 420px;
	}*/
}
/*@media only screen and (max-width: 567px) {
	.top-service.--post .service-bg .col:first-child {
		height: 400px;
	}
	.top-service.--post .service-bg .col:last-child {
		height: 430px;
	}
	.top-service.--03.--post .service-bg .col:first-child {
		height: 350px;
	}
	.top-service.--03.--post .service-bg .col:last-child {
		height: 420px;
	}
}
@media only screen and (max-width: 414px) {
	.top-service.--post .service-bg .col:first-child {
		height: 380px;
	}
	.top-service.--post .service-bg .col:last-child {
		height: 440px;
	}
	.top-service.--03.--post .service-bg .col:first-child {
		height: 350px;
	}
}
@media only screen and (max-width: 375px) {
	.top-service.--post .service-bg .col:first-child {
		height: 350px;
	}
	.top-service.--post .service-bg .col:last-child {
		height: 460px;
	}
	.top-service.--03.--post .service-bg .col:first-child {
		height: 330px;
	}
}*/
/*.top-service.--gry::before {
	background-color: var(--GRY);
}
.top-service.--02.--reverse::before {
    background: var(--GRY) url(../../img/top02-logo.png) 100% / contain no-repeat;
}
.top-service.--02.--reverse::after {
    background: url(../../img/top02-bg.png) 100% / cover no-repeat;	
}
@media only screen and (max-width: 767px) {
	#service01.top-service.--child::before {
		height: 60%;
	}
	#service01.top-service.--child::after {
		height: 40%;
	}
	#service02.top-service.--reverse::before {
		top: auto;
		bottom: 0;
        height: 60%;
	}
	#service02.top-service.--reverse::after {
		top: 0;
		bottom: auto;
		height: 40%;
	}
	#service03.top-service.--child::before {
		height: 60%;
	}
	#service03.top-service.--child::after {
		height: 40%;
	}
}*/

/* ==================================
career
===================================== */
.career-toggle .lib-toggle__btn[aria-expanded]>.txt:after, .career-toggle .lib-toggle__btn[aria-expanded]>.txt:before {
	display: none;
}
.lib-toggle__btn.bg-other:hover {
    border: var(--OTH) 2px solid;
    background-color: var(--OTH);
    color: var(--WHT);
    -webkit-transition: .3s;
    transition: .3s;
}
.lib-toggle__btn.bg-main:hover {
    border: var(--MAIN) 2px solid;
    background-color: var(--MAIN);
    -webkit-transition: .3s;
    transition: .3s;
}
.lib-toggle__btn.bg-accent:hover {
    border: var(--ACC) 2px solid;
    background-color: var(--ACC);
    -webkit-transition: .3s;
    transition: .3s;
}


/* ==================================
SITEMAP
===================================== */
.lib-sitemap__outer {
	margin-top: 2rem !important;
}
.lib-sitemap__outer a {
	font-weight: 600;
}

/* ==================================
CONTACT
===================================== */
input[type="text"], input[type="email"], textarea, select {
	height: 60px;
    background-color: var(--GRY);
    border-color: var(--MAIN);
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus, select:focus {
	background-color: var(--WHT);
}
.wpcf7-list-item {
	display: block;
	line-height: 2;
	margin-left: 0;
}
select {
	width: 100%;
	max-width: none;
	position: relative;
}
/*select::before {
    content: "\e5e1";
    position: absolute;
    top: 2px;
    right: 0;
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}*/
.page-id-250 .service-item, .page-id-33 .service-item {
	position: relative;
}
.page-id-250 .service-item::before, .page-id-33 .service-item:before {
    content: "\e313";
    position: absolute;
    top: 50%;
    right: 1rem;
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    color: var(--DEF);
	transform: translatey(-50%);
	z-index: 1;
}
.wpcf7-spinner {
	position: absolute;
}



/* ==================================
ANIMATION
===================================== */

.animobj {
	transform:scale(1.1);
}
.animobj.aspect-ratio-16-9 {
	width:100%;
	margin:0 auto;
	aspect-ratio:16/9;
	object-fit:contain;
}
.animobj.aspect-ratio-1 {
	width:100%;
	margin:0 auto;
	aspect-ratio:1;
	object-fit:contain;
}
.animobj.ml-0 {
	margin-left:0;
}
.animobj.top-mv {
	transform:scale(1);
	position:relative;
}
/* .animobj.top-mv::after {
	transition-duration:3s;
	opacity:1;
	content:'';
	display:block;
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	z-index:-1;
	background:
	radial-gradient(circle at 55% 0%, rgba(107,112,162,1), rgba(55,220,222,0) 50%), 
	radial-gradient(circle at 100% 20%, rgba(246,143,90,1), rgba(255,20,222,0) 80%),  
	radial-gradient(circle at 40% 10%, rgba(255,255,255,1), rgba(255,0,0,.0) 50%),
	radial-gradient(circle at 30% 80%, rgba(119,200,216,1), rgba(255,0,0,0) 80%);
}
.animobj.top-mv.show::after {
	opacity:0;
}
.animobj.top-mv::before {
	content:'';
	display:block;
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	z-index:-2;
	background:
	radial-gradient(circle at 100% 20%, rgba(107,112,162,1), rgba(55,220,222,0) 50%), 
	radial-gradient(circle at 70% 20%, rgba(246,143,90,1), rgba(255,20,222,0) 60%),  
	radial-gradient(circle at 20% 60%, rgba(255,255,255,.6), rgba(255,0,0,.0) 50%),
	radial-gradient(circle at 0% 100%, rgba(246,143,90,1), rgba(255,20,222,0) 30%),
	radial-gradient(circle at 0% 50%, rgba(119,200,216,1), rgba(255,0,0,0) 80%);
} */

.animobj.top-mv {
	background: url(../../img/mv_poster.jpg) no-repeat center center/cover;
}
.animobj.top-mv #mvvideo {
	position:absolute;
	left:50%;
	top:50%;
	width:100vw;
	height:100%;
	transform:translate(-50%,-50%);
	z-index:-1;
	object-fit:cover;
}

.animobj.mvtxt {
	transition-duration:2s;
	opacity:0;
	transform:translatex(-1em);
}
.top-mv.show .animobj.mvtxt {
	opacity:1;
	transform:translatex(0);
}

.lib-card__item:has(>.aspect-ratio-16-9) {
	display:block;
}

@media only screen and (max-width: 767px) {
	
	.animobj.ml-0 {
		margin-left:auto;
	}
	
}


/* ========================================
ボタンホバーなし
======================================== */
.lib-link__btn:hover {
	background-color: var(--MAIN) !important;
	color: var(--WHT) !important;
}
.lib-link__btn.bg-accent:hover {
	background-color: var(--ACC) !important;
}
.lib-link__btn.bg-def:hover {
	background-color: var(--DEF) !important;
}
.lib-link__btn.bg-other:hover {
	background-color: var(--OTH) !important;
}
.lib-link__btn.text-main:hover {
	color: var(--MAIN) !important;
}
.lib-link__btn.text-def:hover {
	color: var(--DEF) !important;
}
.lib-link__btn.text-accent:hover {
	color: var(--ACC) !important;
}
.lib-link__btn.text-wht:hover {
	color: var(--WHT) !important;
}
.lib-link__btn.text-other:hover {
	color: var(--OTH) !important;
}