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

	 header

----------------------------------------------- */
header{
  padding: 30px 0;
}
header .logo{
  max-width: 145px;
}
header .pcnavwrap li{
  margin: 0 20px;
  padding-left: unset;
  text-indent: unset;
}
header .pcnavwrap li a{
  font-size: 20px;
}
header .pcnav-btn{
  background: #c7171e;
  border-radius: 30px;
  min-width: 150px;
  text-align: center;
}
header .pcnav-btn a{
  color: #fff;
  padding: 20px 30px;
  display: inline-block;
  line-height: 1;
}

@media only screen and (max-width: 1024px) {
  header {
    padding: 20px 0;
  }
  header .logo {
    max-width: 90px;
  }
  header .pcnavwrap li a{
    font-size: 16px;
  }
  header .pcnavwrap li {
    margin: 0 10px
  }
  header .pcnav-btn a{
    padding: 18px 25px;
  }
}
@media only screen and (max-width: 1000px) {
  header .pcnavwrap{
    display: none;
  }
}
@media only screen and (max-width: 768px) {}
@media only screen and (max-width: 479px) {
  header .cwrap{
    padding: 0 20px;
  }
  header .logo{
    max-width: 60px;
  }
}




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

	 hamburger

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

/*　ハンバーガーボタン　*/
.hamburger {
  display : none;
  position: fixed;
  z-index : 3;
  right : 13px;
  top   : 12px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #555;
  -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 : 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

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

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #fff;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
  margin-top: 45px;
}
nav.globalMenuSp ul li:hover{
  background :#ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration :none;
}
nav.globalMenuSp ul li.pcnav-btn a{
  padding: 20px 0;
}

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

@media only screen and (max-width: 1000px) {
  header .hamburger{
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  header .hamburger{
    right: 25px;
    top: 30px;
  }
}
@media only screen and (max-width: 479px) {
  header .hamburger{
    right: 10px;
    top: 20px;
  }
}


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

	 fimage

----------------------------------------------- */
.fimage{
  position: relative;
  color: #fff;
  line-height: 2.5;
  padding: 150px 0;
  text-align: center;
  background: url(../images/fimage.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.fimage::after{
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.75;
  position: absolute;
  top: 0;
  left: 0;
}
.fimage p{
  font-size: 22px;
  text-shadow: 0 0 15px #000;
  position: relative;
  z-index: 1;
}



@media only screen and (max-width: 1024px) {
  .fimage{
    padding: 100px 0;
  }
  .fimage p {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .fimage{
    padding: 90px 0;
  }
  .fimage p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 479px) {
  .fimage{
    padding: 60px 0;
  }
  .fimage p {
    font-size: 16px;
  }
  .fimage p br{
    display: none;
  }
  .fimage p br.sp{
    display: block;
  }
  .fimage p span{
    display: block;
  }
}


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

	 footer

----------------------------------------------- */
footer {
  text-align: center;
  color: #fff;
  background: #000;
}
footer .inner{
  padding: 60px 0 0;
}
footer .logo{
  max-width: 250px;
  margin-bottom: 10px;
}
footer .nav{
  gap: 60px;
  line-height: 1;
}
footer .nav li{
  text-indent: 0;
  padding: 0;
}
footer .nav li a{
  color: #fff;
}
footer .infowrap{
  max-width: 500px;
  width: 100%;
  display: inline-block;
  border: solid 2px #fff;
  padding: 40px;
  margin: 80px 0;
}
footer a.infowrap{
  color: #fff;
}
footer a.infowrap:hover{
  background: #c68f29;
  color: #fff;
  transition: 0.5s;
  opacity: 1;
}

footer .copyright{
  font-size: 16px;
  padding: 10px 0;
  background: #c68f29;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 1024px) {}
@media only screen and (max-width: 768px) {
  footer .nav {
    gap: 45px;
  }
}
@media only screen and (max-width: 479px) {
  footer .copyright p{
    font-size: 14px;
  }
  footer .inner {
    padding: 40px 0 0;
  }
  footer .copyright p{
    font-size: 14px;
  }
  footer .infowrap{
    margin: 40px 0 60px;
    padding: 40px 10px;
  }
  footer .nav {
    gap: 0;
    flex-direction: column;
  }
  footer .nav li a {
    display: block;
    padding: 15px;
    border-bottom: solid 1px #cdcdcd;
    
  }
}



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

	 movetop

----------------------------------------------- */
#movetop{
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 220px;
  height: 220px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  border-radius: 50vh;
  z-index: 3;
  transition: all 0.65s;
  opacity: 0;
  pointer-events: none;
  background: #c7171e;
}
#movetop:hover{
  background: #c68f29;
  transition: 0.5s;
}
#movetop .inner{
  position: relative;
  top: -10px;
}
#movetop .img{
  max-width: 40px;
  margin-bottom: 20px;
}
#movetop .txt{
  max-width: 140px;
}
#movetop.active{
  opacity: 1;
  transition: all 0.65s;
  pointer-events: all;
}
@media only screen and (max-width: 1024px) {
  #movetop{
    width: 150px;
    height: 150px;
  }
  #movetop .img {
    max-width: 30px;
    margin-bottom: 15px;
  }
  #movetop .txt {
    max-width: 110px;
  }
}
@media only screen and (max-width: 768px) {
  #movetop{
    width: 120px;
    height: 120px;
    right: 15px;
    bottom: 15px;
  }
  #movetop .img {
    max-width: 20px;
    margin-bottom: 10px;
  }
  #movetop .txt {
    max-width: 90px;
  }
}
@media only screen and (max-width: 479px) {
  #movetop{
    width: 90px;
    height: 90px;
    right: 10px;
    bottom: 10px;
  }
  #movetop .img {
    max-width: 15px;
    margin-bottom: 5px;
  }
  #movetop .txt {
    max-width: 75px;
  }
}