@charset "utf-8";

/*var*/
:root {
  --font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", sans-serif;
  --font-family-min: "游明朝", "Yu Mincho", YuMincho, "游明朝体", 'ヒラギノ明朝 Pro W3','Hiragino Mincho Pro','HGS明朝E','ＭＳ Ｐ明朝', serif;
  --font-family-en: "Arial", serif;
  --font-weight-normal: 400;
  --font-weight-middle: 500;
  --font-weight-bold: 700;
  --font-markup: 0.7;/*clampの縮小率*/
  --color-key01: #0d3654; /* ネイビー */
  --color-key01-rgb: 13,54,84; /* ネイビーRGB */
  --color-key02: #ba5b06; /* オレンジ */
  --color-key02-rgb: 186,91,6; /* オレンジRGB */
  --color-white: #ffffff; /*白 */
  --color-white-rgb: 255,255,255; /* 白RGB */
  --color-def: #222222; /* 文字色など */
  --color-def-rgb: 34,34,34; /* 文字色などRGB */
  --color-def01: #3a342f; /* 茶--濃いめ */
  --color-def01-rgb: 58,52,47; /* 茶--濃いめRGB */
  --color-def02: #b6afa2; /* 茶--ちょい薄め */
  --color-def02-rgb: 182,175,162; /* 茶--ちょい薄めRGB */
  --color-def03: #f4f3f1; /* 茶--めっちゃ薄い */
  --color-def03-rgb: 244,243,241; /* 茶--めっちゃ薄いRGB */
  --color-def04: #514b45; /* 茶--適度に濃い */
  --color-def04-rgb: 81,75,69; /* 茶--適度に濃いRGB */
  --line-height-narrow: 1.4;/*narrow*/
  --line-height: 1.8;
  --line-height-wide01: 2.4;/*wide*/
  --line-height-wide02: 3.0;/*very heigh*/
  --bp: 768px;/*break point*/
  --bp-sp: 375px;
  --bp-sp-narrow: 320px;
  --bp-sp-wide: 414px;
  --vw-pc: 11.80;
  --vw-sp: 3.75;
  --cont-width-sp: 375px;/*375*/
  --cont-width01-sp: calc(100vw - 10.66vw);/*conSP*/
  --cont-width-pc: 1220px;/*1200*/
  --cont-width01-pc: 1020px;/*1000*/
  /*--cont-width-pc-narrow: 875px;855*/
  /*--cont-width-pc-width: calc(100% - 160px);855*/
  --cont-width-nv-pc: 1200;/*数値のみ numerical value*/
  --cont-width01-nv-pc: 1000;/*数値のみ numerical value*/
  /*--cont-width-nv-pc-narrow: 855;数値のみ numerical value*/
  --cont-width-sp: 375px;
  --cont-width-nv-sp: 375;/*数値のみ numerical value*/
  --transition-duration01: .3s;
  --transition-duration02: .6s;
  --opacity01: 0.7;
}

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

@media screen and  (max-width:767px){
  /* スマートフォン 767px以下 */
  :target {
    scroll-margin-top: 75px;
  }
}
@media screen and (min-width: 768px){
  :target {
    scroll-margin-top: 100px;
  }
}

body{
	position:relative;
	-webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color:rgba(0,0,0,0);
	background: var(--color-white);
	font-family: var(--font-family);
  font-optical-sizing: auto;
	font-weight: var(--font-weight-middle);
  font-style: normal;
	color: var(--color-def);
	line-height: var(--line-height);
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}


/* for PC*/
@media print, screen and (min-width: 768px){
  body{
    letter-spacing: 0.05em;
  }
}
@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;
  }
}

h1,h2,h3,h4,h5,h6{
  font-weight: var(--font-weight-bold);
}
.br{
  display: inline-block;
}

.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:link{
	color:var(--color-def);
	text-decoration: none;
	}
a:visited{
	color:var(--color-def);
	}

a:active/*,
a:hover*/{
	color: var(--color-def);
	}
.disabled{
	cursor: default;
}
.txtUL{
	text-decoration: underline !important;
}
.linkTxt{
  color: #0000ee !important;
}

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

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

/*font*/
.normal{
	font-family: var(--font-family);
	font-weight: var(--font-weight-normal);
	}
.middle{
	font-family: var(--font-family);
	font-weight: var(--font-weight-middle);
	}
.bold{
	font-family: var(--font-family);
	font-weight: var(--font-weight-bold);
	}

.fMin{
	font-family: var(--font-family-min);
	font-weight: var(--font-weight-normal);
	}
.fMin.bold{
	font-weight:bold;
	font-weight: var(--font-weight-bold);
	}
.fEn{
	font-family: var(--font-family-en);
  font-weight: var(--font-weight-normal);
	}
.fEn.bold{
  font-weight: var(--font-weight-bold);
	}

