@charset "UTF-8";
/***********************************************************************
  PC・タブレット（min-width: 751px）
***********************************************************************/
@media all and (min-width: 751px) {
  .pc_non {
    display: none;
  }
  /* ===================== menuArea（PC） ===================== */
  .menuArea {
    width: 100%;
    min-width: 1920px;
    display: flex;
    justify-content: center;
    position: fixed;
    top: -160px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 99;
    background: linear-gradient(100deg, #FFEA95 0%, #FFF3C4 7%, #11164A 7%, #11164A 94%, #FFF3C4 94%);
    padding: 60px 0 100px;
    overflow: hidden;
    height: 0;
    transition: 0.3s;
  }
  .menuArea.active {
    top: 0;
    height: auto;
    position: fixed;
  }
  .menuArea ul {
    width: 300px;
    margin: 0 15px;
    padding-top: 0px;
  }
  .menuArea .cate1 .cate,
  .menuArea .cate2 .cate,
  .menuArea .cate3 .cate,
  .menuArea .cate4 .cate {
    height: 80px;
    position: relative;
    text-indent: -9999px;
    margin-bottom: 5px;
    width: 100%;
  }
  .menuArea .cate1 .cate {
    background: url(../images/cate1.svg) bottom left no-repeat;
    background-size: 93%;
  }
  .menuArea .cate2 .cate {
    background: url(../images/cate2.svg) top left no-repeat;
    background-size: 78%;
  }
  .menuArea .cate3 .cate {
    background: url(../images/cate3.svg) bottom left no-repeat;
    background-size: 66%;
  }
  .menuArea .cate4 .cate {
    background: url(../images/cate4.svg) bottom left no-repeat;
    background-size: 66%;
  }
  .menuArea .cate::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 16px;
    left: 0;
    bottom: -4px;
    z-index: -1;
  }
  .menuArea .cate1 .cate::before {
    background: #DD004A;
  }
  .menuArea .cate2 .cate::before {
    background: #15ACA2;
  }
  .menuArea .cate3 .cate::before {
    background: #F3B300;
  }
  .menuArea .cate4 .cate::before {
    background: #CB45E3;
  }
  .menuArea ul li a {
    display: block;
    height: 60px;
    color: #FFDD32;
    font-size: 18px;
    padding-left: 0px;
    text-decoration: none;
    display: flex;
    background: url(../images/menu_arrow.svg) center left 15px no-repeat;
    align-items: center;
    transition: 0.3s;
    position: relative;
  }
  .menuArea ul li a p {
    line-height: 1.2em;
    transition: 0.3s;
    margin: 0;
  }
  .menuArea ul li a:hover p {
    transform: translateX(5px);
    color: #FFF;
  }
  .menuArea ul.cate1 li {
    border-bottom: 1px solid #DD004A;
  }
  .menuArea ul.cate2 li {
    border-bottom: 1px solid #15ACA2;
  }
  .menuArea ul.cate3 li {
    border-bottom: 1px solid #F3B300;
  }
  .menuArea ul.cate4 li {
    border-bottom: 1px solid #CB45E3;
  }
  .menuArea ul li.non {
    pointer-events: none;
  }
  .menuArea ul li.non a {
    opacity: 0.3;
  }
  .menuArea ul li a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    transition: 0.3s;
    z-index: -1;
  }
  .menuArea ul li a:hover::before {
    width: 100%;
  }
  .menuArea ul.cate1 li a:before {
    background: #DD004A;
  }
  .menuArea ul.cate2 li a:before {
    background: #15ACA2;
  }
  .menuArea ul.cate3 li a:before {
    background: #F3B300;
  }
  .menuArea ul.cate4 li a:before {
    background: #CB45E3;
  }
  /* ===================== openbtn（PC） ===================== */
  .openbtn {
    position: fixed;
    background: #DC003C;
    cursor: pointer;
    width: 92px;
    height: 92px;
    right: max(0px, env(safe-area-inset-right));
    top: 0px;
    z-index: 100;
  }
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 26px;
    height: 3px;
    border-radius: 5px;
    background: #fff;
    width: 45%;
  }
  .openbtn span:nth-of-type(1) {
    top: 20px;
  }
  .openbtn span:nth-of-type(2) {
    top: 34px;
  }
  .openbtn span:nth-of-type(3) {
    top: 48px;
  }
  .openbtn span:nth-of-type(3)::after {
    content: "Menu";
    position: absolute;
    top: 8px;
    left: 0px;
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: bold;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 28px;
    left: 30px;
    transform: translateY(6px) rotate(-45deg);
    width: 40%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 40px;
    left: 30px;
    transform: translateY(-6px) rotate(45deg);
    width: 40%;
  }
  .openbtn.active span:nth-of-type(3)::after {
    content: "Close";
    transform: translateY(0) rotate(-45deg);
    top: 11px;
    left: 17px;
  }
}
/***********************************************************************
  SP（max-width: 750px）
***********************************************************************/
@media only all and (max-width: 750px) {
  /* ===================== menuArea（SP） ===================== */
  body.menu-open {
    overflow: hidden;
  }
  .menuArea {
    width: 100%;
    position: fixed;
    top: -120px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 99;
    background: linear-gradient(175deg, #11164A 7%, #11164A 92%, #FFF3C4 92%);
    /* padding: 60px 0 140px; */
    overflow: hidden;
    height: 0;
    transition: 0.3s;
  }
  .menuArea.active {
    top: 0;
    height: 100%;
    position: fixed;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-top: 64px;
  }
  .menuArea ul {
    width: 670px;
    margin: 0 auto 0px auto;
    padding-top: 70px;
  }
  .cate4 {
    padding-bottom: 240px;
  }
  .menuArea .cate1 .cate,
  .menuArea .cate2 .cate,
  .menuArea .cate3 .cate,
  .menuArea .cate4 .cate {
    height: 63px;
    position: relative;
    text-indent: -9999px;
    margin-bottom: 5px;
    background-size: auto 60px !important;
    width: 100%;
  }
  .menuArea .cate1 .cate {
    background: url(../images/cate1.svg) top left no-repeat;
  }
  .menuArea .cate2 .cate {
    background: url(../images/cate2.svg) top left no-repeat;
    background-size: 60% !important;
    height: 140px;
  }
  .menuArea .cate3 .cate {
    background: url(../images/cate3.svg) top left no-repeat;
  }
  .menuArea .cate4 .cate {
    background: url(../images/cate4.svg) top left no-repeat;
  }
  .menuArea .cate::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 16px;
    left: 0;
    bottom: 0;
    z-index: -1;
  }
  .menuArea .cate1 .cate::before {
    background: #DD004A;
  }
  .menuArea .cate2 .cate::before {
    background: #15ACA2;
  }
  .menuArea .cate3 .cate::before {
    background: #F3B300;
  }
  .menuArea .cate4 .cate::before {
    background: #CB45E3;
  }
  .menuArea ul li a {
    display: block;
    height: 80px;
    color: #FFDD32;
    font-size: 18px;
    padding-left: 40px;
    text-decoration: none;
    display: flex;
    background: url(../images/menu_arrow.svg) center left 15px no-repeat;
    align-items: center;
    transition: 0.3s;
    position: relative;
  }
  .menuArea ul li a p {
    line-height: 1.2em;
    font-size: 26px;
    transition: 0.3s;
    margin: 0;
  }
  .menuArea ul li a p br {
    display: none;
  }
  .menuArea ul li a:hover p {
    transform: translateX(5px);
    color: #FFF;
  }
  .menuArea ul.cate1 li {
    border-bottom: 1px solid #DD004A;
  }
  .menuArea ul.cate2 li {
    border-bottom: 1px solid #15ACA2;
  }
  .menuArea ul.cate3 li {
    border-bottom: 1px solid #F3B300;
  }
  .menuArea ul.cate4 li {
    border-bottom: 1px solid #CB45E3;
  }
  .menuArea ul li.non {
    pointer-events: none;
  }
  .menuArea ul li.non a {
    opacity: 0.3;
  }
  .menuArea ul li a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    transition: 0.3s;
    z-index: -1;
  }
  .menuArea ul li a:hover::before {
    width: 100%;
  }
  .menuArea ul.cate1 li a:before {
    background: #DD004A;
  }
  .menuArea ul.cate2 li a:before {
    background: #15ACA2;
  }
  .menuArea ul.cate3 li a:before {
    background: #F3B300;
  }
  .menuArea ul.cate4 li a:before {
    background: #CB45E3;
  }
  /* ===================== openbtn（SP） ===================== */
  .openbtn {
    position: fixed;
    background: #DC003C;
    cursor: pointer;
    width: 96px;
    height: 96px;
    right: 1px;
    z-index: 100;
  }
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 30px;
    height: 2px;
    border-radius: 5px;
    background: #fff;
    width: 45%;
  }
  .openbtn span:nth-of-type(1) {
    top: 22px;
  }
  .openbtn span:nth-of-type(2) {
    top: 37px;
  }
  .openbtn span:nth-of-type(3) {
    top: 50px;
  }
  .openbtn span:nth-of-type(3)::after {
    content: "Menu";
    position: absolute;
    top: 8px;
    left: 0px;
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 28px;
    left: 25px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 40px;
    left: 25px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
  }
  .openbtn.active span:nth-of-type(3)::after {
    content: "Close";
    transform: translateY(0) rotate(-45deg);
    top: 14px;
    left: 25px;
  }
}
.menuArea .no {
  opacity: 0.3;
  pointer-events: none;
}/*# sourceMappingURL=menu.css.map */