
/* -----------------------------------------------

	 movetop

----------------------------------------------- */
#movetop{
  position: fixed;
  right: 35px;
  bottom: 20px;
  max-width: 110px;
  width: 100%;
  z-index: 3;
  transition: all 0.65s;
  opacity: 0;
  pointer-events: none;
}
#movetop.active{
  opacity: 1;
  transition: all 0.65s;
  pointer-events: all;
}
@media only screen and (max-width: 1024px) {
  #movetop{
    max-width: 90px;
    right: 20px;
    bottom: 15px;
  }
}
@media only screen and (max-width: 768px) {
  #movetop{
    max-width: 60px;
    right: 15px;
    bottom: 10px;
  }
}



/* -----------------------------------------------

	 header

----------------------------------------------- */
header{
  z-index: 5;
  padding: 20px 0;
  position: relative;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}
header .logo{
  max-width: 260px;
  position: relative;
  top: 5px;
}
header .pcnavwrap li{
  margin: 0 15px;
  font-weight: 700;
  font-size: 18px;
}
header .pcnav-btn{
  background: #000000;
  border-radius: 30px;
  margin-right: 0 !important;
}
header .pcnav-btn a{
  color: #fff;
  padding: 15px 35px;
  display: inline-block;
  line-height: 1;
}


@media only screen and (max-width: 1024px) {
  header .cwrap{
    padding: 0 25px;
  }
  header .logo {
    max-width: 180px;
  }
  header .pcnavwrap li{
    font-size: 16px;
  }
}
@media only screen and (max-width: 1000px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
  }
  header .pcnavwrap{
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  
}
@media only screen and (max-width: 650px) {
  header {
    padding: 15px 0;
  }
  header .cwrap {
    padding: 0 20px;
  }
  header .logo {
    top: 3px;
  }
}


/* -----------------------------------------------

	 hamburger

----------------------------------------------- */

