:root {
    --color-accent: #1f6fb8;
    --color-white: #fff;
    --color-gray: #9fa0a0;
    --color-text: #222;
    --font-serif: "Noto Serif JP", serif;
    --font-size-12: 12px;
    --font-size-13: 13px;
    --font-size-14: 14px;
    --font-size-19: 19px;
    --font-size-26: 26px;
    --font-size-9-sp: 2.4vw;
    --font-size-12-sp: 3.2vw;
    --font-size-14-sp: 3.73vw;
    --font-size-16-sp: 4.26vw;
    --font-size-18-sp: 4.8vw;
    --font-size-20-sp: 5.33vw;
}

/**********
グローバルメニュー
**********/
header {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
header > h1 {
	text-align: center;
	font-family: var(--font-serif);
	font-size: var(--font-size-26);
	line-height: 1em;
	letter-spacing: 0.25em;
	margin-bottom: 15px;
}
header > h1 > a {
	color: var(--color-accent);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.3em;
}
header > h1 > a::before {
	content: "";
	background-image: url(../img/header-logo.jpg);
	background-size: cover;
	width: 45px;
	height: 45px;
}
header > h1 span {
	font-size: var(--font-size-13);
	line-height: 1;
	letter-spacing: 0;
}
@media (max-width: 779px) {
	header > h1 {
		font-size: var(--font-size-18-sp);
		text-align: left;
		margin-left: 5%;
	}
	header > h1 > a {
	}
	header > h1 > a::before {
		width: 8.26vw;
		height: 8.26vw;
	}
	header > h1 span {
		font-size: var(--font-size-9-sp);
	}
}
header > div {
}
header > div > nav {
	background-color: var(--color-accent);
}
header #global-nav > p { display: none; }
header > div > nav > ul {
	display: flex;
	justify-content: center;
	align-items: center;
}
header > div > nav > ul > li {
	font-size: var(--font-size-14);
	color: var(--color-white);
	display: flex;
	justify-content: center;
	align-items: center;
	height: 40px;
	width: 140px;
	border-right: solid 1px var(--color-white);
}
header > div > nav > ul > li:first-child {
	border-left: solid 1px var(--color-white);
}
header > div > nav > ul > li > a {
	text-decoration: none;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
    transition: color 0.3s ease;
}
header > div > nav > ul > li > a:hover {
    background-color: var(--color-white);
	color: var(--color-accent);
}
header > div > nav > ul.sub-link {
	display: none;
}

/**********
ハンバーガー & SPドロワー
**********/
.sp-menu {
	display: none;
	width: 40px;
	height: 40px;
	position: fixed;
	right: 12px;
	top: 20px;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	z-index: 1001;
}
.sp-menu span {
	position: absolute;
	left: 8px;
	right: 8px;
	height: 2px;
	background: var(--color-accent);
	display: block;
	transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}
.sp-menu span:nth-child(1) { top: 12px; }
.sp-menu span:nth-child(2) { top: 19px; }
.sp-menu span:nth-child(3) { top: 26px; }

body.nav-open .sp-menu span:nth-child(1) {
	top: 19px;
	transform: rotate(45deg);
}
body.nav-open .sp-menu span:nth-child(2) {
	opacity: 0;
}
body.nav-open .sp-menu span:nth-child(3) {
	top: 19px;
	transform: rotate(-45deg);
}

header > div > nav {
	transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

@media (max-width: 779px) {
	header {
		position: relative;
	}
	.sp-menu {
		display: block;
	}
	header > div > nav {
		position: fixed;
		top: 0;
		right: 0;
		height: 100vh;
		width: 100vw;
		background-color: var(--color-accent);
		transform: translateX(100%);
		box-shadow: -12px 0 24px rgba(0,0,0,0.15);
		z-index: 1000;
	}
	#global-nav { transform: translateX(100%); }
	header #global-nav > p {
		display: block;
		padding: 16px 0 16px 5%;
		font-size: var(--font-size-18-sp);
		font-weight: bold;
		font-family: var(--font-serif);
		color: var(--color-accent);
		background-color: var(--color-white);
		letter-spacing: 0.25em;
	}
	#global-nav > p a {
		color: inherit;
		text-decoration: none;
		display: inline-flex;
		align-items: center;
		gap: 0.4em;
	}
	#global-nav > p a::before {
		content: "";
		background-image: url(../img/header-logo.jpg);
		background-size: cover;
		width: 8.26vw;
		height: 8.26vw;
	}
	#global-nav > p a .sub-title {
		font-size: var(--font-size-9-sp);
		line-height: 1;
		letter-spacing: 0;
	}

	header > div > nav > ul {
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
	}
	header > div > nav > ul > li {
		width: 100%;
		height: auto;
		border: none;
		border-top: 1px solid var(--color-white);
		font-size: var(--font-size-14-sp);
	}
	header > div > nav > ul > li:first-child {
		border-left: none;
		border-top: none;
	}
	header > div > nav > ul > li > a {
		justify-content: flex-start;
		padding: 16px 20px 16px 50px;
		text-align: left;
		position: relative;
	}
	header > div > nav > ul > li > a::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 20px;
		width: 8px;
		height: 8px;
		border-top: 2px solid var(--color-white);
		border-right: 2px solid var(--color-white);
		transform: translateY(-50%) rotate(45deg);
	}
	header > div > nav > ul.sub-link {
		border-top: solid 1px var(--color-white);
		border-bottom: solid 1px var(--color-white);
		display: flex;
		flex-direction: row;
	}
	header > div > nav > ul.sub-link > li {
		border: none;
	}
	header > div > nav > ul.sub-link > li:first-child {
		border-right: solid 1px var(--color-white);
	}
	header > div > nav > ul.sub-link > li > a {
		justify-content: center;
		padding: 16px 20px;
		text-align: center;
	}
	header > div > nav > ul.sub-link > li:first-child > a::after {
		right: 10px;
	}
	body.nav-open header > div > nav {
		transform: translateX(0);
	}
	body.nav-open #global-nav { transform: translateX(0); }
}