/*txt*/
.tCol00{
	color: var(--color-def);
}
.tCol99{
	color: var(--color-white);
}
.tColKey01{
	color: var(--color-key01);
}
.tColKey02{
	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{
    /*width: auto !important;*/
    width: 100%;
		margin-left:auto !important;
		margin-right:auto !important;
		padding-left: 10px;
		padding-right: 10px;
	}
	.conPC{
		max-width: var(--cont-width-pc);
	}
	.conPC.-wType01{
		max-width: var(--cont-width01-pc);
	}
	/*.conPC.-typeN01{
		max-width: var(--cont-width-pc-narrow);
	}*/
	/*.conPC.-typeW01{
		max-width: var(--cont-width-pc-width);
	}*/
  

	a:link,
	a:visited{}
	a:active,
	a:not(.disabled):hover{
		text-decoration:none;
		}
	a,
	.hover{
		-webkit-transition: var(--transition-duration01);
		transition: var(--transition-duration01);
		}
	a:not(.noRO):hover,
	.hover:hover{
		opacity: var(--opacity01);
		zoom:1; 
		}
	.disabled{
		text-decoration:none;
	}

}

/*
header
*/
.header{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 60px;
  background: var(--color-white);
  z-index: 999;
}
.header a{
	display: block;
  line-height: 1.0;
}
.header > div{
  display: flex;
  align-items: center;
  height: 100%;
}
.header .logo{
  order: 2;
  width: calc((120px / var(--cont-width01-sp)) * 100%);
  max-width: 120px;
  margin: 0 0 0 15px;
}
.header .logo img{
  width: 100%;
}

.header .hNav{
  order: 3;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 0 0 auto;
}
.header .hNav > li{
  position: relative;
  width: 24px;
  height: 24px;
  margin: 0 0 0 10px;
}

.header .hNav > li a,
.header .hNav > li.hasNav label{
  display: block;
  width: 100%;
  height: 100%;
}
.header .hNav > li a > span,
.header .hNav > li.hasNav label > span,
.header .hNav > li.hSpSearch > label > span{
  display: none;
}
.header .hNav > li.hasNav input{
  display: none;
}

.header .hNav > li.hasNav div{
  position: absolute;
  left: -20px;
  top: calc(100% + 10px);
  display: grid; 
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
  width: auto;
  z-index: 100010;
}
.header .hNav > li.hasNav div ul{
  width: 8em;
  font-size: clamp(calc(13px * var(--font-markup)), calc(13vw / var(--vw-sp)), 13px);/*13 / 16*/
  overflow: hidden;
}
.header .hNav > li.hasNav div ul li{
  text-align: left;
  line-height: 1.0;
}
.header .hNav > li.hasNav div ul li + li{
  border-top: 1px solid var(--color-def02);
}
.header .hNav > li.hasNav div ul li a{
  display: block;
  padding: 0.7em 0.5em;
}

/*サブナビが開いてる時*/
.header .hNav > li.hasNav input:checked + div{
  grid-template-rows: 1fr;
}
.header .hNav > li.hasNav input:checked + div ul{
  background: var(--color-white);
  box-shadow: 1px 1px 2px rgba(var(--color-def-rgb),0.2);
  border: 1px solid var(--color-def02);
}


/*検索*/
.hSpSearch{}
#hNavSearch{
  display: none;
}
.hSearchWrap{
  position: fixed;
  right: -100vw;
  top: 60px;
  width: 100vw;
  height: 100%;
  padding: 40px 20px 100px 20px;
  text-align: left;
  transition: var(--transition-duration01);
  z-index: 99999;
  background: rgba(var(--color-white-rgb),0.98);
  overflow-y: auto;
}

/*.hSpSearch .headerSearch_sp__parameter{
  display: none;
}*/
.hSearchWrap .hSearchModule{}
.hSearchWrap .hSearchModule dt,
.hSearchWrap .hSearchModule dd{
  font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-sp)), 16px);/*16*/
  text-align: left;
}
.hSearchWrap .hSearchModule dt{
  margin: 20px 0 0 0;
  font-weight: var(--font-weight-bold);
}
.hSearchWrap .hSearchModule dd{
  margin: 5px 0 0 0;
}

.hSearchWrap .hSearchModule input[type="text"]{
  height: 40px;
  padding: 0 0 0 10px;
  border: 1px solid var(--color-def02);
  border-radius: 0;
  font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-sp)), 16px);/*16*/
}
.hSearchWrap .hSearchModule .hInputPrice{
  display: flex;
  align-items: center;
  line-height: 1.0;
}
.hSearchWrap .hSearchModule .hInputPrice input[type="text"]{
  width: 32%;
}
.hSearchWrap .hSearchModule .hInputPrice i{
  display: inline-block;
  margin: 0 5px;
  font-style: normal;
}
.hSearchWrap .hSearchModule .hInputPrice span{
  align-self: flex-end;
  margin: 0 0 0 5px;
}

.hSearchWrap button[type="submit"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 30px;
  margin: 20px auto 0 auto;
  background: var(--color-def01);
  border: none;
  color: var(--color-white);
  font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-sp)), 16px);/*16*/
  text-align: center;
  line-height: 1.0;
}


.hSearchWrap .hSearchModule.hSelect{
  margin: 30px 0 0 0;
  padding: 30px 0 0 0;
  border-top: 1px solid var(--color-def02);
}
.hSearchWrap .hSearchModule.hSelect dd ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hSearchWrap .hSearchModule.hSelect dd ul li {
  border: 1px solid var(--color-def02);
}
.hSearchWrap .hSearchModule.hSelect dd ul li a {
  display: block;
  padding: 0.7em;
  font-size: clamp(calc(13px * var(--font-markup)), calc(13vw / var(--vw-sp)), 13px);/*13*/
  text-align: center;
  line-height: 1.0;
}

