@charset "UTF-8";
:root {
	--color-text: #000;
	--color-dark: #3e3a39;
	--color-white: #fff;
	--color-crimson: #e73223;
	--color-cherry: #ff0015;
	--color-carmine: #e30014;
	--color-light-gray: #f2f2f2;
	--color-flamingo: #f96875;
	--font-gothic: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	--font-montserrat: "Montserrat", sans-serif;
	--color-dark-red: #BE0011;
	--color-red: #CE0012;
	--color-main-red: #E30014;
	--color-bright-red: #FF0016;
	--color-gray: #A7A7A7;
	--color-pale-gray: #F5F5F5;
}
body {
	background: var(--color-light-gray);
	color: var(--color-text);
	font-family: var(--font-gothic);
	font-size: 15px;
	line-height: 1.6;
	overflow-wrap: break-word;
	font-weight: 500;
	letter-spacing: 0;
	/* min-width: 1000px; */
}
.hiddenSvg {
	width: 0;
	height: 0;
	position: absolute;
	visibility: hidden;
	pointer-events: none;
	left: 0;
	top: 0;
}
.pageWrapper {
	display: flex;
}
.pageNav {
	height: calc(100vh - 89px);
	background-color: var(--color-crimson);
	width: 260px;
	padding-top: 32px;
	padding-bottom: 40px;
	box-sizing: border-box;
	position: fixed;
	z-index: 1;
	top: 89px;
	left: 0;
}
.pageNav_inner {
	max-width: 180px;
	height: 100%;
	margin: 0 auto;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}
