@charset "utf-8";
@import url("../../../common/css/Normalize.css");
@import url("../../../common/css/reset.css");
@import url("../../../common/css/base.css");
@font-face {
	font-family: 'GenJuuGothic-H';
    /* src:url("/common/fonts/GenJyuuGothic-P-Bold.ttf") format("woff"); */
    src: url('/common/fonts/GenJyuuGothicX-Heavy.eot');
    src: url('/common/fonts/GenJyuuGothicX-Heavy.eot?#iefix') format('embedded-opentype'), url('/common/fonts/GenJyuuGothicX-Heavy.woff') format('woff'), url('/common/fonts/GenJyuuGothicX-Heavy.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap
}

@font-face {
	font-family: 'GenJuuGothic-B';
    /* src:url("/common/fonts/GenJyuuGothic-P-Bold.ttf") format("woff"); */
    src: url('/common/fonts/GenJyuuGothicX-Bold.eot');
    src: url('/common/fonts/GenJyuuGothicX-Bold.eot?#iefix') format('embedded-opentype'), url('/common/fonts/GenJyuuGothicX-Bold.woff') format('woff'), url('/common/fonts/GenJyuuGothicX-Bold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap
}

@font-face {
	font-family: 'GenJuuGothic-N';
    /* src: url("/common/fonts/GenJyuuGothic-P-Regular.ttf") format("woff"); */
    src: url('/common/fonts/GenJyuuGothic-Normal.eot');
    src: url('/common/fonts/GenJyuuGothic-Normal.eot?#iefix') format('embedded-opentype'), url('/common/fonts/GenJyuuGothic-Normal.woff') format('woff'), url('/common/fonts/GenJyuuGothic-Normal.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

html{
    scroll-behavior: smooth;
  }
body {
    font-size: 16px;
    font-family: 'GenJuuGothic-N',"Meiryo UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "MS PGothic", sans-serif ;
    background-repeat: repeat;    
}

h1,h2,h3,p,ul,li {
    margin: 0;
    padding: 0;
    font-weight: normal;
}
h2 {
    font-family: 'Righteous', cursive;
    font-size: 40px;
}
li {
    list-style-type: none;
}
a {
    text-decoration: none;
}


/* ==========================================
   +header
========================================== */
header {
    height: 62px;
}
.header_inner{
    display: flex;
    height: 62px;
    box-sizing: border-box;
    padding: 0 0 0 12px;
    clear: both;
}
.head_logo {
    height: 70%;
    margin: 2% 0 0;
    display: block;
}
.head_logo img {
    height: 100%;
}

.head_contact {
    width: 62px;
    height: 62px;
    position: absolute;
    top: 0px;
    right: 62px;
    background-color: #ff9000;
    background-image: url(../images/header/mail.png);
    background-position: center;
    background-size: 45% auto;
    background-repeat: no-repeat;
}


.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
    position: relative;
    width: 62px;
    height: 62px;
    box-sizing: border-box;
    background-color: #303030;
    display: block;
    position: absolute;
    top: 0;
    right: 0px;
    z-index: 4;
    cursor: pointer;
}
.menu-trigger span {
    position: absolute;
    left: 27%;
    width: 45%;
    height: 2px;
    background-color: #fff;
}
.menu-trigger span:nth-of-type(1) {
  top: 20px;
}
.menu-trigger span:nth-of-type(2) {
  top: 29px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 20px;
}
.menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(15px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }
  .menu-trigger.active span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
    -webkit-animation: active-menu-bar02 .8s forwards;
    animation: active-menu-bar02 .8s forwards;
  }
  @-webkit-keyframes active-menu-bar02 {
    100% {
      height: 0;
    }
  }
  @keyframes active-menu-bar02 {
    100% {
      height: 0;
    }
  }
  .menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
  }


.slide_nav {
    display: none;
    position: absolute;
    max-width: 65vw;
    width: 100%;
    z-index: 100;
    right: 0;;
    top: 62px;
    background: rgba(0, 0, 0,0.8);
    height: 100vh;
}
.slide_nav ul {
    margin: 70px auto 0
}
.slide_nav li {
    box-sizing: border-box;
    padding: 0 16px 0 18%;
    margin: 34px 0 0;
}
.slide_nav li a {
    color: #ff9000;
    font-size: 5vw;
    font-weight: bold;
    color: #fff;
    font-family: 'Righteous', cursive;
}





/*------------ @media 321 ----------*/
@media screen and (max-width: 321px) {

    header {
        height: 54px;
    }
    .header_inner{
        height: 54px;
    }
    .head_logo {
        height: 60%;
        margin: 4% 0 0;
        display: block;
    }
    .head_logo img {
        height: 100%;
    }
    
    .head_contact {
        width: 54px;
        height: 54px;
        right: 54px;
    }
    .menu-trigger {
        width: 54px;
        height: 54px;
    }
    .menu-trigger span {
        position: absolute;
        left: 27%;
        width: 45%;
        height: 2px;
        background-color: #fff;
    }
    .menu-trigger span:nth-of-type(1) {
      top: 18px;
    }
    .menu-trigger span:nth-of-type(2) {
      top: 26px;
    }
    .menu-trigger span:nth-of-type(3) {
      bottom: 18px;
    }
    .slide_nav {
        top: 54px;
    }
    .menu-trigger.active span:nth-of-type(1) {
        -webkit-transform: translateY(10px) rotate(-45deg);
        transform: translateY(5px) rotate(-45deg);
    }
}


/* ----- footer ----- */
footer .main {
    color: #fff;
    background: url(/index/images/footer-back.jpg);
    background-repeat: repeat;
    padding: 6vh 8vw 0;
}
footer #navi,footer #store {
    display: inline-block;
}
footer #navi ul {
    margin: 20px 0 30px;
}
footer #navi li {
    font-size: 16px;
    font-family: 'Righteous', cursive;
    line-height: 2.4;
}
footer #navi a {
    color: #fff;
    transition: all .5s;
}
footer #navi a:hover {
    color: #f59916;
    transition: all .5s;
}
footer #store {
    text-align: right;
    float: right;
    color: #bbbbbb;
    font-size: 13px;
    line-height: 1.6;
    margin-top: 20px;
}
footer #store .tel {
    color: #fff;
    font-family: 'Righteous', cursive;
    font-size: 16px;
    margin-bottom: 4px;
}
footer #store .tel span {
    font-size: 26px;
}
footer #store .instagram i {
    font-size: 22px;
    color: #bbbbbb;
    padding: 10px 0 0;
    transition: all .5s;
}
footer #store .instagram i:hover {
    opacity: 0.6;
    transition: all .5s;
}
footer .Copyright {
    color: #a2a2a2;
    background: #252525;
    font-size: 13px;
    padding: 2vh 8vw 1vw;
    text-align: right;
}
footer #store ul li:nth-child(3){
  display:flex;
  justify-content:flex-end;
  margin:3px 0 0
}
footer #store ul li:nth-child(3) a{
    color: #bbbbbb !important;
    font-size:11px;
    padding: 0px 7px;
}
footer #store ul li:nth-child(3) a:first-child{
  border-right:1px solid #bbb;

}
/* ----- contact ----- */
#contact {
    background: #38563c;
    padding: 20px 15px 3vh;
    color: #fff;
    position: relative;
}
#contact::before {
    content: "";
    position: relative;
    top: 0;
    left: 50%;
    margin-left: -20px;
    border: 20px solid transparent;
    border-top: 20px solid #f8f3ed;
    line-height: 1;
    height: 20px;
}
#contact h2,#contact h3 {
    max-width: 1000px;
    margin: auto;
    padding: 0 0 10px 0;
}
#contact > p {
    font-size: 13px;
    line-height: 1.4;
}
#contact ul {
    text-align: center;
    margin: 10px auto 0vh;
}