/*OPEN時*/
#hNavSearch:checked + .hSearchWrap {
  right: 0;
}

.header .hTel{
  display: none;
}

/* for PC*/
@media print, screen and (min-width: 768px){
	.header{
    /*height: auto;*/
    height: 150px;
  }
  .header a{}
  .header > div{
    height: 100px;
  }
  .header .logo{
    order: 1;
    width: calc((250 / var(--cont-width-nv-pc)) * 100%);
    max-width: 250px;
    margin: 0;
  }


  .header .hNav{
    order: 2;
    display: flex;
    justify-content: center;
  }
  .header .hNav > li{
    width: auto;
    height: auto;
    margin: 0 10px;
    text-align: center;
  }
  .header .hNav > li a,
  .header .hNav > li label{}
  .header .hNav > li img{
    width: 30px;
    height: 30px;
  }
  .header .hNav > li a > span,
  .header .hNav > li.hasNav label > span{
    display: block;
    margin: 5px 0 0 0;
    font-size: clamp(calc(11px * var(--font-markup)), calc(11vw / var(--vw-pc)), 11px);/*11*/
  }
  .header .hNav > li.hasNav div{
    left: 0;
    top: 100%;
  }
  .header .hNav > li.hasNav div ul{
    width: 10em;
    font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-pc)), 16px);/*13 / 16*/
  }
  .header .hNav > li.hasNav div ul li{}
  .header .hNav > li.hasNav div ul li a{
    padding: 1.0em;
  }
  .header .hNav > li.hasNav div ul li a:hover{
    background: var(--color-def03);
    opacity: 1.0;
  }

  /*開いてる時*/
  .header .hNav > li.hasNav input:checked + div{
    grid-template-rows: 1fr;
  }
  .header .hNav > li.hasNav input:checked + div ul{
    background: var(--color-white);
    box-shadow: 1px 1px 2px rgba(var(--color-def-rgb),0.2);
    border: 1px solid rgba(var(--color-def03-rgb),0.1);
  }


  
  .header .hNav > li.hSpSearch,
  .header .hNav > li.hSpGuide{
    display: none;
  }

  .header .hTel{
    order: 3;
    display: block;
    margin: 0 0 0 3.0%;
    text-align: left;
  }
  .header .hTel dt{
    font-size: clamp(calc(13px * var(--font-markup)), calc(13vw / var(--vw-pc)), 13px);/*13*/
    letter-spacing: 0.05em;
  }
  .header .hTel dd{
    margin: 5px 0 0 0;
  }
  .header .hTel dd a{
    pointer-events: none;
  }
  
}


/*
btnGNav
*/
.btnGNav {
  order: 1;
	position: relative;
  display: block;
  width: 20px;
	height: 17px;
  line-height: 0;
  cursor: pointer;
  z-index: 100000;
	}	
#btnGNavCheck {
  display: none;
	}
.btnGNav span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
  font-style: normal;
	}
.btnGNav span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--color-def);
}
.btnGNav span:nth-of-type(1) {
  top: 0;
}
.btnGNav span:nth-of-type(2) {
  top: 50%;
}
.btnGNav span:nth-of-type(3) {
  top: 100%;
}


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


/*
gNav
*/
.gNavPC {
    display: none !important;
  }

.gNav {
  position: fixed;
  left: -100vw;
  top: 60px;
  width: 100vw;
  height: 100%;
  /*padding: 40px 20px 20px 20px;*/
  padding: 40px 20px 120px 20px;
  text-align: left;
  transition: var(--transition-duration01);
  z-index: 99999;
  background: rgba(var(--color-white-rgb),0.98);
  overflow-y: auto;
}

/*OPEN時*/
/*#btnGNavCheck:checked ~ .toggle .btnGNav span{
  background-color: var(--color-white);
}*/
#btnGNavCheck:checked ~ .toggle .btnGNav span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
}
#btnGNavCheck:checked ~ .toggle .btnGNav span:nth-of-type(2) {
	top:8px;
  transform: translateY(0) rotate(45deg);
}
#btnGNavCheck:checked ~ .toggle .btnGNav span:nth-of-type(3) {
  opacity: 0;
}
#btnGNavCheck:checked ~ .gNav {
  left: 0;
}



/*ドロワーのみの設定*/
/*
.header .gNav .hNav {
  order: unset;
  justify-content: space-around;
  margin: 0 0 40px 0;
}
.header .gNav .hNav li {
  width: auto;
  height: auto;
  margin-left: 0;
  text-align: center;
}
.header .gNav .hNav li:nth-of-type(1){
  order: 2;
}
.header .gNav .hNav li:nth-of-type(2){
  order: unset;
}
.header .gNav .hNav li:nth-of-type(3){
  order: 1;
}
.header .gNav .hNav li:nth-of-type(4){
  order: 3;
}
.header .gNav .hNav li:nth-of-type(5){
  order: 4;
}
.header .gNav .hNav .hSpGuide{
  display: none;
}
.header .gNav .hNav li img {
  width: 30px;
  height: 30px;
}
.header .gNav .hNav li a span{
  display: block;
  margin-top: 10px;
  font-size: clamp(calc(14px * var(--font-markup)), calc(14vw / var(--vw-sp)), 14px);
}
*/




