@charset "utf-8";
/*
Theme Name: kyougakuji-hoju
Theme URI: https://kyougakuji-hoju.com/
Version: 1.0
*/

/* common
---------------------------------------------------------------------------*/
@import url("css/easing.css");

:root {
	--bg-light: #F6F4EF url(img/share/bg-light.jpg) left top;
	--bg-dark: #76736E url(img/share/bg-dark-green.jpg) left top;
	--color-text: #EFEBE6;
	--color-text-dark: #9C8B7B;
	--color-text-line: rgba(255,255,255,0.6);

	--font-serif-jp-m: 'FOT-マティス Pro M', '游明朝体', '游明朝', YuMincho, 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;
	--font-serif-en: 'SabonLTPro-Roman', serif;

	--width-min: 1240px;
	--width-mid: 1440;
	--width-max: 1800px;
	--size-max-over: max(calc(100vw/var(--width-mid)), calc(var(--width-min)/var(--width-mid)));

	--copy-fix-width: max(10.5vw, var(--width-min)*0.105);
	--header-width: 270rem;
}

html {
	font-size: clamp(calc(var(--width-min)/var(--width-mid)), calc(100vw/var(--width-mid)), calc(var(--width-max)/var(--width-mid)));
}

body {
	overflow-y: scroll;
	background: var(--bg-dark);
	color: var(--color-text);
	font-size: 16rem;
	font-family: var(--font-serif-jp-m);
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: none !important;
}
body.noscroll { position: fixed; width: 100%; }

::-moz-selection { background: #62605B; color: var(--color-text); }
::selection { background: #62605B; color: var(--color-text); }

p { font-size: 16rem; line-height: 2; letter-spacing: 0; margin-bottom: 1em; }
p:last-child { margin-bottom: 0 !important; }
address,i { font-style: normal; }
img { max-width: none; }
figure img { width: 100%; }
figure:has(figcaption) { position: relative; }

.justify p {
	letter-spacing: 0.03em;
	text-align: justify;
	font-feature-settings: 'palt' 1;
}

.block { display: inline-block !important; }
.wide { display: inline-block !important; }
.narrow { display: none !important; }
.nav-sp, .btn-nav { display: none !important; }

/* #loading
------------------------------------*/
#loading {
	display: none;
	opacity: 0;
	position: fixed;
	top: 50vh;
	left: 50vw;
	border: 1rem solid var(--color-text);
	border-top-color: transparent;
	border-radius: 50%;
	width: 20rem;
	height: 20rem;
	margin: -10rem 0 0 -10rem;
	z-index: 99999;
	animation: spin .5s infinite linear;
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

#loading-first {
	position: fixed;
	top: 0;
	left: 0;
	background: var(--bg-light);
	width: 100%;
	height: 100vh;
	z-index: 10100;
}

#loading-first .logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) !important;
}

#loading-first .logo img {
	display: block;
	width: 180rem;
	opacity: 0;
}

/* txt
------------------------------------*/
.extended-l,
.title-v,
.news-main h2 {
	transform-origin: left center;
	transform: scaleX(1.06);
}

.extended,
.btn-link a span,
p,figcaption {
	transform-origin: left center;
	transform: scaleX(1.03);
}

p,figcaption {
	max-width: 97%;
}

/* link
------------------------------------*/
a { color: var(--color-text); text-decoration: none; transition: .15s ease-out; -webkit-transform: translateZ(0); }
.hover { cursor: pointer; transition: .15s ease-out; }
a:hover,.hover:hover { text-decoration: none; opacity: 0.6; }
p a, .line {
	text-decoration: underline;
	text-decoration-color: var(--color-text-line);
	text-decoration-thickness: 1rem;
	text-underline-offset: 0.1em;
}

/* .btn
------------------------------------*/
.btn-link a {
	display: inline-block;
	border: 1rem solid var(--color-text-line);
	border-radius: 100rem;
	padding: 9rem 18rem 9rem 20rem;
	color: var(--color-text);
	font-size: 17rem;
	letter-spacing: 0.07em;
	text-align: center;
}


/* #wrap
---------------------------------------------------------------------------*/
#wrap {
	display: flex;
	justify-content: space-between;
	min-width: var(--width-min);
}

