@charset "UTF-8";

/*--------------------------------------------------------------------

共通要素

--------------------------------------------------------------------*/
* {
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
}
body {
	background: #fff;
	font-family: "Noto Sans JP", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
	line-height: 1;
	margin: 0 auto;
	width: 100%;
	overflow-y: scroll;
	color: #000;
}
a {
	display: inline;
	text-decoration: underline;
	text-underline-offset: 3px;
	color: #1d71ed;
}
a:hover {
	text-decoration: none;
}
.fade {
	opacity: 1;
	transition: opacity .4s ease-in-out;
	-moz-transition: opacity .4s ease-in-out;
	-webkit-transition: opacity .4s ease-in-out;
}
.fade:hover {
	opacity: 0.5;
}
a img {
	border:　none;
}
.hide__sp {
	display: none;
}
.hide__pc {
	display: block;
}

@media screen and (max-width:767.98px) {
	.hide__pc {
		display: none;
	}
}
@media screen and (max-width:575.98px) {
	.hide__sp {
		display: block;
	}
}

/* 共通パーツ
--------------------------------- */
.inner {
	width: 90%;
	max-width: 1240px;
	margin: 0 auto;
	position: relative;
}

.section-title {
	word-break: keep-all;
	overflow-wrap: anywhere;
	text-align: center;
	letter-spacing: 3px;
	line-height: 1.5;
	font-weight: 900;
	font-size: 3.8rem;
}

