@charset "utf-8";

/* << INDEX >> ----------------------------------------------------------------
*
* @ 基本定義
* @ サイト共通設定
* @ ヘッダー
* @ フッター
* @ コンテンツ
*
* -------------------------------------------------------------------------- */

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ 基本定義
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* @ Webフォント設定
---------------------------------------------------------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('css/fonts/fontawesome-webfont.eot?v=4.7.0');
  src: url('css/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),
    url('css/fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),
    url('css/fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),
    url('css/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.awesome {
  font-family: 'FontAwesome';
  font-weight: normal;
}
.opensans {
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
}
.ubuntu {
  font-family: 'Ubuntu', sans-serif;
}
.mincho {
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

/* @ Normalize.css調整（原則として改変禁止）
---------------------------------------------------------------------------- */
/* >>> 日本語フォント対応 */
html,
body {
  margin: 0;
  font-family: "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* >>> 禁則処理 */
p,li,dt,dd,th,td,pre {
  -ms-line-break: strict;
  line-break: strict;
  -ms-word-break: strict;
  word-break: strict;
}
/* >>> フルードイメージ対応 */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* @ テキスト見出し設定（html要素のfont-sizeを基準に算出、ここでの装飾は行わない）
---------------------------------------------------------------------------- */
h1 { /* 28px */
  font-size: 2em;
  line-height: 1.5;
}
h2 { /* 24px */
  font-size: 1.7143em;
  line-height: 1.5;
}
h3 { /* 18px */
  font-size: 1.2857em;
  line-height: 1.1667;
}
h4,h5,h6 { /* 16px */
  font-size: 1.1429em;
  line-height: 1.3125;
}

/* @ 見出し設定
---------------------------------------------------------------------------- */
h1 {
  margin: 0 0 14px;
  padding: 20px 0;
  background-color: #3e6eb0;
  color: #fff;
  font-size: 2rem;
}
h1 .wrap {
  display: block;
}
h2 {
  color: #3e6eb0;
  font-size: 1.625rem;
}
@media screen and (max-width: 500px) {
  h2 {
    font-size: 1.5rem;
  }
}
h3 {
  font-size: 1.5rem;
}

/* @ リンク設定
---------------------------------------------------------------------------- */
a {
  color: #444;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover {
  color: #444;
  text-decoration: underline;
}

/* @ その他
---------------------------------------------------------------------------- */
body {
  min-width: 320px;
  color: #333333;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ サイト共通設定
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.wrap {
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .wrap {
    padding: 0 20px;
  }
}
@media screen and (max-width: 500px) {
  .wrap {
    padding: 0 10px;
  }
}
dl {
  margin: 1em 0;
}

/* >>>> 4カラム分割 */
.col4 {
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 20px;
  float: left;
}
.col4:nth-of-type(4n) {
  margin-right: 0;
}
@media screen and (max-width: 800px) {
  .col4 {
    width: 48.5%;
    margin-right: 3%;
  }
  .col4:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 500px) {
  .col4 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
    float: none;
  }
}

/* >>>> 3カラム分割 */
.col3 {
  width: 31%;
  margin-right: 3.5%;
  margin-bottom: 30px;
  float: left;
}
.col3:nth-of-type(3n) {
  margin-right: 0;
}
@media screen and (max-width: 800px) {
  .col3 {
    width: 48.5%;
    margin-right: 3%;
  }
  .col3:nth-of-type(2n) {
    margin-right: 0 !important;
  }
  .col3:nth-of-type(3n) {
    margin-right: 3%;
  }
}
@media screen and (max-width: 500px) {
  .col3 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
    float: none;
  }
  .col3:nth-of-type(3n) {
    margin-right: 0;
  }
}

/* >>>> 2カラム分割 */
.col2 {
  width: 48.5%;
  margin-right: 3%;
  margin-bottom: 20px;
  float: left;
}
.col2:nth-of-type(2n) {
  margin-right: 0;
}
@media screen and (max-width: 800px) {
  .col2 {
    width: 48.5%;
    margin-right: 3%;
  }
  .col2:nth-of-type(2n) {
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 500px) {
  .col2 {
    width: 100%;
    margin-right: 0;
    float: none;
  }
}

/* @ Newアイコン
---------------------------------------------------------------------------- */
.newpost {
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
  font-size: 0.7142em;
  color: #c33;
  margin-left: 1em;
  -webkit-animation: blink 1.0s ease-in-out infinite alternate;
  animation: blink 1.0s ease-in-out infinite alternate;
}
@-webkit-keyframes blink {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes blink {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* @ キーイメージ
---------------------------------------------------------------------------- */
.page_keyimg {
  position: relative;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .page_keyimg {
    display: none;
  }
}
.page_keyimg .keyimg_large {
  display: inline;
}
@media screen and (max-width: 1200px) {
  .page_keyimg .keyimg_large {
    display: none;
  }
}
.page_keyimg .keyimg_normal {
  display: none;
}
@media screen and (max-width: 1200px) {
  .page_keyimg .keyimg_normal {
    display: inline;
  }
}

/* @ パンくず
---------------------------------------------------------------------------- */
@media screen and (max-width: 500px) {
  #breadcrumb {
    display: none;
  }
}
#breadcrumb ul {
  box-sizing: border-box;
  max-width: 1200px;
  margin: 18px auto;
  padding: 0;
  font-size: 0;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}
#breadcrumb ul::-webkit-scrollbar {
  display: none;
}

@media screen and (max-width: 1200px) {
  #breadcrumb ul {
    padding: 0 20px;
  }
}
#breadcrumb ul li {
  display: inline;
  font-size: 1rem;
}
#breadcrumb ul li:before {
  content: '\f105';
  font-family: 'FontAwesome';
  font-weight: normal;
  padding: 0 10px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#breadcrumb ul li:first-child:before {
  content: '';
  padding: 0;
}
#breadcrumb ul li:last-child {
  /*
  font-weight: bold;
  */
}
#breadcrumb ul li a {
  color: inherit;
}

