@charset "UTF-8";
/* CSS Document */
tml {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  margin: 0;
  color: #333; /* RGB */
  font-family: "vdl-v7mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.4rem;
  text-align: center;
}
section h2 {
  font-size: 2.4rem;
}
a:hover {
  opacity: 0.5;
}
*, *:before, *:after {
  box-sizing: border-box;
}
/*header*/
.header {
  position: absolute;
  height: 70px;
  width: 100%;
  padding: 10px;
  font-family: 'VDL Ｖ７明朝 L'sans-serif;
  font-weight: 500;
  font-style: normal;
}
.header_wrapper {
  max-width: 1320px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 100%;
}
.header h1 {
  display: flex;
  color: #FFF;
  text-align: left;
  font-size: 1.6rem;
  text-decoration: none;
}
.header h1 img {
  width: 180px;
  height: 45px;
}
.header h1 a {
  color: #FFF;
  text-decoration: none;
  font-family: 'VDL Ｖ７明朝 L'sans-serif;
  font-weight: 600;
  font-style: normal;
}
.header ul {
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
.header ul li a :hover {
  color: #FF0004;
}
.header ul li a {
  padding: 10px 20px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  display: block;
  line-height: 1;
  font-family: adobe-garamond-pro, serif;
  font-weight: 500;
  font-style: normal;
}
.header li span {
  display: block;
  font-size: 0.8rem;
  padding-top: 5px;
  font-family: 'VDL Ｖ７明朝 L'sans-serif;
  font-weight: 300;
  font-style: normal;
  letter-spacing: normal;
}
@media(max-width:1000px) {
  .header {
    position: static;
    height: 60px;
    background-color: #333;
  }
  .header h1 img {
    width: auto;
    height: 40px;
  }
  /* header（デモの参考値） */
  .demobox-header {
    background: #ddd;
    height: 64px;
    padding: 1em;
  }
  /* headerのサイト名（デモの参考値） */
  .demobox-sitename {
    font-weight: 700;
    font-size: 18px;
  }
  /* 全体調整CSS */
  .hamburger-demo-menubox * {
    font-size: 16px;
  }
  .hamburger-demo-menubox li {
    font-size: 14px;
  }
  /* hamburgerここから */
  /* inputを非表示 */
  .input-hidden {
    display: none;
  }
  /* label */
  .hamburger-demo-switch {
    cursor: pointer;
    position: absolute;
    right: 3%;
    top: 0; /* ハンバーガーアイコンの位置（上から） */
    z-index: 9999;
    width: 4em; /* アイコン（クリック可能領域）の幅 */
    height: 4em; /* アイコン（クリック可能領域の）高さ */
  }
  /* メニュー展開時にハンバーガーアイコンを固定 */
  #hamburger-demo1:checked ~ .hamburger-demo-switch {
    position: fixed;
  }
  /* ハンバーガーアイコン */
  .hamburger-switch-line1, .hamburger-switch-line1:before, .hamburger-switch-line1:after {
    width: 25px;
    height: 3px;
    background: #219f94; /* ハンバーガーアイコンの色 */
    position: absolute;
    top: 50%;
    left: 50%;
    transition: .3s;
    content: "";
  }
  .hamburger-switch-line1 {
    transform: translate(-50%, -50%);
  }
  .hamburger-switch-line1:before {
    transform: translate(-50%, -300%);
  }
  .hamburger-switch-line1:after {
    transform: translate(-50%, 200%);
  }
  /* ハンバーガーアイコン･アニメーション */
  #hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1 {
    width: 0;
  }
  #hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1:before {
    transform: rotate(45deg) translate(-40%, 325%);
  }
  #hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1:after {
    transform: rotate(-45deg) translate(-40%, -325%);
  }
  /* メニューエリア */
  .hamburger-demo-menuwrap {
    position: fixed;
    height: 100%;
    background: #333; /* メニューエリアの背景色 */
    padding: 5em 3% 2em;
    z-index: 9998;
    transition: .3s;
    overflow-y: scroll; /* メニュー内容が多い場合に縦スクロールする */
    top: 0;
    left: 100%;
    width: 70%;
  }
  /* メニューリスト */
  .header ul {
    display: block;
  }
  .hamburger-demo-menulist {
    margin-right: 3%;
    padding-left: 5% !important; /* !important不要な場合もあり */
    list-style: none;
    text-align: left;
  }
  .hamburger-demo-menulist li a {
    text-decoration: none;
    color: #333; /* メニューリストの文字色 */
    display: block;
    padding: .5em 0;
    margin-bottom: 20px;
  }
  .menu_item {
    display: block;
  }
  /* メニューエリア･アニメーション */
  /* 右から */
  #hamburger-demo1:checked ~ .hamburger-demo-menuwrap {
    left: 30%;
  }
  /* コンテンツカバー */
  #hamburger-demo1:checked ~ .hamburger-demo-cover {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9997;
    background: rgba(3, 3, 3, .5);
    display: block;
  }
}
/* PCではハンバーガーメニューを表示しない */
@media (min-width: 1000px) {
  .input-hidden {
    display: none;
  }
}
.footer {
  background-color: #c1deae;
  padding-top: 30px;
  padding-bottom: 20px;
  font-family: 'VDL Ｖ７明朝 L'sans-serif;
  font-weight: 500;
  font-style: normal;
}
.footer-wrapper {
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  list-style: none;
  margin: 0 auto;
  padding-bottom: 20px;
}
.footer__g1 {
  display: block;
  justify-content: flex-start;
}
.footer__g1 h1 a {
  display: block;
  text-decoration: none;
  float: left;
  margin: 0 auto;
  color: #333;
  font-size: 2.0rem;
}
.footer h1 a span {
  vertical-align: middle;
  align-items: center;
}
.footer ha img {
  vertical-align: middle;
}
.footer h1 a, .adress {
  display: inline-block;
  text-align: left;
  padding-bottom: 10px;
}
.adress {
	font-size: 1.2rem;
}
.telephone {
  border-top: 3px solid #219f94;
  border-bottom: 3px solid #219f94;
  justify-content: center;
  align-items: center;
  margin-right: 40px;
}
.telephone span {
  letter-spacing: 1px;
}
.inquiry {
  text-decoration: none;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px 70px;
  color: #FFF;
  transition: 0.3s ease-in-out;
  font-weight: 600;
	font-size: 1.5rem;
  background: rgba(209, 20, 34);
  margin: 0 auto;
  max-width: 400px;
}
.inquiry :hover {
  background: rgba(245, 140, 117, 1);
}
@media (max-width: 1160px) {
  .footer, .footer-wrapper {
    display: block;
    vertical-align: middle;
    text-align: center;
    align-items: center;
  }
  .footer-wrapper {
    margin: 0 20px;
  }
  .footer__g1 {
    display: block;
    margin: 0;
  }
  .footer h1 a {
    display: block;
    vertical-align: middle;
    text-align: center;
    margin: 0 auto;
    align-items: center;
    float: none;
  }
  .footer h1 a span {
    vertical-align: middle;
    align-items: center;
  }
  .adress {
    display: block;
    margin: 0 0 20px 0;
    text-align: center;
  }
  .telephone {
    margin-right: 0;
    margin-bottom: 30px;
  }
	
}
.small {
	font-size: 0.9rem;
}