.button {
	position: relative;
	top: 0;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	height: 40px;
	border-radius: 100vw;
	margin: 0 auto 30px;
	padding: 0 36px 0 30px;
	background: #fff url(../img/icon-menu-lp-arrow.svg) no-repeat center right;
	text-align: center;
	text-decoration: none;
	letter-spacing: 1px;
	font-weight: bold;
	font-size: 1.4rem;
	color: #000;
	transition: top 0.2s ease;
}
.button--shadow {
	box-shadow: 0 0 10px rgba(0,0,0,0.15);
}
.button:hover {
	position: relative;
	top: 2px;
	transition: top 0.2s ease;
}
.main-button {
	position: relative;
	top: 0;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 520px;
	height: 64px;
	border: 2px solid #fff;
	border-radius: 100vw;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	background: url(../img/icon-inquiry-arrow.svg), radial-gradient(35% 270% at 50% 50%, #ffb03a 0%, #ff8019 100%);
	background-repeat: no-repeat;
	background-position: center right;
	background-size: contain;
	letter-spacing: 1px;
	text-decoration: none;
	font-weight: 700;
	font-size: 2rem;
	color: #fff;
	transition: top 0.2s ease;
}
.main-button-attn {
	width: 116px;
	border: 4px solid #ff8019;
	border-radius: 100vw;
	background: #fff;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
	position: absolute;
	z-index: 10;
	top: -28px;
	left: -38px;
}
.main-button:hover {
	position: relative;
	top: 2px;
	transition: top 0.2s ease;
}

@media screen and (max-width:767.98px),
(992px <= width <= 1180px) {
	.section-title {
		font-size: 3.2rem;
	}
}

@media screen and (max-width:575.98px) {
	.section-title {
		font-size: 2.4rem;
	}
	.main-button {
		width: 340px;
		height: 42px;
		font-size: 1.4rem;
	}
	.main-button-attn {
		width: 80px;
		border: 3px solid #ff8019;
		top: -30px;
		left: -14px;
	}
}


/* ヘッダー
--------------------------------- */
/* ヘッダー固定 */
.global-nav {
	position: fixed;
	top: 0px;
	width: 100%;
	background-color: #fff;
	z-index: 200;
}
/* グローバルナビゲーション */
.global-nav {
	border-bottom: 1px solid #4a4a4a;
}
.global-nav__container {
	height: 64px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.global-nav__logo {
	width: 96px;
	margin-right: 30px;
}
.global-nav__inquiry {
	height: 25px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 100vw;
	padding: 0 20px;
	background-color: #2b364c;
	letter-spacing: 2px;
	text-decoration: none;
	font-weight: bold;
	font-size: 1.3rem;
	color: #fff;
}
@media screen and (max-width:991.98px) {
	.inquiry-now__container {
		padding-top: 60px;
		background: transparent url(../img/bg-inquiry-now.svg) no-repeat center 20px;
	}
}


/* パンくずリスト */
/*--------------------------------- */
.breadcrumb {
	margin-top: 64px;
	height: 30px;
	/* border-bottom: 1px solid #4a4a4a; */
	display: flex;
	justify-items: space-between;
	align-items: center;
	font-size: 1.2rem;
	color: var(--text-color-sub);
}
.breadcrumb__list {
	display: flex;
}
.breadcrumb__item + .breadcrumb__item:before {
	display: inline-block;
	padding: 0 1rem 0 1.2rem;
	content: ">";
	font-family: "ＭＳ Ｐゴシック", san-serif;
}
.breadcrumb__item a {
	text-decoration: none;
	color: var(--text-color-sub);
}
.breadcrumb__item a:hover {
	text-decoration: underline;
}

@media screen and (max-width:767.98px) {
	.breadcrumb__item + .breadcrumb__item:before {
		padding: 0 0.5rem 0 0.7rem;
	}
}

/* メインコンテンツ */
/*--------------------------------- */
/* タイトル見出し */
main {
	width: 100%;
	min-width: 1280px;
}
#main__title {
	background-image: linear-gradient(0deg, transparent calc(100% - 1px), #F3F3F3 1px),
	linear-gradient(90deg, transparent calc(100% - 1px), #F3F3F3 1px);
	background-size: 20px 20px;
	background-repeat: repeat;
	padding: 25px 0;
	border-bottom: 1px solid #4a4a4a;
}
.main__title {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px; /* ボタンと見出しの距離を調整 */
	position: relative;
	text-align: center;
    letter-spacing: 5px;
	font-size: 2rem;
	font-weight: 600;
}
.main__title span {
	color: #6ACD41;
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 2px;
}
.main__title br {
	display: block;
	content: "";
	margin: 5px 0;
}
.main__title-button {
	background-color: #6ACD41;
	color: #FFFFFF;
	border: none;
	padding: 12px 25px;
	font-size: 1.42rem;
	font-weight: bold;
	letter-spacing: 0.5px;
	border-radius: 20px;
	cursor: pointer;
	position: absolute;
	right: 2%;
	transform: translateY(-10%);
	top: 50%;
	text-decoration: none;
}
.main__title-button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -2px;
    width: 20px;
    height: 15px;
    background-image: url(../img/icon-arrow-white.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
}

@media screen and (max-width: 640px) {
	main {
		width: auto;
		min-width: initial;
	}
	.main__title {
		background-image: none;
		font-size: 1.5rem;
		display:  block;
	}
	.main__title span {
		font-size: 3rem;
		letter-spacing: 0.2px;
	}
	.main__title-button {
		position: relative;
		display: block;
		width: 80vw;
		margin: 25px auto 0 auto;
		right: 0;
		transform: none;
		top: 0
	}
}
/*--------------------------------- */
/* 業種絞り込み */
.swiper {
	padding: 2px;
}
.swiper-slide {
    width: initial;
}
.image-filter {
	display: flex;
    justify-content: flex-start;
	position: relative;
    align-items: center;
	border-bottom: solid 1px gray;
	padding-top: 20px;
	padding-bottom: 20px;
}
.image-filter__title {
    padding: 10px 20px;
    background-color: #6ACD41;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
    position: absolute;
}
.image-filter__title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 17.5px solid transparent; /* 35pxの高さを半分に分ける */
    border-bottom: 17.5px solid transparent;
	border-left: 20px solid #6ACD41;
}
.image-filter__list li {
    position: relative;
}
.image-filter__list-link {
    display: block;
    padding: 10px 27px 12px 17px;
	margin: 2px 0; /* ボタンの上下の影を出す */
    background-color: #ffffff;
    color: #333333;
    text-decoration: none;
    letter-spacing: 0.5px;
    font-size: 1.42rem;
    font-weight: bold;
    border-radius: 20px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, color 0.3s;
}
.image-filter__list-link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -2px;
    width: 20px;
    height: 15px;
    background-image: url(../img/icon-arrow-orange.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
}
.image-filter__list-link:hover {
    background-color: #000000;
    color: #ffffff;
}
/* フィルタ選択解除して全てのコンテストが表示された時、ホバーされた状態でもボタンの色を白するための設定 */
.image-filter__list-link.disable-hover:hover {
    background-color: #ffffff;
    color: #333333;
}
.image-filter__list-link:hover::after {
    background-image: url(../img/icon-arrow-orange.svg);
}
.select {
	/* 選択されたボタンのスタイル */
    background-color: #000000;
    color: #ffffff;
}
.image-filter--sticky {
  position: fixed;
  top: 64px;
  width: max(1480px, 100%);
  background-color: #fff;
  z-index: 200;
}
.image-filter--sticky + .image-filter__placeholder {
	/* stickyで固定した時に画像一覧のずれを調整するプレースホルダー */
	height: 95px;
}
.image-filter__pulldown {
	display: none;
}
@media screen and (max-width: 1480px) {
	/* スクロール対応用 */
	.swiper {
		left: 170px;
        margin-left: 0;
    }
	.image-filter--sticky .swiper {
		width: calc(100vw - 170px);
		left: 170px;
		margin-left: 0;
	}
}
@media screen and (max-width: 640px) {
	.swiper {
		display: none;
	}
	.image-filter {
		border-bottom: solid 1px #D7D7D7;
	}
	.image-filter--sticky {
		width: 100%;
	}
	.image-filter__pulldown {
		display: block;
		margin: 0 auto;
		position: relative;
	}
	.image-filter__pulldown-button {
		display: block;
		background-color: #000;
		color: white;
		padding: 13px 0;
		text-align: center;
		font-size: 1.5rem;
		font-weight: bold;
		letter-spacing: 1px;
		border: none;
		cursor: pointer;
		border-radius: 50px; /* ボタンの丸みを調整 */
		width: 90vw;
		word-break: keep-all;
	}
	.image-filter__pulldown-button::after {
		content: "";
		display: block;
		width: 36px;
		height: 16px;
		background-image: url(../img/icon-arrow-orange.svg);
		transform: rotate(30deg);
		background-repeat: no-repeat;
		background-position: right 10px center; /* 矢印の位置を調整 */
		background-size: 16px 16px; /* 矢印のサイズを調整 */
		position: absolute;
        top: 52%;
        right: 0;
		transform: translateY(-50%) rotate(90deg);
	}
	.image-filter__pulldown-content {
		display: none;
		position: absolute;
		background-color: #f9f9f9;
		min-width: 100%;
		box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
		z-index: 1;
		border-radius: 5px;
		right: 1px;
		top: 100%;
		font-weight: bold;
		font-size: 1.2rem
	}
	.image-filter__pulldown-link {
		color: black;
		padding: 12px 16px;
		text-decoration: none;
		display: flex;
		align-items: center; /* チェックマークとテキストを中央揃え */
		word-break: break-all;
		position: relative; /* チェックマーク用のスペースを確保 */
		padding-left: 30px; /* チェックマークのスペースを確保 */
	}
	.image-filter__pulldown-content .checkmark {
		display: none; /* 初期状態では非表示 */
		margin-right: 10px;
		position: absolute;
		left: 10px; /* チェックマークの位置を固定 */
		display: none; /* 初期状態では非表示 */
		margin-right: 10px;
		color: black;
	}
	.image-filter__pulldown-content a.checked .checkmark {
		display: inline; /* 選択された項目にチェックマークを表示 */
	}

	.image-filter__pulldown-content a:hover {
		background-color: #f1f1f1;
	}
	.image-filter__pulldown-content.show {
		display: block;
	}
	.select {
		/* 選択されたボタンのスタイル */
		background-color: inherit;
		color: inherit;
	}
	.image-filter__title {
		display: none;
	}
	.image-filter__list {
		display: none;
	}
}
/*--------------------------------- */
/* 画像一覧 */
#image-list {
	background-color: #F1F1F1;
}
/* 画像一覧アニメーションの定義 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fadeIn {
	opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: var(--animation-delay);
}
.image-list__wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(372px, 1fr));
    justify-content: center;
    gap: 90px 40px;
    padding: 60px 40px;
}
.image-list__item img {
    width: 100%;
    height: auto;
    display: block; /* 余分なマージンを削除 */
	border: 1px solid #DCDCDC;
}
.image-list__item a {
	text-decoration: none;
	color:#000;
}
.image-list__article-info {
	margin-top: 10px;
	display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
	letter-spacing: 0.5px;
}
.image-list__article-company {
	font-size: 1.6rem;
	margin-top: 10px;
    margin-bottom: 5px;
    padding-bottom: 10px;
    text-align: left;
    border-bottom: solid 1px;
    font-weight: bold;
}
.image-list__article-name {
    text-align: justify;
    font-size: 1.4rem;
    font-weight: bold;
	line-height: 1.5;
}
.image-list__inquiry-button {
    position: fixed;
    bottom: 0px;
    left: 50%;
	width: 100%;
	height: 100px;
    transform: translateX(-50%);
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255, 1) 100%);
    padding: 10px 20px;
	display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s ease-in-out;
}
.image-list__inquiry-button--hidden {
	/* お問い合わせボタンを隠す */
    transform: translateX(-50%) translateY(200%);
}
.image-list__inquiry-button a img {
	position: relative;
	bottom: 45px;
	object-fit: contain;
}
@media screen and (max-width: 640px) {
    .image-list__wrapper {
        grid-template-columns: repeat(1, 1fr);
		min-width: auto;
		padding: 30px 20px;
		gap: 60px;
    }
	.image-list__item article {
		width: auto;
		max-width: 600px;
	}
	.image-list__article-info {
		font-size: 1rem;
		font-weight: 100;
	}
	.image-list__article-company {
		font-size: 1.4rem;
	}
	.image-list__inquiry-button a img {
		position: relative;
		bottom: 0px;
		left: 10px;
		object-fit: contain;
		max-width: 100vw;
		}
}

