@charset "UTF-8";
/*
Theme Name: レスポンシブテンプレート
Theme URI: 
Description: サインズ
Version: 1.0
Author: sains
Author URI: 
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Noto+Sans+JP:wght@100..900&display=swap');

/******************
ページ共通項目
******************/

body,div,pre,p,blockquote,
form,fieldset,input,textarea,select,option,
dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
table,th,td,embed,object{
	margin: 0;
	padding: 0;
}

body{
    font-family: "Noto Sans JP",Hiragino Sans,"ヒラギノ角ゴシック",Hiragino Kaku Gothic ProN,"ヒラギノ角ゴ ProN W3","メイリオ",Meiryo,sans-serif;
	font-size: 100%;
	font-weight: 400;
	color: #323232;
	line-height: 1.8em;
	-webkit-text-size-adjust: 100%;
	word-break: break-all;
}

img{
	border: none;
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}

li{
	list-style-type: none;	
}

a{
	color: #323232;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	backface-visibility: hidden;
}

a:hover{
	color: #3379d7;
	backface-visibility: hidden;
}

a img{
    -webkit-transition: 0.3s ease-in-out;
       -moz-transition: 0.3s ease-in-out;
         -o-transition: 0.3s ease-in-out;
            transition: 0.3s ease-in-out;
	outline:none;
	box-shadow: #000 0 0 0;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

a:hover img{
	opacity: 0.7;
	-moz-opacity: 0.7;
	-webkit-opacity: 0.7;
}

table{
	border-collapse: collapse;
	border-color: #333333;
}
th{
	font-weight: 500;
}

@media screen and (max-width: 960px) {
	body {
		font-size: 95%;
	}
}

@media screen and (min-width: 768px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}

/******************
全体[共通]
******************/

#wrapper-top, #wrapper{
	width: 100%;
}

/******************
ヘッダー
******************/
.header {
	height: 100px;
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	z-index: 100;
	transition: .3s all ease;
}
.header.scrolled {
	box-shadow: 0px 10px 10px -5px rgba(0, 0, 0, 0.1);
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 95%;
	margin: 0 auto;
}
.header-logo {
	max-width: 230px;
}
.header-logo a {
	display: block;
}
.header-nav {
	height: 100px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.header-nav .nav-upper {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.header-nav .nav-upper a {
	margin-left: 30px;
}
.header-nav .nav-upper a:first-child {
	margin-left: 0;
}
.header-nav .nav-upper .tel {
	text-decoration: none;
	font-family: "Manrope", sans-serif;
	font-size: 130%;
	font-weight: 600;
	letter-spacing: .05rem;
}
.header-nav .nav-upper .tel .number {
	padding-left: 20px;
	position: relative;
}
.header-nav .nav-upper .tel .number:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 12px;
	height: 16px;
	background: url(./images/common/ico_tel.svg) center/100% no-repeat;
}
.header-nav .sp-tel-box .sp-contents {
	display: none;
}
.header-nav .nav-upper .access {
	text-decoration: none;
	font-weight: 500;
	padding-left: 22px;
	position: relative;
}
.header-nav .nav-upper .access:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 15px;
	height: 20px;
	background: url(./images/common/ico_map_pin.svg) center/100% no-repeat;
}
.header-nav .nav-upper .recruit {
	text-decoration: none;
	background: #68a0d8;
	padding: 2px 40px;
	font-size: 90%;
	color: #fff;
	letter-spacing: .05rem;
}
.header-nav .nav-lower {
	
}
.header-nav .nav-lower ul {
	display: flex;
}
.header-nav .nav-lower ul li {
	margin-left: 60px;
}
.header-nav .nav-lower ul li:first-child {
	margin-left: 0;
}
.header-nav .nav-lower > ul li > a {
	color: #323232;
	display: block;
	padding: 7px 0 16px;
	text-decoration: none;
	font-weight: 500;
	position: relative;
	overflow: hidden;
}
.header-nav .nav-lower > ul li > a:after {
	content: "";
	position: absolute;
	bottom: -3px;
	left: 0;
	right: 0;
	margin: auto;
	width: 70%;
	height: 2px;
	background: #68a0d8;
	transition: .3s all ease;
}
.header-nav .nav-lower > ul li > a:hover:after {
	bottom: 0;
}
.header-nav .nav-lower ul li.has-sub-menu a {
	cursor: default;
} 


.header-nav .nav-lower ul li.sp-menu {
	display: none;
}

