@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=Kiwi+Maru:wght@400;500&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: "Kiwi Maru", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  color: #373737;
  font-size: 16px;
  background: #ffffff;
  transition: 2s;
}

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

.txt {
  line-height: 2.5;
}

/*リンク */
a {
  color: #373737;
  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 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    padding: 0 0 0 15%;
    z-index: 999;
    background: #ffffff;
  }
  .header .hamburger {
    display: none;
  }

  .header .logo {
    position: absolute;
    left: 40px;
    bottom: -60px;
    width: 15%;
    max-width: 200px;
    padding: 30px;
    border-radius: 0 0 20px 0;
    background: #ffffff;
    transition: 0.6s;
  }
  .header .logo a {
    display: block;
    max-width: 150px;
    margin: 0 auto;
    transition: 0.6s;
  }
  .header.fixed .logo {
    padding: 10px;
    left: 10px;
    bottom: 0;
    width: 100px;
    max-width: 100px;
  }
  .header.fixed .logo a {
    max-width: 100px;
  }

  .pageHeader .logo {
    position: absolute;
    padding: 10px;
    left: 10px;
    bottom: 0;
    width: 100px;
  }
  .pageHeader .logo a {
    display: block;
    max-width: 100px;
    margin: 0 auto;
  }
}
/* --------------------------------------------------
	nav
-------------------------------------------------- */
@media (min-width: 1025px) {
  .navBox {
    padding: 0 80px 0 0;
  }
  .navBox .navList > .ul {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
  }
  .navBox .navList > .ul > .li {
    position: relative;
    height: 100px;
    padding: 48px 0 30px;
  }
  .navBox .navList > .ul > .li + .li {
    margin: 0 0 0 2%;
  }
  .navBox .navList > .ul > .li .linkTxt {
    position: relative;
  }
  .navBox .navList > .ul > .li .linkTxt > p {
    padding: 0 10px 10px;
  }
  .navBox .navList > .ul > .li > a {
    display: inline-block;
  }
  .navBox .navList > .ul > .li > a > div > p {
    padding: 0 10px 10px;
  }
  .navBox .navList > .ul > .li.spBreak {
    display: none;
  }
  .navBox .navList > .ul .pulldown {
    overflow: hidden;
    background: url(https://reast-k.com/system_panel/uploads/images/header_nav_arrow.png) center bottom 15px no-repeat;
  }
  .navBox .navList > .ul .pulldown:hover {
    overflow: visible;
  }
  .navBox .navList > .ul .pulldown:hover .subList {
    top: 100px;
    height: auto;
    opacity: 1;
    z-index: 9999;
  }
  .navBox .navList .subList {
    position: absolute;
    top: 70px;
    left: -50px;
    width: 200px;
    height: 0;
    opacity: 0;
    z-index: -1;
    transition: 0.6s;
  }
  .navBox .navList .subList .li + .li {
    margin: 1px 0 0;
  }
  .navBox .navList .subList .li a {
    display: block;
    padding: 15px 5px;
    font-size: 14px;
    text-align: center;
    background: #ffffff;
  }
  .navBox .navList .subList .li a p {
    position: relative;
    display: inline-block;
  }
  .navBox .navList .subList .li a:hover {
    opacity: 1;
    color: #ffffff !important;
    background: #d10b14;
  }
  .navBox .navList .subList .li:last-child a {
    border-radius: 0 0 10px 10px;
  }
  .navBox .navList .contact .consult {
    position: absolute;
    left: -40px;
    bottom: -10px;
    width: 200px;
    padding: 2px;
    font-size: 14px;
    color: #ffffff;
    text-align: center;
    border-radius: 20px;
    background: #d10b14;
  }
  .navBox .navList .contact .consult::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    width: 13px;
    height: 10px;
    margin: 0 auto;
    background: url(https://reast-k.com/system_panel/uploads/images/header_contact_arrow.png) no-repeat;
    background-size: 100% auto;
  }
}
/* --------------------------------------------------
	main
-------------------------------------------------- */
.main {
  overflow: hidden;
  margin: 100px 0 0;
}

.pageKvContainer {
  position: relative;
  padding: 0 80px;
}
.pageKvContainer .pageKvPanel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 50px;
  height: 340px;
  border-radius: 10px;
}
.pageKvContainer .pageKvTitle {
  width: 300px;
  padding: 10px 20px;
  text-align: center;
  border-radius: 10px;
  background: #ffffff;
}
.pageKvContainer .pageKvTitle p {
  font-size: 34px;
}
.pageKvContainer .scrollBox {
  position: absolute;
  left: 30px;
  bottom: 0;
  width: 12px;
  height: 150px;
  text-align: center;
}
.pageKvContainer .scrollBox .scroll {
  display: inline-block;
}