/*--------------------------------- */
/* お気軽にご相談ください*/
.inquiry-now {
	padding: 0 0 36px;
	background: radial-gradient(circle, rgba(158,221,68,1) 0%, rgba(101,187,68,1) 100%);
	text-align: center;
}
.inquiry-now__title {
	margin-bottom: 32px;
	text-shadow: 4px 4px 0 #5aa83a;
	font-size: clamp(2.4rem, 1.4182rem + 2.7273vw, 3.6rem);
	color: #fff;
}
.inquiry-now__detail {
	margin-bottom: 48px;
	word-break: keep-all;
	overflow-wrap: anywhere;
	line-height: 1.5;
	text-shadow: 3px 3px 0 #5aa83a;
	font-size: 2.4rem;
	font-weight: 700;
	color: #fff;
}
.inquiry-now__inquiry {
	width: 648px;
	position: relative;
	margin: 0 auto;
	text-align: left;
}
.inquiry-now__inquiry-button {
	width: 648px;
	margin-bottom: 20px;
	box-shadow: 5px 7px 0 #5aa83a;
}
.inquiry-now__inquiry-button-note {
	word-break: keep-all;
	overflow-wrap: anywhere;
	line-height: 1.5;
	text-align: center;
	font-size: 1.4rem;
	font-weight: 700;
	color: #fff;
}

