@charset "UTF-8";
.topConts {
    padding-bottom: 5.56rem !important;
}

.noMain .topConts {
    padding-top: 50px;
}

@media screen and (min-width: 641px) {
    .topConts {
        padding-bottom: 6.25rem !important;
    }
    .noMain .topConts {
        padding-top: 80px;
    }
}

@media screen and (min-width: 1366px) {
    .topConts {
        padding-bottom: 100px !important;
    }
}

/*===================================
common parts
===================================*/

/*タグ*/

.tag {
    padding: 0.5em 1em;
    border: 1px solid;
    line-height: 1;
}

/*角丸*/

.ShapeR0 {
    /*タグ用*/
    border-radius: 0.78vw;
}

.ShapeR1 {
    /*メニュー用*/
    border-radius: 4.69vw;
}

.ShapeR2 {
    /*画像系処理用*/
    border-radius: 1.56vw;
}

.ShapeR3 {
    /*NEWS*/
    border-radius: 3.13vw;
}

.ShapeR4 {
    /*タイムライン*/
    border-radius: 12.5vw;
}

.ShapeR5 {
    /*バナー*/
    border-radius: 15.63vw;
}

.ShapeR6 {
    /*白地背景*/
    border-radius: 10.94vw;
}

.ShapeR7 {
    /*TOPダイジェストメニュー*/
    border-radius: 4.69vw;
}

/*日付*/

.date {
}

.date.dot {
    padding: 0 0 0 1.25em;
    position: relative;
}

.date.dot::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    left: 0;
    width: 0.5em;
    height: 0.48em;
    background: #f676a6;
    border-radius: 50%;
}

/*new*/

.new {
    position: relative;
    display: inline-block;
}

.new::before {
    content: "NEW";
    position: relative;
    color: inherit;
    padding: 0 1em 0 0;
    letter-spacing: 0;
    color: #7f1083;
}

.new::after {
    content: none;
}

/*重要*/
.important {
    position: relative;
    display: inline-block;
}

.important::before {
    content: "重要";
    position: relative;
    padding: 0 1em 0 0;
    letter-spacing: 0;
    color: #7f1083;
    font-weight: bold;
}

/*矢印*/

.cArrow {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}

.cArrow::before,
.cArrow::after {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    border-radius: 0.2em;
}

