@charset "utf-8";

/*-----------------------------------------------------------
var
----------------------------------------------------------- */
:root {
  --font-family: YakuHanMP, "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "游明朝体", 'ヒラギノ明朝 Pro W3','Hiragino Mincho Pro','HGS明朝E','ＭＳ Ｐ明朝', serif;
  --font-family-go: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  --font-family-en: "EB Garamond", serif;
  --font-markup: 0.7;/*clampの縮小率*/
  --color-key01: #5386b9; /* ブルー（水色）濃いめ */
  --color-key01-rgb: 83,134,185; /* ブルー（水色）濃いめRGB */
  --color-key02: #dfeaf0; /* ブルー（水色）薄め */
  --color-key02-rgb: 223,234,240; /* ブルー薄め（水色）RGB */
  --color-key03: #003670; /* ブルー（紺こん色）濃いめ */
  --color-key03-rgb: 0,54,112; /* ブルー（紺こん色）濃いめRGB */ 
  --color-logo: #0b318f; /* ロゴブルー */
  --color-logo-rgb: 11,49,143; /* ロゴブルーRGB */  
  --color-white: #ffffff; /*白 */
  --color-white-rgb: 255,255,255; /* 白RGB */
  --color-def01: #111111; /* スミ */ 
  --line-height-narrow: 1.4;/*narrow*/
  --line-height: 1.6;
  --line-height-wide01: 2.0;/*wide*/
  --line-height-wide02: 2.4;/*wide*/
  --line-height-wide03: 3.0;/*very heigh*/
  --bp: 767px;/*break point*/
  --bp-sp: 375px;
  --bp-sp-narrow: 320px;
  --bp-sp-wide: 414px;
  /*--vw-pc: 10.80;*/
  --vw-pc: 10.00;
  --vw-tb: 7.68;/*iPad縦*/
  --vw-sp: 3.75;
  /*--cont-width-pc-original: 1020px;1000*/
  --cont-width-pc: 1220px;/*1200*/
  /*-cont-width-pc: 1020px;1000*/
  --cont-width-pc-wide01: 1020px;/*1000*/
  --cont-width-pc-narrow01: 920px;/*900*/
  --cont-width-pc-narrow02: 650px;/*630*/  
  --cont-width-nv-pc-original: 1000;/*数値のみ numerical value*/
  --cont-width-nv-pc: 1200;/*数値のみ numerical value*/
  --cont-width-nv-pc-wide01: 1080;/*数値のみ numerical value*/
  --cont-width-nv-pc-narrow01: 900;/*数値のみ numerical value*/
  --cont-width-nv-pc-narrow02: 630;/*数値のみ numerical value*/
  --cont-width-sp: 375px;
  --cont-width-nv-sp: 375;/*数値のみ numerical value*/
  --transition-duration01: .3s;
  --transition-duration02: .6s;
  --opacity01: 0.7;
}



/*-----------------------------------------------------------
base
----------------------------------------------------------- */

/* for Common & Smartphone*/
html,body{
	position:relative;
}
/*html {
  scroll-behavior: smooth;
	}

@media screen and  (max-width:767px){
  :target {
    scroll-margin-top: 75px;
  }
}
@media screen and (min-width:768px){
  :target {
    scroll-margin-top: 140px;
  }
}*/

body{
  background: var(--color-key02);
	-webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color:rgba(0,0,0,0);
  font-family: var(--font-family);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
	color:var(--color-def01);
	/*line-height:var(--line-height);*/
  line-height: 1.0;
}

h1,h2,h3,h4,h5,h6{
  font-weight: 400;
}

@media screen and (max-width:320px) {
	html{
		/*font-size: 50%;*//*8px基準*/
	}
}
/* for tablet*/
/*@media only screen and (min-device-width: 768px) and (max-device-width: 834px) and (orientation:portrait){
縦向きのみの記述 --- iPad Pro12.9はPC表示
  body{
    min-width: 1280px;
  }
}*/
/*@media only screen and (min-device-width: 835px) and (max-device-width: 1024px) and (orientation:portrait){
縦向きのみの記述 --- iPad Pro12.9はPC表示
  body{
    min-width: 1180px;
  }
}*/
/* for tablet*/
/*@media only screen and (min-device-width: 1024px) and (max-device-width: 1112px) and (orientation:landscape) {
横向きのみの記述 --- iPad Pro12.9はPC表示
  body{
    min-width: 1280px;
  }
}*/

