@charset "UTF-8";

/* 全体定義 */
/* ------------------------------------------------------------ */
:root {
	--body-color: #000;
	--link-color: #444;
	--linkhover-color: #999; 
	--button-color: #555;
	--back-color: #f1f1f1;
	--border-color: #f4f4f4;
	--white-color: #fff;
}

html {
	box-sizing: border-box;
	font-size: 70.0%;
	scroll-padding-top: 100px;
}

body {
	color: var(--body-color);
	/*font-family: 'メイリオ',Meiryo,'MS Pゴシック',sans-serif;*/
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	background:var(--white-color);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	margin:0;
	padding:0;
}

/* ご利用ガイド */
/* ------------------------------------------------------------ */
.container {
	margin: 0 auto;
	max-width: 1000px;
	padding:  0rem;
	
}

.row {
	display: flex;
	flex-direction: column;
	padding: 0;
	width: 100%;
}

.col {
	display: block;
	flex: 1;
	margin-left: 0;
	margin-bottom: 1rem;
	max-width: 100%;
	width: 100%;
}

/* 画面領域（横幅）が768px以上 */
/* ------------------------------------------------------------ */
@media ( min-width : 768px ) {
	.row {
		display: flex;
		flex-flow: row wrap;
		justify-content: space-between;
		padding: 0; 
	}
	.col {
		display: block;
		flex: 1;
		margin-bottom: 1rem;
		max-width: 100%;
		width: 100%;
	}
	.row .col.span-1 {
		flex: 0 0 4.66666666667%;
		max-width: 4.66666666667%;
	}
	.row .col.span-2 {
		flex: 0 0 13.3333333333%;
		max-width: 13.3333333333%;
	}
	.row .col.span-3 {
		flex: 0 0 22%;
		max-width: 22%;
	}
	.row .col.span-4 {
		flex: 0 0 30.6666666667%;
		max-width: 30.6666666667%;
	}
	.row .col.span-5 {
		flex: 0 0 39.3333333333%;
		max-width: 39.3333333333%;
	}
	.row .col.span-6 {
		flex: 0 0 48%;
		max-width: 48%;
	}
	.row .col.span-7 {
		flex: 0 0 56.6666666667%;
		max-width: 56.6666666667%;
	}
	.row .col.span-8 {
		flex: 0 0 65.3333333333%;
		max-width: 65.3333333333%;
	}
	.row .col.span-9 {
		flex: 0 0 74.0%;
		max-width: 74.0%;
	}
	.row .col.span-10 {
		flex: 0 0 82.6666666667%;
		max-width: 82.6666666667%;
	}
	.row .col.span-11 {
		flex: 0 0 91.3333333333%;
		max-width: 91.3333333333%;
	}
	.row .col.span-12 {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/* 画面領域（横幅）が980px以上 */
/* ------------------------------------------------------------ */
@media ( min-width : 980px ) {
	.row .col.span-1-md {
		flex: 0 0 4.66666666667%;
		max-width: 4.66666666667%;
	}
	.row .col.span-2-md {
		flex: 0 0 13.3333333333%;
		max-width: 13.3333333333%;
	}
	.row .col.span-3-md {
		flex: 0 0 22%;
		max-width: 22%;
	}
	.row .col.span-4-md {
		flex: 0 0 30.6666666667%;
		max-width: 30.6666666667%;
	}
	.row .col.span-5-md {
		flex: 0 0 39.3333333333%;
		max-width: 39.3333333333%;
	}
	.row .col.span-6-md {
		flex: 0 0 48%;
		max-width: 48%;
	}
	.row .col.span-7-md {
		flex: 0 0 56.6666666667%;
		max-width: 56.6666666667%;
	}
	.row .col.span-8-md {
		flex: 0 0 65.3333333333%;
		max-width: 65.3333333333%;
	}
	.row .col.span-9-md {
		flex: 0 0 74.0%;
		max-width: 74.0%;
	}
	.row .col.span-10-md {
		flex: 0 0 82.6666666667%;
		max-width: 82.6666666667%;
	}
	.row .col.span-11-md {
		flex: 0 0 91.3333333333%;
		max-width: 91.3333333333%;
	}
	.row .col.span-12-md {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/* 見出し */
/* ------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
	margin-top: 0;

	font-weight: 300;
	letter-spacing: 0.3em;}
	font-family: inherit;
	
	h1 { font-size: 2.8rem; line-height: 1.2;  letter-spacing: -.1rem;}
	h2 { font-size: 2.5rem; line-height: 1.25; letter-spacing: -.1rem; }
	h3 { font-size: 2.3rem; line-height: 1.3;  letter-spacing: -.1rem; }
	h4 { font-size: 2.0rem; line-height: 1.35; letter-spacing: -.08rem; }
	h5 { font-size: 1.8rem; line-height: 1.5;  letter-spacing: -.05rem; }
	h6 { font-size: 1.5rem; line-height: 1.6;  letter-spacing: 0; }

	/* PC表示 */
	@media (min-width: 550px) {
		h1 { font-size: 3.0rem; }
		h2 { font-size: 2.8rem; }
		h3 { font-size: 2.5rem; }
		h4 { font-size: 2.0rem; }
		h5 { font-size: 1.8rem; }
		h6 { font-size: 1.5rem; }
}

p {margin-top: 0; }

/* リンク */
/* ------------------------------------------------------------ */
a { color: var(--link-color); }
a:hover { color: var(--linkhover-color); }

/* ボタン */
/* ------------------------------------------------------------ */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	display: inline-block;
	height: 38px;
	padding: 0 40px;
	color: var(--button-color);
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	line-height: 38px;
	letter-spacing: .1rem;
	text-transform: none;
	text-decoration: none;
	white-space: nowrap;
	background-color: transparent;
	border: 1px solid var(--border-color);
	cursor: pointer;
	box-sizing: border-box;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
	color: var(--button-color);
	border-color: var(--border-color);
	outline: 0;
}

/* フォーム */
/* ------------------------------------------------------------ */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
	height: 38px;
	padding: 6px 10px;
	background-color: var(--white-color);
	border: 1px solid var(--border-color);
	box-shadow: none;
	box-sizing: border-box;
	font-size: 16px;
}
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
textarea {
	min-height: 250px;
	padding-top: 6px;
	padding-bottom: 6px;
}
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
	border: 1px solid var(--border-color);
	outline: 0;
}
label,
legend {
	display: block;
	margin-bottom: .5rem;
	font-weight: 500;
}
fieldset {
	padding: 0;
	border-width: 0;
}
input[type="checkbox"],
input[type="radio"] {
	display: inline;
}
label > .label-body {
	display: inline-block;
	margin-left: .5rem;
	font-weight: normal;
}

/* リスト */
/* ------------------------------------------------------------ */
ul {
	list-style: disc inside;
	margin-left: 10px;
}
ol {
	list-style: decimal inside;
}
ol, ul {
	padding-left: 0;
	margin-top: 0;
}
ul ul,
ul ol,
ol ol,
ol ul {
	margin: 0.5rem 0 0.5rem 1.5rem;
	font-size: 100%;
}

/* 全幅 */
/* ------------------------------------------------------------ */
.full-width {
	width: 100%;
	box-sizing: border-box;
}
.max-full-width {
	max-width: 100%;
	box-sizing: border-box;
}
.pull-right {
	float: right;
}
.pull-left {
	float: left;
}

/* 罫線 */
/* ------------------------------------------------------------ */
hr {
	border-width: 0;
	border-top: 1px solid var(--border-color);
}
hr {
	border: 0;
	height: 9px;
	background-color: #004A98;
	margin: 0 0 0 0;
}

.headhr hr {
	border: 0;
	height: 9px;
	background-color: #004A98;
	margin: 0 0 20px 0;
}

logo {
}
.logo img {
	max-width:100%;
}
img {
	max-width:75%;
	height: auto;/*高さ自動*/
}

a {
	color: var(--link-color);
	text-decoration-line: none;
	text-decoration: underline; /* 下線を引く */
}
a:hover { 
	color: var(--linkhover-color);
}
h1, h2, h3, h4, h5, h6 {
	font-family: inherit;
	letter-spacing: 0.1rem;
}
h2 {
	position: relative;
	margin-bottom: 1rem;
	padding-bottom: 0rem;
	text-align: center;
	font-family: inherit;
}
/* ご利用ガイド用のデザイン */
h2.design-1 {
	background-color: #003087;
	color: white;
	padding: 10px 20px;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	width: fit-content;
	margin: 0 auto;  /* 左右のマージンを自動にして中央に配置 */
}
h3 {
	font-size: 2.2rem;
	position: relative;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	text-align: center;
}
h5 {
	text-align: center;
}
button {
	margin: 1rem;
}
.center {
	text-align: center;
}

/* ヘッダー */
/* ------------------------------------------------------------ */
header {
	position: sticky;
	top: 0;
	padding: 0px 0;
	z-index: 1;
	background-color: var(--white-color);
}
.header {
	/* font-family: 'メイリオ', serif; */
	display: flex;
	flex-direction: row;
	padding: 0;
	margin: 1rem 2rem;
}
.sitetitle {
	font-size: 3rem;
}
.header-box {
	margin-left: auto;
}
.menu img {
	width: 17px; /* アイコンの幅を設定 */
	height: 17px; /* アイコンの高さを設定 */
}
.menu a {
	display: flex;  /* アイコンとテキストを縦並びにする */
	flex-direction: column;  /* アイコンとテキストを縦並びに */
	align-items: center;  /* アイコンとテキストを横方向で中央揃え */
	text-decoration: none;  /* リンクの下線を消す */
	color: black;  /* テキストの色 */
	font-size: 15px;  /* 文字サイズ */
}
.menu a img {
	margin-bottom: 5px;		  /* アイコンとテキストの間に5pxのスペース */
}

/* スマホ用メニュー */
/* ------------------------------------------------------------ */
nav ul {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	list-style: none;
	margin: 0;
	gap: 12px;  /* リストアイテム間の間隔を12pxに設定 */
}
nav li {
	flex: 1 0 auto;
	margin-bottom: 0
}
nav li a {
	text-decoration: none;
	text-align: center;
}
nav a:hover {
	background-color: var(--back-color);   
}
nav a {
	padding: 1rem;
	color: var(--nav-color);
	display: block;
}
@media screen and (min-width: 980px) {
	/* PC時はMENUボタンを非表示 */
	#open,#close {
		display: none !important;
	}
	#navi {
		display: block !important;
	}
}

