@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: 400;
  line-height: 1.5;
  color: #181b39;
  font-size: 20px;
  background: #f6eee2;
  /*transition: 2s;*/
}

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

.txt {
  line-height: 2;
}

/*リンク */
a {
  color: #181b39;
  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
-------------------------------------------------- */
@media (min-width: 1025px) {
  .header .headWrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
  }
  .header .logo {
    width: 70px;
  }
  .header .logo a {
    display: block;
  }
  .header .navBox {
    width: calc(100% - 180px);
  }
  .header .headContactBtn {
    width: 150px;
    height: 150px;
  }
  .header .headContactBtn a {
    display: block;
    transition: transform 0.25s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 0.25s cubic-bezier(0.39, 0.575, 0.565, 1);
  }
  .header .headContactBtn a:hover {
    opacity: 1;
    transform: translate3d(0, -10px, 0);
  }
  .header.topHeader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    transition: 0.6s;
  }
  .header.topHeader .headWrap {
    transition: 0.6s;
  }
  .header.topHeader .headerContainer {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 180px;
    padding: 30px 20px;
    z-index: 999;
    background: url(https://fwork-st.com/system_panel/uploads/images/header_bg.png) center no-repeat;
    background-size: cover;
    transition: 0.6s;
  }
  .header.topHeader .headContactBtn {
    position: absolute;
    top: 40px;
    right: 50px;
    z-index: 999;
  }
  .header.topHeader.fixed {
    position: fixed;
    height: auto;
    animation: fixed-slide 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1;
  }
  .header.topHeader.fixed .headerContainer {
    position: static;
    height: auto;
    background: #191a37;
  }
  .header.pageHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
  }
  .header.pageHeader .headerContainer {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    padding: 15px 20px;
    z-index: 999;
    background: #191a37;
  }
  .header.pageHeader .headContactBtn {
    position: absolute;
    top: 40px;
    right: 50px;
    z-index: 999;
  }
  .header.pageHeader .navBox {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0 150px 0 0;
  }
  .header.pageHeader .navBox .navList {
    width: 63%;
  }
  .header .hamburger {
    display: none;
  }
}
@media (min-width: 1025px) and (max-width: 1520px) {
  .header.topHeader.fixed .headContactBtn, .header.pageHeader .headContactBtn {
    top: 40px;
  }
}
/* --------------------------------------------------
	nav
-------------------------------------------------- */
@media (min-width: 1025px) {
  .navBox .navList .ul {
    display: flex;
    max-width: 550px;
    border-right: 2px solid #c9aa4c;
  }
  .navBox .navList .ul .li {
    width: 25%;
    border-left: 2px solid #c9aa4c;
  }
  .navBox .navList .ul .li a {
    display: block;
    color: #ffffff;
    text-align: center;
    line-height: 1.2;
  }
}
/* --------------------------------------------------
	main
-------------------------------------------------- */
.main {
  overflow: hidden;
}

@media (min-width: 1025px) {
  .pageMain {
    margin: 115px 0 0;
  }
}
.pageKvPanel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 250px;
  text-align: center;
}
.pageKvPanel .pageKvTitle {
  font-size: 34px;
  color: #ffffff;
}

.secWrap {
  max-width: 1640px;
  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 .footContact {
  padding: 100px 0;
  background: #e1d8ae;
}
.footer .footContact .secBox .secTtlBox {
  position: relative;
}
.footer .footContact .secBox .secTtlBox .img {
  position: absolute;
  top: -20px;
  left: -40px;
  width: 100px;
}
.footer .footContact .secBox .secTtlBox .secTtl {
  font-size: 34px;
}
.footer .footContact .secBox .btnBox {
  position: relative;
}
.footer .footContact .secBox .btnBox .balloon {
  position: absolute;
  top: -50px;
  left: -80px;
  width: 70px;
  z-index: 1;
}
.footer .footContact .secBox .btnBox .btnContact {
  max-width: 300px;
}
.footer .footContact .secBox .btnBox .btnContact a {
  position: relative;
  display: block;
  padding: 10px;
  text-align: center;
  border: 1px solid #c9aa4c;
  background: #c9aa4c;
}
.footer .footContact .secBox .btnBox .btnContact a:after {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  bottom: 0;
  width: 30px;
  height: 5px;
  margin: auto 0;
  background: url(https://fwork-st.com/system_panel/uploads/images/btn_more_arrow.png) no-repeat;
  background-size: 100% auto;
  transition: 0.6s;
}
@media (min-width: 1025px) {
  .footer .footContact .secBox .btnBox .btnContact a:hover {
    opacity: 1;
    color: #ffffff;
    background: #191a37;
  }
  .footer .footContact .secBox .btnBox .btnContact a:hover:after {
    right: -15px;
  }
}
@media (min-width: 1025px) {
  .footer .footContact .secBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer .footContact .secBox .btnBox {
    width: 45%;
  }
}
.footer .footPanel {
  padding: 60px 0 20px;
  color: #ffffff;
  background: url(https://fwork-st.com/system_panel/uploads/images/footer_panel_bg.png) no-repeat;
  background-size: cover;
}
.footer .footPanel .logo {
  width: 70px;
  margin: 0 0 20px;
}
.footer .footPanel .copy {
  margin: 80px 0 0;
  font-size: 14px;
  text-align: right;
}

/* --------------------------------------------------
	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);
}