@charset "UTF-8";
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	font-size: 14px;
}
body {
	background: #f0f0f0;
	color: #222;
	font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	line-height: 1.5;
}
/* =====================================
   A4ページ
===================================== */

.page {
	width: 800px;
	margin: 20px auto;
	background: #fff;
	box-shadow: 0 0 8px rgba(0,0,0,.15);
	overflow: hidden;
}
/* =====================================
   HEADER
===================================== */

.hero {
	background: #E6F0EB;
	position: relative;
	padding: 25px 30px 0px;
}
.hero::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 120px;
	background: url("head_bg.png") center bottom no-repeat;
	background-size: 100% auto;
}
.hero-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 140px;
	column-gap: 20px;
	align-items: start;
}
.hero-left {
	min-width: 0;
}
.logo {
	width: 300px;
	height: auto;
	display: block;
	margin-bottom: 20px;
}
.title-area {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-left: 100px;
}
.title-icon {
	width: 70px;
	height: auto;
}
.main-title {
	font-size: 39px;
	font-weight: 700;
	line-height: 1;
}
.catch-circle {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: #F68B00;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-weight: bold;
	line-height: 1.2;
	font-size: 1.5rem;
	position: relative;
}
.catch-circle::before {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border: 2px solid rgba(255,255,255,.95);
	border-radius: 50%;
}
/* =====================================
   LEAD
===================================== */

.lead {
	margin: 20px 30px;
	background: #FCFFE8;
	border: 2px dashed #F68B00;
	padding: 20px;
	display: grid;
	grid-template-columns: 1fr 100px;
	gap: 20px;
	align-items: center;
}
.lead-text {
	min-width: 0;
}
.lead-icon {
	width: 70px;
	height: auto;
	justify-self: start;
}
/* =====================================
   BOX共通
===================================== */

.point-box {
	margin: 0 30px 12px;
	border: 2px solid #005AA9;
	background: #fff;
	position: relative;
	overflow: hidden;
}
.point-box::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 80px;
	background: url("box_bg.png") center bottom no-repeat;
	background-size: 100% auto;
	z-index: 0;
}
.point-header {
	display: flex;
	align-items: center;
}
.number {
	width: 110px;
	height: 45px;
	background: #005AA9;
	color: #fff;
	font-size: 32px;
	font-weight: bold;
	line-height: 45px;
	padding-left: 15px;
	clip-path: polygon( 0 0, 85% 0, 100% 100%, 0 100% );
}
.point-title {
	margin-left: 15px;
	margin-right: 5px;
	color: #005AA9;
	font-size: 24px;
	font-weight: bold;
}
.point-title3 {
	margin-left: 15px;
	margin-right: 5px;
	color: #005AA9;
	font-size: 21px;
	font-weight: bold;
}
.point-content {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 100px;
	padding: 15px;
}
.point-text {
	min-width: 0;
}
.point-icon {
	width: 77px;
	height: auto;
	align-self: end;
	justify-self: end;
}
/* =====================================
   箇条書き
===================================== */

.arrow-list {
	list-style: none;
}
.arrow-list li {
	margin-bottom: 10px;
	padding-left: 28px;
	background: url("arrow.gif") no-repeat left 0px;
	background-size: 18px auto;
}
/* =====================================
   FOOTER
===================================== */

.footer_print {
	margin-top: 20px;
	background: #E6F0EB;
	position: relative;
	padding: 0 30px 30px;
}
.footer_print::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 120px;
	background: url("footer_bg.png") center top no-repeat;
	background-size: 100% auto;
}
.footer_print-inner {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 30px;
}
.footer_print-info {
	flex: 1;
	min-width: 0;
}
.footer_print-logo {
	width: 290px;
	display: block;
	margin-right: 10px;
	margin-bottom: 15px;
}
.footer_print-add {
	font-size: 0.83rem;
}
.footer_print-url {
	font-size: 1rem;
	white-space: nowrap;
}
.footer_print-gallery {
	display: flex;
	align-items: flex-end;
	gap: 10px;
	flex-shrink: 0;
}
.footer_print-card-image {
	display: block;
	height: auto;
}
.footer_print-card-image-a {
	width: 180px;
}
.footer_print-card-image-b {
	width: 120px;
}
.footer_print-card-image-c {
	width: 120px;
}
/* =====================================
   mobile
===================================== */

