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

html {
	font-size: 62.5%;/* 16px x 0.625 = 10px(=1rem) */
	height: 100%;
}
body {
	font-size: 1.5rem;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Segoe UI", "Meiryo", sans-serif;
	color: #333333;
	margin: 0;
	line-height: 1.6;
	font-weight: normal;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	height: 100%;
}
@media (max-width: 768px) {
	body {
		font-size: 1.3rem;
		line-height: 1.8;
	}
}
h1 {
	margin: 0;
}
div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
	margin: 0;
	padding: 0;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
fieldset, img {
	border: 0;
}
address, caption, cite, code, dfn, em, strong, th, var {
	font-style: normal;
	font-weight: normal;
}
ol, ul {
	list-style: none;
}
caption, th {
	text-align: left;
}
p {
}
a {
	text-decoration: none;
}
@media (max-width: 768px) {
	img {
		width:100%;
		max-width: 100%;
		height: auto;
	}
}
.gleenbg_box {
	background: #269eb4;
	position: relative;
}
.white {
	color: #fff;
}
.terminal_caution {
	margin-top: 30px;
	color: #fff;
	font-size: 3.0rem;
	line-height: 3.2rem;
	text-align: center;
}
@media (max-width: 768px) {
	.terminal_caution {
		font-size: 1.8rem;
		line-height: 2.0rem;
		margin-top: 20px;
	}
}
.caution_yellow {
	color: #ebe137;
	font-size: 4.4rem;
	font-weight: bold;
}
@media (max-width: 768px) {
	.caution_yellow {
		font-size: 2.2rem;
	}
}
.terminal_txt {
	text-align: center;
	color: #fff;
	margin-top: 30px;
	padding-bottom: 50px;
}
@media (max-width: 768px) {
	.terminal_txt {
		margin-top: 20px;
		padding-bottom: 20px;
	}
}


/* ----- clear ----- */
.clear {
	clear: both;
}
.clearfix,div,ul,dl,ol {
	zoom: 1;
}
.clearfix:after, div:after, ul:after, dl:after, ol:after {
	content: "";
	display: block;
	clear: both;
}

/* ----- ヘッダー ----- */
.header_area {
	border-bottom: 1px solid #f2f3f3;
}
@media (max-width: 768px) {
	.header_area {
		margin: 10px 0 0;
		border-bottom: none;
	}
}
.header_inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 86px;
	overflow: visible;
}
@media (max-width: 768px) {
	.header_inner {
		display: block;
		height: auto;
	}
}
.logo_conts {
	justify-content: flex-start;
	text-align: left;
	margin-left: 12px;
	width: 250px;
}
@media (max-width: 768px) {
	.logo_conts img {
		width: 200px;
	}
}
.header_menu {
	flex-grow: 1;
}
.menu_box {
	justify-content: flex-end;
	display: flex;
}
@media (max-width: 768px) {
	.menu_box {
		display: block;
	}
}

/*ハンバーガーアイコン*/
.btn-burger {
    display: none;
}
@media (max-width: 768px) {
	.btn-burger {
		cursor: pointer;
		display: block;
		width: 56px;
		height: 60px;
		position: absolute;
		top: -5px;
		right: 10px;
	}
}

/*ハンバーガーアイコンを作る三本線*/
@media (max-width: 768px) {
	.icon, .icon:before, .icon:after {
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
		bottom: 0;
		height: 2px; /*線の太さ*/
		width: 35px; /*線の長さ*/
		background-color: #444;
		border-radius: 2px;
		display: block;
	   content: '';
		cursor: pointer;
		margin: auto;
	}
}

/*三本線の間隔*/
@media (max-width: 768px) {
	.icon:before {
	  top: 10px;
	}
}
@media (max-width: 768px) {
	.icon:after {
	  top: -20px;
	}
}

/*チェックボックス非表示*/
.nav-toggle {
	display: none;
}

/*アイコンをクリックしたら*/
@media (max-width: 768px) {
	.nav-toggle:checked ~ .btn-burger .icon {
		background: transparent;
	}
}
@media (max-width: 768px) {
	.nav-toggle:checked ~ .btn-burger .icon:before {
		transform: rotate(-45deg);
		top: 0;
	}
}
@media (max-width: 768px) {
	.nav-toggle:checked ~ .btn-burger .icon:after {
		transform: rotate(45deg);
		top: 0;
	}
}
@media (max-width: 768px) {
	.icon,
	.icon:before,
	.icon:after {
		transition: all .8s;
	}
}

