@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sawarabi+Mincho&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: "Sawarabi Mincho", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1.5;
  color: #1c1c1c;
  font-size: 16px;
  background: #ffffff;
  transition: 2s;
}

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

.txt {
  line-height: 2.3;
}

/*リンク */
a {
  color: #1c1c1c;
  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;
  }
}
.fax a {
  pointer-events: none;
}

/* --------------------------------------------------
	header
-------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 100px 15px 20px;
  color: #333333;
  z-index: 999;
  background: #ffffff;
}
.header .headWrap {
  max-width: 1640px;
  margin: 0 auto;
}
.header .headTtl {
  margin: 0 0 2px;
  font-size: 13px;
}
.header .headBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logoBox {
  display: flex;
  align-items: center;
}
.header .logoBox .logo {
  width: 200px;
  margin: 0 20px 0 0;
}
.header .logoBox .logo a {
  display: block;
}
.header .logoBox .sns .ul {
  display: flex;
  align-items: center;
}
.header .logoBox .sns .ul .li {
  width: 20px;
}
.header .logoBox .sns .ul .li + .li {
  margin: 0 0 0 15px;
}
.header .logoBox .sns .ul .li a {
  display: block;
}
.header .headItem {
  display: flex;
  align-items: center;
}
.header .headItem .tel {
  margin: 0 20px 0 0;
}
.header .headItem .tel a {
  display: inline-block;
  color: #333333;
}
.header .headItem .tel a p {
  display: inline-block;
  font-size: 20px;
}
.header .headItem .tel a .em {
  font-size: 24px;
}
.header .headItem .ul {
  display: flex;
  align-items: center;
}
.header .headItem .ul .li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50px;
  text-align: center;
}
.header .headItem .ul .mail {
  width: 50px;
  margin: 0 10px 0 0;
}
.header .headItem .ul .mail a {
  background: #fde5eb;
}
.header .headItem .ul .mail a img {
  width: 20px;
}
.header .headItem .ul .item {
  width: 150px;
}
.header .headItem .ul .item a {
  color: #ffffff;
  background: #f97d9b;
}
.header .headItem .ul .item a p {
  display: inline-block;
  padding: 0 0 0 30px;
  background: url(https://horie-works.co.jp/system_panel/uploads/images/header_item.png) left center no-repeat;
  background-size: 20px auto;
}
.header .hamburgerBox {
  position: fixed;
  top: 50px;
  right: 20px;
  text-align: center;
  z-index: 999;
}
.header .hamburgerBox .hamburger {
  cursor: pointer;
  display: block;
  position: relative;
  width: 50px;
  height: 20px;
}
.header .hamburgerBox .hamburger .span {
  background: #1c1c1c;
  position: absolute;
  left: 50%;
  width: 40px;
  height: 1px;
  transform: translateX(-50%);
  transition: 0.4s;
}
.header .hamburgerBox .hamburger .span:nth-of-type(1) {
  top: 10;
}
.header .hamburgerBox .hamburger .span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.header .hamburgerBox .hamburger .span:nth-of-type(3) {
  bottom: 0;
}
.header .hamburgerBox .is-open.hamburger .span:nth-of-type(1) {
  transform: translate(-50%, 9px) rotate(-45deg);
}
.header .hamburgerBox .is-open.hamburger .span:nth-of-type(2) {
  opacity: 0;
}
.header .hamburgerBox .is-open.hamburger .span:nth-of-type(3) {
  transform: translate(-50%, -9px) rotate(45deg);
}
.header .hamburgerBox .hamburgerTxt {
  margin: 5px 0 0;
  font-size: 12px;
  color: #333333;
}

/* --------------------------------------------------
	nav
-------------------------------------------------- */
.navBox {
  overflow: auto;
  position: fixed;
  left: 0;
  width: 100%;
  height: calc(100% - 100px);
  z-index: 999;
  background: #ffffff;
  transition: 0.6s;
}
.navBox.active {
  top: 100px;
}
.navBox02.active {
  top: 117px;
}
.navBox .navContainer {
  padding: 60px 20px;
}
.navBox .navList {
  text-align: center;
}
.navBox .navList .ul .li + .li {
  margin: 25px 0 0;
}
.navBox .navList .ul .li a {
  display: inline-block;
  font-size: 18px;
  color: #333333;
}
.navBox .navItem {
  display: none;
}

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