/*サブメニュー*/
.header-nav .sub-menu-box {
	display: none;
	position: absolute;
	top: 100px;
	left: 0;
	width: 100%;
	background: #ffffff;
	box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
	border-top: 1px solid #68a0d8;
}
.header-nav .sub-menu-inner {
	max-width: 1300px;
	width: 90%;
	margin: 30px auto;
	display: flex;
}
.header-nav .sub-menu-inner .sub-menu-title {
	width: 290px;
	margin-right: 60px;
	border-right: 1px solid #68a0d8;
	display: flex;
	align-items: center;
}
.header-nav .sub-menu-inner .archive-link {
	text-decoration: none;
	display: inline-block;
	padding: 0 0 0 70px;
	position: relative;
}
.header-nav .sub-menu-inner .archive-link:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 50px;
	height: 50px;
}
.header-nav .outpatient .sub-menu-inner .archive-link:before {
	background: url(./images/common/sub_menu_ico_01.png) center/100% no-repeat;
}
.header-nav .inpatient .sub-menu-inner .archive-link:before {
	background: url(./images/common/sub_menu_ico_02.png) center/100% no-repeat;
}
.header-nav .medical-guide .sub-menu-inner .archive-link:before {
	background: url(./images/common/sub_menu_ico_03.png) center/100% no-repeat;
}
.header-nav .about .sub-menu-inner .archive-link:before {
	background: url(./images/common/sub_menu_ico_04.png) center/100% no-repeat;
}
.header-nav .professionals .sub-menu-inner .archive-link:before {
	background: url(./images/common/sub_menu_ico_05.png) center/100% no-repeat;
}
.header-nav .sub-menu-inner .archive-link .jp {
	display: block;
	font-size: 140%;
	font-weight: 600;
	letter-spacing: .1rem;
}
.header-nav .sub-menu-inner .archive-link .eng {
	display: inline-block;
	color: #68a0d8;
	font-size: 90%;
	line-height: 150%;
	font-weight: 400;
	position: relative;
	padding-right: 25px;
}
.header-nav .sub-menu-inner .archive-link .eng:before {
	content: "";
	position: absolute;
	top: 8px;
	right: 0;
	width: 18px;
	height: 8px;
	background: url(./images/common/arrow_right_color_09.svg) center/100% no-repeat;
}
.header-nav .sub-menu-inner ul {
	display: flex;
	flex-wrap: wrap;
	width: calc(100% - 350px);
	margin-top: 15px;
}
.header-nav .sub-menu-inner ul li {
	margin: 0;
	width: calc(33.33% - 20px);
	margin-right: 30px;
	margin-bottom: 15px;
}
.header-nav .sub-menu-inner ul li:nth-child(3n) {
	margin-right: 0;
}
.header-nav .sub-menu-inner ul li a {
	white-space: nowrap;
	font-size: 90%;
	padding: 0 35px 10px 0;
	border-bottom: 1px dashed #b9b9b9;
	position: relative;
	cursor: pointer !important;
}
.header-nav .sub-menu-inner ul li a:hover {
	color: #3379d7;
}
.header-nav .sub-menu-inner ul li a:before {
	content: "";
	position: absolute;
	top: 9px;
	right: 3px;
	width: 26px;
	height: 10px;
	background: url(./images/common/arrow_right_color_09.svg) center/100% no-repeat;
}
.header-nav .sub-menu-inner ul li a:after {
	display: none;
}
.header-nav .sub-menu-inner ul li.has-br a {
	font-size: 85%;
	line-height: 140%;
	padding-bottom: 7px;
	margin-top: -6px;
}
.header-nav .sub-menu-inner ul li.has-br a:before {
	top: 15px;
}


.sp-menu-btn {
	display: none;
}