@media screen and (max-width: 980px) {
	.header {
		flex-direction: column;
		margin-bottom: 10px;
	}
	.header #open,#close  {
		position: absolute;
		top: 14px;
		right: 12px;
	}
	nav ul {
		flex-direction: column;
	}
	.header li {
		padding-top: 0;
	}
	.header-box {
		margin-left: initial;
	}
	/* スマホ時はMENUボタンを表示 */
	#open {
		display: block;
		background: url(../img/button.png);
		background-repeat: no-repeat;
		background-size: contain;
		width: 50px;
		height: 50px;
		border: 1px solid black;
	}
	#close  {
		display: block;
		background: url(../img/button2.png);
		background-repeat: no-repeat;
		background-size: contain;
		width: 50px;
		height: 50px;
		border: 1px solid black;
	}
	nav li a {
		border-bottom: 1px dashed var(--link-color);
	}
	/* スマホ時はメニューを非表示 */
	#navi {
		display: none;
	}
}

/* メインコンテンツ */
/* ------------------------------------------------------------ */
main {
	margin: 0;
}
section {
	margin: 0;
	padding: 2rem 0;
}

/* お知らせ */
.news {
	max-width: 1200px;
	margin-top: 0px;
	margin-right: auto;
	margin-left: auto;
	padding: 20px;
	border-radius: 10px;
}
.news h2 {
	text-align: center;
	font-size: 2.8rem;
	margin-top: 20px;
	margin-bottom: 20px;
	font-family: inherit;
}

