@charset "UTF-8";

/* リキッドレイアウト対応 */
body {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	line-height: 1.8;
}

.u-desktop {
	display: block;
}

.u-mobile {
	display: none;
}

@media screen and (max-width: 767px) {
	.u-desktop {
		display: none;
	}

	.u-mobile {
		display: block;
	}

	br.u-mobile {
		display: inline;
	}
}

html {
	font-size: 1.4545454545vw;
	scroll-padding-top: 132px;
}

@media (min-width: 1100px) {
	html {
		font-size: 16px;
	}
}

@media screen and (max-width: 767px) {
	html {
		font-size: 16px;
		scroll-padding-top: 50px;
	}
}

@media (max-width: 375px) {
	html {
		font-size: 4.2666666667vw;
	}
}

/* ページ内リンクの飛び先に対して適用される共通スタイル */
[id] {
	scroll-margin-top: 0; /* JSで動的に上書きされるので初期化 */
}

@media (max-width: 767px) {
	[id] {
		scroll-margin-top: 40px; /* JSで動的に上書きされるので初期化 */
	}
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
	a[href^='tel:'] {
		pointer-events: none;
	}
}

/* ホバー */
a {
	text-decoration: none;
	color: inherit;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
a:hover {
	opacity: 0.6;
	filter: none;
}

*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	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 */
html {
	scroll-behavior: smooth;
}

/* Set core body defaults */
body {
	min-height: 100vh;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
	overflow-x: hidden;
}

/* 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]) {
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
	max-width: 100%;
	display: block;
	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;
}


/* -------------------------

★ヘッダー

------------------------- */

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	z-index: 999;
}

.header__inner {
    margin: 0 auto 0;
    width: 96%;
    max-width: 1000px;
    max-width: 60rem;
    padding: 20px 0;
}

@media screen and (max-width: 767px) {
	.header__inner {
		width: 100%;
		padding: 20px 16px;
	}
}

.header__logo a {
	display: flex;
	align-items: center;
	width: fit-content;
}

.header__logo img {
	height: 40px;
	width: auto;
}

/* -------------------------

★FV

------------------------- */

.lp-fv__inner {
	max-width: 1000px;
	max-width: 60rem;
	width: 100%;
	margin: 0 auto;
	position: relative;
}

.lp-fv__button-wrap {
	position: absolute;
	left: 50%;
	bottom: 16px;
	transform: translateX(-50%);
	z-index: 2;
	width: 83%;
}

/* -------------------------

★LP画像セクション

------------------------- */

.lp-image-section {
	background: #fff;
}

.lp-fv picture,
.lp-fv img {
	display: block;
	width: 100%;
	height: auto;
}

.lp-image-section__inner {
	max-width: 1000px;
	max-width: 60rem;
	width: 100%;
	margin: 0 auto;
}

.lp-image-section__inner--overlap {
	position: relative;
}

.lp-image-section__inner picture,
.lp-image-section__inner img {
	display: block;
	width: 100%;
	height: auto;
}

.lp-image-section__button-wrap {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 24px;
}

.lp-image-section__button {
	position: relative;
	display: block;
	text-decoration: none;
}

.lp-image-section__button--image {
	min-width: 0;
	width: 100%;
	padding: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	font-size: 0;
	line-height: 0;
	text-decoration: none;
	display: block;
}

.lp-image-section__button--image:hover {
	opacity: 1;
	filter: brightness(1.10);
}

.lp-image-section__button-overlay {
	position: static;
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	filter: drop-shadow(4px 9px 9px rgba(0, 0, 0, 0.16));
}

.lp-image-section__button-wrap--overlap-bottom {
	position: absolute;
	left: 50%;
	bottom: 50px;
	transform: translateX(-50%);
	margin-top: 0;
	z-index: 2;
	width: 83%;
}

@media screen and (max-width: 767px) {
	.lp-image-section__button-wrap {
		margin-top: 16px;
	}

	.lp-image-section__button {
		min-width: 0;
		padding: 0;
		font-size: 0;
	}

	.lp-fv__button-wrap {
		bottom: 2%;
	}

	.lp-image-section__button-wrap--overlap-bottom {
		bottom: 1.5%;
	}
}


/* -------------------------

★セクションタイトル

------------------------- */