@media screen and (max-width: 1280px) {
	.header-nav .nav-lower ul li {
		margin-left: 40px;
	}
	
	.header-nav .sub-menu-inner .archive-link {
		padding: 0 0 0 45px;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}
	.header-nav .sub-menu-inner .archive-link:before {
		top: 6px;
		width: 35px;
		height: 35px;
	}
	.header-nav .sub-menu-inner .sub-menu-title {
		width: 230px;
		margin-right: 40px;
	}
	.header-nav .sub-menu-inner .archive-link .jp {
		font-size: 120%;
	}
	.header-nav .sub-menu-inner .archive-link .eng {
		font-size: 80%;
		line-height: 120%;
	}
	.header-nav .sub-menu-inner .archive-link .eng:before {
		top: 5px;
	}
	.header-nav .sub-menu-inner ul {
		width: calc(100% - 270px);
	}
	
	.header-nav .sub-menu-inner ul li {
		margin-left: 0;
	}
	
	.header-nav .about .sub-menu-title {
		width: 170px;
	}
	.header-nav .about .sub-menu-inner ul {
		width: calc(100% - 210px);
	}
}
@media screen and (max-width: 1024px) {
	.header {
		height: 80px;
	}
	.header-inner {
		width: 100%;
	}
	.header-logo {
		max-width: 190px;
		margin-left: 2.5%;
	}
	
	.header-nav .nav-lower ul li.sp-menu {
		display: block;
	}
	
	.header-nav {
		justify-content: flex-start;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(245, 252, 255, 1);
		opacity: 0;
		visibility: hidden;
		transition: .3s all ease;
		overflow: auto;
	}
	.header-nav.open {
		opacity: 1;
		visibility: visible;
	}
	.header-nav .nav-upper {
		flex-direction: column;
		order: 2;
		width: 80%;
		max-width: 620px;
		margin: 0 auto 60px;
	}
	
	.header-nav .nav-lower {
		width: 80%;
		max-width: 620px;
		margin: 180px auto 0;
	}
	.header-nav .nav-lower ul {
		flex-direction: column;
	}
	.header-nav .nav-lower ul li {
		margin-left: 0;
	}
	.header-nav .nav-lower > ul > li {
		border-bottom: 1px solid #cbe2ed;
	}
	.header-nav .nav-lower > ul > li:first-child {
		border-top: 1px solid #cbe2ed;
	}
	.header-nav .nav-lower > ul li > a {
		padding: 20px 10px;
		color: #26507c;
	}
	.header-nav .nav-lower > ul li > a:hover:after {
		bottom: -3px;
	}
	.header-nav .nav-lower .accordion-trigger:before {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		right: 10px;
		margin: auto;
		width: 20px;
		height: 2px;
		background: #68a0d8;
	}
	.header-nav .nav-lower .accordion-trigger:after {
		top: 0;
		bottom: 0;
		left: auto;
		right: 19px;
		width: 2px;
		height: 20px;
	}
	.header-nav .nav-lower .accordion-trigger:hover:after {
		bottom: 0;
	}
	.header-nav .nav-lower .accordion-trigger.open:after {
		height: 0;
	}
	.header-nav .sub-menu-box {
		position: static;
		box-shadow: 0 0 0;
		border-top: 1px solid #cbe2ed;
		background: #ffffff;
	}
	.header-nav .sub-menu-inner {
		max-width: 100%;
		width: 100%;
		margin: 0;
		display: block;
	}
	.header-nav .sub-menu-inner .sub-menu-title {
		display: none;
	}
	.header-nav .sub-menu-inner ul {
		display: block;
		width: 100% !important;
		margin: 0 auto;
	}
	.header-nav .sub-menu-inner ul li {
		width: 100%;
		margin-right: 0;
		margin-bottom: 0;
	}
	.header-nav .sub-menu-inner ul li a {
		padding: 15px 20px;
	}
	.header-nav .sub-menu-inner ul li:last-child a {
		border-bottom: 0;
	}
	.header-nav .sub-menu-inner ul li a:before {
		top: 23px;
		right: 20px;
		width: 21px;
		height: 6px;
	}
	.header-nav .sub-menu-inner ul li.has-br a {
		margin-top: 0;
		padding: 11px 20px;
	}
	.header-nav .sub-menu-inner ul li.has-br a:before {
		top: 24px;
	}
	
	.header-nav .nav-upper .sp-tel-box {
		order: 2;
		margin-top: 40px;
		display: flex;
		flex-direction: column;
	}
	.header-nav .nav-upper a:first-child {
		margin-bottom: 20px;
	}
	.header-nav .sp-tel-box .sp-contents {
		display: block;
	}
	.header-nav .nav-upper .tel {
		display: inline-block;
		margin: 0;
		text-align: center;
		font-weight: 500;
		letter-spacing: .1rem;
	}
	.header-nav .sp-tel-box .title {
		display: block;
		margin-bottom: 5px;
		font-size: 80%;
	}
	.header-nav .nav-upper .tel .number {
		font-size: 130%;
		font-weight: 600;
		color: #114fa1;
	}
	.header-nav .nav-upper .tel .number:before {
		background: url(./images/common/ico_tel_blu.svg) center/100% no-repeat;
	}
	
	.header-nav .nav-upper .access {
		padding-left: 0;
		margin-left: 0;
		width: calc(100% - 20px);
		padding: 20px 10px;
		border-bottom: 1px solid #cbe2ed;
		color: #26507c;
	}
	.header-nav .nav-upper .access:before {
		display: none;
	}
	.header-nav .nav-upper .recruit {
		width: calc(100% - 20px);
		background: transparent;
		color: #26507c;
		padding: 20px 10px;
		margin-left: 0;
		font-size: 100%;
		letter-spacing: 0;
		font-weight: 500;
		border-bottom: 1px solid #cbe2ed;
	}
	
	.sp-menu-btn {
		display: block;
		background: #2373c8;
		width: 80px;
		height: 80px;
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 999999;
	}
	.sp-menu-btn .btn-inner {
		width: 60px;
		height: 60px;
		position: relative;
	}
	.sp-menu-btn .btn-inner:before {
		content: "MENU";
		position: absolute;
		bottom: 6px;
		left: 0;
		right: 0;
		width: 100%;
		text-align: center;
		color: #fff;
		font-size: 80%;
		line-height: 150%;
		font-weight: 500;
	}
	.sp-menu-btn span {
		position: absolute;
		left: 20%;
		width: 60%;
		height: 2px;
		background: #fff;
		transition: .3s all ease;
	}
	.sp-menu-btn span:nth-child(1) {
		top: 12px;
	}
	.sp-menu-btn span:nth-child(2) {
		top: 21px;
	}
	.sp-menu-btn span:nth-child(3) {
		top: 30px;
	}
	.sp-menu-btn.open .btn-inner:before {
		content: "CLOSE";
		bottom: 4px;
	}
	.sp-menu-btn.open span {
		left: 25%;
		width: 50%;
	}
	.sp-menu-btn.open span:nth-child(1) {
		transform: rotate(45deg);
		top: 22px;
	}
	.sp-menu-btn.open span:nth-child(2) {
		width: 0;
	}
	.sp-menu-btn.open span:nth-child(3) {
		transform: rotate(-45deg);
		top: 22px;
	}
	
	
}
@media screen and (max-width: 640px) {
	.header {
		height: 60px;
	}
	.header-logo {
		max-width: 160px;
		margin-left: 5%;
	}
	
	.header-nav .nav-upper {
		margin: 0 auto 120px;
	}
	.header-nav .nav-lower {
		margin: 100px auto 0;
	}
	
	.header-nav .nav-lower > ul > li > a {
		padding: 15px 10px;
	}
	.header-nav .nav-lower .accordion-trigger:before {
		width: 15px;
		height: 1px;
	}
	.header-nav .nav-lower .accordion-trigger:after {
		right: 17px;
		width: 1px;
		height: 15px;
	}
	.header-nav .sub-menu-inner ul li a {
		padding: 10px 20px;
	}
	.header-nav .sub-menu-inner ul li a:before {
		top: 20px;
		width: 18px;
		height: 5px;
	}
	
	.header-nav .sub-menu-inner ul li.has-br a {
		padding: 6px 20px;
	}
	.header-nav .sub-menu-inner ul li.has-br a:before {
		top: 20px;
	}
	
	.header-nav .nav-upper .sp-tel-box {
		position: fixed;
		bottom: 0;
		width: 100%;
		background: #114fa1;
		border-radius: 20px 20px 0 0;
		display: flex;
		flex-direction: row;
		margin-top: 0;
		z-index: 10;
	}
	.header-nav .nav-upper a:first-child {
		position: relative;
	}
	.header-nav .nav-upper a:first-child:before {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		margin: auto;
		width: 1px;
		height: 35%;
		background: #fff;
	}
	.header-nav .nav-upper .tel {
		width: 50%;
		text-align: center;
		padding: 15px 0;
		margin-bottom: 0 !important;
		color: #fff;
		letter-spacing: 0;
	}
	.header-nav .nav-upper .tel .title {
		line-height: 150%;
		margin-bottom: 0;
		font-size: 70%;
	}
	.header-nav .nav-upper .tel .number {
		padding-left: 13px;
		position: relative;
		font-size: 90%;
		color: #fff;
	}
	.header-nav .nav-upper .tel .number:before {
		filter: brightness(0) invert(1);
		width: 10px;
		height: 15px;
		color: #fff;
	}
	
	.header-nav .nav-upper .access {
		padding: 15px 10px;
	}
	
	.sp-menu-btn {
		width: 60px;
		height: 60px;
	}
	.sp-menu-btn .btn-inner {
		width: 40px;
	}
	.sp-menu-btn .btn-inner:before {
		bottom: 8px;
		font-size: 70%;
	}
	.sp-menu-btn.open .btn-inner:before {
		bottom: 8px;
	}
}

