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

/*---------------------------------------------
                     基本要素
---------------------------------------------*/

body {
	margin: 0;
	padding: 0;
	font-size: 100%;
	/*font-family: '游ゴシック' ,'メイリオ' ,'Meiryo', 'ヒラギノ角ゴ Pro W3' , 'Hiragino Kaku Gothic Pro' , 'ＭＳ Ｐゴシック' , 'Osaka' ,sans-serif;*/
	font-family: "Sawarabi Mincho";
	color: #333333;
	background-color: #FAFAFA;
}

li {
	list-style-type: none;
}
a {
	color: #1a1a1a;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	color: #0071bc;
}

section h2 {
	padding-bottom: 20px;
	font-weight: bold;
	font-size: 1.2em;
}

p {
	padding-bottom: 10px;
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

table{
    margin: auto;
	border-collapse: collapse;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #d9d9d9;
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: #d9d9d9;
	width: 100%;
}

table th{
    padding-top: 5px;
    padding-right: 15px;
    padding-bottom: 5px;
    padding-left: 15px;
    text-align: left;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #d9d9d9;
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: #d9d9d9;
	background-color: #f3f3f3;
}

table td{
    padding-top: 5px;
    padding-right: 15px;
    padding-bottom: 5px;
    padding-left: 15px;
    text-align: left;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #d9d9d9;
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: #d9d9d9;
}



/*-----------------------------------------
                column
-----------------------------------------*/

.l-column {
	flex: 1 1 1180px;
  	max-width: 1180px;
  	margin: 0 auto;
  	padding: 20px;
}


/*-----------------------------------------
                header
-----------------------------------------*/

.Header {
	display: flex;
	flex-direction: column;
	height: 220px;
	/*margin-bottom: 30px;*/
}

.Header_head {
	margin-top: 10px;
}

.Header_main {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
}

.Header_info {
	flex: 1 1 60%;
	display: flex;
	flex-direction: column;
}

.Header_logo {
	flex: 1 1 40%;
}

.Header_logo img {
	width: 100%;
}

.tel {
	text-align: right;
	font-size: 120%;
	line-height: 1.2;
	padding: 5px 5px 10px 0;
}
.tel img {
	vertical-align: bottom;
}
.tel span {
	font-weight: bold;
}

.address {
	text-align: right;
	padding: 5px;
}

.Contact {
	margin: 0 auto;
}

.button {
	--offset: 10px;
    --border-size: 2px;
    margin: 12px;
	width: 250px;
	text-align: center;
    display: block;
    position: relative;
    padding: 1em 2em;
    appearance: none;
    border: 0;
    background: transparent;
    color: #004E83;
    text-transform: uppercase;
    letter-spacing: .25em;
    outline: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 0;
    box-shadow: inset 0 0 0 var(--border-size) currentcolor;
    transition: background .8s ease;
}

.button:hover {
    background: rgba(128, 128, 128, .1);
}
    
.button__horizontal,
.button__vertical {
    position: absolute;
    top: var(--horizontal-offset, 0);
    right: var(--vertical-offset, 0);
    bottom: var(--horizontal-offset, 0);
    left: var(--vertical-offset, 0);
    transition: transform .8s ease;
    will-change: transform;
}

.button__horizontal::before,
.button__vertical::before {
    content: '';
    position: absolute;
    border: inherit;
}
    
.button__horizontal {
    --vertical-offset: calc(var(--offset) * -1);
    border-top: var(--border-size) solid currentcolor;
    border-bottom: var(--border-size) solid currentcolor;
}

.button__horizontal::before {
    top: calc(var(--vertical-offset) - var(--border-size));
    bottom: calc(var(--vertical-offset) - var(--border-size));
    left: calc(var(--vertical-offset) * -1);
    right: calc(var(--vertical-offset) * -1);
}
    
.button:hover .button__horizontal {
    transform: scaleX(0);
}
    
.button__vertical {
    --horizontal-offset: calc(var(--offset) * -1);
    border-left: var(--border-size) solid currentcolor;
	border-right: var(--border-size) solid currentcolor;
}
        
.button__vertical::before {
    top: calc(var(--horizontal-offset) * -1);
    bottom: calc(var(--horizontal-offset) * -1);
    left: calc(var(--horizontal-offset) - var(--border-size));
    right: calc(var(--horizontal-offset) - var(--border-size));
}
    
.button:hover .button__vertical {
    transform: scaleY(0);
}

/*-------------------------------------------------
                    nav
-------------------------------------------------*/

.main_nav {
	height: 60px;
	border-bottom: solid 1px #333;
}

.Menu {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
}

.Menu_item {
	flex: 1 1 auto;
	padding: 10px 5px;
	text-align: center;
}

/*--------------------------------------------------
        　　　subnav
--------------------------------------------------*/

.subnav {
	
}

.subnav .list {
	display: flex;
  	justify-content: space-between;
}

.subnav .list li {
	width: 30%;
  	text-align: center;
	padding-bottom: 20px;
}

.service-nav .list li {
	width: 23%;
	text-align: center;
	padding-bottom: 20px;
}

.subnav .list li a {
	width: 100%;
  	border: solid 1px #121212;
  	color: #121212;
  	display: block;
  	margin-bottom: 15px;
  	text-align: center;
  	position: relative;
  	overflow: hidden;
	font-weight: bold;
	font-size: 1rem;
}

.subnav .list li a::before {
	content: "";
  	width: 100%;
  	height: 100%;
  	background-color: #121212;
  	position: absolute;
  	top: 0;
  	left: -100%;
  	opacity: 0.3;
  	transition: 0.5s;
}

.subnav .list li a:hover::before {
	left: 0;
}

/*--------------------------------------------------
             Top bg
--------------------------------------------------*/
.bg {
	padding: 0 5%;
}

/*--------------------------------------------------
             footer
--------------------------------------------------*/

footer {
	/*position: fixed;*/
	width: 100%;
	bottom: 0;
}
.copyright {
	text-align: center;
	background-color: #F2F2F2;
	padding: 10px 0;
}

.copyright p {
	padding-bottom: 0;
}

/*---------------------------------------
sectionlabel
---------------------------------------*/

.sectionlabel {
	display: flex;
	flex: 1 1 auto;
	align-items: center;
	padding: 50px 0;
	/*padding-top: 100px;
	padding-bottom: 40px;*/
	color: #004E83;
	text-transform: uppercase;
	font-size: 26px;
	line-height: 1.2;
	text-align: center;
}

.sectionlabel:before {
	margin-right: 30px;
}
.sectionlabel:before, .sectionlabel:after {
	content: "";
	display: block;
	flex: 1 0 10%;
	height: 0;
	border-bottom: 1px solid #004E83;
}
.sectionlabel:after {
	margin-left: 30px;
}

/*--------------------------------------------------
business-guide,philosophy,founding
------------------------------------------------*/

.business-guide{
	text-align: center;
	border-bottom: dashed 2px #98514B;
	margin-bottom: 60px;
}

.business-guide:last-of-type {
	border-bottom: none;
	margin-bottom: 0;
}

.business-guide a {
	text-decoration: underline;
}

.service,
.staff-item {
	display: flex;
	justify-content: center;
}

.service {
	padding: 30px 0;
}

.staff-item {
	padding: 50px 0;
}

.service-img,
.staff-img {
	flex: 1 1 33%;
	padding: 10px 30px;
}

.service-main,
.staff-career {
	flex: 1 1 64%;
	padding: 0 20px;
	text-align: left;
}

.staff-career a {
	color: #0070C0;
	text-decoration: underline;
}

.staff-career .h4-label {
	padding-top: 0;
	text-align: center;
}

.staff-greeting {
	text-align: left;
}

.right {
	text-align: right;
}

.h3-label {
	position: relative;
	display: inline-block;
	padding: 0 45px;
	font-size: 1.3em;
	text-align: center;
	color: #98514B;
}

.h3-label:before,
.h3-label:after {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 44px;
	height: 2px;
	background-color: #98514B;
	-webkit-transform: rotate(-60deg);
	transform: rotate(-60deg);
}

.h3-label:before {
	left:0;
}

.h3-label:after {
	right: 0;
}

.h4-label {
	font-weight: bold;
	font-size: 1.1em;
	padding: 20px 0 10px;
}

.sp_br {
	display: none;
}

.l-p60 {
	padding-left: 60px;
}

.info {
	text-align: center;
}

.text {
	padding: 60px 0;
}

.text p {
	padding: 0 20px 10px;
	text-align: left;
}

.text ol,
.text ul {
	padding: 0 30px 20px;
	text-align: left;
}

.text ol li {
	list-style-position: inside;
	list-style-type: decimal;
	/*text-indent: -1em;*/
	padding-left: 1em;
}

.text ul li {
	list-style-position: inside;
	/*text-indent: -1em;*/
	padding-left: 1em;
}

.start {
	text-align: center;
}

.founding {
	
}

/*-------------------------------------------
location,contact,thanks,staff,landowner,policy
-------------------------------------------*/

#location,
#contact,
#thanks,
#staff {
	text-align: center;
	margin-bottom: 80px;
}

