@charset "utf-8";

/*----------------------------
	common
------------------------------*/
* {
	box-sizing: border-box;
}
html {
	font-size: 10px;
	color: #333;
}
@media (max-width: 1000px) {
	html {
		font-size: 1vw;
	}
}
@media (max-width: 768px) {
	html {
		font-size: 1.333333vw;
	}
}
body.menuOpen {
	overflow: hidden;
	width: 100%;
	height: 100%;
}
button, input, select, textarea {
	font: inherit;
	color: inherit;
	background: transparent;
	border: none;
	border-radius: 0;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}
button {
	cursor: pointer;
}
textarea {
	resize: vertical;
}
a {
	color: #333;
	text-decoration: none;
}
a,
button {
	transition: opacity 0.3s ease-out;
}
a:hover,
button:hover {
	opacity: 0.7;
}
img {
	max-width: 100%;
	height: auto;
}
img[src$=".svg"] {
	width: 100%;
	height: auto;
}
/* スクリーンリーダー用 */
.srOnly {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.wrapper {
	margin: 0 auto;
	max-height: 100%; /*for android*/
}
main {
	margin-bottom: 5rem;
	font-size: 1.7rem;
	font-family: "Noto Sans CJK JP", sans-serif;
	font-feature-settings: "palt";
	line-height: 1;
	color: #231815;
}
.wrap {
	margin: 0 auto;
	width: 90%;
	position: relative;
	box-sizing: border-box;
}
.sp {
	display: none;
}
@media (max-width: 768px) {
	main {
		font-size: 3.4rem;
	}
	.sp {
		display: block;
	}
	.pc {
		display: none;
	}
}

a.disabled {
	pointer-events: none;
}
.red {
	color: #FF0000;
}
.common-mark {
	padding: .7rem 0;
	width: 8rem;
}
.serif {
	font-family: "Noto Serif CJK JP", serif;
}
/* --------------------------------
  menu
-------------------------------- */
/* menuButton */
.menuButton {
	position: fixed;
	top: 2.5rem;
	right: 3rem;
	width: 4.4rem;
	height: 2.7rem;
	z-index: 20000;
	cursor: pointer;
}
.menuButton .lines {
	position: absolute;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #000000;
}
.menuButton .line01 {
	top: 0;
}
.menuButton .line02 {
	top: 50%;
	margin-top: -1.5px;
}
.menuButton .line03 {
	bottom: 0;
}
.menuOpen .menuButton {
	right: calc(50% - 30rem);
	height: 4.4rem;
}
.menuOpen .menuButton .lines {
	background-color: #aaa;
}
.menuOpen .menuButton .line01 {
	top: 3rem;
	transform: rotate(45deg);
}
.menuOpen .menuButton .line02 {
	display: none;
}
.menuOpen .menuButton .line03 {
	top: 3rem;
	transform: rotate(-45deg);
}
@media (max-width: 1280px) {
	.menuButton {
		position: sticky;
		top: 1.5rem;
		right: 5rem;
		margin-left: auto;
		margin-top: 1rem;
		width: 4.4rem;
		display: block;
	}
	.menuOpen .menuButton {
		margin-top: -6rem;
	}
}
@media (max-width: 768px) {
	.menuButton {
		right: 2.5rem;
	}
	.menuOpen .menuButton {
		right: calc(50% - 30rem);
		margin-top: -7rem;
	}
}
/* menu */
.menu {
	opacity: 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,.8);
	box-sizing: border-box;
	z-index: 10001;
	overflow: auto;
}
.menuOpen .menu {
	opacity: 1;
}
.menu .inner {
	max-width: 69rem;
	margin: 0 auto;
	background: #164778;
	padding: 3.5rem 3rem;
	position: relative;
}
.menu .title {
	font-size: 3.5rem;
	text-align: center;
	letter-spacing: .2em;
	color: #fff
}
.menu .lists {
	margin-top: 2rem;
}
.menu li + li {
	margin-top: 1rem;
}
.menu li a {
	display: block;
	font-size: 3rem;
	font-weight: 600;
	line-height: 4rem;
	text-align: center;
	color: #164778;
	background: #dce4ee;
	padding: 1rem 1.5rem 1rem;
}
.menu li a span {
	font-size: 2.7rem;
}
.menu li.white {
	background-color: #fff;
	padding: 1rem;
}
.menu li.white a {
	font-size: 3rem;
	line-height: 1;
	background: #fff;
	padding: 1.5rem;
}
.menu li.white p {
	font-size: 3rem;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	color: #fff;
	background: #164778;
	padding: 1.3rem 1.5rem;
}
.menu .blue li + li {
	margin-top: 0;
	border-top: solid 2px #164778;
}
.menu .blue li a {
	font-size: 3rem;
	line-height: 4rem;
	color: #164778;
	padding: 1rem 1.5rem 1.5rem;
}
.menu .blue li span {
	display: inline-block;
	font-size: 2.2rem;
	line-height: 3rem;
}

