*{
  margin:0;
  padding:0;
}
body{
  width:100%;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  background: #F5F2EB;
}
img{
  width:100%;
  vertical-align: bottom;
}
a{
  text-decoration: none;
}
ul{
  list-style: none;
}
.width70{
  width:70%;
  max-width:1200px;
  margin:0 auto;
}
#main{
  margin:100px 0;
  text-align: center;
  line-height:30px;
}
#main h2{
  font-size:25px;
  margin-bottom:50px;
  letter-spacing: 2px;
}
h3{
  font-size:23px;
  letter-spacing: 1.5px;
  display:inline-block;
}
h4{
  font-size:18px;
}

/*-------- 背景アニメーション -------*/
.area{
  position:relative;
  z-index:50;
}


.circles{
  height:100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index:1;
}
.circles li{
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  animation: animate 100s linear infinite;
  bottom: -50px;
}


.circles li:nth-child(1){
  left: 5%;
  width: 15px;
  height: 15px;
  animation-delay: -110s;
  animation-duration: 200s;
  background: #EC6513;
}
.circles li:nth-child(2){
  left: 15%;
  width: 13px;
  height: 13px;
  animation-delay: -180s;
  animation-duration: 200s;
  background:#FBC702;
}
.circles li:nth-child(3){
  left: 25%;
  width: 10px;
  height: 10px;
  animation-delay: -50s;
  animation-duration: 90s;
  background:#fff;
}
.circles li:nth-child(4){
  left: 35%;
  width: 13px;
  height: 13px;
  animation-delay: -10s;
  animation-duration: 100s;
  background: #EC6513;
}
.circles li:nth-child(5){
  left: 45%;
  width: 10px;
  height: 10px;
  animation-delay: -30s;
  animation-duration: 60s;
  background:#FBC702;
}
.circles li:nth-child(6){
  left: 55%;
  width: 15px;
  height: 15px;
  animation-delay: -30s;
  animation-duration: 200s;
  background:#fff;
}
.circles li:nth-child(7){
  left: 65%;
  width: 11px;
  height: 11px;
  animation-delay: -30s;
  animation-duration: 60s;
  background: #EC6513;
}
.circles li:nth-child(8){
  left: 75%;
  width: 15px;
  height: 15px;
  animation-delay: -10s;
  animation-duration: 80s;
  background:#FBC702;
}
.circles li:nth-child(9){
  left: 85%;
  width: 10px;
  height: 10px;
  animation-delay: -5s;
  animation-duration: 200s;
  background:#fff;
}
.circles li:nth-child(10){
  left: 95%;
  width: 15px;
  height: 15px;
  animation-delay: -80s;
  animation-duration: 100s;
  background:#fff;
}
.circles li:nth-child(11){
  left: 15%;
  width: 5px;
  height: 5px;
  animation-delay: -10s;
  animation-duration: 200s;
  background: #EC6513;
}
.circles li:nth-child(12){
  left: 30%;
  width: 16px;
  height: 16px;
  animation-delay: -44s;
  animation-duration: 60s;
  background:#FBC702;
}
.circles li:nth-child(13){
  left: 60%;
  width: 10px;
  height: 10px;
  animation-delay: -70s;
  animation-duration: 90s;
  background:#fff;
}
.circles li:nth-child(14){
  left: 55%;
  width: 15px;
  height: 15px;
  animation-delay: -150s;
  animation-duration: 200s;
  background:#fff;
}
.circles li:nth-child(15){
  left: 12%;
  width: 15px;
  height: 15px;
  animation-delay: -60s;
  animation-duration: 100s;
  background:#fff;
}


@keyframes animate {
  0%{
      transform: translateY(0px) rotate(0deg);
      opacity: 1;
      border-radius: 0;
  }
  25%{
    border-radius: 50%;
  }
 50%{
  transform: translateY(-50vh) rotate(360deg);
 }
  100%{
      transform: translateY(-110vh) rotate(720deg);

  }
}


/*------header------*/
header{
  display:flex;
}
header .logo{
  padding: 10px 0 10px 30px;
  z-index: 9997;
}
header .logo img{
  height:62px;
  width:auto;
}
.sticky-header .logo{
  padding:5px 0 10px 30px;
}


