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

body {
	color: #000000;
	font-family: "Noto Serif JP", sans-serif;
	font-size: 1rem;
	font-weight: 400;
}

.pc-only {
	display: none;
}

html {
	font-size: 16px;
}

/* 画面の高さに合わせてフッターを下に広げる */

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

footer {
	margin-top: auto;
}

/* ヘッダー固定した場合、ページ内リンクの遷移先がズレる問題解消 */

html {
	scroll-padding-top: 4.125rem;
}

/* ドロワー表示時、 背景を固定してスクロールできないようにする */

body.fixed {
	height: 100%;
	overflow: hidden;
	width: 100%;
}

main {
	margin-top: 4.125rem;
}

/* pcの電話番号発信対応 */

/* ホバー */

a,
button {
	-webkit-text-decoration: none;
	color: inherit;
	text-decoration: none;
	transition: background-color 0.3s, color 0.3s, opacity 0.3s;
}

/* 非表示設定（視覚的に隠しつつスクリーンリーダーでは読み上げられる） */

/* https://gist.github.com/roatnek/c24d5257c4f6d5b1ef0f2328609a0221 */

.visually-hidden {
	clip: rect(1px, 1px, 1px, 1px) !important;
	height: 1px !important;
	overflow: hidden !important;
	position: absolute !important;
	width: 1px !important;
}

.wbr {
	display: inline-block;
}

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

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

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

/* Set core root defaults */

/* Set core body defaults */

