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

	 header

----------------------------------------------- */
header{
  padding: 25px 0;
}
header .inner{
  padding: 0 30px;
}
header .logo{
  max-width: 230px;
}
header .pcnavwrap li{
  margin: 0 15px;
  padding-left: unset;
  text-indent: unset;
}
header .pcnavwrap li:last-child{
  margin-right: 0;
}
header .pcnavwrap li a{
  font-size: 18px;
}
header .pcnav-btn{
  background: #d13d8f;
  border-radius: 30px;
  min-width: 150px;
  text-align: center;
}
header .pcnav-btn a{
  color: #fff;
  padding: 18px 35px;
  display: inline-block;
  line-height: 1;
}

@media only screen and (max-width: 1024px) {
  header .inner{
    padding: 0;
  }
  header .logo {
    max-width: 180px;
  }
  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 .cwrap{
    padding: 0 30px;
  }
  header .pcnavwrap{
    display: none;
  }
  header .pcnav-btn a{
    padding: 22px !important;
  }
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 479px) {
  header .cwrap{
    padding: 0 20px;
  }
  header .logo{
    max-width: 145px;
  }
}


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

	 hamburger

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

/*　ハンバーガーボタン　*/
.hamburger {
  display : none;
  position: fixed;
  z-index : 3;
  right : 20px;
  top   : 23px;
  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: #333;
  background: #fff;
  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%;
  max-width: 550px;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #333;
}
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;
  padding: 1em 0;
  text-decoration :none;
}

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

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


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

	 footer

----------------------------------------------- */
footer *{
  font-size: 16px;
}
footer .infowrap,
footer .contactwrap{
  width: 50%;
  min-height: 450px;
}
footer .infowrap .cwrap,
footer .contactwrap .cwrap{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
footer .infowrap{
  line-height: 1.8;
  background: #fdf4f7;
}
footer .infowrap *{
  color: #d13d8f;
}
footer .infowrap .nav{
  gap: 40px;
  line-height: 1;
  margin-bottom: 90px;
  padding-bottom: 30px;
  border-bottom: solid 1px #d13d8f;
}
footer .nav li{
  text-indent: 0;
  padding: 0;
}
footer .infowrap .logo{
  max-width: 100px;
  margin-bottom: 10px;
}
footer .contactwrap{
  z-index: 0;
  background: url(../images/contact.jpg);
  position: relative;
}
footer .contactwrap::after{
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: #d13d8f;
  opacity: 0.9;
  z-index: -1;
}
footer .contactwrap .sechead {
  margin: 0 0 20px;
}
footer .contactwrap .sechead .en{
  color: #fff;
  font-size: 40px;
  line-height: 1.3;
  font-weight: 300;
}
footer .contactwrap .boxwrap{
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
footer .contactwrap .box{
  background: #fff;
  padding: 10px;
  height: 110px;
  width: 100%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer .contactwrap .box_tel{
  margin-bottom: 20px;
}
footer .contactwrap .box_tel .img{
  max-width: 22px;
  margin-right: 10px;
  position: relative;
}
footer .contactwrap .box_tel .txt,
footer .contactwrap .box_tel .telwrap{
  line-height: 1.5;
}
footer .contactwrap .box_tel .tel{
  font-size: 35px;
  color: #d13d8f;
  font-weight: 600;
}
footer .contactwrap .box_reserve .img{
  max-width: 30px;
  margin-bottom: 5px;
  position: relative;
}

footer .copyright{
  background: #fff;
  text-align: center;
  padding: 35px 0;
}
footer .copyright p{
  font-size: 16px;
}
@media only screen and (max-width: 1024px) {
  footer *{
    font-size: 16px;
  }
  footer .infowrap .nav{
    gap: 20px 30px;
    padding-bottom: 20px
  }
  footer .contactwrap .box{
    height: 100px;
  }
  footer .infowrap, footer .contactwrap{
    min-height: 400px;
  }
}
@media only screen and (max-width: 768px) {
  footer .infowrap, footer .contactwrap {
    width: 100%;
    display: flex;
    align-items: center;
  }
  footer .infowrap .cwrap,
  footer .contactwrap .cwrap{
    width: 100%;
  }
  footer .contactwrap {
    min-height: auto;
    padding: 60px 0;
  }
  footer .contactwrap .sechead .en{
    font-size: 35px;
  }
  footer .infowrap{
    min-height: auto;
    padding: 80px 0;
  }
  footer .inner{
    flex-direction: column-reverse;
  }
  footer .logo {
    max-width: 200px;
  }
  footer .nav{
    gap: 20px;
    max-width: 100%;
  }
  footer .infowrap{
    margin: 0;
  }
  footer .copyright {
    padding: 25px 0;
    }

}
@media only screen and (max-width: 479px) {
  footer *{
    font-size: 15px;
  }
  footer .infowrap {
    padding: 60px 0;
  }
  footer .contactwrap {
    padding: 45px 0;
  }
  footer .contactwrap .sechead .en{
    font-size: 28px;
  }
  footer .contactwrap .box_tel .tel{
    font-size: 28px;
  }
  footer .contactwrap .box_tel .img {
    max-width: 18px;
    top: 2px;
    margin-right: 5px;
  }
  footer .contactwrap .box_reserve .img {
    max-width: 25px;
  }
  footer .infowrap .nav{
    border: none;
    margin-bottom: 45px;
  }
  footer .nav li{
    width: 100%;
    border-bottom: solid 1px #d13d8f;
    padding-bottom: 5px;
  }
  footer .nav li a{
    display: block;
    padding: 10px 0;
  }
  footer .copyright{
    padding: 20px 0;
  }
  footer .copyright p{
    font-size: 14px;
  }
}