/* for PC*/
@media print, screen and (min-width: 768px){
	.gNav {
    display: none !important;
  }
  .gNavPC {
    display: block !important;
    height: 50px;
    border-top: 1px solid var(--color-def02);
    border-bottom: 1px solid var(--color-def02);
  }
  .gNavPC > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
  }
  .gNavPC > div > ul {
    display: flex;
    justify-content: space-between;
    height: 100%;
  }
  .gNavPC > div > ul > li {
    font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-pc)), 16px);/*16*/
    height: 100%;
  }
  .gNavPC > div > ul > li > a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1em;
    font-weight: var(--font-weight-bold);
    color: var(--color-def);
    text-align: center;
    height: 100%;
  }
  .gNavPC > div > ul > li > a::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 0 0 10px;
    border: 2px solid var(--color-def);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    transition: var(--transition-duration01);
  }
  
  
  .gNavPC > div > ul > li > ul {
    position: relative;
    width: 100%;
    height: auto;
    padding: 20px 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-duration01);
  }
  .gNavPC > div > ul > li > ul::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 200vw;
    height: 100%;
    background: var(--color-key01);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-duration01);
    transform: translate(-50%,0);
    z-index: 1;
  }
  .gNavPC > div > ul > li > ul > li {
    position: relative;
    font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-pc)), 16px);/*16*/
    text-align: left;
    z-index: 2;
  }
  .gNavPC > div > ul > li > ul > li a {
    padding: 1em 1em;
    pointer-events: none;
  }
  
  
  .gNavPC > div > ul > li:hover {}
  
  .gNavPC > div > ul > li:hover a {
    background: var(--color-key01);
    opacity: 1.0;
    color: var(--color-white);
  }
  .gNavPC > div > ul > li:hover > a::after {
    border-color: var(--color-white);
    transform: rotate(-135deg);
  }
  .gNavPC > div > ul > li:hover > ul,
  .gNavPC > div > ul > li:hover > ul::before{
    opacity: 1;
    visibility: visible;
  }
  .gNavPC > div > ul > li:hover > ul > li a {
    pointer-events: auto;
    color: var(--color-white);;
  }
  
  
  
  .hPcSearch{
    align-self: center;
    width: calc((235 / var(--cont-width-nv-pc)) * 100%);
    max-width: 235px;
    height: 35px;
  }
  .hPcSearch form{
    position: relative;
    width: 100%;
    height: 100%;
  }
  .hPcSearch form input{
    width: 100%;
    height: 100%;
    padding: 0 0 0 10px;
    border: 1px solid var(--color-def02);
  }
  .hPcSearch form button{
    position: absolute;
    right: 10px;
    top: 50%;
    width: 18px;
    height: 18px;
    border: none;
    background: transparent;
    transform: translate(0,-50%);
  }
}

/*
hInfo
*/
.hInfo{
  margin: 60px 0 0 0;
  padding: 0.8em 0;
  background: var(--color-def01);
  color: var(--color-white);
  text-align: center;
}
.hInfo p{
  font-size: clamp(calc(17px * var(--font-markup)), calc(17vw / var(--vw-pc)), 17px);/*15 / 17*/
}

/* for PC*/
@media print, screen and (min-width: 768px){
  .hInfo{
    margin-top: 150px;
    padding: 15px 0;
    background: var(--color-def01);
    color: var(--color-white);
    text-align: center;
  }
  .hInfo p{
    font-size: clamp(calc(15px * var(--font-markup)), calc(15vw / var(--vw-sp)), 15px);/*15 / 17*/
    line-height: 1.0;
  }
}

/*
footer
*/
.footer{
  padding: 0 0 100px 0;
  background:  var(--color-def01);
  color: var(--color-white);
}
.footer > div{
  position: relative;
}
.footer a{
	display: block;
}

.footer .fTel{
  position: relative;
  margin: 0 0 50px 0;
  padding: 40px 0 0 0;
}
.footer .fTel::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  display: block;
  width: 100vw;
  /*height: 50%;*/
  height: calc(20px + 50%);
  background: var(--color-def03);
  /*border-top: 40px solid var(--color-def03);*/
  transform: translate(-50%,0);
}
.footer .fTel dl{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 160px;
  background: var(--color-white);
  color: var(--color-def04);
  text-align: center;  
}
.footer .fTel dt p:nth-of-type(1){
  font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-sp)), 16px);/*16 / 24*/
  line-height: 1.0;
}
.footer .fTel dt p:nth-of-type(2){
  margin: 10px 0 0 0;
  font-size: clamp(calc(12px * var(--font-markup)), calc(12vw / var(--vw-sp)), 12px);/*16 / 15*/
  line-height: 1.0;
  letter-spacing: normal;
}
.footer .fTel a{
  max-width: 335px;
  margin: 15px auto 0 auto;
}

