@charset "utf-8";

/*
Theme Name: Original Theme
Theme URI:
Author: Fuji Computer Co.Ltd.
Author URI : http://fujicomp.co.jp
Description: オリジナルテーマ
Version: 1.0
*/

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

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

/* @ Webフォント設定
---------------------------------------------------------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url(fontawesome-webfont.eot?v=4.0.3);
  src: url(fontawesome-webfont.eot?#iefix&v=4.0.3) format('embedded-opentype'),
    url(fontawesome-webfont.woff?v=4.0.3) format('woff'),
    url(fontawesome-webfont.ttf?v=4.0.3) format('truetype'),
    url(fontawesome-webfont.svg?v=4.0.3#fontawesomeregular) format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Font Awesome 5 Solid';
  font-style: normal;
  font-weight: 900;
  src: url(fa-solid-900.eot);
  src: url(fa-solid-900.eot?#iefix) format("embedded-opentype"),
    url(fa-solid-900.woff2) format("woff2"),
    url(fa-solid-900.woff) format("woff"),
    url(fa-solid-900.ttf) format("truetype"),
    url(fa-solid-900.svg#fontawesome) format("svg");
}
@font-face {
  font-family: 'Font Awesome 5 Regular';
  font-style: normal;
  font-weight: 400;
  src: url(fa-regular-400.eot);
  src: url(fa-regular-400.eot?#iefix) format("embedded-opentype"),
    url(fa-regular-400.woff2) format("woff2"),
    url(fa-regular-400.woff) format("woff"),
    url(fa-regular-400.ttf) format("truetype"),
    url(fa-regular-400.svg#fontawesome) format("svg");
}
@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: normal;
  src: url(fa-brands-400.eot);
  src: url(fa-brands-400.eot?#iefix) format("embedded-opentype"),
    url(fa-brands-400.woff2) format("woff2"),
    url(fa-brands-400.woff) format("woff"),
    url(fa-brands-400.ttf) format("truetype"),
    url(fa-brands-400.svg#fontawesome) format("svg");;
}
.awesome {
  font-family: 'FontAwesome';
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.awesome5s {
  font-family: 'Font Awesome 5 Solid';
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.awesome5r {
  font-family: 'Font Awesome 5 Regular';
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.awesome5b {
  font-family: 'Font Awesome 5 Brands';
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.opensans {
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
}
.ubuntu {
  font-family: 'Ubuntu', sans-serif;
}

/* @ Normalize.css調整（原則として改変禁止）
---------------------------------------------------------------------------- */
/* >>> 日本語フォント対応 */
html,
body {
  margin: 0;
  font-family: "Yu Gothic","YuGothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  html,
  body {
    min-width: 100%;
  }
}
/* >>> 禁則処理 */
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 { /* 32px */
  font-size: 2rem;
  line-height: 1.5;
}
h2 { /* 28px */
  font-size: 1.75rem;
  line-height: 1.75;
}
h3,h4 { /* 20px */
  font-size: 1.25rem;
  line-height: 1.1667;
}
h5,h6 { /* 18px */
  font-size: 1.125rem;
  line-height: 1.3125;
}