/******************
メイン
******************/
.main {
	margin-top: 100px;
}

@media screen and (max-width: 1024px) {
	.main {
		margin-top: 80px;
	}
}
@media screen and (max-width: 640px) {
	.main {
		margin-top: 60px;
	}
}

/*ファーストビュー*/

.firstview-wrapper {
	position: relative;
}
.firstview-wrapper .visual-container {
	background: url(./images/top/main_bkg.jpg) center/cover no-repeat;
	height: calc(100svh - 100px);
	min-height: 575px;
	position: relative;
}
.firstview-wrapper .visual-container h1 {
	text-align: right;
	position: absolute;
	bottom: 15%;
	right: 5%;
	font-size: 240%;
	font-weight: 600;
	line-height: 170%;
	letter-spacing: .3rem;
	color: #fff;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.firstview-wrapper .menu-container {
	max-width: 390px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
}
.firstview-wrapper .menu-container-inner {
	display: flex;
	flex-wrap: wrap;
	background: rgba(255,255,255,0.8);
	padding: 40px 30px;
	border-radius: 0 20px 20px 0;
}
.firstview-wrapper .menu-item {
	width: calc(50% - 5px);
	margin-bottom: 10px;
	border-radius: 10px;
	background: #fff;
}
.firstview-wrapper .menu-item:nth-child(2n) {
	margin-left: 10px;
}
.firstview-wrapper .menu-item a {
	text-decoration: none;
	display: block;
}
.firstview-wrapper .menu-item a img {
	display: block;
	max-width: 100px;
	margin: 0 auto;
	padding: 5px 0;
}
.firstview-wrapper .menu-item a span {
	display: block;
	text-align: center;
	color: #fff;
	font-size: 90%;
	padding: 5px 0;
	border-radius: 0 0 10px 10px;
}
.firstview-wrapper .menu-item:nth-child(1) a span {
	background: #09b9a4;
}
.firstview-wrapper .menu-item:nth-child(2) a span {
	background: #6db55c;
}
.firstview-wrapper .menu-item:nth-child(3) a span {
	background: #6cb8c7;
}
.firstview-wrapper .menu-item:nth-child(4) a span {
	background: #f09b9b;
}
.firstview-wrapper .menu-item:nth-child(5) a span{
	background: #eb8030;
}
.firstview-wrapper .menu-item:nth-child(6) a span {
	background: #7e57a0;
}

.firstview-wrapper .menu-item-wide {
	width: 100%;
	margin-bottom: 0;
	text-align: center;
	background: #2373c8;
	border-radius: 10px;
}
.firstview-wrapper .menu-item-wide a {
	display: block;
	font-weight: 600;
	letter-spacing: .1rem;
	line-height: 150%;
	padding: 20px 0;
	color: #fff;
}


.firstview-wrapper .info-container {
	max-width: 1300px;
	width: 90%;
	margin: 0 auto;
	display: flex;
}
.firstview-wrapper .info-container h2 {
	background: #c5def3;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 110%;
	font-weight: 600;
	width: 290px;
	border-radius: 0 0 0 20px;
}
.firstview-wrapper .info-container h2 span {
	padding-left: 35px;
	position: relative;
}
.firstview-wrapper .info-container h2 span:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 25px;
	height: 25px;
	background: url(./images/common/ico_important.svg) center/100% no-repeat;
}
.firstview-wrapper .info-container ul {
	background: rgba(197, 222, 244, 0.15);
	width: calc(100% - 290px);
	padding: 30px 40px;
	border-radius: 0 0 20px 0;
}
.firstview-wrapper .info-container ul li {
	margin-bottom: 10px;
	display: flex;
}
.firstview-wrapper .info-container ul li:last-child {
	margin-bottom: 0;
}
.firstview-wrapper .info-container ul li .info-date {
	font-family: "Manrope", sans-serif;
	width: 90px;
	white-space: nowrap;
	margin-right: 25px;
	font-weight: 500;
}
.firstview-wrapper .info-container ul li .info-title {
	width: calc(100% - 115px);
}
.firstview-wrapper .info-container ul li a {
	text-decoration: none;
}

