@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

/* ===============================================================
  $keyColor: var(--keyColor);
================================================================== */
:root {
    --keyColor: #00bfb8;
}

/* --------------------------------------------------
  COMMON STYLES
  -------------------------------------------------- */
/* ===== RESET ===== */
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

*:before,
*:after {
	box-sizing: border-box;
}

li {
	list-style: none;
}

p {
	margin: 0;
}

/* CSS Document */
html {
	font-size: 62.5%;
}
body {
	line-height: 1.7;
	font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic" , 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Meiryo, メイリオ, arial, helvetica, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 16px;
	font-weight: normal;
	letter-spacing: 1px;
	color: #000;
	background: #fff;
	-webkit-text-size-adjust: 100%;
}

body:before {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	display: block;
	visibility: hidden;
	width: 100%;
	height: 100vh;
	background-color: #000;
	content: "";
	opacity: 0;
	-webkit-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
}

.tab, .sp {
	display: none;
}

.sp, .sp2 {
	display: none !important;
}

.pc, .pc.tab {
	display: block;
}

.em {
	color: #ee0000;
}

.noteText {
	font-size: .9em;
	color: #566577;
}

.marker {
	display: inline;
	padding: 0 .5em;
	background: linear-gradient(transparent 0%, #ffcccc 0%);
}

.f_bold {
	font-weight: bold;
}

.f_normal {
	font-weight: normal;
}

.font_yuGothic {
	font-family: '"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic";
}

.font_en {
	font-family: "Montserrat";
}

.font_s {
	font-size: 12px;
	/*font-size: 1.2rem;*/
}

.font_s2 {
	font-size: 14px;
}

.font_m {
	font-size: 15px;
}

.font_l {
	font-size: 16px;
	/*font-size: 1.6rem;*/
}

.font_xl {
	font-size: 18px;
	/*font-size: 1.8rem;*/
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

.img-responsive {
	display: block;
	max-width: 100%;
	height: auto;
}

.img-full {
	display: block;
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
}

.border {
	border: 1px solid #ddd;
}

.shadow {
	box-shadow: 1px 1px 1em rgba(0,0,0,.25);
}

a, .hover {
	opacity: 1;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	color: #000;
	text-decoration: none;
	cursor: pointer;
}
a:hover, .hover:hover {
	opacity: .7;
	color: #000;
	text-decoration: underline;
}

.link, .link:hover {
	color: #2196f3 !important;
}

.link_txt, .link_txt:hover, .link_txt:visited {
	color: #ff1313;
}

a.mail,
a.pdf,
a.word,
a.excel {
	position: relative;
	padding-left: 25px;
}

a.mail:before,
a.pdf:before,
a.word:before,
a.excel:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0px;
	width: 21px;
	height: 21px;
	transform: translateY(-50%);
	vertical-align: middle;
}

a.mail.alignTop:before,
a.pdf.alignTop:before,
a.word.alignTop:before,
a.excel.alignTop:before {
	top: 1px;
	transform: translateY(0);
}

a.mail:before {
	content: "\f0e0";
	display: block;
	position: absolute;
	line-height: 21px;
	font-size: 14px;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: #ff1313;
	text-align:center;
}

a.pdf:before {
	left: 2px;
	width: 16px;
	background: url(../images/common/ico_pdf_color.png) no-repeat 0 0;
}

a.word:before {
	background: url(../images/common/ico_word.png) no-repeat 0 0;
}

a.excel:before {
	background: url(../images/common/ico_excel.png) no-repeat 0 0;
}


.arrw01 {
	position: relative;
}

.arrw01:before {
	content: "";
	display: inline-block;
	position: relative;
	top: -2px;
	margin: 0 5px 0 0;
	border: 4px solid transparent;
	border-left: 5px solid #1479c3;
}

.arrw01_after {
	position: relative;
	padding-right: 1.15em;
}

.arrw01_after:before {
	content: "";
	display: block;
	position: absolute;
	right: 0;
	top: 50%;
	border: 4px solid transparent;
	border-left: 5px solid #1479c3;
	transform: translateY(-50%);
}

/* ===== FORM ===== */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="button"],
input[type="submit"],
textarea {
	/* reset */
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	font-weight: normal;
	outline: none;
	/* end - reset */
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="date"],
textarea {
	padding: 10px;
	border: 1px solid #b5b5b5;
	border-radius: 5px;
	background: #fff;
	font-size: 100%;
}

select {
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
	padding: 4px;
	border: 1px solid #b5b5b5;
	font-size: 100%;
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #aaa;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #aaa;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="password"]::-moz-input-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
	color: #aaa;
}

input[type="checkbox"],
input[type="radio"] {
	margin-right: 4px;
}

textarea {
	resize: vertical;
}

select::-ms-expand {
	display: none;
}
/* ===== end - FORM ===== */

.mt0 {
	margin-top: 0 !important;
}

.mb0 {
	margin-bottom: 0 !important;
}

.mt5 {
	margin-top: 5px !important;
}

.mt10 {
	margin-top: 10px !important;
}

.mt15 {
	margin-top: 15px !important;
}

.mt20 {
	margin-top: 20px !important;
}

.mt25 {
	margin-top: 25px !important;
}

.mt30 {
	margin-top: 30px !important;
}

.mt35 {
	margin-top: 35px !important;
}

.mt1em {
	margin-top: 1em;
}

.mt2em {
	margin-top: 2em;
}

