@charset "UTF-8";
/****************************************

    Reset

*****************************************/
/* Reset Style */
html {
  /* NOTE: 2020/09/20 - サイト共通ヘッダ・フッタへの影響排除のためコメントアウト */
  /* font-size: 62.5%; */
  overflow-y: scroall;
}

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  -webkit-font-smoothing: antialiased;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

figure {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

img {
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

ol, ul {
  list-style: none outside none;
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

q:before, q:after {
  content: '';
}

img,
object,
embed {
  vertical-align: top;
}

legend {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

img, abbr, acronym, fieldset {
  border: 0;
}

li {
  list-style-type: none;
}

select, input, button, textarea {
  font: 99% arial,helvetica,clean,sans-serif;
}

table {
  font-size: inherit;
  font: 100%;
}

pre, code, kbd, samp, tt {
  font-family: monospace;
  *font-size: 108%;
  line-height: 100%;
}

area {
  border: none;
  outline: none;
}

em, strong {
  font-weight: bold;
}

p {
  line-height: 1.85;
}

/****************************************

    common

*****************************************/
/* NOTE: 2023/09/07 - デフォルト（Noto）を使用 */
.sans-serif {
  /* font-family: "Yu Gothic Medium", "游ゴシック Medium", 'YuGothic','Yu Gothic','ヒラギノ角ゴ ProN W6','ヒラギノ角ゴ Pro W6','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック','ＭＳ ゴシック',sans-serif; */
}

/* NOTE: 2023/09/07 - Noto Serifを使用 */
.serif {
  /* font-family: 'YuMincho','Yu Mincho','游明朝','ヒラギノ明朝 ProN W6','HiraMinProN-W6','HG明朝E','ＭＳ Ｐ明朝','MS PMincho','MS 明朝',serif; */
  font-family: 'Noto Serif JP', serif;
}

.over {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.over:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}

.mcf {
  *zoom: 1;
}
.mcf:before, .mcf:after {
  content: " ";
  display: table;
  clear: both;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.txtL {
  text-align: left;
}

.txtR {
  text-align: right;
}

.txtC {
  text-align: center;
}

/****************************************

    Link

*****************************************/
main a {
  outline: none;
  text-decoration: underline;
}

main a:link {
  color: #333;
  text-decoration: none;
}

main a.disable {
  cursor: default;
}

main a:visited {
  text-decoration: none;
}

main a.disable:hover {
  text-decoration: none;
}

main a.default:link {
  color: #0000ff;
  text-decoration: underline;
}
main a.default:link:hover {
  text-decoration: none;
}

main a.default:visited {
  color: #800080;
}

main a.default:active {
  color: #ff8000;
}

main a.default:hover {
  color: #b80120;
}

/* ベーススタイル
-------------------------------------------------- */
/* NOTE: 2020/09/20 - サイト共通ヘッダ・フッタへの影響排除のためコメントアウト */
/*
body {
  background: #fff;
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
  color: #000;
  line-height: 1.4;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "YuGothic", "Yu Gothic", "ヒラギノ角ゴ ProN W6", "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "ＭＳ ゴシック", sans-serif;
}
*/

/* NOTE: 2020/09/20 - html 要素, body 要素に与えられていたスタイルのコメントアウト分をここで与える */
/* NOTE: 2020/09/20 - fonnt-sizeは指定しない main-slimではhtmlや:rootにfont-size設定がない; */
/* NOTE: 2023/09/07 - デフォルト（Noto）を使用 */
main {
  position: relative;
  color: #000;
  /* font-family: "Yu Gothic Medium", "游ゴシック Medium", "YuGothic", "Yu Gothic", "ヒラギノ角ゴ ProN W6", "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "ＭＳ ゴシック", sans-serif; */
}

/* NOTE: 2020/09/20 - /assets/stylesheets/main-slim.css により border-box が初期値の世界になっているため */
main,
main * {
  box-sizing: content-box;
}

.inr-content img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.inr-content {
  width: 100%;
  overflow: hidden;
}
body.is-fixed .inr-content {
  padding-top: 60px;
}

#header {
  position: static;
  width: 100%;
  height: 60px;
  line-height: 60px;
  color: #fff;
  background: #001f3c;
  /*z-index: 100;*/
  z-index: 10001;
}
#header:after {
  content: '';
  display: block;
  width: 60px;
  height: 60px;
  background: #001f3c;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10001;
}


/*.area-pagetop {
  position: relative;
  width: 100%;
  height: 62px;
  margin-top: 20px;
}
.area-pagetop .btn-pagetop {
  position: absolute;
  right: 0;
  top: 0;
  width: 62px;
}*/

.area-bottom-contact {
  padding: 30px 0 60px;
  background: #001f3c;
}
.area-bottom-contact .area-title {
  width: 146px;
  margin: 0px auto 20px;
}
.area-bottom-contact .box-present,
.area-bottom-contact .box-inquiry {
  width: 300px;
  margin: 0 auto 20px;
}

.btn-nav-spacer {
  position: relative;
  width: 100%;
  height: 41px;
}

#btm-nav {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 100;
}
#btm-nav.relative {
  position: relative;
}

.btm-nav {
  width: 100%;
  border-top: 1px solid #001f3c;
}
.btm-nav {
  *zoom: 1;
}
.btm-nav:before, .btm-nav:after {
  content: "";
  display: table;
}
.btm-nav:after {
  clear: both;
}
.btm-nav__item {
  float: left;
  width: 50%;
  box-sizing: border-box;
}
.btm-nav__item a {
  position: relative;
  display: block;
  height: 41px;
  line-height: 41px;
  text-align: center;
  background: #fff;
}
.btm-nav__item a:after {
  position: absolute;
  right: 5px;
  top: 50%;
  content: '';
  width: 0;
  height: 0;
  margin-top: -4px;
  border-style: solid;
  border-width: 3.5px 0 3.5px 6px;
  border-color: transparent transparent transparent #001f3c;
}
.btm-nav__item a img {
  width: 100%;
  max-width: 145px;
  height: auto;
  vertical-align: middle;
}
@media only screen and (max-width: 374px) {
  .btm-nav__item a img {
    max-width: 125px;
  }
}
.btm-nav__item .btn-present {
  border-right: 1px solid #001f3c;
}

html.modalLock body{
  overflow: hidden;
}

