@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
/* CSS Document */
/*===================================================
	共通CSS（PC/SMP）
===================================================*/
/*////////////////////////////////////////////////////////////
	共通設定
///////////////////////////////////////////////////////////*/
/* --------------------------------------------------
	base
-------------------------------------------------- */
* {
  box-sizing: border-box;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html,
body {
  width: 100%;
}

body {
  position: relative;
  overflow-x: hidden;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  color: #000000;
  font-size: 23px;
  background: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
}

.txt {
  line-height: 2;
}

/*リンク */
a {
  color: #000000;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* 画像幅 */
img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/* clearfix */
.clearfix::after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

.spBreak {
  display: none;
}

@media (min-width: 1025px) {
  a {
    transition: 0.6s;
  }

  a:hover {
    opacity: 0.6;
  }
}
/* --------------------------------------------------
	header
-------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 20px;
  z-index: 999;
  background: #ffffff;
}
.header .headWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  min-height: 80px;
  margin: 0 auto;
}
.header .logo {
  width: 175px;
}
.header .logo a {
  display: block;
}
.header .hamburger {
  width: 40px;
  cursor: pointer;
}
.header .hamburger {
  cursor: pointer;
  display: block;
  position: relative;
  top: 8px;
  width: 50px;
  height: 30px;
  z-index: 9999;
}
.header .hamburger span {
  background: #000000;
  position: absolute;
  left: 50%;
  width: 35px;
  height: 4px;
  transform: translateX(-50%);
  transition: 0.4s;
}
.header .hamburger span:nth-of-type(1) {
  top: 8px;
}
.header .hamburger span:nth-of-type(2) {
  bottom: 8px;
}
.header .hamburger.is-open span:nth-of-type(1) {
  transform: translate(-50%, 5px) rotate(-45deg);
}
.header .hamburger.is-open span:nth-of-type(2) {
  transform: translate(-50%, -5px) rotate(45deg);
}
.header .hamburger p {
  position: absolute;
  top: -15px;
  width: 100%;
  font-size: 12px;
  color: #000000;
  text-align: center;
}

/* --------------------------------------------------
	nav
-------------------------------------------------- */
.navBox {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100% - 80px);
  padding: 80px 20px;
  background: rgba(0, 0, 0, 0.8);
}
.navBox .navList ul {
  max-width: 1200px;
  margin: 0 auto;
}
.navBox .navList ul li + li {
  margin: 30px 0 0;
}
.navBox .navList ul li a {
  display: inline-block;
  color: #ffffff;
}
.navBox .navList ul .hide {
  display: none;
}

/* --------------------------------------------------
	main
-------------------------------------------------- */
main {
  overflow: hidden;
  margin: 80px 0 0;
}

.pageKvPanel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 400px;
  padding: 20px;
}
.pageKvPanel .pageKvTitle {
  text-align: center;
}
.pageKvPanel .pageKvTitle .imgTitle {
  margin: 0 0 20px;
  padding: 0 0 30px;
  background: url("../image/common/page_kv_title_line.png") center bottom no-repeat;
  background-size: 140px auto;
}
.pageKvPanel .pageKvTitle img {
  display: inline-block;
}
.pageKvPanel .pageKvTitle h1 {
  width: 100%;
  color: #ffffff;
  letter-spacing: 0.1em;
}

.secWrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.secWrap01 {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.secWrap02 {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.mapBox {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 0;
  padding: 0 0 45%;
}
.mapBox iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

/* --------------------------------------------------
	footer
-------------------------------------------------- */
.footer {
  background: #000000;
}
.footer .footPanel {
  padding: 80px 20px;
}
.footer .footPanel .logo {
  max-width: 200px;
  margin: 0 auto;
}
.footer .footPanel .footNav {
  max-width: 960px;
  margin: 60px auto 0;
  padding: 20px 0 0;
  border-top: 1px solid #ffffff;
}
.footer .footPanel .footNav ul {
  text-align: center;
}
.footer .footPanel .footNav ul li {
  display: inline-block;
}
.footer .footPanel .footNav ul li + li {
  margin: 0 0 0 25px;
}
.footer .footPanel .footNav ul a {
  display: inline-block;
  font-size: 14px;
  color: #ffffff;
}
.footer .footPanel .footNav ul .hide {
  display: none;
}
.footer .copy {
  padding: 20px;
  font-size: 14px;
  text-align: center;
  background: #ffffff;
}