.sp{display:block;}
.pc{display:none;}

.spIL{display:inline;}
.pcIL{display:none;}

.conSP{
	margin-left: 5.33vw !important;/*20px*/
	margin-right: 5.33vw !important;
}

/*リンク 
*/
a{
  color:var(--color-def01);
  text-decoration: none;
}

/* for PC*/
@media print, screen and (min-width:768px) {
  a:link{
	color:var(--color-def01);
	}
  a:visited{
    color:var(--color-def01);
  }
  a:active,
  a:hover{
    color:var(--color-def01);
    }
}
.disabled{
	cursor:default;
}
.txtUL{
	text-decoration: underline;
}

img {
	border:0;
	vertical-align:top;
	max-width: 100%;
	height: auto;
}
img[src$=".svg"],
img[src$=".webp"]{
    width: 100%;
}
.img100{
	width:100%;
}

.relative{
	position:relative;
	}
.static{
	position:static !important;
	}
.hide{
	display:none;
	}

/*font*/
.normal{
	font-family: var(--font-family);
	font-weight: 400;
	}
.fEn{
	font-family: var(--font-family-en);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
	}

.br{
  display: inline-block;
}


/*
header
*/
.header{
	position: fixed;
	left: 0;
	top: 0;
  display: flex;
  justify-content: space-between;
	width: 100%;
	height: 60px;
  background: var(--color-key02);
	z-index: 100000;
	}
.header .pjName{
	width: 100%;
	max-width: 280px;
  height: 100%;
  margin: 0 0 0 15px;
	line-height: 1.0;
	}
.header .pjName a{
	display: flex;
  align-items: center;
  height: 100%;
	}
  .hNav{
    display: none;
  }


.btnGNav{
  position: fixed;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
}
.btnGNav > span{
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: calc(100% - 30px);
  height: 1px;
  background: var(--color-def01);
  transform-origin: left center;
  transition: var(--transition-duration01);
}
.btnGNav > span:nth-of-type(1){
  transform: rotate(0) translate(-50%,-5px);
}
.btnGNav > span:nth-of-type(2){
  transform: rotate(0) translate(-50%,5px);
}

/*白*/
.hWh .header{
  background: transparent;
	}
.hWh .header .pjName{}
.hWh .header .pjName a{}
.hWh .header .pjName a::before{
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 40/3;/*400 / 30*/
  background: url("../images/h_logo_wh.svg") no-repeat center center;
  background-size: cover;
}
.hWh .header .pjName a img{
  display: none;
  opacity: 0;
}
.hWh .btnGNav > span{
  background: var(--color-white);
}




/*opem*/
.is-navopen .btnGNav > span:nth-of-type(1){
  transform: rotate(45deg) translate(-50%,-50%);
}
.is-navopen .btnGNav > span:nth-of-type(2){
  transform: rotate(-45deg) translate(-50%,-50%);
}

.is-navopen .header{
  background: var(--color-key02);
	}
.is-navopen .header .pjName a::before{
  content: none;
}
.is-navopen .header .pjName a img{
  display: block;
  opacity: 1;
}
.is-navopen .btnGNav > span{
  background: var(--color-def01);
}




/*
gNav
*/
.gNav{
  position: fixed;
  left: 100vw;
  top: 60px;
  width: 100vw;
  height: 100%;
  min-height: 100vh;
  background: var(--color-key02);
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  transition: var(--transition-duration01);
}
.gNav ul{
  height: calc(100% + 50px);
}
.gNav li{
  position: relative;
  text-align: left;
}
.gNav li + li{
  border-top: 1px solid var(--color-key01);
}
.gNav li a{
  position: relative;
  display: flex;
  align-items: center;
  padding: 1em;
  color: var(--color-key01);
  line-height: 1.0;
}
.gNav li a::after{
  content: "";
  position: absolute;
  right: 1em;
  top: 50%;
  display: block;
  width: 0;
  height: 0;
  border-left: 6px solid var(--color-key01);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: none;
  transform: translate(0,-50%);
}
.gNav li a .fEn{
  margin: 0 0.5em 0 0;
  font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-sp)), 16px);/*16 / 13*/
}
.gNav li a span:not(.fEn){
  font-size: clamp(calc(12px * var(--font-markup)), calc(12vw / var(--vw-sp)), 12px);/*12 / 12*/
  letter-spacing: 0.05em;
}
.gNav li.navOutline{
  border-bottom: 1px solid var(--color-key01);
}
.gNav li.navEntry,
.gNav li.navMember{
  width: 90%;
  margin: 10px auto;
  border-top: none;
  text-align: center;
}
.gNav li.navEntry a,
.gNav li.navMember a{
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: var(--color-def01);
}