.mainContainer {
  padding: 0 80px;
}

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

.secWrap01 {
  max-width: 1200px;
  margin: 0 auto;
}

.secWrap02 {
  max-width: 1000px;
  margin: 0 auto;
}

.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: 200px;
}
.btnMore a {
  overflow: hidden;
  position: relative;
  display: block;
  padding: 8px 15px;
  color: #d10b14;
  text-align: center;
  border-radius: 20px;
  border: 1px solid #d10b14;
}
.btnMore a p {
  position: relative;
  z-index: 3;
  background: url(https://reast-k.com/system_panel/uploads/images/btn_more_arrow.png) right center no-repeat;
  background-size: 12px auto;
}
@media (min-width: 1025px) {
  .btnMore a::before {
    content: "";
    /*絶対配置で位置を指定*/
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    /*色や形状*/
    background: #b32619;
    /*背景色*/
    width: 100%;
    height: 100%;
    /*アニメーション*/
    transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: right top;
  }
  .btnMore a:hover {
    opacity: 1;
    color: #ffffff;
  }
  .btnMore a:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}

/* --------------------------------------------------
	footer
-------------------------------------------------- */
.footer .footContact .footContactPanel {
  position: relative;
  padding: 80px 20px;
  border-radius: 10px 10px 0 0;
  background: url(https://reast-k.com/system_panel/uploads/images/footer_contact_bg.png) no-repeat;
  background-size: cover;
}
.footer .footContact .balloon {
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
}
.footer .footContact .secTtlBox {
  max-width: 1200px;
  margin: 0 auto 40px;
}
.footer .footContact .secTtlBox .secTtl {
  display: inline-block;
  width: 440px;
  margin: 0 10px 0 0;
  vertical-align: bottom;
}
.footer .footContact .secTtlBox h2 {
  display: inline-block;
  padding: 0 0 5px;
  color: #ee9498;
}
.footer .footContact .itemList .itemBox {
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  background: #ffffff;
}
.footer .footContact .itemList .itemBox .dl .dt {
  margin: 0 0 10px;
  font-size: 20px;
}
.footer .footContact .itemList .itemBox .dl .tel a {
  display: inline-block;
  margin: 0 0 5px;
  font-size: 40px;
  color: #d10b14;
  line-height: 1.1;
}
.footer .footContact .itemList .itemBox .dl .mail {
  padding: 10px 0 0;
}
.footer .footContact .itemList .itemBox .dl .mail a {
  display: block;
  width: 200px;
  margin: 0 auto;
  padding: 8px 10px;
  color: #ffffff;
  text-align: center;
  border-radius: 20px;
  background: #d10b14;
}
.footer .footContact .itemList .itemBox .dl .mail a p {
  display: inline-block;
  padding: 0 0 0 20px;
  background: url(https://reast-k.com/system_panel/uploads/images/footer_contact_mail.png) left center no-repeat;
  background-size: 15px auto;
}
@media (min-width: 1025px) {
  .footer .footContact .itemList {
    display: flex;
    justify-content: space-between;
  }
  .footer .footContact .itemList .itemBox {
    width: 48%;
  }
}
.footer .footContainer {
  margin: -100px 0 0;
  padding: 150px 20px 20px;
  color: #ffffff;
  background: #d10b14;
}
.footer .footContainer .footBox {
  display: flex;
  align-items: center;
  margin: 0 0 40px;
}
.footer .footContainer .footBox .logo {
  width: 140px;
  margin: 0 50px 0 0;
}
.footer .footContainer .footBox .sns .ul {
  display: flex;
}
.footer .footContainer .footBox .sns .ul .li {
  width: 60px;
}
.footer .footContainer .footBox .sns .ul .li + .li {
  margin: 0 0 0 30px;
}
.footer .footContainer .footBox .sns .ul .li a {
  display: block;
}
.footer .footContainer .footBox .banner {
  max-width: 600px;
  margin: 0 0 0 50px;
}
.footer .footContainer .copy {
  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);
}