@charset "utf-8";
/*
theme Name: LP theme
Description: original theme
*/
html {
  font-size: 62.5%;
}
@media screen and (min-width:768px){
  html {
    /* タブレット端末用*/
    font-size: 11.66px;
  }
}

@media screen and (min-width:1024px){
  html {
    /* デスクトップ端末用*/
    font-size: 13.33px;
  }
}
body {
  font-family: source-han-sans-japanese, -apple-system, BlinkMacSystemFont, "Helvetica Neue","ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  padding: 0;
  color: #333;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-feature-settings: 'palt' 1;
  font-feature-settings: 'palt' 1;
  letter-spacing: .1em;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

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

.header_top ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#breadcrumb ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: .8rem;
  display: flex;
  flex-wrap: wrap;
}
#breadcrumb ul li:not(:last-of-type)::after,
#breadcrumb ul li.cat::after {
  content: ">";
  margin: 0 .4em;
}
#breadcrumb ul li a {
  text-decoration: underline;
  color: #666;
}
#breadcrumb ul li a:hover {
  text-decoration: none;
}

.header-inner, .container, .footer-inner {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 1100px;
  padding: 0 10px;
  margin-right: auto;
  margin-left: auto;
}

.contents, #sidebar {
  margin: 20px 0;
}

@media (min-width: 768px) {
  /*コンテンツとサイドバーを横に並べる*/
  .container:after {
    display: block;
    clear: both;
    content: '';
  }
  .contents {
    float: left;
    width: 70%;
    margin-right: 2%;
  }
  #sidebar {
    float: left;
    width: 28%;
  }
}

/*ヘッダー*/

/*タイトルを画像にする場合*/
.site-title {
  position: relative;
  padding: 8px 0;
  display: -webkit-box;display: -ms-flexbox;display: flex;
  -webkit-box-pack: justify;-ms-flex-pack: justify;justify-content: space-between;
}

.title_box {
  display: -webkit-box;display: -ms-flexbox;display: flex;
  -webkit-box-align: center;-ms-flex-align: center;align-items: center;
  -webkit-box-flex: 1;-ms-flex: 1;flex: 1;
  padding-right: 1em;
}

.site-title .h1 {
  line-height: 1;
  margin: 0;
  padding: 0 15px 0 0;
}

.desc {
  font-size: 1.0rem;
  -webkit-box-flex: 1;-ms-flex: 1;flex: 1;
}

.site-title .h1 img {
  width: auto;
  height: 50px;
}

.site-title a {
  display: block;
}

.header_contact {
  display: -webkit-box;display: -ms-flexbox;display: flex;
}
.header_contact .tel {
  padding-right: 10px;
  line-height: 1.4;
}
.header_contact dl dt {
  font-weight: 600;
  font-size: 1.5rem;
  display: -webkit-box;display: -ms-flexbox;display: flex;
  -webkit-box-align: center;-ms-flex-align: center;align-items: center;
}
.header_contact dl dt::before {
  content: "総合受付:";
  display: inline-block;
  font-size: 1.0rem;
  font-weight: 300;
}
.header_contact dl dd {
  font-size: 1.2rem;
  text-align: right;
}
.header_contact .mail a {
  background: #1B598C;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  height: 100%;
  display: -webkit-box;display: -ms-flexbox;display: flex;
  -webkit-box-align: center;-ms-flex-align: center;align-items: center;
  -webkit-box-pack: center;-ms-flex-pack: center;justify-content: center;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
  padding: 0 10px;
  font-weight: 600;
}

/*スマホ用のメニューボタン*/
.header-inner {
  position: relative;
}

#navbutton {
  position: absolute;
  top: 50%;
  right: 10px;
  padding: 8px 12px;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: solid 1px #aaa;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.45);
  display: none;
}

#navbutton:hover {
  background-color: #ddd;
}

#navbutton:focus {
  outline: none;
}

#navbutton i {
  font-size: 2em;
  color: #333;
}


/*ヘッダーナビ*/
#header-nav {
  display: none;
}

.header-nav {
  padding-left: 10px;
}

.header-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-nav li a {
  display: block;
  padding: 15px 5px;
  color: #fff;
  font-size: 1em;
  text-decoration: none;
}

.header-nav li a:hover {
  opacity: 0.8;
}

.copyright {
  padding: 0 0 20px 0;
  font-size: 1.2rem;
  text-align: center;
}


@media (max-width: 767px) {
  .header_contact {
    display: none;
  }
}