/* @ ページナビ（記事詳細用）
----------------------------------------------------------------------------- */
.pagenavi {
  font-family: 'FontAwesome';
  margin: 3em 0 0;
  padding: 0;
  overflow: hidden;
}
.pagenavi a {
  display: inline-block;
  padding: 5px 1.5em;
  background-color: #3e6eb0;
  color: #fff;
  text-align: center;
}
.pagenavi a:hover {
  -ms-filter: "alpha(opacity=60)";
  filter: alpha(opacity=60);
  opacity: 0.6;
  text-decoration: none;
}

/* >>> 前へ */
.pagenavi li:first-child {
  display: inline-block;
  float: left;
}

/* >>> 次へ */
.pagenavi li:last-child {
  display: inline-block;
  float: right;
}

/* @ ページナビ（記事一覧用）
----------------------------------------------------------------------------- */
.wp-pagenavi {
  margin: 40px 0 0;
  text-align: center;
}
.wp-pagenavi *:first-child {
  margin-left: 0 !important;
}
.wp-pagenavi *:last-child {
  margin-right: 0 !important;
}
.wp-pagenavi span,
.wp-pagenavi a {
  display: inline-block;
  margin: 0 3px;
  padding: 7px 14px;
  border: solid 1px #3e6eb0;
  color: #3e6eb0;
  font-size: 1.125rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.wp-pagenavi .current,
.wp-pagenavi a:hover {
  background: #3e6eb0;
  color: #fff;
  text-decoration: none;
}
.wp-pagenavi .extend {
  background-color: transparent;
  color: #333;
}

/* @ メールフォーム
---------------------------------------------------------------------------- */
.mw_form-msg {
  border: 5px solid #ccc;
  padding: 1em;
}
.mw_form-msg em,
.mw_form-table em {
  display: inline-block;
  padding: 0.25em 1em;
  background-color: #c33;
  color: #fff;
  margin-right: 0.5em;
  font-weight: bold;
  font-style: normal;
}
.mw_form-table {
  width: 100%;
}
.mw_form-table tr:nth-child(even) {
  background-color: #eee;
}
.mw_form-table tr:nth-child(odd) {
  background-color: #fff;
}
@media screen and (max-width: 500px) {
  .mw_form-table,
  .mw_form-table tbody,
  .mw_form-table tr {
    display: block;
    width: 100%;
    background-color: transparent;
  }
}
.mw_form-table th {
  box-sizing: border-box;
  width: 20%;
  white-space: nowrap;
  padding: 1em;
  border-bottom: 1px dotted #ccc;
  text-align: right;
  vertical-align: top;
}
@media screen and (max-width: 500px) {
  .mw_form-table th {
    display: block;
    width: 100%;
    border-bottom: none;
    text-align: left;
    background-color: #eee;
  }
}
.mw_form-table td {
  box-sizing: border-box;
  padding: 1em;
  border-bottom: 1px dotted #ccc;
}
@media screen and (max-width: 500px) {
  .mw_form-table td {
    display: block;
    width: 100%;
    margin-bottom: 1em;
    padding: 1em 0;
    border-bottom: none;
    background-color: #fff;
  }
}
.mw_form-table input[type='text'],
.mw_form-table textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.5em;
  border: 1px solid #ccc;
  background: #fff;
  outline: none;
}
.mw_form-table .mwform-checkbox-field {
  margin-right: 1em;
}
.mw_form-table input[name='住所'] {
  margin-top: 10px;
}
.mw_form-table .mwform-zip-field input[type='text'],
.mw_form-table .mwform-tel-field input[type='text'] {
  width: 5em;
  margin: 0 0.5em;
}
input[name='mw-wp-form-captcha'] {
  width: 265px;
  box-sizing: border-box;
  padding: 0.5em;
  border: 1px solid #ccc;
  background: #fff;
  outline: none;
}
.mw_form-table .error {
  font-weight: bold;
  color: #c33;
  margin-top: 0.5em;
  -webkit-animation: blink 1.0s ease-in-out infinite alternate;
  animation: blink 1.0s ease-in-out infinite alternate;
}
.mw_form-btn {
  font-size: 0;
  overflow: hidden;
  text-align: center;
  margin: 28px 0;
  padding: 0;
}
.mw_form-btn li {
  display: inline-block;
  list-style: none;
  font-size: 14px;
  margin: 0 1em;
}
.mw_form-btn li input[type='submit'] {
  box-sizing: border-box;
  padding: 10px 2em;
  border: none;
  border-radius: 0;
  outline: none;
  background-color: #3e6eb0;
  color: #fff;
  font-weight: bold;
  font-size: 1.75rem;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .mw_form-btn li input[type='submit'] {
    font-size: 1.25rem;
    padding: 10px 1em;
  }
}
.mw_form-btn li:first-child input[type='submit'] {
  background-color: #3e6eb0;
}
.mw_form-btn li input[type='submit']:hover {
  -ms-filter: "alpha(opacity=60)";
  filter: alpha(opacity=60);
  opacity: 0.6;
}