.gNav li.navEntry a{
  background-image: url("../images/h_btn_entry.jpg");
}
.gNav li.navMember a{
  background-image: url("../images/h_btn_member.jpg");
  color: var(--color-white);
}

.gNav li.navEntry a::after,
.gNav li.navMember a::after{
  border-left: 6px solid var(--color-def01);
}


.is-navopen .gNav{
  left: 0;
}

/*
.hNav li.navMember,
.gNav li.navMember{
  display: none;
}
*/


/*current*/
.top .navTop::after,
.townscape .navTownscape::after,
.plan .navPlan::after,
.access .navAccess::after,
.location .navLocation::after,
.quality .navQuality::after,
.gallery .navGallery::after,
.cieliagarden .navCieliagarden::after/*,
.outline .navOutline::after*/{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 4px;
  height: 100%;
  background: var(--color-key01);
}



/*gNav,fnav coming soon*/
.-cs a{
  pointer-events: none;
}
.gNav .-cs a{
  opacity: 0.4;
}
.fNav .-cs a{
  color: rgba(255,255,255,0.4) !important;
}


/*
footer
*/
.footer{
	width: 100%;
}
/*
fNav
*/
.fNav{}
.fNav ul{}

.fNav li{
  font-size: clamp(calc(14px * var(--font-markup)), calc(14vw / var(--vw-sp)), 14px);/*14 / 13*/
  text-align: left;
}
.fNav li + li a{
  border-top: 1px solid rgba(var(--color-white-rgb),0.3);
}
.fNav li a{
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.2em 1em;
  background: var(--color-key01);
  color: var(--color-white);
  line-height: 1.0;
}
.fNav li a::after{
  content: "";
  position: absolute;
  right: 1em;
  top: 50%;
  display: block;
  width: 0;
  height: 0;
  border-left: 6px solid var(--color-white);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: none;
  transform: translate(0,-50%);
}

.fInquiry{
	padding: 30px 0;
	text-align: center;
}
.fInquiry dt{
	font-size: clamp(calc(12px * var(--font-markup)), calc(12vw / var(--vw-sp)), 12px);/*12 / 12*/
  line-height: 1.0;
}
.fInquiry dd{
  margin: 10px 0 0 0;
  font-size: clamp(calc(42px * var(--font-markup)), calc(42vw / var(--vw-sp)), 42px);/*42 / 42*/
  line-height: 1.0;
}
.fInquiry dd:last-of-type{
	font-size: clamp(calc(11px * var(--font-markup)), calc(11vw / var(--vw-sp)), 11px);/*11 / 11*/
  line-height: 1.0;
}
.fInquiry dd a{
  display: flex;
  align-items: center;
  justify-content: center;
	text-decoration: none;
}
.fInquiry dd img{
  width: auto;
  height: 30px;
  margin: 0 5px 0 0;
}

.fDeveloper{
	padding: 30px 0;
	background: var(--color-white);
}
.fDeveloper ul{}
.fDeveloper ul li{
  display: flex;
  align-items: center;
  justify-content: center;
}
.fDeveloper ul li + li{
  margin-top: 20px;
}
.fDeveloper ul li p{
  margin: 0 15px 0 0;
  font-size: clamp(calc(11px * var(--font-markup)), calc(11vw / var(--vw-sp)), 11px);/*11 / 12*/
  line-height: 1.4;
}
.fDeveloper ul li p br{
  display: none;
}