#header_bottom{
  display:flex;
  align-items: center;
  background-repeat: no-repeat;
  background-size:contain;
  height:400px;
  background-attachment: fixed;
  margin-top:-85px;
}
#header_bottom .inner{
  margin:0 auto;
  width:80%;
}
#header_bottom h2{
  color:white;
  font-size:33px;
  letter-spacing: 2px;
  text-shadow: 1px 2px 2px #a0a0a0;
  margin-bottom:20px;
}
#header_bottom .outer{
  display:flex;
  align-items: center;
  gap:10px;
  flex-wrap:wrap;
}
#header_bottom .outer .header_button{
  font-size:14px;
  border-radius:5px;
  height:40px;
  line-height:40px;
  min-width:180px;
  text-align:center;
}
#header_bottom .outer .header_button a{
  color:#C89F62;
  display:block;
  transition:0.3s;
  border-radius:5px;
  height:40px;
  line-height:40px;
  min-width:180px;
  text-align:center;
}
#header_bottom .outer .header_button a:hover{
  color:#fff;
  background:rgba(200, 159, 98);
  box-shadow: 1px 2px 2px #a0a0a0
}
#header_bottom .outer .brown{
  background-color: #C89F62;
  color:white;
}
#header_bottom .outer .white{
  background-color: #fff;
}



/*
#header_bottom .outer{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 450px;
}
#header_bottom .outer .header_button{
  font-size:14px;
  width:200px;
  height:40px;
  line-height:40px;
  border-radius: 5px;
  text-align:center;
  margin-right:20px;
}
#header_bottom .outer .brown{
  background-color: #C89F62;
  color:white;
}
#header_bottom .outer .white{
  background-color: #fff;
}
#header_bottom .outer .header_button a{
  color:#C89F62;
  display:block;
  transition:0.3s;
  border-radius:5px;
}
#header_bottom .outer .header_button a:hover{
  color:#fff;
  background:rgba(200, 159, 98);
  box-shadow: 1px 2px 2px #a0a0a0
}*/







nav{
  letter-spacing:2px;
}
nav a{
  display:block;
}

/*-------- ナビメニュー -------*/
.sticky-header{
  position: fixed;
  width: 100vw;
  height: 70px;
  z-index: 9999;
  transition: 0.6s;
  background-color:rgba(255, 255, 255, 0.9);
  display:flex;
}
nav.nav01,
nav.nav02{
  position:absolute;
  width:100%;
}
nav.nav01 .nav-ul,
nav.nav02 .nav-ul{
  min-width:780px;
  max-width:1000px;
  width:75%;
  display:flex;
  justify-content:space-between;
  justify-content: flex-end;
  font-size:13px;
  color:black;
  margin-left:auto;
}
.sticky-header .logo a{
  display: block;
  position: relative;
  z-index: 9999;
}
nav.nav01 .nav-ul a,
nav.nav02 .nav-ul a{
  color:black;
}
nav.nav01 .nav_menu,
nav.nav02 .nav_menu{
  position:relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 0;
  line-height: 21px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}