.pageKvPanel {
  padding: 40px 0;
}
.pageKvPanel .pageKv {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pageKvPanel .pageKv .kvTitle {
  width: 50%;
  font-size: 40px;
}
.pageKvPanel .pageKv .kv {
  width: 45%;
}

.pageSecTtlBox {
  position: relative;
  margin: 0 0 30px;
  padding: 0 0 40px;
  text-align: center;
}
.pageSecTtlBox:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100px;
  height: 1px;
  margin: 0 auto;
  background: #707070;
}
.pageSecTtlBox .pageSecTtl {
  font-size: 36px;
}
.pageSecTtlBox .sub {
  margin: 5px 0 0;
  color: #f97d9b;
}

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

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

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

.secWrap03 {
  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;
}

.btnMore {
  width: 220px;
}
.btnMore a {
  display: block;
  padding: 10px;
  color: #ffffff;
  text-align: center;
  background: #f97d9b;
}

.btnMoreDl {
  width: 220px;
}
.btnMoreDl a {
  display: block;
  padding: 8px 10px;
  color: #ffffff;
  text-align: center;
  background: #f97d9b;
  background-size: 10px auto;
}
.btnMoreDl a p {
  display: inline-block;
  padding: 0 0 0 20px;
  background: url(https://horie-works.co.jp/system_panel/uploads/images/btn_more_dl.png) left center no-repeat;
  background-size: 15px auto;
}

/* --------------------------------------------------
	footer
-------------------------------------------------- */
.footer .footContact {
  padding: 80px 0;
  color: #ffffff;
  background: url(https://horie-works.co.jp/system_panel/uploads/images/footer_contact_bg.png) center no-repeat;
  background-size: cover;
}
.footer .footContact .secBox .ttlBox .ttl {
  margin: 0 0 20px;
  font-size: 36px;
  letter-spacing: 0.2em;
}
.footer .footContact .secBox .txtBox .tel {
  margin: 0 0 20px;
  text-align: right;
}
.footer .footContact .secBox .txtBox .tel a {
  display: inline-block;
  color: #ffffff;
}
.footer .footContact .secBox .txtBox .tel a p {
  display: inline-block;
  font-size: 20px;
}
.footer .footContact .secBox .txtBox .tel a .em {
  font-size: 24px;
}
.footer .footContact .secBox .txtBox .tel > p {
  font-size: 13px;
}
.footer .footContact .secBox .txtBox .mail {
  width: 260px;
}
.footer .footContact .secBox .txtBox .mail a {
  display: block;
  padding: 10px;
  color: #ffffff;
  text-align: center;
  background: #f97d9b;
}
.footer .footContact .secBox .txtBox .mail a p {
  display: inline-block;
  padding: 0 0 0 20px;
  background: url(https://horie-works.co.jp/system_panel/uploads/images/footer_contact_mail.png) left center no-repeat;
  background-size: 12px auto;
}
@media (min-width: 1025px) {
  .footer .footContact .secBox {
    display: flex;
    justify-content: space-between;
  }
}
.footer .footPanel {
  padding: 80px 0 50px;
  color: #ffffff;
  background: #333333;
}
.footer .footPanel .secWrap01 {
  position: relative;
}
.footer .footPanel .footBox .logo {
  width: 240px;
  margin: 0 0 20px;
}
.footer .footPanel .footBox .txt {
  margin: 0 0 30px;
}
.footer .footPanel .footBox .sns .ul {
  display: flex;
  align-items: center;
}
.footer .footPanel .footBox .sns .ul .li {
  width: 30px;
}
.footer .footPanel .footBox .sns .ul .li + .li {
  margin: 0 0 0 15px;
}
.footer .footPanel .footBox .sns .ul .li a {
  display: block;
}
.footer .footPanel .pagetop {
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  cursor: pointer;
}
.footer .footPanel .copy {
  position: absolute;
  right: 0;
  bottom: 0;
}

/* --------------------------------------------------
	fadeAnimation
-------------------------------------------------- */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  /* 背景カラー */
  z-index: 9999;
  /* 一番手前に */
  pointer-events: none;
  /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
  opacity: 0;
  /* 初期値では非表示 */
  -webkit-transition: opacity 0.8s ease;
  /* アニメーション時間は 0.8秒 */
  -ms-transition: opacity 0.8s ease;
  -moz-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}

/*body要素に.fadeoutセレクタがある場合には、レイヤーが表示されるようにopacityを１に設定します。*/
body.fadeout::after {
  opacity: 1;
}

/*お好みで、.fadeoutセレクタ以下の他の要素にもアニメーション用のCSSを定義します*/
/*DEMOではページ遷移時にarticle要素のスケールもアニメーションさせています*/
body.fadeout article {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}