.fSiteTtl{
  padding: 20px 0;
  font-size: clamp(calc(12px * var(--font-markup)), calc(12vw / var(--vw-sp)), 12px);/*12 / 12*/
  text-align: center;
  line-height: var(--line-height);
}
.fSiteTtl i{
  display: none;
  font-style: normal;
}
.fCopyright{
	padding: 20px 0 0 0;
  border-top: 1px solid var(--color-key01);
	font-size: clamp(calc(12px * var(--font-markup)), calc(12vw / var(--vw-sp)), 12px);/*12 / 12*/
	text-align:center;
	line-height:1.4;
	}



/*btnFixed*/
.btnFixed{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 100000;
}
.btnFixed ul{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.btnFixed li{
  position: relative;
  width: calc(100% / 2);
  font-size: clamp(calc(14px * var(--font-markup)), calc(14vw / var(--vw-sp)), 14px);/*-- / 14*/
  line-height: 1.0;
}
/*.btnFixed li + .li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,0.4);
  z-index: 10;
}*/
.btnFixed li a{
	position: relative;
	display: flex;
  align-items: center;
  justify-content: center;
	width: 100%;
	height: 50px;
	text-decoration: none;
}
.btnFixed li.btnEntry{}
.btnFixed li.btnEntry a{
	background: url("../images/h_btn_entry.jpg") no-repeat center center;
  background-size: 100% auto;
}
.btnFixed li.btnTel{}
.btnFixed li.btnTel a{
  position: relative;
	/*background: var(--color-def01);*/
  background: #333;
	color: var(--color-white);
}
.btnFixed li.btnTel a::before{
  content: "";
	display: block;
  width: 20px;
  height: 20px;
  margin: 0 5px 0 0;
  background: url("../images/ico_tel.png") no-repeat center center;
  background-size: cover;
}





/*
contents
*/
main{
  display: block;
}

.contents{
	width: 100%;
  margin: 60px 0 0 0;
  /*padding: 40px 0 0 0;*/
	}

.sec01.-mt{
  margin-top: 60px;
}
.sec01.-mb{
  margin-bottom: 60px;
}
.sec01.-pt{
  padding-top: 60px;
}
.sec01.-pb{
  padding-bottom: 60px;
}

.sec02.-mt{
  margin-top: 40px;
}
.sec02.-mb{
  margin-bottom: 40px;
}
.sec02.-pt{
  padding-top: 40px;
}
.sec02.-pb{
  padding-bottom: 40px;
}

.sec03.-mt{
  margin-top: 30px;
}
.sec03.-mb{
  margin-bottom: 30px;
}
.sec03.-pt{
  padding-top: 30px;
}
.sec03.-pb{
  padding-bottom: 30px;
}

.pageTtl{
  margin-bottom: 30px;
  padding-top: 40px;
  color: var(--color-key01);
  font-size: clamp(calc(26px * var(--font-markup)), calc(26vw / var(--vw-sp)), 26px);/*26 / 31*/
  text-align: center;
  line-height: 1.0;
}

.copy01{
  font-size: clamp(calc(18px * var(--font-markup)), calc(18vw / var(--vw-sp)), 18px);/*18 / 20*/
  text-align: center;
  line-height:var(--line-height);
}

.lead01{
  font-size: clamp(calc(12px * var(--font-markup)), calc(12vw / var(--vw-sp)), 12px);/*12 / 13*/
  line-height: var(--line-height-wide01);
}
.lead02{
  font-size: clamp(calc(13px * var(--font-markup)), calc(13vw / var(--vw-sp)), 13px);/*13 / 14*/
  line-height: var(--line-height-wide01);
}
.lead03{
  font-size: clamp(calc(14px * var(--font-markup)), calc(14vw / var(--vw-sp)), 14px);/*14 / 15*/
  line-height: var(--line-height-wide01);
}
.lead04{
  font-size: clamp(calc(15px * var(--font-markup)), calc(15vw / var(--vw-sp)), 15px);/*15 / 16*/
  line-height: var(--line-height-wide01);
}

.tColWh{
  color: var(--color-white);
}

.bgColKey01{
  background-color: var(--color-key01);
}
.bgColKey02{
  background-color: var(--color-key02);
}

/* for PC*/
@media print, screen and (min-width:768px) {

	.sp{display:none;}
	.pc{display:block;}

	.spIL{display:none;}
	.pcIL{display:inline;}

	.conSP{
		margin-left:0 !important;
		margin-right:0 !important;
	}
	.conPC{
		max-width: var(--cont-width-pc);/*1200px*/
		width: auto !important;
		width: var(--cont-width-pc);
		/**/
		margin-left:auto !important;
		margin-right:auto !important;
		padding-left:10px;
		padding-right:10px;
	}
	.conPC.-w01{
		max-width: var(--cont-width-pc-wide01);/*1080px*/
		width: auto !important;
		width: var(--cont-width-pc-wide01);
		/**/
		margin-left:auto !important;
		margin-right:auto !important;
		padding-left:10px;
		padding-right:10px;
	}
	.conPC.-n01{
		max-width:var(--cont-width-pc-narrow01);/*900px*/
    width: auto !important;
    width: var(--cont-width-pc-narrow01);
    margin-left:auto !important;
    margin-right:auto !important;
    padding-left:10px;
    padding-right:10px;
	}
	.conPC.-n02{
		max-width:var(--cont-width-pc-narrow02);/*630px*/
    width: auto !important;
    width: var(--cont-width-pc-narrow02);
    margin-left:auto !important;
    margin-right:auto !important;
    padding-left:10px;
    padding-right:10px;
	}
  a,
	a:link,
	a:visited{}
	a:active,
	a:not(.disabled):hover{
		text-decoration: none;
		}
  a,
	.hover{
		transition: var(--transition-duration01);
		}

	.hover:hover{
		opacity: var(--opacity01);
		}

	.disabled{
		text-decoration: none;
	}
	/*
		header
	*/
	.header{
		position: fixed;
		left: 0;
		top: 0;
    flex-wrap: wrap;
		width: 100%;
		height: 100px;
		padding: 0 0 10px 0;
		border: none;
  }
	.header .pjName{
    width: calc((400 / var(--cont-width-nv-pc)) * 100%);
		max-width: 400px;
    height: auto;
		margin: 20px 0 0 25px;
  }
	.header .pjName a{
    display: block;
    height: auto;
  }
  
  .btnGNav{
    display: none;
  }
  
  /*
  hNav
  */
  .hNav{
    display: block;
    width: calc((384 / var(--cont-width-nv-pc)) * 100%);
    max-width: 384px;
    margin-left: auto;
    margin-right: 25px;
  }
  .hNav ul{
    display: flex;
    align-items: flex-end;
    /*justify-content: space-between;*/
    justify-content: flex-end;
    gap: 3px;
  }
  .hNav li{
    width: calc((126 / 384) * 100%);
    max-width: 126px;
    height: 48px;
    font-size: clamp(calc(13px * var(--font-markup)), calc(13vw / var(--vw-pc)), 13px);
    line-height: 1.0;
  }
  .hNav li a{
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    padding: 0 0 10px 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .hNav li.navEntry a{
    background-image: url("../images/h_btn_entry.jpg");
  }
  
  .hNav li.navMember{
    font-size: clamp(calc(12px * var(--font-markup)), calc(12vw / var(--vw-pc)), 12px);
    line-height: 1.1;
  }
  .hNav li.navMember a{
    background-image: url("../images/h_btn_member.jpg");
    color: var(--color-white);
  }
  
  .hNav li.navOutline{
    font-size: clamp(calc(12px * var(--font-markup)), calc(12vw / var(--vw-pc)), 12px);
    line-height: 0.8;
  }
  .hNav li.navOutline a{
    background-: none;
  }
  .hNav li.navOutline a::after{
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin: 0 0 0 8px;
    border-left: 6px solid var(--color-def01);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-right: none;
  }
  
  
  /*
  gNav
  */
  .gNav{
    position: static;
    width: 100%;
    height: auto;
    min-height: initial;
    margin-top: 20px;
    background: transparent;
    overflow-y: hidden;
  }
  .gNav ul{
    display: flex;
    justify-content: center;
    width: calc(100% - 50px) !important;
    max-width: initial !important;
    padding-left: 0!important;
    padding-right: 0!important;
    height: auto;
  }
  .gNav li{
    /*flex: 1 0 auto;*/
    width: calc(100% / 8);
    text-align: center;
    border-right: 1px solid var(--color-key01);
  }
  .gNav li + li{
    border-top: none;
  }
  .gNav li:nth-of-type(1){
    border-left: 1px solid var(--color-key01);
  }
  .gNav li a{
    display: block;
    height: 20px;
    padding: 0;
    overflow-y: hidden;
  }
  .gNav li a::after{
    content: none;
  }
  
  .gNav li a span{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: var(--transition-duration01);
  }
  .gNav li a .fEn{
    margin-right: 0;
    /*font-size: clamp(calc(13px * var(--font-markup)), calc(13vw / var(--vw-pc)), 13px);16 / 13*/
    font-size: clamp(calc(14px * var(--font-markup)), calc(14vw / var(--vw-pc)), 14px);/*16 / 14*/
  }
  .gNav li a span:not(.fEn){
    font-size: clamp(calc(12px * var(--font-markup)), calc(12vw / var(--vw-pc)), 12px);/*12 / 12*/
  }
  .gNav li.navOutline{
    display: none;
  }
  .gNav li.navEntry,
  .gNav li.navMember{
    display: none;
  }

  
  .gNav li a:hover span{
    transform: translate(0,-20px);
  }
  

  /*白*/
  /*
  hNav
  */
  .hWh .hNav li.navOutline a{
    color: var(--color-white);
  }
  .hWh .hNav li.navOutline a::after{
    border-left-color: var(--color-white);
  }
  
  /*
  gNav
  */
  .hWh .gNav{}
  .hWh .gNav li{
    border-right-color:  var(--color-white);
  }
  .hWh .gNav li:nth-of-type(1){
    border-left-color: var(--color-white);
  }
  .hWh .gNav li a{
    color: var(--color-white);
  }
  .contents{
    margin-top: 0;
    padding-top: 0;
  }
  
  /*current*/
  .top .navTop::after,
  .townscape .navTownscape::after,
  .plan .navPlan::after,
  .access .navAccess::after,
  .location .navLocation::after,
  .quality .navQuality::after,
  .gallery .navGallery::after,
  .cieliagarden .navCieliagarden::after,
  .outline .navOutline::after{
    top: auto;
    bottom: -10px;
    width: 100%;
    height: 4px;
  }
  
  /*current*/
  .hWh.top .navTop::after,
  .hWh.townscape .navTownscape::after,
  .hWh.plan .navPlan::after,
  .hWh.access .navAccess::after,
  .hWh.location .navLocation::after,
  .hWh.quality .navQuality::after,
  .hWh.gallery .navGallery::after,
  .hWh.cieliagarden .navCieliagarden::after,
  .hWh.outline .navOutline::after{
    background: var(--color-white);
  }
  

  
	/*
		footer
	*/
	.footer{}
  
  /*
  fNav
  */
  .fNav{
    padding: 15px 0;
    background: var(--color-key01);
  }
  .fNav ul{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fNav li{
    flex: 1 0 auto;
    font-size: clamp(calc(12px * var(--font-markup)), calc(12vw / var(--vw-pc)), 12px);/*14 / 12*/
    text-align: center;
  }
  .fNav li + li{
    border-left: 1px solid var(--color-white);
  }
  .fNav li + li a{
    border-top: none;
  }
  .fNav li a{
    align-items: center;
    justify-content: center;
    padding: 0 1em;
    background: transparent;
  }
  .fNav li a::after{
    content: none;
  }
  .fNav li a:hover{
    opacity: var(--opacity01);
  }

  .fInquiry{}
  .fInquiry dl{
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
  }
  .fInquiry dt{
    margin: 5px 0 0 0;
    font-size: clamp(calc(12px * var(--font-markup)), calc(12vw / var(--vw-pc)), 12px);/*12 / 12*/
  }
  .fInquiry dd{
    margin: 0 0 0 25px;
    font-size: clamp(calc(42px * var(--font-markup)), calc(42vw / var(--vw-pc)), 42px);/*42 / 42*/
  }
  .fInquiry dd:last-of-type{
    position: absolute;
    left: 0;
    bottom: 3px;
    margin: 0;
    font-size: clamp(calc(11px * var(--font-markup)), calc(11vw / var(--vw-pc)), 11px);/*11 / 11*/
  }
  .fInquiry dd a{
    pointer-events: none;
  }
  .fInquiry dd img{}

  .fDeveloper{}
  .fDeveloper ul{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .fDeveloper ul li{
    margin: 0 20px;
  }
  .fDeveloper ul li + li{
    margin-top: 0;
  }
  .fDeveloper ul li p{
    font-size: clamp(calc(12px * var(--font-markup)), calc(12vw / var(--vw-pc)), 12px);/*11 / 12*/
  }
  .fDeveloper ul li p br{
    display: block;
  }

  .fSiteTtl{
    padding: 20px 0;
    font-size: clamp(calc(12px * var(--font-markup)), calc(12vw / var(--vw-pc)), 12px);/*12 / 12*/
  }
  .fSiteTtl i{
    display: inline-block;
  }
  .fSiteTtl br{
    display: none;
  }
  .fCopyright{
    font-size: clamp(calc(12px * var(--font-markup)), calc(12vw / var(--vw-pc)), 12px);/*12 / 12*/
    }


  /*btnFixed*/
  .btnFixed{
    display: none;
  }
	/*
	contents
	*/

	.contents{
    margin: 100px 0 0 0;
		/*padding: 55px 0 0 0;*/
		}
	
	.sec01.-mt{
    margin-top: 100px;
  }
  .sec01.-mb{
    margin-top: 100px;
  }
  .sec01.-pt{
    padding-top: 100px;
  }
  .sec01.-pb{
    padding-bottom: 100px;
  }
  
  .sec02.-mt{
    margin-top: 50px;
  }
  .sec02.-mb{
    margin-bottom: 50px;
  }
  .sec02.-pt{
    padding-top: 50px;
  }
  .sec02.-pb{
    padding-bottom: 50px;
  }
  
  .sec03.-mt{
    margin-top: 40px;
  }
  .sec03.-mb{
    margin-bottom: 40px;
  }
  .sec03.-pt{
    padding-top: 40px;
  }
  .sec03.-pb{
    padding-bottom: 40px;
  }
  
  .pageTtl{
    margin-bottom: 40px;
    padding-top: 55px;
    font-size: clamp(calc(31px * var(--font-markup)), calc(31vw / var(--vw-pc)), 31px);/*26 / 31*/
  }

  .copy01{
    padding-left: 0.05em;
    font-size: clamp(calc(20px * var(--font-markup)), calc(20vw / var(--vw-pc)), 20px);/*18 / 20*/
    letter-spacing: 0.05em;
  }
  .lead01{
    font-size: clamp(calc(13px * var(--font-markup)), calc(13vw / var(--vw-pc)), 13px);/*12 / 13*/
  }
  .lead01{
    font-size: clamp(calc(14px * var(--font-markup)), calc(14vw / var(--vw-pc)), 14px);/*13 / 14*/
  }
  .lead03{
    font-size: clamp(calc(15px * var(--font-markup)), calc(15vw / var(--vw-pc)), 15px);/*14 / 15*/
  }
  .lead04{
    font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-pc)), 16px);/*15 / 16*/
  }

  
	/* scroll ////////////////////////////// */
	/*スクロールしたら縮小*/
	.hScroll .header{}
  .hScroll .header::before{
    opacity: 1.0;
    visibility: visible;
		}
  .hScroll .header *{
    z-index: 11;
		transition: .3s;
  }
}

@keyframes scrollPC{
	0%{
		height: 0;
	}
	50%{
		height: 100px;
		margin-top: 0;
	}
	100%{
		margin-top: 100px;
		height: 100px;
	}
 } 




/* for tablet*/
@media only screen and (min-device-width: 768px) and (max-device-width: 834px) and (orientation:portrait) {
/*縦向きのみの記述 --- iPad Pro12.9はPC表示*/

}



/*光るボタン*/
@keyframes shiny {
    0% { left: -20%; }
    10% { left: 150%; }
    100% { left: 150%; }
}

.shiny {
    position: relative;
    display: block;
    width: 100%;
    /*height: 40px;
    line-height: 40px;*/
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    /*background-color: #384878;*/
    overflow: hidden;
}

.shiny::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -20%;
    width: 40px;
    height: 100%;
    transform: scale(2) rotate(20deg);
    background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, .5) 100%, rgba(255, 255, 255, 0) 0%);
    
    /* アニメーション */
    animation-name: shiny;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}