/* @ 見出し設定
---------------------------------------------------------------------------- */
h1 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.home h2 {
  margin: 36px 0;
  padding: 10px 13px;
  background-color: #50c7ef;
  color: #fff;
  font-size: 1.625rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.home h2 span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1170px;
  margin: 0 auto;
}
.home h2 span a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 12px;
  background: #176078;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.home h2 span a:hover {
  cursor: pointer;
}
h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 50px 0 30px;
  padding: 20px 20px;
  background-color: #50c7ef;
  border-radius: 3px;
  color: #fff;
  font-size: 1.625rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 480px) {
  h3 {
    font-size: 1.250rem;
  }
}
/*
h3::after {
  content: '';
  display: inline-block;
  border-top: 1px solid currentColor;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-left: 20px;
}
*/
h4 {
  display: flex;
  align-items: center;
  margin: 30px 0 20px;
  color: #50c7ef;
  font-size: 1.375rem;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h4::before {
  display: inline-block;
  margin-right: 10px;
  content: '';
  width: 5px;
  height: 25px;
  background: #50c7ef;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

}
h5 {
  margin: 10px 0 0;
  font-size: 1rem
}
h5::before {
  display: inline-block;
  margin-right: 10px;
  padding: 0;
  content: '\f0da';
  color: #50c7ef;
  font-family: 'FontAwesome';
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h6 {
  margin: 10px 0;
  color: #50c7ef;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* @ リンク設定
---------------------------------------------------------------------------- */
a {
  color: #000099;
  outline: none;
}
a:hover {
  color: #000099;
  text-decoration: none;
}

/* @ リンクボタン設定
---------------------------------------------------------------------------- */
.link-btn {
  margin: 30px auto 50px;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.link-btn a {
  display: block;
  max-width: 335px;
  margin: 0 auto;
  border-radius: 30px;
  color: #004da0;
  border: solid 3px #004da0;
  font-weight: bold;
  line-height: 54px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.link-btn a:hover {
  background: #004da0;
  color: #fff;
}
.link-btn a.letter-icon:before {
  content: '\f0e0';
  font-family: 'FontAwesome';
  margin-right: 10px;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 54px;
}
.link-btn a.graduation-cap-icon:before {
  content: '\f19d';
  font-family: 'FontAwesome';
  margin-right: 10px;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 54px;
}
.link-btn a.briefcase-icon:before {
  content: '\f0b1';
  font-family: 'FontAwesome';
  margin-right: 10px;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 54px;
}

/* @ その他
---------------------------------------------------------------------------- */
body {
  padding-top: 101px;
  color: #444;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 50px;
  }
}
strong,b,table th {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
figure {
  margin: 0;
}
ul,ol {
  line-height: 1.75;
}
ol {
  padding-left: 20px;
}
ol li ol {
  padding-left: 0;
}
ol li ol li {
  list-style-type:none;
  list-style-position:inside;
  counter-increment: cnt;
}
ol li ol li::before {
  display: marker;
  content: "(" counter(cnt) ") ";
}
input, textarea, select {
  font-family: "Yu Gothic","YuGothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  font-weight: 500;
}
input[type='submit'] {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
input[type='submit']:hover {
  cursor: pointer;
  opacity: 0.6;
}
:placeholder-shown {
  color: #999;
}
::-webkit-input-placeholder {
  color: #999;
}
:-moz-placeholder {
  color: #999;
}
::-moz-placeholder {
  color: #999;
}
:-ms-input-placeholder {
  color: #999;
}

/* @ youtube
---------------------------------------------------------------------------- */
.youtube_wrap {
  position:relative;
  width:100%;
  padding-top:56.25%;
}
.youtube_wrap .youtube_wrap {
  padding-top: 0;
  position: static;
}
.youtube_wrap iframe {
  position:absolute;
  top:0;
  right:0;
  width:100%;
  height:100%;
}

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

/* @ Newアイコン
---------------------------------------------------------------------------- */
.newpost {
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
  font-size: 0.75rem;
  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-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@-webkit-keyframes blink {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes blink {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* @ パンくず
---------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  #breadcrumb {
    display: none;
  }
}
#breadcrumb ul {
  box-sizing: border-box;
  max-width: 1200px;
  margin: 20px auto;
  padding: 0;
  white-space: nowrap;
  overflow-x: auto;
}
#breadcrumb ul::-webkit-scrollbar {
  display: none;
}
#breadcrumb ul li {
  display: inline;
  line-height: 1em;
  font-size: 0.875rem;
}
#breadcrumb ul li:before {
  content: '\f105';
  font-family: 'Font Awesome 5 Solid';
  font-weight: normal;
  padding: 0 10px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#breadcrumb ul li:first-of-type:before {
  content: none;
}
#breadcrumb ul li:last-of-type {
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#breadcrumb ul li a {
  color: inherit;
  text-decoration: none;
}
#breadcrumb ul li a:hover {
  text-decoration: underline;
}

/* @ ページナビ（記事詳細用）
----------------------------------------------------------------------------- */
.pagenavi {
  font-family: 'FontAwesome';
  margin: 3em 0 0;
  padding: 0;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.pagenavi a {
  display: inline-block;
  padding: 5px 1.5em;
  background-color: #1c5f78;
  color: #fff;
  text-align: center;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.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 {
  clear: both;
  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;
  background-color: #ccc;
  border: solid 1px #ccc;
  color: #fff;
  margin: 0 3px;
  padding: 5px 10px;
  text-decoration: none;
}
.wp-pagenavi span.current {
  background-color: #004da0;
  border: solid 1px #004da0;
}
.wp-pagenavi a:hover {
  -ms-filter: "alpha(opacity=60)";
  filter: alpha(opacity=60);
  opacity: 0.6;
  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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.mw_form-table {
  width: 100%;
  border-collapse: collapse;
}
.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: 480px) {
  .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;
}
@media screen and (max-width: 480px) {
  .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: 480px) {
  .mw_form-table td {
    display: block;
    width: 100%;
    margin-bottom: 1em;
    padding: 1em 0;
    border-bottom: none;
    background-color: #fff;
  }
}
.mw_form-table td span.mwform-checkbox-field.horizontal-item {
  margin-left: 0;
}
@media screen and (max-width: 480px) {
  .mw_form-table td span.mwform-checkbox-field.horizontal-item {
    display: inline-block;
  }
}
.mw_form-table input[type='text'],
.mw_form-table input[type='email'],
.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-zip-field input[type='text'],
.mw_form-table .mwform-tel-field input[type='text'] {
  width: 5em;
  margin: 0 0.25em;
}
.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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.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;
  margin: 0 1em;
}
.mw_form-btn li input[type='submit'] {
  display: inline-block;
  padding: 15px 30px;
  outline: none;
  text-align: center;
  background: #004da0;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 1.125rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.mw_form-btn li:first-child input[type='submit'] {
  background-color: #ccc;
  margin-right: 10px;
}
.mw_form-btn li input[type='submit']:hover {
  -ms-filter: "alpha(opacity=60)";
  filter: alpha(opacity=60);
  opacity: 0.6;
}


/* @ アイコンスタイル
----------------------------------------------------------------------------- */

.page-index a.extlink dl dd.news-content:after,
.page-template-page-archive a.extlink dl dd.news-content:after,
.category a.extlink dl dd.news-content:after {
  display: inline-block;
  margin-left: 10px;
  content: '\f08e';
  font-family: 'FontAwesome';
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a.ico-pdf::before {
  content: '\f1c1';
  font-family: 'FontAwesome';
  margin: 0 10px;
  font-weight: normal;
  color: #d96464;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a.ico-doc::before {
  content: '\f1c2';
  font-family: 'FontAwesome';
  margin: 0 10px;
  font-weight: normal;
  color: #3a59a2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a.ico-xls::before {
  content: '\f1c3';
  font-family: 'FontAwesome';
  margin: 0 10px;
  font-weight: normal;
  color: #498d81;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a.ico-ppt::before {
  content: '\f1c4';
  font-family: 'FontAwesome';
  margin: 0 10px;
  font-weight: normal;
  color: #d24625;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* @ ページトップ
----------------------------------------------------------------------------- */
#pagetop {
  display: none;
  position: fixed;
  right: 30px;
  bottom: 15px;
  width: 90px;
  height: 90px;
  z-index: 8000;
}
@media screen and (max-width: 768px) {
  #pagetop {
    right: 20px;
  }
}
#pagetop a {
  display: block;
  width: 90px;
  height: 90px;
  background: transparent url(pagetop.png) no-repeat center center;
}
#pagetop a:hover {
  background-image: url(pagetop_hover.png);
}
#pagetop a img {
  display: none;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ ヘッダー
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-bottom: 3px solid #fff;
  z-index: 9999;
}
.header-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-box .facebook {
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .header-box .facebook {
    display: none;
  }
}
header .menu-btn {
  display: none;
  margin: 0;
}
@media screen and (max-width: 768px) {
  #header .menu-btn {
    display: block;
    box-sizing: border-box;
    padding-right: 10px;
    line-height: 50px;
    width: 100%;
    color: #fff;
    height: 50px;
    font-family: 'FontAwesome';
    font-size: 1.25rem;
    text-align: right;
    background-color: #27c9ff;
    z-index: 9999;
    cursor: pointer;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* @ ロゴ
---------------------------------------------------------------------------- */
#header-logo {
  margin: 0 0 0 20px;
  background-color: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#header-logo img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  #header-logo {
    display: none;
  }
}