.copy-fix {
	position: sticky;
	top: 0;
	left: 0;
	width: var(--copy-fix-width);
	min-width: var(--copy-fix-width);
	height: 920rem;
	padding: 12rem 0 0 5rem;
	z-index: 0;
}

.copy-fix .dark {
	display: none !important;
}

.copy-fix img {
	width: 36.5rem;
	max-height: 85vh;
}

.wrap-inner {
	width: 100%;
}

body.news .wrap-inner,
.wrap-inner:has(#errorContents) {
	padding-left: 90rem;
}

.wrap-inner-s {
	display: flex;
	justify-content: space-between;
}

.img-footer { display: none; }
body.top .img-footer { display: block; }


/* header
---------------------------------------------------------------------------*/
header {
	order: 2;
	align-self: flex-start;
	position: sticky;
	top: 0;
	left: 0;
	width: var(--header-width);
	min-width: var(--header-width);
	height: 100vh;
	margin: 0;
	padding: 36rem 38rem 0 0;
	z-index: 2;
}

header .logo {
	position: absolute;
	bottom: 42rem;
	right: 48rem;
}

header .logo img { width: 115rem; }

header .gnav ul { display: flex; flex-direction: row-reverse; }
header .gnav li a { padding: 0 4rem; }
header .gnav li:nth-of-type(3) a { padding: 0 6rem 0 10rem; }
header .gnav li:nth-of-type(4) a { padding-left: 7rem; }
header .gnav li a img { width: 27rem; }

.gnav .gnav-top,
body.top .gnav li:has(.gnav-top) a { display: none; }
body.top .gnav .gnav-top { display: block !important; }


/* footer
---------------------------------------------------------------------------*/
footer {
	width: 100%;
	margin: 0;
	padding: 340rem 0 105rem;
	opacity: 0;
}

.access {
	display: flex;
}

.access .title {
	margin-right: 52rem;
}

.access .title h1,
.access .title h3 {
	margin-bottom: 28rem;
	text-decoration: underline;
	text-decoration-color: var(--color-text-line);
	text-decoration-thickness: 1rem;
	text-underline-offset: 0.1em;
}

.access .title h1 em,
.access .title h3 em {
	display: block;
	margin-bottom: 12rem;
	font-size: 14rem;
	letter-spacing: 0.1em;
}

.access .title h1 strong,
.access .title h3 strong {
	display: block;
	font-size: 19rem;
	letter-spacing: 0.1em;
}

.access .title .tel {
	font-size: 16rem;
	letter-spacing: 0.05em;
}

.access .title .link {
	margin: 15rem 0 0 -8rem;
	font-size: 14rem;
	letter-spacing: 0.08em;
}

.access .title .link .wide {
	display: inline !important;
}

.access .title p {
	margin-top: 7rem;
	font-size: 14rem;
	letter-spacing: 0.03em;
	white-space: nowrap;
}

.access .title .sns {
	display: flex;
	margin: 20rem 0 0 -5rem;
}

.access .title .sns li a {
	display: block;
	padding: 5rem;
}

.access .title .sns li img {
	width: 37rem;
}

.access address {
	margin: -6rem 0 2rem;
	font-size: 16rem;
	line-height: 1.6;
	letter-spacing: 0.06em;
}

.access .address p {
	margin-left: 1rem;
	font-size: 14rem;
}

.access .address .btn-link {
	margin-left: -2rem;
}


/* contents
---------------------------------------------------------------------------*/
#mainContents {
	order: 1;
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	text-align: left;
}

.contents {
	min-height: calc(100vh - 630rem);
	padding: 195rem 0 0;
	opacity: 0;
}

.contents-common,
body.top footer {
	padding-left: 95rem;
}

/* .title-page
------------------------------------*/
.title-page {
	margin: 0 0 70rem -2rem;
	font-size: 24rem;
}

/* .dot-list
------------------------------------*/
.dot-list li {
	position: relative;
	margin: 0 0 6rem;
	padding-left: 20rem;
	font-size: 16rem;
	line-height: 1.6;
	letter-spacing: 0.05em;
}

.dot-list li:last-of-type { margin-bottom: 0; }
.dot-list li:before { display: block; content: '・'; position: absolute; top: 0; left: 0; }

/* .box-list
------------------------------------*/
.box-list {
	max-width: 788rem;
}

.box-list .inner {
	border: 1px solid var(--color-text-line);
	padding: 24rem 25rem 23rem;
	font-size: 15rem;
	line-height: 1.7;
	letter-spacing: 0.03em;
}

