/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/

/* Box sizing rules */

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

/* Remove default margin */

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */

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

/* Set core root defaults */

html:focus-within {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body {
	line-height: 1.5;
	min-height: 100vh;
	text-rendering: optimizeSpeed;
}

/* 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,
picture {
	display: block;
	max-width: 100%;
}

/* Inherit fonts for inputs and buttons */

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

/* Remove all animations and transitions for people that prefer not to see them */

/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/

/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/

/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	background: #eee;
	color: #252525;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
}

body.no-scroll {
	overflow: hidden;
}

/* Skip Link */
.skip-link {
	background: #1869A6;
	border-radius: 0 0 0.25rem 0.25rem;
	color: #fff;
	font-weight: 700;
	left: -9999px;
	padding: 0.75rem 1.5rem;
	position: absolute;
	top: 0;
	transform: none;
	transition: transform 0.3s ease-out;
	z-index: 9999;
}

.skip-link:focus,
.skip-link:focus-visible {
	left: 50%;
	position: fixed;
	transform: translateX(-50%);
}

/* Visually Hidden (for screen readers) */
.visually-hidden {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

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

a:focus-visible,
button:focus-visible {
	outline: 2px solid #1869A6;
	outline-offset: 2px;
}

button {
	all: unset;
}

.pc {
	display: block;
}

.sp {
	display: none;
}

.l-inner {
	margin-inline: auto;
	max-width: 67.5rem;
	padding: 0 2.5rem;
}

.l-header {
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 900;
}

.service {
	padding-top: 10rem;
}

.news {
	padding-top: 10rem;
}

.message {
	padding-top: 10rem;
}

.about {
	padding-top: 10rem;
}

.contact {
	padding-top: 10rem;
}

/* Stagger Animation横スクロール対策 - js-staggerを含むセクション */
.service,
.message,
.news,
.about,
.contact {
	overflow-x: clip;
}

.home .footer {
	margin-top: 10rem;
}

.section__head {
	margin-bottom: 2.5rem;
}

.message__container {
	display: flex;
	justify-content: space-between;
	-moz-column-gap: 2.5rem;
	column-gap: 2.5rem;
	position: relative;
}

.message__list {
	flex-grow: 1;
}

.section__title {
	color: #252525;
	font-family: "Lato", sans-serif;
	font-size: 1.5rem;
	font-weight: 900;
	height: initial;
	position: relative;
}

.section__title::before {
	background-image: url(../img/icon_star.png);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 1.25rem;
	margin-right: 1rem;
	width: 1.25rem;
}

.service__lead {
	font-size: 2rem;
	font-weight: 400;
	letter-spacing: 0.02em;
	margin-top: 1.5rem;
}

.button {
	align-items: center;
	display: flex;
	-moz-column-gap: 1rem;
	column-gap: 1rem;
	overflow: hidden;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
}

.button__text {
	color: #1869A6;
	font-size: 1.25rem;
	position: relative;
}

.button__text::before {
	background: #1869A6;
	bottom: 0;
	content: "";
	height: 0.0625rem;
	left: 0;
	position: absolute;
	transform: scale(0);
	transform-origin: right;
	transition: transform 0.3s ease-out;
	width: 100%;
}

.button:hover .button__text::before {
	transform: scale(1);
	transform-origin: left;
}

.button__icon {
	align-items: center;
	background: #1869A6;
	border-radius: 2.8125rem;
	display: flex;
	justify-content: center;
	padding: 0.5rem 1.5rem;
	transition: all 0.3s ease-out;
	width: 4rem;
}

.button:hover .button__icon {
	padding: 0.5rem 1rem 0.5rem 2rem;
}

.button__icon img {
	height: 1rem;
	width: 1rem;
}

.header {
	background: rgba(238, 238, 238, 0.5);
	height: 5rem;
	-webkit-backdrop-filter: blur(4px) brightness(1);
	backdrop-filter: blur(4px) brightness(1);
}

.header__inner {
	display: flex;
	height: inherit;
	justify-content: space-between;
	margin-inline: auto;
	max-width: 90rem;
	padding: 0 3rem;
}

.header__logo {
	height: inherit;
	max-width: 13.9375rem;
	width: 100%;
}

.header__logo a {
	align-items: center;
	display: flex;
	height: inherit;
}

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

.header__nav {
	height: inherit;
}

.header__nav-list {
	display: flex;
	height: inherit;
}

.header__nav-item {
	height: inherit;
}

.header__nav-item.header__nav-item--contact {
	align-items: center;
	display: flex;
	margin-left: 1.5rem;
}

.header__nav-item a {
	align-items: center;
	color: #252525;
	display: flex;
	font-family: "Lato", sans-serif;
	font-size: 1.25rem;
	font-weight: 400;
	height: inherit;
	line-height: 1;
	overflow: hidden;
	padding: 0 1rem;
	position: relative;
}

.header__nav-item a::before {
	background: #252525;
	bottom: 1em;
	content: "";
	height: 0.0625rem;
	left: 0;
	position: absolute;
	transform: scale(0);
	transform-origin: right;
	transition: transform 0.3s ease-out;
	width: 100%;
}

.header__nav-item:not(.header__nav-item--contact) a:hover {
	color: #1869A6;
}

.header__nav-item:not(.header__nav-item--contact) a:hover::before {
	background: #1869A6;
}

.header__nav-item:not(.header__nav-item--contact) a:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}

.header__nav-item.header__nav-item--contact a {
	background-color: #252525;
	border: 1px solid #252525;
	border-radius: 2.8125rem;
	color: #fff;
	height: initial;
	padding: 0.90625rem 1.78125rem;
	position: relative;
	transition: background-color 0.3s ease-out, color 0.3s ease-out, border-color 0.3s ease-out;
}

