@charset "utf8";
/*=============================
  - header
	- fotter
	- navigation
==============================*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
.mincho {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* 数字用フォント */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
.lora {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
}


/*----------------------------------------------------
	header
----------------------------------------------------*/
#header {
	width: 100%;
	background-color: #fff;
	position: relative;
	z-index: 11;
}
#header .fixed_wrap {
}
#header .fixed_wrap > div { align-items: stretch; }

#header .logo_wrap {
	width: max-content;
    padding: 5px 0;
    position: relative;
}
#header .logo_wrap a {
    display: flex;
    align-items: center;
}
#header .logo_wrap .logo_text {
	font-size: 16px;
    font-weight: 700;
    margin-left: 1em;
}

@media screen and (max-width: 767px) {
  #header {
    height: auto;
	/*position: absolute;*/
  }
  #header .fixed_wrap {
  }
  #header .fixed_wrap > div:first-child {
    padding: 0 2.5vw;
  }
  #header .logo_wrap {
	width: 50%;
	height: auto;
	padding: 5px 0;
  }
  #header .logo_wrap a {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  #header .logo_wrap a img {
    width: 30vw;
  }
  #header .logo_wrap .logo_text {
	font-size: 2.5vw;
	margin-left: 0;
	margin-bottom: 3px;
  }
}



.pc_sub_menu {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
}

.pc_sub_menu .tel_wrap {
    margin-right: 1.5em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.pc_sub_menu .tel_wrap span {
    font-size: 15px;
    font-weight: 500;
    padding-top: 5px;
}
.pc_sub_menu .tel_wrap div {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.0em;
    display: flex;
    align-items: center;
}
.pc_sub_menu .tel_wrap div::before {
	content: "";
	display: inline-block;
	width: 24px;
	height: 31px;
	background: url("../images/i_phone.png") no-repeat;
	background-size: contain;
	margin-right: 0.3em;
}
.pc_sub_menu .content-btn01 {
	font-size: 18px;
    width: 280px;
    height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media screen and (max-width: 767px) {
	.pc_sub_menu {
		display: none;
	}
	
}


/*----------------------------------------------------
	sp line/電話アイコンcss
----------------------------------------------------*/
#sp-btn-wrap {
	width: fit-content;
    position: absolute;
    top: 8px;
    right: 1em;
}
#sp-btn-wrap .header_btn_text {
	font-size: 10px;
	white-space: nowrap;
	margin-top: 5px;
}
.sp-line,
.sp-tel {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-right: 10px;
}
.sp-line img {
    width: 28px;
    height: 28px;
}
.sp-tel i {
    color: #e53935;
    font-size: 25px;
}


/*----------------------------------------------------
	sp ハンバーガーメニューcss
----------------------------------------------------*/
.menu-ani-button-wrap {
    width: 40px;
    height: 44px;
	display: flex;
    flex-direction: column-reverse;
	align-items: center;
}
.menu-ani-button {
  cursor: pointer;
  position: absolute;
  width: 32px; /*---線の長さ---*/
  height: 44px; /*---線の太さ長さによって調整---*/
}
.bar,
.bar:before,
.bar:after {
  height: 3px; /*---線の太さ---*/
  border-radius: 3px;
  width: 100%;
  background-color: #e53935;
  transition: all 0.25s;
  position: absolute;
}
.bar {
  left: 0;
  top: 10px;
}
.bar:before {
  content: "";
  left: 0;
  top: -10px;
}
.bar:after {
  content: "";
  left: 0;
  top: 10px;
}

.menu-animated .bar {
  background-color: transparent;
  transition: all 0.25s;
}
.menu-animated .bar:before {
  transition: all 0.25s;
  content: "";
  transform: rotate(45deg);
  top: 0px;
}
.menu-animated .bar:after {
  transition: all 0.25s;
  content: "";
  transform: rotate(-45deg);
  top: 0px;
}