/* お知らせリスト */
.news-list {
	display: flex;
	flex-direction: column;
	gap: 5px;
	overflow-y: auto;
}

.news-item {
	background-color: #fff;
	padding: 10px;
	border-radius: 5px;
	border: 1px solid #ccc;
}

.news-item .news-item-link {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.news-item a {
	text-decoration:none;
}

.news-item .category {
	width: 150px;
	text-align: center;
	padding: 5px 10px;
	color: white;
	font-weight: bold;
	border-radius: 3px;
	margin-right: 20px;
}

.news-item .info-category-E {
  background-color: #FF5050;
}
.news-item .info-category-C {
  background-color: #FFBE3B;
}
.news-item .info-category-S {
  background-color: #8EC16B;
}
.news-item .info-category-I {
  background-color: #004A98;
}
.news-item .info-category-O {
  background-color: #969696;
}


.news-links {
	margin-top: 10px;
	text-align: right;
}

/* ▼ 画面幅が768px以下のときは縦並びに変更 ▼ */
/* ------------------------------------------------------------ */
@media (max-width: 768px) {
	.news-item {
		flex-direction: column;
		align-items: flex-start;
	}

	.news-item .category {
		margin-right: 0;
	}

	.news-item .topic {
		padding-left: 2rem;
		padding-right: 2rem;
		width: 100%; /* オプション：幅100%にして余白を活かす */
		box-sizing: border-box; /* padding分を含めて幅を管理 */
	}
}

/* よくあるお問合せ */
.index-faq {
	max-width: 1200px;
	margin-top: 0px;
	margin-right: auto;
	margin-left: auto;
	padding: 20px;
	border-radius: 10px;
}
.index-faq h2 {
	text-align: center;
	font-size: 2.8rem;
	margin-bottom: 20px;
	font-family: inherit;
}

.index-faq-list {
	display: flex;
	flex-direction: column; /* 横並びにする */
	gap: 5px;
	overflow-y: auto;  /* 垂直方向のスクロールを有効にする */
}

.index-faq-item {
	background-color: #fff;
	padding: 10px;
	border-radius: 5px;
	border: 1px solid #ccc;
}

.index-faq-item .faq-item-link {
	display: flex;
	align-items: center; /* アイテムを中央揃え */
	justify-content: flex-start;
}

.index-faq-item a {
	text-decoration:none;
}

.index-faq-item .category {
	width: 150px;
	text-align: center;
	padding: 5px 10px;
	color: white;
	font-weight: bold;
	border-radius: 3px;
	margin-right: 20px;
}

.index-faq-item .faq-category-A {
  background-color: #FFBE3B;
}
.index-faq-item .faq-category-B {
  background-color: #CDD204;
}
.index-faq-item .faq-category-C {
  background-color: #8EC16B;
}
.index-faq-item .faq-category-D {
  background-color: #6BD7F9;
}
.index-faq-item .faq-category-E {
  background-color: #6E88F6;
}
.index-faq-item .faq-category-F {
  background-color: #C762F0;
}
.index-faq-item .faq-category-G {
  background-color: #FFA3E7;
}
.index-faq-item .faq-category-H {
  background-color: #FFBE3B;
}
.index-faq-item .faq-category-J {
  background-color: #CDD204;
}
.index-faq-item .faq-category-K {
  background-color: #8EC16B;
}
.index-faq-item .faq-category-L {
  background-color: #6BD7F9;
}
.index-faq-item .faq-category-M {
  background-color: #6E88F6;
}
.index-faq-item .faq-category-N {
  background-color: #C762F0;
}
.index-faq-item .faq-category-P {
  background-color: #FFA3E7;
}
.index-faq-item .faq-category-Q {
  background-color: #FFBE3B;
}
.index-faq-item .faq-category-R {
  background-color: #CDD204;
}
.index-faq-item .faq-category-S {
  background-color: #8EC16B;
}
.index-faq-item .faq-category-T {
  background-color: #6BD7F9;
}
.index-faq-item .faq-category-U {
  background-color: #6E88F6;
}
.index-faq-item .faq-category-V {
  background-color: #C762F0;
}
.index-faq-item .faq-category-W {
  background-color: #FFA3E7;
}
.index-faq-item .faq-category-X {
  background-color: #FFBE3B;
}
.index-faq-item .faq-category-Y {
  background-color: #FF5050;
}
.index-faq-item .faq-category-Z {
  background-color: #969696;
}

/* ▼ 画面幅が768px以下のときは縦並びに変更 ▼ */
/* ------------------------------------------------------------ */
@media (max-width: 768px) {
	.index-faq-item {
		flex-direction: column;
		align-items: flex-start;
	}

	.index-faq-item .category {
		margin-right: 0;
	}

	.index-faq-item .topic {
		padding-left: 2rem;
		padding-right: 2rem;
		width: 100%; /* オプション：幅100%にして余白を活かす */
		box-sizing: border-box; /* padding分を含めて幅を管理 */
	}
}

.gray-back {
	background-color: var(--back-color);
	background-size: cover;
}

/* 拠点情報 */
.base-info {
	max-width: 700px;
	margin: 20px auto;
	padding: 20px;
	border-radius: 10px;
}
.base-info h2 {
	text-align: center;
	font-size: 2.8rem;
	margin-bottom: 20px;
	font-family: inherit;
}

.base-info img {
	vertical-align: middle;
	width: 17px; /* アイコンの幅を設定 */
	height: 17px; /* アイコンの高さを設定 */
}

.base-list {
	display: flex;
	flex-direction: column;
	gap: 5px;
	overflow-y: auto;
}

.base-item {
	display: flex;
	align-items: center; /* アイテムを中央揃え */
	justify-content: flex-start;
	background-color: #fff;
	padding: 10px;
	border-radius: 5px;
	border: 1px solid #ccc;
	margin: 0 0 10px 0;
}

.category {
	width: 125px;
	text-align: center;
	padding: 5px 10px;
	color: white;
	font-weight: bold;
	border-radius: 3px;
	margin-right: 20px;
}


.contents-list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px
}

