@charset "UTF-8";

/*---------main---------------*/
html {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
  border-spacing: 0;
}

body {
  box-sizing: border-box;
  width: 90%;
  margin: 0 auto;
  padding: 0;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  color: #555;
  border-spacing: 0;
}

#container {
  box-sizing: border-box;
  width: 100%;
  padding: 0;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  /* 左右の向きpx  上下の向きpx ぼかしpx 広がりpx 色 ; */
  box-shadow: 0px 0px 10px 3px rgba(134, 146, 161, .3);
  -webkit-box-shadow: 0px 0px 10px 3px rgba(134, 146, 161, .3);
  -moz-box-shadow: 0px 0px 10px 3px rgba(134, 146, 161, .3);
  font-size: 16px;
  line-height: 1.3em;
  letter-spacing: 0.07em;
  /* コンテンツが少なくともfooterを下にする */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1 {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: .45em 0;
  line-height: 1.3em;
  text-shadow: 1px 1px 1px rgba(150, 150, 150, 0.66);
  font-size: 32px;
  font-weight: 600;
  background: #10967d;
  color: #fff;
  text-shadow: 1px 1px 3px #555;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  clear: both;
}

/*-------hederのlogo・login----------*/
header {
  box-sizing: border-box;
  width: 100%;
  padding: 5px 0;
  margin: 0;
  height: 70px;
}

.nav_notshow {
  display: none;
}

.header-logo-menu {
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

#sp-logo {
  margin: 0px;
  display: block;
  position: relative;
  border: 0;
  padding-left: 10px;
}

.nav-drawer {
  box-sizing: border-box;
  padding: 0;
  list-style: none;
  margin: 0;
}

#nav-content {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: right;
  position: relative;
  top: 10px;
}

#nav-content ul {
  box-sizing: border-box;
  padding: 0;
  width: 100%;
  height: 70px;
  white-space: nowrap;
}

#nav-content ul li {
  display: inline-block;
  padding-right: 15px;
}

#nav-content ul li a {
  text-decoration: none;
}

.gl_list a:link,
.gl_list a:visited {
  color: #10967d;
}

.gl_list a:hover {
  color: #105c96;
}

.gl_login a:link,
.gl_login a:visited {
  background: #10967d;
  padding: 3px 7px 3px 5px;
  border-radius: 5px;
  color: #fff !important;
}

.gl_login a:hover {
  background-color: #105c96;
  color: #fff !important;
}

.gl_pin {
  color: #dd0205;
}

/*--------パンくずリスト-----------*/
.update {
  box-sizing: border-box;
  color: #777;
  font-size: 14px;
  padding: 5px 0 5px 5px;
  margin: 0;
}

.update img {
  padding-right: 3px;
  margin: 0px;
  display: block;
  border: 0;
  position: relative;
  top: -3px;
}

.breadcrumb {
  box-sizing: border-box;
  width: 100%;
  padding: 0.4em;
  display: flex;
  align-items: center;
}

.breadcrumb li {
  list-style-type: none;
  font-size: 11px;
}

.breadcrumb li a {
  padding: 0 3px;
}

.breadcrumb li a:link,
.breadcrumb li a:visited {
  color: #10998f
}

.breadcrumb li a:hover {
  color: #00f
}

.breadcrumb li:after {
  content: ">"
}

.breadcrumb li:last-child:after {
  content: none
}

.breadcrumb li a:link,
.i-mark a:visited {
  text-decoration: none
}

/*----footer---*/
footer {
  box-sizing: border-box;
  width: 100%;
  background: #087f7f;
  color: #fff;
  margin: 0;
  padding: .8em 0 .6em;
  border: 0;
}

footer>div.footer_logo {
  font-weight: 700;
  color: #fff;
  padding: 0 0 0 1em;
}

footer>nav ul {
  box-sizing: border-box;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: .6em 1.2em .8em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
}

footer>nav>ul>li {}

footer>nav>ul>li>a:link,
footer>nav>ul>li>a:visited {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  padding: 0;
}

footer>nav>ul>li>a:hover {
  background: #fff;
  color: #00f;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

footer>div.copy {
  box-sizing: border-box;
  padding-top: .8em;
  border-top: solid;
  text-align: center;
  border-width: thin;
  color: #fff;
  font-size: 12px
}

/*----戻るボタン----*/
.jump {
  text-align: center;
  font-weight: 700;
  width: 150px;
  margin: 40px auto;
  border: 2px solid #008e53;
  background-color: #008e53
}

.jump a {
  display: block;
  width: 100%;
  padding: 10px 0;
  text-decoration: none;
  -webkit-transition: .5s ease;
  -webkit-transition-property: opacity, border, color, background;
  -moz-transition: .5s ease;
  -moz-transition-property: opacity, border, color, background;
  -o-transition: .5s ease;
  -o-transition-property: opacity, border, color, background;
  transition: .5s ease;
  transition-property: opacity, border, color, background
}

.jump a:link,
.jump a:visited {
  color: #fff
}

.jump a:hover {
  background-color: #fff;
  color: #008e53
}

/*-----ad------*/
.google-auto-placed {
  box-sizing: border-box;
  margin: 10px auto;
  width: 99%;
}