.box-list dl {
	display: flex;
}

.box-list dt {
	white-space: nowrap;
}

.box-list .inner > p {
	margin-bottom: 7rem;
	font-size: 15rem;
	line-height: 1.8;
}


/* news archive
---------------------------------------------------------------------------*/
.news-list article {
	margin-bottom: 9rem;
}

.news-list article a {
	position: relative;
	display: inline-block;
	padding-left: 115rem;
	line-height: 1.7;
}

.news-list time {
	display: block;
	position: absolute;
	top: 3rem;
	left: 0;
	font-family: var(--font-serif-en);
	font-size: 17rem;
	letter-spacing: 0.03em;
	white-space: nowrap;
}

.news-list h3 {
	display: inline-block;
	font-size: 17rem;
	text-decoration: underline;
	text-decoration-color: var(--color-text-line);
	text-decoration-thickness: 1rem;
	text-underline-offset: 0.1em;
}


/* news single
---------------------------------------------------------------------------*/
.news-area {
	width: 830rem;
}

/* .news-title
------------------------------------*/
.news-title {
	margin-bottom: 45rem;
}

.news-title time {
	display: block;
	margin: 0 0 18rem 3rem;
	font-family: var(--font-serif-en);
	font-size: 15rem;
	letter-spacing: 0.07em;
}

.news-title h1 {
	font-size: 21rem;
	line-height: 1.6;
	letter-spacing: 0.03em;
}

/* .news-main
------------------------------------*/
.news-main > * {
	font-family: var(--font-gothic-jp) !important;
}

.news-main, .news-main p {
	font-size: 17rem;
	line-height: 2.2;
	letter-spacing: 0.07em;
}

.news-main h2 {
	margin: 68rem 0 24rem;
	font-size: 21rem;
	line-height: 1.8;
}

.news-main > h2:first-child {
	margin-top: 0;
}

.news-main p {
	margin-bottom: 24rem;
	text-align: justify;
	word-break: break-all;
	font-feature-settings: 'palt' 1;
}

.news-main p:last-child { margin-bottom: 0; }
.news-main a { text-decoration: underline; word-break: break-all; }
.news-main strong { font-weight: bold; }
.news-main em { font-style: italic; }
.news-main del { text-decoration: line-through; }

.news-main img {
	display: block;
	max-width: calc(100% + 250rem);
	height: auto;
	margin: 45rem 0 60rem !important;
}

.news-main .wp-caption { position: relative; max-width: 100%; margin-bottom: 40rem; }
.news-main .wp-caption-text { bottom: 10rem; }

.news-main .gallery > dl { width: 49.5% !important; margin-right: 1% !important; }
.news-main .gallery > dl:nth-child(even) { margin-right: 0 !important; }
.news-main .gallery a { pointer-events: none; }
.news-main .gallery img { border: none !important; width: 100% !important; margin: 0 !important; }

.news-main ul, .news-main ol { margin: 30rem 0 30rem; }
.news-main ul li { list-style: disc; margin: 0 0 6rem 18rem; }
.news-main ol li { list-style: decimal; margin: 0 0 6rem 24rem; }
.news-main ul li:last-of-type,
.news-main ol li:last-of-type { margin-bottom: 0; }

