@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Noto+Serif+JP:wght@400;700&family=Oswald:wght@400;700&display=swap');
* {
  box-sizing: border-box;
  /*word-break: break-all;*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
  font-size: 16px;
}
body {
  /*font-family: 'Noto Sans JP', sans-serif;*/
	font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  /* min-width: 1200px; */
  color: #333;
  line-height: 1.8;
  text-align: justify;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  letter-spacing: 1px;
  background-color: #ffffff;
}
@font-face {
  font-family: 'memo';
  src: url(../font/memo.woff) format('opentype');
}
::selection {
  background: #d6e9ff;
}
::-moz-selection {
  background: #d6e9ff;
}
/*p:not(:last-child), ul:not(:last-child), ol:not(:last-child), table:not(:last-child) {
  margin-bottom: 20px;
}*/
.top-inner {
  width: 100%;
  max-width: 1000px;
  margin: auto;
}
.inner {
  width: 100%;
  max-width: 1140px;
  margin: auto;
}
.inner02 {
  width: 100%;
  max-width: 1400px;
  margin: auto;
}
p {
  font-size: .9rem;
}
.main-img img {
  width: 100%;
}
/* header
------------------------------------------------------------*/
header {
    width: 100%;
    padding: 5px 2%;
    background-color: rgba(255,255,255,0.9);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: sticky;
    top: 0;
    left: 0;
    transition: .3s;
    z-index: 100;
    font-family: 'Noto Serif JP', serif;
}
header .logo {
    display: inline-block;
    margin-top: 10px;
}
header .tel {
  display: inline-block;
}

header .tel ul {
  display: flex;
  flex-direction: row;
}
@media screen and (max-width:1300px) {
  header .tel ul {  
  flex-direction: column;
}
  }
header .tel ul li {
  padding: 0 1.2vw;
}
header .tel ul li a {
    color: #000;
    display: inline-block;
    text-decoration: none;
    position: relative;
    font-size: 1.3rem;
}
@media screen and (max-width:1300px) {
 header .tel ul li a {  
  font-size: 1.1rem;
}
  }
header .tel ul li a:hover {
  color: #E94829;
}
header .logo img {
  transition: .3s;
  max-width: 300px;
}
header.scroll {
    background-color: #FFFFFF;
    padding: 15px 3%;
}
header.scroll .logo img {
  max-width: 200px;
}
.logo_s {
  display: none;
}
header.scroll .logo_p {
  display: none;
}
header.scroll .logo_s {
  display: block;
}
/* nav
------------------------------------------------------------*/
#menuBtn {
  display: none;
}
/* nav ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
} */
/* nav ul li:not(:last-of-type) {
	margin-right: 2.5vw;
} */
nav ul li {
  padding: 0 0.8vw;
}
nav .inner-nav ul {
  display: flex;
  flex-direction: row;
}
nav .inner-nav2 ul {
  display: flex;
  flex-direction: row;
}
nav .inner-nav_r ul li {
  padding: 0 1.5vw;
}
nav ul li a {
  color: #000;
  display: inline-block;
  text-decoration: none;
  position: relative;
  font-size: 1.0rem;
	/*border-bottom: 4px solid #c8ba8d;*/
}
nav ul li a:hover {
    color: #AF9A59;
}

nav ul .target {
    border: 1px solid #c8ba8d;
    margin-left: 1.0vw;
    margin-right: 0.5vw;
    background-color: rgba(200,186,141,0.2);
}

/* ドロップダウン */
.menu {
  position: relative;
  width: 100%;
  /* height: 50px; */
  max-width: 1000px;
  margin: 0 auto;
}
.menu__second-level > li {
  line-height: 45px;
  word-break: break-all;
}
.menu > li a {
  display: block;
  color: #000;
}
.menu > li a:hover {
  color: #E94829;
}
ul.menu__second-level {
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}
ul.menu__third-level {
  visibility: hidden;
  opacity: 0;
}
ul.menu__fourth-level {
  visibility: hidden;
  opacity: 0;
}
.menu > li:hover {
  /* background: #072A24; */
  -webkit-transition: all .5s;
  transition: all .5s;
}
/* 下矢印 */
.init-bottom:after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 0 0 15px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* floatクリア */
.menu:before, .menu:after {
  content: " ";
  display: table;
}
.menu:after {
  clear: both;
}
.menu {
  *zoom: 1;
}
.menu > li.menu__single {
  position: relative;
}
li.menu__single ul.menu__second-level {
  position: absolute;
  top: 40px;
  width: 100%;
  background: rgb(0 0 0 / 80%);
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}
li.menu__single:hover ul.menu__second-level {
  visibility: visible;
  opacity: 1;
  left: 0;
  width: 13em;
}
.menu__single li + li {
  border: none;
}
/*============
nav_hover
=============*/
nav ul li a {
  position: relative;
}
nav ul li a::before {
  content: "";
  width: 0;
  height: 1px;
  background: #fff;
  display: block;
  position: absolute;
  top: calc(70% + 5px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  transition: .3s;
}
nav ul li a:hover::before {
  width: 100%;
}

#pan {
    clear: both;
    margin-bottom: 30px;
    line-height: 20px;    
    margin-right: auto;
    margin-left: auto;
    margin-top: 10px;
}
#pan:after {
	height: 0;
	visibility: hidden ;
	content: ".";
	display: block ;
	clear: both ;
}
#pan li {
	float: left;
}
#pan li a {
    background-image: url(../images/arrow.png);
    background-repeat: no-repeat;
    background-position: right center;
    display: block;
    margin-right: 10px;
    padding-right: 20px;
	color: #000;
}
#pan li.pan_home a:link,#pan li.pan_home a:visited {
	font-size: 10px;
	color: #000;
	text-decoration: underline;
}
#pan li.pan_home a:hover,#pan li.pan_home a:active {
	color: #000;
	text-decoration: underline;
}