/* @ アイコンスタイル
----------------------------------------------------------------------------- */
.ico-pdf:before {
  margin-right: 7px;
  margin-left: 7px;
  content: '\f1c1';
  font-family: 'FontAwesome';
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.ico-doc:before {
  margin-right: 7px;
  margin-left: 7px;
  content: '\f1c2';
  font-family: 'FontAwesome';
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.ico-xls:before {
  margin-right: 7px;
  margin-left: 7px;
  content: '\f1c3';
  font-family: 'FontAwesome';
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.ico-ppt:before {
  margin-right: 7px;
  margin-left: 7px;
  content: '\f1c4';
  font-family: 'FontAwesome';
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.ico-zip:before {
  margin-right: 7px;
  margin-left: 7px;
  content: '\f1c6';
  font-family: 'FontAwesome';
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ ヘッダー
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#header {
  height: 125px;
}
@media screen and (max-width: 800px) {
  #header {
    height: 90px;
  }
}
@media screen and (max-width: 800px) {
  #header-main {
    margin-top: 40px;
  }
}
#catch {
  margin: 5px 0 0;
  font-size: 0.875rem;
}
@media screen and (max-width: 800px) {
  #catch {
    display: none;
  }
}
.header-wrap {
  position: relative;
}

/* @ ロゴ
---------------------------------------------------------------------------- */
#header-logo {
  background-color: transparent;
  line-height: 0;
  position: absolute;
  top: 25px;
  left: 0;
  border-top: none;
  border-bottom: none;
  padding: 0;
  margin: 0;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  #header-logo {
    top: 10px;
    left: 20px;
    width: 230px;
  }
}
@media screen and (max-width: 800px) {
  #header-logo {
    top: 15px;
    width: auto;
  }
}
@media screen and (max-width: 500px) {
	#header-logo {
		top: 45px;
		left: 10px;
		max-width: calc(100vw - 140px);
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}
}