.mb5 {
	margin-bottom: 5px !important;
}

.mb10 {
	margin-bottom: 10px !important;
}

.mb15 {
	margin-bottom: 15px !important;
}

.mb20 {
	margin-bottom: 20px !important;
}

.mb25 {
	margin-bottom: 25px !important;
}

.mb30 {
	margin-bottom: 30px !important;
}

.mb35 {
	margin-bottom: 35px !important;
}

.ml10 {
	margin-left: 10px !important;
}

.ml1em {
	margin-left: 1em !important;
}

.pt0 {
	padding-top: 0 !important;
}

.pt10 {
	padding-top: 10px !important;
}

.pt15 {
	padding-top: 15px !important;
}

.pt20 {
	padding-top: 20px !important;
}

.pt25 {
	padding-top: 25px !important;
}

.pt30 {
	padding-top: 30px !important;
}

.pb0 {
	padding-bottom: 0 !important;
}

.pb10 {
	padding-bottom: 10px !important;
}

.pb15 {
	padding-bottom: 15px !important;
}

.pb20 {
	padding-bottom: 20px !important;
}

.pb25 {
	padding-bottom: 25px !important;
}

.pb30 {
	padding-bottom: 30px !important;
}

.text-center {
	text-align: center !important;
}

.text-left {
	text-align: left !important;
}

.text-right {
	text-align: right !important;
}

.clearfix {
	overflow: hidden;
}

.block {
	display: block;
}

.in-block {
	display: inline-block;
}

.inline {
	display: inline;
}

.block-center {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.clr:after {
	content: "";
	display: block;
	clear: both;
}

.ico {
	position: relative;
	top: -2px;
	vertical-align: middle;
}

.nowrap {
	white-space: nowrap;
}

.hide {
	display: none;
}

.indent {
	text-indent: -1em;
	padding-left: 1em;
}

.indnt-05 {
	text-indent: -.5em;
}

.indnt-1 {
	text-indent: -1em;
}


@media print, screen and (min-width: 768px) {
	.colWrap {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
	}

	.colWrap.rtl {
		flex-direction: row-reverse;
	}

	.colWrap.wrap {
		flex-wrap: wrap;
	}

	.colWrap.boxAlign-left {
		justify-content: flex-start;
	}

	.colWrap.boxAlign-right {
		justify-content: flex-end;
	}

	.colWrap.boxAlign-center {
		justify-content: center;
	}

	.colWrap.mdl > *,
	.colWrap > .mdl:not(.colWrap) {
		display: flex;
		align-items: center;
		align-content: center;
		justify-content: flex-start;
	}

	.colWrap.mdl.ct > *,
	.colWrap > .mdl.ct:not(.colWrap) {
		justify-content: center;
	}

	.colWrap.col4 {
		margin-left: -10px;
		margin-right: -10px;
	}

	.colWrap.col4 > * {
		margin: 0 10px 20px;
		width: calc(25% - 20px);
	}

	.colWrap.col2 > * {
		width: 50%;
	}
}

.commonTbl {
	width: 100%;
	border-collapse: collapse;
}

.commonTbl th,
.commonTbl td {
	padding: 10px;
	border: 1px solid #ccc;
	line-height: 1.4;
	position: relative;
}

.commonTbl th {
	font-weight: normal;
	text-align: left;
}

.commonTbl .txt_center th {
	text-align: center;
}

.commonTbl.type1 thead,
.commonTbl.type2 thead {
	/* background: #d2e6e6; */
	background: #def9f9;
}

.commonTbl thead.f_bold th {
	font-weight: bold;
	font-size: max(.9em, 1.2rem);
}

.commonTbl.type2 {
	border-top: 1px solid #ccc;
}

.commonTbl.type2 tr {
	border-bottom: 1px solid #ccc;
}

.commonTbl.type2 th,
.commonTbl.type2 td {
	border: 0;
	padding: 1em;
}



.commonTbl .type2 tbody tr {
    border: 0;
}

.commonTbl th:not(:last-child):before,
.commonTbl td:not(:last-child):before {
    content: "";
    display: block;
    width:  1px;
    top: .5em;
    bottom: .5em;
    background: #ccc;
    /* float: right; */
    position: absolute;
    right: 0;
}

.commonTbl td:nth-last-child(2n):not([rowspan]):before {
    background: none;
    border-right: 1px dotted #ccc;
}

@media print, screen and (max-width: 499px) {
	.commonTbl.type2 th,
	.commonTbl.type2 td {
		padding-inline: .3em;
	}

	.commonTbl .col_btn {
		width: 5em;
	}
}

.tblWrap {
	position: relative;
	overflow-x: auto;
}

.tblGuideTxt {
	display: none;
	margin: 0 0 10px;
	padding: 8px 15px;
	line-height: 1;
	font-size: .9em;
	border-radius: 12px;
	background: #e0eaef;
}

.commonList {
	border-top: 1px solid #d3d3d3;
}

.commonList .tr {
	border-bottom: 1px solid #d3d3d3;
}

.commonList .tr.block {
	display: block;
}

.commonList .th,
.commonList .td {
	padding: 5px 5px;
}

.commonList .th {
	padding-bottom: 0;
	width: auto;
	font-weight: bold;
}

.commonList .tHead {
	border-bottom: 1px solid #d3d3d3;
	background: #f3f3f3;
	font-weight: bold;
}

.commonList.type1 .tHead {
	background: #d2e6e6;
}

.commonList .tHead .th {
	padding-bottom: 10px;
}

.commonList .lined {
	border-bottom: 1px solid #d3d3d3;
}

.commonList.noLine,
.commonList.noLine .tr {
	border: 0;
}

@media print, screen and (min-width: 768px) {
	.commonList .tr {
		display: flex;
		justify-content: flex-start;
	}

	.commonList.justify-between .tr {
		justify-content: space-between;
	}

	.commonList .th,
	.commonList .td {
		padding: 10px 20px;
	}

	.commonList .high .th,
	.commonList .high .td {
		padding: 20px;
	}

	.commonList .mdl .th,
	.commonList .mdl .td,
	.commonList .mdl.th,
	.commonList .mdl.td {
		display: flex;
		align-items: center;
		align-content: center;
	}

	.commonList .mdl .th > *,
	.commonList .mdl .td > *,
	.commonList .mdl.th > *,
	.commonList .mdl.td > * {
		width: 100%;
	}

	.commonList .tr.block .th {
		padding-bottom: 0;
	}

	.commonList .tr.block .td {
		padding-top: 0;
	}

	.commonList .th {
		flex: 1 1 auto;
		font-weight: bold;
	}

}

@media print, screen and (max-width: 767px) {
	.commonList .tr.sp-flex {
		display: flex;
	}

	.commonList .tr.sp-flex .th,
	.commonList .tr.sp-flex .td {
		padding: 10px;
	}

	.sp-commonList .tr {
		display: flex;
		justify-content: space-between;
	}

	.sp-commonList .th,
	.sp-commonList .td {
		padding: 10px 5px;
	}

	.sp-commonList .th.sp-colWrap {
		justify-content: space-between;
	}

	.sp-commonList .sp-mdl .th,
	.sp-commonList .sp-mdl .td,
	.sp-commonList .sp-mdl.th,
	.sp-commonList .sp-mdl.td {
		display: flex;
		align-items: center;
		align-content: center;
	}

	.sp-commonList .tr.block .th {
		padding-bottom: 0;
	}

	.sp-commonList .tr.block .td {
		padding-top: 0;
		padding-left: 25px;
	}

	.sp-commonList .th {
		width: auto;
		font-weight: bold;
	}

	.commonList:not(.sp-commonList) .tHead {
		display: block;
		overflow: hidden;
		line-height: 1;
	}

	.commonList:not(.sp-commonList) .tHead .th {
		float: left;
	}

	.commonList:not(.sp-commonList) .tHead .th:after {
		content: "/";
		display: inline-block;
		margin: 0 0 0 10px;
	}

	.commonList:not(.sp-commonList) .tHead .th:last-child:after {
		display: none;
	}

	.commonList:not(.sp-commonList) .tr:not(:last-child) {
		margin-bottom: 10px;
	}

	.commonList:not(.sp-commonList) .th,
	.commonList:not(.sp-commonList) .td {
		display: block;
	}
}

.list_arrow li,
.dl_arrow dt {
	position: relative;
	padding-left: 1.25em;
}

.list_arrow li:before,
.dl_arrow dt:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0.6em;
	width: 0.4em;
	height: 0.4em;
	border-top: 2px solid var(--keyColor);
	border-right: 2px solid var(--keyColor);
	transform: rotate(45deg);
}