.map iframe {
	width: 100%;
}

.access {
	padding: 30px 0;
}

.profile {
	margin-bottom: 60px;
}

/*-------------------------------------------------
                      tablet
-------------------------------------------------*/

@media only screen and (max-width:959px) {
	
}

/*--------------------------------------------------
                    sp
--------------------------------------------------*/

@media only screen and (max-width:559px) {

/*-----------------------------------------
                header
-----------------------------------------*/
	
	.Header {
		margin-bottom: 10px;
	}
	
	.Header_main {
		flex-direction: column;
		padding: 10px 0;
	}
	
	.Header_head {
		display: none;
	}
	
	.Header_logo {
		text-align: center;
	}
	.Header_logo img {
		width: 88%;
	}
	
	.address {
		font-size: 80%;
	}
	
	.Header_info {
		margin-top: -780px;
	}
	
/*-----------------------------------------
                nav
-----------------------------------------*/
	
	.Menu {
		justify-content: flex-start;
		align-items: baseline;
	}
	
	.Menu_item {
		flex: 0 0 auto;
		text-align: left;
	}
	
	.nav-container {
  		position: fixed;
  		height: 100vh;
  		width: 100%;
  		pointer-events: none;
		z-index: 10;
	}
	
	.nav-container .bg {
  		position: absolute;
  		top: 90px;
  		left: 0;
  		width: 100%;
  		height: calc(100% - 90px);
  		visibility: hidden;
  		opacity: 0;
  		transition: .3s;
  		background: #000;
	}
	
	.nav-container:focus-within .bg {
  		visibility: visible;
  		opacity: .6;
	}
	
	.nav-container * {
  		visibility: visible;
	}

	.nav-button {
  		position: relative;
  		display: flex;
  		flex-direction: column;
  		justify-content: center;
  		z-index: 1;
  		-webkit-appearance: none;
  		border: 0;
 		background: transparent;
  		border-radius: 0;
  		height: 60px;
  		width: 30px;
  		cursor: pointer;
  		pointer-events: auto;
  		margin-left: 25px;
  		touch-action: manipulation;
  		-webkit-tap-highlight-color: rgba(0,0,0,0);
	}
	
	.icon-bar {
  		display: block;
  		width: 100%;
  		height: 3px;
  		background: #aaa;
  		transition: .3s;
	}
	
	.icon-bar + .icon-bar {
  		margin-top: 5px;
	}

	.nav-container:focus-within .nav-button {
  		pointer-events: none;
	}
	
	.nav-container:focus-within .icon-bar:nth-of-type(1) {
  		transform: translate3d(0,8px,0) rotate(45deg);
	}
	
	.nav-container:focus-within .icon-bar:nth-of-type(2) {
  		opacity: 0;
	}
	
	.nav-container:focus-within .icon-bar:nth-of-type(3) {
  		transform: translate3d(0,-8px,0) rotate(-45deg);
	}

	.nav-content {
  		flex-direction: column;
		margin-top: 90px;
  		padding: 20px;
  		width: 50%;
  		max-width: 300px;
  		position: absolute;
  		top: 0;
  		left: 0;
  		height: calc(100% - 90px);
  		background: #ececec;
  		pointer-events: auto;
  		-webkit-tap-highlight-color: rgba(0,0,0,0);
  		transform: translateX(-100%);
  		transition: transform .3s;
  		will-change: transform;
  		contain: paint;
	}

	.nav-content ul {
  		height: 100%;
  		display: flex;
  		flex-direction: column;
	}

	.nav-content li a {
  		padding: 10px 5px;
  		display: block;
  		text-transform: uppercase;
  		transition: color .1s;
	}

	.nav-content li a:hover {
  		color: #BF7497;
	}

	.nav-content li:not(.small) + .small {
  		margin-top: auto;
	}

	.small {
  		display: flex;
  		align-self: center;
	}

	.small a {
  		font-size: 12px;
  		font-weight: 400;
  		color: #888;
	}
	
	.small a + a {
  		margin-left: 15px;
	}

	.nav-container:focus-within .nav-content {
  		transform: none;
	}
	
/*-----------------------------------------
                subnav
-----------------------------------------*/
	
	.subnav .list {
		flex-direction: column;
	}
	
	.subnav .list li {
		width: 100%;
	}
	
/*-----------------------------------------
                top bg
-----------------------------------------*/
	.bg {
		padding-top: 30px;
	}
	
/*----------------------------------------
           sectionlabel
----------------------------------------*/	

	.sectionlabel {
		font-size: 22px;
		padding: 30px 0;
	}
	
	.sectionlabel span {
		font-size: 12px;
	}
	
/*---------------------------------------
business-guide,philosophy,
---------------------------------------*/
	
	.service,
	.staff-item {
		flex-direction: column;
		align-items: center;
	}
	
	.staff-item {
		padding: 20px 0;
	}
	
	.service-img {
		padding: 0;
	}
	
	.service-main {
		padding: 0 0 30px;
	}
	
	.staff-main {
		padding: 20px 0 0;
	}
	
	.sp_br {
		display: block;
	}
	
	.l-p60 {
		padding-left: 0;
	}
	
	.h3-label {
		font-size: 1.16em;
	}
	
	.text {
		padding: 30px 0;
	}
	
	.text p {
		padding-left: 0;
		padding-right: 0;
	}
	
	.text ol,
	.text ul {
		padding: 0 10px 10px;
	}
	
}

