@charset "UTF-8";
/* CSS Document */
/* -----------------------------------------------------------
　共通
----------------------------------------------------------- */
/*html{ scroll-behavior: smooth;}*/
:root {
	--color-main-text: #444;/*メインテキストカラー*/
    --color-main: #315C7A;/*メインカラー*/
	--color-red: #B70000;
	--color-gray: #C7C7C7;
}
body {
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-main-text);
  /*font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;*/
  /*font-family: 'Lato', 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;*/
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}
b, strong, .bold {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif;
}
/* IEだけに適応 */
_:lang(x)::-ms-backdrop, .selector {
  font-family: "Segoe UI", Meiryo, sans-serif;
}
.ofh {
  overflow: hidden;
}
.inner {
  margin: auto;
  padding: 50px 0;
  width: 80%;
  max-width: 1000px;
}
img {
  width: 100%;
}
a {
  color: var(--color-main);
}
a:hover {
  opacity: 0.7;
}
.spShow660,
.spShow480 {
  display: none;
}

/*--電話番号--*/
.telArea {
margin: 15px auto;
}
.telArea a {
font-size: 28px;
  opacity: 1;
  text-decoration: none;
}

/*--ブロック--*/
.outline {
padding: 30px;
border: 1px solid var(--color-main);
}
.bSdw {
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.2);
}
.bRds {
  border-radius: 10px;
}


/*--文字--*/
.iBlock {
  display: inline-block;
}
.txtC {
  text-align: center;
}
h2 {
  font-size: 26px;
  text-align: center;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 20px;
}
h2 span {
  display: block;
  font-size: 60%;
  color: var(--color-main);
}
h3 {
    font-size: 22px;
    color: var(--color-main);
    font-weight: bold;
    margin-bottom: 10px;
}
h4 {
  font-size: 22px;
  color: var(--color-main);
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
}
h5 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 4px;
}
h6 {
  font-size: 16px;
  border-bottom: 1px solid #666;
  padding-bottom: 4px;
  margin-bottom: 12px;
}

/*--リスト--*/
.list li {
  padding-left: 1em;
  position: relative;
  margin-bottom: 8px;
}
.list li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "●";
  color: var(--color-main);
}
.list.bullet li::before {
  content: "・";
  color: #666;
}
.list li.spNone::before {
  display: none;
}

/*--table--*/
table {
  width: 100%;
}
table tr th, table tr td {
  padding: 12px;
  vertical-align: middle;
}
table tr th {
  font-weight: normal;
  background: #f3f3f3;
  text-align: center;
  vertical-align: middle;
  border-bottom: 2px solid #fff;
}
table tr:first-of-type th {
    border-top: 1px solid #f3f3f3;
}
table tr:last-of-type th {
    border-bottom: 1px solid #f3f3f3;
}
table tr td {
  border-bottom: 1px solid #ccc;
}


/*--共通その他--*/
.martop0 {
  margin-top: 0;
}
.martop10 {
  margin-top: 10px;
}
.martop20 {
  margin-top: 20px;
}
.martop30 {
  margin-top: 30px;
}
.marbtm0 {
  margin-bottom: 0;
}
.marbtm10 {
  margin-bottom: 10px;
}
.marbtm20 {
  margin-bottom: 20px;
}
.adjustSpacing1 {
  letter-spacing: 1px;
}


/* -----------------------------------------------------------
　ロゴ boxLogo
----------------------------------------------------------- */
#boxLogo {
  text-align: center;
}
#boxLogo .inner {
  padding: 30px 0 0;
}
#boxLogo img {
width: 90%;
max-width: 320px;
}

/* -----------------------------------------------------------
　リンクボタン boxLinkBtn
----------------------------------------------------------- */
.linkBtnBox a {
  display: inline-block;
  color: #fff;
  background: var(--color-main);
  padding: 6px 24px;
  text-align: center;
  vertical-align: middle;
  border-radius: 4px;
  text-decoration: none;
}
.linkBtnBox a:hover {
  text-decoration: none;
}

/* -----------------------------------------------------------
　boxPreview
----------------------------------------------------------- */
.previewNotice {
background: #fff;
border-top: 1px dotted var(--color-main);
}
.previewNotice p.previewNoticeTitle {
border: 1px solid var(--color-main);
border-radius: 3px;
color: var(--color-main);
font-size: 1.1em;
display: inline-block;
margin-left: auto;
margin-right: auto;
padding: 5px 10px;
text-align: center;
}


/* -----------------------------------------------------------
　ページトップ
----------------------------------------------------------- */
#pageTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
}
#pageTop a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  background: #ccc;
  text-align: center;
  display: block;
  z-index: 999;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 38px;
  padding: 8px;
}
#pageTop a:hover {
  text-decoration: none;
  opacity: 0.6;
}

/* -----------------------------------------------------------
　フッター boxFooter
----------------------------------------------------------- */
#boxFooter {
  border-top: 1px solid #ccc;
}
#boxFooter .inner {
  padding: 20px 0;
}
#boxFooter p {
  font-size: 14px;
}