.list_dot li {
	position: relative;
	padding-left: 1.25em;
}

.list_dot li:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: .6em;
	width: .45em;
	height: .45em;
	border-radius: 50%;
	background: #4b83a7;
	opacity: .5;
}

.commonList.list_dot li:before {
	top: calc(.6em + 10px);
	left: 20px;
}


.list.spc > li + li {
	margin-top: .7em;
}

.list > li {
	text-indent: -1em;
	padding-left: 1em;
}

.list.indent2 > li {
	text-indent: -2em;
	padding-left: 2em;
}

.dl dt,
.dl_arrow dt {
	margin-bottom: .5em;
}

.dl dd,
.dl_arrow dd {
	padding-left: 1em;
	margin-bottom: 1.5em;
}

.dl_arrow dd {
	margin-bottom: 1.5em;
}

.dl dd:last-child,
.dl_arrow dd:last-child {
	margin-bottom: 0;
}


.bg {
	background: #f9f9f9;
}

.box01 {
	background: #f5f5f5;
	padding: 1.65em;
	margin: 30px 0;
}

.box01 .head {
	margin: 0 0 .5em;
	line-height: 1.3;
	font-size: 1.1em;
	font-weight: bold;
}

/* animation */
.fadeIn {
  position: relative;
  opacity: 0;
  -webkit-transition: all 1400ms cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: all 1400ms cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 1400ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 1400ms cubic-bezier(0.23, 1, 0.32, 1);
  /* easeOutQuint */
  -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  /* easeOutQuint */
}

.fadeInUp {
  position: relative;
  opacity: 0;
  -webkit-transform: translate(0, 10px);
  -moz-transform: translate(0, 10px);
  -o-transform: translate(0, 10px);
  transform: translate(0, 10px);
  -webkit-transition: all 1400ms cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: all 1400ms cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 1400ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 1400ms cubic-bezier(0.23, 1, 0.32, 1);
  /* easeOutQuint */
  -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  /* easeOutQuint */
}