@media screen and (max-width: 768px){
	.contents-list {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		gap: 5px
	}
	
}


.contents-item {
	flex: 0 0 20%;
}
.contents-item {
	width: 30%; 
	margin-top: 10px;
	margin-bottom: 0px;
	padding: 15px;
	border: 1px solid #ccc;
	border-radius: 8px;
	box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.1);
	background-color: #ffffff;
	color: inherit;
}


/* お問い合わせ */
/* ------------------------------------------------------------ */
.contact-box {
	border: 1px solid var(--border-color);
	text-align: center;
	padding: 2rem 0;
}
.table {
	margin: 4rem 0;
}
.table th {
	width: 150px;
}
input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea { 
	background-color: var(--white-color);
}

/* コピーライト */
/* ------------------------------------------------------------ */
.copyright {
	color: #ffffff;
	font-size: 11px;
	text-align: center;
	padding: 1rem 0;
	background-color: #004A98;
}

/* ページトップへ戻るボタン */
/* ------------------------------------------------------------ */
#pagetop {
	position: fixed;
	bottom: 25px;
	right: 25px;
	display: block;
	width: 40px;
	height: 40px;
	box-sizing: border-box;
	background: var(--white-color);
	border: 1px solid var(--linkhover-color);
	border-radius: 50%;
	padding-top: 30px;
	text-align: center;
	text-decoration: none;
	opacity: 0.8;
}
#pagetop::after{
	content: "";
	display: block;
	border-top: 2px solid var(--base-color);
	border-right: 2px solid var(--base-color);
	width: 25%;
	height: 25%;
	top: 45%;
	left: 0;
	right: 0;
	margin: auto;
	position: absolute;
	transform: rotate(-45deg);
}
#pagetop:hover{
	opacity: 0.5;
}