/*フッターとドロワー内のナビはデザイン共通*/
.footer .fNav,
.drawerNav{
  /*color: var(--color-white);*/
}
.footer .fNav > li,
.drawerNav > li{
  border-bottom: 1px solid var(--color-def04);
}
.drawerNav:nth-of-type(1) > li:nth-of-type(1){
  border-top: 1px solid var(--color-def04);
}
.footer .fNav > li label,
.drawerNav > li label,
.drawerNav > li > a{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10px;
  font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-sp)), 16px);/*16 / 16*/
  font-weight: var(--font-weight-bold);
  line-height: 1.0;
  text-align: left;
}
.footer .fNav > li input,
.drawerNav > li input{
  display: none;
}
.footer .fNav > li input ~ label::after,
.drawerNav > li input ~ label::after,
.drawerNav > li > a::after{
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 0 0 10px;
  border: 2px solid var(--color-white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  transition: .3s;
}
.drawerNav > li input ~ label::after,
.drawerNav > li > a::after{
  border-color: var(--color-def);
}
.drawerNav > li > a::after{
  transform: rotate(-45deg);
}
.footer .fNav > li input:checked ~ label::after,
.drawerNav > li input:checked ~ label::after{
  transform: rotate(-135deg);
}


.footer .fNav > li > div,
.drawerNav > li > div{
  /*opacity: 0;
  visibility: hidden;
  max-height: 0;
  display: flex;
  flex-wrap: wrap;*/
  display: grid; 
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.footer .fNav > li input:checked ~ div,
.drawerNav > li input:checked ~ div{
  /*opacity: 1;
  visibility: visible;
  max-height: 500px;*/
  grid-template-rows: 1fr;
}
.footer .fNav > li > div ul,
.drawerNav > li > div ul{
  overflow: hidden;
}
.footer .fNav > li > div ul li,
.drawerNav > li > div ul li{
  font-size: clamp(calc(15px * var(--font-markup)), calc(15vw / var(--vw-sp)), 15px);/*15 / 15*/
  line-height: 1.0;
  text-align: left;
}
.footer .fNav:nth-of-type(1) > li > div ul li,
.drawerNav:nth-of-type(1) > li > div ul li{
  min-width: 50%;
}
.footer .fNav > li > div ul li a,
.drawerNav > li > div ul li a{
  padding: 5px 0 20px 10px;
  color: var(--color-white);
}
.drawerNav > li > div ul li a{
  color: var(--color-def);
}


.footer .fBottom{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 50px 0 0 0;
}
.footer .fLogo{
  width: calc((100px / var(--cont-width01-sp)) * 100%);
  max-width: 100px;
}
.footer .fSns{
  width: 70px;
  height: 25px;
}
.footer .fSns a{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 8px;
  border: 1px solid var(--color-white);
}
.footer .fSns a::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border: 1px solid var(--color-white);
  border-top: none;
  border-left: none;
  transform: rotate(-45deg);
}
.footer .fSns a img{
  width: 42px;
}
.footer .copyright{
  width: 100%;
  margin: 50px 0 0 0;
  font-family: var(--font-family-en);
	font-size: clamp(calc(12px * var(--font-markup)), calc(12vw / var(--vw-sp)), 12px);/*12 / 12*/
	text-align: center;
	line-height: 1.0;
  letter-spacing: 0.02em;
}


/* for PC*/
@media print, screen and (min-width: 768px){
	.footer{
    padding: 0 0 160px 0;
  }
  .footer > div{
    display: flex;
    flex-wrap: wrap;
  }
  .footer a{}

  .footer .fTel{
    width: 100%;
    margin-bottom: 100px;
    padding-top: 80px;
  }
  .footer .fTel::before{
    /*border-top-width: 80px;*/
    height: calc(40px + 50%);
  }
  .footer .fTel a{
    pointer-events: none;
  }
  .footer .fTel dl{
    max-width: 800px;
    height: 200px;
    margin: 0 auto;
  }

  .footer .fTel dt,
  .footer .fTel dd{
    width: 460px;
    margin: 0 auto;
  }
  .footer .fTel dt{
    text-align: left;
  }
  .footer .fTel dt p:nth-of-type(1){
    font-size: clamp(calc(24px * var(--font-markup)), calc(24vw / var(--vw-pc)), 24px);/*16 / 24*/
  }
  .footer .fTel dt p:nth-of-type(2){
    margin-top: 20px;
    font-size: clamp(calc(15px * var(--font-markup)), calc(15vw / var(--vw-pc)), 15px);/*16 / 15*/
  }
  .footer .fTel a{
    width: 100%;
    max-width: initial;
  }

  .footer .fNav{
    margin: 0 5% 0 0;
  }
  .footer .fNav:nth-of-type(1){
    /*width: 53%;*/
    width: 660px;
  }
  .footer .fNav:nth-of-type(3){
    margin-right: 0;
  }
  .footer .fNav > li{
    border-bottom: none;
  }
  .footer .fNav > li label{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-pc)), 16px);/*16 / 16*/
  }
  .footer .fNav > li input {
    display: none;
  }
  .footer .fNav > li input ~ label::after {
    content: none;
  }
  .footer .fNav > li input:checked ~ label::after {}


  .footer .fNav > li > div{
    display: block;
    grid-template-rows: unset;
    transition: unset;
    padding: 30px 0;
  }
  .footer .fNav:nth-of-type(1) > li > div{
    padding-top: 15px;
  }
  
  .footer .fNav > li input:checked ~ div {
    grid-template-rows: unset;
  }
  .footer .fNav > li > div ul{}
  .footer .fNav > li > div ul li{
    margin: 0 0 20px 0;
    font-size: clamp(calc(15px * var(--font-markup)), calc(15vw / var(--vw-sp)), 15px);/*15 / 15*/
    letter-spacing: 0.02em;
  }
  
  .footer .fNav:nth-of-type(1) > li > div ul{
    display: flex;
    flex-wrap: wrap;
  }
  .footer .fNav:nth-of-type(1) > li > div ul li{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: auto;
    margin: 15px 0 0 0;
  }
  .footer .fNav:nth-of-type(1) > li > div ul li + li{
    margin-left: 0.6em;
  }
  .footer .fNav:nth-of-type(1) > li > div ul li + li::before{
    content: "/";
    display: inline-block;
    margin: 0 0.6em 0 0;
  }
  .footer .fNav:nth-of-type(1) > li > div ul li:nth-of-type(8){
    margin-left: 0;
  }
  .footer .fNav:nth-of-type(1) > li > div ul li:nth-of-type(8)::before{
    content: none;
  }
  .footer .fNav > li > div ul li a{
    padding: 0;
  }

  .footer .fBottom{
    align-items: flex-start;
    margin-top: 100px;
  }
  .footer .fLogo{
    width: calc((168 / var(--cont-width-nv-pc)) * 100%);
    max-width: 168px;
  }
  .footer .fSns{}
  .footer .fSns a{}
  .footer .fSns a::after {}
  .footer .fSns a img{}
  .footer .copyright{
    width: 70%;
    /*margin: -1em 0 0 auto;*/
    margin: 0 0 0 auto;
    font-size: clamp(calc(12px * var(--font-markup)), calc(12vw / var(--vw-pc)), 12px);/*12 / 12*/
    text-align: right;
  }
}