/* footer
------------------------------------------------------------*/
footer {
    margin-top: 0px;
    background-color: #c8ba8d;
    padding-top: 2%;
    padding-bottom: 2%;
    border-top: 5px solid #000000;
}
@media screen and (max-width:767px) {
footer {
    margin-top: 0px;    
    padding-top: 3%;
    padding-bottom: 15%;
    text-align: center;
}
	}
.footer-img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.footer-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.footer-nav ul li a {
  display: inline;
  color: #000;
  font-size: 13px;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
  white-space: nowrap;
	font-family: 'Oswald', sans-serif;
}
.footer-bg {
  font-size: .6rem;
  margin-top: 20px;
  background-color: rgb(235 235 235);
}
footer li + li {
  border-left: 1px solid rgb(26, 26, 26);
}
.footer_add {
  font-size: .8rem;
}
.footer_tel {
  font-size: 1.7rem;
  font-weight: 600;
  padding-top: 8px;
}
@media (max-width: 992px) {
  .footer-nav ul li {	
	display: inline-block;
  }
	 .footer-nav ul li a {
    font-size: 12px;
  }
}
.foot_logo {
    font-size: 18px;
    color: #000;
    font-weight: bold;    
}
.foot_tx {
    font-size: 14px;
    color: #000;
    margin-top: 10px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
}
.foot_tx a {
    color: #FF0004;
	font-size: 15px;
}
.foot_copy {
    font-size: 10px;
    text-align: right;
    color: #000;
    margin-top: 20px;
	margin-right: 20px;
}
@media screen and (max-width:767px) {
.foot_copy {    
    text-align: center;
}
	}