/* @ ヘッダーナビ
---------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  #header-navi {
    display: none;
  }
}
#header-navi a {
  text-decoration: none;
}

/* @ グローバルナビ
---------------------------------------------------------------------------- */
#header-gnavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-flow: row nowrap;
  margin: 0;
  padding: 0;
  background: #529ebe;
  list-style: none;
}
@media screen and (max-width: 768px) {
  #header-gnavi {
    display: none;
  }
}
#header-gnavi li {
  width: 100%;
  margin: 0 2px 0 0;
}
#header-gnavi li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 15px;
  text-align: center;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  height: 50px;
  background-color: #176078;
  width: 100%;
  box-sizing: border-box;
}
#header-gnavi li.facebook {
  min-width: 30px;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  #header-gnavi li a {
    padding: 34px 15px;
    border: none;
  }
}
#header-gnavi li.contact a::before {
  content: "\f54e";
  font-family: "Font Awesome 5 Solid";
  font-weight: bold;
  margin-right: 10px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 1440px) {
  #header-gnavi li.contact a::before {
    content: none;
  }
}
#header-gnavi li a .menu_title {
  font-size: 1rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 1440px) {
  #header-gnavi li a .menu_title {
    font-size: 0.875rem;
  }
}
#header-gnavi li a:hover .menu_title {
  color: #fbfb79;
}
#header-gnavi li a .menu_description {
  display: block;
  color: #aaa;
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
}
#header-gnavi li a:hover .menu_description {
  color: #fbfb79;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ ヘッダー（768px以下）
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#header-sp {
  display: none;
  position: fixed;
  top: 0;
}
@media screen and (max-width: 768px) {
  #header-sp {
    display: block;
    width: 100%;
    height: 50px;
    margin: 0;
    background-color: #fff;
    box-shadow: 0px 0px 3px #000;
    z-index: 9999;
  }
  #header-sp.fixed {
    position: fixed;
    top: 0;
  }
}
#header-sp-logo {
  position: fixed;
  top: 0;
  left: 10px;
  margin: 0;
  z-index: 10000;
}
#header-sp-logo a {
  display: block;
  padding: 13px 0;
}
#header-sp .menu-pnl {
  position: absolute;
  top: 50px;
  display: none;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 0px 5px #000;
  z-index: 9100;
}