nav.nav01 .nav_menu:hover,
nav.nav02 .nav_menu:hover{
  background-image:url("../images/nav_maru.png");
  background-position:top 5px center;
  background-repeat:no-repeat;
  background-size:10px;
}
nav.nav01 .sub_menu ,
nav.nav02 .sub_menu {
  position: absolute;
  top: 70px;
  left:-7px;
  width:110%;
  display:block;
  font-size:12px;
  letter-spacing: 1px;
  background:rgba(255, 255, 255, 0.6);
}
nav.nav01 .sub_menu .sub_menu_item,
nav.nav02 .sub_menu .sub_menu_item{
  overflow: hidden;
  opacity: 0;
  height: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
nav.nav01 .sub_menu .sub_menu_item .nav_care,
nav.nav02 .sub_menu .sub_menu_item .nav_care{
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height:15px;
  height:70px;
}
nav.nav01 .nav_menu:hover > .sub_menu > .sub_menu_item,
nav.nav02 .nav_menu:hover > .sub_menu > .sub_menu_item {
  overflow: visible;
  opacity: 1;
   /*display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;*/
  height: 70px;
  line-height: 70px;
}
nav.nav01 .nav_menu:hover > .un_sub > .sub_menu_item:nth-child(2),
nav.nav01 .nav_menu:hover > .un_sub > .sub_menu_item:nth-child(4){
  line-height: 35px;
}
nav.nav02 .nav_menu:hover > .un_sub > .sub_menu_item:nth-child(2),
nav.nav02 .nav_menu:hover > .un_sub > .sub_menu_item:nth-child(4){
  line-height: 35px;
}
nav.nav01 .nav_menu:hover > .sub_menu > .sub_menu_item,
nav.nav02 .nav_menu:hover > .sub_menu > .sub_menu_item{
  background:rgba(255, 255, 255, 0.8);
}
nav.nav01 .nav_menu:hover > .sub_menu > .sub_menu_item:hover,
nav.nav02 .nav_menu:hover > .sub_menu > .sub_menu_item:hover {
  background:rgba(251, 199, 2, 0.9);
}



/*-------- 右側固定ナビなど -------*/

.right_fixed{
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index:9998;
}


/*============
  .toggle_btn
=============*/

.toggle_btn{
  position:relative;
  width:16px;
  height:16px;
}
.toggle_btn span {
  position: absolute;
  width: 16px;
  height: 1.5px;
  background-color: #000;
  transition:all 0.3s;
}
.toggle_btn span:nth-child(1){
  top: 0px;
}
.toggle_btn span:nth-child(2) {
  top: 7px;
}
.open .toggle_btn span {
  width: 20px;
  position:absolute;
  transition:all 0.3s;
}
.open .toggle_btn{
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.open .toggle_btn span:nth-child(1) {
  transform: translate(-2px, 2px) rotate(-45deg);
  animation: unset;
}
.open .toggle_btn span:nth-child(2) {
  transform: translate(-2px, -5px) rotate(45deg);
  animation: unset;
}

/*------ハンバーガー------*/
#navArea{
  position:relative;
}
.respo{
  position: fixed;
  top: 0;
  left: -100vw;
  bottom: 0;
  width: 100vw;
  background: #C89F62;  
  -webkit-overflow-scrolling: touch;
  z-index: 9997;
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 0.5s, visibility 0s 0.5s;
	transition: opacity 0.5s, visibility 0s 0.5s;
}
.respo .nav_ul{
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  row-gap: 20px;
  height: 100%;
}
.open .respo {
  left: 0;
  margin:0 auto;
  opacity: 1;
	visibility: visible;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}
.respo header{
  position:absolute;
  top:0;
  left:0;
  right:0;
  margin:auto;
}
.respo a{
  color:#fff;
  display: block;
  font-size: 14px;
}





.page{
  padding:100px 0;
  width:100%;
  text-align: center;
}
.page img{
  width:auto;
  height:50px;
}
.scroll-container {
  scroll-behavior: smooth;
}

/*------footer------*/

footer{
  display:flex;
}
footer .logo{
  display:flex;
  align-items: center;
  width:20%;
  min-width:250px;
  height:85px;
  background:#fff;
}
footer .logo img{
  height:auto;
  width:200px;
  margin-left:30px;
}
footer .inner{
  display:flex;
  align-items: center;
  width:65%;
  background:#C89F62;
  height:85px;
  color:white;
  font-size:14px;
}
footer .inner p{
  margin-left:30px;
}
footer .inner img{
  width:auto;
  height:20px;
}
footer .inner .call{
  padding-top:7px;
  text-align:left;
}
footer .sns{
  display:flex;
  align-items: center;
  width:17%;
  height:85px;
  background:#FBC702;
  text-align:center;
}
footer .sns .sns_in{
  display:flex;
  justify-content: space-between;
  max-width:170px;
  margin:0 auto;
}
footer .sns img{
  width:auto;
  height:40px;
  transition-duration: 0.3s;
}
footer .sns img:hover{
  box-shadow: 5px 5px 10px rgba(0,0,0,0.3);
  border-radius:50%;
  transform: translateY(-5px);
  transition-duration: 0.5s;
}