.news-main blockquote { background: #F5F5F5; margin: 40rem 0; padding: 28rem 36rem; text-align: justify; }
.news-main blockquote p { font-size: 14rem; line-height: 1.9; }

.post-main iframe { width: 830rem; height: 470rem; }

/* .news-table
------------------------------------*/
.news-table {
	margin-top: 80rem;
}

.news-table h3 {
	margin: 68rem 0 28rem;
	font-size: 19rem;
	line-height: 1.6;
}

.news-table h3:first-child { margin-top: 0; }

.news-table table {
	box-sizing: border-box;
	width: calc(97% + 5rem);
	margin: 0 0 40rem -5rem;
	font-size: 16rem;
	line-height: 1.6;
	letter-spacing: 0.05em;
	font-feature-settings: 'palt' 1;
}

.news-table tr { border-top: 1rem solid var(--color-text-line); }

.news-table th, .news-table td {
	padding-top: 10rem;
	padding-bottom: 30rem;
}

.news-table th {
	position: relative;
	box-sizing: border-box;
	min-width: 140rem;
	padding-right: 40rem;
	padding-left: 5rem;
	font-weight: normal;
	text-align: left;
	vertical-align: top;
}

.news-table td {
	box-sizing: border-box;
	width: 100%;
	padding-right: 5rem;
}

.news-table table.right td { text-align: right; }

.news-table-attention {
	margin-top: -36rem;
	font-size: 14rem;
	line-height: 1.8;
	letter-spacing: 0.07em;
	font-feature-settings: 'palt' 1;
}

/* .news-link
------------------------------------*/
.news-table + .news-link { margin-top: 45rem; }
.news-link { margin: 68rem 0 0 -2rem; }
.news-link li { display: inline-block; margin: 0 12rem 14rem 0; }
.news-link li a { font-feature-settings: 'palt' 1; }

/* .news-other
------------------------------------*/
.news-other {
	margin: 170rem 0 0;
}

.news-other > h2 {
	margin: 0 0 54rem -18rem;
	font-size: 19rem;
	letter-spacing: 0.03em;
}

.news-other .btn-link {
	margin: 65rem 0 0 -2rem;
}


/* .wp-pagenavi
---------------------------------------------------------------------------*/
.wp-pagenavi {
	overflow: hidden;
	margin: 120rem 0 0 -10rem;
	font-size: 17rem;
}

.wp-pagenavi .extend,
.wp-pagenavi a {
	margin: 0 7rem;
	padding: 5rem;
}

.wp-pagenavi .current {
	display: inline-block;
	border-bottom: 1rem solid var(--color-text-line);
	margin: 0 12rem;
	padding: 5rem 0 2rem;
}


/* page top
---------------------------------------------------------------------------*/
#top-news,
#top-greeting,
#top-point,
#top-noukotsudan,
#top-flow,
#top-outline {
	padding-top: 170rem;
}

#topContents section {
	position: relative;
	padding-top: 55rem;
}

/* .title-v
------------------------------------*/
.title-v {
	position: absolute;
	top: 0;
	left: -88rem;
	font-size: 24rem;
	letter-spacing: 0;
	font-feature-settings: 'palt' 0;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	white-space: nowrap;
}

.title-v.let {
	letter-spacing: 0.12em;
}

/* .img-wide
------------------------------------*/
.img-wide {
	position: relative;
	width: calc(100% + var(--copy-fix-width) + var(--header-width));
	margin-left: calc(-1 * var(--copy-fix-width));
}

figure figcaption,
.news-main .wp-caption-text {
	position: absolute;
	bottom: 15rem;
	left: 15rem;
	color: #FFFFFF;
	font-size: 11rem;
	letter-spacing: 0.08em;
}

/* .top-main
------------------------------------*/
.top-main {
	display: none;
	padding: 20rem 30rem 0 0;
	opacity: 0;
}

body.top .top-main {
	display: block;
}

/* .top-lead
------------------------------------*/
.top-lead {
	margin-bottom: -15rem;
	padding-top: 0 !important;
}

.top-lead h2 {
	position: relative;
	margin-bottom: 50rem;
	padding-bottom: 33rem;
}

.top-lead h2:after {
	display: block;
	content: '';
	position: absolute;
	bottom: 0;
	left: -15rem;
	background-color: var(--color-text-line);
	width: 80rem;
	height: 1rem;
	opacity: 0.8;
}

.top-lead h2 em {
	display: block;
	margin: 0 0 26rem 2rem;
	font-family: var(--font-serif-en);
	font-size: 15rem;
	letter-spacing: 0.08em;
}

.top-lead h2 strong {
	display: block;
	font-size: 24rem;
	letter-spacing: 0.09em;
	font-feature-settings: 'palt' 1;
}

.top-lead p {
	margin-bottom: 12rem;
	font-size: 17rem;
	line-height: 2.25;
}

/* .top-news
------------------------------------*/
.top-news .btn-link {
	margin: 46rem 0 0 -2rem;
}

/* .top-greeting
------------------------------------*/
.top-greeting {
	display: flex;
	margin-bottom: 180rem;
}

.top-greeting .img {
	order: 1;
	width: 275rem;
	min-width: 275rem;
	margin-right: 53rem;
}

.top-greeting .img figure {
	margin-bottom: 32rem;
}

.top-greeting .img h3 {
	margin-bottom: 17rem;
	font-size: 17rem;
}

