@charset "UTF-8";
/* CSS Document */

:root {
  --f-family-ja: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  --f-family-en: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	--color-re: #c30e16;
	--color-or: #e5740e;
	--color-gor: #ea971f;
	--color-ye: #ffbd26;
	--color-lgr: #9bb016;
	--color-bg: #fff9f8;
	--color-lpk: #fff0f4;
}

/* ==========================================================
 b2b
========================================================== */
* {
	box-sizing: border-box;
}
@media screen and (max-width: 799px) {
	.only-pc, .no-sp
	{ display: none !important; }
	.only-sp, .no-pc
	{ display: block !important; }
	img.only-sp, img.no-pc
	{ display: inline-block !important; }
}

body {
	position: relative;
	width: 100%;
	word-wrap: break-word;
  overflow-wrap: break-word;
	line-height: 1.75;
	color: #212121;
	font-weight: 400;
	font-family: var(--f-family-ja);
	text-align: justify;
}
svg,
img[src$=".svg"] {
	display: block;
	width: 100%;
}
img {
	max-width: 100%;
	max-height: 100%;
}
strong {
	font-weight: 700;
}

/* ==========================================================
 header / footer
========================================================== */
.header .logo,
.header .logo *,
.footer .logo,
.footer .logo * {
  display: block;
}

/* header
---------------------------------------------------------- */
.header {
	position: relative;
	padding-top: 30px;
	background: var(--color-sub);
}
.header .logo {
	position: absolute;
	top: 0;
	left: 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 120px;
  height: 120px;
	padding: 15px;
	background: #fff;
	z-index: 2;
}
.header .ttl {
	width: min(1200px, 100%);
	margin: 0 auto;
}
.header p {
	width: min(1200px, 100%);
	margin: 50px auto 0;
}

/* footer
---------------------------------------------------------- */
.footer {
	margin: 80px 0 30px;
}
.footer .logo {
	width: 126px;
  height: 75px;
  margin: 0 auto 30px;
}
.footer .copy {
	display: block;
	color: #757575;
	font-size: 12px;
	text-align: center;
}

/* ==========================================================
 汎用パーツ
========================================================== */
/* contents / sec
---------------------------------------------------------- */
.contents {
	padding: 100px 0 120px;
	background: var(--color-sub);
}
.contents h2 {
	margin-bottom: 40px;
	font-size: 30px;
	font-weight: 900;
	text-align: center;
}
.contents .list {
	width: min(1200px, 100%);
	margin: 0 auto;
}
.contents .list .item {
	/* margin: 0 auto; */
	margin-bottom: 30px;
	padding: 0 30px 30px;
	background: #fff;
}
.contents .list .item h3 {
	margin: 0 -30px 15px;
	padding: 10px 30px;
	font-size: 18px;
	font-weight: 700;
	background: #eee;
}
.contents .list .item h3 .tag,
.contents .list .item .wrap .btn {
	line-height: 1;
	color: #fff;
}
.contents .list .item h3 .tag {
	position: relative;
	top: -0.15em;
	display: inline-block;
	margin-left: 10px;
	padding: 5px 8px 6px;
	font-size: 12px;
	border-radius: 2px;
	vertical-align: middle;
}
.contents .list .item h3 .tag.on {
	background: var(--color-re);
}
.contents .list .item h3 .tag.off {
	background: #757575;
}
.contents .list .item .wrap {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 15px;
}
.contents .list .item .wrap .btn {
	display: block;
	width: calc(50% - 5px);
	padding: 14px 0 16px;
	font-size: 15px;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	border-radius: 5px;
	background: var(--color-ye);
	transition: opacity 0.2s;
}
.contents .list .item .wrap .btn.off {
	pointer-events: none;
	opacity: 0.3;
}
.past {
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	margin-top: 60px;
	text-decoration: underline;
}
.past a {
	display: inline-block;
}
.past a:hover {
	transition: all 0.2s;
	opacity: 0.8;
}
/* .contents .list .item .wrap .btn-b2c {
	background: var(--color-or);
}
.contents .list .item .wrap .btn-b2b {
	background: var(--color-lgr);
} */

/* ==========================================================
 メディアクエリ
========================================================== */
@media screen and (min-width: 800px) {
	.contents .list {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.contents .list .item {
		width: calc(50% - 15px);
	}
	.contents .list .item .wrap .btn:hover {
		opacity: 0.7;
	}
}

@media screen and (max-width: 799px) {
	body {
		font-size: 14px;
	}

	.header {
		padding: 0;
	}
	.header .logo {
    width: 70px;
    height: 70px;
    padding: 8px;
	}
	.header-in .txt {
		padding: 15px 20px;
		text-align: left;
	}
	.header-in .txt strong {
		font-size: 18px;
		font-weight: 700;
	}
	.header p {
		padding: 0 10px;
	}

	.contents {
    padding: 60px 10px;
	}

	.contents h2 {
    margin-bottom: 20px;
    font-size: 24px;
	}
	.contents .list .item h3 {
    margin: 0 -15px 10px;
    padding: 10px 15px;
    font-size: 16px;
	}
	.contents .list .item h3 .tag {
    font-size: 10px;
	}
	.contents .list .item {
    margin-bottom: 15px;
    padding: 0 15px 15px;
	}
	.contents .list .item .wrap {
		margin-top: 10px;
	}
	.contents .list .item .wrap .btn {
    padding: 12px 0 14px;
    font-size: 13px;
	}
	.past {
		font-size: 16px;
	}

}