/*　ハンバーガーボタン　*/
.hamburger {
  display : none;
  position: absolute;
  z-index : 11;
  right : 30px;
  top   : 50%;
  -webkit-transform : translateY(-50%);
  transform : translateY(-50%);
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 28px;
  height  : 2px ;
  left    : 50%;
  -webkit-transform : translateX(-50%);
  transform : translateX(-50%);
  background : #fff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span{
  background: #fff;
}
.hamburger.active span:nth-child(1) {
  top : 50%;
  left: 20%;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 50%;
  left: 20%;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index : 10;
  top  : 0;
  left : 0;
  color: #000;
  background: #ffe000;
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 100%;
  height: 100vh;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  max-width: 600px;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #000;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
nav.globalMenuSp ul li.spnav-btn{
  margin-top: 30px;
  background: #000;
}
nav.globalMenuSp ul li.spnav-btn a{
  color: #fff;
  padding: 20px;
}

nav.globalMenuSp ul li a {
  font-weight: 700;
  display: block;
  padding: 30px 0 15px;
  text-decoration :none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(0%);
}


@media only screen and (max-width: 1000px) {
  .hamburger {
    right: 20px;
    display: block;
  }
  .hamburger::before{
    content: "";
    display: inline-block;
    background: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    border-radius: 50vh;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}


/* -----------------------------------------------

	 footer

----------------------------------------------- */
footer{
  position: relative;
  padding: 10px 0 0;
  background-image: url(../images/bg_footer.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
footer::after{
  content: "";
  display: inline-block;
  background-image: url('../images/character.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 10px;
  left: calc(100% / 2 + 400px);
  width: 130px;
  height: 250px;
}
footer .logo{
  max-width: 350px;
  margin-bottom: 20px;
}
footer .finfowrap{
  gap: 45px;
  padding: 60px 0;
  line-height: 1.5;
}
footer .finfo{
  width: 50%;
}
footer .finfo address {
  padding-bottom: 20px;
  margin-bottom: 20px;
  /* border-bottom: solid 1px #cdcdcd; */
}
footer .finfo address .local{
  margin-bottom: 5px;
}
footer nav ul{
  gap: 20px;
}
footer nav li{
  width: calc(100% / 2 - 10px);
  border-bottom: solid 1px #cdcdcd;
}
footer nav li a{
  display: block;
  font-size: 16px;
  padding: 6px 10px 6px 0;
}
footer .map{
  width: 55%;
}
footer .copyright{
  font-size: 16px;
  padding: 10px 0;
  background: #ffe000;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  footer::after {
    left: calc(100% / 2 + 35%);
    width: 110px;
    height: 220px;
  }
}
@media only screen and (max-width: 768px) {
  footer .logo {
    max-width: 300px;
  }
  footer .finfowrap {
    gap: 0;
    padding: 45px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  footer .finfo,
  footer .map{
    width: 100%;
  }
  footer .copyright p{
    font-size: 14px;
  }
  footer::after {
    left: unset;
    right: 30px;
    width: 90px;
    height: 180px;
  }
}
@media only screen and (max-width: 479px) {
  footer p{
    font-size: 15px;
  }
  footer .logo {
    max-width: 100%;
  }
  footer nav ul{
    gap: 10px;
  }
  footer nav li {
    width: 100%;
  }
  footer nav li:nth-child(odd){
    order: 0;
  }
  footer nav li:nth-child(even){
    order: 1;
  }
  footer .copyright p{
    font-size: 12px;
  }
  footer::after {
    left: unset;
    right: 15px;
    width: 60px;
    height: 120px;
  }
}







/* -----------------------------------------------

   f_contact

----------------------------------------------- */
.f_contact{
  padding: 60px 0;
  background-image: linear-gradient(135deg, #1b763a, #2a5d3a 75%, #344c3a 99%);
}
.f_contact .container{
  max-width: 1100px;
}
.f_contact .fcinner{
  position: relative;
  padding: 30px 0;
}
.f_contact .fcinner::after{
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  position: absolute;
  left: 50%;
  -webkit-transform : translateX(-50%);
  transform : translateX(-50%);
  top: 0;
  background: #fff;
}
.f_contact .txtswrap,
.f_contact .btnwrap{
  width: 50%;
}
.f_contact .txtswrap *{
  color: #fff;
}
.f_contact .txtswrap .txt01{
  color: #eecf3a;
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 0.35rem;
  line-height: 1;
  margin-bottom: 10px;
}
.f_contact .txtswrap a.tel{
  display: inline-block;
  margin-bottom: 15px;
  letter-spacing: 0.35rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.f_contact .txtswrap a.tel svg{
  max-width: 45px;
  margin-right: 10px;
  fill: #fff;
}
.f_contact .txtswrap a.tel span{
  font-size: 60px;
  line-height: 1;
}
.f_contact .txtswrap .txt02{
  font-weight: 400;
  font-size: 18px;
}
.f_contact .btnwrap .btn {
  max-width: 350px;
}
.f_contact .btnwrap .btn a{
  font-size: 20px;
  padding: 25px;
  border-radius: 15px;
  background: #fff;
  color: #1b763a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.f_contact .btnwrap .btn a svg{
  max-width: 30px;
  margin-right: 15px;
  fill: #1b763a;
}


@media only screen and (max-width: 1024px) {
  .f_contact .txtswrap a.tel span{
    font-size: 50px;
  }
  .f_contact .txtswrap a.tel svg {
    max-width: 40px;
  }
  .f_contact .btnwrap .btn {
    max-width: 320px;
  }
  .f_contact .btnwrap .btn {
    max-width: 280px;
  }
  .f_contact .btnwrap .btn a{
    padding: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .f_contact {
    padding: 50px 0;
  }
  .f_contact .txtswrap .txt01 {
    font-size: 25px;
    letter-spacing: 0.2rem;
  }
  .f_contact .txtswrap a.tel svg {
    max-width: 30px;
  }
  .f_contact .txtswrap a.tel span {
    font-size: 35px;
    letter-spacing: 0.25rem;
  }
  .f_contact .txtswrap .txt02 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 650px) {
  .f_contact {
    padding: 30px 0;
  }
  .f_contact .fcinner{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .f_contact .fcinner::after {
    content: unset;
  }
  .f_contact .txtswrap, .f_contact .btnwrap {
    width: 100%;
  }
  .f_contact .txtswrap{
    margin-bottom: 20px;
    border-bottom: solid 1px #cdcdcd;
  }
  .f_contact .txtswrap{
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 650px) {
  .f_contact .txtswrap a.tel span {
    font-size: 30px;
  }
  .f_contact .txtswrap a.tel svg {
    max-width: 25px;
    margin-right: 5px;
  }
}