.section-title {
	font-size: 42px;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.05em;
	color: #000;
	line-height: 1.4;
	position: relative;
	display: flex;
	justify-content: center;
}

@media screen and (max-width: 767px) {
	.section-title {
		font-size: 24px;
	}
}


/* -------------------------

★導入事例セクション

------------------------- */

.case {
	background: #F9F9F9;
}

.case__inner {
	max-width: 1000px;
	max-width: 60rem;
	width: 100%;
	margin: 0 auto;
	padding: 60px 0;
}

@media screen and (max-width: 767px) {
	.case__inner {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}

.case__title.section-title {
	margin-bottom: 30px;
}

/* スライダー */
.case__swiper {
	margin-bottom: 30px;
	overflow: hidden; /* wrapperのはみ出しを抑える */
}

@media screen and (max-width: 767px) {
	.case__swiper {
		margin-bottom: 30px;
		overflow: hidden;
	}
}

.case__swiper .swiper-wrapper {
	padding: 0;
	margin: 0;
}

@media screen and (max-width: 767px) {
	.case__swiper .swiper-wrapper {
		padding: 0;
		margin: 0;
	}
}

.case__swiper .swiper-pagination {
	position: relative;
	margin: 20px 0 0;
	top: 0;
	bottom: 0;
}

.case__swiper .swiper-pagination-bullets .swiper-pagination-bullet {
	height: 11px;
	width: 11px;
	background: #B8B8B8;
	opacity: 1;
	margin: 0 6px;
}

.case__swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #5ECBC8;
}

.case__contents {
	padding: 20px 6.6%;
	background: #fff;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.case__contents__img img {
	border-radius: 10px;
	height: 216px;
	object-fit: cover;
}

.case__contents__logo img {
	height: 32px;
	width: auto;
	margin: 0 auto;
}

.case__contents__title {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.case__contents__title {
		font-size: 12px;
	}
}

.case__contents__text_discription {
	color: #000;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.6;
}

.case__button__wraapper {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-direction: row;
}

.case__button {
	position: relative;
	border-radius: 0.3125rem;
	width: 100%;
	max-width: 330px;
	margin: 0;
}

@media screen and (max-width: 767px) {
	.case__contents__text_discription {
		font-size: 14px;
	}

	.case__button__wraapper {
		flex-direction: column;
		gap: 10px;
	}

	.case__button {
		margin-inline: auto;
		width: 74.6%;
	}
}

.case__button a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #5ECBC8;
    text-align: center;
    padding: 13px 0;
    font-size: 24px;
    font-weight: 700;
    z-index: 10;
    border-radius: 999px;
    line-height: 1.4;
    width: 350px;
    max-width: 100%;
}

.case__button__link {
	color: #fff !important;
}

.case__button a i {
    position: absolute;
    right: 31px;
    font-size: 20px;
    line-height: 1;
}

@media screen and (max-width: 767px) {
	.case__button a {
		font-size: 18px;
	}

	.case__button a i {
		right: 10px;
		font-size: 16px;
	}
}

/* -------------------------

★導入事例一覧

------------------------- */

.case.archive {
	background: transparent;
}

.case.archive .case__wrapper {
	display: block;
}

.case__contents__wrapper {
	display: flex;
	gap: 30px 2%;
	flex-wrap: wrap;
}

.case__desc {
	color: #000;
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.05em;
	margin-bottom: 30px;
	padding: 0 6.6%;
}

@media screen and (max-width: 767px) {
	.case__desc {
		line-height: 1.8;
		margin-bottom: 10px;
	}
}