/* @ グローバルナビ（768px以下）
---------------------------------------------------------------------------- */
#header-gnavi-sp ul {
  margin: 20px 10px 10px;
  padding: 0;
  border: 1px solid #ccc;
  overflow: auto;
}
#header-gnavi-sp ul li {
  list-style: none;
}
#header-gnavi-sp ul li ul {
  margin: 0;
}
#header-gnavi-sp ul li a {
  display: block;
  position: relative;
  padding: 10px 35px 10px 10px;
  border-bottom: 1px dotted #ccc;
  text-align: left;
  text-decoration: none;
  font-weight: bold;
  color: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
#header-gnavi-sp ul li ul li a {
  padding-left: calc(10px + 1em);
}
#header-gnavi-sp ul li a:hover {
  text-decoration: none;
  background-color: #f4f9fe;
}
#header-gnavi-sp ul li a:before {
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 20px;
  line-height: 1;
  font-family: 'FontAwesome';
  font-weight: normal;
  content: "\f105";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#header-gnavi li.current-page-ancestor a .menu_title,
#header-gnavi li.current-menu-item a .menu_title,
#header-gnavi li.current-page-ancestor a .menu_description {
  color: #fbfb79;
}

/* @ 検索フォーム
---------------------------------------------------------------------------- */
#header-search {
  margin: 0;
  padding-right: 10px;
  display: table-cell;
  vertical-align: middle;
  width: 350px;
}
@media screen and (max-width: 768px) {
  #header-search {
    display: none;
  }
}
#header-search input[type='text'] {
  float: left;
  box-sizing: border-box;
  width: 300px;
  height: 40px;
  padding: 10px;
  border: none;
  border-radius: 0;
  outline: none;
  background-color: #efefef;
}
#header-search input[type='submit'] {
  font-family: 'FontAwesome';
  float: right;
  width: 50px;
  height: 40px;
  border: none;
  background-color: #004da0;
  color: #fff;
  font-size: 1.25em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* @ 検索フォーム（768px以下）