@media (max-width:768px) {
.page {
	width: 100%;
	margin: 0;
	box-shadow: none;
}
.hero-inner {
	grid-template-columns: 1fr;
	row-gap: 20px;
}
.lead {
	grid-template-columns: 1fr;
}
.point-content {
	grid-template-columns: 1fr;
}
.title-area {
	margin-left: 0;
}
.main-title {
	font-size: 36px;
}
.title-icon {
	width: 50px;
}
.catch-circle {
	justify-self: center;
}
.lead-icon {
	justify-self: center;
}
.point-icon {
	justify-self: end;
}
.footer_print {
	padding: 0 20px 30px;
}
.footer_print-inner {
	display: block;
}
.footer_print-info {
	width: 100%;
}
.footer_print-logo {
	width: 300px;
	max-width: 100%;
}
.footer_print-add {
	font-size: 0.98rem;
}
.footer_print-gallery {
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 25px;
}
.footer_print-card-image-a {
	width: 300px;
	max-width: 100%;
}
.footer_print-card-image-b {
	width: 200px;
}
.footer_print-card-image-c {
	width: 200px;
}
}


/* =====================================
   Print
===================================== */

@page {
 size:A4;
 margin:10mm;
}
 @media print {
html {
	font-size: 12px;
}
body {
	background: #fff !important;
}
.page {
	width: auto !important;
	margin: 0 !important;
	box-shadow: none !important;
}
.hero {
	padding: 10px 10px 5px 20px !important;
}
.hero::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 120px;
	background: url("head_bg.png") center bottom no-repeat;
	background-size: 100% auto;
}
.hero-inner {
	display: grid !important;
	grid-template-columns: 1fr 140px !important;
}
.lead {
	display: grid !important;
	grid-template-columns: 1fr 100px !important;
}
.point-content {
	display: grid !important;
	grid-template-columns: 1fr 100px !important;
	padding: 6px 12px !important;
}
img {
	max-width: 100%;
	page-break-inside: avoid;
}
.hero, .lead, .point-box {
	page-break-inside: avoid;
}
.point-box::after {
	inset: auto 2px 0 2px !important;
}
.main-title {
	font-size: 34px !important;
}
.title-icon {
	width: 55px !important;
	margin: 0 0 0 44px;
}
.lead {
	font-size: 14px;
	padding: 10px !important;
	margin: 10px 30px !important;
}
.lead-icon {
	width: 50px !important;
	margin-right: 40px !important;
}
.point-box::after {
	height: 45px !important;
}
.number {
	height: 34px !important;
	line-height: 34px !important;
	font-size: 24px !important;
}
.point-box {
	margin: 8px 30px 8px !important;
}

.point-title {
	font-size: 18px !important;
}
.point-title3 {
	font-size: 17px !important;
}
.point-icon {
	width: 70px !important;
}
.arrow-list li {
	font-size: 14px !important;
	margin-bottom: 3px !important;
	min-height: 20px !important;
}
.footer_print {
	margin: 5px 0px 10px !important;
	padding: 10px 20px 10px !important;
}
.footer_print::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 120px;
	background: url("footer_bg.png") center top no-repeat;
	background-size: 100% auto;
}
.footer_print-inner {
	display: flex !important;
	justify-content: space-between !important;
	align-items: flex-end !important;
	gap: 20px !important;
}
.footer_print-logo {
	width: 400px !important;
	margin-bottom: 25px !important;
}
.footer_print-add {
	font-size: 0.90rem !important;
}
.footer_print-url {
	font-size: 1rem !important;
}
.footer_print-gallery {
	display: flex !important;
	flex-direction: row !important;
	align-items: flex-end !important;
	gap: 15px !important;
}
.footer_print-card-image-a {
	height: 160px !important;
	width:auto !important;
}
.footer_print-card-image-b {
	height: 160px !important;
	width:auto !important;
}
.footer_print-card-image-c {
	height: 160px !important;
	width:auto !important;
}