/* @ ヘッダーナビ
---------------------------------------------------------------------------- */
#header-navi {
	position: absolute;
	top: 0;
	right: 0;
}
@media screen and (max-width: 1200px) {
	#header-navi {
		top: 4px;
	}
}
@media screen and (max-width: 800px) {
	#header-navi {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
		-webkit-box-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		align-items: center;
		top: 0;
		height: 90px;
		padding-right: 20px;
	}
}
@media screen and (max-width: 500px) {
	#header-navi {
		padding-right: 10px;
	}
}
#header-navi #header-links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#header-navi #header-links p {
	margin: 0 0 0 15px;
	font-weight: bold;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
#header-navi #header-links .box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#header-navi #header-links .free_dial {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-left: 20px;
	color: #658fcc;
	font-size: 1.5rem;
}
#header-navi #header-links .free_dial img {
	-webkit-box-flex: 0;
	flex: 0 0 auto;
	display: inline-block;
	width: 1.4em;
	height: auto;
	margin-right: 0.2em;
}
#header-navi #header-links .contact .sp {
	display: none;
}
@media screen and (max-width: 1200px) {
	#header-navi #header-links .free_dial {
		font-size: 1.3rem;
	}
}
@media screen and (max-width: 1024px) {
	#header-navi #header-links .box {
		display: block;
	}
	#header-navi #header-links .free_dial {
		margin-top: 3px;
	}
}
@media screen and (max-width: 800px) {
	#header-navi #header-links {
		display: block;
	}
	#header-navi #header-links .links {
		display: none;
	}
	#header-navi #header-links .free_dial {
		margin: 0;
		font-size: 1.0rem;
	}
	#header-navi #header-links .contact {
		margin: 5px 0 0;
	}
	#header-navi #header-links .contact .pc {
		display: none;
	}
	#header-navi #header-links .contact .sp {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		align-items: center;
		width: 170px;
		height: 40px;
		background: #658fcc;
		color: #fff;
		font-size: 1.25rem;
	}
	#header-navi #header-links .contact .sp img {
		width: 1.3em;
		height: auto;
		margin-right: 0.5em;
	}
}
@media screen and (max-width: 500px) {
	#header-navi #header-links .free_dial {
		font-size: 11px;
	}
	#header-navi #header-links .contact .sp {
		width: 110px;
		height: 30px;
		font-size: 0.9rem;
	}
}