/*btnPageTop*/
.btnPageTop{
	position:fixed;
	right:10px;
	bottom:60px;
  width: 50px;
	height: 50px;
	z-index:500;
	}
.btnPageTop a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(var(--color-def01-rgb),0.6);
  border-radius: 50%;
}
.btnPageTop a:hover{
  opacity: 1;
}
.btnPageTop a::after{
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  margin: 5px 0 0 0;
  border: 1px solid var(--color-white);
  border-top: none;
  border-left: none;
  transform: rotate(-135deg);
}

/* for PC*/
@media print, screen and (min-width: 768px){
  .btnPageTop{
    bottom:160px;
    }
  .btnPageTop a:hover{
    background: rgba(var(--color-def01-rgb),1.0);
  }
}

/*
sideNav
*/
.sideNav{
  display: none;
}

/* for PC*/
@media print, screen and (min-width: 768px){
  .sideNav{
    display: block;
    border-top: 1px solid var(--color-def02);
    text-align: left;
  }
  .sideNav a{
    display: block;
  }
  .sideNav .module{
    padding: 40px 0 20px 0;
    border-bottom: 1px solid var(--color-def02);
  }
  .sideNav .module h2{
    margin: 0 0 10px 0;
    font-size: clamp(calc(18px * var(--font-markup)), calc(18vw / var(--vw-pc)), 18px);/*16 / 18*/
    line-height: 1.4;
  }
  .sideNav .module ul{
    padding: 0 0 0 15px;
  }
  .sideNav .module ul li{
    border-bottom: 1px dotted var(--color-def02);
    font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-pc)), 16px);/*14 / 16*/
    line-height: 1.4;
  }
  .sideNav .module:not(.sideOther) ul li:last-of-type{
    border-bottom: none;
  }
  .sideNav .module ul li a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 10px;
  }
  .sideNav .module ul li a::after{
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border: 1px solid var(--color-def);
    border-bottom: none;
    border-left: none;
    transform: rotate(45deg);
  }
  
  .sideNav .module.sideOther,
  .sideNav .module.sideBanner{
    padding: 0;
    border-bottom: none;
  }
  .sideNav .module.sideOther ul{
    padding: 0;
  }
  .sideNav .module.sideOther ul li{
    border-bottom-style: solid;
    font-size: clamp(calc(18px * var(--font-markup)), calc(18vw / var(--vw-pc)), 18px);/*16 / 18*/
    font-weight: var(--font-weight-bold);
    line-height: 1.0;
  }
  .sideNav .module.sideOther ul li a{
    padding-top: 36px;
    padding-bottom: 36px;
  }
  .sideNav .module.sideOther ul li a::after{
    width: 8px;
    height: 8px;
    border-top-width: 2px;
    border-right-width: 2px;
  }
  
  .sideNav .module.sideBanner ul{
    padding: 50px 0 0 0;
  }
  .sideNav .module.sideBanner ul li{
    margin: 0 0 30px 0;
    border-bottom: none;
  }
  .sideNav .module.sideBanner ul li a{
    display: block;
    padding: 0;
  }
  .sideNav .module.sideBanner ul li a::after{
    content: none;
  }
  
  
  .sideNav .module.sideBanner ul li.sideBnrStyle01{}
  .sideNav .module.sideBanner ul li.sideBnrStyle01 a{
    background: rgba(var(--color-def02-rgb), 0.1);
    /*border: 2px solid rgba(var(--color-def02-rgb), 0.2);*/
    border: 4px solid rgba(var(--color-def02-rgb), 0.2);
  }
  
  
  .sideNav .module.sideKW form input {
    width: 100%;
    height: 40px;
    padding: 0 0 0 10px;
    border: 1px solid var(--color-def02);
    border-radius: 0;
  }
  .sideNav .module.sideKW form .sideKWTxt input {
    width: 100%;
  }
  .sideNav .module.sideKW form .sideKWPrice{
    display: flex;
    align-items: center;
    margin: 20px 0 0 0;
    font-size: clamp(calc(18px * var(--font-markup)), calc(18vw / var(--vw-pc)), 18px);/*16 / 18*/
    line-height: 1.0;
  }
  .sideNav .module.sideKW form .sideKWPrice input {
    width: 32%;
  }
  .sideNav .module.sideKW form .sideKWPrice i {
    display: inline-block;
    margin: 0 5px;
    font-style: normal;
  }
  .sideNav .module.sideKW form .sideKWPrice span {
    align-self: flex-end;
    margin: 0 0 0 5px;
  }
  
  .sideNav .module.sideKW form button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 30px;
    margin: 20px auto 0 auto;
    background: var(--color-def01);
    border: none;
    color: var(--color-white);
    font-size: clamp(calc(13px * var(--font-markup)), calc(13vw / var(--vw-pc)), 13px);/*13 / 13*/
    text-align: center;
    line-height: 1.0;
  }
  .sideNav .module.sideKW form button::before {
    content: none;
  }
  
}


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