.fadeInDown {
  position: relative;
  opacity: 0;
  -webkit-transform: translate(0, -10px);
  -moz-transform: translate(0, -10px);
  -o-transform: translate(0, -10px);
  transform: translate(0, -10px);
  -webkit-transition: all 1400ms cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: all 1400ms cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 1400ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 1400ms cubic-bezier(0.23, 1, 0.32, 1);
  /* easeOutQuint */
  -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  /* easeOutQuint */
}

.fadeinup {
  position: relative;
  opacity: 0;
  -webkit-transform: translate(0, 30px);
  -moz-transform: translate(0, 30px);
  -o-transform: translate(0, 30px);
  transform: translate(0, 30px);
  -webkit-transition: all 1400ms cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: all 1400ms cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 1400ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 1400ms cubic-bezier(0.23, 1, 0.32, 1);
  /* easeOutQuint */
  -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  /* easeOutQuint */
}


.fadeIn.active,
.fadein.active,
.fadeInUp.active,
.fadeinup.active,
.fadeInDown.active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

/* zoom */
.fadeInZoom {
	opacity: 0;
	-webkit-transform: scale(.9) translateY(50px);
	-moz-transform: scale(.9) translateY(50px);
	-o-transform: scale(.9) translateY(50px);
	transform: scale(.9) translateY(50px);
	transition: transform .85s cubic-bezier(0.215, 0.61, 0.355, 1);;
}

.fadeInZoom.active {
	opacity: 1;
	-webkit-transform: scale(1) translateY(0);
	-moz-transform: scale(1) translateY(0);
	-o-transform: scale(1) translateY(0);
	transform: scale(1) translateY(0);
}

.slideIn {
	opacity: 0;
	transition: transform .55s cubic-bezier(0.215, 0.61, 0.355, 1),
		    opacity .35s ease .25s;
	transform: translateX(-99.99%);
}

.slideIn.active {
	opacity: 1;
	transform: translateX(0);
}

/* ttl animation */
@-webkit-keyframes ttl_block {

}

@keyframes ttl_block {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-25px) rotate(-20deg) scale(.75);
		transform: translateY(-25px) rotate(-20deg) scale(.75);
	}

	30% {
		opacity: 1;
		transform: translateY(-25px) rotate(-15deg) scale(1);
	}

	75% {
		opacity: 1;
		-webkit-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0) scale(1);
	}

	88% {
		opacity: 1;
		-webkit-transform: translateY(-6px) rotate(-5deg);
		transform: translateY(-6px) rotate(-5deg);
	}

	94% {
		opacity: 1;
		-webkit-transform: translateY(-3px) rotate(0);
		transform: translateY(-3px) rotate(0);
	}


	100% {
		opacity: 1;
		-webkit-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
	}
}


/* pageTop */
.pageTop {
	position: fixed;
	right: 30px;
	bottom: 30px;
	z-index: 99;
	width: 50px;
}

.pageTop a {
	position: relative;
	display: block;
	overflow: hidden;
	margin: -25px auto 0;
	padding: 48px 0 0;
	width: 50px;
	height: 0;
	outline: none;
	background: rgba(0,0,0,.25);
	border-radius: 50%;
	text-align: center;
	text-decoration: none;
}

.pageTop a:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -4px 0 0 -7px;
	width: 12px;
	height: 12px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(-45deg);
}


.content {
	padding-bottom: 100px;
}

.section {
	overflow: hidden;
	padding: 65px 0;
}

.section.visible {
	overflow: visible;
}

.section .article + .article {
	margin-top: 65px;
}

.container {
	margin-left: auto;
	margin-right: auto;
	padding: 0 40px;
	max-width: 1080px;
}

.container.full {
	max-width: 100%;
	max-width: initial;
}

.container.noPadding {
	padding-left: 0;
	padding-right: 0;
}

.ttl {
	position: relative;
	margin: .9em 0 1.35em;
	padding: 0 0 .35em;
	font-size: 1.8em;
	letter-spacing: 0.002em;;
	line-height: 1.3;
	color: var(--keyColor);
	font-weight: normal;
	border-bottom: 1px solid #dfdfe3;
}

.ttl .sub {
	font-size: .65em;
}


span.sub_top {
	display: block;
	margin-bottom: .5em;
	font-size: .65em;
}

.section .ttl:first-child {
	margin-top: 0;
}


.ttl:before {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 6.2em;
	height: 1px;
	background-color: var(--keyColor);
	content: "";
}

.ttl_m {
	position: relative;
    font-size: 1.3em;
    margin: 1.5em 0;
    font-weight: bold;
    color: #fff;
    padding: 5px 15px 8px;
    border-radius: 4px;
    line-height: 1.3;
    /* background: var(--keyColor); */
	background: #76cfcc;
}

.ttl_s {
	font-size: 24px;
	margin: 0.84em 0;
	font-weight: bold;
	color: #4b83a7;
}

.btn {
	display: block;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	padding: 1.2em;
	width: 100%;
	max-width: 300px;
	line-height: 1.3;
	font-size:.9em;
	font-family: "Noto Sans CJ Kjp";
	font-weight: bold;
	background: transparent;
	border: 1px solid var(--keyColor);
	color: var(--keyColor);
	border: 1px solid inherit;
	text-decoration: none;
	text-align: center;

}

.btn.fill {
	background: var(--keyColor);
}

.btn_input {
	padding: 0;
	transition: all .3s ease-out;
}

.btn_input input {
	padding: 1.2em;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	font-family: "Noto Sans CJ Kjp";
	font-weight: bold;
	background: transparent;
	color: var(--keyColor);
	text-decoration: none;
	text-align: center;
	cursor: pointer;
}