@media screen and (max-width: 1024px) {
	.firstview-wrapper .visual-container {
		height: calc(100svh - 80px);
	}
}
@media screen and (max-width: 960px) {
	.firstview-wrapper {
		display: flex;
		flex-direction: column;
	}
	.firstview-wrapper .visual-container {
		height: auto;
	}
	.firstview-wrapper .visual-container h1 {
		text-align: left;
		right: auto;
		left: 5%;
	}
	.firstview-wrapper .menu-container {
		max-width: 100%;
		position: static;
		order: 3;
	}
	.firstview-wrapper .menu-container-inner {
		background: transparent;
		padding: 0;
		width: 90%;
		margin: 40px auto 0;
		border-radius: 0;
	}
	
	.firstview-wrapper .menu-item {
		width: calc(33.33% - 9.99px);
		border: 1px solid #dfdfdf;
		margin-left: 10px;
	}
	.firstview-wrapper .menu-item:nth-child(1),
	.firstview-wrapper .menu-item:nth-child(4) {
		margin-left: 0;
	}
	.firstview-wrapper .menu-item-wide {
		width: calc(100% - 2px);
		margin-left: 0;
	}
	.firstview-wrapper .menu-item:nth-child(1) {
		order: 2;
	}
	.firstview-wrapper .menu-item:nth-child(2) {
		order: 3;
	}
	.firstview-wrapper .menu-item:nth-child(3) {
		order: 4;
	}
	.firstview-wrapper .menu-item:nth-child(4) {
		order: 5;
	}
	.firstview-wrapper .menu-item:nth-child(5) {
		order: 6;
	}
	.firstview-wrapper .menu-item:nth-child(6) {
		order: 7;
	}
	.firstview-wrapper .menu-item:nth-child(7) {
		order: 1;
		margin-bottom: 15px;
	}
	
	.firstview-wrapper .info-container {
		order: 2;
		width: 100%;
	}
	.firstview-wrapper .info-container h2 {
		width: 200px;
		font-size: 100%;
		border-radius: 0 0 0 0;
	}
	.firstview-wrapper .info-container ul {
		width: calc(100% - 200px);
		padding: 20px 30px;
		border-radius: 0;
	}
	.firstview-wrapper .info-container ul li .info-date {
		margin-right: 5px;
	}
}
@media screen and (max-width: 640px) {
	.firstview-wrapper .visual-container h1 {
		font-size: 160%;
		letter-spacing: .2rem;
	}
	
	.firstview-wrapper .info-container {
		flex-direction: column;
	}
	.firstview-wrapper .info-container h2 {
		width: 100%;
		padding: 15px 0;
	}
	.firstview-wrapper .info-container ul {
		width: 100%;
		padding: 20px 5%;
	}
	.firstview-wrapper .info-container ul li {
		flex-direction: column;
	}
	.firstview-wrapper .info-container ul li .info-date {
		margin-right: 0;
	}
	.firstview-wrapper .info-container ul li .info-title {
		width: 95%;
		margin: 0 auto;
	}
	
	
	.firstview-wrapper .menu-item {
		width: calc(50% - 7px);
		margin-left: 0;
	}
	.firstview-wrapper .menu-item:nth-child(4) {
		margin-left: 10px;
	}
	.firstview-wrapper .menu-item-wide {
		width: calc(100% - 2px);
	}
}
@media screen and (max-width: 350px) {
	.firstview-wrapper .visual-container h1 {
		white-space: nowrap;
		font-size: 7vw;
	}
}

/******************
コンテンツ
******************/
/*コンテンツ共通*/
#top-contents, #contents {
	max-width: 1300px;
	width: 90%;
	margin: 80px auto 0;
}
.top-section-wrap {
	margin-bottom: 80px;
}


/*お知らせ*/

.info-head-container {
	border-bottom: 3px solid #b0cdec;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 15px;
	margin-bottom: 15px;
}
.info-head-container h2 {
	font-size: 180%;
	font-weight: 600;
	letter-spacing: .1rem;
}
.info-head-container .tab-menu {
	display: flex;
}
.info-head-container .tab-menu li {
	width: 160px;
	text-align: center;
	border-radius: 10px;
	padding: 5px 0;
	font-size: 90%;
	font-weight: 500;
	margin-left: 10px;
	cursor: pointer;
}
.info-head-container .tab-menu li:first-child {
	margin-left: 0;
}
.info-head-container .tab-menu li.all {
	border: 2px solid #2373c8;
}
.info-head-container .tab-menu li.news {
	border: 2px solid #f09b9b;
}
.info-head-container .tab-menu li.event {
	border: 2px solid #6db55c;
}
.info-head-container .tab-menu li.professionals {
	border: 2px solid #6cb8c7;
}
.info-head-container .tab-menu li.all.active {
	background: #2373c8;
	color: #fff;
}
.info-head-container .tab-menu li.news.active {
	background: #f09b9b;
	color: #fff;
}
.info-head-container .tab-menu li.event.active {
	background: #6db55c;
	color: #fff;
}
.info-head-container .tab-menu li.professionals.active {
	background: #6cb8c7;
	color: #fff;
}