.case__wrapper {
	display: flex;
	gap: 2%;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.case__wrapper a {
	width: 32%;
}

@media screen and (max-width: 767px) {
	.case__wrapper a {
		width: 100%;
	}
}

/* -------------------------

★導入事例投稿

------------------------- */

.case_article__inner {
	max-width: 1000px;
	max-width: 60rem;
	width: 100%;
	margin: 0 auto;
	padding: 60px 0;
}

@media screen and (max-width: 767px) {
	.case_article__inner {
		padding: 39px 16px 38px;
	}
}

.case-name {
	color: #5ECBC8;
	font-family: "Open Sans";
	font-size: 16px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.1em;
	margin: 10px 0 30px;
	padding: 0 0 15px;
    border-bottom: 3px solid #5ECBC8;
}

.case-content img {
	width: 100%;
	height: auto;
}

.case-content a {
	color: #428BCA;
}

.case-content p,
.case-content table {
	margin-bottom: 30px;
	color: #000;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.05em;
}

.case-content strong {
	color: #000;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.05em;
}

.case-content h3 {
	color: #004BA4;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.8;
	letter-spacing: 0.05em;
	padding: 30px 0 10px;
	border-bottom: 1px solid #004BA4;
	margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
	.case-content p,
	.case-content table {
		font-size: 14px;
	}

	.case-content strong {
		font-size: 16px;
	}

	.case-content h3 {
		font-size: 18px;
		padding: 20px 0 10px;
	}
}

.case-content h3 {
	color: #5ECBC8;
	border-bottom: 1px solid #5ECBC8;
}

.case-content table {
	border-collapse: collapse;
	width: 100%;
}

.case-content table td {
	border: 1px solid #ccc;
	padding: 8px;
}

/* 会社情報のボックス（htmlの編集はfunctions.phpにて） */
.company__info {
	display: flex;
	background-color: #F9F9F9;
	padding: 20px 3.5%;
	margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
	.company__info {
		flex-direction: column;
	}
}

.company__info__logo {
	width: 100%;
	padding: 10px 5%;
	background-color: #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
}

.company__info__logo img {
	aspect-ratio: 1 / 1;
	object-fit: contain;
	height: 120px;
}

.company__info__details {
	width: 100%;
	padding: 15px 5%;
	background-color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
}

.company__info__details p {
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 2;
	width: 100%;
	word-break: break-all;
}

.company__info__details p.heading {
	width: 80px;
}

.company__info__details a {
	width: fit-content;
}

.company__info__details a p {
	text-decoration: underline;
	color: #004BA4;
	width: 100%;
}

.company__info__item {
	display: flex;
	gap: 6.5%;
	flex-direction: column;
}

/* -------------------------

★パンくずリストとページネーション

------------------------- */

.breadcrumb {
    display: flex;
    color: #3E3E3E;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.1em;
    gap: 1em;
    margin: 0 auto 0;
    width: 96%;
    max-width: 1000px;
    max-width: 60rem;
    align-items: center;
    padding: 0;
}

@media screen and (max-width: 767px) {
	.breadcrumb {
		width: 100%;
		padding: 0 16px;
	}
}

.breadcrumb a {
    color: #5ECBC8;
	min-width: max-content;
    display: block;
}

.breadcrumb a i {
	margin-left: 1em;
	font-size: 11px;
	color: #3E3E3E;
}

.pagination {
    display: flex;
    justify-content: center;
    margin: 60px 0 calc(100px - 3.75rem);
}

.page-numbers {
    display: flex;
    gap: 6px;
}

.page-numbers li {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.075em;
    color: #7B7B7B;
}

.pagination .page-numbers.current {
    background-color: #5ECBC8;
    color: #FFF;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

a.page-numbers {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* -------------------------

★フッター

------------------------- */

.footer {
	background-color: #fff;
	padding: 60px 0 50px;
}

@media screen and (max-width: 767px) {
	.footer {
		padding: 30px 0 25px;
	}
}

.footer__inner {
	max-width: 1000px;
    max-width: 60rem;
	width: 100%;
	margin: 0 auto;
}

@media screen and (max-width: 767px) {
	.footer__inner {
		max-width: 80vw;
	}
}

.footer__upper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-direction: row;
    align-items: center;
}

@media screen and (max-width: 767px) {
	.footer__upper {
		flex-direction: column;
		gap: 14px;
	}
}

.footer__logo {
	max-width: fit-content;
	width: 100%;
}

.footer__logo img {
    height: 51px;
	width: auto;
}

.footer__nav {
	display: flex;
	flex-direction: row !important;
	margin-top: 0;
	gap: 40px;
	padding: 0;
	list-style: none;
}

@media screen and (max-width: 767px) {
	.footer__nav {
		margin-top: 20px;
	}
}

.footer__nav li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.footer__nav li a {
    color: #333;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
	.footer__nav li a {
		font-size: 14px;
	}
}

.footer__copyright {
    color: #333;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
	.footer__copyright {
		font-size: 12px;
	}
}