.btn.en {
	font-family: "Montserrat";
}

.btn:link,
.btn:hover,
.btn:active,
.btn:visited {
	color: var(--keyColor);
	text-decoration: none;
}

.btn:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: 15px;
	box-sizing: border-box;
	width: 8px;
	height: 8px;
	border-top: 1px solid var(--keyColor);
	border-right: 1px solid var(--keyColor);
	transform: translateY(-50%) rotate(45deg);
	transition: all.1s ease-out;
}

.btn.fill:link,
.btn.fill:hover,
.btn.fill:active,
.btn.fill:visited,
.btn.fill input{
	color: #fff;
}

.btn.fill:before {
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}

@media print, screen and (min-width: 768px) {
	.btn.left {
		margin-left: 0;
		margin-right: 0;
	}
}

.btn.right {
	float: right;
	margin-left: 0;
	margin-right: 0;
	width: 100%;
}

.btn.text-left {
	text-align: left;
}

.btn.no-arrw:before {
	display: none;
}

.btn:hover {
	opacity: 1;
	background: rgb(88 229 229 / 20%);
}

.btn:hover:before {
	margin-right: -2px;
}

.btn.fill:hover {
	color: inherit;
	background: transparent;
}

.btn.fill:hover input {
	color: var(--keyColor);
}

.btn.fill:hover:before {
	border-color: inherit;
	border-color: var(--keyColor);
}

.btn.round {
	border-radius: 9999px;
}

.btn.round:before {
	right: 1.75em;
    height: 1px;
    width: 1.5em;
    margin-top: -.5px;
    border: 0;
    background: var(--keyColor);
    transform: none;
}

.btn.round:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: calc(1.75em - 4px);
	margin-top: -2px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--keyColor);
}

.btn.round:hover:before {
	margin-right: 0;
}

.btnFrame.fadeInZoom {
	opacity: 0;
	transform: scale(0.9) translateY(50px);
	transition: all 0.85s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.btnFrame.fadeInZoom.active {
	opacity: 1;
	transform: scale(1) translateY(0);
}

.btn.in-block {
	display: inline-block;
	padding: 18px 28px;
	width: auto;
	max-width: initial;
}

.btn_pdf {
	padding-right: 40px;
	border-width: 2px;
}

.btn_pdf:before {
	content: "";
	display: block;
	position: absolute;
	right: 25px;
	top: 50%;
	width: 16px;
	height: 20px;
	background: url(/templates/cmaj_new/images/common/ico_pdf.png) no-repeat 0 0;
	background-size: contain;
	border: 0;
	transform: translateY(-50%);
}

.btn_pdf.in-block {
	padding-right: 58px;
}


/* --------------------------------------------------
  LOWER PAGE STYLES
  -------------------------------------------------- */
.pg_lower .header {
	transform: translateY(-99.9%);
}

.pg_lower .header.active {
	transform: translateY(0);
}

.ttlSection {
	position: relative;
    background: var(--keyColor);
    color:  #fff;
    margin-top: 2em;
}

.ttlSection:before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 15%;
    height: 100%;
    background: #fff;
}

.ttlSection .pgTitle {
    font-size: 2.8em;
    letter-spacing: .07em;
    line-height: 1;
    font-weight: 500;
}

.pg_lower .ttlSection + section {
	padding-top: 0;
}

.directoryFrame li {
	display: inline;
	padding: 0 .5em 0 0;
	font-size: .85em;
	color: #777;
}

.directoryFrame li a {
	padding: 0 .5em 0 0;
}


/* ---------------------------
  CONTACT PAGE STYLES
  ----------------------------*/
.pg_contact .flowList {
    display: flex;
    margin: 0 auto 3em;
    border-radius: 3px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.pg_contact .flowList li {
    flex-grow: 1;
    position: relative;
    padding: 1em 1em 1em 2.5em;
    color: #666;
    background: #f8f8f8;
}

.pg_contact .flowList li:first-child {
    padding-left: 1.5em;
}

.pg_contact .flowList li:last-child:before {
	display: none;
}

.pg_contact .flowList li:before {
    content: "";
    display: block;
    width: 2.5em;
    height: 2.5em;
    border-top: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%) rotate(45deg) skew(10deg, 10deg);
    z-index: 1;
}

.pg_contact .flowList li .step {
	display: inline-block;
	margin: 0 .5em;
}

.pg_contact .flowList li.current {
    color: #fff;
    font-weight: bold;
    background: var(--keyColor);
}

.pg_contact .flowList li.current:before {
    border-color: var(--keyColor);
    background: var(--keyColor);
}

.pg_contact .commonList {
	padding-bottom: 3em;
	border-top: 0;
}

.pg_contact .commonList .th {
	position: relative;
	padding-left: 0;
}

.pg_contact .commonList .hissu,
.pg_contact .commonList .ninni {
	display: inline-block;
	margin: 0 1.5em 0 0;
	padding: 2px 3px;
	width: 3em;
	line-height: 1.2;
	font-size: 12px;
	font-weight: normal;
	color: #ee0000;
	border: 1px solid #ee0000;
	text-align: center;
}

.pg_contact .commonList .ninni {
	color: #3586c7;
	border-color: #3586c7;
}

.pg_contact .commonList .td input[type="text"],
.pg_contact .commonTbl td input[type="text"], 
.pg_contact .commonList .td textarea {
	width: 100%;
}

.pg_contact .commonList .inner label {
	width: calc(50% - .5em)
}