.pageNav_list {
	list-style: none;
	margin-bottom: 15px;
}
.pageNav_list > li {}
.pageNav_list > li:nth-child(n+2) {
	margin-top: 12px;
}
.pageNav_list > li > a {
	text-decoration: none;
	color: inherit;
	display: flex;
	min-height: 32px;
	background-color: var(--color-white);
	border-radius: 5px;
	align-items: center;
	justify-content: center;
	color: var(--color-crimson);
	font-weight: 500;
	border: 1px solid var(--color-white);
	box-sizing: border-box;
	transition-duration: .3s;
	transition-property: background-color, color;
	font-size: 14px;
}
.pageNav_list > li > a[aria-current="true"] {
	background-color: #ee6f65;
	color: var(--color-white);
}
.pageNav_link {
	margin-top: auto;
	width: 98px;
}
.pageNav_link > a {
	text-decoration: none;
	color: inherit;
	display: flex;
	min-height: 46px;
	background-color: var(--color-dark);
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	border-radius: 5px;
	font-weight: bold;
	transition-duration: .3s;
	transition-property: background-color;
	font-size: 14px;
}
.pageContents {
	padding-left: 260px;
	padding-top: 87px;
	padding-bottom: 80px;
}
.pageContents-single {
	padding-top: 48px;
}
.pageHeader {
	height: 90px;
}
.pageHeader_inner {
	padding: 0 20px;
}
.pageHeader_cols {
	display: flex;
	justify-content: space-between;
}
.pageHeader_col {}
.pageHeader_col-logo {
	width: 290px;
}
.pageHeader_logo {}
.pageHeader_logo > a {
	text-decoration: none;
	color: inherit;
	display: flex;
	height: 84px;
	align-items: center;
	transition-duration: .3s;
	transition-property: opacity;
}
.pageHeader_logo_inner {
	display: block;
	padding-bottom: 19%;
	position: relative;
	width: 100%;
}
.pageHeader_logo_svg {
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	fill: currentColor;
}
.pageHeader_col-title {
	width: calc(100% - 600px);
	align-self: center;
}
.pageHeader_title {
	text-align: center;
	font-size: 25px;
	font-weight: bold;
}
.pageHeader_col-dummy,
.pageHeader_col-company {
	width: 290px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.pageHeader_contents {
	border-bottom: 6px solid var(--color-crimson);
	background-color: var(--color-white);
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	/* min-width: 1000px; */
}
.pageContents_inner {
	max-width: 940px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: content-box;
	padding-left: 20px;
	padding-right: 20px;
}
.pageContents_title {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 20px;
}
.pageContents_title_sub {
	display: block;
	font-family: var(--font-montserrat);
	color: var(--color-cherry);
	line-height: 1;
	font-size: 30px;
	margin-bottom: 8px;
}
.pageContents_title_main {
	display: block;
	font-size: 14px;
	line-height: 1.4;
	padding-bottom: 11px;
	border-bottom: 2px solid var(--color-flamingo);
	padding-right: 4px;
	color: var(--color-dark);
}
.offerList {}
.offerList_list {
	list-style: none;
	display: grid;
	flex-wrap: wrap;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 3.4%;
	row-gap: 40px;
}
.offerList_list > li {}
.offerList_list > li:nth-child(3n+1) {}
.offerList_list > li > a {
	text-decoration: none;
	color: inherit;
	display: block;
	transition-duration: .3s;
	transition-property: opacity;
}
.offerList_item {}
.offerList_image {
	padding-bottom: 66.67%;
	position: relative;
	background-color: #FFF;
}
.offerList_image > img {
	display: block;
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.offerList_tags {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	column-gap: 4px;
	row-gap: 4px;
	margin-top: 19px;
}
.offerList_tags > li {}
.offerList_tag {
	display: flex;
	min-height: 30px;
	border: 1px solid var(--color-carmine);
	box-sizing: border-box;
	color: var(--color-carmine);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.2;
	align-items: center;
	justify-content: center;
	padding: 0 8px;
	background-color: var(--color-white);
}
.offerList_tag-fill {
	background-color: var(--color-carmine);
	color: var(--color-white);
}
.offerList_title {
	font-size: 14px;
	font-weight: bold;
	line-height: 1.4;
	margin-top: 9px;
}
.offering {}
.offering_tags {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	column-gap: 4px;
	row-gap: 4px;
}
.offering_tags > li {}
.offering_tag {
	display: flex;
	min-height: 30px;
	border: 1px solid var(--color-carmine);
	box-sizing: border-box;
	color: var(--color-carmine);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.2;
	align-items: center;
	justify-content: center;
	padding: 0 8px;
	background-color: var(--color-white);
}
.offering_tag-fill {
	background-color: var(--color-carmine);
	color: var(--color-white);
}
.offering_title {
	line-height: 1.4;
	margin-top: 10px;
	font-size: 24px;
	border-bottom: 2px solid var(--color-flamingo);
	padding-bottom: 12px;
	color: var(--color-dark);
	margin-bottom: 18px;
}
.offering_cols {
	display: flex;
	align-self: flex-start;
}
.offering_col {}
.offering_col-main {
	width: 49%;
	max-height: 307px;
}
.offering_slide {
	font-size: 0;
	opacity: 0;
	transition-duration: .5s;
	transition-property: opacity;
}
.offering_slide.slick-initialized {
	opacity: 1;
}
.offering_slide_item {}
.offering_slide_image {
	padding-bottom: 66.67%;
	position: relative;
	background-color: #FFF;
}
.offering_slide_image > img {
	display: block;
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.offering_col-sub {
	width: 49%;
	margin-left: auto;
}
.offering_thumbList {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 8px;
	row-gap: 6px;
}
.offering_thumbList > li {}
.offering_thumbList > li > button {
	display: block;
	position: relative;
	padding-bottom: 66.67%;
	width: 100%;
	transition-duration: .3s;
	transition-property: opacity;
	background-color: #FFF;
}
.offering_thumbList > li > button > img {
	display: block;
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.offering_text {
	margin-top: 20px;
	overflow: hidden;
}
.offering_table {
	width: 460px;
	margin-top: 29px;
}
.offering_table > tbody {}
.offering_table > tbody > tr {}
.offering_table > tbody > tr > th {
	white-space: nowrap;
	border: 1px solid #cecece;
	background-color: var(--color-light-gray);
	white-space: nowrap;
	padding: 10px 11px;
	width: 119px;
	box-sizing: border-box;
	text-align: left;
	vertical-align: top;
}
.offering_table > tbody > tr > td {
	border: 1px solid #cecece;
	background-color: var(--color-white);
	padding: 10px 16px;
	vertical-align: top;
}
@media screen and (min-width:1000px) and (hover:hover) {
	.pageNav_list > li > a[aria-current="true"]:hover {
		background-color: rgba(255, 255, 255, 0);
	}
	.pageNav_list > li > a:hover {
		background-color: #ee6f65;
		color: var(--color-white);
	}
	.pageNav_link > a:hover {
		background-color: #565251;
	}
	.pageHeader_logo > a:hover {
		opacity: .7;
	}
	.offerList_list > li > a:hover {
		opacity: .7;
	}
	.offering_thumbList > li > button:hover {
		opacity: .7;
	}
}

.loginPageContents_title {
	align-items: center;
}
.loginPageContents {
	padding-left: 0;
}
.loginPageContents_inner {
	max-width: min(400px, 100%);
}
.loginForm_form {
	padding: 2rem;
	border: 1px solid #ddd;
	border-radius: 8px;
	background-color: #fafafa;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.loginForm_label {
	display: block;
	margin-bottom: 1rem;
	font-size: 1rem;
	color: #333;
}
.loginForm_input {
	width: 100%;
	padding: 0.6rem 0.8rem;
	font-size: 1rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	transition: border-color 0.2s;
	box-sizing: border-box;
}
.loginForm_input:focus {
	outline: none;
	border-color: #e73223;
	background-color: #fff;
}
.loginForm_submit {
	display: block;
	width: 100%;
	padding: 0.8rem;
	margin-top: 1rem;
	font-size: 1rem;
	background-color: #e73223;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.2s;
}
.loginForm_submit:hover {
	background-color: #c6281c;
}
.loginForm_error {
	color: #e73223;
	margin-top: 1rem;
	font-size: 0.9rem;
}
.gMenuBtn {
	display: none;
}

@media screen and (max-width: 999px) {
	.pageHeader_col-title {
		display: none;
	}
	.pageHeader_col-dummy, .pageHeader_col-company {
  		width: 0;
		opacity: 0;
		pointer-events: none;
		height: 0;
	}
	.pageNav {
		width: 100%;
		opacity: 0;
		pointer-events: none;
		top: 66px;
		height: calc(100vh - 66px);
		transition: opacity .3s;
	}
	.pageNav.isShow {
		opacity: 1;
		pointer-events: auto;
	}
	.pageContents {
  		padding-left: 0;
	}
	.gMenuBtn {
		display: block;
		width: 60px;
		height: 60px;
		background-color: var(--color-red);
		color: var(--color-white);
		position: absolute;
		right: 0;
		top: 0;
		z-index: 999;
  	}
	.gMenuBtn_barWrap {
    	display: block;
    	width: 30px;
    	margin: 0 auto;
  	}
	.gMenuBtn_bar {
		display: block;
		height: 1px;
		background-color: currentColor;
		transition-duration: .3s;
		transition-property: transform;
	}
	.gMenuBtn_bar-no2 {
    	margin-top: 12px;
  	}
	.pageHeader_inner {
  		padding: 0 0 0 10px;
	}
	.pageHeader_logo > a {
		height: auto;
		width: 220px;
	}
	.pageHeader {
  		height: 60px;
	}
	.pageHeader_cols {
		height: 60px;
		align-items: center;
	}
	.gMenuBtn[aria-expanded="true"] .gMenuBtn_bar-no1 {
		transform: translateY(7px) rotate(45deg);
	}
	.gMenuBtn[aria-expanded="true"] .gMenuBtn_bar-no2 {
		transform: translateY(-6px) rotate(-45deg);
	}
	.pageNav_link {
  		margin-top: 0;
  		width: auto;
	}
	.pageNav_inner {
  		max-width: 220px;
	}
}

@media screen and (max-width: 767px) {
	.pageHeader_inner {
  		padding: 0 0 0 10px;
	}
	.loginForm_form {
  		padding: 1rem;
	}
	.offerList_list {
  		grid-template-columns: repeat(1, 1fr);
	}
	.embed-responsive {
		aspect-ratio: 16 / 9;
		width: 100%;
		overflow: hidden;
		position: relative;
	}
	.embed-responsive iframe {
		width: 100%;
		height: 100%;
		display: block;
		border: 0;
	}
	.offering_table {
  		width: 100%;
	}
}