@media screen and (max-width:1199px) {
  
  body {
    min-width: inherit;
    line-height: 1.5;
    letter-spacing: 0;
  }
  /* header
	------------------------------------------------------------*/
  header {
    /* background: #11232e; */
    padding: 15px 3%;
  }
  header .logo img {
    max-width: inherit;
    height: 50px;
  }
  /* nav
	------------------------------------------------------------*/
  /* PCでは非表示にしておく */
  .nav_toggle, .nav {
    display: none;
  }
  nav {
    display: block;
    position: fixed;
    top: 0;
    left: -300px;
    bottom: 0;
    width: 300px;
    background: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all .5s;
    z-index: 3;
    opacity: 0;
  }
  .open nav {
    left: 0;
    opacity: 1;
  }
  nav .inner-nav {
    padding: 25px;
  }
  nav .inner-nav ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  nav .inner-nav ul li {
    position: relative;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #333;
  }
  nav .inner-nav ul li a {
    display: block;
    color: #333;
    font-size: 14px;
    padding: 1em 0;
    text-decoration: none;
    transition-duration: 0.2s;
  }
  /* nav .inner-nav ul li a:hover {
  background: #e4e4e4;
} */
  nav .inner-nav_r {
    padding: 25px;
  }
  nav .inner-nav_r ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  nav .inner-nav_r ul li {
    position: relative;
    margin: 0;
    border-bottom: 1px solid #333;
  }
  nav .inner-nav_r ul li a {
    display: block;
    color: #333;
    font-size: 14px;
    padding: 1em;
    text-decoration: none;
    transition-duration: 0.2s;
  }
  nav .inner-nav_r ul li a:hover {
    background: #e4e4e4;
  }
  @media screen and (max-width: 1200px) {
    nav {
      left: -220px;
      width: 220px;
    }
  }
/*============
.toggle_btn
=============*/
  .toggle_btn {
    display: block;
    position: fixed;
    top: 16px;
    right: 30px;
    width: 30px;
    height: 30px;
    transition: all .5s;
    cursor: pointer;
    z-index: 3;
  }
  .toggle_btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #000;
    border-radius: 4px;
    transition: all .5s;
  }
  .toggle_btn span:nth-child(1) {
    top: 4px;
  }
  .toggle_btn span:nth-child(2) {
    top: 14px;
  }
  .toggle_btn span:nth-child(3) {
    bottom: 4px;
  }
  .open .toggle_btn span {
    background-color: #000;
  }
  .open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(10px) rotate(-315deg);
  }
  .open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }
  .open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-10px) rotate(315deg);
  }
  li.menu__single:hover ul.menu__second-level {
    border: none;
    background-color: #282828;
    width: 100%;
  }
  li.menu__single:hover ul.menu__second-level a {
    color: #fff;
    padding-left: 15px;
  }
  /*============
#mask
=============*/
  #mask {
    display: none;
    transition: all .5s;
  }
  .open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .8;
    z-index: 2;
    cursor: pointer;
  }
  /* main
  ------------------------------------------------------------*/
  .inner {
    padding: 0 25px;
  }
  .sec-txt {
    font-size: 3vw;
  }
  /* footer
	------------------------------------------------------------*/
  footer .col-6 {
    padding: 5px 0;
  }
  .footer-nav div:not(:nth-child(1)) {
    border-left: none;
  }
  .footer-nav {
    padding: 4% 10% 0;
    text-align: center;
  }
}
.footer-btn-s {
  display: none;
}
@media screen and (max-width: 992px) {
  .footer-btn-s.active {
    display: block;
    animation: UpAnime 0.5s forwards;
  }
  .footer-btn-s {
    position: fixed;
    width: 100%;
    /* right: 10px; */
    bottom: 10px;
    z-index: 92;
    transform: translateY(100px);
  }
  .footer-btn {
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-btn a {
    color: #fff;
  }
  .footer-btn li:first-of-type {
    width: 33%;
    background-color: #60542E;
    padding: 10px 0;
    text-align: center;
    opacity: .9;
    border-radius: 3px 3px 0 0;
  }
  .footer-btn li:nth-of-type(2) {
    width: 33%;
    background-color: #A99451;
    padding: 10px 0;
    text-align: center;
    opacity: .9;
    border-radius: 3px 3px 0 0;
  }
   .footer-btn li:nth-of-type(3) {
  width: 33%;
  background: rgb(24, 24, 24);
  padding: 10px 0;
  text-align: center;
  opacity: .9;
  border-radius: 3px 3px 0 0;
} 
}
@media screen and (max-width: 768px) {
  .footer-bg {
    font-size: 1.5vw;
  }
}



@media screen and (max-width: 468px) {
  .footer-bg {
    font-size: 2.5vw;
    margin-bottom: 15%;
  }
  header .logo img {
    width: 75%;
    height: auto;
  }
  .footer-nav {
    padding: 4% 0 0;
  }
	header {
    /* background: #11232e; */
    padding: 5px 3%;
  }
 
}
@media screen and (max-width: 375px) {
  .footer-nav ul {
    /* flex-wrap: nowrap; */
  }
}
/* 画像変更
---------------------------------*/
.sp-hidden {
  display: block !important;
}
.pc-hidden {
  display: none !important;
}
img.sp-hidden {
  display: inline !important;
}
img.pc-hidden {
  display: none !important;
}
@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
  .sp-hidden {
    display: none !important;
  }
  .pc-hidden {
    display: block !important;
  }
  img.sp-hidden {
    display: none !important;
  }
  img.pc-hidden {
    display: inline !important;
  }
}
/* ページトップ */
/*リンクの形状*/
#page-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #A79250;
    border-radius: 5px;
    width: 50px;
    height: 50px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    /* font-size:0.6rem; */
    transition: all 0.3s;
    font-size: 10px;
}
#page-top a:hover {
    background-color: #897842;
}
/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 30px;
  z-index: 92;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}


.btn-bc2 {
  padding: 0 23px;
}
.btn-bc2 a {
  text-decoration: none;
  text-transform: uppercase;
  background-color: #FF4500;
  color: #fff!important;
  padding: 5px 20px;
  display: block;
  letter-spacing: 2px;
  transition: 1s;
  font-size: 14px;
  text-align: center;
  max-width: 250px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 5%;
}
.btn-bc2 a:hover {
  background: #000;
  box-shadow: 0px 0px 10px #666;
  color: #fff;
  transition: 1s;
}


/*# 固定ナビ */
.contact_pc{
    position: fixed;
    top: 220px;
    right: 0;
    z-index: 101;
}

.contact_pc li{
    background-color: #60542E;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}

.contact_pc li:nth-child(2){
    background-color: #A99451;
}

.contact_pc li:hover{
    opacity: 0.7;
}


@media (max-width: 768px) {
.contact_pc {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	margin-top: 0;
	margin-right: auto;
	margin-left: -30px;
	margin-bottom: 0;
	z-index: 101;
	top: auto;
}

.contact_pc li {
    float: left;
    width: 50.0%;
    background: #60542E;	
	text-align: center;
}

.contact_pc li:nth-child(2) {
    background-color: #A99451;
}

/*.contact_pc li:nth-child(3) {
    width: 12.8%;
    background: #062275;
}*/

.contact_pc li a img {
    max-height: 60px;
    vertical-align: middle;
    margin-top: 15px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 10px;
}
	}