.pg_contact .commonList .colWrap > label {
    min-width: 5.5em;
}

.pg_contact .commonList .colWrap > label + label {
    margin-left: 2.5em;
}

.pg_contact .commonList .colWrap > .item + .item {
    margin-left: 2.5em;
}

.pg_contact .commonList .inner .labelHead {
	display: flex;
	align-items: center;
	align-content: center;
	width: 2.5em;
	padding-top: 22px;
}

.pg_contact .commonList .inner .labelBody {
	flex: 1 1 auto;
	max-width: calc(100% - 2.5em);
}

.pg_contact .commonList .inner .labelBody input {
	width: 100%;
}

.pg_contact .guide {
	margin: .5em 0 0;
	font-size: 12px;
	color: #666;
}

.pg_contact .guide_popup {
  position: relative;
	margin: .75em 0 0;
  padding-left: 1.65em;
	font-size: .9em;
}

.pg_contact .guide_popup:before {
    content: "?";
    display: block;
    position: absolute;
    left: 0;
    top: .3em;
    width: 1.2em;
    height: 1.2em;
    line-height: 1.12em;
    text-align: center;
    font-weight: bold;
    background: #c3e8e7;
    border: 1px solid #92c5be;
    color: #237b6d;
    border-radius: 50%;
}

.pg_contact .guide_popup a {
    text-decoration: underline !important;
}

.pg_contact .guide_popup a:hover {
    cursor: pointer;
    opacity: .7;
}

.sel select {
    appearance: none;
    padding: .35em .5em;
    width: 100%;
}

.sel {
    position: relative;
     width: fit-content; 
    width: 100%;
}

.sel:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: .75em;
    width: .4em;
    height: .4em;
    border-bottom: 2px solid var(--keyColor);
    border-right: 2px solid var(--keyColor);
    transform: translateY(-50%) rotate(45deg);
    z-index: 1;
}

.pg_contact input:disabled {
    opacity: .5;
}

/* radio toggle */
.pg_contact .input_toggle {
	position: relative;
	display: flex;
	min-width: 10em;
	margin-inline: auto;
	border: 1px solid #999;
	border-radius: 3px;
	line-height: 1;
}

.pg_contact .input_toggle label {
	flex: 1;
	padding: .7em;
	cursor: pointer;
	text-align: center;
	transition: all .3s ease-out;
	white-space: nowrap;
}

.pg_contact .input_toggle label + label {
	border-left: 1px solid #999;
}

.pg_contact .input_toggle label:hover {
	background: #def9f9;
}

.pg_contact .input_toggle label:has(input:checked) {
	background: var(--keyColor);
	color: #fff;
}

.pg_contact .input_toggle label.checkedOn {
    background: var(--keyColor);
    color: #fff;
}

.pg_contact .input_toggle label input {
	display: none;
}

/* check button */
.pg_contact .input_check {
	display: block;
	position: relative;
	margin-inline: auto;
	width: min(100%, 4em);
	border: 1px solid #999;
	border-radius: 3px;
	white-space: nowrap;
}

.pg_contact .input_check label {
	display: block;
	padding: .7em .2em;
	min-width: 4em;
	cursor: pointer;
	line-height: 1;
	text-align: center;
	transition: all .3s ease-out;
}

.pg_contact .input_check input {
	display: none;
}

.pg_contact .input_check label:hover {
	background: #def9f9;
}

.pg_contact .input_check label:has(input:checked) {
	background: var(--keyColor);
	color: #fff;
}

.pg_contact .input_check label.checkedOn {
    background: var(--keyColor);
    color: #fff;
}

.pg_contact .commonList .itemWrap .colWrap {
	padding: .5em 0;
}

.pg_contact .commonList .itemWrap .inputArea {
	flex-grow: 1;
}

.pg_contact .commonList .itemWrap .tmp {
	display: none;
}

.pg_contact .commonList .itemWrap .inputArea .row:not(.tmp)  + .row {
	margin-top: 1em;
}

.pg_contact .commonList .itemWrap .btn_add {
	margin-top: .25em;
	padding: .5em 1em .5em .5em;
	font-size: 1em;
	width: 6em;
	border-radius: 2px;
}

.pg_contact .commonList .itemWrap .btn_add:before {
	content: "＋";
	width: 7px;
	right: 1em;
	height: 1em;
	font-weight: bold;
	border: 0;
	line-height: 1em;
	transform: translateY(-50%);
}

.pg_contact .commonList .itemWrap .btn_add:hover:before {
	margin: 0;
}

.pg_contact .commonList .th.colWrap {
	gap: 1em;
	flex: 1;
	max-width: 25em;
}

.pg_contact .commonList .th.colWrap > * {
	flex: 1;
}

.pg_contact .commonList .th > .label {
	flex: 0 0 4.5em;
	text-align: center;
}

.pg_contact .commonList .time {
	font-weight: normal;
}

@media print, screen and (min-width: 500px) {
	.pg_contact .commonList .th,
	.pg_contact .commonList .td {
		padding-top:25px;
		padding-bottom: 25px;
	}

	.pg_contact .commonList .th {
		display: flex;
		align-items: center;
		align-content: center;
		max-width: initial;
		min-width: 21em;
		flex-grow: 0;
	}

	.pg_contact .commonList .td {
		min-width: 14em;
	}
}


.attentionBox {
	padding: 1em;
	border: 1px solid #ee0000;
	background: rgb(255, 242, 244);
}