body {
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%; /* 実機端末を横向きにした際のブラウザの自動拡大をオフ */
	-webkit-text-size-adjust: 100%;
	line-height: 1;
	min-height: 100vh;
	text-rendering: optimizeSpeed; /* 上記のSafari用 */
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

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

/* Make images easier to work with */

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

/* Natural flow and rhythm in articles by default */

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

/* Inherit fonts for inputs and buttons */

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

/* Blur images when they have no alt attribute */

img:not([alt]) {
	filter: blur(10px);
}

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

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

textarea {
	resize: vertical;
}

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

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

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

hr {
	border: 0;
	height: 0;
	margin: 0;
	padding: 0;
}

/* js-triggerと一緒に使う */

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

/*                 inview                      */

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

.inview {
	opacity: 0;
	transform: translateY(30px);
	transition: transform 2s, opacity 2s;
}

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

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

/*                slide-up                     */

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

.slide-up {
	display: inline-block;
	overflow: hidden;
}

.slide-up * {
	display: inline-block;
	opacity: 0;
	transform: translateY(100%);
}

.slide-up.show * {
	animation-duration: 1s;
	animation-fill-mode: forwards;
	animation-name: slideInFromBottom;
}

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

/*               anime-zoom                    */

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

.anime-zoom__img {
	overflow: hidden;
}

.breadcrumb {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.4285714286;
}

.c-page-heading {
	grid-gap: 0.5rem;
	display: grid;
	gap: 0.5rem;
}

.c-page-heading__en {
	font-family: "DM Serif Display", serif;
	font-size: 2.1875rem;
	font-weight: 400;
	line-height: 1.375;
}

.c-page-heading__ja {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.4166666667;
}

.c-sec-heading.-blue .c-sec-heading__num {
	color: #2F468E;
}

.c-sec-heading__num {
	display: inline-block;
	font-family: "DM Serif Display", serif;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.3666666667;
	margin-bottom: 0.625rem;
	margin-left: 0.1875rem;
}

.c-sec-heading__text {
	grid-gap: 0.1875rem;
	display: grid;
	gap: 0.1875rem;
}

.c-sec-heading__text-ja {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.45;
}

.c-sec-heading__text-en {
	font-family: "DM Serif Display", serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.35;
}

.c-sec-subheading {
	grid-gap: 0.625rem;
	align-items: center;
	color: #2F468E;
	display: grid;
	font-size: 1rem;
	font-weight: 700;
	gap: 0.625rem;
	grid-template-columns: auto 1fr;
	justify-content: left;
	line-height: 180%;
}

.c-sec-subheading::before {
	background-color: currentColor;
	content: "";
	display: block;
	height: 100%;
	min-height: 1.625rem;
	width: 0.375rem;
}

.c-text {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 180%;
}

.footer {
	overflow: hidden;
	padding-bottom: 2.5rem;
	padding-top: 2.5rem;
}

.footer__container {
	margin-bottom: 2.5rem;
	text-align: center;
}

.footer__logo {
	display: inline-block;
	height: 100%;
	margin-bottom: 2.5rem;
	width: 13.75rem;
}

.footer__logo-link {
	align-items: center;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: left;
}

.footer__logo-link img {
	-o-object-fit: cover;
	aspect-ratio: 240/62;
	display: inline-block;
	object-fit: cover;
}

.footer__logo-link span {
	color: #000000;
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.4444444444;
}

.footer__shop-list {
	grid-gap: 2.5rem;
	display: grid;
	gap: 2.5rem;
	margin-bottom: 2.5rem;
}

.footer__shop-item-name {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.4444444444;
	margin-bottom: 0.125rem;
}

.footer__shop-item-tel {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.4375;
	margin-bottom: 0.25rem;
}

.footer__shop-item-address {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.4375;
	margin-bottom: 0.375rem;
}

.footer__shop-item-map {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.4285714286;
}

.footer__marks {
	display: flex;
	gap: 1.4375rem;
	justify-content: center;
}

.footer__mark {
	height: 4.0625rem;
}
/* 20250801 画像表示サイズ調整のためコメントアウト 
.footer__mark img {
	width: auto;
} */

/* 20250801 画像の表示サイズ調整のため追記*/
.footer-mark-in-wrap01 {
    display: block;
    width: 50px;
    padding: 0;
}
.footer-mark-in-wrap02 {
    display: block;
    width: 90px;
    margin: 0;
    padding: 0;
}
/* 20250801 */

.footer__right {
	border-bottom: 1px solid #D9D9D9;
	border-top: 1px solid #D9D9D9;
	margin-bottom: 2.5rem;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-top: 2.5rem;
	padding-bottom: 2.5rem;
	padding-top: 1.875rem;
}

.footer__nav {
	display: grid;
	grid-template-columns: repeat(2, auto);
}

.footer__nav-items {
	grid-gap: 1rem;
	display: grid;
	gap: 1rem;
}

.footer__nav-item a {
	display: inline-block;
	font-size: 1rem;
	line-height: 1.4444444444;
}

.footer_copyright {
	text-align: center;
}

.footer_copyright small {
	display: inline-block;
	font-size: 0.625rem;
	font-weight: 500;
	line-height: 1.4166666667;
}

.form__wrap {
	margin-bottom: 2.5rem;
}

.form__field {
	grid-gap: 0.5rem;
	border-bottom: 1px solid #CACACA;
	display: grid;
	gap: 0.5rem;
	padding-bottom: 1.25rem;
	padding-top: 1rem;
}

.form__field:first-child {
	border-top: 1px solid #CACACA;
}

.form__label,
.form__privacy-label {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 180%;
}

.form__input,
.form__textarea {
	background-color: #F0F0F0;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 180%;
	padding: 0.75rem 0.875rem;
	width: 100%;
}

.form__input {
	height: 2.375rem;
}

.form__textarea {
	height: 18rem;
	resize: none;
}

.form__radio-group label {
	grid-gap: 0.5rem;
	align-items: center;
	display: grid;
	gap: 0.5rem;
	grid-template-columns: 1rem 1fr;
	position: relative;
}

.form__radio-group label::before {
	border: 1px solid #2F468E;
	border-radius: 50%;
	content: "";
	display: block;
	height: 1rem;
	position: relative;
	width: 1rem;
}

.form__radio-group label::after {
	background-color: transparent;
	border-radius: 50%;
	content: "";
	display: inline-block;
	height: 0.5rem;
	left: 0.25rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 0.5rem;
}

.form__radio-group label:has(input[type=radio]:checked)::after {
	background-color: #2F468E;
}

.form__radio-group label + label {
	margin-top: 0.1875rem;
}

.form__radio-group label span {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 180%;
}

.form__input-text {
	margin-bottom: 0.5rem;
}

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

/*                   privacy                    */

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

.form__privacy,
.form__privacy-scroll-box {
	margin-bottom: 2.5rem;
}

.form__privacy-title {
	color: #2F468E;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 180%;
	margin-bottom: 1rem;
}

.form__privacy-scroll-box {
	height: 20rem;
	overflow-y: scroll;
	padding-left: 0.625rem;
	padding-right: 0.625rem;
}

.form__privacy-list {
	grid-gap: 1.25rem;
	display: grid;
	gap: 1.25rem;
	margin-bottom: 1.25rem;
}

.form__privacy-item {
	grid-gap: 0.375rem;
	display: grid;
	gap: 0.375rem;
}

.form__privacy-item-title,
.form__privacy-contact-title {
	font-size: 1rem;
	font-weight: 500;
	line-height: 200%;
}

.form__privacy-item-text,
.form__privacy-contact-text {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 200%;
}

.form__privacy-item-text span,
.form__privacy-contact-text span {
	display: inline-block;
	margin-top: 0.25rem;
	padding-left: 0.625rem;
}

.form__privacy-contact {
	background-color: #F0F0F0;
	padding: 1rem;
}

.form__privacy-field {
	text-align: center;
}

.form__privacy-input + span {
	font-size: 0.875rem;
	line-height: 180%;
	position: relative;
}

.form__privacy-input + span::before {
	background: #ffffff;
	border: 1px solid currentColor;
	content: "";
	height: 1.375rem;
	left: -1.875rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1.375rem;
}

.form__privacy-input + span::after {
	border-bottom: 3px solid #2F468E;
	border-right: 3px solid #2F468E;
	content: "";
	height: 1.0625rem;
	left: -1.4375rem;
	opacity: 0;
	position: absolute;
	top: 0;
	transform: rotate(40deg);
	transition: all 0.1s ease-in-out;
	width: 0.5625rem;
}

.form__privacy-input:checked + span::after {
	opacity: 1;
}

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

/*                   submit                    */

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

.form__submit {
	text-align: center;
}

.form__submit-button {
	background-color: #2F468E;
	border-radius: 0.625rem;
	color: #ffffff;
	display: inline-block;
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.45;
	padding: 1rem;
	width: 15.5rem;
}

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

/*                   Header                    */

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

.header {
	background-color: #ffffff;
	color: #2F468E;
	height: 4.125rem;
	position: fixed;
	width: 100%;
	z-index: 200;
}

.header__inner {
	grid-gap: 1.25rem;
	align-items: center;
	display: grid;
	gap: 1.25rem;
	grid-template-columns: max-content auto;
	height: inherit;
	justify-content: space-between;
	padding-left: 1.25rem;
	padding-right: 0.625rem;
}

.header__logo {
	display: block;
	height: 100%;
	position: relative;
	width: 8.125rem;
	z-index: 50;
}

.header__logo-link {
	align-items: center;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
}

.header__logo-link img {
	-o-object-fit: cover;
	aspect-ratio: 240/62;
	object-fit: cover;
}

.header__logo-link span {
	color: #000000;
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.1rem;
	line-height: 1.4444444444;
	padding-left: 0.3125rem;
}

.header__pc-nav {
	display: none;
}

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

/*                  PC Header                  */

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

.header__pc-nav-item:not(.-contact) a {
	position: relative;
}

.header__pc-nav-item:not(.-contact) a::before {
	border-top: 2px solid #4CABE1;
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	transform: scale(0, 1);
	transform-origin: left;
	transition: transform 0.25s;
}

.header__pc-nav-item.-contact a i {
	font-size: 1.25rem;
	line-height: 115%;
}

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

/*                  SP Header                  */

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

.header__drawer {
	background-color: #ffffff;
	display: none;
	height: -moz-max-content;
	height: max-content;
	overflow-y: auto;
	padding-bottom: 1.25rem;
	padding-top: 1.25rem;
	position: absolute;
	right: 0;
	top: 4.125rem;
	width: 100%;
}

.header__sp-nav-items {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.header__sp-nav-item a {
	grid-gap: 0.4375rem;
	align-items: center;
	color: #000000;
	display: grid;
	font-size: 1.0625rem;
	font-weight: 500;
	gap: 0.4375rem;
	grid-template-columns: auto 1fr;
	line-height: 1.4117647059;
	padding: 0.46875rem 1.25rem;
}

.header__sp-nav-item a i {
	font-size: 1rem;
}

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

/*                 Hamburger                   */

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

.header__hamburger {
	align-items: center;
	border: 1px solid #012850;
	border-radius: 0.15625rem;
	color: #2F468E;
	display: inline-flex;
	font-size: 0.8125rem;
	font-weight: 300;
	gap: 0.1875rem;
	height: auto;
	justify-content: center;
	line-height: 101%;
	margin-left: auto;
	padding: 0.78125rem;
	width: 100%;
	z-index: 50;
}

.header__hamburger:hover {
	opacity: 1;
}

.header__hamburger-line {
	background-color: #2F468E;
	color: #2F468E;
	height: 1px;
	position: relative;
	width: 10px;
}

.header__hamburger-line:before,
.header__hamburger-line:after {
	background-color: currentColor;
	content: "";
	display: block;
	height: inherit;
	position: absolute;
	width: 100%;
}

.header__hamburger-line::before {
	top: -3px;
}

.header__hamburger-line:after {
	top: 3px;
}

.inner {
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	width: 100%;
}

.inner-md {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

.inner-lg {
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	width: 100%;
}

.modal {
	bottom: 0;
	display: none;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1000;
}

.modal.-active {
	display: block;
}

.modal__overlay {
	background: rgba(0, 0, 0, 0.1);
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}

.modal__content {
	background: #ffffff;
	border-radius: 0.625rem;
	box-shadow: 0px 0.25rem 1.5rem rgba(0, 0, 0, 0.15);
	left: 50%;
	max-width: 90.125rem;
	padding: 1.25rem;
	position: relative;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.modal__close {
	background: transparent;
	border: none;
	cursor: pointer;
	height: 3.125rem;
	position: absolute;
	right: -0.9375rem;
	top: -2rem;
	width: 3.125rem;
	z-index: 3;
}

.modal__close img {
	-o-object-fit: cover;
	aspect-ratio: 72/72;
	object-fit: cover;
}

.modal__main {
	margin-bottom: 1rem;
	margin-left: auto;
	margin-right: auto;
}

.modal__main-img img {
	-o-object-fit: cover;
	aspect-ratio: 702/526;
	border-radius: 0.625rem;
	object-fit: cover;
}

.modal__thumbnail {
	border: none !important;
}

.modal__thumbnail {
	position: relative;
}

.modal__thumbnail::before {
	background: rgba(0, 0, 0, 0.4);
	border-radius: 0.625rem;
	content: "";
	display: block;
	height: 100%;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: 0.2s;
	width: 100%;
}

.modal__thumbnail.is-active::before {
	background: rgba(0, 0, 0, 0);
}

.modal__thumbnail img {
	-o-object-fit: cover;
	aspect-ratio: 293/210;
	border-radius: 0.625rem;
	object-fit: cover;
}

.modal__arrows .splide__arrow {
	background-color: #ffffff;
	border: 0.0625rem solid #000000;
	border-radius: 50%;
	font-size: 0.625rem;
	height: 2rem;
	opacity: 1;
	width: 2rem;
}

.modal__arrows .splide__arrow:disabled {
	border-color: #D5D5D5;
	color: #ABABAB;
	cursor: auto;
}

.modal__arrows .splide__arrow--prev {
	left: -2.5rem;
	padding-right: 0.125rem;
}

.modal__arrows .splide__arrow--next {
	padding-left: 0.125rem;
	right: -2.5rem;
}

.news-sidebar__list {
	grid-gap: 0.5rem;
	display: grid;
	gap: 0.5rem;
	grid-template-columns: repeat(2, auto);
}

.news-sidebar__item-link {
	background-color: #F0F0F0;
	display: inline-block;
	font-size: 1rem;
	font-weight: 500;
	height: 100%;
	line-height: 1.45;
	padding: 0.375rem;
	text-align: center;
	width: 100%;
}

.page-info {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	justify-content: space-between;
}

.page-info__page-top-btn {
	grid-gap: 0.375rem;
	align-items: center;
	display: grid;
	font-size: 0.875rem;
	font-weight: 500;
	gap: 0.375rem;
	grid-template-columns: repeat(2, auto);
	justify-content: center;
	line-height: 1.4285714286;
	position: relative;
	text-transform: uppercase;
}

.page-info__page-top-btn::after {
	border-right: 0.0625rem solid;
	border-top: 0.0625rem solid;
	content: "";
	display: inline-block;
	height: 0.375rem;
	transform: rotate(-45deg) translateY(0.25rem);
	width: 0.375rem;
}

.pagination .nav-links,
.pagination .page-links {
	display: flex;
	gap: 0.3125rem;
	justify-content: center;
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
	border: 0.0625rem solid #000000;
	border-radius: 50%;
	font-size: 0.8125rem;
	height: 2.5rem;
	width: 2.5rem;
}

.pagination .page-numbers.prev.disabled,
.pagination .page-numbers.next.disabled {
	border-color: #D5D5D5;
	color: #ABABAB;
}

.pagination .page-numbers.prev {
	margin-right: 0.8125rem;
	padding-right: 0.75rem;
}

.pagination .page-numbers.next {
	margin-left: 0.8125rem;
	padding-left: 0.75rem;
}

.pagination .page-numbers,
.pagination .post-page-numbers {
	align-items: center;
	border-radius: 0.3125rem;
	color: #000000;
	display: flex;
	flex-shrink: 0;
	font-family: "DM Serif Display", serif;
	font-size: 1rem;
	font-weight: 700;
	justify-content: center;
	line-height: 1.375;
	padding-left: 0.625rem;
	padding-right: 0.625rem;
}

.pagination .page-numbers:not(.current):not(.dots):not(.disabled),
.pagination .post-page-numbers:not(.current):not(.dots):not(.disabled) {
	transition: color 0.3s, border-color 0.3s;
}

.pagination .page-numbers:not(.current):not(.dots):not(.next):not(.prev),
.pagination .post-page-numbers:not(.current):not(.dots):not(.next):not(.prev) {
	-webkit-text-decoration: underline;
	text-decoration: underline;
	text-underline-offset: 0.3ex;
}

.pagination .page-numbers.dots,
.pagination .post-page-numbers.dots {
	align-items: end;
	padding-bottom: 0.375rem;
}

/* ------------------------------------------------------------------
Loader
------------------------------------------------------------------- */

.shutter {
	align-items: center;
	animation: byeShutter 2.6s forwards;
	background-color: #2F468E;
	bottom: 0;
	display: flex;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 99999;
}

.shutter::before {
	animation: shutterOpen 2.6s forwards;
	background-color: #ffffff;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	margin: auto;
	position: absolute;
	top: 0;
	width: 0;
}

.sidebar__summary {
	font-size: 1rem; /* ▶︎矢印を消す */
	list-style: none;
	position: relative;
}

.sidebar__summary::-webkit-details-marker {
	display: none;
}

.sidebar__summary::before,
.sidebar__summary::after {
	background-color: currentColor;
	content: "";
	display: inline-block;
	height: 0.0625rem;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: 0.3s;
	width: 1.125rem;
}

.sidebar__summary::before {
	rotate: -90deg;
}

.sidebar__list {
	grid-gap: 0.5rem;
	display: grid;
	gap: 0.5rem;
}

.sidebar__item-link {
	grid-gap: 0.5rem;
	align-items: center;
	display: grid;
	gap: 0.5rem;
	grid-template-columns: auto 1fr;
}

.sidebar__item-link-circle {
	background-color: #2F468E;
	border-radius: 50%;
	display: inline-block;
	height: 0.75rem;
	width: 0.75rem;
}

.sidebar__item-link-text {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 200%;
}

.sidebar__item-submenu {
	grid-gap: 0.1875rem;
	display: grid;
	gap: 0.1875rem;
	margin-bottom: 0.75rem;
	margin-top: 0.1875rem;
	padding-left: 0.5rem;
}

.sidebar__item-sub-link {
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 200%;
}

/* スクロールバーの背景 */

.simplebar-scrollbar {
	background: #808080;
	border-radius: 1.875rem;
	right: 0;
	top: 0;
}

.simplebar-scrollbar::before {
	background-color: #808080;
}

.simplebar-track.simplebar-vertical {
	width: 0.3125rem;
}

/* スクロールバーの動く部分 */

.simplebar-track {
	background: #D9D9D9;
	border-radius: 1.875rem;
	width: 0.3125rem;
}

.company {
	overflow: hidden;
}

.company--layout {
	margin-bottom: 1.9375rem;
	margin-top: 1.9375rem;
}

.company__heading {
	margin-bottom: 3.75rem;
}

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

/*                   greeting                    */

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

.company__greeting {
	background-color: #F5F5F5;
	background-image: url("../image/company-greeting-bg-001.png");
	background-position: right 1.25rem bottom -0.25rem;
	background-repeat: no-repeat;
	background-size: 7.5rem auto;
	margin-bottom: 5rem;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding-bottom: 3.375rem;
	padding-left: calc(50vw - 50%);
	padding-right: calc(50vw - 50%);
	padding-top: 3rem;
}

.company-greeting__inner {
	grid-gap: 2rem;
	display: grid;
	gap: 2rem;
}

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

/*                   overview                    */

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

.company__overview {
	margin-bottom: 7.5rem;
}

.company-overview__inner {
	grid-gap: 2rem;
	display: grid;
	gap: 2rem;
}

.company-overview__list {
	margin-bottom: 3.75rem;
}

.company-overview__item {
	border-bottom: 1px solid #F0F0F0;
	display: grid;
	grid-template-columns: 6.25rem 1fr;
}

.company-overview__item-title,
.company-overview__item-desc {
	font-size: 0.875rem;
	line-height: 1.4444444444;
	padding: 1rem 0.625rem;
}

.company-overview__location {
	display: grid;
}

.company-overview__location-name,
.company-overview__location-address {
	padding: 0.5rem 0.625rem;
}

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

/*                   history                    */

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

.company__history {
	background-color: #F5F5F5;
	margin-bottom: 5rem;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding-bottom: 3.375rem;
	padding-left: calc(50vw - 50%);
	padding-right: calc(50vw - 50%);
	padding-top: 3rem;
	position: relative;
}

.company__history::before {
	background-image: url("../image/company-history-bg-002.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 4.125rem;
	left: 50%;
	position: absolute;
	top: -3.75rem;
	transform: translateX(-50%);
	width: 47.9375rem;
}

.company-history__inner {
	grid-gap: 2rem;
	display: grid;
	gap: 2rem;
}

.company-history__scroll-box {
	-webkit-overflow-scrolling: touch;
	height: 28.875rem;
	overflow-y: scroll;
}

.company-history__item {
	align-items: start;
	display: grid;
	grid-template-columns: 6rem 1fr;
	justify-content: space-between;
}

.company-history__item:first-child .company-history__item-date,
.company-history__item:first-child .company-history__item-text {
	padding-top: 0;
}

.company-history__item:first-child .company-history__item-text::before {
	top: 0;
}

.company-history__item:nth-last-child(2) .company-history__item-date,
.company-history__item:nth-last-child(2) .company-history__item-text {
	padding-bottom: 1.625rem;
}

.company-history__item:last-child .company-history__item-date,
.company-history__item:last-child .company-history__item-text {
	padding-top: 0;
}

.company-history__item:last-child .company-history__item-text {
	border-color: transparent;
}

.company-history__item:last-child .company-history__item-text::before {
	top: 0;
}

.company-history__item-date,
.company-history__item-text {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.4444444444;
	padding-bottom: 0.625rem;
	padding-top: 0.625rem;
}

.company-history__item-text {
	border-left: 2px solid #2F468E;
	padding-left: 0.75rem;
	padding-right: 0.625rem;
	position: relative;
}

.company-history__item-text::before {
	background-color: #2F468E;
	border-radius: 50%;
	content: "";
	display: inline-block;
	height: 0.5rem;
	left: -0.3125rem;
	position: absolute;
	top: 0.875rem;
	width: 0.5rem;
}

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

/*                   financial                    */

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

.company__financial {
	margin-bottom: 3.75rem;
}

.company-financial__inner {
	grid-gap: 2rem;
	display: grid;
	gap: 2rem;
}

.company-financial__list {
	grid-gap: 0.0625rem;
	display: grid;
	gap: 0.0625rem;
}

.company-financial__item-link {
	-webkit-text-decoration: underline;
	display: inline-block;
	font-size: 1rem;
	font-weight: 500;
	line-height: 180%;
	position: relative;
	text-decoration: underline;
	text-underline-offset: 0.3ex;
}

.company-financial__item-link:before {
	-webkit-mask-image: url("../image/icon-pdf-001.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	background-color: currentColor;
	content: "";
	display: inline-block;
	height: 1.25rem;
	mask-image: url("../image/icon-pdf-001.svg");
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	position: absolute;
	right: -1.6875rem;
	top: 50%;
	transform: translateY(-50%);
	width: 1.25rem;
}

.contact--layout {
	margin-bottom: 1.9375rem;
	margin-top: 1.9375rem;
}

.contact__heading {
	margin-bottom: 3.75rem;
}

.contact__container {
	margin-bottom: 3.75rem;
}

.contact__title {
	color: #2F468E;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 180%;
	margin-bottom: 1rem;
}

.contact__text {
	border: 1px solid #D9D9D9;
	margin-bottom: 3rem;
	padding: 1rem;
	width: 100%;
}

.csr {
	overflow: hidden;
}

.csr--layout {
	margin-bottom: 1.9375rem;
	margin-top: 1.9375rem;
}

.csr__heading {
	margin-bottom: 3.75rem;
}

.csr__container {
	grid-gap: 2.25rem;
	display: grid;
	gap: 2.25rem;
	margin-bottom: 3.75rem;
}

.csr__contents {
	grid-gap: 3.75rem;
	display: grid;
	gap: 3.75rem;
}

.csr-contribution__sec-heading,
.csr-safety__sec-heading,
.csr-quality__sec-heading,
.csr-environment__sec-heading,
.csr-health__sec-heading,
.csr-action-plan__sec-heading {
	background-color: #F5F5F5;
	background-position: right 1.25rem bottom;
	background-repeat: no-repeat;
	margin-bottom: 2.5rem;
	padding-bottom: 1.125rem;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	padding-top: 1.125rem;
}

.csr-contribution__wrap,
.csr-safety__wrap,
.csr-quality__wrap,
.csr-environment__wrap,
.csr-health__wrap,
.csr-action-plan__wrap {
	grid-gap: 1rem;
	display: grid;
	gap: 1rem;
}

.csr-contribution__container,
.csr-quality__container,
.csr-health__container {
	grid-gap: 1rem;
	display: grid;
	gap: 1rem;
}

.csr-contribution__img-list,
.csr-safety__img-list,
.csr-quality__img-list,
.csr-environment__img-list {
	grid-gap: 1rem;
	display: grid;
	gap: 1rem;
}

.csr-contribution__img-item,
.csr-safety__img-item,
.csr-quality__img-item,
.csr-environment__img-item {
	border-radius: 0.625rem;
	overflow: hidden;
}

.csr-contribution__img-item img,
.csr-safety__img-item img,
.csr-quality__img-item img,
.csr-environment__img-item img {
	-o-object-fit: cover;
	aspect-ratio: 440/320;
	object-fit: cover;
}

.csr-health__pdf-link,
.csr-action-plan__pdf-link {
	margin-top: 1rem;
}

.csr-health__pdf-link a,
.csr-action-plan__pdf-link a {
	align-items: center;
	background-color: #F5F5F5;
	border-top: 2px solid #2F468E;
	display: inline-grid;
	font-size: 0.875rem;
	font-weight: 500;
	gap: 1.25rem;
	grid-template-columns: repeat(2, auto);
	justify-content: space-between;
	line-height: 1.4444444444;
	max-width: 32.5rem;
	padding: 1.5rem 1.5rem 1.5rem 1.25rem;
	width: 100%;
}

.csr-health__pdf-link a::after,
.csr-action-plan__pdf-link a::after {
	-webkit-mask-image: url("../image/icon-pdf-001.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	background-color: currentColor;
	content: "";
	display: inline-block;
	height: 1.625rem;
	mask-image: url("../image/icon-pdf-001.svg");
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	width: 1.625rem;
}

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

/*                 contribution                */

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

.csr-contribution__sec-heading {
	background-image: url("../image/csr-contribution-bg-001.png");
	background-size: 8.875rem auto;
}

.csr-contribution__wrap + .csr-contribution__wrap {
	margin-top: 2.5rem;
}

.csr-contribution__img.-first img {
	-o-object-fit: cover;
	aspect-ratio: 333/471;
	object-fit: cover;
}

.csr-contribution__img.-second {
	max-width: 42.4375rem;
}

.csr-contribution__img.-second img {
	-o-object-fit: cover;
	aspect-ratio: 679/320;
	object-fit: cover;
}

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

/*                   safety                    */

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

.csr-safety__sec-heading {
	background-image: url("../image/csr-safety-bg-001.png");
	background-size: 7.5rem auto;
}

.csr-safety__wrap + .csr-safety__wrap {
	margin-top: 2.5rem;
}

.csr-safety__texts {
	display: grid;
}

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

/*                   quality                    */

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

.csr-quality__sec-heading {
	background-image: url("../image/csr-quality-bg-001.png");
	background-size: 9rem auto;
}

.csr-quality__wrap + .csr-quality__wrap {
	margin-top: 2.5rem;
}

.csr-quality__img.-first img {
	-o-object-fit: cover;
	aspect-ratio: 333/469;
	object-fit: cover;
}

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

/*                environment                   */

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

.csr-environment__sec-heading {
	background-image: url("../image/csr-environment-bg-001.png");
	background-size: 9rem auto;
}

.csr-environment__wrap + .csr-environment__wrap {
	margin-top: 2.5rem;
}

.csr-environment__table {
	border: none;
	border-spacing: 0;
	text-align: left;
	width: 100%;
}

.csr-environment__table thead tr {
	background-color: #F4F4F4;
}

.csr-environment__table thead th {
	border-bottom: 1px solid #CACACA;
	border-top: 1px solid #CACACA;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.4444444444;
	padding: 0.875rem 0.625rem;
}

.csr-environment__table tbody td {
	border-bottom: 1px solid #CACACA;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.4444444444;
	padding: 1rem 0.625rem;
}

.csr-environment__table tbody td:first-child {
	width: 15rem;
}

.csr-environment__table tbody td:nth-of-type(2) {
	width: 18.75rem;
}

.csr-environment__table tbody td:last-child {
	width: 20rem;
}

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

/*                   health                    */

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

.csr-health__sec-heading {
	background-image: url("../image/csr-health-bg-001.png");
	background-size: 9.5rem auto;
}

.csr-health__img.-first img {
	-o-object-fit: cover;
	aspect-ratio: 327/463;
	object-fit: cover;
}

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

/*                action-plan                   */

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

.csr-action-plan__sec-heading {
	background-image: url("../image/csr-action-plan-bg-001.png");
	background-size: 9.5rem auto;
}

.news-detail--layout {
	margin-bottom: 1.9375rem;
	margin-top: 1.9375rem;
}

.news-detail__heading {
	margin-bottom: 3.75rem;
}

.news-detail__container {
	grid-gap: 2.8125rem;
	display: grid;
	gap: 2.8125rem;
	margin-bottom: 3.75rem;
}

.news-detail__header {
	border-bottom: 0.0625rem solid #D9D9D9;
	margin-bottom: 1.875rem;
	padding-bottom: 1.875rem;
}

.news-detail__header-meta {
	align-items: center;
	display: flex;
	gap: 0.75rem;
	justify-content: left;
	margin-bottom: 1rem;
}

.news-detail__header-meta-time {
	color: #333333;
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.4375;
}

.news-detail__header-meta-cat {
	background-color: #F0F0F0;
	display: inline-block;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.45;
	padding: 0.25rem 1rem;
}

.news-detail__header-title {
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.4166666667;
}

.news-detail__body {
	grid-gap: 1.5rem;
	border-bottom: 0.0625rem solid #D9D9D9;
	display: grid;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
	padding-bottom: 1.875rem;
}

.news-detail__body p {
	font-size: 1rem;
	font-weight: 500;
	line-height: 180%;
}

.news-detail__body img {
	margin-left: auto;
	margin-right: auto;
	max-width: 35.375rem;
}

.news-detail__nav-list {
	grid-gap: 2rem;
	align-items: center;
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(3, auto);
	justify-content: center;
}

.news-detail__nav-item.-prev a,
.news-detail__nav-item.-next a {
	align-items: center;
	border: 0.0625rem solid #000000;
	border-radius: 50%;
	display: flex;
	font-size: 0.8125rem;
	height: 2.5rem;
	justify-content: center;
	line-height: 1.375;
	width: 2.5rem;
}

.news-detail__nav-item.-prev a {
	padding-left: 0.625rem;
	padding-right: 0.75rem;
}

.news-detail__nav-item.-next a {
	padding-left: 0.75rem;
	padding-right: 0.625rem;
}

.news-detail__nav-item.-archive {
	font-size: 1rem;
	line-height: 1.45;
}

.news--layout {
	margin-bottom: 1.9375rem;
	margin-top: 1.9375rem;
}

.news__heading {
	margin-bottom: 3.75rem;
}

.news__container {
	grid-gap: 1.5625rem;
	display: grid;
	gap: 1.5625rem;
	margin-bottom: 3.75rem;
}

.news__list {
	margin-bottom: 3.75rem;
}

.news__item {
	border-bottom: 0.0625rem solid #D9D9D9;
}

.news__item:first-child {
	border-top: 0.0625rem solid #D9D9D9;
}

.news__item-link {
	grid-gap: 0.9375rem;
	display: grid;
	gap: 0.9375rem;
	padding-bottom: 1.25rem;
	padding-left: 0.9375rem;
	padding-right: 0.9375rem;
	padding-top: 1.25rem;
}

.news__item__meta {
	grid-gap: 0.9375rem;
	align-items: center;
	color: #333333;
	display: grid;
	gap: 0.9375rem;
	grid-template-columns: repeat(3, auto);
	justify-content: left;
}

.news__item__meta-time,
.news__item-meta-separator,
.news__item__meta-cat {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.4375;
}

.news__item-title {
	-webkit-text-decoration: underline;
	font-size: 1rem;
	font-weight: 500;
	line-height: 140%;
	text-decoration: underline;
}

.service {
	overflow: hidden;
}

.service--layout {
	margin-bottom: 1.9375rem;
	margin-top: 1.9375rem;
}

.service__heading {
	margin-bottom: 3.75rem;
}

.service__container {
	grid-gap: 2.25rem;
	display: grid;
	gap: 2.25rem;
	margin-bottom: 3.75rem;
}

.service__contents {
	display: contents;
}

.service__text {
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.45;
}

.service-technology__sec-heading,
.service-method__sec-heading {
	background-color: #F5F5F5;
	background-position: right 1.25rem bottom;
	background-repeat: no-repeat;
	margin-bottom: 2.5rem;
	padding-bottom: 1.125rem;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	padding-top: 1.125rem;
}

.service-technology__item-img,
.service-method__item-img {
	border-radius: 0.625rem;
	overflow: hidden;
	position: relative;
}

.service-technology__item-img.js-modal-trigger::before,
.service-method__item-img.js-modal-trigger::before {
	background-color: #000000;
	border-radius: 0.625rem;
	bottom: 0.5625rem;
	content: "";
	display: inline-block;
	height: 3rem;
	position: absolute;
	right: 0.8125rem;
	transition: background-color 0.3s;
	width: 3rem;
	z-index: 1;
}

.service-technology__item-img.js-modal-trigger::after,
.service-method__item-img.js-modal-trigger::after {
	-webkit-mask-image: url("../image/icon-zoom-in.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	background-color: #ffffff;
	bottom: 1rem;
	content: "";
	display: inline-block;
	height: 2.0625rem;
	mask-image: url("../image/icon-zoom-in.svg");
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	position: absolute;
	right: 1.25rem;
	width: 2.0625rem;
	z-index: 1;
}

.service-technology__item-img img,
.service-method__item-img img {
	-o-object-fit: cover;
	object-fit: cover;
	transition: 0.5s all;
}

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

/*             service-technology              */

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

.service__technology {
	margin-bottom: 1.5rem;
}

.service-technology__sec-heading {
	background-image: url("../image/service-technology-bg-001.png");
	background-size: 8.5rem auto;
}

.service-technology__list {
	grid-gap: 2.5rem;
	display: grid;
	gap: 2.5rem;
}

.service-technology__item {
	grid-gap: 0.75rem;
	align-items: start;
	display: grid;
	gap: 0.75rem;
}

.service-technology__item-img img {
	aspect-ratio: 436/320;
}

.service-technology__item-body {
	display: contents;
}

.service-technology__item-title {
	color: #2F468E;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.4166666667;
	margin-bottom: 0.25rem;
}

.service-technology__item-info {
	border-top: 1px solid #CACACA;
	display: grid;
	grid-template-columns: auto 1fr;
}

.service-technology__item-info-title,
.service-technology__item-info-desc {
	border-bottom: 1px solid #CACACA;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.4444444444;
	padding: 1rem 0.625rem;
}

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

/*                service-method               */

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

.service-method__sec-heading {
	background-image: url("../image/service-method-bg-001.png");
	background-size: 7.5rem auto;
}

.service-method__item {
	grid-gap: 1.25rem;
	align-items: start;
	border-bottom: 1px solid #EAEAEA;
	display: grid;
	gap: 1.25rem;
	padding-bottom: 1.6875rem;
	padding-top: 2rem;
}

.service-method__item:first-child {
	padding-top: 0;
}

.service-method__item:last-child {
	border-bottom: none;
}

.service-method__item-title {
	color: #2F468E;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.4166666667;
	margin-bottom: 0.75rem;
}

.service-method__item-text {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.4444444444;
}

.service-method__item-img img {
	aspect-ratio: 300/225;
}

.works-detail {
	overflow: hidden;
}

.works-detail--layout {
	margin-bottom: 1.9375rem;
	margin-top: 1.9375rem;
}

.works-detail__heading {
	margin-bottom: 3.75rem;
}

.works-detail__title {
	background-color: #F5F5F5;
	color: #2F468E;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.4166666667;
	margin-bottom: 2.125rem;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding-bottom: 1rem;
	padding-left: calc(50vw - 50%);
	padding-right: calc(50vw - 50%);
	padding-top: 1rem;
	text-align: center;
}

.works-detail__container {
	display: contents;
}

.works-detail__thumb {
	border-radius: 0.625rem;
	margin-bottom: 2.125rem;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
}

.works-detail__thumb img {
	-o-object-fit: cover;
	aspect-ratio: 800/540;
	object-fit: cover;
}

.works-detail__compare {
	grid-gap: 1.5rem;
	display: grid;
	gap: 1.5rem;
	margin-bottom: 4rem;
}

.works-detail__compare-text {
	align-items: center;
	color: #2F468E;
	display: inline-grid;
	font-size: 1rem;
	font-weight: 500;
	gap: 0.8125rem;
	grid-template-columns: auto 1fr;
	line-height: 1.4375;
	margin-bottom: 0.4375rem;
}

.works-detail__compare-text::before {
	background-color: currentColor;
	content: "";
	display: inline-block;
	height: 1.5625rem;
	width: 0.375rem;
}

.works-detail__compare-img {
	border-radius: 0.5rem;
	overflow: hidden;
}

.works-detail__compare-img img {
	-o-object-fit: cover;
	aspect-ratio: 628/424;
	object-fit: cover;
}

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

/*                   about                    */

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

.works-detail__about {
	background-color: #F5F5F5;
	background-image: url("../image/works-detail-about-bg-002.png");
	background-position: right bottom;
	background-repeat: no-repeat;
	background-size: 100% auto;
	border-top: 2px solid #2F468E;
	margin-bottom: 4rem;
	padding-bottom: 3rem;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	padding-top: 2rem;
}

.works-detail__about-heading {
	color: #2F468E;
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	line-height: 1.45;
	margin-bottom: 0.625rem;
	text-align: center;
}

.works-detail__about-item {
	grid-gap: 0.375rem;
	border-bottom: 0.0625rem solid #CACACA;
	display: grid;
	gap: 0.375rem;
	grid-template-columns: auto 1fr;
}

.works-detail__about-item-title {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.4444444444;
	padding: 1rem 0.375rem;
}

.works-detail__about-item-desc {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.45;
	padding: 1rem 0.375rem;
}

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

/*                   other                    */

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

.works-detail__other {
	margin-bottom: 3.75rem;
}

.works-detail__other-heading {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.45;
	margin-bottom: 2rem;
	text-align: center;
}

.works-detail__other-list {
	grid-gap: 1rem;
	display: grid;
	gap: 1rem;
}

.works-detail__other-list + .works-detail__other-list {
	margin-top: 1rem;
}

.works-detail__other-list.-sm {
	grid-template-columns: repeat(2, 1fr);
}

.works-detail__other-img {
	border-radius: 0.625rem;
	overflow: hidden;
}

.works-detail__other-img img {
	-o-object-fit: cover;
	aspect-ratio: 306/234;
	object-fit: cover;
}

.works {
	overflow: hidden;
}

.works--layout {
	margin-bottom: 1.9375rem;
	margin-top: 1.9375rem;
}

.works__heading {
	margin-bottom: 3.75rem;
}

.works-reiwa__heading-bg,
.works-heisei__heading-bg {
	background-color: #F5F5F5;
	margin-bottom: 2.5rem;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding-bottom: 1.125rem;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	padding-top: 1.125rem;
}

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

/*                   reiwa                    */

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

.works__reiwa {
	margin-bottom: 3.75rem;
}

.works-reiwa__list {
	grid-gap: 2rem;
	display: grid;
	gap: 2rem;
	justify-content: center;
	margin-bottom: 2.5rem;
}

.works-reiwa__item-link {
	grid-gap: 1.5rem;
	display: grid;
	gap: 1.5rem;
	padding-bottom: 1.1875rem;
}

.works-reiwa__item-thumb {
	border-radius: 0.625rem;
	overflow: hidden;
}

.works-reiwa__item-thumb.-noimg {
	aspect-ratio: 392/280;
	background-color: #D9D9D9;
}

.works-reiwa__item-thumb img {
	-o-object-fit: cover;
	aspect-ratio: 392/280;
	object-fit: cover;
}

.works-reiwa__item-title {
	font-size: 1rem;
	font-weight: 600;
	line-height: 145%;
}

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

/*                   heisei                    */

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

.works__heisei {
	margin-bottom: 3.75rem;
}

.works-heisei__list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.works-heisei__item-details[open] .works-heisei__item-summary {
	background-color: #2F468E;
	color: #ffffff;
}

.works-heisei__item-details[open] .works-heisei__item-summary::before {
	background-color: currentColor;
	transform: rotate(90deg);
}

.works-heisei__item-summary {
	grid-gap: 0.8125rem;
	align-items: center;
	border: 0.0625rem solid #2F468E;
	display: grid;
	gap: 0.8125rem;
	grid-template-columns: auto 1fr;
	padding: 0.5rem 0.625rem;
	transition: color 0.3s, background-color 0.3s;
}

.works-heisei__item-summary::-webkit-details-marker {
	display: none;
}

.works-heisei__item-summary::before {
	background-color: #2F468E;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	content: "";
	display: inline-block;
	height: 0.8125rem;
	transition: transform 0.3s;
	width: 0.5rem;
}

.works-heisei__item-year {
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 200%;
}

.works-heisei__item-contents {
	padding-bottom: 1rem;
	padding-top: 1rem;
}

.works-heisei__table {
	border: none;
	border-spacing: 0;
	width: 100%;
}

.works-heisei__table thead tr {
	background-color: #D9D9D9;
	border: 0.0625rem solid #CACACA;
}

.works-heisei__table thead th {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.4444444444;
	padding: 0.5rem 0.625rem;
}

.works-heisei__table tbody td {
	border-bottom: 0.0625rem solid #CACACA;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.4444444444;
	padding: 0.75rem 0.625rem;
}

.works-heisei__table tbody td:first-child {
	width: 9.375rem;
}

.works-heisei__table tbody td:nth-of-type(2) {
	width: 18.75rem;
}

.works-heisei__table tbody td:nth-of-type(3) {
	width: 6.875rem;
}

.works-heisei__table tbody td:last-child {
	width: 11.875rem;
}

.works-heisei__table tbody td span.-red {
	color: red;
}

@media (hover: hover) and (pointer: fine) {

.anime-zoom:hover .anime-zoom__img img {
	transform: scale(1.12, 1.12);
}

.breadcrumb a:hover {
	color: #2F468E;
}

.footer__shop-item-map:hover {
	color: #2F468E;
}

.footer__nav-item a:hover {
	color: #2F468E;
}

.form__submit-button:hover {
	background-color: #4CABE1;
}

.header__pc-nav-item:not(.-contact) a:hover {
	color: #4CABE1;
}

.header__pc-nav-item:not(.-contact) a:hover:before {
	transform: scale(1);
}

.header__pc-nav-item.-contact a:hover {
	background-color: #4CABE1;
}

.modal__arrows .splide__arrow:not(:disabled):hover {
	border-color: #3A46C9;
	color: #3A46C9;
}

.page-info__page-top-btn:hover {
	color: #2F468E;
}

.pagination .page-numbers:not(.current):not(.dots):not(.disabled):hover,
.pagination .post-page-numbers:not(.current):not(.dots):not(.disabled):hover {
	border-color: #3A46C9;
	color: #3A46C9;
}

.sidebar__item-link:hover .sidebar__item-link-text {
	color: #000000;
}

.sidebar__item-sub-link:hover {
	color: #000000;
}

.company-financial__item-link:hover {
	color: #2F468E;
}

.csr-health__pdf-link a:hover,
.csr-action-plan__pdf-link a:hover {
	color: #ffffff;
}

.csr-health__pdf-link a:hover::before,
.csr-action-plan__pdf-link a:hover::before {
	transform: scale(1, 1);
	transform-origin: left top;
}

.news-detail__nav-item.-prev a:hover,
.news-detail__nav-item.-next a:hover {
	border-color: #3A46C9;
	color: #3A46C9;
}

.news-detail__nav-item.-archive:hover {
	color: #2F468E;
}

.service-technology__item-img.js-modal-trigger:hover::before,
.service-method__item-img.js-modal-trigger:hover::before {
	background-color: #2F468E;
}

.service-technology__item-img.js-modal-trigger:hover img,
.service-method__item-img.js-modal-trigger:hover img {
	transform: scale(1.05, 1.05);
}

.works-reiwa__item-link:hover .works-reiwa__item-title {
	color: #2F468E;
}

}

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

.pc-only {
	display: block;
}

.sp-only {
	display: none;
}

html {
	font-size: 0.989010989vw;
}

body.fixed {
	position: static;
	position: initial;
}

main {
	margin-top: 8.375rem;
}

a[href^="tel:"] {
	pointer-events: none;
}

a:not([href]):hover {
	opacity: 1;
}

.anime-zoom__img img {
	transition: 0.5s all;
}

.c-page-heading {
	gap: 1rem;
}

.c-page-heading__en {
	font-size: 4rem;
}

.c-page-heading__ja {
	font-size: 1.5rem;
}

.c-sec-heading__num {
	font-size: 1.875rem;
	margin-bottom: 1.1875rem;
}

.c-sec-heading__text-ja {
	font-size: 1.25rem;
}

.c-sec-heading__text-en {
	font-size: 1.25rem;
}

.c-sec-subheading {
	font-size: 1.125rem;
	gap: 0.875rem;
}

.c-sec-subheading::before {
	min-height: 2rem;
	width: 0.5rem;
}

.c-text {
	font-size: 1.125rem;
}

.footer {
	padding-bottom: 40px;
	padding-top: 40px;
}

.footer__container {
	margin-bottom: 40px;
}

.footer__logo {
	margin-bottom: 30px;
	width: 220px;
}

.footer__logo-link span {
	font-size: 16px;
}

.footer__shop-list {
	gap: 40px;
	margin-bottom: 40px;
}

.footer__shop-item-name {
	font-size: 18px;
	margin-bottom: 2px;
}

.footer__shop-item-tel {
	font-size: 16px;
	margin-bottom: 4px;
}

.footer__shop-item-address {
	font-size: 16px;
	margin-bottom: 6px;
}

.footer__shop-item-map {
	font-size: 14px;
}

.footer__marks {
	gap: 23px;
}

.footer__mark {
	height: 65px;
}

.footer__right {
	margin-bottom: 40px;
	margin-top: 40px;
	padding: 30px 40px;
}

.footer__nav {
	gap: 8.125rem;
	justify-content: center;
}

.footer__nav-items {
	gap: 16px;
}

.footer__nav-item a {
	font-size: 16px;
}

.footer_copyright small {
	font-size: 10px;
}

.form__wrap {
	margin-bottom: 6.25rem;
	margin-left: auto;
	margin-right: 1.8125rem;
	max-width: 76.25rem;
}

.form__field {
	align-items: center;
	gap: 1.5rem;
	grid-template-columns: 24.125rem 1fr;
	justify-content: space-between;
	padding-bottom: 2rem;
	padding-left: 1.5rem;
	padding-top: 2rem;
}

.form__label,
.form__privacy-label {
	font-size: 1.125rem;
}

.form__input,
.form__textarea,
.form__radio-group {
	max-width: 49rem;
}

.form__input,
.form__textarea {
	font-size: 1.125rem;
}

.form__input {
	height: 3rem;
}

.form__radio-group {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 46rem;
}

.form__radio-group label {
	grid-template-columns: 1rem auto;
}

.form__radio-group label + label {
	margin-top: 0;
}

.form__radio-group label span {
	font-size: 1.125rem;
}

.form__privacy,
.form__privacy-scroll-box {
	margin-bottom: 4rem;
}

.form__privacy-title {
	font-size: 1.25rem;
	margin-bottom: 2rem;
}

.form__privacy-scroll-box {
	height: 43.5625rem;
	padding-left: 4.375rem;
	padding-right: 2.8125rem;
}

.form__privacy-list {
	gap: 1.625rem;
	margin-bottom: 1.625rem;
}

.form__privacy-item {
	gap: 0.75rem;
}

.form__privacy-item-title,
.form__privacy-contact-title {
	font-size: 1.25rem;
}

.form__privacy-item-text,
.form__privacy-contact-text {
	font-size: 1.125rem;
}

.form__privacy-item-text span,
.form__privacy-contact-text span {
	margin-top: 0.5rem;
	padding-left: 1.25rem;
}

.form__privacy-contact {
	padding: 1.25rem 2.8125rem 1.3125rem;
}

.form__privacy-input + span {
	font-size: 1.125rem;
}

.form__privacy-input + span::after {
	top: 11%;
}

.form__submit-button {
	font-size: 1.25rem;
	transition: background-color 0.3s;
}

.header {
	height: 71px;
}

.header__inner {
	padding-left: 30px;
	padding-right: 10px;
}

.header__logo {
	width: 160px;
}

.header__logo-link span {
	font-size: 14px;
}

.header__drawer {
	top: 71px;
}

.header__sp-nav-item a {
	font-size: 16px;
	gap: 7px;
	padding: 10px 20px;
}

.header__sp-nav-item a i {
	font-size: 16px;
}

.header__hamburger {
	border-radius: 2.5px;
	font-size: 13px;
	gap: 5px;
	padding: 13px;
}

.inner {
	max-width: 1826.25px;
	padding-left: 3.125rem;
	padding-right: 3.125rem;
}

.inner-md {
	max-width: 84.375rem;
	padding-left: 3.125rem;
	padding-right: 3.125rem;
}

.inner-lg {
	max-width: 126.25rem;
	padding-left: 3.125rem;
	padding-right: 3.125rem;
}

.modal__content {
	padding: 4rem 6.25rem;
}

.modal__close {
	height: 4.5rem;
	right: -2.1875rem;
	top: -2.1875rem;
	width: 4.5rem;
}

.modal__main {
	margin-bottom: 3.375rem;
}

.modal__main-img img {
	border-radius: 1.25rem;
}

.modal__thumbnail::before {
	border-radius: 1.25rem;
}

.modal__thumbnail img {
	border-radius: 1.25rem;
}

.modal__arrows .splide__arrow {
	font-size: 1.1875rem;
	height: 3.6875rem;
	line-height: 106%;
	transition: 0.3s;
	width: 3.6875rem;
}

.modal__arrows .splide__arrow--prev {
	left: -13.25rem;
	padding-right: 0.25rem;
}

.modal__arrows .splide__arrow--next {
	padding-left: 0.25rem;
	right: -13.25rem;
}

.news-sidebar__list {
	gap: 1rem;
	grid-template-columns: 1fr;
	width: 22.8125rem;
}

.news-sidebar__item-link {
	font-size: 1.25rem;
	position: relative;
	z-index: 1;
}

.news-sidebar__item-link::before {
	background-color: #2F468E;
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform 0.3s;
	z-index: 0;
	z-index: -1;
}

.pagination .nav-links,
.pagination .page-links {
	gap: 0.9375rem;
	justify-content: center;
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
	font-size: 1.25rem;
	height: 3.6875rem;
	line-height: 106%;
	width: 3.6875rem;
}

.pagination .page-numbers.prev {
	margin-right: 2.0625rem;
	padding-right: 0.875rem;
}

.pagination .page-numbers.next {
	margin-left: 2.0625rem;
	padding-left: 0.875rem;
}

.pagination .page-numbers,
.pagination .post-page-numbers {
	font-size: 1.5rem;
}

.pagination .page-numbers.dots,
.pagination .post-page-numbers.dots {
	padding-bottom: 0.75rem;
}

.sidebar {
	height: -moz-fit-content;
	height: fit-content;
	padding-top: 5.9375rem;
	position: sticky;
	top: 5.9375rem;
	width: 26.875rem;
}

.sidebar__summary {
	cursor: default;
	display: none;
}

.sidebar__list {
	gap: 0.25rem;
}

.sidebar__item-link {
	gap: 0.75rem;
}

.sidebar__item-link.-active .sidebar__item-link-circle {
	background-color: #2F468E;
}

.sidebar__item-link.-active .sidebar__item-link-text {
	color: #000000;
}

.sidebar__item-link-circle {
	background-color: transparent;
	height: 1rem;
	width: 1rem;
}

.sidebar__item-link-text {
	color: #C4C4C4;
	font-size: 1.125rem;
	transition: color 0.3s;
}

.sidebar__item-submenu {
	padding-left: 1.75rem;
}

.sidebar__item-sub-link {
	color: #C4C4C4;
	font-size: 0.875rem;
}

.sidebar__item-sub-link.-active {
	color: #000000;
}

.simplebar-track.simplebar-vertical {
	width: 0.5rem;
}

.simplebar-track {
	width: 0.5rem;
}

.company--layout {
	margin-bottom: 0;
	margin-top: 3.1875rem;
}

.company__heading {
	margin-bottom: 6.25rem;
}

.company__greeting {
	background-position: left 12.5625rem bottom -0.25rem;
	background-size: 10.8125rem auto;
	margin-bottom: 6.25rem;
	padding-bottom: 6.25rem;
	padding-top: 6.25rem;
}

.company-greeting__inner {
	align-items: start;
	gap: 2.5rem;
	grid-template-columns: 21.875rem 1fr;
	justify-content: space-between;
	margin-left: auto;
	margin-right: auto;
	max-width: 105rem;
}

.company__overview {
	margin-bottom: 16.25rem;
}

.company-overview__inner {
	align-items: start;
	gap: 2.5rem;
	grid-template-columns: 21.875rem 1fr;
	justify-content: space-between;
	margin-left: auto;
	margin-right: auto;
	max-width: 105rem;
}

.company-overview__list {
	margin-bottom: 5rem;
}

.company-overview__item {
	align-items: center;
	grid-template-columns: 25.625rem 1fr;
}

.company-overview__item-title,
.company-overview__item-desc {
	font-size: 1.125rem;
	padding: 2.5rem 1.5rem;
}

.company-overview__location {
	align-items: start;
	grid-template-columns: 25.625rem 1fr;
}

.company-overview__location-name,
.company-overview__location-address {
	padding: 2.5rem 1.5rem;
}

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

.company__history::before {
	background-image: url("../image/company-history-bg-001.png");
	height: 10rem;
	top: -10rem;
	width: 120rem;
}

.company-history__inner {
	align-items: start;
	gap: 2.5rem;
	grid-template-columns: 21.875rem 1fr;
	justify-content: space-between;
	margin-left: auto;
	margin-right: auto;
	max-width: 105rem;
}

.company-history__contents {
	padding-left: 4.375rem;
	padding-right: 4.375rem;
}

.company-history__scroll-box {
	height: 43.5625rem;
}

.company-history__item {
	gap: 5.375rem;
	grid-template-columns: 7rem 1fr;
}

.company-history__item-date,
.company-history__item-text {
	font-size: 1.125rem;
	padding-bottom: 0.8125rem;
	padding-top: 0.8125rem;
}

.company-history__item-text {
	padding-left: 5.375rem;
}

.company-history__item-text::before {
	height: 0.75rem;
	left: -0.4375rem;
	width: 0.75rem;
}

.company__financial {
	margin-bottom: 5rem;
}

.company-financial__inner {
	align-items: start;
	gap: 2.5rem;
	grid-template-columns: 21.875rem 1fr;
	justify-content: space-between;
	margin-left: auto;
	margin-right: auto;
	max-width: 105rem;
}

.company-financial__item-link {
	font-size: 1.125rem;
}

.contact--layout {
	margin-bottom: 0;
	margin-top: 3.1875rem;
}

.contact__heading {
	margin-bottom: 6.25rem;
}

.contact__container {
	margin-bottom: 5rem;
	margin-left: auto;
	max-width: 86.875rem;
	padding-right: 4.375rem;
}

.contact__title {
	font-size: 1.25rem;
	margin-bottom: 1.5625rem;
}

.contact__text {
	margin-bottom: 5.4375rem;
	margin-left: auto;
	margin-right: 1.8125rem;
	max-width: 76.25rem;
	padding: 1.0625rem 2rem;
}

.csr {
	overflow: clip;
}

.csr--layout {
	margin-bottom: 0;
	margin-top: 3.1875rem;
}

.csr__heading {
	margin-bottom: 6.25rem;
}

.csr__container {
	gap: 0;
	grid-template-columns: auto 1fr;
	margin-bottom: 5rem;
	margin-right: calc(50% - 50vw);
	position: relative;
}

.csr__contents {
	gap: 6.25rem;
}

.csr-contribution__sec-heading,
.csr-safety__sec-heading,
.csr-quality__sec-heading,
.csr-environment__sec-heading,
.csr-health__sec-heading,
.csr-action-plan__sec-heading {
	background-position: right 7.5rem bottom;
	margin-bottom: 4rem;
	padding-bottom: 1.8125rem;
	padding-left: 2.625rem;
	padding-right: 2.625rem;
	padding-top: 1.8125rem;
}

.csr-contribution__wrap,
.csr-safety__wrap,
.csr-quality__wrap,
.csr-environment__wrap,
.csr-health__wrap,
.csr-action-plan__wrap {
	gap: 1.5rem;
}

.csr-contribution__wrap.-flex,
.csr-safety__wrap.-flex,
.csr-quality__wrap.-flex,
.csr-environment__wrap.-flex,
.csr-health__wrap.-flex,
.csr-action-plan__wrap.-flex {
	align-items: start;
	display: flex;
	gap: 2rem;
	justify-content: space-between;
}

.csr-contribution__container,
.csr-quality__container,
.csr-health__container {
	gap: 1.5rem;
}

.csr-contribution__img-list,
.csr-safety__img-list,
.csr-quality__img-list,
.csr-environment__img-list {
	gap: 1.5rem 1rem;
	grid-template-columns: repeat(2, auto);
	justify-content: left;
}

.csr-contribution__img-item,
.csr-safety__img-item,
.csr-quality__img-item,
.csr-environment__img-item {
	max-width: 27.5rem;
}

.csr-health__pdf-link,
.csr-action-plan__pdf-link {
	margin-top: 1.5rem;
}

.csr-health__pdf-link a,
.csr-action-plan__pdf-link a {
	font-size: 1.125rem;
	padding: 3rem 2.0625rem 3rem 0.75rem;
	position: relative;
	z-index: 1;
}

.csr-health__pdf-link a::before,
.csr-action-plan__pdf-link a::before {
	background-color: #2F468E;
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform 0.3s;
	z-index: 0;
	z-index: -1;
}

.csr-health__pdf-link a::after,
.csr-action-plan__pdf-link a::after {
	height: 2.125rem;
	width: 2.125rem;
}

.csr-contribution__sec-heading {
	background-size: 17.625rem auto;
}

.csr-contribution__wrap + .csr-contribution__wrap {
	margin-top: 4rem;
}

.csr-contribution__img.-first {
	flex-shrink: 0;
	width: 20.8125rem;
}

.csr-safety__sec-heading {
	background-size: 14.5625rem auto;
}

.csr-safety__wrap + .csr-safety__wrap {
	margin-top: 4rem;
}

.csr-safety__texts {
	gap: 0.5rem;
	grid-template-columns: repeat(3, auto);
}

.csr-safety__texts .csr-safety__text {
	padding: 1.25rem 1.5rem;
}

.csr-quality__sec-heading {
	background-size: 17.75rem auto;
}

.csr-quality__wrap + .csr-quality__wrap {
	margin-top: 4rem;
}

.csr-quality__img.-first {
	flex-shrink: 0;
	width: 20.8125rem;
}

.csr-quality__text.-pl {
	padding-left: 1.25rem;
}

.csr-environment__sec-heading {
	background-size: 17.75rem auto;
}

.csr-environment__wrap + .csr-environment__wrap {
	margin-top: 4rem;
}

.csr-environment__table thead th {
	font-size: 1.125rem;
	padding: 1.5rem;
}

.csr-environment__table tbody td {
	font-size: 1.125rem;
	padding: 2.3125rem 1.5rem;
}

.csr-environment__table tbody td:first-child {
	width: 22.5rem;
}

.csr-environment__table tbody td:nth-of-type(2) {
	width: 26.25rem;
}

.csr-environment__table tbody td:last-child {
	width: 30rem;
}

.csr-health__sec-heading {
	background-size: 19rem auto;
}

.csr-health__img.-first {
	flex-shrink: 0;
	width: 20.4375rem;
}

.csr-action-plan__sec-heading {
	background-size: 19rem auto;
}

.news-detail--layout {
	margin-bottom: 0;
	margin-top: 3.1875rem;
}

.news-detail__heading {
	margin-bottom: 6.25rem;
}

.news-detail__container {
	gap: 4.625rem;
	grid-template-columns: auto 1fr;
	margin-bottom: 5rem;
}

.news-detail__contents {
	max-width: 82.5rem;
}

.news-detail__header {
	margin-bottom: 2.5rem;
	padding-bottom: 2.5rem;
	padding-left: 1.625rem;
}

.news-detail__header-meta {
	gap: 2.5625rem;
	margin-bottom: 1.5rem;
}

.news-detail__header-meta-time {
	font-size: 1rem;
}

.news-detail__header-meta-cat {
	font-size: 1.25rem;
	padding: 0.375rem 2.125rem;
}

.news-detail__header-title {
	font-size: 1.5rem;
}

.news-detail__body {
	margin-bottom: 6.25rem;
	padding-bottom: 2.5rem;
	padding-left: 1.625rem;
}

.news-detail__body p {
	font-size: 1.125rem;
}

.news-detail__nav-list {
	gap: 3rem;
}

.news-detail__nav-item.-prev a,
.news-detail__nav-item.-next a {
	font-size: 1.25rem;
	height: 3.6875rem;
	line-height: 106%;
	transition: color 0.3s, border-color 0.3s;
	width: 3.6875rem;
}

.news-detail__nav-item.-prev a {
	padding-right: 0.875rem;
}

.news-detail__nav-item.-next a {
	padding-left: 0.875rem;
}

.news-detail__nav-item.-archive {
	font-size: 1.25rem;
}

.news--layout {
	margin-bottom: 0;
	margin-top: 3.1875rem;
}

.news__heading {
	margin-bottom: 6.25rem;
}

.news__container {
	gap: 4.625rem;
	grid-template-columns: auto 1fr;
	margin-bottom: 5rem;
}

.news__list {
	margin-bottom: 6.25rem;
}

.news__item-link {
	gap: 4.75rem;
	grid-template-columns: auto 1fr;
	padding-bottom: 2.3125rem;
	padding-left: 1.625rem;
	padding-right: 1.625rem;
	padding-top: 2.5rem;
	transition: padding-left 0.3s, padding-right 0.3s, background-color 0.3s;
}

.news__item__meta-time,
.news__item-meta-separator,
.news__item__meta-cat {
	font-size: 1rem;
}

.news__item-title {
	font-size: 1.125rem;
	line-height: 1.4444444444;
}

.service {
	overflow: clip;
}

.service--layout {
	margin-bottom: 0;
	margin-top: 3.1875rem;
}

.service__heading {
	margin-bottom: 6.25rem;
}

.service__container {
	gap: 0;
	grid-template-columns: auto 1fr;
	margin-bottom: 5rem;
	margin-right: calc(50% - 50vw);
	position: relative;
}

.service__sidebar .sidebar__item-link-text {
	font-size: 1.25rem;
}

.service__contents {
	display: block;
}

.service__text {
	font-size: 1.25rem;
	margin-bottom: 4rem;
}

.service-technology__sec-heading,
.service-method__sec-heading {
	margin-bottom: 4rem;
	padding-bottom: 1.8125rem;
	padding-left: 4.375rem;
	padding-right: 2.625rem;
	padding-top: 1.8125rem;
}

.service-technology__item-img.js-modal-trigger,
.service-method__item-img.js-modal-trigger {
	cursor: pointer;
}

.service__technology {
	margin-bottom: 6.25rem;
}

.service-technology__inner {
	margin-left: 4.375rem;
	margin-right: auto;
	max-width: 85.375rem;
	padding-right: 3.125rem;
}

.service-technology__sec-heading {
	background-position: right 3.125rem bottom;
	background-size: 16rem auto;
}

.service-technology__list {
	gap: 4rem;
}

.service-technology__item {
	align-items: center;
	gap: 4.5rem;
	grid-template-columns: 27.25rem 1fr;
}

.service-technology__item-body {
	display: block;
}

.service-technology__item-title {
	font-size: 1.5rem;
	margin-bottom: 2rem;
}

.service-technology__item-info-title,
.service-technology__item-info-desc {
	font-size: 1.125rem;
	padding: 2rem 1.5rem;
}

.service-method__inner {
	max-width: 90rem;
	padding-right: 3.125rem;
}

.service-method__sec-heading {
	background-position: right 7.5rem bottom;
	background-size: 12.9375rem auto;
}

.service-method__item {
	gap: 8.0625rem;
	grid-template-columns: 1fr 18.75rem;
	padding: 1.5rem 4.375rem;
}

.service-method__item-title {
	font-size: 1.5rem;
	margin-bottom: 2rem;
}

.service-method__item-text {
	font-size: 1.125rem;
}

.works-detail--layout {
	margin-bottom: 0;
	margin-top: 3.1875rem;
}

.works-detail__heading {
	margin-bottom: 6.25rem;
}

.works-detail__title {
	font-size: 1.5rem;
	margin-bottom: 4rem;
	padding-bottom: 1.6875rem;
	padding-top: 1.6875rem;
}

.works-detail__container {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 82.5rem;
}

.works-detail__thumb {
	margin-bottom: 4rem;
	width: 50rem;
}

.works-detail__compare {
	align-items: center;
	gap: 4rem;
	grid-template-columns: repeat(2, 1fr);
	justify-content: center;
}

.works-detail__about {
	background-image: url("../image/works-detail-about-bg-001.png");
	padding-bottom: 4.5rem;
	padding-top: 2.5rem;
}

.works-detail__about-heading {
	font-size: 1.25rem;
	margin-bottom: 2rem;
}

.works-detail__about-list {
	margin-left: auto;
	margin-right: auto;
	max-width: 60rem;
}

.works-detail__about-item {
	align-items: center;
	gap: 0;
	grid-template-columns: 15.125rem 1fr;
}

.works-detail__about-item-title {
	font-size: 1.125rem;
	padding: 1.25rem 1.5rem;
}

.works-detail__about-item-desc {
	font-size: 1.25rem;
	padding: 1.25rem 1.5rem;
}

.works-detail__other {
	margin-bottom: 5rem;
}

.works-detail__other-heading {
	font-size: 1.25rem;
	margin-bottom: 3rem;
}

.works-detail__other-list.-sm {
	grid-template-columns: repeat(4, 1fr);
}

.works-detail__other-list.-md {
	grid-template-columns: repeat(3, 1fr);
}

.works-detail__other-list.-lg {
	grid-template-columns: repeat(2, 1fr);
}

.works--layout {
	margin-bottom: 0;
	margin-top: 3.1875rem;
}

.works__heading {
	margin-bottom: 6.25rem;
}

.works-reiwa__heading-bg,
.works-heisei__heading-bg {
	margin-bottom: 4rem;
	padding-bottom: 1.8125rem;
	padding-left: 7.5rem;
	padding-right: 7.5rem;
	padding-top: 1.8125rem;
}

.works-reiwa__sec-heading,
.works-heisei__sec-heading {
	margin-left: auto;
	margin-right: auto;
	max-width: 105rem;
}

.works__reiwa {
	margin-bottom: 6.25rem;
}

.works-reiwa__list {
	grid-template-columns: repeat(3, 26rem);
	margin-bottom: 4rem;
	margin-left: auto;
	margin-right: auto;
}

.works-reiwa__item-thumb {
	margin-left: auto;
	margin-right: auto;
	width: 24.5rem;
}

.works-reiwa__item-title {
	font-size: 1.25rem;
	transition: color 0.3s;
}

.works__heisei {
	margin-bottom: 5rem;
}

.works-heisei__inner {
	padding-left: 7.5rem;
	padding-right: 7.5rem;
}

.works-heisei__list {
	grid-gap: 1.5rem;
	display: grid;
	gap: 1.5rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 82.5rem;
}

.works-heisei__item-summary {
	cursor: pointer;
	padding: 1.375rem 0.75rem;
}

.works-heisei__item-year {
	font-size: 1.125rem;
}

.works-heisei__item-contents {
	padding-bottom: 1.25rem;
	padding-top: 2rem;
}

.works-heisei__table thead th {
	font-size: 1.125rem;
	padding: 1.5rem;
}

.works-heisei__table tbody td {
	font-size: 1.125rem;
	padding: 1rem 1.5rem;
}

.works-heisei__table tbody td:first-child {
	width: 20.1875rem;
}

.works-heisei__table tbody td:nth-of-type(2) {
	width: 33.9375rem;
}

.works-heisei__table tbody td:nth-of-type(3) {
	width: 11.375rem;
}

.works-heisei__table tbody td:last-child {
	width: auto;
	width: initial;
}

}

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

.modal__content {
	padding-bottom: 5vh;
	padding-top: 5vh;
}

.modal__main {
	margin-bottom: 4.5vh;
}

}

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

.news-sidebar__item-link:hover {
	color: #ffffff;
}

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

.news__item-link:hover {
	background-color: #2F468E;
	color: #ffffff;
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}

.news__item-link:hover .news__item__meta {
	color: #ffffff;
}

}

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

html {
	scroll-padding-top: 8.375rem;
}

.footer {
	padding-bottom: 2.4375rem;
	padding-top: 9.375rem;
}

.footer__container {
	align-items: start;
	display: flex;
	justify-content: space-between;
	margin-bottom: 4.4375rem;
	max-width: 97.8125rem;
	text-align: left;
}

.footer__left {
	padding-left: 0.5625rem;
}

.footer__logo {
	margin-bottom: 1.1875rem;
	width: 15.9375rem;
}

.footer__logo-link img {
	margin-right: auto;
	max-width: 15rem;
}

.footer__logo-link span {
	font-size: 1.125rem;
}

.footer__shop-list {
	gap: 1.5625rem;
	margin-bottom: 2.3125rem;
}

.footer__shop-item-name {
	font-size: 1.125rem;
	margin-bottom: 0.125rem;
}

.footer__shop-item-tel {
	font-size: 1rem;
	margin-bottom: 0.25rem;
}

.footer__shop-item-address {
	font-size: 1rem;
	margin-bottom: 0.375rem;
}

.footer__shop-item-map {
	font-size: 0.875rem;
}

.footer__marks {
	justify-content: left;
}

.footer__mark {
	height: 4.0625rem;
}

.footer__right {
	border: none;
	margin-left: 0;
	margin-left: initial;
	margin-right: 0;
	margin-right: initial;
	margin-top: 1.5625rem;
	padding-bottom: 0;
	padding-top: 0;
}

.footer__nav-items {
	border-left: 0.125rem solid #D9D9D9;
	gap: 1rem;
}

.footer__nav-item a {
	font-size: 1.125rem;
	font-weight: 500;
	padding: 0.5rem 1.3125rem;
}

.footer_copyright small {
	font-size: 0.75rem;
}

.header {
	height: 8.375rem;
}

.header__inner {
	align-items: start;
	padding-left: 4.75rem;
	padding-right: 3.125rem;
}

.header__logo {
	width: 15rem;
}

.header__logo-link span {
	font-size: 1.125rem;
}

.header__pc-nav {
	display: block;
	height: 3.1875rem;
	margin-top: 1.6875rem;
}

.header__pc-nav-items {
	display: flex;
	height: inherit;
	margin-left: auto;
	width: -moz-fit-content;
	width: fit-content;
}

.header__pc-nav-item {
	height: inherit;
	margin-left: 2.1875rem;
	margin-right: 2.1875rem;
	width: 100%;
}

.header__pc-nav-item a {
	align-content: center;
	color: #000000;
	display: inline-flex;
	flex-direction: column;
	flex-wrap: wrap;
	font-size: 1rem;
	font-weight: 500;
	height: inherit;
	justify-content: center;
	line-height: 1.4375;
	white-space: nowrap;
	width: inherit;
	word-break: keep-all;
}

.header__pc-nav-item.-contact {
	margin-right: 0;
}

.header__pc-nav-item.-contact a {
	grid-gap: 0.9375rem;
	background-color: #3A46C9;
	border-radius: 62.4375rem;
	color: #ffffff;
	display: grid;
	gap: 0.9375rem;
	grid-template-columns: auto 1fr;
	height: auto;
	padding: 0.8125rem 1.75rem 0.9375rem 1.4375rem;
}

.header__hamburger {
	display: none;
}

.header__drawer {
	display: none;
}

.header__hamburger {
	display: none;
}

}

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

html {
	font-size: clamp(14px, 14px + (2) * (100vw - 1440px) / (480), 16px);
}

}

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

.company-greeting__inner {
	grid-template-columns: 21.875rem 78.125rem;
}

.company-overview__inner {
	grid-template-columns: 21.875rem 78.125rem;
}

.company-history__inner {
	grid-template-columns: 21.875rem 78.125rem;
}

.company-financial__inner {
	grid-template-columns: 21.875rem 78.125rem;
}

}

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

html {
	font-size: 16px;
}

.csr-contribution__inner,
.csr-safety__inner,
.csr-quality__inner,
.csr-environment__inner,
.csr-health__inner,
.csr-action-plan__inner {
	margin-left: 2.8125rem;
	margin-right: auto;
}

}

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

.modal__content {
	width: 90%;
}

.page-info__page-top {
	margin-left: auto;
}

.sidebar {
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 199;
}

.sidebar.is-fixed {
	left: 1.25rem;
	position: fixed;
	top: 4.125rem;
	width: calc(100% - 2.5rem);
}

.sidebar.is-fixed .sidebar__nav {
	max-height: calc(84dvh - 4.125rem);
	max-height: calc(84dvh - 4.125rem);
}

.sidebar__details {
	background-color: #ffffff;
	border: 1px solid currentColor;
	padding: 1.125rem 1.25rem;
}

.sidebar__details[open] .sidebar__summary::before {
	rotate: 0deg;
}

.sidebar__details[open] .sidebar__summary::after {
	opacity: 0;
	rotate: 90deg;
}

.sidebar__answer {
	padding-top: 1.5rem;
}

.sidebar__nav {
	max-height: calc(48vh - 4.125rem);
	max-height: calc(48dvh - 4.125rem);
	overflow-y: auto;
	transition: 0.3s;
}

.company-overview__locations {
	grid-gap: 1rem;
	display: grid;
	gap: 1rem;
}

.csr__container {
	padding-top: 5.625rem;
	position: relative;
}

.csr-contribution__sec-heading,
.csr-safety__sec-heading,
.csr-quality__sec-heading,
.csr-environment__sec-heading,
.csr-health__sec-heading,
.csr-action-plan__sec-heading {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.csr-environment__scroll-box {
	-webkit-overflow-scrolling: touch;
	margin-right: calc(50% - 50vw);
	overflow-x: auto;
	padding-right: 1.25rem;
}

.csr-environment__table {
	min-width: 45rem;
}

.service__container {
	position: relative;
}

.service__sidebar {
	top: 4.25rem;
}

.service__text {
	margin-bottom: 5.625rem;
	order: -1;
}

.service-technology__sec-heading,
.service-method__sec-heading {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.service-technology__item-img,
.service-method__item-img {
	margin-bottom: 0.75rem;
	order: 1;
}

.service-technology__item-info {
	order: 2;
}

.works-heisei__item-contents {
	-webkit-overflow-scrolling: touch;
	margin-right: calc(50% - 50vw);
	overflow-x: auto;
	padding-right: 1.25rem;
}

.works-heisei__table {
	min-width: 37.5rem;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}

@media screen and (max-height: 418px) {

.header__sp-nav-item a {
	padding: 0.21875rem 1.25rem;
}

}

@keyframes slideInFromBottom {

to {
	opacity: 1;
	transform: translateY(0);
}

}

@keyframes byeShutter {

70% {
	opacity: 1;
}

100% {
	display: none;
	opacity: 0;
	z-index: -1;
}

}

@keyframes shutterOpen {

0% {
	height: 1px;
	width: 0;
}

50% {
	height: 1px;
	width: 100%;
}

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

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

}


/*# sourceMappingURL=page-style.css.map */