/* PC */
@media screen and (min-width:576px) {
	.inquiry-now__container {
		padding-top: 60px;
		background: transparent url(../img/bg-inquiry-now.svg) no-repeat center 20px;
	}
}

@media screen and (max-width:991.98px) {
	.inquiry-now__container {
		background: none;
	}
	.inquiry-now__detail {
		font-size: 2.0rem;
	}
	.inquiry-now__inquiry {
		width: auto;
		text-align: center;
	}
	.inquiry-now__inquiry-button {
		width: 100%;
		height: 54px;
		flex-direction: column;
		line-height: 1.2;
		font-size: 1.6rem;
	}
	.inquiry-now__inquiry-button-attn {
		top: -24px;
		left: -14px;
	}
}

@media screen and (max-width:575.98px) {
	.inquiry-now__container {
		width: 100%;
		padding: 8% 5% 0;
		background: transparent url(../img/bg-inquiry-now-sp.svg) no-repeat center 12em;
	}
	.inquiry-now__detail {
		margin-bottom: 36px;
		font-size: 1.8rem;
	}
	.inquiry-now__inquiry-button {
		width: 100%;
		height: 54px;
		flex-direction: column;
		line-height: 1.2;
	}
	.inquiry-now__inquiry-button-attn {
		top: -16px;
	}
}


/* フッター
--------------------------------- */
.footer__pagetop {
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #d9e2e1;
	color: #fff;
}
.footer__pagetop-icon {
	width: 36px;
}

.footer__container {
	position: relative;
	padding: 48px 0 24px;
}
.footer__link-list {
	display: flex;
	justify-content: center;
	gap: 48px;
	margin: 0 auto 32px;
	font-size: 1.2rem;
	letter-spacing: 1px;
}
.footer__link-list--sub {
	gap: 40px;
	margin: 0 auto 16px;
	font-size: 1.1rem;
}
.footer__link-item {
	display: inline;
}
.footer__link {
	text-decoration: none;
	color: #000;
}
.footer__copyright {
	padding-top: 10px;
	text-align: center;
	letter-spacing: 1px;
}

.footer__badge--npojop {
	position: absolute;
	top: 36px;
	right: 100px;
}
.footer__badge--pmark {
	position: absolute;
	top: 30px;
	right: 0px;
}

@media screen and (max-width:991.98px) {
	.footer__container {
		padding: 48px 0 36px;
		text-align: center;
	}
	.footer__link-list {
		justify-content: center;
		gap: 12px;
		flex-wrap: wrap;
		margin: 0 auto 32px;
	}
	.footer__link-list--sub {
		gap: 12px;
		margin: 0 auto 16px;
		font-size: 1.1rem;
	}
	.footer__link-item {
		display: block;
		width: 30%;
		text-align: center;
	}
	.footer__badge {
		display: inline-block;
		margin: 0 20px 20px;
	}
	.footer__badge--npojop {
		position: relative;
		top: 0;
		right: 0;
	}
	.footer__badge--pmark {
		position: relative;
		top: 0;
		right: 0px;
	}
}