/* onlineBtn */
.onlineBtn {
	margin: 1rem 0;
	display: inline-block;
	width: 27.5rem;
	font-size: 1.6rem;
	font-weight: 500;
	text-align: center;
	padding: 0.5rem;
	border: 1px solid #000;
	border-radius: 2rem;
	position: relative;
}
.onlineBtn::after {
	content: "";
	display: block;
	position: absolute;
	width: 1rem;
	height: 1rem;
	border-bottom: 1px solid #000;
	border-right: 1px solid #000;
	top: 50%;
	right: 3rem;
	transform: translateY(-50%) rotate(-45deg);
}
@media (max-width: 768px) {
	.onlineBtn {
		margin: 1.5rem 0;
		padding: 0.8rem;
		width: 80%;
		max-width: 50rem;
		font-size: 2.6rem;
		border-radius: 4rem;
	}
	.onlineBtn::after {
		width: 1.4rem;
		height: 1.4rem;
	}
}

/* --------------------------------
  footBnr pageAnnotation
-------------------------------- */
.footBnr {
	margin-top: 10rem;
	padding-top: 3.5rem;
	border-top: solid 1px #000;
}
.footBnr p {
	width: 31.4rem;
	margin: 0 auto;
}
.footBnr p + p {
	margin-top: 2rem;
}

.pageAnnotation {
	margin-top: 4rem;
	padding-top: 3rem;
	border-top: solid 1px #000;
	font-size: 1.4rem;
	line-height: 2.2rem;
	padding-left: 1em;
	text-indent: -1em;
}
@media (max-width: 768px) {
	.footBnr {
		margin-top: 7.5rem;
		padding-top: 4.5rem;
		border-top: solid 2px #000;
	}
	.footBnr p {
		width: 62.9rem;
	}
	.footBnr p + p {
		margin-top: 4rem;
	}
	
	.pageAnnotation {
		margin-top: 5.5rem;
		padding-top: 4rem;
		border-top: solid 2px #000;
		font-size: 2.8rem;
		line-height: 4.5rem;
	}
}

/* --------------------------------
  pageTop
-------------------------------- */
.pageTop {
	position: fixed;
	bottom: 2rem;
	right: 3%;
	width: 4rem;
}
@media (max-width: 768px) {
	.pageTop {
		bottom: 2rem;
		right: 3rem;
		width: 8rem;
	}
}