.header__nav-item.header__nav-item--contact a::after {
	background-image: url(../img/icon_star.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 1.1875rem;
	margin-left: 0.625rem;
	transform: rotateZ(0deg);
	transition: transform 0.3s ease-out;
	width: 1.1875rem;
}

.footer {
	background-color: #323A61;
	padding: 1.5rem 3rem 3rem;
}

.footer__inner {
	margin: auto;
	max-width: 90rem;
	padding: 0 0.9375rem;
	width: 100%;
}

.footer__wrap {
	display: flex;
}

.footer__logo {
	margin-right: 1.5rem;
	max-width: 9.25rem;
	width: 100%;
}

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

.footer__nav-items {
	align-items: center;
	display: flex;
}

.footer__nav-item.footer__nav-item--contact {
	align-items: center;
	display: flex;
	margin-left: 1.5rem;
}

.footer__nav-item a {
	align-items: center;
	color: #fff;
	display: flex;
	font-family: "Lato", sans-serif;
	font-size: 1.25rem;
	font-weight: 400;
	height: inherit;
	line-height: 1;
	padding: 0.75rem 1rem;
	position: relative;
	transition: opacity 0.3s ease-out;
	width: -moz-fit-content;
	width: fit-content;
}

.footer__nav-item:not(.footer__nav-item--contact) a:hover {
	opacity: 0.7;
}

.footer__nav-item.footer__nav-item--contact a {
	background-color: #252525;
	border: 1px solid #252525;
	border-radius: 2.8125rem;
	color: #fff;
	height: initial;
	padding: 0.84375rem 1.78125rem 0.96875rem;
	position: relative;
	transition: background-color 0.3s ease-out, color 0.3s ease-out, border-color 0.3s ease-out;
}

.footer__nav-item.footer__nav-item--contact a::after {
	background-image: url(../img/icon_star.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 1.1875rem;
	margin-left: 0.625rem;
	transition: transform 0.3s ease-out;
	width: 1.1875rem;
}

.footer__bottom-wrap {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-top: 2.625rem;
}

.footer__copyright {
	color: #fff;
	display: block;
	font-family: "Lato", sans-serif;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1;
}

.footer__privacy {
	color: #fff;
	display: block;
	font-size: 0.875rem;
	font-weight: 400;
	transition: opacity 0.3s ease-out;
}

.footer__privacy:hover {
	opacity: 0.7;
}

.fv {
	margin-top: 5rem;
	width: 100%;
}

.fv__inner {
	margin-inline: auto;
	max-width: 90rem;
	min-height: 41.25rem;
	position: relative;
}

.fv__img {
	content: "";
	left: 50%;
	max-width: 32.5rem;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

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

.fv__bg {
	content: "";
	max-width: 16.875rem;
	opacity: 0.3;
	position: fixed;
	right: -1.125rem;
	top: 30.5rem;
	width: 100%;
	z-index: -1;
}

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

.service-list__item {
	align-items: center;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 1rem;
	display: flex;
	justify-content: space-between;
	padding: 2.5rem;
}

.service-list__item:nth-of-type(odd) {
	flex-direction: row-reverse;
}

.service-list__item + .service-list__item {
	margin-top: 1.5rem;
}

.service-list__item-img {
	background: #fff;
	max-width: 23.125rem;
	width: 100%;
}

.service-list__item-img img {
	aspect-ratio: 370/247;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.service-list__content {
	display: flex;
	flex-direction: column;
	row-gap: 1rem;
}

.service-list__title {
	color: #1869A6;
	font-size: 1.5rem;
	font-weight: 400;
}

.service-list__content p {
	color: #111;
	font-size: 1.125rem;
}

.service-list__content ul li:not(:first-of-type) {
	margin-top: 0.25rem;
}

.service-list__content ul li {
	color: #252525;
	font-size: 1rem;
	padding-left: 1.125rem;
	position: relative;
}

.service-list__content ul li::before {
	background-color: #1869A6;
	border-radius: 0.125rem;
	content: "";
	height: 0.375rem;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 0.375rem;
}

.service-list__button {
	align-items: center;
	background: #1869A6;
	border: 1px solid transparent;
	border-radius: 999px;
	color: #fff;
	column-gap: 0.625rem;
	display: inline-flex;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1;
	padding: 1rem 1.5rem 1rem 2rem;
	position: relative;
	transition: background 0.3s ease-out, color 0.3s ease-out, transform 0.3s ease-out, box-shadow 0.3s ease-out;
	width: -moz-fit-content;
	width: fit-content;
}

.service-list__button:hover {
	background: #fff;
	border-color: #1869A6;
	box-shadow: 0 0.75rem 1.5rem rgba(50, 58, 97, 0.35);
	color: #1869A6;
	transform: translateY(-0.1875rem);
}

.service-list__button img {
	height: 1.25rem;
	width: 1.25rem;
}

.service-list__button:hover img {
	filter: brightness(0) saturate(100%) invert(29%) sepia(93%) saturate(1042%) hue-rotate(186deg) brightness(92%) contrast(92%);
}


.service__button {
	margin-top: 2.5rem;
}

.service__button .button {
	margin-inline: auto;
}

.news__list {
}

.news__item {
	border-bottom: 1px solid #C2C2C2;
}

.news__item:last-child {
	border-bottom: 1px solid #C2C2C2;
}

.news__item a {
	align-items: center;
	display: flex;
	padding: 1.5rem 0.75rem 1.875rem;
	transition: background 0.3s ease-out;
}

.news__item a:hover {
	background: rgba(24, 105, 166, 0.05);
}

.news__item a:hover .news__title {
	color: #1869A6;
}

.news__date {
	color: #676D78;
	font-family: "Lato", sans-serif;
	font-size: 0.875rem;
	font-weight: 400;
	flex-shrink: 0;
	margin-right: 0.75rem;
	width: 5rem;
}

.news__category {
	align-items: center;
	background: #1869A6;
	border-radius: 0.125rem;
	color: #fff;
	display: inline-flex;
	flex-shrink: 0;
	font-size: 0.6875rem;
	font-weight: 500;
	height: 1.25rem;
	justify-content: center;
	margin-right: 1rem;
	min-width: 5.625rem;
	padding: 0 0.375rem;
}

.news__title {
	color: #252525;
	flex: 1;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	min-width: 0;
	overflow: hidden;
	position: relative;
	transition: color 0.3s ease-out;
}

.news__title-text {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	position: relative;
}


.news__button {
	display: flex;
	justify-content: flex-end;
	margin-top: 1.5rem;
}

.news__button .button__text {
	font-size: 1rem;
	font-weight: 400;
}

.message-list__item {
	background: rgba(255, 255, 255, 0.9);
	border-radius: 1rem;
	padding: 2.5rem;
	scroll-margin-top: 4rem;
}

.message-list__item span {
	color: #eee;
	display: flex;
	font-family: "Lato", sans-serif;
	font-size: 2.5rem;
	font-weight: 900;
	justify-content: end;
}

.message-list__item + .message-list__item {
	margin-top: 1.5rem;
}

.message-list__wrap {
	display: flex;
	flex-direction: column;
	row-gap: 1rem;
}

.message-list__wrap h4 {
	color: #252525;
	font-size: 2rem;
	letter-spacing: 0.02em;
	line-height: 1.7;
}

.message-list__item p {
	color: #252525;
	font-size: 1rem;
	line-height: 1.7;
}

.mission__button .button .button__text {
	color: #1869A6;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.7;
}

.mission__button .button .button__text span {
	color: #1869A6;
	font-family: "Lato", sans-serif;
	font-size: 1.25rem;
	font-weight: 400;
}

.message__menu {
	align-self: flex-start;
	left: 0;
	position: sticky;
	top: 45%;
	z-index: 1;
}

.message__menu li {
	color: #666;
	font-family: "Lato", sans-serif;
	font-size: 1rem;
	transition: all 0.3s ease-out;
}

.message__menu li a {
	color: inherit;
	text-decoration: none;
	position: relative;
}

.message__menu li a::before {
	background: currentColor;
	bottom: -0.2em;
	content: "";
	height: 0.0625rem;
	left: 0;
	position: absolute;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.3s ease-out;
	width: 100%;
}

.message__menu li.active a {
	color: #1869A6;
}

.message__menu li.active a::before {
	transform: scaleX(1);
	transform-origin: left;
}

.message__menu li:hover a {
	color: #1869A6;
}

.message__menu li:hover a::before {
	transform: scaleX(1);
	transform-origin: left;
}

.company-info {
	margin-inline: auto;
	max-width: 30rem;
	width: 100%;
	line-height: 1.7;
}

.company-info dl {
	margin: 0;
}

.company-info .info-row {
	border-bottom: 1px solid #dadada;
	display: flex;
	flex-wrap: wrap;
	padding: 0 1.5rem 1.5rem;
}

.company-info .info-row:not(:first-of-type) {
	padding-top: 1.5rem;
}

.company-info .info-row:last-of-type {
	border-top: none;
}

.company-info dt {
	color: #252525;
	flex: 0 0 38.7%; /* 左側の項目名の幅 */
}

.company-info dd {
	flex: 1; /* 右側の内容部分を伸ばす */
	margin: 0;
	padding: 0;
}

.company-info dd p {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
}

.company-info dd p:not(:first-of-type) {
	margin-top: 1rem;
}

.company-info dd ul li {
	padding-left: 0.875rem;
	position: relative;
}

.company-info dd ul li::before {
	background: #252525;
	content: "";
	height: 0.0625rem;
	left: 0;
	position: absolute;
	top: 50%;
	width: 0.375rem;
}

/* 役員リストは事業内容の装飾を無効化して整列 */
.company-info .officers-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.company-info .officers-list li {
	display: flex;
	gap: 1.5rem;
	padding-left: 0;
}

.company-info .officers-list li + li {
	margin-top: 0.5rem;
}

.company-info .officers-list li::before {
	content: none;
}

.company-info .officer-role {
	min-width: 5em;
}

.contact-form {
	margin-inline: auto;
	max-width: 73.1%;
}

.contact-form .form-group {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.form-group + .form-group {
	margin-top: 1.5rem;
}

.form-group.textarea-title {
	align-items: start;
}

.contact-form .form-group:not(.checkbox-group) {
	padding-right: 2.8125rem;
}

.contact-form label {
	display: block;
	font-size: 1rem;
	line-height: 1.7;
}

.contact-form label span:not(.check-label-span):not(.smf-checkbox-control__label):not([class*="smf-"]) {
	margin-right: 0.75rem;
	padding: 0.1875rem 0.5625rem;
}

.contact-form .required {
	background: #ff4000;
	color: #fff;
	font-size: 0.75rem;
}

.contact-form .optional {
	background: #1869A6;
	color: #fff;
	font-size: 0.75rem;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form textarea {
	border: 1px solid #fff;
	border-radius: 4px;
	box-sizing: border-box;
	font-size: 1em;
	max-width: 30rem;
	padding: 0.5rem;
	width: 100%;
}

.contact-form textarea {
	resize: vertical;
}

.contact-form .button {
	border: none;
	cursor: pointer;
	display: flex;
}


.contact-form .form-group.submit-button {
	align-items: center;
	justify-content: center;
	padding: 0;
}

.loading {
	align-items: center;
	background: #f7f7f7;
	clip-path: circle(100% at 50% 50%);
	display: flex;
	height: 100%;
	justify-content: center;
	left: 0;
	overflow: hidden;
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	z-index: 9999;
}

.loading.is-closing {
	animation: circleClose 0.8s ease-in forwards;
}

@keyframes circleClose {
	0% {
		clip-path: circle(100% at 50% 50%);
	}
	100% {
		clip-path: circle(0% at 50% 50%);
	}
}

.loading-img {
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 7.625rem;
	-o-object-fit: cover;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.4s ease-out;
	z-index: 1;
}

.loading-img img {
	margin-inline: auto;
	width: 100%;
	height: 100%;
}

.loading-img.-loading_title {
	transform: translate(-50%, -50%) scale(0.9);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
	width: 32.5rem;
}

.loading-img.active {
	opacity: 1;
	z-index: 2;
}

.loading-img.-loading_title.active {
	transform: translate(-50%, -50%) scale(1);
}

.js-fadeIn {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.js-fadeIn.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Stagger Animation (右から左へ) */
.js-stagger {
	opacity: 0;
	transform: translateX(40px);
	transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.js-stagger.is-visible {
	opacity: 1;
	transform: translateX(0);
}

.js-stagger-delay-1 { transition-delay: 0.1s; }
.js-stagger-delay-2 { transition-delay: 0.2s; }
.js-stagger-delay-3 { transition-delay: 0.3s; }
.js-stagger-delay-4 { transition-delay: 0.4s; }
.js-stagger-delay-5 { transition-delay: 0.5s; }
.js-stagger-delay-6 { transition-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {

html:focus-within {
	scroll-behavior: auto;
}

*,
*::before,
*::after {
	animation-duration: 0.01ms !important;
	animation-iteration-count: 1 !important;
	scroll-behavior: auto !important;
	transition-duration: 0.01ms !important;
}

}

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

.header__nav-item.header__nav-item--contact a:hover {
	background: #fff;
	color: #252525;
}

.header__nav-item.header__nav-item--contact a:hover::after {
	transform: rotateZ(360deg);
}

.footer__nav-item.footer__nav-item--contact a:hover {
	background: #fff;
	border: 1px solid #323A61;
	color: #323A61;
}

.footer__nav-item.footer__nav-item--contact a:hover::after {
	transform: rotateZ(360deg);
}

}

@media (max-width: 1080px) {

html {
	font-size: 1.4814814815vw;
}

}

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

html {
	font-size: 16px;
}

.pc {
	display: none;
}

.sp {
	display: block;
}

.l-inner {
	padding: 0;
	width: 90%;
}

.l-header {
	top: 0.5625rem;
}

.service {
	padding-top: 2.5rem;
}

.news {
	padding-top: 2.5rem;
}

.news__list {
	padding: 0;
}

.news__item a {
	flex-wrap: wrap;
	gap: 0.5rem;
	padding: 0.75rem 0.75rem 0.9375rem;
}

.news__date {
	margin-right: 0;
	width: auto;
}

.news__category {
	font-size: 0.75rem;
	height: auto;
	margin-right: 0;
	padding: 0.125rem 0.5rem;
}

.news__title {
	flex: none;
	font-size: 1.125rem;
	width: 100%;
	white-space: normal;
}

.message {
	padding-top: 2.5rem;
}

.about {
	padding-top: 2.5rem;
}

.contact {
	padding-top: 2.5rem;
}

.home .footer {
	margin-top: 5rem;
}

.message__container {
	-moz-column-gap: 0.625rem;
	column-gap: 0.625rem;
}

.service__lead {
	font-size: 1.25rem;
}

.button__text {
	font-size: 1.125rem;
}

.header {
	height: 2.125rem;
}

.header__inner {
	padding: 0 0.9375rem;
}

.header__logo {
	margin-left: 0.625rem;
	max-width: 7.8125rem;
}

.header__nav-item.header__nav-item--contact {
	margin-left: 0;
}

.header__nav-item:not(.header__nav-item--contact) {
	display: none;
}

.header__nav-item.header__nav-item--contact a {
	font-size: 1rem;
	height: inherit;
	padding: 0.625rem 1.1875rem 0.75rem;
}

.header__nav-item.header__nav-item--contact a::after {
	height: 1rem;
	margin-left: 0.5rem;
	width: 1rem;
}

.footer {
	padding: 1.875rem 0 1.25rem;
}

.footer__inner {
	padding: 0;
	width: 90%;
}

.footer__wrap {
	flex-direction: column;
}

.footer__logo {
	margin-right: 0;
}

.footer__nav-items {
	display: block;
}

.footer__nav-item.footer__nav-item--contact {
	margin-left: 0;
	margin-top: 0.5rem;
}

.footer__nav-item a {
	font-size: 1.125rem;
	padding: 0.625rem 0.875rem;
}

.footer__nav-item.footer__nav-item--contact a {
	padding: 0.375rem 1.125rem;
}

.footer__nav-item.footer__nav-item--contact a::after {
	height: 0.9375rem;
	width: 0.9375rem;
}

.footer__bottom-wrap {
	flex-direction: column;
	margin-top: 2.0625rem;
}

.footer__copyright {
	font-size: 0.6875rem;
	margin-top: 1em;
}

.footer__privacy {
	font-size: 0.6875rem;
}

.fv {
	margin-top: 2.6875rem;
}

.fv__inner {
	min-height: 33rem;
}

.fv__img {
	padding: 0 2.1875rem;
}

.fv__bg {
	max-width: 8.875rem;
	top: 35.4375rem;
	right: 0;
}

.service-list__item {
	flex-direction: column;
	padding: 1.875rem;
}

.service-list__item:nth-of-type(odd) {
	flex-direction: column;
}

.service-list__title {
	font-size: 1.25rem;
}

.service-list__content {
	margin-inline: auto;
	max-width: 21.25rem;
}

.service-list__content p {
	font-size: 1rem;
}

.service-list__content ul li {
	font-size: 0.875rem;
	padding-left: 0.75rem;
}

.service-list__content ul li::before {
	height: 0.25rem;
	top: 0.5625rem;
	transform: none;
	width: 0.25rem;
}

.service-list__button {
	align-self: center;
	font-size: 1.125rem;
}

.service-list__button img {
	height: 1.125rem;
	width: 1.125rem;
}

.message-list__item {
	padding: 1.25rem;
	scroll-margin-top: 1rem;
}

.message-list__item span {
	font-size: 1.5rem;
}

.message-list__wrap h4 {
	font-size: 1.25rem;
	line-height: 1.5;
}

.message-list__item p {
	font-size: 0.875rem;
}

.mission__button .button .button__text {
	font-size: 1.125rem;
}

.mission__button .button .button__text span {
	font-size: 1.125rem;
}

.message__menu li {
	font-size: 0.875rem;
}

.company-info {
	max-width: 100%;
}

.company-info .info-row {
	flex-direction: column;
	padding: 0 1.5rem 0.75rem;
	row-gap: 0.5rem;
}

.company-info dd {
	font-size: 1.125rem;
}

.company-info dd p {
	font-size: 1.125rem;
}

.contact-form {
	max-width: 100%;
}

.contact-form .form-group {
	align-items: start;
	flex-direction: column;
	row-gap: 1em;
}

.contact-form .form-group:not(.checkbox-group) {
	padding-right: 0;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form textarea {
	max-width: 100%;
}

.check-label-span::before {
	top: 0.375rem;
	transform: translateY(0);
}

.check-box:checked + .check-label-span::after {
	top: 0.5625rem;
	transform: rotate(45deg);
}

.loading-img.-loading_title {
	padding: 0 2.1875rem;
	width: 100%;
}

.contact-form .smf-item {
	flex-direction: column;
	row-gap: 0.5rem;
}

.contact-form .smf-item__col--label,
.contact-form .smf-item__col--controls {
	max-width: 100%;
	width: 100%;
}

.contact-form .smf-form--simple-table .smf-item__col--label {
	flex: none;
	max-width: 100%;
	padding-bottom: 0;
	padding-right: 0;
}

.contact-form .smf-form--simple-table .smf-item__col {
	flex: none;
}

.contact-form .smf-form .smf-text-control__control,
.contact-form .smf-form .smf-email-control__control,
.contact-form .smf-form .smf-tel-control__control,
.contact-form .smf-form .smf-textarea-control__control {
	max-width: 100%;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}

/* ============================================
 * Snow Monkey Forms カスタムスタイル
 * ============================================ */

/* フォーム全体のカラー設定 */
.contact-form .smf-form {
	--_form-control-border-color-focus: #1869A6;
	--_form-control-border-color-hover: #1869A6;
}

/* エラー時のボーダー色 */
.contact-form .smf-text-control__control[data-invalid="1"],
.contact-form .smf-email-control__control[data-invalid="1"],
.contact-form .smf-tel-control__control[data-invalid="1"],
.contact-form .smf-textarea-control__control[data-invalid="1"],
.contact-form .smf-checkbox-control__control[data-invalid="1"] {
	border-color: #ff4000;
}

/* チェックボックスのチェック時 */
.contact-form .smf-checkbox-control__control:checked {
	background-color: #1869A6;
	border-color: #1869A6;
}

/* ラベル列の配置 */
.contact-form .smf-item {
	display: flex;
	align-items: flex-start;
	padding: 0;
}

/* ラベルテキストの高さを入力フォームに合わせる */
.contact-form .smf-item__label__text {
	display: flex;
	align-items: center;
	line-height: 2.5rem;
	gap: 0;
}

/* 項目間の余白（元サイトと同じ） */
.contact-form .smf-item + .smf-item {
	margin-top: 1.5rem;
}

/* エラーメッセージ */
.contact-form .smf-error-messages {
	color: #ff4000;
}

/* 確認画面: チェックボックス項目を非表示 */
.contact-form .smf-form[data-screen="confirm"] .smf-item:has(.smf-checkboxes-control),
.contact-form .smf-form[data-screen="confirm"] .smf-item:has(.smf-placeholder[data-name="checkbox"]),
.contact-form [data-screen="confirm"] .smf-placeholder[data-name="checkbox"] {
	display: none;
}

/* 確認画面: 入力テキストの行間をラベルと揃える */
.contact-form .snow-monkey-form[data-screen="confirm"] .smf-placeholder {
	line-height: 2.5rem;
}

/* 確認画面: お問い合わせ内容の行間 */
.contact-form .snow-monkey-form[data-screen="confirm"] .smf-placeholder[data-name="inquiry"] {
	line-height: 1.7;
}

/* 必須/任意ラベル */
.contact-form .smf-item__label .required,
.contact-form .smf-item__label .optional {
	all: unset;
	display: inline-block;
	margin-right: 0.75rem;
	padding: 0.0625rem 0.5625rem 0.1875rem;
	font-size: 0.75rem;
	color: #fff;
	line-height: 1;
	font-weight: 400;
	border-radius: 0;
}

.contact-form .smf-item__label .required {
	background: #ff4000;
}

.contact-form .smf-item__label .optional {
	background: #1869A6;
}

/* 入力欄・テキストエリア共通 */
.contact-form .smf-text-control__control,
.contact-form .smf-email-control__control,
.contact-form .smf-tel-control__control,
.contact-form .smf-textarea-control__control {
	border: 1px solid #fff;
	border-radius: 4px;
	box-sizing: border-box;
	font-size: 1em;
	max-width: 30rem;
	padding: 0.5rem;
	width: 100%;
	box-shadow: none;
	background-color: #fff;
	transition: border-color 0.3s ease-out;
}

@media screen and (max-width: 767px) {
	.contact-form .smf-text-control__control,
	.contact-form .smf-email-control__control,
	.contact-form .smf-tel-control__control,
	.contact-form .smf-textarea-control__control {
		max-width: 100%;
	}
}

/* ホバー時（エラー時を除く） */
.contact-form .smf-text-control__control:not([data-invalid="1"]):hover,
.contact-form .smf-email-control__control:not([data-invalid="1"]):hover,
.contact-form .smf-tel-control__control:not([data-invalid="1"]):hover,
.contact-form .smf-textarea-control__control:not([data-invalid="1"]):hover {
	border-color: #1869A6;
}

/* フォーカス時（エラー時を除く） */
.contact-form .smf-text-control__control:not([data-invalid="1"]):focus,
.contact-form .smf-email-control__control:not([data-invalid="1"]):focus,
.contact-form .smf-tel-control__control:not([data-invalid="1"]):focus,
.contact-form .smf-textarea-control__control:not([data-invalid="1"]):focus {
	border-color: #1869A6;
	outline: none;
}

/* フォーカス時（エラー時） */
.contact-form .smf-text-control__control[data-invalid="1"]:focus,
.contact-form .smf-email-control__control[data-invalid="1"]:focus,
.contact-form .smf-tel-control__control[data-invalid="1"]:focus,
.contact-form .smf-textarea-control__control[data-invalid="1"]:focus {
	outline: none;
}

/* チェックボックス: 1カラム表示 */
.contact-form .smf-checkboxes-control__control > .smf-label {
	display: block;
	width: 100%;
}

/* チェックボックス項目: 空ラベル非表示＆フル幅 */
.contact-form .smf-item:has(.smf-checkboxes-control) {
	display: block;
}

.contact-form .smf-item:has(.smf-checkboxes-control) .smf-item__col--label {
	display: none;
	height: 0;
	padding: 0;
	margin: 0;
}

.contact-form .smf-item:has(.smf-checkboxes-control) .smf-item__col--controls {
	width: 100%;
	max-width: 100%;
}

/* チェックボックス: SMFデフォルト + カラーカスタマイズ */
.contact-form .smf-checkbox-control__control {
	transition: border-color 0.3s ease-out;
}

.contact-form .smf-checkbox-control__control:not([data-invalid="1"]):hover {
	border-color: #1869A6;
}

.contact-form .smf-checkbox-control__control:checked {
	background-color: #fff;
	border-color: #1869A6;
}

.contact-form .smf-checkbox-control__control::before {
	border-color: #1869A6;
	border-style: solid;
	border-width: 0 2px 2px 0;
	height: 8px;
	left: calc(50% - 3px);
	top: calc(50% - 5px);
	transform: rotate(45deg);
	visibility: hidden;
	width: 6px;
}

.contact-form .smf-checkbox-control__control:checked::before {
	content: "";
	display: block;
	position: absolute;
	visibility: visible;
}

.contact-form .smf-checkbox-control__label {
	font-size: 0.875rem;
}

.contact-form .smf-label {
	display: block;
	width: 100%;
}

/* 送信ボタン */
.contact-form .smf-action {
	display: flex;
	justify-content: center;
	margin-top: 1.5rem;
	padding: 0;
}

.contact-form .smf-button-control__control {
	align-items: center;
	display: flex;
	column-gap: 1rem;
	overflow: hidden;
	position: relative;
	width: fit-content;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	color: #1869A6;
	font-size: 1.25rem;
}

.contact-form .smf-button-control__control::before {
	content: "";
	background: #1869A6;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 0.0625rem;
	width: calc(100% - 5rem);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.3s ease-out;
}

.contact-form .smf-button-control__control:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}

.contact-form .smf-button-control__control::after {
	content: "";
	background-color: #1869A6;
	background-image: url(../img/icon_arrow-left-broken.svg);
	background-repeat: no-repeat;
	background-position: center right 1.5rem;
	background-size: 1rem 1rem;
	border-radius: 2.8125rem;
	width: 4rem;
	height: 2rem;
	display: block;
	transition: background-position 0.3s ease-out;
}

.contact-form .smf-button-control__control:hover::after {
	background-position: center right 1rem;
}

.contact-form .smf-action .smf-button-control .smf-button-control__control .smf-button-control__label {
	color: #1869A6;
	font-size: 1.25rem;
}

/* 確認画面ボタン */
.contact-form .smf-button-control__control[data-action="back"],
.contact-form .smf-button-control__control[data-action="complete"] {
	border-radius: 2.8125rem;
	font-size: 1rem;
	padding: 0.75rem 2rem;
	transition: background 0.3s ease-out, color 0.3s ease-out, border-color 0.3s ease-out;
}

.contact-form .smf-button-control__control[data-action="back"]::before,
.contact-form .smf-button-control__control[data-action="back"]::after,
.contact-form .smf-button-control__control[data-action="complete"]::before,
.contact-form .smf-button-control__control[data-action="complete"]::after {
	display: none;
}

/* 戻るボタン */
.contact-form .smf-button-control__control[data-action="back"] {
	background: #fff;
	border: 1px solid #1869A6;
	color: #1869A6;
}

.contact-form .smf-button-control__control[data-action="back"]:hover {
	background: #1869A6;
	color: #fff;
}

/* 送信ボタン */
.contact-form .smf-button-control__control[data-action="complete"] {
	background: #1869A6;
	border: 1px solid #1869A6;
	color: #fff;
}

.contact-form .smf-button-control__control[data-action="complete"]:hover {
	background: #fff;
	color: #1869A6;
}

/* フォーカス可視化（アクセシビリティ対応） */
.contact-form .smf-button-control__control:focus-visible {
	outline: 2px solid #1869A6;
	outline-offset: 2px;
	border-radius: 0;
	box-shadow: none;
}

/* 読み込みマーク非表示 */
.contact-form .smf-sending {
	display: none;
}

/* SP対応 */
@media screen and (max-width: 767px) {

.contact-form .smf-button-control__control .smf-button-control__label {
	font-size: 1.125rem;
}

.contact-form .smf-action:has([data-action="complete"]) {
	align-items: center;
	flex-direction: column;
	gap: 1rem;
}

.contact-form .smf-action .smf-button-control + .smf-button-control {
	margin-left: 0;
}

.contact-form .smf-button-control__control[data-action="back"],
.contact-form .smf-button-control__control[data-action="complete"] {
	justify-content: center;
	min-width: 15rem;
}

}

/* ============================================
 * News Archive Page
 * ============================================ */

/* 幅広インナー */
.l-inner--wide {
	margin-inline: auto;
	max-width: 80rem;
	padding: 0 2.5rem;
}

/* パンくずリスト */
.breadcrumb {
	padding-top: 7.5rem;
}

.breadcrumb__list {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
}

.breadcrumb__item {
	align-items: center;
	color: #252525;
	display: flex;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.breadcrumb__item a {
	color: #676F78;
	text-decoration: none;
	transition: opacity 0.3s ease-out;
}

.breadcrumb__item a:hover {
	opacity: 0.7;
}

.breadcrumb__item:not(:last-child)::after {
	background: #1869A6;
	border-radius: 50%;
	content: "";
	display: block;
	height: 4px;
	margin: 0 0.25rem;
	width: 4px;
}

/* ページヘッダー */
.page-header {
	overflow: hidden;
	padding: 1rem 0 3rem;
	position: relative;
}

.page-header__content {
	position: relative;
	z-index: 1;
}

.page-header__title {
	color: #252525;
	font-size: 2.5rem;
	font-weight: 700;
}

.page-header__lead {
	color: #252525;
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	margin-top: 0.25rem;
}

.page-header__bg {
	height: 12.5rem;
	opacity: 0.3;
	position: fixed;
	right: 2.5rem;
	top: 8rem;
	width: 12.5rem;
	z-index: -1;
}

.page-header__bg img {
	height: 100%;
	width: 100%;
}

/* News Archive */
.news-archive {
	background: #fff;
	padding: 3rem 8.75rem 5rem;
}

.news-archive .l-inner {
	max-width: 62.5rem;
	padding: 0;
}

/* フィルター */
.news-filter {
	align-items: center;
	display: flex;
	gap: 1.5rem;
}

.news-filter__tabs {
	display: flex;
	gap: 1px;
}

.news-filter__tab {
	text-align: center;
}

.news-filter__tab a {
	align-items: center;
	background: #E3F1FC;
	color: #1869A6;
	display: flex;
	font-size: 0.875rem;
	font-weight: 700;
	height: 3.375rem;
	justify-content: center;
	letter-spacing: 0.02em;
	text-decoration: none;
	transition: all 0.3s ease-out;
	width: 16.125rem;
}


.news-filter__tab a:hover {
	background: #1869A6;
	color: #fff;
}

.news-filter__tab.is-active a {
	background: #1869A6;
	color: #fff;
}

.news-filter__year {
	flex-shrink: 0;
}

/* カスタムセレクト */
.custom-select {
	position: relative;
	width: 12.5rem;
}

.custom-select__trigger {
	align-items: center;
	background: #fff;
	border: 1px solid #D3D6DD;
	border-radius: 0.25rem;
	box-sizing: border-box;
	cursor: pointer;
	display: flex;
	font-size: 1rem;
	font-weight: 400;
	height: 3.375rem;
	justify-content: space-between;
	letter-spacing: 0.02em;
	padding: 0 0.75rem;
	transition: border-color 0.3s ease-out;
	width: 100%;
}

.custom-select__trigger:hover,
.custom-select.is-open .custom-select__trigger {
	border-color: #1869A6;
}

.custom-select__label {
	color: #252525;
}

.custom-select__arrow {
	display: flex;
	transition: transform 0.3s ease-out;
}

.custom-select__arrow img {
	height: auto;
	width: 1.25rem;
}

.custom-select.is-open .custom-select__arrow {
	transform: rotate(180deg);
}

.custom-select__options {
	background: #fff;
	border: 1px solid #D3D6DD;
	border-radius: 0.25rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	display: none;
	left: 0;
	margin-top: 0.25rem;
	max-height: 15rem;
	min-width: 100%;
	overflow-y: auto;
	position: absolute;
	top: 100%;
	z-index: 10;
}

.custom-select.is-open .custom-select__options {
	display: block;
}

.custom-select__option a {
	color: #252525;
	display: block;
	font-size: 1rem;
	letter-spacing: 0.02em;
	padding: 0.75rem;
	text-decoration: none;
	transition: all 0.2s ease-out;
}

.custom-select__option a:hover {
	background: #E3F1FC;
	color: #1869A6;
}

.custom-select__option.is-selected a {
	background: #1869A6;
	color: #fff;
}

.news-archive__list {
	margin-top: 1.5rem;
}

.news-archive__item {
	border-bottom: 1px solid #C2C2C2;
}

.news-archive__item:first-child {
	border-top: 1px solid #C2C2C2;
}

.news-archive__item a {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	column-gap: 0.75rem;
	row-gap: 1rem;
	padding: 1.5rem 0.75rem;
	text-decoration: none;
	transition: background 0.3s ease-out;
}

.news-archive__item a:hover {
	background: rgba(24, 105, 166, 0.05);
}

.news-archive__item a:hover .news-archive__title {
	color: #1869A6;
}

.news-archive__date {
	color: #676D78;
	font-family: "Lato", sans-serif;
	font-size: 0.75rem;
}

.news-archive__category {
	background: #E3F1FC;
	border-radius: 0.125rem;
	color: #676D78;
	font-size: 0.6875rem;
	font-weight: 500;
	padding: 0.125rem 0.375rem;
}

.news-archive__title {
	color: #252525;
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.6;
	transition: color 0.3s ease-out;
	width: 100%;
}

.news-archive__title-text {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	position: relative;
}


.news-archive__empty {
	color: #676D78;
	padding: 2rem 0;
	text-align: center;
}

.pagination {
	margin-top: 3.5rem;
}

.pagination__list {
	align-items: center;
	display: flex;
	gap: 0.5rem;
	justify-content: center;
}

.pagination__item a,
.pagination__item span {
	align-items: center;
	border: 1px solid #D3D6DD;
	border-radius: 0.25rem;
	color: #252525;
	display: flex;
	font-size: 0.875rem;
	height: 4rem;
	justify-content: center;
	min-width: 3.5rem;
	padding: 0 0.5rem;
	text-decoration: none;
	transition: all 0.3s ease-out;
}

.pagination__item a:hover {
	background: #E3F1FC;
	border-color: #1869A6;
	color: #1869A6;
}

.pagination__item span.current {
	background: #1869A6;
	border-color: #1869A6;
	color: #fff;
}

.pagination__item .prev,
.pagination__item .next {
	background: #fff;
	min-width: 4rem;
}

.pagination__item--prev {
	margin-right: 2rem;
}

.pagination__item--next {
	margin-left: 2rem;
}

.pagination__item .prev img,
.pagination__item .next img {
	height: 1.25rem;
	width: 1.25rem;
}

.pagination__item .prev.is-disabled,
.pagination__item .next.is-disabled {
	cursor: default;
	opacity: 0.4;
}

.pagination__item .dots {
	border: none;
	color: #676D78;
	min-width: auto;
	padding: 0;
}

/* News Archive SP */
@media screen and (max-width: 767px) {

.l-inner--wide {
	padding: 0;
	width: 90%;
}

.page-header__title {
	font-size: 1.75rem;
}

.breadcrumb {
	padding-top: 0.5625rem;
}

.page-header__bg {
	height: 6.25rem;
	right: 0;
	top: 7rem;
	width: 6.25rem;
}

.news-archive__date {
	font-size: 0.875rem;
}

.news-archive__category {
	font-size: 0.75rem;
}

.news-archive__title {
	font-size: 1.125rem;
}

.news-archive__title-text {
	-webkit-line-clamp: 2;
}

.news-archive {
	padding: 2rem 0 3rem;
}

.news-archive .l-inner {
	width: 90%;
}

.news-filter {
	flex-direction: column;
	gap: 1rem;
}

.news-filter__tabs {
	width: 100%;
}

.news-filter__tab {
	flex: 1;
}

.news-filter__tab a {
	font-size: 0.75rem;
	height: 2.75rem;
	width: 100%;
}

.news-filter__year {
	width: 100%;
}

.custom-select {
	width: 100%;
}

.custom-select__trigger {
	height: 2.75rem;
	padding: 0.5rem 0.75rem;
}

.news-archive__title {
	font-size: 1.25rem;
}

.news-archive__item a {
	padding: 1rem 0.75rem;
	row-gap: 0.25rem;
}

.pagination {
	margin-top: 2rem;
}

.pagination__list {
	flex-wrap: wrap;
	gap: 0.375rem;
}

.pagination__item a,
.pagination__item span {
	font-size: 0.75rem;
	height: 2.75rem;
	min-width: 2.5rem;
}

.pagination__item .prev,
.pagination__item .next {
	min-width: 2.75rem;
}

.pagination__item--prev {
	margin-right: 1rem;
}

.pagination__item--next {
	margin-left: 1rem;
}

}

/* タブレット対応（768px〜1280px） */
@media screen and (min-width: 768px) and (max-width: 1280px) {

.news-archive {
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}

}

/* ========================================
   News Single
   ======================================== */

.main-news-single .breadcrumb {
	padding-bottom: 2.5rem;
}

.news-single {
	background: #fff;
	padding: 2.5rem 0 5rem;
}

.news-single .l-inner {
	max-width: 62.5rem;
}

.news-single__header {
	padding-bottom: 1rem;
}

.news-single__meta {
	align-items: center;
	border-bottom: 1px solid #D3D6DD;
	display: flex;
	justify-content: space-between;
	margin-bottom: 1.5rem;
	padding: 0.75rem 0;
}

.news-single__date {
	color: #252525;
	font-size: 0.875rem;
	letter-spacing: 0.04em;
}

.news-single__share {
	align-items: center;
	display: flex;
	gap: 0.75rem;
}

.news-single__share-link {
	align-items: center;
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	gap: 0.25rem;
	padding: 0;
	transition: opacity 0.3s ease-out;
}

.news-single__share-link:hover {
	opacity: 0.7;
}

.news-single__share-link img {
	height: 1.5rem;
	width: 1.5rem;
}

.news-single__share-link span {
	color: #252525;
	font-size: 0.875rem;
	font-weight: 400;
}

.news-single__title {
	color: #252525;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 0.75rem;
}

.news-single__category span {
	background: #E3F1FC;
	border-radius: 0.25rem;
	color: #676D78;
	display: inline-block;
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	padding: 0.25rem 0.75rem;
}

.news-single__body .wp-block-image {
	margin: 1rem 0;
}

.news-single__body .wp-block-image :where(figcaption) {
	color: #676D78;
	font-size: 0.875rem;
	letter-spacing: 0.04em;
	margin-bottom: 0;
	margin-top: 0.625rem;
}

.news-single__thumbnail {
	margin-bottom: 2rem;
}

.news-single__thumbnail img {
	border-radius: 0.5rem;
	height: auto;
	width: 100%;
}

.news-single__thumbnail figcaption {
	color: #676D78;
	font-size: 0.75rem;
	margin-top: 0.5rem;
}

.news-single__content {
	color: #252525;
	font-size: 1rem;
	letter-spacing: 0.04em;
	line-height: 1.8;
}

.news-single__content p {
	font-weight: 400;
	margin-bottom: 1.5rem;
}

.news-single__content h2 {
	border-bottom: 1px solid #1869A6;
	border-left: 4px solid #1869A6;
	color: #1869A6;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.4;
	margin: 3rem 0 1.5rem;
	padding: 0.25rem 0 0.75rem 1.25rem;
}

.news-single__content h3 {
	color: #252525;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.5;
	margin: 2rem 0 1rem;
}

.news-single__content ul,
.news-single__content ol {
	margin-bottom: 1.5rem;
	padding-left: 1.5rem;
}

.news-single__content li {
	margin-bottom: 0.5rem;
}

.news-single__content ul li {
	list-style-type: disc;
}

.news-single__content ol li {
	list-style-type: decimal;
}

.news-single__content strong {
	font-weight: 700;
}

.news-single__content a {
	color: #1869A6;
	text-decoration: underline;
	text-decoration-color: #1869A6;
	text-underline-offset: 0.1em;
	transition: text-decoration-color 0.3s ease-out;
}

.news-single__content a:hover {
	text-decoration-color: transparent;
}

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

.news-single__footer {
	margin-top: 4rem;
	text-align: center;
}

.news-single__back {
	border: 1px solid #D3D6DD;
	border-radius: 0.25rem;
	color: #252525;
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	padding: 1.5625rem 4.5rem;
	text-decoration: none;
	transition: all 0.3s ease-out;
}

.news-single__back:hover {
	background: #1869A6;
	border-color: #1869A6;
	color: #fff;
}

/* News Single SP */
@media screen and (max-width: 767px) {

.news-single {
	padding: 1.5rem 0 3rem;
}

.news-single .l-inner {
	width: 90%;
}

.news-single__meta {
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
}

.news-single__title {
	font-size: 1.375rem;
}

.news-single__footer {
	margin-top: 2.5rem;
}

.news-single__back {
	padding: 1rem 3rem;
}

}

/* ==========================================================================
   Page Single (固定ページ)
   ========================================================================== */
.main-page .breadcrumb {
	padding-bottom: 2.5rem;
}

.page-single {
	background: #fff;
	padding: 2.5rem 0 5rem;
}

.page-single .l-inner {
	max-width: 62.5rem;
}

.page-single__header {
	border-bottom: 1px solid #D3D6DD;
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
}

.page-single__title {
	color: #252525;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4;
}

.page-single__body {
	padding-top: 1rem;
}

.page-single__content {
	color: #252525;
	font-size: 1rem;
	letter-spacing: 0.04em;
	line-height: 1.8;
}

.page-single__content p {
	font-weight: 400;
	margin-bottom: 1.5rem;
}

.page-single__content h2 {
	border-bottom: 1px solid #1869A6;
	border-left: 4px solid #1869A6;
	color: #1869A6;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.4;
	margin: 3rem 0 1.5rem;
	padding: 0.25rem 0 0.75rem 1.25rem;
}

.page-single__content h3 {
	color: #252525;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.5;
	margin: 2rem 0 1rem;
}

.page-single__content ul,
.page-single__content ol {
	margin-bottom: 1.5rem;
	padding-left: 1.5rem;
}

.page-single__content li {
	margin-bottom: 0.5rem;
}

.page-single__content ul li {
	list-style-type: disc;
}

.page-single__content ol li {
	list-style-type: decimal;
}

.page-single__content strong {
	font-weight: 700;
}

.page-single__content a {
	color: #1869A6;
	text-decoration: underline;
	text-decoration-color: #1869A6;
	text-underline-offset: 0.1em;
	transition: text-decoration-color 0.3s ease-out;
}

.page-single__content a:hover {
	text-decoration-color: transparent;
}

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

/* Page Single SP */
@media screen and (max-width: 767px) {

.page-single {
	padding: 1.5rem 0 3rem;
}

.page-single .l-inner {
	width: 90%;
}

.page-single__title {
	font-size: 1.375rem;
}

.news__title-text {
	-webkit-line-clamp: 2;
}

}

/* Hoverアニメーションはタッチ端末で無効化 */
@media (hover: none) and (pointer: coarse) {
	.button,
	.button__text::before,
	.button__icon,
	.header__nav-item a,
	.header__nav-item a::before,
	.footer__nav-item a,
	.footer__nav-item a::after,
	.footer__privacy,
	.service-list__button,
	.service-list__button img,
	.news__item a,
	.news__title,
	.message__menu li a,
	.message__menu li a::before,
	.contact-form .smf-text-control__control,
	.contact-form .smf-email-control__control,
	.contact-form .smf-tel-control__control,
	.contact-form .smf-textarea-control__control,
	.contact-form .smf-checkbox-control__control,
	.contact-form .smf-button-control__control,
	.contact-form .smf-button-control__control::before,
	.contact-form .smf-button-control__control::after,
	.breadcrumb__item a,
	.news-filter__tab a,
	.custom-select__trigger,
	.custom-select__option a,
	.news-archive__item a,
	.news-archive__title,
	.pagination__item a,
	.news-single__share-link,
	.news-single__content a,
	.news-single__back,
	.page-single__content a::before {
		transition: none !important;
	}

	.header__nav-item.header__nav-item--contact a:hover {
		background-color: #252525;
		color: #fff;
	}

	.header__nav-item.header__nav-item--contact a:hover::after {
		transform: none;
	}

	.footer__nav-item.footer__nav-item--contact a:hover {
		background-color: #252525;
		border-color: #252525;
		color: #fff;
	}

	.footer__nav-item.footer__nav-item--contact a:hover::after {
		transform: none;
	}
}