.attentionBox a {
	color: #ee0000;
	text-decoration: underline;
}

.btn_doc {
	margin-bottom: min(6%, 3em);
}

@media print, screen and (max-width: 991px) {
	.btn_doc {
		margin-top: 0;
	}
}

@media print, screen and (max-width: 1080px) {
	.ttlSection {
		padding-block: min(65px, 4%);
	}

	.ttlSection .pgTitle {
		padding-right: 15%;
		font-size: min(2em, 4.148vw);
		line-height: 1.3;
	}
}

/* --------------------------------------------------
  ********** LESS THAN 991px WIDTH **********
  -------------------------------------------------- */
@media print, screen and (max-width: 991px) {
	body {
		font-size: 15px;
	}

	.pc {
		display: none;
	}

	.tab, .tab.sp, .tab.sp2 {
		display: block !important;
	}

	.content {
		padding-bottom: 80px;
	}

	.section {
		padding: 45px 0;
	}

	.section .article + .article {
		margin-top: 45px;
	}

	.container {
		padding: 0 35px;
	}

	.btn.right {
		float: none;
		margin-left: auto;
		margin-right: auto;
	}
}

/* *************************************************************
   LESS THAN width 767px
**************************************************************** */
@media print, screen and (max-width: 767px) {
	body {
		font-size: 13px;
	}

	body.fixed {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
	}

	body.fixed:before {
		visibility: visible;
		opacity: 0.4;
	}

	img {
		max-width: 100%;
		height: auto;
	}

	.pc, .tab, .pc.tab, .pc.sp2, .tab.sp2, sp2 {
		display: none !important;
	}

	.sp {
		display: block !important;
	}

	.sp-mt0 {
		margin-top: 0 !important;
	}

	.sp-mb0 {
		margin-bottom: 0 !important;
	}

	.sp-ml0 {
		margin-left: 0 !important;
	}

	.sp-mr0 {
		margin-right: 0 !important;
	}


	.sp-pt0 {
		padding-top: 0 !important;
	}

	.sp-pb0 {
		padding-bottom: 0 !important;
	}

	.sp-pl0 {
		padding-left: 0 !important;
	}

	.sp-pr0 {
		padding-right: 0 !important;
	}

	.sp-mt5 {
		margin-top: 5px !important;
	}

	.sp-mt10 {
		margin-top: 10px !important;
	}

	.sp-mt15 {
		margin-top: 15px !important;
	}

	.sp-mt20 {
		margin-top: 20px !important;
	}

	.sp-mt25 {
		margin-top: 25px !important;
	}

	.sp-mt30 {
		margin-top: 30px !important;
	}

	.sp-mt35 {
		margin-top: 35px !important;
	}

	.sp-mb5 {
		margin-bottom: 5px !important;
	}
s
	.sp-mb10 {
		margin-bottom: 10px !important;
	}

	.sp-mb15 {
		margin-bottom: 15px !important;
	}

	.sp-mb20 {
		margin-bottom: 20px !important;
	}

	.sp-mb25 {
		margin-bottom: 25px !important;
	}

	.sp-mb30 {
		margin-bottom: 30px !important;
	}

	.sp-mb35 {
		margin-bottom: 35px !important;
	}

	.sp-ml10 {
		margin-left: 10px !important;
	}

	.sp-ml1em {
		margin-left: 1em !important;
	}

	.sp-pt10 {
		padding-top: 10px !important;
	}

	.sp-pt15 {
		padding-top: 15px !important;
	}

	.sp-pt20 {
		padding-top: 20px !important;
	}

	.sp-pt25 {
		padding-top: 25px !important;
	}

	.sp-pt30 {
		padding-top: 30px !important;
	}

	.sp-pb10 {
		padding-bottom: 10px !important;
	}

	.sp-pb15 {
		padding-bottom: 15px !important;
	}

	.sp-pb20 {
		padding-bottom: 20px !important;
	}

	.sp-pb25 {
		padding-bottom: 25px !important;
	}

	.sp-pb30 {
		padding-bottom: 30px !important;
	}


	/* ===== FLEX BOX ===== */
	.sp-colWrap {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}

	.sp-colWrap.sp-col {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}

	.sp-colWrap.sp-wrap {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}

	.sp-colWrap.sp-col-rev {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
	}

	.sp-colWrap.sp-boxAlign-left {
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
	}

	.sp-colWrap.sp-boxAlign-right {
		-webkit-box-pack: end;
		    -ms-flex-pack: end;
		        justify-content: flex-end;
	}

	.sp-colWrap.sp-boxAlign-center {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}

	.sp-colWrap.sp-mdl > *,
	.sp-colWrap > .sp-mdl:not(.sp-colWrap) {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-ms-flex-line-pack: center;
		    align-content: center;
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
	}

	.sp-colWrap.sp-mdl.ct > *,
	.sp-colWrap.sp-mdl > .ct,
	.sp-colWrap > .sp-mdl.ct:not(.sp-colWrap) {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}

	.sp-colWrap.sp-col2 > * {
		width: 50%;
	}

	.sp-colWrap.sp-col3 > * {
		width: 33.33%;
	}
	/* ===== end - FLEX BOX ===== */

	table:not(.sp-table) th,
	table:not(.sp-table) td,
	table.tab-table:not(.sp-table) th,
	table.tab-table:not(.sp-table) td {
		display: block;
		width: 100% !important;
		border-bottom: 0;
	}

	table:not(.sp-table) th {
		padding: 8px 8px 4px;
		font-weight: bold;
		border-bottom: 0;
	}

	table:not(.sp-table) td {
		padding: 15px 1em;
		border-top: 0;
	}

	table.sp-table th,
	table.sp-table td {
		padding: 8px;
		font-weight: normal;
	}

	.sp-text-center {
		text-align: center;
	}

	.sp-text-left {
		text-align: left;
	}

	.sp-text-right {
		text-align: right;
	}

	.sp-block {
		display: block;
	}

	.sp-in-block {
		display: inline-block;
	}

	.sp-inline {
		display: inline;
	}

	.commonTbl {
		border-bottom: 1px solid #ccc;
		font-size: .9em;
	}

	.commonList.list_dot li:before {
		top: calc(.6em + 5px);
		left: 5px;
	}

	input[type="text"],
	input[type="tel"],
	input[type="email"],
	select,
	textarea {
		padding: 6px;
		border-radius: 4px;
	}

	input[type="text"].sp-max,
	input[type="tel"].sp-max,
	input[type="email"].sp-max,
	select.sp-max,
	textarea.sp-max {
		width: 100%;
	}

	.content {
	}

	.section {
		padding: 30px 0;
	}

	.section .article + .article {
		margin-top: 35px;
	}

	.container {
		padding: 0 25px;
	}

	.btn {
		padding: 16px 10px;
		font-size: 14px;
		letter-spacing: 0;
	}

	.btn_input {
		padding: 0;
	}

	.btn_input input {
		padding: 16px 10px;
	}
	.btn.in-block {
		padding: 16px 15px;
	}

	.btn_pdf {
		padding-right: 35px;
	}

	.btn_pdf:before {
		right: 16px;
	}

	.btn_pdf.in-block {
		padding-right: 45px;
	}

	.btn.btn_white {
		padding: 20px;
		font-size: 13px;
		min-width: 270px;
	}

	.btn.btn_white .sp-block {
		margin-top: 7px;
		margin-bottom: -7px;
	}

	/* --------------------------------------------------
	  LOWER PAGE STYLES
	  -------------------------------------------------- */
	.ttlSection {
		margin-top: 1.5em;
		padding: 1.5em 0;
	}

	.ttlSection .pgTitle {
		font-size: max(4.1vw, 1.6em);
        line-height: 1.4;
        letter-spacing: .03em;
	}

	.ttl {
		margin: 0 0 25px;
		font-size: 18px;
	}

	.ttl_m {
		margin-bottom: 20px;
		padding-left: 15px;
		font-size: 17px;
	}

	.ttl2 {
		font-size: 17px;
		margin-bottom: 1em;
	}

	.ttl_s {
		font-size: 16px;
	}
	/* ---------------------------
	  CONTACT PAGE STYLES
	  ----------------------------*/
	.pg_contact .flowList {
		margin-bottom: 35px;
	}

	.pg_contact .commonList {
		padding-bottom: 25px;
	}

	.pg_contact .commonList:not(.sp-commonList) .tr {
		padding-bottom: 15px;
	}

	.pg_contact .commonList .hissu,
	.pg_contact .commonList .ninni {
		position: absolute;
		right: 0;
		font-size: 11px;
	}

	.pg_contact .commonList:not(.sp-commonList) .td {
		padding-top: 10px;
	}

	.pg_contact .commonList .colWrap > .item + .item {
	    margin: 2.5em 0 0;
	}
}