.top-greeting .img p {
	font-size: 15rem;
	line-height: 1.8;
	letter-spacing: 0.08em;
}

.top-greeting .txt {
	order: 2;
	position: relative;
	width: 500rem;
	transform: translateY(-5rem);
}

.top-greeting .txt h3 {
	position: absolute;
	top: -28rem;
	right: -66rem;
	font-size: 24rem;
	letter-spacing: 0.03em;
	font-feature-settings: 'palt' 0;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	white-space: nowrap;
}

.top-greeting .txt p {
	margin-bottom: 18rem;
	line-height: 2.1;
}

/* .top-point
------------------------------------*/
.top-point {
	margin-bottom: 180rem;
}

.point-list {
	margin-bottom: 100rem;
}

.point-list dt {
	position: relative;
	margin-bottom: 35rem;
	padding-left: 95rem;
}

.point-list dt i {
	display: block;
	position: absolute;
	top: 6rem;
	left: 0;
	font-family: var(--font-serif-en);
	font-size: 16rem;
}

.point-list dt i:after {
	display: block;
	content: '';
	position: absolute;
	top: 6rem;
	left: 27rem;
	background-color: var(--color-text-line);
	width: 55rem;
	height: 1rem;
	opacity: 0.5;
}

.point-list dt h3 {
	display: inline-block;
	font-size: 23rem;
	letter-spacing: 0.08em;
	font-feature-settings: 'palt' 1;
}

.point-list dd {
	margin-bottom: 72rem;
	padding-left: 50rem;
}

.point-list dd:last-of-type {
	margin-bottom: 0;
}

.point-list dd p,
.top-point > p {
	margin-bottom: 13rem;
}

.top-point > p {
	letter-spacing: 0.04em;
}

.top-point .btn-link {
	margin: 26rem 0 0 -2rem;
}

/* .top-noukotsudan1
------------------------------------*/
.top-noukotsudan1 {
	margin-bottom: 180rem;
}

.top-noukotsudan1 .title-v {
	top: 8rem;
}

.top-noukotsudan1 > p.attention {
	margin-top: -14rem;
	font-size: 14rem;
}

.top-noukotsudan1 .dl-line {
	position: relative;
	margin: 38rem 0 0 2rem;
	padding: 0 0 0 24rem;
}

.top-noukotsudan1 .dl-line:before {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--color-text-line);
	width: 1rem;
	height: calc(100% - 4rem);
	opacity: 0.5;
}

.top-noukotsudan1 .dl-line dt {
	margin-bottom: 8rem;
	font-size: 16rem;
}

.top-noukotsudan1 .dl-line dd:not(:last-child) {
	margin-bottom: 20rem;
}

.top-noukotsudan1 .dl-line dd p {
	font-size: 14rem;
}

.top-noukotsudan1 .box-list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 0 16rem;
	margin-top: 68rem;
}

.top-noukotsudan1 .box-list h3 {
	margin-bottom: 5rem;
	font-family: var(--font-serif-en);
	font-size: 20rem;
	letter-spacing: 0.03em;
}

/* .top-noukotsudan2
------------------------------------*/
.top-noukotsudan2 {
	margin-bottom: 180rem;
}

.top-noukotsudan2 .box-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 30rem;
}

.top-noukotsudan2 .box-list .inner {
	padding: 35rem 35rem 32rem;
}

.top-noukotsudan2 .box-list h3 {
	margin-bottom: 12rem;
	font-family: var(--font-serif-en);
	font-size: 19rem;
	letter-spacing: 0.03em;
}

.top-noukotsudan2 .box-list dl.mb {
	margin-bottom: 39rem;
}

.top-noukotsudan2 .box-list dl + p {
	margin-top: 14rem;
}

.top-noukotsudan2 .box-list p:has(+ .attention) {
	margin-bottom: 12rem;
}

.top-noukotsudan2 .box-list p.attention {
	font-size: 13rem;
}

/* .top-temple
------------------------------------*/
.top-temple {
	width: 830rem;
	margin-bottom: 180rem;
}

.top-temple .temple {
	margin-bottom: 70rem;
}

.top-temple .temple figure {
	margin-bottom: 34rem;
}

.top-temple .temple h3 {
	margin-bottom: 16rem;
	margin-left: -1rem;
	font-size: 16rem;
	letter-spacing: 0.03em;
}