.info-body-container ul {
	
}
.info-body-container ul li {
	border-bottom: 1px solid #b0cdec;
	padding: 20px 10px;
	display: flex;
	align-items: flex-start;
}
.info-body-container ul li .info-date {
	font-family: "Manrope", sans-serif;
	width: 90px;
	white-space: nowrap;
	margin-right: 25px;
	font-weight: 500;
}
.info-body-container ul li .info-cat {
	width: 140px;
	white-space: nowrap;
	margin-right: 25px;
	font-size: 80%;
	background: #dfdfdf;
	color: #fff;
	text-align: center;
}
.info-body-container ul li .info-cat-news {
	background: #f09b9b;
}
.info-body-container  ul li .info-cat-event {
	background: #6db55c;
}
.info-body-container ul li .info-cat-professionals {
	background: #6cb8c7;
}
.info-body-container ul li .info-title {
	width: calc(100% - 280px);
}
.info-body-container ul li .info-title a {
	text-decoration: none;
}
.info-body-container ul li .info-title .important-label {
	font-size: 90%;
	margin-left: 10px;
	color: #d91b1b;
}

.info-body-container .tab-content {
	display: none;
}
.info-body-container .tab-content.active {
	display: block;
}

.top-section-wrap.info-wrapper .info-link {
	max-width: 280px;
	margin: 40px auto 0;
}
.top-section-wrap.info-wrapper .info-link a {
	text-decoration: none;
	display: block;
	text-align: center;
	background: #68a0d8;
	color: #fff;
	padding: 10px 0;
	border-radius: 10px;
	font-size: 90%;
	transition: .3s all ease;
}
.top-section-wrap.info-wrapper .info-link a:hover {
	background: #5693d0;
}


@media screen and (max-width: 960px) {
	.info-head-container {
		align-items: stretch;
		justify-content: flex-start;
		flex-direction: column;
	}
	.info-head-container h2 {
		margin-bottom: 30px;
	}
	.info-head-container .tab-menu {
		justify-content: center;
	}
	.info-body-container ul li .info-date {
		margin-right: 5px;
	}
	.info-body-container ul li .info-cat {
		width: 120px;
		margin-right: 20px;
	}
	.info-body-container ul li .info-title {
		width: calc(100% - 235px);
	}
}
@media screen and (max-width: 640px) {
	.info-head-container h2 {
		font-size: 150%;
		text-align: center;
	}
	.info-head-container {
		margin-bottom: 0;
	}
	.info-head-container .tab-menu {
		flex-wrap: wrap;
	}
	.info-head-container .tab-menu li {
		width: calc(50% - 14px);
		margin-bottom: 10px;
	}
	.info-head-container .tab-menu li:nth-child(2n + 1) {
		margin-left: 0;
	}
	.info-body-container ul li {
		flex-wrap: wrap;
	}
	.info-body-container ul li .info-cat {
		margin-right: 0;
	}
	.info-body-container ul li .info-title {
		width: 100%;
		margin-top: 10px;
	}
}
@media screen and (max-width: 340px) {
	.info-head-container .tab-menu li {
		width: 100%;
		margin-left: 0;
	}
}


/*サービス案内*/
.top-section-wrap.service-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.service-contents-container {
	width: 45%;
	margin-right: 5%;
}
.service-contents-container h2 {
	font-size: 240%;
	font-weight: 600;
	line-height: 160%;
	letter-spacing: .2rem;
	margin-bottom: 20px;
}
.service-contents-container .txt-box {
	line-height: 200%;
	font-weight: 500;
	margin-bottom: 40px;
}
.service-contents-container .link-box {
	
}
.service-contents-container .link-box ul li {
	border-bottom: 1px solid #b0cdec;
	position: relative;
}
.service-contents-container .link-box ul li:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	width: 60px;
	height: 100%;
	background: #dfdfdf;
}
.service-contents-container .link-box ul li:nth-child(1):before {
	background: rgba(9, 185, 164, 0.1);
}
.service-contents-container .link-box ul li:nth-child(2):before {
	background: rgba(108, 184, 199, 0.1);
}
.service-contents-container .link-box ul li:nth-child(3):before {
	background: rgba(235, 128, 48, 0.1);
}
.service-contents-container .link-box ul li:nth-child(4):before {
	background: rgba(126, 87, 159, 0.1);
}
.service-contents-container .link-box ul li:first-child {
	border-top: 1px solid #b0cdec;
}
.service-contents-container .link-box ul li a {
	text-decoration: none;
	display: block;
	padding: 20px 60px 20px 20px;
	font-weight: 500;
	position: relative;
	transition: .3s all ease;
}
.service-contents-container .link-box ul li a:hover {
	opacity: .6;
}
.service-contents-container .link-box ul li:nth-child(1) a {
	color: #006f7f;
}
.service-contents-container .link-box ul li:nth-child(2) a {
	color: #007f9e;
}
.service-contents-container .link-box ul li:nth-child(3) a {
	color: #e64700;
}
.service-contents-container .link-box ul li:nth-child(4) a {
	color: #ff7069;
}
.service-contents-container .link-box ul li a:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 14px;
	width: 26px;
	height: 10px;
}
.service-contents-container .link-box ul li:nth-child(1) a:after {
	background: url(./images/common/arrow_right_color_01.svg) center/100% no-repeat;
}
.service-contents-container .link-box ul li:nth-child(2) a:after {
	background: url(./images/common/arrow_right_color_02.svg) center/100% no-repeat;
}
.service-contents-container .link-box ul li:nth-child(3) a:after {
	background: url(./images/common/arrow_right_color_03.svg) center/100% no-repeat;
}
.service-contents-container .link-box ul li:nth-child(4) a:after {
	background: url(./images/common/arrow_right_color_04.svg) center/100% no-repeat;
}