#contact li {
    display: inline-block;
    background: #fff;
    width: 100%;
    border-radius: 100px;
    vertical-align: bottom;
    margin: 7px auto;
}
#contact li a {
    color: #38563c;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    line-height: 1;
}
#contact li:hover {
    background: #f59916;
    color: #fff;
    transition: all .3s;
}
#contact li div {
    display: inline-block;
    vertical-align: middle;
}
#contact .tel i {
    font-size: 38px;
    margin: 0 5px 0 0;
}
#contact .mail {
    /* padding: 0 0 20px; */
}
#contact .mail i {
    font-size: 35px;
    margin: 0 5px 0 0;
}
#contact p span {
    font-family: 'Righteous', cursive;
    font-size: 30px;
}

#contact .tel p {
    text-align: left;
    font-size: 12px;
    font-weight: bold;
}
#contact .mail p {
    font-size: 18px;
    font-weight: bold;
}



/*===== h1_title =====*/
.sp_title {
    width: 100%;
    /* height: 100px; */
    background: url(/common/images/orange-back.jpg);
    background-repeat: repeat-x;
    background-size: cover;
    margin: 0 auto 34px;
}
.sp_title  h1 {
    text-align: center;
    color: #FFF;
    box-sizing: border-box;
    font-size: 15px;
    padding: 20px 0 19px;
    line-height: 1.3;
    /* letter-spacing: 3px; */
}
.sp_title  span {
    font-size: 42px;
    display: block;
    font-family: 'Righteous', cursive;

}

/*------ PANKUZU ---------*/
.breadcrumb{
    margin: 100px auto 36px;
    padding: 0;
}
.breadcrumb ul{
    display: flex;
    justify-content: flex-end;
    width: 96%;
    max-width: 1200px;
    font-size: 14px;
    margin: auto;
}
.breadcrumb ul li{
  line-height: 27px;
  padding: 0px 0 0 14px;
  margin: 0 0 0 8px;
  position:relative;
}
.breadcrumb ul li a{
    color: #000;
}

.breadcrumb ul li:before{
  /* margin: 0 7px 0 0; */
  content: '\f105';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  color: #000000;
  left: 0;
  font-size: 18px;
}
.breadcrumb ul li:first-child{
  padding: 0px 0 0 0px;
  margin: 0 0 0 0px;   
}
.breadcrumb ul li:first-child:before{
    display:none;    
}