.sec01{
  padding-top: 50px;
  padding-bottom: 50px;
}
.sec01.-secType01{
  margin-bottom: 50px;
  padding: 0;
}
.sec02{
  padding-top: 30px;
  padding-bottom: 30px;
}
.sec02.-secType01{
  margin-bottom: 30px;
  padding: 0;
}



/*ttl*/
.pageTtl{
  margin-bottom: 30px;
  font-size: clamp(calc(26px * var(--font-markup)), calc(26vw / var(--vw-sp)), 26px);/*26 / 36*/
  line-height: 1.4;
  text-align: left;
}

.ttl01{}
.ttl02{/*色は個別に設定*/
  margin-bottom: 20px;
  font-size: clamp(calc(22px * var(--font-markup)), calc(22vw / var(--vw-sp)), 22px);/*22 / 32*/
  line-height: 1.4;
}
.ttl03{/*色は個別に設定*/
  margin-bottom: 20px;
  font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-sp)), 16px);/*16 / 18*/
  line-height: 1.4;
}

/*lead*/
.lead01{
  margin-bottom: 20px;
  font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-sp)), 16px);/*16 / 16*/
  line-height: var(--line-height-narrow);
}
.lead02{
  font-size: clamp(calc(18px * var(--font-markup)), calc(18vw / var(--vw-sp)), 18px);/*18 / 20*/
  line-height: var(--line-height);
}

/*bgcolor*/
.bg01{
  background: var(--color-def03);
}


/*btn*/
.btn{}
.btn a{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.btnGen{}
.btnGen a{
  background: var(--color-def01);
  color: var(--color-white);
  font-weight: var(--font-weight-bold);
}
.btnGen a::after{
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  display: block;
  width: 8px;
  height: 8px;
  border: 1px solid var(--color-white);
  border-bottom: none;
  border-left: none;
  transform: rotate(45deg) translate(0,-50%);
}

.btnGen.-btnType01{
  width: calc(100% - 20px * 2);
  height: 50px;
  margin-left: auto;
  margin-right: auto;
}
.btnGen.-btnType02,
.btnGen.-btnType03{
  width: 100%;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
}
.btnGen.-btnType01 a,
.btnGen.-btnType02 a,
.btnGen.-btnType03 a{
  font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-sp)), 16px);/*16 / 16*/
}


.btnGen.-btnTypeT01{
  width: auto;
  height: auto;
  font-size: clamp(calc(14px * var(--font-markup)), calc(14vw / var(--vw-sp)), 14px);/*14 / 14*/
}
.btnGen.-btnTypeT01 a{
  justify-content: flex-start;
  width: auto;
  height: auto;
  background: transparent;
  color: var(--color-def);
  font-weight: var(--font-weight-middle);
  text-decoration: underline;
}
.btnGen.-btnTypeT01 a::after{
  position: static;
  width: 6px;
  height: 6px;
  margin-left: 10px;
  border-color: var(--color-def);
  transform: rotate(45deg) translate(0,0);
}