.service-images-container {
	width: calc(100vw - 50%);
	margin-right: calc(50% - 50vw);
	
}
.service-images-inner {
	display: grid;
	grid-template-columns: repeat(9, 1fr);
	grid-template-rows: repeat(12, 1fr);
	grid-column-gap: 10px;
	grid-row-gap: 10px;
	max-height: 780px;
}
.service-images-container .grid-item-01 {
	grid-area: 2 / 3 / 4 / 6;
}
.service-images-container .grid-item-02 {
	grid-area: 1 / 6 / 4 / 10;
}
.service-images-container .grid-item-03 {
	grid-area: 4 / 1 / 9 / 4;
}
.service-images-container .grid-item-04 {
	grid-area: 4 / 4 / 8 / 8;
}
.service-images-container .grid-item-05 {
	grid-area: 4 / 8 / 9 / 10;
}
.service-images-container .grid-item-06 {
	grid-area: 9 / 2 / 11 / 4;
}
.service-images-container .grid-item-07 {
	grid-area: 8 / 4 / 12 / 8;
}
.service-images-container .grid-item-08 {
	grid-area: 9 / 8 / 13 / 10;
}
.service-images-container .grid-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media screen and (max-width: 1100px) {
	.service-contents-container h2 {
		font-size: 180%;
	}
}
@media screen and (max-width: 960px) {
	.top-section-wrap.service-wrapper {
		flex-direction: column;
	}
	.service-contents-container {
		order: 2;
		width: 100%;
		margin-right: 0;
	}
	.service-images-container {
		width: 100vw;
		margin: 0 calc(50% - 50vw) 40px;
	}
	.service-images-inner {
		max-height: 640px;
		width: 90%;
		margin: 0 auto;
	}
	.service-images-container .grid-item-01 {
		grid-area: 1 / 1 / 4 / 6;
	}
	.service-images-container .grid-item-03 {
		grid-area: 4 / 1 / 10 / 4;
	}
	.service-images-container .grid-item-04 {
		grid-area: 4 / 4 / 9 / 8;
	}
	.service-images-container .grid-item-06 {
		grid-area: 10 / 1 / 13 / 4;
	}
	.service-images-container .grid-item-07 {
		grid-area: 9 / 4 / 13 / 7;
	}
	.service-images-container .grid-item-08 {
		grid-area: 9 / 7 / 13 / 10;
	}
	
	.service-contents-container h2 {
		text-align: center;
	}
	.service-contents-container .link-box ul {
		display: flex;
		flex-wrap: wrap;
	}
	.service-contents-container .link-box ul li {
		width: calc(50%);
	}
	.service-contents-container .link-box ul li:nth-child(2) {
		border-top: 1px solid #b0cdec;
	}
}
@media screen and (max-width: 640px) {
	.service-images-container {
		margin: 0 calc(50% - 50vw) 20px;
	}
	.service-images-inner {
		max-height: 390px;
		width: 100%;
		grid-column-gap: 5px;
		grid-row-gap: 5px;
	}
	.service-contents-container h2 {
		font-size: 150%;
		letter-spacing: .1rem;
	}
	.service-contents-container .link-box ul li {
		width: 100%;
	}
	.service-contents-container .link-box ul li:nth-child(2) {
		border-top: 0;
	}
	.service-contents-container .link-box ul li a {
		padding: 15px 60px 15px 20px;
	}
}

/*受付・お問い合わせ*/
.top-section-wrap.contact-wrapper {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	background: #d8ecf0;
}
.top-section-wrap.contact-wrapper .contact-wrap-inner {
	max-width: 1300px;
	width: 90%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	padding: 60px 0;
}
.top-section-wrap.contact-wrapper h2 {
	text-align: center;
	font-size: 130%;
	font-weight: 600;
	letter-spacing: .1rem;
	margin-bottom: 15px;
}
.top-section-wrap.contact-wrapper .map-container {
	width: calc(95% - 350px);
}
.top-section-wrap.contact-wrapper .contact-container {
	min-width: 350px;
	padding: 60px 0;
}
.top-section-wrap.contact-wrapper .contact-container h2 {
	margin-bottom: 20px;
}
.top-section-wrap.contact-wrapper .contact-box {
	text-align: center;
	margin-bottom: 15px;
}
.top-section-wrap.contact-wrapper .contact-container h3 {
	font-size: 110%;
	letter-spacing: .1rem;
	font-weight: 600;
	margin-bottom: 10px;
}
.top-section-wrap.contact-wrapper .contact-box a {
	font-family: "Manrope", sans-serif;
	text-decoration: none;
	color: #114fa1;
	font-size: 210%;
	font-weight: 600;
	letter-spacing: .1rem;
	position: relative;
	padding-left: 32px;
}
.top-section-wrap.contact-wrapper .contact-box a:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 20px;
	height: 28px;
	background: url(./images/common/ico_tel_blu.svg) center/100% no-repeat;
}
.top-section-wrap.contact-wrapper .contact-container .time {
	text-align: center;
	font-size: 120%;
	font-weight: 500;
}
.top-section-wrap.contact-wrapper .contact-container .time span {
	font-family: "Manrope", sans-serif;
	font-weight: 600;
	margin-left: 5px;
}
.top-section-wrap.contact-wrapper .contact-container .notes {
	text-align: center;
	color: #ff0000;
	font-size: 90%;
	font-weight: 500;
	line-height: 150%;
}
.top-section-wrap.contact-wrapper .contact-container .access {
	max-width: 280px;
	margin: 30px auto 0;
	text-decoration: none;
	display: block;
	text-align: center;
	background: #114fa1;
	color: #fff;
	font-size: 90%;
	padding: 10px 0;
	border-radius: 10px;
	letter-spacing: .1rem;
	transition: .3s all ease;
}
.top-section-wrap.contact-wrapper .contact-container .access:hover {
	background: #3e79c7;
}