@media (min-width: 780px) {
	.sp-menu { display: none; }
}

/**********
フッター
**********/
footer {
	background-color: var(--color-accent);
	padding: 35px 0 35px 0;
	color: var(--color-white);
	font-size: var(--font-size-12);
}
footer > h1 {
	text-align: center;
	font-family: var(--font-serif);
	font-size: var(--font-size-26);
	line-height: 1em;
	letter-spacing: 0.25em;
	margin-bottom: 25px;
}
footer > h1 > a {
	color: var(--color-white);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.3em;
}
footer > h1 span {
	font-size: var(--font-size-13);
	line-height: 1;
	letter-spacing: 0;
}
@media (max-width: 779px) {
	footer {
		padding: 2em 0 13em 0;
		font-size: var(--font-size-12-sp);
	}
	footer > h1 {
		font-size: var(--font-size-18-sp);
		text-align: left;
		margin-left: 5%;
	}
	footer > h1 > a {
	}
	footer > h1 span {
		font-size: var(--font-size-9-sp);
	}
}
footer > .address-block {
	width: 650px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	gap: 0 20px;
}
footer > .address-block > .address-block1 {
	display: flex;
	gap: 0 12px;
}
footer > .address-block > .address-block1 > .address-title {
	line-height: 2em;
}
footer > .address-block > .address-block1 > .address-text {
	line-height: 2em;
}
@media (max-width: 779px) {
	footer > .address-block {
		width: 95%;
		flex-direction: column;
		gap: 2em 0;
		margin: 0 0 0 5%;
	}
	footer > .address-block > .address-block1 > .address-title {
		width: 4em;
	}
}

footer > .footer-link {
	width: 650px;
	margin: 0 auto;
}
footer > .footer-link > ul {
	display: flex;
	justify-content: center;
	padding: 35px 0 30px 0;
}
footer > .footer-link > ul > li {
	display: flex;
	justify-content: center;
	padding: 0 10px 0 10px;
	border-right: solid 1px var(--color-white);
}
footer > .footer-link > ul > li:first-child {
	border-left: solid 1px var(--color-white);
}
footer > .footer-link > ul > li > a {
	color: var(--color-white);
	text-decoration: none;
}
footer > .footer-link > ul > li > a:hover {
	text-decoration: underline;
}
@media (max-width: 779px) {
	footer > .footer-link {
		width: 100%;
		margin: 0 0 0 0;
	}
	footer > .footer-link > ul {
		padding: 2em 0 2em 0;
	}
	footer > .footer-link > ul > li {
		padding: 0 0.5em 0 0.5em;
	}
}