/* 幅768px以下の表示 */
/* ------------------------------------------------------------ */
@media screen and (max-width: 768px){
	/* ヘッダー */
	/* ------------------------------------------------------------ */
	.headerbar {
		display: none;
	}

	/* メイン画像 */
	/* ------------------------------------------------------------ */
	#mainimg h1 {
		height: 350px;
	}

	/* リスト表示（スマホ時2カラム） */
	/* ------------------------------------------------------------ */
	.contents-item {
		flex: 0 0 40%;
	}
}
.faq-container {
	max-width: 1200px;
	margin: 20px auto;
	padding: 20px;
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	height:250px; /* スクロールのための高さ */
	overflow-y: auto; /* 縦スクロールを有効に */
}
faq-item {
	padding: 10px;
	border-bottom: 1px solid #ddd;
}
faq-item:last-child {
	border-bottom: none;
}
faq-question {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 8px;
	color: #333;
	cursor: pointer;
}
faq-answer {
	font-size: 16px;
	color: #666;
	display: none; /* 最初は非表示 */
	margin-top: 8px;
}
faq-item.open .faq-answer {
	display: block; /* open クラスが追加されたときに表示 */
}
/* スクロールバーのスタイル */
faq-container::-webkit-scrollbar-thumb {
	background-color: #888;
	border-radius: 4px;
}
faq-container::-webkit-scrollbar-thumb:hover {
	background-color: #555;
}
/* 検索ボックスのスタイル */
.faq-search {
	margin-top: 10px;
	text-align: center;
	font-size: 16px
}
.faq-search input[type="text"] {
	width: 35%;
	padding: 10px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 4px;
}
.faq-search button {
	margin-left: 10px;
	font-size: 16px;
	background-color: #003087;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}
.faq-search button:hover {
	background-color: #45a049;
}

@media screen and (max-width: 768px){
	.faq-search {
		margin-top: 10px;
		text-align: center;
		font-size: 16px
	}
	.faq-search input[type="text"] {
		width: 60%;
		padding: 10px;
		font-size: 16px;
		border: 1px solid #ccc;
		border-radius: 4px;
	}
	.faq-search button {
		width: 30%;
		margin-left: 10px;
		font-size: 16px;
		background-color: #003087;
		color: white;
		border: none;
		border-radius: 4px;
		cursor: pointer;
	}
}


/* すべてのFAQリンクのスタイル */
.allfaq-links {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}
.allfaq-links a {
	text-decoration: none;
	color: #003087;
	font-size: 16px;
}
.allfaq-links a:hover {
	text-decoration: underline;
}

/* 各拠点のスタイル */
location {
	border-radius: 15px;
	padding: 10px;
	width: 24%;
	justify-content: center;
}
	
/* location1 のスタイル */
location1 {
	border: 4px solid #003087;
	display: flex;
	flex-direction: column;
}

/* location2 のスタイル */
location2 {
	border: 4px solid #ff7474;
	display: flex;
	flex-direction: column;
}

/* location3 のスタイル */
location3 {
	display: flex;
	border: 4px solid #03490b;
	flex-direction: column;
}

/* 各拠点のタイトルや時間のスタイル */
location h2 {
	font-size: 1.5em;
	font-weight: bold;
	margin: 0;
	font-family: inherit;
}

location p {
	font-size: 0.8em;
	margin: 5px 0 0;
}

contact-info {
	margin: 0px 0 0;
	text-align: center;
	font-size: 10px;
}

@media (min-width: 600px) and (max-width: 979px) {
	#guide, #faq, #access {
		scroll-margin-top: 400px;
	}
}

@media screen and (max-width: 599px){
	#guide, #faq, #access {
		scroll-margin-top: 400px;
	}
}