/* @ グローバルナビ
---------------------------------------------------------------------------- */
@media screen and (max-width: 800px) {
  #header-gnavi {
    display: none;
  }
}
#header-gnavi ul {
  margin: 19px 0 0 ;
  padding: 0;
}
#header-gnavi ul li {
  float: left;
  list-style: none;
}
#header-gnavi ul li a {
  padding: 17px;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: border, 0s;
  transition: border, 0s;
}
@media screen and (max-width: 1200px) {
  #header-gnavi ul li a {
    padding: 14px;
    font-size: 0.857rem;
  }
}
#header-gnavi ul li a:hover {
  color: #658fcc;
  text-decoration: none;
  border-bottom: solid 3px #658fcc;
}

/* @ グローバルナビ（スマホ）
---------------------------------------------------------------------------- */
#header-gnavi_sp {
  display: none;
}
@media screen and (max-width: 800px) {
  #header-gnavi_sp {
    display: block;
    position: fixed;
    top: 0;
    background: #6e8fc7;
    width: 100%;
    height: 40px;
    color: #fff;
    z-index: 9999;
  }
}
#header-gnavi_sp .menu-btn {
  margin: 0;
  height: 40px;
  text-align: right;
  cursor: pointer;
}
#header-gnavi_sp .menu-btn span {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}
#header-gnavi_sp .menu-pnl {
  display: none;
  padding:  0 10px 10px;
  background: #6e8fc7;
}
#header-gnavi_sp .menu-pnl ul {
  margin: 0;
  padding: 0;
  overflow: auto;
}
#header-gnavi_sp .menu-pnl ul li {
  list-style: none;
}
#header-gnavi_sp .menu-pnl ul li a {
  display: block;
  padding: 10px;
  border-bottom: 1px dotted #ccc;
  font-weight: bold;
  background-color: #fff;
  color: #444;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#header-gnavi_sp .menu-pnl ul li a:hover {
  text-decoration: none;
  background-color: #eee;
}
#header-gnavi_sp a:before {
  font-family: 'FontAwesome';
  content: "\f105";
  display: block;
  color: #999;
  position: absolute;
  right: 10px;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ フッター
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#footer {
  margin-top: 50px;
}
#footer-bg-block {
  background: #6e8fc7;
}
#footer-links {
  text-align: center;
}
#footer-links .inquiry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 30px 20px;
  background: #f5f7f8;
}
@media screen and (max-width: 800px) {
  #footer-links .inquiry {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
#footer-links .inquiry > img,
#footer-links .inquiry > a {
  width: calc(100% / 3 - 20px);
}
@media screen and (max-width: 800px) {
  #footer-links .inquiry > img,
  #footer-links .inquiry > a {
    margin-bottom: 20px;
    width: auto;
  }
}
#footer-info .company_name {
  margin: 20px 0 15px;
  font-size: 1.5rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* @ コピーライト
---------------------------------------------------------------------------- */
#footer-copyright {
  display: block;
  line-height: 1;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 800px) {
  #footer-copyright {
    text-align: center;
  }
}
#footer-copyright small {
  font-size: 0.857rem;
}
@media screen and (max-width: 500px) {
  #footer-copyright small span {
    display: none;
  }
}

/* @ ページトップ
----------------------------------------------------------------------------- */
#pagetop {
  display: none;
  position: fixed;
  right: 30px;
  bottom: 15px;
  z-index: 100;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ コンテンツ
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* 2022.06.02 安福冷暖の強み */
.page-advantage .hedding_inner.hedding_inner {
  margin-top: 100px;
}
.page-advantage .bg-heading {
  display: flex;
  align-items: baseline;
  padding: 0.25em 1em;
  width: fit-content;
  background-color: #68AFDB;
}
.bg-heading .num {
  flex-shrink: 0;
  margin-right: 0.5em;
  color: #E0ECF6;
  font-size: 1.4em;
  letter-spacing: -0.1em;
}
.bg-heading .txt {
  color: #fff;
  font-size: 1.1em;
}
@media (max-width: 500px) {
  .page-advantage .bg-heading {
    flex-wrap: wrap;
    font-size: 1.2rem;
  }
}