.cArrow.caR::before {
    right: -1.5em;
    width: 1.2em;
    height: 0.2em;
    /* background: #F676A6; */
    -webkit-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.cArrow.caR::after {
    right: -1.5em;
    width: 0.6em;
    height: 0.6em;
    border-top: 0.2em solid #000000;
    border-right: 0.2em solid #000000;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.cArrow.caL::before {
    left: -1.5em;
    width: 1.2em;
    height: 0.2em;
    /* background: #F676A6; */
    -webkit-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.cArrow.caL::after {
    left: -1.5em;
    width: 0.6em;
    height: 0.6em;
    border-bottom: 0.2em solid #000000;
    border-left: 0.2em solid #000000;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.cArrow.caR:hover::before,
a:hover .cArrow.caR::before,
.cArrow.caR:hover::after,
a:hover .cArrow.caR::after {
    right: -2em;
    -webkit-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.cArrow.caL:hover::before,
a:hover .cArrow.caL::before,
.cArrow.caL:hover::after,
a:hover .cArrow.caL::after {
    left: -2em;
    -webkit-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.formSet {
    text-align: left;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: auto;
}

.formBlk {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 1.5em;
}

.formSet input {
}

.formSet.formTxt {
}

.formSet.formTxtArea {
}

/*input text*/

input[type="text"],
input[type="password"],
textarea {
    background: #f5f5f5;
    border: none;
    width: 100%;
    padding: 1.8em 1.5em;
    border-radius: 4em;
    margin: 0 auto;
}

textarea {
    border-radius: 2em;
    resize: vertical;
}

/*checkbox*/

input[type="checkbox"] {
    display: none;
}

.cBox {
    position: relative;
    cursor: pointer;
}

.cBox p {
    padding: 0 0 0 1.5em;
    display: inline-block;
}

.cBox::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 1.2em;
    height: 1.2em;
    border: 1px solid #7f1083;
    left: -1em;
    opacity: 0.5;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cBox::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 1em);
    left: -0.4em;
    right: auto;
    width: 0.6em;
    height: 1.2em;
    opacity: 0;
    -webkit-transform: rotate(45deg) scale3d(0.7, 0.7, 1);
    transform: rotate(45deg) scale3d(0.7, 0.7, 1);
    border-bottom: 3px solid #7f1083;
    border-right: 3px solid #7f1083;
    -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cBox p::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 1.1em);
    left: -0.5em;
    right: auto;
    width: 0.6em;
    height: 1.2em;
    opacity: 0;
    -webkit-transform: rotate(45deg) scale3d(0.7, 0.7, 1);
    transform: rotate(45deg) scale3d(0.7, 0.7, 1);
    border-bottom: 6px solid #fff;
    border-right: 6px solid #fff;
    -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

input[type="checkbox"]:checked + .cBox::before {
    opacity: 1;
}

input[type="checkbox"]:checked + .cBox::after {
    opacity: 1;
    -webkit-transform: rotate(45deg) scale3d(1, 1, 1);
    transform: rotate(45deg) scale3d(1, 1, 1);
}

input[type="checkbox"]:checked + .cBox p::after {
    opacity: 1;
    -webkit-transform: rotate(45deg) scale3d(1, 1, 1);
    transform: rotate(45deg) scale3d(1, 1, 1);
}

@media screen and (min-width: 961px) {
    input[type="text"],
    input[type="password"],
    textarea {
        padding: 1.4em 2em 1.5em;
    }
}

@media screen and (min-width: 1366px) {
    .formBlk {
        padding: 4rem 1em;
    }
    input[type="text"],
    input[type="password"],
    textarea {
        padding: 20px 1em;
        font-size: 21px;
    }
}

/*radio*/

input[type="radio"] {
    display: none;
}

.rBox {
    position: relative;
    cursor: pointer;
    /* width: 100%; */
    /* border-bottom: 1px solid rgba(112, 112, 112, .3); */
    /* display: -webkit-box; */
    display: -ms-flexbox;
    /* display: flex; */
    /* -webkit-box-pack: justify; */
    -ms-flex-pack: justify;
    /* justify-content: space-between; */
    padding: 0em 0 0em 2em;
}

.rBox p {
    padding: 0;
    display: inline-block;
}

.rBox::before {
    content: "";
    display: block;
    position: absolute;
    top: 55%;
    width: 1.35em;
    height: 1.35em;
    border: 1px solid #454545;
    left: 0;
    opacity: 0.5;
    border-radius: 100%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rBox::after {
    content: "";
    display: block;
    position: absolute;
    top: 55%;
    left: 0.35em;
    width: 0.8em;
    height: 0.8em;
    border-radius: 100%;
    opacity: 0;
    background: #7f1083;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rBox p::after {
    /* content: ""; */
    display: block;
    position: absolute;
    top: calc(50% - 1.1em);
    left: -0.5em;
    right: auto;
    width: 0.6em;
    height: 1.2em;
    opacity: 0;
    -webkit-transform: rotate(45deg) scale3d(0.7, 0.7, 1);
    transform: rotate(45deg) scale3d(0.7, 0.7, 1);
    border-bottom: 6px solid #fff4f6;
    border-right: 6px solid #fff4f6;
    -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

input[type="radio"]:checked + .rBox::before {
    opacity: 1;
}

input[type="radio"]:checked + .rBox::after {
    opacity: 1;
}

input[type="radio"]:checked + .rBox p::after {
    opacity: 1;
    -webkit-transform: rotate(45deg) scale3d(1, 1, 1);
    transform: rotate(45deg) scale3d(1, 1, 1);
}

.selectFormLists {
    width: 100%;
    position: relative;
}

.selectFormLists::before {
    content: "";
    position: absolute;
    right: 1.2em;
    top: 42%;
    width: 5px;
    height: 5px;
    border-right: 1px solid;
    border-bottom: 1px solid;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.selectFormLists select {
    background: #fff;
    width: 100%;
    padding: 1.5em 1.5em;
    margin: 0 auto;
    border: 1px solid #e3e3e3;
}

@media screen and (min-width: 641px) {
    .ShapeR0 {
        /*タグ用*/
        border-radius: 0.78vw;
    }
    .ShapeR1 {
        /*メニュー用*/
        border-radius: 4.69vw;
    }
    .ShapeR2 {
        /*画像系処理用*/
        border-radius: 1.56vw;
    }
    .ShapeR3 {
        /*NEWS*/
        border-radius: 3.13vw;
    }
    .ShapeR4 {
        /*タイムライン*/
        border-radius: 12.5vw;
    }
    .ShapeR5 {
        /*バナー*/
        border-radius: 15.63vw;
    }
    .ShapeR6 {
        /*白地背景*/
        border-radius: 10.94vw;
    }
    .ShapeR7 {
        /*TOPダイジェストメニュー*/
        border-radius: 4.69vw;
    }
    .new::after {
        position: relative;
        right: inherit;
        margin: 0 0 0 1em;
    }
    .cBox:checked + .cBoxTxt::after {
        left: -16px;
    }
}

@media screen and (min-width: 961px) {
    .ShapeR0 {
        /*タグ用*/
        border-radius: 0.52vw;
    }
    .ShapeR1 {
        /*メニュー用*/
        border-radius: 4.17vw;
    }
    .ShapeR2 {
        /*画像系処理用*/
        border-radius: 1.04vw;
    }
    .ShapeR3 {
        /*NEWS*/
        border-radius: 2.08vw;
    }
    .ShapeR4 {
        /*タイムライン*/
        border-radius: 10.4vw;
    }
    .ShapeR5 {
        /*バナー*/
        border-radius: 10.4vw;
    }
    .ShapeR6 {
        /*白地背景*/
        border-radius: 7.29vw;
    }
    .ShapeR7 {
        /*TOPダイジェストメニュー*/
        border-radius: 2.08vw;
    }
}

@media screen and (min-width: 1366px) {
    .ShapeR0 {
        /*タグ用*/
        border-radius: 5px;
    }
    .ShapeR1 {
        /*メニュー用*/
        border-radius: 40px;
    }
    .ShapeR2 {
        /*画像系処理用*/
        border-radius: 10px;
    }
    .ShapeR3 {
        /*NEWS*/
        border-radius: 20px;
    }
    .ShapeR4 {
        /*タイムライン*/
        border-radius: 100px;
    }
    .ShapeR5 {
        /*バナー*/
        border-radius: 100px;
    }
    .ShapeR6 {
        /*白地背景*/
        border-radius: 70px;
    }
    .ShapeR7 {
        /*TOPダイジェストメニュー*/
        border-radius: 20px;
    }
}

/*===================================
Block Width
===================================*/

.blockWidthL {
    width: 93.75vw;
    max-width: 1228px;
    margin: 0 auto;
}

.blockWidthM {
    width: 93.75vw;
    max-width: 1228px;
    margin: 0 auto;
}

.blockWidthS {
    width: 88.75vw;
    max-width: 1228px;
    margin: 0 auto;
}

@media screen and (min-width: 961px) {
    .blockWidthM {
        width: 87.41vw;
    }
    .blockWidthS {
        width: 84.75vw;
    }
}

/*===================================
Youtube embed
===================================*/

.movieSet .iframeBlk {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.movieSet .iframeBlk::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

.movieSet .iframeBlk iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.movieSet .movTitle {
    text-align: left;
    margin: 1em auto 0;
}

/*===================================
Slider
===================================*/

.slideBlk {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.swiper-slide {
    overflow: hidden;
    opacity: 1;
}

.swiper-slide-active {
    opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: no-repeat;
}

.swiper-button-prev {
    left: 5%;
}

.swiper-button-next {
    right: 5%;
}

.swiper-button-prev::before,
.swiper-button-next::before {
    content: "";
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    width: 6px;
    height: 6px;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(calc(-50% + 1px), -50%) rotate(135deg);
    -ms-transform: translate(calc(-50% + 1px), -50%) rotate(135deg);
    transform: translate(calc(-50% + 1px), -50%) rotate(135deg);
}

.swiper-button-prev::before {
}

.swiper-button-next::before {
    -webkit-transform: translate(calc(-50% - 1px), -50%) rotate(-45deg);
    -ms-transform: translate(calc(-50% - 1px), -50%) rotate(-45deg);
    transform: translate(calc(-50% - 1px), -50%) rotate(-45deg);
}

.swiper-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 80%;
    position: relative;
    bottom: 0;
    margin: 20px auto 0;
}

.swiper-pagination span {
    background: #f5f5f5;
    width: 100%;
    height: 3px;
    display: inline-block;
    border-radius: 0;
    /* background: none; */
    opacity: 1;
    margin: 0 3px;
}

.swiper-pagination span.swiper-pagination-bullet-active {
    background: #919191;
    border: none;
}

@media screen and (min-width: 961px) {
    .swiper-slide-prev {
        opacity: 1;
    }
    .swiper-slide-next {
        opacity: 1;
    }
    .swiper-pagination span {
        height: 5px;
        margin: 0 5px 0;
    }
}

/*===================================
menu navi
===================================*/

.topNaviArea .menuSet .menuLists .menuList {
}

.topNaviArea .menuSet .menuLists > .menuList a {
}

.topNaviArea .menuSet .menuLists > .menuList .menuBlk {
}

.topNaviArea .menuSet .menuLists > .menuList .menuBlk figcaption {
}

.topNaviArea .menuSet .menuLists > .menuList .menuBlk svg {
}

.menuSet {
    /* width: 100%; */
    margin: 0 auto;
    padding: 0;
}

.menuSet .menuLists {
    margin: 0 auto;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.menuSet .menuLists > .menuList {
    letter-spacing: 0.1em;
    padding: 0;
    margin: 0 0 2vw;
    width: calc(100% / 3 - 1vw);
    border-radius: 1rem;
    border: 3px solid #f5f5f5;
    text-align: center;
}

.menuSet .menuLists > .menuList svg {
    width: 4em;
    height: 1.3em;
}

.menuSet .menuLists > .menuList a {
    width: 100%;
    height: 100%;
    padding: 1em 0.5em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.menuSet .menuLists > .menuList .menuBlk {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}

.menuSet .menuLists > .menuList .menuBlk figcaption {
    margin: 0 0 0 auto;
    width: 70%;
}

.menuSet .menuLists > .menuList .menuBlk svg {
    fill: #fff;
    width: 10vw;
    height: 7vw;
    margin: 0 0 0 2vw;
}

.menuSet .menuLists > .menuList.active {
    background: #fcfcfc;
    border: 3px solid #f5f5f5;
}

.menuSet .menuLists > .menuList.active a {
    color: #7f1083;
}

.menuSet .menuLists > .menuList.active p {
    font-weight: bold;
}

.typeB.menuSet .menuLists {
    /* justify-content: center; */
    position: relative;
}

.typeB.menuSet .menuLists > .menuList {
    margin: 0 0 2rem;
    border: none;
    border-bottom: 2px solid #e3e3e3;
    border-radius: 0;
    padding: 0 0 0.51em;
}

.typeB.menuSet .menuLists > .menuList svg {
}
.typeB.menuSet .menuLists > .menuList a p {
    line-height: 1.3;
}
.typeB.menuSet .menuLists > .menuList a {
    padding: 0;
}

.typeB.menuSet .menuLists {
    /* justify-content: center; */
    position: relative;
}

.typeB.menuSet .menuLists > .menuList {
    margin: 0 0 2rem;
    border: none;
    border-bottom: 2px solid #e3e3e3;
    border-radius: 0;
    padding: 0 0 0.51em;
}

#glbMenu .gNavBlk .typeC.menuSet {
    width: 100%;
    padding: 0;
}
.typeC.menuSet .menuLists {
    border-top: 1px solid #e6e6e6;
    background: #fff;
}
.typeC.menuSet .menuLists > .menuList {
    border: none;
    border-bottom: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    border-radius: 0;
    margin: 0;
    width: calc(100% / 3);
}
.typeC.menuSet .menuLists > .menuList:nth-child(3n + 3) {
    border-right: none;
}
.typeC.menuSet .menuLists > .menuList:nth-child(3n + 2) {
}
.typeC.menuSet .menuLists > .menuList a {
    padding: 0.8em 0 1.8em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}
.typeC.menuSet .menuLists > .menuList a img {
    width: 50%;
}
.typeC.menuSet .menuLists > .menuList a p {
    line-height: 1.3;
    margin: 0.5rem 0 0;
}

@media screen and (min-width: 641px) {
    .menuSet .menuLists > .menuList {
        width: calc(100% / 5 - 1.5vw);
        letter-spacing: 0.1em;
        padding: 0;
        margin: 0 0 2vw;
        border-radius: 2vw;
    }
    .menuSet .menuLists > .menuList svg {
        width: 4em;
        height: 1.3em;
    }
    .menuSet .menuLists > .menuList a {
        width: 100%;
        height: 100%;
        padding: 1.2em 1em;
    }
    .menuSet .menuLists > .menuList .menuBlk {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
    }
    .menuSet .menuLists > .menuList .menuBlk figcaption {
        width: 100%;
        margin: 0 auto;
    }
    .menuSet .menuLists > .menuList .menuBlk svg {
        width: 9vw;
        height: 7vw;
        margin: 0 auto 0.5em;
        max-width: 60px;
        max-height: 54.75px;
    }
    .typeB.menuSet .menuLists {
    }

    .typeB.menuSet .menuLists > .menuList {
    }

    .typeB.menuSet .menuLists > .menuList svg {
    }

    .typeB.menuSet .menuLists > .menuList a {
    }

    .typeB.menuSet .menuLists > .menuList .menuBlk {
    }

    .typeB.menuSet .menuLists > .menuList .menuBlk figcaption {
    }

    .typeB.menuSet .menuLists > .menuList .menuBlk svg {
    }

    .typeB.menuSet .menuLists > .menuList.active {
    }

    .typeB.menuSet .menuLists > .menuList.active a {
    }

    .typeB.menuSet .menuLists > .menuList.active p {
    }
}

@media screen and (min-width: 961px) {
    .menuSet {
        /* width: 100%; */
        padding: 0;
    }
    .menuSet .menuLists > .menuList {
        padding: 3vw;
    }
    .menuSet .menuLists > .menuList {
        padding: 0;
        width: calc(100% / 6 - 1vw);
        border-radius: 1rem;
        border: 3px solid #f5f5f5;
        text-align: center;
        margin: 0;
        position: relative;
        overflow: hidden;
    }
    .menuSet .menuLists > .menuList a {
        padding: 0.5em 0;
    }
    .menuSet .menuLists > .menuList .menuBlk {
        -ms-flex-flow: wrap;
        flex-flow: wrap;
    }

    .typeB.menuSet .menuLists {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .typeB.menuSet .menuLists > .menuList {
        -webkit-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
        -o-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
        transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    .typeB.menuSet .menuLists > .menuList:hover {
        border-bottom: 2px solid #7f1083;
        -webkit-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
        -o-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
        transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    .typeB.menuSet .menuLists > .menuList svg {
    }

    .typeB.menuSet .menuLists > .menuList a {
    }

    .typeB.menuSet .menuLists > .menuList .menuBlk {
    }

    .typeB.menuSet .menuLists > .menuList .menuBlk figcaption {
    }

    .typeB.menuSet .menuLists > .menuList .menuBlk svg {
    }

    .typeB.menuSet .menuLists > .menuList.active {
    }

    .typeB.menuSet .menuLists > .menuList.active a {
    }

    .typeB.menuSet .menuLists > .menuList.active p {
    }
    #glbMenu .gNavBlk .typeC.menuSet .menuLists > .menuList {
        width: calc(100% / 3);
        margin: 0;
    }
}

@media screen and (min-width: 1281px) {
    .menuSet .menuLists > .menuList {
        padding: 0;
    }
    .menuSet .menuLists > .menuList {
        padding: 0;
    }
}

/*===================================
informationSet
===================================*/

.informationSet {
    background: #fff;
    padding: 2em;
}

.informationSet .cDate {
    position: relative;
}

.informationSet .cDate::before {
    content: "";
    background: url("../img/info.svg") no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: -1.2em;
    width: 1.5em;
    height: 1.5em;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.informationSet a {
    text-decoration: underline;
    text-align: left;
    width: 70%;
}

.informationSet .cDate {
    margin: 0 1.2em 0 0;
    width: 20%;
}

@media screen and (min-width: 961px) {
    .informationSet a {
        width: 80%;
    }
    .informationSet .cDate {
        margin: 0 1em 0 0;
        width: 12%;
    }
}

/*===================================
テキストブロック
===================================*/

.indexTxtSet {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.8em 2em 1.2em;
    background: #fcfcfc;
    border-bottom: 2px solid #f5f5f5;
}

.indexTxtSet .indexInfo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
    width: 100%;
}

.indexTxtSet .date {
}

.indexTxtSet .tag {
}

.indexTxtSet .txtBlk {
    width: 100%;
    text-align: left;
    margin: 0.5rem 0 0;
}

.indexTxtSet .txtBlk a {
    text-decoration: none;
}

.indexTxtSet + .indexTxtSet {
    margin: 1rem auto 0;
}

@media screen and (min-width: 641px) {
    .indexTxtSet {
    }
    .indexTxtSet .indexInfo {
        width: 18%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .indexTxtSet .date {
        text-align: left;
        margin: 0 auto 0.2em 0;
        width: 100%;
    }
    .indexTxtSet .tag {
    }
    .indexTxtSet .txtBlk {
        width: 100%;
        margin: 0;
    }
    .indexTxtSet + .indexTxtSet {
    }
}

/*===================================
Title set
===================================*/

.titSet {
    margin: 0 auto;
}

.titSet h1 {
}

.titSet p {
}

.titSet p + h1 {
    margin: 0.1em auto 0;
}

.titSet h1 + p {
    line-height: 1.8;
}

.subTitset {
}

.subTitset .taL {
    text-align: left;
}

.subTitset svg {
    fill: #f676a6;
    width: 10vw;
    height: 7vw;
    margin: -3vw auto 0.5em;
    max-width: 50px;
    max-height: 53.75px;
}

.subTitset h2 {
}

@media screen and (min-width: 641px) {
    .titSet {
    }
    .titSet h1 {
    }
    .titSet p {
    }
    .titSet p + h1 {
    }
    .titSet h1 + p {
    }
    .subTitset {
    }
    .subTitset svg {
    }
    .subTitset h2 {
    }
}

@media screen and (min-width: 961px) {
    .titSet {
        max-width: 800px;
    }
    .titSet h1 {
    }
    .titSet p {
    }
    .titSet p + h1 {
    }
    .titSet h1 + p {
        line-height: 1.5;
    }
    .subNavigationSet {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row;
        flex-flow: row;
    }
    .subTitset {
    }
    .subTitset svg {
        margin: -1.5vw auto 0;
    }
    .subTitset h2 {
    }
}

.selectPatternBlk {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 40%;
    margin: 1rem 0 0 auto;
}

.selectPatternBlk .selectPatternList {
    /* width: 48%; */
    margin: 0 9%;
    opacity: 0.3;
}

.selectPatternBlk .selectPatternList.active {
    opacity: 1;
}

.selectPatternBlk .selectPatternList svg {
    width: 2em;
    height: 2em;
}

@media screen and (min-width: 961px) {
    .selectPatternBlk {
        width: 10%;
        margin: 0 1% 0 auto;
    }
    .selectPatternBlk .selectPatternList {
        /* width: 48%; */
        margin: 0 6%;
        opacity: 0.3;
    }
    .selectPatternBlk .selectPatternList.active {
        opacity: 1;
    }
    .selectPatternBlk .selectPatternList svg {
        width: 30px;
        height: 30px;
        cursor: pointer;
    }
}

/*緊急文言*/

.informationPop {
}

.informationPop .newsInfo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.informationPop .newsInfo .date {
    margin: 0 2em 0 0;
}

.informationPop .newsInfo .tag {
}

.informationPop .categoryTtl {
    text-align: left;
    position: relative;
    padding: 0 0 2rem;
}

.informationPop .categoryTtl::after {
    content: "";
    background-image: -o-linear-gradient(
            left,
            #f676a6,
            #f676a6 2px,
            transparent 2px,
            transparent 8px
    );
    background-image: linear-gradient(
            to right,
            #f676a6,
            #f676a6 2px,
            transparent 2px,
            transparent 8px
    );
    background-size: 10px 2px;
    background-repeat: repeat-x;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background-position: bottom;
}

.informationPop .popupInnerBlk {
}

@media screen and (min-width: 641px) {
    .informationPop {
    }
    .informationPop .newsInfo {
    }
    .informationPop .newsInfo .date {
    }
    .informationPop .newsInfo .tag {
    }
    .informationPop .categoryTtl {
    }
    .informationPop .popupInnerBlk {
    }
}

/*===================================
アコーディオン
===================================*/

.accordion {
    position: relative;
}

.accordion::after {
    content: "";
    position: absolute;
    right: -1.25em;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0.65em 0.4em 0 0.4em;
    border-color: #f676a6 transparent transparent transparent;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.accordion.clicked::after {
    -webkit-transform: translate(0, -50%) rotate(180deg);
    -ms-transform: translate(0, -50%) rotate(180deg);
    transform: translate(0, -50%) rotate(180deg);
}

.accBlk {
    display: none;
    -webkit-animation: show 0.5s linear 0s;
    animation: show 0.5s linear 0s;
    height: 0;
}

.accBlk.openAcc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
}

/*===================================
スクロールバー
===================================*/

/*Chrome*/

.scheduleLists::-webkit-scrollbar {
    /*縦方向スクロールバーの幅*/
    width: 8px;
}

.scheduleLists::-webkit-scrollbar:horizontal {
    /*横方向スクロールバーの高さ*/
    height: 8px;
}

.scheduleLists::-webkit-scrollbar-track {
    /*スクロールバーの軌道*/
    background: #fff4f6;
}

.scheduleLists::-webkit-scrollbar-thumb {
    /*つまみの部分*/
    border-radius: 10px;
    background: #e6e6e6;
}

.scheduleLists::-webkit-scrollbar-thumb:hover {
    /*マウスホバー時*/
    background: #e6e6e6;
}

/*Firefox*/

.scheduleLists {
    scrollbar-width: thin;
    scrollbar-color: #e6e6e6 #fff4f6;
}

/*===================================
パンくず
===================================*/

.breadBlk {
    margin: 2rem auto 3rem;
    width: 95%;
}

.breadBlk .breadLists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
}

.breadBlk .breadLists .breadList {
    line-height: 1;
    margin: 0 1em 0.5em 0;
    padding: 0 1.5em 0 0;
    position: relative;
}

.breadBlk .breadLists .breadList:not(:last-of-type)::after {
    content: "";
    position: absolute;
    right: 0;
    border-right: 1px solid;
    border-bottom: 1px solid;
    -webkit-transform: rotate(-45deg) translate(0, -50%);
    -ms-transform: rotate(-45deg) translate(0, -50%);
    transform: rotate(-45deg) translate(0, -50%);
    width: 0.5em;
    height: 0.5em;
    top: 50%;
}

@media screen and (min-width: 641px) {
    .breadBlk {
    }
}

/*===================================
item index
===================================*/

.itemArea .itemLists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 0;
}

.itemArea .itemLists .itemList {
    width: 47%;
    margin: 0 1.5% 8%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.itemArea .itemLists .itemList > a {
    margin: 0 auto auto;
    height: auto;
}

.itemArea .itemLists .itemList img {
}

.itemArea .itemLists .itemList figcaption {
    text-align: left;
    margin: 1em 0 0;
}

.itemArea .itemLists .itemList .itemCap {
    border: 1px solid;
    padding: 0.4em 0.5em 0.5em;
    line-height: 1.2;
    border-radius: 3px;
    margin: 0 0 0.5rem;
    display: inline-block;
}

.itemArea .itemLists .itemList .soldout {
    background: #cecece;
    display: inline-block;
    margin: 0.5em 0 0;
    padding: 0 1em 0.1em;
    border-radius: 4px;
    color: #fff;
}

.itemArea .itemLists .itemList .itemName {
    line-height: 1.6;
}

.itemArea .itemLists .itemList .itemPrice {
    margin: 0.5em 0 0;
}

.itemArea .itemLists .itemList .itemPrice .tax {
    padding: 0 0 0 0.5em;
}

.itemArea .itemLists .itemList .BtnCenter {
    margin: auto 0 0;
}

.itemArea .itemLists[data-layout="typeA"] .itemList {
    width: 47%;
    margin: 0 1.5% 8%;
}

.itemArea .itemLists[data-layout="typeB"] .itemList {
    width: 94%;
    margin: 0 1.5% 8%;
}

@media screen and (min-width: 961px) {
    .itemArea .itemLists {
        margin: 0 auto;
    }
    .itemArea .itemLists .itemList {
        margin: 0 1.5% 6%;
        width: calc(100% / 3 - 3%);
    }
    .itemArea .itemLists .itemList img {
    }
    .itemArea .itemLists .itemList figcaption {
    }
    .itemArea .itemLists .itemList .itemName {
    }
    .itemArea .itemLists .itemList .itemPrice {
    }
    .itemArea .itemLists .itemList .itemPrice .tax {
    }
    .itemArea .itemLists[data-layout="typeA"] .itemList {
        width: calc(100% / 5 - 3%);
        margin: 0 1.5% 6%;
    }
    .itemArea .itemLists[data-layout="typeB"] .itemList {
        width: calc(100% / 3 - 3%);
        margin: 0 1.5% 6%;
    }
}
/*===================================
230120_item index 最近チェックした商品
===================================*/
.itemList_top_rv  {
    width: 47%;
    margin: 0 1.5% 8%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.itemArea .itemLists .itemList_top_rv > a {
    margin: 0 auto auto;
    height: auto;
}

.itemArea .itemLists .itemList_top_rv img {
}

.itemArea .itemLists .itemList_top_rv figcaption {
    text-align: left;
    margin: 1em 0 0;
}

.itemArea .itemLists .itemList_top_rv .itemCap {
    border: 1px solid;
    padding: 0.4em 0.5em 0.5em;
    line-height: 1.2;
    border-radius: 3px;
    margin: 0 0 0.5rem;
    display: inline-block;
}

.itemArea .itemLists .itemList_top_rv .soldout {
    background: #cecece;
    display: inline-block;
    margin: 0.5em 0 0;
    padding: 0 1em 0.1em;
    border-radius: 4px;
    color: #fff;
}

.itemArea .itemLists .itemList_top_rv .itemName {
    line-height: 1.6;
}

.itemArea .itemLists .itemList_top_rv .itemPrice {
    margin: 0.5em 0 0;
}

.itemArea .itemLists .itemList_top_rv .itemPrice .tax {
    padding: 0 0 0 0.5em;
}

.itemArea .itemLists .itemList_top_rv .BtnCenter {
    margin: auto 0 0;
}

.itemArea .itemLists[data-layout="typeA"] .itemList_top_rv {
    width: 47%;
    margin: 0 1.5% 8%;
}

.itemArea .itemLists[data-layout="typeB"] .itemList_top_rv {
    width: 94%;
    margin: 0 1.5% 8%;
}
/*==================================*/
.pagerBlk {
}

.pagerBlk .pagerLists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 95%;
    margin: 0 auto;
}

.pagerBlk .pagerLists .pagerList {
    position: relative;
    padding: 0 1.2em;
}

/* .pagerBlk .pagerLists .pagerList::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translate(0, -50%) rotate(90deg);
    border-right: 1px solid;
    border-bottom: 1px solid;
    width: .5em;
    height: .5em;
} */

.pagerBlk .pagerLists .pagerList.pagerPrev {
    margin: 0 auto 0 0;
}

.pagerBlk .pagerLists .pagerList.pagerNext {
    margin: 0 0 0 auto;
}

.pagerBlk .pagerLists .pagerList.pagerPrev::before {
    -webkit-transform: translate(0, -50%) rotate(135deg);
    -ms-transform: translate(0, -50%) rotate(135deg);
    transform: translate(0, -50%) rotate(135deg);
    left: 0;
}

.pagerBlk .pagerLists .pagerList.pagerNext::before {
    -webkit-transform: translate(0, -50%) rotate(-45deg);
    -ms-transform: translate(0, -50%) rotate(-45deg);
    transform: translate(0, -50%) rotate(-45deg);
    right: 0;
}

/*===================================
animation
===================================*/

@-webkit-keyframes show {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes show {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media screen and (min-width: 641px) {
}

@media screen and (min-width: 961px) {
}

@media screen and (min-width: 1281px) {
}

/*===================================
商品検索
===================================*/

.itemArea .searchSet {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

.itemArea .searchSet .formSet {
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
    width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.itemArea .searchSet .formSet + .formSet {
    margin: 2rem auto 0;
}

.itemArea .searchSet .formSet .formSubTtlBlk {
    width: 20%;
    margin: 0 5% 0 0;
}

.itemArea .searchSet .formSet .formContsBlk {
    width: 75%;
}

.itemArea .searchSet .formSet .selectFormLists {
}

.itemArea .searchSet .formSet .selectFormLists select {
}

.itemArea .searchSet .formSet .search {
}

.itemArea .searchSet .formSet .searchBtn {
    outline: none;
    border: none;
    background: #7f1083;
    color: #fff;
    margin: 0 auto;
    padding: 1em 2em;
    width: 60%;
    max-width: 240px;
    border-radius: 6px;
    -webkit-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    cursor: pointer;
}

.itemArea .searchSet .formSet .searchBtn:hover {
    -webkit-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    opacity: 0.5;
}

@media screen and (min-width: 641px) {
}

@media screen and (min-width: 961px) {
    .itemArea .searchSet .formSet {
    }
    .itemArea .searchSet .formSet .formSubTtlBlk {
    }
    .itemArea .searchSet .formSet .formContsBlk {
    }
    .itemArea .searchSet .formSet .selectFormLists {
    }
    .itemArea .searchSet .formSet .selectFormLists select {
        width: 600px;
    }
    .itemArea .searchSet .formSet .search {
    }
    .itemArea .searchSet .formSet .searchBtn {
    }
}

@media screen and (min-width: 1281px) {
}

/*===================================

===================================*/

@media screen and (min-width: 641px) {
}

@media screen and (min-width: 961px) {
}

@media screen and (min-width: 1281px) {
}

/*===================================

===================================*/

@media screen and (min-width: 641px) {
}

@media screen and (min-width: 961px) {
}

@media screen and (min-width: 1281px) {
}