footer > .footer-copyright > p {
	text-align: center;
}
@media (max-width: 779px) {
	footer > .footer-copyright > p {
		font-size: 2.75vw;
	}
}

/**********
新規調整用
**********/
.greeting_face_photo {
	margin: 0 auto;
}
.top-info_area {
	width: calc(100% - 330px);
}
#ttno_img {
	width: 100%;
	margin: 0 0 0 0;
}
.top-block {
	display: flex;
	justify-content: space-between;
}
.top-block .top-img {
	margin-left: 30px;
	width: 300px;
}
.greeting_area {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.greeting_area .greeting_photo {
	display: flex;
	justify-content: center;
	flex-direction: column;
	width: 300px;
	margin: 20px 0px;
}
.greeting_area .greeting_photo p {
	text-align: center;
}
.greeting_area .txt {
	width: 680px;
	margin: 20px 0px;
	line-height: 1.8;
	color: rgb(81, 79, 78);
	font-size: 120%;
}
@media (max-width: 779px) {
	#content_box {
		width: 100%;
	}
	dd {
		margin-left: 1em;
		margin-top: 0px;
		margin-bottom: 10px;
	}
	#tt_top {
		font-size: var(--font-size-16-sp);
	}
	#tt_h2 {
		font-size: var(--font-size-20-sp);
		text-wrap: auto;
	}
	.top-block {
		flex-direction: column;
		justify-content: center;
	}
	.top-info_area {
		width: 100%;
	}
	#pp001 {
		font-size: var(--font-size-14-sp);
	}
	.top-block .top-img {
		margin-left: 0;
		margin-top: 5%;
		width: 100%;
	}
	.greeting_area {
		flex-direction: column;
	}
	.greeting_area .greeting_photo {
		width: 100%;
		flex-direction: row;
		align-items: center;
		gap: 0 2em;
	}
	.greeting_face_photo {
		width: 29.33%;
		margin: 0 0 0 0;
	}
	.greeting_area .txt {
		width: 100%;
		font-size: var(--font-size-14-sp);
	}
}



/**********
お知らせ
**********/
.top-info {
	margin-top: 25px;
	display: flex;
	flex-wrap: wrap;
	border-top: solid 1px var(--color-gray);
}
.top-info dt {
	font-size: var(--font-size-19);
	border-bottom: solid 1px var(--color-gray);
	padding: 25px 0 25px 0;
	margin: 0 0 0 0;
	width: 150px;
}
.top-info dd {
	font-size: var(--font-size-19);
	border-bottom: solid 1px var(--color-gray);
	margin: 0 0 0 0;
	padding: 25px 0 25px 0;
	width: calc(100% - 150px);
}
.top-info dd a {
	text-decoration: none;
}
.top-info dd a:hover {
	text-decoration: underline;
}
.info-area {
}
.info-area .info-date {
	text-align: right;
}
.info-area .info-title {
}
.info-area .info-cont-area {
	padding: 3em 0;
}
@media (max-width: 779px) {
	.top-info {
		margin-top: 25px;
		display: flex;
		flex-wrap: wrap;
	}
	.top-info dt {
		font-size: var(--font-size-14-sp);
		border: none;
		padding: 1em 0 0 0;
		width: 100%;
	}
	.top-info dd {
		font-size: var(--font-size-14-sp);
		padding: 1em 0 1em 0;
		width: 100%;
	}
	.top-info dd a {
		text-decoration: none;
	}
	.top-info dd a:hover {
		text-decoration: underline;
	}
}


/**********
フロートバナー
**********/
#float-banner {
	position: fixed;
	bottom: 0;
	right: 0;
	width: 465px;
}
@media (max-width: 779px) {
	#float-banner {
		width: 100%;
	}
}