/* CSS Document */
.sp-nav{
  display: none;
  
  }
@media screen and (max-width: 768px){
  .sp-nav{
    display: block;
    position: fixed;
  z-index:1000;
  top: 0;
  width: 100%;
  -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
  }
}
.sp-nav .nav-top{
  position: relative;
  z-index: 1000;
  background: #fff;
  width: 100%;
  height: 79px;
  display: flex;
  align-items: center;
  padding-left: 38px;
  padding-top: 18px;
}
.sp-nav h1{
  width: 178px;
}
/* グルーバルメニュー */
nav.globalMenuSp {
    position: fixed;
    z-index:999;
    top: 0;
    left: 0;
    min-height: calc(100vh - 79px);
    height: 100%;
    overflow: auto;
    color: #8A4748;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    padding: 84px 20px 0 20px;
}
 
.sp-nav_list01{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.sp-nav_list01 .link{
  width: calc((100% - 34px) / 3);
  font-size: 13px;
  text-align: center;
  background: #FAE7EA;
  margin-bottom: 17px;
  height: 99px;
  font-weight: 900;
}
@media screen and (max-width: 320px){
  .sp-nav_list01 .link{
    font-size: 10px;
  }
}
.sp-nav_list01 .link a::before{
  content: "";
  width: 100%;
  height: 27px;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: -30px;
  display: block;
}
.sp-nav_list01 .link a{
  height:100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: #8A4748;
}
.sp-nav_list01 .link:first-of-type a:before{
  background-image: url("../img/common/icon_nav01.svg");
}
.sp-nav_list01 .link:nth-of-type(2) a:before{
  background-image: url("../img/common/icon_nav02.svg");
}
.sp-nav_list01 .link:nth-of-type(3) a:before{
  background-image: url("../img/common/icon_nav03.svg");
  margin-top: 10px;
  margin-bottom: -20px;
}
.sp-nav_list01 .link:nth-of-type(4) a:before{
  background-image: url("../img/common/icon_nav04.svg");
}
.sp-nav_list01 .link:nth-of-type(5) a:before{
  background-image: url("../img/common/icon_nav05.svg");
}
.sp-nav_list01 .link:nth-of-type(6) a:before{
  background-image: url("../img/common/icon_nav06.svg");
}
.link a{
  display: block;
  width: 100%;
}
/*nav.globalMenuSp .more{
  display: block;
  width: 100%;
  padding: .5em 0 1em 0;
  cursor: pointer;
}*/
.sp-nav_list02{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: dotted 1px #8A4748;
  border-bottom: dotted 1px #8A4748;
  padding: 8px 0;
  margin-bottom: 24px;
}
.sp-nav_list02 li{
  font-size: 15px;
  font-weight: 700;
  margin: 8px 0;
}
@media screen and (max-width: 414px){
  .sp-nav_list02{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
  .sp-nav_list02 li{
  min-width: 138px;
}
}
.sp-nav_info{
  padding: 0 19px;
}
.sp-nav_info h3{
  background: #8A4748;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 5px;
  margin-bottom: 10px;
  width: 100%;
}
.sp-nav_info{
  display: flex;
  flex-wrap: wrap;
  border-bottom: dotted 1px #8A4748;
  padding-bottom: 16px;
}
.sp-nav_info dl{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 12px;
  min-width: 200px;
}
.sp-nav_info dl:last-of-type dt{
  
}
.sp-nav_info dt{
  padding-right: 9px;
  font-weight: 900;
}
.sp-nav_info dd{
  font-weight: 500;
  font-size: 17px;
}
.sp-nav_copy{
  text-align: center;
  padding: 12px;
  line-height: 1;
}
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
    transform: translateX(0%);
}
 
/* メニュー内ヘッダ */
/*nav.globalMenuSp .menuHeader {
    background: #ffdb99;
    padding: 1.5em 0;
}*/
 
/* メニューだけをスクロールさせる工夫 */
.overflowHidden {
    overflow: hidden;
}
.accordion-child{
  width: 120px;
  margin: auto;
}
.accordion-child li a{
  font-size: 14px;
  display: flex!important;
  align-items: flex-start;
}
.accordion-child li a::before{
  content: url("../img/sankaku.svg");
  position: relative;
  top:1px;
  margin-right: 5px;
}

/*ハンバーガー部分ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.navToggle {
    display: block;
    position: absolute;    /* bodyに対しての絶対位置指定 */
    right: 30px;
    top: 27px;
    width: 40px;
    height: 42px;
    cursor: pointer;
    z-index: 3;
    text-align: center;
  -webkit-tap-highlight-color:rgba(0,0,0,0);
}
 
.navToggle span {
    display: block;
    position: absolute;    /* .navToggleに対して */
    width: 20px;
    border-bottom: solid 2px #8A4748;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    right: 0;
}
 
.navToggle span:nth-child(1) {
    top: 0;
}
 
.navToggle span:nth-child(2) {
    top: 6px;
}
 
.navToggle span:nth-child(3) {
    top: 12px;
} 

/*タップした後ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
    top: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
 
/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
    top: 6px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}