/*キャプション*/
.caption{
	padding: 30px 0;
  font-size: 10px;
	line-height: 1.8;
	letter-spacing: normal;
  z-index: 2;
}

.cap{
	font-size: 10px;
	line-height: 1.4;
	letter-spacing: normal;
  z-index: 2;
}
.cap01{
	font-size: 11px;
	line-height: 1.4;
	letter-spacing: normal;
  z-index: 2;
}
.cap02{
	font-size: 11px;
	line-height: 1.4;
	letter-spacing: normal;
  z-index: 2;
}
.cap.-type01,
.cap01.-type01,
.cap02.type01{
  position: absolute !important;
  right: 5px;
  bottom: 2px;
}
.cap.-type02,
.cap01.type02,
.cap02.type02{
  position: absolute !important;
  right: 10px;
  bottom: 2px;
}
.cap.shadow{
  text-shadow:2px 2px 2px rgba(255,255,255,0.8),-2px -2px 2px rgba(255,255,255,0.8),2px -2px 2px rgba(255,255,255,0.8),-2px 2px 2px rgba(255,255,255,0.8);
}
.cap.tCol99.shadow{
  text-shadow:2px 2px 2px rgba(0,0,0,0.8),-2px -2px 2px rgba(0,0,0,0.8),2px -2px 2px rgba(0,0,0,0.8),-2px 2px 2px rgba(0,0,0,0.8);
}
/* for PC*/
@media print, screen and (min-width:768px) {
	.caption{
		padding: 60px 0;
	}
	.cap{}
  .cap01{
    font-size: 11px;
  }
  
  .cap02{
    font-size: 12px;
  }
  
  .cap.-type01,
  .cap02.type01{
    right: 2px
  }
  .cap.-type02,
  .cap02.type02{
    right: 4px;
  }
}