---------------------------------------------------------------------------- */
#header-search-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  #header-search-sp {
    display: table;
    table-layout: fixed;
    width: 90%;
    margin: 10px 5%;
  }
}
#header-search-sp label {
  display: table-cell;
  vertical-align: top;
}
#header-search-sp label:last-child {
  width: 50px;
}
#header-search-sp input {
  box-sizing: border-box;
  height: 40px;
  border: none;
  border-radius: 0;
  outline: none;
}
#header-search-sp input[type='text'] {
  width: 100%;
  padding: 10px;
}
#header-search-sp input[type='submit'] {
  font-family: 'FontAwesome';
  width: 50px;
  background-color: #2d3339;
  color: #fff;
  font-size: 1.25em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ フッター
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#footer {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  #footer {
    min-width: 100%;
  }
}
#footer a {
  box-sizing: border-box;
  color: #fff;
  text-decoration: none;
}
.footer-nav {
  border-top: 1px solid #ccc;
  padding: 20px 0;
  color: #444;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .footer-nav {
    display: none;
  }
}
.footer-nav > .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .footer-nav > .wrap {
    display: block;
  }
}
.footer-nav .footer-nav__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer-nav .footer-nav__right a {
  margin-right: 20px;
}
.footer-nav .footer-nav__right .access p {
  margin: 0;
}
.footer-nav .footer-nav__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .footer-nav .footer-nav__left {
    margin-top: 20px;
  }
}
.footer-nav .footer-nav__left p {
  margin: 0;
  padding: 5px 10px;
  border-radius: 3px;
}
.footer-nav .footer-nav__left p.sitemap,
.footer-nav .footer-nav__left p.policy {
  margin-right:10px;
  background: #449ebc;
}
.footer-nav .footer-nav__left p.sitemap a::after,
.footer-nav .footer-nav__left p.policy a::after {
  display: inline-block;
  content: '\f105';
  font-family: 'Font Awesome 5 Solid';
  margin-left: 30px;
  font-weight: normal;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.footer-nav .footer-nav__left p.facebook {
  background: #3b579e;
}
.footer-nav .footer-nav__left p.facebook a::after {
  display: inline-block;
  content: '\f35d';
  font-family: 'Font Awesome 5 Solid';
  margin-left: 30px;
  font-weight: normal;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.footer-nav .footer-nav__left p.sitemap a::hover,
.footer-nav .footer-nav__left p.facebook a::hover {
  text-decoration: none;
}
#footer-copyright {
  background: #444;
  text-align: center;
}
#footer-copyright .copyright {
  margin: 0;
  color: #fff;
  padding: 15px 0;
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  #footer-copyright .copyright {
    text-align: center;
  }
}
#footer-copyright .copyright small {
  font-size: 0.875rem;
}
@media screen and (max-width: 480px) {
  #footer-copyright .copyright small {
    font-size: 0.688em;
  }
}
@media screen and (max-width: 480px) {
  #footer-copyright .copyright span {
    display: none;
  }
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ メイン
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ コンテンツ
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* @ 見出し
---------------------------------------------------------------------------- */
#contents > .clearfix > :first-child {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  #contents > .clearfix > :first-child {
    margin-top: 30px;
  }
}
