/*------------------------------------------------
 GLOBAL STYLES
-------------------------------------------------- */

:root {
  --base-color: #182578;	/* 基本の紺色 */
}
body {
    font-family: "BIZ UDPGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-feature-settings: "palt" 1;
    letter-spacing: 0.6px;
    line-height: 1.6;
    font-size: 16px;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.6;
    color: var(--base-color);
}

.text-darkblue {
    color: var(--base-color);
}
.bg-darkblue {
    background: var(--base-color);
}

#lead h2.heading {
    text-shadow: rgb(255, 255, 255, 0.5) 2px 0px 4px, rgb(255, 255, 255, 0.5) -2px 0px 4px, rgb(255, 255, 255, 0.5) 0px -2px 4px, rgb(255, 255, 255, 0.5) 0px 2px 4px, rgb(255, 255, 255, 0.5) 2px 2px 4px, rgb(255, 255, 255, 0.5) -2px 2px 4px, rgb(255, 255, 255, 0.5) 2px -2px 4px, rgb(255, 255, 255, 0.5) -2px -2px 4px, rgb(255, 255, 255, 0.5) 1px 2px 4px, rgb(255, 255, 255, 0.5) -1px 2px 4px, rgb(255, 255, 255, 0.5) 1px -2px 4px, rgb(255, 255, 255, 0.5) -1px -2px 4px, rgb(255, 255, 255, 0.5) 2px 1px 4px, rgb(255, 255, 255, 0.5) -2px 1px 4px, rgb(255, 255, 255, 0.5) 2px -1px 4px, rgb(255, 255, 255, 0.5) -2px -1px 4px;
}

.pc {
	display: none;
}
@media (min-width: 576px) {
	.sp {
		display: none;
	}
	.pc {
		display: block;
	}
}

.tb {
	display: inline-block;
}

a:hover,
#page-top:hover {
	opacity: 0.8;
}

.header-spacer {
	height: 70px;
}
@media (min-width: 576px) {
	.header-spacer {
		height: 94px;
	}
}

@media (min-width: 576px) {
    a[href^="tel:"] {
        display: inline-block;
        pointer-events: none;
    }
}

/***** 下層ページ ヘッダー部 *****/
.page-header {
  min-height: 60vh;
  max-height: 440px;
  padding: 0;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-header:before {
  background-color: rgba(0, 0, 0, 0.1);
}

.page-header>.container {
  z-index: 2;
  padding-top: 12vh;
  padding-bottom: 40px;
}

.page-header .page-header-image {
  position: absolute;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.page-header .content-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  padding: 0 15px;
  width: 100%;
  max-width: 880px;
}

.page-header .container {
  height: 100%;
  z-index: 1;
  text-align: center;
  position: relative;
}

.page-header:after,
.page-header:before {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  left: 0;
  top: 0;
  content: "";
}

.page-header .title {
	color:  var(--base-color);
	text-shadow: rgb(255, 255, 255, 0.5) 2px 0px 4px, rgb(255, 255, 255, 0.5) -2px 0px 4px, rgb(255, 255, 255, 0.5) 0px -2px 4px, rgb(255, 255, 255, 0.5) 0px 2px 4px, rgb(255, 255, 255, 0.5) 2px 2px 4px, rgb(255, 255, 255, 0.5) -2px 2px 4px, rgb(255, 255, 255, 0.5) 2px -2px 4px, rgb(255, 255, 255, 0.5) -2px -2px 4px, rgb(255, 255, 255, 0.5) 1px 2px 4px, rgb(255, 255, 255, 0.5) -1px 2px 4px, rgb(255, 255, 255, 0.5) 1px -2px 4px, rgb(255, 255, 255, 0.5) -1px -2px 4px, rgb(255, 255, 255, 0.5) 2px 1px 4px, rgb(255, 255, 255, 0.5) -2px 1px 4px, rgb(255, 255, 255, 0.5) 2px -1px 4px, rgb(255, 255, 255, 0.5) -2px -1px 4px;
}

/***** 共通テーブルデザイン *****/
.table_design01 {
	border-collapse: collapse;
	width: 100%;
	max-width: 100%;
}
.table_design01 th, .table_design01 td {
	border: 2px solid #fff;
	background-color: #E9E9E9;
	padding: 1em;
}
.table_design01 th {
	background-color: var(--base-color);
	color: #fff;
	font-weight: bold;
	text-align: center;
	width: 20%;
	min-width: 4em;
}