/* for SP iPhone5*/
@media screen and (max-width:320px) {
	
}

/* for SP landscape*/
@media screen and (max-width:767px) and (orientation: landscape) {
}


/* for iPad*/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
/*縦横両方の記述*/

}


/*cielia contents
--------------------------------- */
.bnrCCWrap{
  padding: 0 20px;
  background: var(--color-white);
}
.bnrCCWrap > div{
  max-width: 1460px;
  margin: 0 auto;
}
.bnrCCWrap ul{
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 15px;
}
.bnrCCWrap ul li{}
.bnrCCWrap ul li + li{
  margin: 30px 0 0 0;
}
.bnrCCWrap ul li + li a{
  display: block;
}

/* for PC*/
@media print, screen and (min-width:768px) {
  
  .bnrCCWrap{}
  .bnrCCWrap ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .bnrCCWrap ul li{
    margin: 30px 0 0 0;
    width: calc(50% - 15px);
  }
  .bnrCCWrap ul li + li{}
  .bnrCCWrap ul li + li a{}

}

/*bnrReccomendWrap
--------------------------------- */
.bnrReccomendWrap {
  background: #f6f6f6;
}
.bnrReccomendWrap > div {
  width: 90%;
  max-width: 740px;
  margin: 0 auto;
}
.bnrReccomendWrap > div + div {
  margin-top: 10px;
}

/* for PC*/
@media print, screen and (min-width:768px) {
  .bnrReccomendWrap {}
 
}


/*set paerallax
--------------------------------- */
.section{
  clip-path: inset(0);
  width: 100vw;
  height: 100vh;
}
.section::before{
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100vw;
  height: 100%;
  background-size: cover;
  background-position: center;
  /*background-attachment: fixed;*/
}
.sectionTxt{
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--color-white);
}
.sectionTxt img{
  width: 95%;
  height: auto;
}
.sectionTxt h3{
  margin: 20px 0 0 0;
  padding-left: 0.5em;
  font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-sp)), 16px);/*16 / 16*/
  line-height: 1.0;
  letter-spacing: 0.5em;
}

@media print, screen and (min-width:768px) {
  .section{
    width: 100%;
  }
  .sectionTxt img{
    width: calc((510 / var(--cont-width-nv-pc-original)) * 100%);
  }
  .sectionTxt h3{
    font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-pc)), 16px);/*16 / 16*/
  }
}