@media print, screen and (max-width: 499px) {
	.sp2, .pc.sp2, .tab.sp2, .sp.sp2 {
		display: block !important;
	}

	.colWrap.sp2-block,
	.tab-colWrap.sp2-block,
	.sp-colWrap.sp2-block {
		display: block;
	}

	.colWrap.sp2-block > *,
	.tab-colWrap.sp2-block > *,
	.sp-colWrap.sp2-block > * {
		width: 100%;
	}

	.pg_contact .flowList {
		font-size: 2.5vw;
		letter-spacing: .03em;
}

	.pg_contact .flowList li .step {
		font-size: 0.85em;
		margin: 0 .85em 0 0;
	}

	.sp-commonList.sp2-col > .tr {
		display: block;
		padding: 10px 0;
	}

	.pg_contact .commonList.sp-commonList .th,
	.pg_contact .commonList.sp-commonList .td {
		padding-top: 0
	}

	.pg_contact .commonList .th.colWrap {
		gap: .5em;
	}
}

@media print {
	header.fixed {
		position: absolute !important;
	}

	footer, .menuBtn, .gnav, .pageTop {
		display: none !important;
	}

	.fadeIn, .fadein,
	.fadeInUp, .fadeinup,
	.fadeInDown, .fadeindown,
	.slideIn,
	.fadeInZoom {
		opacity: 1 !important;
		display: block;
		transition: none !important;
		transform: none !important;
	}

	.btn {
		display: none;
	}

	.page1 {
		/*   zoom: 0.68; */
		/* zoom: .6; */
		zoom: .56;
		-webkit-print-color-adjust: exact;
	}
}


/* IE10以上 */
@media print and (-ms-high-contrast: none) {
        /* @pageの指定いらないかも */
    @page page1 {
        size: A4;
        margin: 12.7mm 9.7mm;
    }

    .page1 {
        zoom: 1.8;
        width: 1200px;
        transform: scale(0.5);
        transform-origin: 0 0;
		page: page1;
    }
}