/*----------------------------------------
ナビゲーション(ヘッダー)
----------------------------------------*/
#header .fixed-wrap { height: 100%; }
#header .fixed-wrap,
#header .menu,
#header .sub-menu {
  display: flex;
}
@media screen and (max-width: 767px) {
  #header .fixed-wrap {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 1000;
    background: #fff;
    padding-top: 2vw;
  }
  
}


#header .menu {
    width: 100%;
    background: #eef0f2;
}
#header .menu > nav { width: 100%; }
#header .menu nav ul {
  display: flex;
}
#header .menu nav ul li {
	padding-right: 3.5em;
}
#header .menu nav ul li a {
	font-size: 16px;
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-style: normal;
    padding: 20px 0;
    letter-spacing: 0.03em;
    transition: 0.3s;
    display: block;
}
#header .menu nav ul li a:hover { opacity: 0.7; }

@media screen and (max-width: 767px) {
  #header .menu {
    display: none;
	background: #fff;
	padding: 0 0;
	border-top: 2px solid #e53935;
	position: absolute;
  }
  #header .menu nav ul {
	padding: 0 0;
    display: block;
  }
  #header .menu nav ul li {
    width: 100%;
	padding: 0;
	border: none;
	border-bottom: 1px solid #ddd;
  }
  #header .menu nav ul li a {
    font-size: 14px;
    padding: 15px 0;
    text-align: center;
  }
	
}



/*----------------------------------------------------
	footer
----------------------------------------------------*/
#footer {
}
#footer .foot_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#footer .foot_logo { cursor: pointer; }

#foot_navi { padding: 25px 0; }
#foot_navi ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
#foot_navi ul + ul { margin-top: 10px; }
#foot_navi ul li {}
#foot_navi ul li a {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6em;
    letter-spacing: 0.05em;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-style: normal;
	margin-right: 2em;
    display: block;
}
#foot_navi ul:nth-child(2) li a {
    font-size: 12px;
	margin-right: 1.5em;
}
#foot_navi ul li:last-child a,
#foot_navi ul:nth-child(2) li:last-child a {
	margin-right: 0;
}

#footer .copy {
  padding: 10px 0;
}
@media screen and (max-width: 767px) {
  #footer .foot_content {
	padding: 5vw 2.5vw;
	flex-direction: column;
  }

  #footer .foot_logo {
    width: 70%;
    margin: 0 auto 20px;
  }

  #foot_navi {
    padding: 0 0;
  }
  #foot_navi ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  #foot_navi ul + ul { margin-top: 0; }
  #foot_navi ul li a {
    font-size: 14px;
    margin-right: 1.5em;
    margin-bottom: 10px;
  }
  #foot_navi ul:nth-child(2) li a {
    font-size: 11px;
	margin-right: 1.0em;
  }

}


#scroll-top a {
  border-radius: 50%;
  background: rgba(0,0,0, 0.7);
  text-align: center;
  float: right;
  width: 70px;
  height: 70px;
  padding: 5px;
  padding-top: 16px;
  position: fixed;
  bottom: 70px;
  right: 30px;
  display: block;
  z-index: 9999;
}
#scroll-top a .fa-arrow-up::before {
  font-size: 36px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #scroll-top a {
	width: 50px;
	height: 50px;
	padding-top: 10px;
	bottom: 40px;
	right: 20px;
  }
  #scroll-top a .fa-arrow-up::before {
    font-size: 30px;
  }
}


/* #fixed_footer */
@media screen and (max-width: 767px) {
	#footer { margin-bottom: 50px; }
	.page-consultant #footer,
	.page-contact #footer { margin-bottom: 0; }
	
	#fixed_footer {
		width: 100%;
		height: 50px;
		z-index: 2;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
	}
	#fixed_footer .inner {
		height: 100%;
		display: flex;
	}
	#fixed_footer a {
		width: 50%;
		font-size: 3.5vw;
		border-top: 1px solid #fff;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}