/*表示されるメニューの中身*/
.nav {
}
@media (max-width: 768px) {
	.nav {
		background-color: #dde7ed;

	}
}
@media (max-width: 768px) {
	.nav-list a {
		display: block;
		text-decoration: none;
		color: #fff;
	}
}
.nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 768px) {
	.nav-list {
		list-style: none;
		display: none;
		margin: 0;
	}
}
@media (max-width: 768px) {
	.nav-list li {
		margin: 0;
		padding: 10px;
	}
}
.nav-list li a {
    color: #333333;
	padding-right: 18px;
	padding-left: 18px;
	height: 86px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease;
}
@media (max-width: 768px) {
	.nav-list li a {
		height: auto;
		padding: 10px 18px;
	}
}
.nav-toggle:checked ~ .nav .nav-list {
		display: none;
}
@media (max-width: 768px) {
	.nav-toggle:checked ~ .nav .nav-list {
		display: block;
	}
}
.current {
	background-color: #80b5dd;
	color: #fff !important;
}
.nav-list li a:hover {
	background-color: #80b5dd;
	color: #fff !important;
}
.nav-list li a span {
	position: relative;
	display: inline-block;
	font-size: 100%;
	vertical-align: baseline;
	box-sizing: border-box;
}
.menu_description {
	display: block;
	line-height: 1;
	font-weight: 300;
	letter-spacing: 0.04em;
	opacity: 0.8;
}



/* ----- 枠 ----- */
.charm {
	padding: 50px 0 30px;
}
@media (max-width: 768px) {
	.charm {
		padding: 20px 0;
	}
}
.charm_1 {
	padding: 0;
}
.inner {
	width: 1000px;
	margin: 0 auto;
}
@media (max-width: 768px) {
	.inner {
		margin: 20px auto 0;
		width: auto;
		padding: 0 5px;
	}
}
.bg_color {
	background: #dae4e6;
}
.breadcrumb {
	margin-top: 20px;
	margin-bottom: 20px;
}
.breadcrumb ol {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	line-height: 1.6;
}
.breadcrumb ol li {
	display: inline;
	margin-left: 20px;
	font-size: 1.3rem;
}
.breadcrumb ol li a {
	color: #004e8e;
}
.breadcrumb ol li:first-child {
	margin-left: 0;
}
h2.common_ttl {
	line-height: 2;
	letter-spacing: 0.05em;
	text-align: center;
	font-size: 3.0rem;
	padding-top: 50px;
}
@media (max-width: 768px) {
	h2.common_ttl {
		font-size: 1.8rem;
		padding-top: 10px;
		line-height: 1;
	}
}
.contact_flow {
	background: linear-gradient(170deg, #7cbcf4, #eadcf2);
	padding-bottom: 50px;
	margin-top: 30px;
}
@media (max-width: 768px) {
	.contact_flow {
		padding-bottom: 20px;
		margin-top: 10px;
	}
}
.contact_flow_links {
	margin-top: 20px;
	text-align: center;
}
@media (max-width: 768px) {
	.contact_flow_links {
		margin-top: 10px;
	}
}
.contact_flow_txt {
	font-weight: bold;
}
.contact_flow_links a {
	border-radius: 25px;
	border-width: 1px;
	border-style: solid;
	position: relative;
	display: inline-block;
	max-width: 100%;
	padding-top: 6px;
	padding-bottom: 6px;
	text-decoration: none !important;
	text-align: center;
	cursor: pointer;
	-webkit-transition: all ease 0.3s;
	-o-transition: all ease 0.3s;
	transition: all ease 0.3s;
	vertical-align: bottom;
	background-color: #007bff;
	border-color: #fff;
	color: #fff;
	padding-right: 48px;
	padding-left: 48px;
	margin-top: 10px;
}
.contact_flow_links a:hover {
	background-color: #93b5cd;
	color: #ffffff;
}
.contact_flow_links a span {
	line-height: 1;
	letter-spacing: 0em;
	font-weight: bold;
	overflow-wrap: break-word;
	word-break: break-all;
}

.tax_conts {
	margin-top: 50px;
	text-align: right;
	font-size: 1.3rem;
}
@media (max-width: 768px) {
	.tax_conts {
		margin-top: 20px;
	}
}

/* ----- フッター ----- */
footer {
	background: #484848;
	padding: 20px 0;
}
.footer_links ul {
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	justify-content: center;
}
.footer_links ul li {
	padding-right: 18px;
	padding-left: 18px;
}
@media (max-width: 768px) {
	.footer_links ul li {
		padding: 0 8px;
	}
}
.footer_links ul li a {
	color: #fff;
}
.footer_copy {
	margin-top: 50px;
	text-align: center;
	color: #fff;
	font-size: 1.2rem;
}
#common_footer {
	position: sticky;
  top: 100vh;
  width: 100%;
}

/*----------- 追加 ------------*/
a.link {
	color: #80b5dd;
}