@media screen and (max-width: 960px) {
	.top-section-wrap.contact-wrapper .contact-wrap-inner {
		padding: 40px 0 0;
		flex-direction: column;
	}
	.top-section-wrap.contact-wrapper .map-container {
		width: 100vw;
		margin: 0 calc(50% - 50vw);
		height: 420px;
		order: 2;
	}
	.top-section-wrap.contact-wrapper .contact-container {
		padding: 0;
		margin-bottom: 40px;
	}
	.top-section-wrap.contact-wrapper .contact-tel-items {
		display: flex;
		justify-content: center;
		margin-bottom: 20px;
	}
	.top-section-wrap.contact-wrapper .contact-box {
		margin-bottom: 0;
	}
	.top-section-wrap.contact-wrapper .contact-box:nth-child(1) {
		margin-right: 40px;
	}
	.top-section-wrap.contact-wrapper .contact-box a {
		letter-spacing: 0;
	}
}
@media screen and (max-width: 640px) {
	.top-section-wrap.contact-wrapper .contact-container {
		min-width: 100%;
	}
	.top-section-wrap.contact-wrapper .contact-tel-items {
		flex-direction: column;
	}
	.top-section-wrap.contact-wrapper .contact-box:nth-child(1) {
		margin-right: 0;
		margin-bottom: 20px;
	}
	.top-section-wrap.contact-wrapper .contact-box a {
		font-size: 180%;
		padding-left: 25px;
	}
	.top-section-wrap.contact-wrapper .contact-box a:before {
		width: 15px;
		height: 22px;
	}
	.top-section-wrap.contact-wrapper .contact-container .time {
		font-size: 110%;
	}
}

/******************
フッター
******************/

.footer {
	background-image:
		url(./images/common/footer_bkg_01.png),
		url(./images/common/footer_bkg_02.png);
	background-repeat: no-repeat;
	background-size: 420px, 420px;
	background-position: right top, left bottom;
}
.footer-inner {
	width: 90%;
	margin: 0 auto;
	padding: 40px 0 15px;
}

.page-top {
	text-align: center;
	margin-bottom: 30px;
}
.page-top a {
	display: inline-block;
	text-decoration: none;
	font-size: 80%;
	letter-spacing: .1rem;
	color: #333;
	padding-top: 15px;
	position: relative;
}
.page-top a:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	display: inline-block;
	color: #333;
	width: 1em;
	height: 1em;
	border: 0.1em solid currentColor;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translateY(25%) rotate(-45deg);
}

.footer-info {
	
}
.footer-info .footer-logo {
	max-width: 210px;
	margin: 0 auto 10px;
}
.footer-info .footer-logo a {
	display: block;
}
.footer-info p {
	font-size: 90%;
	text-align: center;
}
.footer-info p .add {
	margin-left: 5px;
}

.copyright {
	width: 100%;
	text-align: center;
	margin-top: 30px;
	font-size: 80%;
}

@media screen and (max-width: 960px) {
	.footer {
		background-size: 240px, 240px;
	}
}
@media screen and (max-width: 640px) {
	.footer {
		background-size: 180px, 180px;
	}
	.footer-info .footer-logo {
		max-width: 160px;
	}
	.footer-info p .add {
		margin-left: 0;
		display: block;
	}
	.copyright {
		font-size: 60%;
	}
}

/******************
プリントレイアウト
******************/

@media print {
	body{
		width: 1600px;
	}
	#wrapper-top, #wrapper{
		padding-top: 0;
		overflow:visible !important;
	}
	#wrapper-top #header, #wrapper #header{
		position: relative;
	}
}
@page {
	margin: 16mm 10mm;
}
@-moz-document url-prefix(){
	@page {
		margin: auto;
	}
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
	@page{
		margin: auto;
	}
}


/******************
一時削除
******************/
/*ヘッダー*/
.header-nav .nav-upper .recruit {
	display: none;
}
.header-nav .sub-menu-inner .archive-link {
	pointer-events: none;
}
.header-nav .sub-menu-inner .archive-link .eng:before {
	display: none;
}

/*サイドバーテンプレ*/
.has-sidebar .sidebar .archive a {
	pointer-events: none;
}

/*沿革ページ*/
.overview-wrap {
	display: none;
}

/*お知らせ*/
.info-head-container {
	border-bottom: 1px solid #b0cdec !important;
	padding-bottom: 0 !important;
	margin-bottom: 0 !important;
}
.info-head-container h2 {
	margin-bottom: 30px !important;
}
.info-head-container .tab-menu {
	display: none;
}


.info-contents {
	justify-content: center !important;
}
.info-single-sidebar {
	display: none;
}
.info-contents .container {
	width: 100% !important;
	max-width: 900px;
}