/* --------------------------------
  modal
-------------------------------- */
.modal {
	position: fixed;
	z-index: 20005;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,.95);
	box-sizing: border-box;
	overflow: auto;
}
/* micromodal.min.js用のクラス管理 */
.modal[aria-hidden="false"] {
	display: block;
}
@keyframes mmfadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}
@keyframes mmfadeOut {
	from { opacity: 1; }
	to { opacity: 0; }
}
.micromodalSlide[aria-hidden="false"] .modalOverlay {
	animation: mmfadeIn .5s cubic-bezier(0.0, 0.0, 0.2, 1);
}
.micromodalSlide[aria-hidden="true"] .modalOverlay {
	animation: mmfadeOut .5s cubic-bezier(0.0, 0.0, 0.2, 1);
}
.micromodalSlide .modalOverlay {
	will-change: transform;
}
.modal .moName {
	background-color: #00977b;
	padding: 1.5rem;
	text-align: center;
	font-size: 3.5rem;
	line-height: 1.4;
	color: #fff;
	margin-bottom: 4.5rem;
}
.modal .close {
	position: fixed;
	top: 2.5rem;
	right: 5rem;
	width: 4.4rem;
	height: 3rem;
	z-index: 4000;
	cursor: pointer;
}
.modal .close .lines {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 3px;
	background-color: #000000;
}
.modal .close .line01 {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}
.modal .close .line02 {
	opacity: 0;
}
.modal .close .line03 {
	top: 50%;
	bottom: auto;
	transform: translateY(-50%) rotate(-45deg);
}
.modal .inner {
	max-width: 83rem;
	margin: 0 auto;
	text-align: center;
	padding: 6rem 0 8rem;
}
.modal .lead {
	font-size: 4rem;
	line-height: 1.3;
	display: inline-block;
	padding-bottom: .3rem;
	border-bottom: 1px solid #000;
	margin-bottom: 6.4rem;
}
.modal .text {
	font-size: 3.5rem;
	font-weight: 600;
	line-height: 1.3;
	padding-bottom: 3rem;
}
.modal .graph01 {
	padding-bottom: 5rem;
}
.modal .graph01 .text {
	color: #00987b;
}
.modal .graph02 {
	padding-bottom: 3rem;
}
.modal .graph02 .text {
	color: #f15b4e;
}
.modal .annotation {
	display: inline-block;
	text-align: left;
	font-size: 2rem;
	line-height: 1.5;
}
.modal .title {
	padding: 0rem 1.5rem 1.5rem;
	text-align: center;
	font-size: 3.5rem;
	line-height: 1.7;
	color: #000;
	margin: 0 auto;
	width: 54rem;
	background-color: #fff !important;
	border-bottom: 1px solid #000;
	margin-bottom: 2.5rem;
	font-weight: bold;
}
.modal .photoLogo {
	margin: 0 auto;
	width: 30.5rem;
	padding-bottom: 2rem;
}
.modal .lead01 {
	font-size: 2rem;
	line-height: 1.4;
	padding-bottom: 3.8rem;
	font-weight: bold;
}
.modal .img01 {
	margin: 0 auto;
	width: 53.6rem;
	padding-bottom: 3.7rem;
}
.modal .lead02 {
	font-size: 2.6rem;
	line-height: 2.1;
	padding-bottom: 3.8rem;
	font-weight: bold;
}
.modal .inTitle {
	color: #00437c;
	margin-bottom: 2.8rem;
	font-weight: bold;
}
.modal .inTitle span {
	display: inline-block;
	padding: .7rem 1.4rem;
	font-size: 3rem;
	font-weight: bold;
	border: 1px solid currentColor;
}
.modal .inLead {
	color: #00437c;
	font-size: 2.45rem;
	line-height: 1.7;
	padding-bottom: 3.1rem;
	font-weight: bold;
}
.modal .img02 {
	margin: 0 auto;
	width: 53.6rem;
	padding-bottom: 8.6rem;
}
.modal .img03 {
	margin: 0 auto;
	width: 56.8rem;
	padding-bottom: 5.6rem;
}
.modal .prices {
	border-top: 1px solid #221714;
	border-bottom: 1px solid #221714;
	padding: 2.2rem 0 2rem;
}
.modal .prices .in {
	display: inline-block;
	text-align: left;
}
.modal .priceSub {
	font-size: 2.3rem;
	font-weight: bold;
	line-height: 1.5;
}
.modal .priceSub .num {
	font-size: 2.8rem;
	line-height: 1.5;
}
.modal .priceSub .mini {
	font-size: 2rem;
}
.modal .txt {
	font-size: 2rem;
	line-height: 1.5;
}
.modal .link {
	padding-bottom: 9rem;
	padding-top: 6.5rem;
	line-height: 1;
}
.modal .link a {
	color: #00437c;
	font-weight: bold;
	display: inline-block;
	padding: .7rem 1.4rem;
	font-size: 2rem;
	border: 1px solid currentColor;
	text-decoration: none;
	width: 37.7rem;
}
@media (max-width: 768px) {
	.modal .inner {
		max-width: 100% !important;
		padding: 8rem 0 !important;
	}
}