.top-temple .temple p {
	letter-spacing: 0.02em;
}

.top-temple .temple.column2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 110rem;
}

.top-temple .temple.column2 figure {
	margin-bottom: 28rem;
}

.top-temple .temple.column2 h3 {
	margin-bottom: 20rem;
}

.top-temple .temple.column2 p {
	line-height: 1.9;
}

.top-temple .box {
	border: 1px solid var(--color-text-line);
	padding: 38rem 45rem 38rem;
}

.top-temple .box h3 {
	margin: 52rem 0 34rem 2rem;
	font-size: 16rem;
	letter-spacing: 0.02em;
	text-decoration: underline;
	text-decoration-color: var(--color-text-line);
	text-decoration-thickness: 1rem;
	text-underline-offset: 0.1em;
}

.top-temple .box .inner {
	display: inline-block;
	vertical-align: top;
}

.top-temple .box .inner:first-of-type {
	margin-right: 95rem;
}

.top-temple .box h4 {
	margin: 0 0 13rem -1rem;
	font-size: 16rem;
}

.top-temple .box dl {
	display: flex;
	margin: 0 0 3rem 1rem;
	font-size: 14rem;
	line-height: 1.7;
}

.top-temple .box dt {
	width: 61rem;
	min-width: 61rem;
}

/* .top-flow
------------------------------------*/
.top-flow dl {
	margin-bottom: 42rem;
}

.top-flow dt {
	position: relative;
	margin-bottom: 20rem;
	padding-left: 95rem;
}

.top-flow dt i {
	display: block;
	position: absolute;
	top: 3rem;
	left: 0;
	font-family: var(--font-serif-en);
	font-size: 16rem;
}

.top-flow dt i:after {
	display: block;
	content: '';
	position: absolute;
	top: 6rem;
	left: 27rem;
	background-color: var(--color-text-line);
	width: 55rem;
	height: 1rem;
	opacity: 0.5;
}

.top-flow dt h3 {
	display: inline-block;
	font-size: 16rem;
	letter-spacing: 0.05em;
	font-feature-settings: 'palt' 1;
}

.top-flow dd {
	margin-bottom: 72rem;
	padding-left: 50rem;
}

.top-flow dd:last-of-type {
	margin-bottom: 0;
}

.top-flow dd .box {
	display: inline-block;
	border: 1px solid var(--color-text-line);
	margin: 10rem 0 10rem;
	padding: 22rem 38rem 16rem 24rem;
	white-space: nowrap;
}

.top-flow dd .box h4 {
	margin-bottom: 8rem;
	margin-left: -1rem;
	font-size: 16rem;
}

.top-flow dd .box p {
	font-size: 14rem;
}

.top-flow dd p:has(+ p.attention) {
	margin-bottom: 6rem;
}

.top-flow dd p.attention {
	font-size: 14rem;
}

/* .top-outline
------------------------------------*/
.top-outline .map {
	position: relative;
	overflow: hidden;
	width: 715rem;
	height: 395rem;
	margin: 45rem 0 70rem;
	filter: grayscale(100%);
}

.top-outline .map iframe {
	position: absolute;
	top: -150rem;
	left: 0;
	width: 100%;
	height: calc(100% + 300rem);
	z-index: 0;
}

.top-outline .inner {
	display: flex;
	margin-bottom: 65rem;
}

.top-outline .inner:last-child {
	margin-bottom: 0;
}

.top-outline .inner h3 {
	width: 215rem;
	min-width: 215rem;
	font-size: 16rem;
	letter-spacing: 0.03em;
	font-feature-settings: 'palt' 1;
}

.top-outline .inner .txt {
	width: 100%;
}

.top-outline .inner dl:not(:last-child) {
	margin-bottom: 24rem;
}

.top-outline .inner dt {
	margin: 0 0 8rem -12rem;
	font-size: 16rem;
}

.top-outline .inner dd p {
	line-height: 1.8;
}

.top-outline .inner .dot-list {
	margin-top: -4rem;
}

.top-outline .inner .dot-list + p {
	margin: 16rem 0 0 20rem;
	line-height: 1.8;
	letter-spacing: 0.03em;
}


/* page news
---------------------------------------------------------------------------*/
#newsContents .news-list article {
	margin-bottom: 27rem;
}


/* print
---------------------------------------------------------------------------*/
@media print {

}