/* for PC*/
@media print, screen and (min-width: 768px){
	.contents{
    margin-top: 90px;
  }

  .sec01{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .sec01.-secType01{
    margin-bottom: 100px;
    padding: 0;
  }
  .sec02{
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .sec02.-secType01{
    margin-bottom: 60px;
    padding: 0;
  }
  
  
  .pageTtl{
    margin-bottom: 40px;
    font-size: clamp(calc(36px * var(--font-markup)), calc(36vw / var(--vw-pc)), 36px);/*26 / 36*/
  } 
  .ttl01{}
  .ttl02{/*色は個別に設定*/
    margin-bottom: 20px;
    font-size: clamp(calc(32px * var(--font-markup)), calc(32vw / var(--vw-pc)), 32px);/*22 / 32*/
  }
  .ttl03{/*色は個別に設定*/
    font-size: clamp(calc(18px * var(--font-markup)), calc(18vw / var(--vw-pc)), 18px);/*16 / 18*/
  }

  /*lead*/
  .lead01{
    margin-bottom: 40px;
    font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-pc)), 16px);/*16 / 16*/
  }
  .lead02{
    font-size: clamp(calc(20px * var(--font-markup)), calc(20vw / var(--vw-pc)), 20px);/*18 / 20*/
    line-height: var(--line-height);
  }
  
  /*btn*/
  .btn{}
  .btn a{}

  .btnGen{}
  .btnGen a{}
  .btnGen a::after{
    right: 20px;
    width: 10px;
    height: 10px;
  }

  .btnGen.-btnType01,
  .btnGen.-btnType02{
    max-width: 500px;
    height: 80px;
  }
  .btnGen.-btnType03{
    min-width: 270px;
    height: 50px;
  }
  .btnGen.-btnType01 a,
  .btnGen.-btnType02 a,
  .btnGen.-btnType03 a{
    font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-pc)), 16px);/*16 / 16*/
  }
  .btnGen.-btnTypeT01{
    font-size: clamp(calc(14px * var(--font-markup)), calc(14vw / var(--vw-pc)), 14px);/*14 / 14*/
  }
  .btnGen.-btnTypeT01 a{}
  .btnGen.-btnTypeT01 a::after{}
}



/*reason [
----------------------------------------------------------- */
.reasonWrap{}
.fs-body-top .reasonWrap.sec01{
  padding-top: 0 !important;
}
.reasonWrap h2{
  /*width: calc((220px / var(--cont-width01-sp)) * 100%);*/
  width: 80%;
  max-width: 220px;
  margin: 0 auto 25px auto;
  text-align: center;
  line-height: 1.0;
}
.reasonWrap ol{
  margin: 0 0 40px 0;
}
.reasonWrap ol li{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 1.33vw;
  border-bottom: 1px dotted var(--color-def02);
}
.reasonWrap ol li .num{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  background: var(--color-key01);
  border-radius: 50%;
  color: var(--color-white);
  font-size: clamp(calc(14px * var(--font-markup)), calc(14vw / var(--vw-sp)), 14px);/*14 / 20*/
  font-weight: var(--font-weight-bold);
  text-align: center;
  line-height: 1.0;
}
.reasonWrap ol li .num img{
  display: block;
  width: 12px;
  margin: 5px auto 0 auto;
  line-height: 1.0;
}
.reasonWrap ol li > div{
  width: calc(100% - (70px + 15px));
}
.reasonWrap ol li h3{
  display: flex;
  align-items: center;
  font-size: clamp(calc(17px * var(--font-markup)), calc(17vw / var(--vw-sp)), 17px);/*17 / 32*/
  text-align: left;
  line-height: 1.0;
}
.reasonWrap ol li h3 strong{
  color: var(--color-key01);
  font-size: calc((24 / 17) * 100%);
}
.reasonWrap ol li h3 + p{
  margin: 8px 0 0 0;
  font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-sp)), 16px);/*16 / 18*/
  font-weight: var(--font-weight-bold);
  text-align: left;
  line-height: var(--line-height-narrow);
  letter-spacing: 0.05em;
}

@media print, screen and (min-width: 768px){
  .reasonWrap{}
  .reasonWrap h2{
    /*width: calc((440 / var(--cont-width01-nv-pc)) * 100%);*/
    max-width: 440px;
    margin-bottom: 50px;
  }
  .reasonWrap ol{
    display: flex;
    justify-content: space-between;
    width: var(--cont-width01-pc);
    margin: 0 auto 30px auto;
  }
  .reasonWrap ol li{
    position: relative;
    display: block;
    padding: 0;
    width: calc((100% - 40px) / 3);
    border-bottom: none;
  }
  .reasonWrap ol li::before{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    display: block;
    padding: 0;
    width: 100%;
    height: calc(100% - 50px);
    border: 1px solid var(--color-def02);
    transform: translate(-50%,0);
  }
  .reasonWrap ol li .num{
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    font-size: clamp(calc(20px * var(--font-markup)), calc(20vw / var(--vw-pc)), 20px);/*14 / 20*/
    z-index: 10;
  }
  .reasonWrap ol li .num img{
    width: 24px;
    margin-top: 10px;
  }
  .reasonWrap ol li > div{
    width: calc((280 / 320) * 100%);
    margin: 35px auto 40px auto;
  }
  .reasonWrap ol li h3{
    justify-content: center;
    font-size: clamp(calc(32px * var(--font-markup)), calc(32vw / var(--vw-pc)), 32px);/*17 / 32*/
    text-align: center;
  }
  .reasonWrap ol li h3 strong{
    font-size: calc((24 / 17) * 100%);
  }
  .reasonWrap ol li h3 + p{
    margin-top: 30px;
    font-size: clamp(calc(18px * var(--font-markup)), calc(18vw / var(--vw-pc)), 18px);/*16 / 18*/
    line-height: var(--line-height);
  }
}


