@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
@import url('https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300&display=swap');


/* reset */
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
}
html {
    margin: 0;
    padding: 0;
    font-size: 62.5%;
}
body {
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
    line-height: 1.4;
    color: #333333;
    overflow-x: hidden;
}
* {
    font-family:"游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
    font-size: inherit;
    line-height: inherit;
}
a {
    text-decoration: none;
    color: #0000ee;
}
a:hover img {
	filter: alpha(opacity=80);
	opacity:0.8;
	-moz-opacity:0.8;
}

article,
aside,
footer,
header,
nav,
section,
main {
    display: block;
}
* {
    box-sizing: border-box;
}
*::before,
*::after {
    box-sizing: border-box;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
ol,
ul {
    list-style: none;
}
img,
video {
    max-width: 100%;
}
img {
    border-style: none;
}
[hidden] {
    display: none !important;
}
[disabled] {
    cursor: not-allowed;
}
:focus:not(:focus-visible) {
    outline: none;
}
*:focus {
    outline: none;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
select::-ms-expand { display: none; }

button,
input[type="submit"]{
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}
a[href^="tel:"] {
    pointer-events: none;
}







.container {
    margin: 0;
    padding: 0;
    width: 100%;
}


h2 {
    margin: 0 0 50px 0;
    padding: 0;
    font-size: 3rem;
    position: relative;
}
    .underlineOrg65::after{
      width: 65px;
      content: "";
      border-bottom: 2px solid #f9610b;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: -15px;
      margin: auto;
    }
@media screen and (max-width: 481px) {
    h2 {
        margin: 0 0 35px 0;
        padding: 0;
        font-size: 2.5rem;
        position: relative;
    }
}




h3 {
    margin: 0;
    padding: 0;
    font-size: 2rem;
}
h4 {
    margin: 0;
    padding: 0;
    font-size: 1.8rem;
}









/* ヘッダー
------------------------------------------------*/
header {
	position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 90px;
    background: #fff;
    -webkit-filter: drop-shadow(0px 3px 5px rgba(0,0,0,.5));
    filter: drop-shadow(0px 0px 5px rgba(0,0,0,.5));
}
h1 {
    position: absolute;
    top: 30px;
    left: 20px;
    margin: 0;
    padding: 0;
}

.app {
    position: absolute;
    top: 25px;
    right: 60px;
    margin: 0;
    padding: 0;
    width: 40px;
    height: 40px;
    font-size: 1rem;
    box-shadow:0px 0px 6px 3px #eeeeee;
}

.gNav #navTgl {
    display: none;
}
.gNav label {
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0;
}
.gNav .open {
    position: fixed;
    top: 25px;
    right: 10px;
    z-index: 999999;
    width: 40px;
    height: 40px;
    border: 1px solid #f9610b;
    background: rgba(255, 255, 255, 0.8);
    transition: background .6s, transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.gNav .open::before,
.gNav .open::after {
    content: "";
}
.gNav .open span,
.gNav .open::before,
.gNav .open::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: 30%;
    width: 40%;
    border-bottom: 2px solid #f9610b;
    transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.gNav .open::before {
    transform: translateY(-8px);
}
.gNav .open::after {
    transform: translateY(8px);
}
.gNav .close {
    z-index: 999998;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: background .6s;
}
.gNav #navTgl:checked + .open {
    background: transparent;
    transform: translateX(-250px);
}
.gNav #navTgl:checked + .open span {
    transform: scaleX(0);
}
.gNav #navTgl:checked + .open::before {
    transform: rotate(45deg);
}
.gNav #navTgl:checked + .open::after {
    transform: rotate(-45deg);
}
.gNav #navTgl:checked ~ .close {
    pointer-events: auto;
    background: rgba(0, 0, 0, .8);
}
/* :::::: drawer menu :::::: */
.gNav .menu {
    z-index: 999999;
    position: fixed;
    overflow: auto;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    margin: 0;
    padding: 10px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 1);
    transform: translateX(100%);
    transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.gNav .menu h2,
.gNav .menu a {
    color: #333333;
}
.gNav .menu h2 {
    margin-top: 20px;
    text-align: center;
}
.gNav .menu ul {
    margin: 0;
    padding: 0;
}
.gNav .menu li {
    width: 100%;
    font-size: 1.6rem;
    line-height: 2.5;
}
.gNav .menu li ::after {
    position: absolute;
    right: 20px;
    content: 'keyboard_arrow_right';
    font-family: "Material Icons";
    padding-right: 8px;
    color: #f9610b;
}
.gNav .menu li:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, .6);
}
.gNav .menu a {
    display: block;
    padding: 0 0 0 1em;
    text-decoration: inherit;
    transition: background .6s;
}
.gNav .menu a:hover {
    background: #f5f5f5;
}
.gNav #navTgl:checked ~ .menu {
    transform: none;
}















.searchTop {
    margin: 0;
    padding: 13% 0 22% 0;
    width: 100%;
    background-size: cover;
    background-image: url(../images/bgSearch01.jpg);
}

.searchTop p {
    display: block;
    margin: 0 auto 35px auto;
    color: #fff;
    text-align: center;
    font-size: 1.4rem;
    text-decoration: underline;
}
.searchTop p a {
    color: #fff;
}

/* セレクト */
.selectWrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 0;
    max-width: 835px;
}




/* インプットテキスト */
.kWord {
    display: inline-block;
    margin: 0 0 5px 0;
    padding: 1%;
    width: 33.3333%;
}
.kWord input {
    display: inline-block;
    border: 0;
    padding: 18px;
    width: 100%;
    border: 0;
    margin: 0;
    border-radius: 5px;
}

.kWord.sp {
    margin: 0 0 10px;
}

.kWord.sp input {
    padding: 18px 5px;
    width: 100%;
}

.kWord input::placeholder {
    color: #a3a3a3;
}
@media screen and (max-width: 680px) {
    .searchTop .kWord {
        margin: 0 0 2.5% 0;
        padding: 1% 10%;
    }
    .kWord {
        display: inline-block;
        margin: 0 0 2.5% 0;
        /* padding: 1% 10%; */
        width: 100%;
    }

    #side-submit {
        margin-bottom: 20px;
    }
}





/* セレクト */
.selectTodouhuken,
.selectBrand {
    display: block;
    margin: 0 0 20px 0;
    padding: 1%;
    width: 33.3333%;
}
.selectTodouhuken .dropdown,
.selectBrand .dropdown {
    position: relative;
    height: 58px;
    color: #474747;
    text-align: left;
    border-radius: 5px;
    transition: all .5s ease;
    background-color: #fff;
}
.selectTodouhuken .dropdown .select,
.selectBrand .dropdown .select {
    display: block;
    padding: 18px;
    color: #a3a3a3;
    cursor: pointer;
}
.selectTodouhuken .dropdown .select > i ,
.selectBrand .dropdown .select > i {
    color: #f9610b;
    cursor: pointer;
    transition: all .3s ease-in-out;
    float: right;
    line-height: 20px;
}
.selectTodouhuken .dropdown:active,
.selectBrand .dropdown:active {
    background-color: #f8f8f8;
}
.selectTodouhuken .dropdown.active:hover,
.selectTodouhuken .dropdown.active,
.selectBrand .dropdown.active:hover,
.selectBrand .dropdown.active {
    border-radius: 5px 5px 0 0;
    background-color: #f8f8f8;
}
.selectTodouhuken .dropdown.active .select > i,
.selectBrand .dropdown.active .select > i {
    transform: rotate(90deg);
}
.selectTodouhuken .dropdown .dropdown-menu,
.selectBrand .dropdown .dropdown-menu {
    position: absolute;
    left: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    max-height: 300px;
    list-style: none;
    overflow: hidden;
    overflow-y: auto;
    border-radius: 0 1px 5px 5px;
    z-index: 9;
    background-color: #fff;
    display: none;
}
.selectTodouhuken .dropdown .dropdown-menu li,
.selectBrand .dropdown .dropdown-menu li {
    padding: 10px;
    transition: all .2s ease-in-out;
    cursor: pointer;
} 
.selectTodouhuken .dropdown .dropdown-menu li:hover,
.selectBrand .dropdown .dropdown-menu li:hover {
    color: #fff;
    background-color: #f9610b;
}
.selectTodouhuken .dropdown .dropdown-menu li:active,
.selectBrand .dropdown .dropdown-menu li:active {
    background-color: #e2e2e2;
}
@media screen and (max-width: 680px) {
    .selectTodouhuken,
    .selectBrand {
        display: block;
        margin: 0 0 2.5% 0;
        padding: 1% 10%;
        width: 100%;
    }
}

/* チェックボックス */
.requirementTop {
    margin: 0 0 30px 0;
    padding: 15px 0 10px 0;
    width: 100%;
    color: #fff;
    text-align: center;
    background: rgba(0,0,0,0.5);
}
.requirementTop section {
    display: inline-block;
    padding: 0 5%;
    text-align: left;
}
.requirementTop section label {
    display: inline-block;
    margin: 0 0 5px 0;
    padding: 0 10px;
}
.requirementTop section label .ckbx-input {
    display: none;
}
.requirementTop section label .ckbx-parts {
    position:relative;
    padding: 0 0 0 18px;
    margin: 0;
}
.requirementTop section label .ckbx-parts::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #fff;
    border-radius: 2px;
}
.requirementTop section label .ckbx-input:checked + .ckbx-parts {
    color: #fff;
}
.requirementTop section label .ckbx-input:checked + .ckbx-parts::after {
    content: "";
    display: block;
    position: absolute;
    top: -6px;
    left: 5px;
    width: 8px;
    height: 16px;
    transform: rotate(40deg);
    border-bottom: 3px solid #f9610b;
    border-right: 3px solid #f9610b;
}






/* エリアから探す */
.areaKaraSagasuWrap  {
    display: block;
    margin: 0;
    padding: 0;
    max-width: 100%;
    text-align: center;
}
@media screen and (min-width: 480px) and ( max-width: 896px) {
    .areaKaraSagasuWrap  {
        display: block;
        margin: 0 auto;
        padding: 0;
        max-width: 90%;
        text-align: center;
    }
}
.areaKaraSagasuWrap .areaKaraSagasu {
    margin: -100px auto 60px auto;
    padding: 60px 50px 50px 50px;
    max-width: 980px;
    border-radius: 10px;
    background: #FAFAFA;
}
.areaKaraSagasuWrap .areaKaraSagasu .blockWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.areaKaraSagasuWrap .areaKaraSagasu .blockWrap ul {
    display: inline-block;
    margin: 0 0 50px 0;
    padding: 0 10px;
    width: 33.3333%;
    font-size: 1.6rem;
    text-align: left;
    vertical-align: top;
}
.areaKaraSagasuWrap .areaKaraSagasu .blockWrap ul li {
    display: inline;
    margin: 0 5px 0 0;
    padding: 0 10px 0 0;
    line-height: 2.5;
    border-right: solid 1px #0000ee;
}
.areaKaraSagasuWrap .areaKaraSagasu .blockWrap ul li.block {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 1.8rem;
    font-weight: bold;
    border-right: 0;
}
.areaKaraSagasuWrap .areaKaraSagasu p {
    font-size: 1.4rem;
}

@media screen and (max-width: 481px) {
    .areaKaraSagasuWrap  {
        display: block;
        margin: 0 auto 20px auto;
        padding: 0 10px;
        width: 100%;
        text-align: center;
    }
    .areaKaraSagasuWrap .areaKaraSagasu {
        display: block;
        margin: 0 auto 0 auto;
        padding: 20px 10px;
        width: 100%;
        border-radius: 10px;
        background: #fafafa;
    }
    .areaKaraSagasuWrap .areaKaraSagasu .blockWrap {
        margin: 0 0 30px 0;
        padding: 0;
        width: 100%;
    }
    .areaKaraSagasuWrap .areaKaraSagasu .block {
        margin: 0;
        padding: 0;
        width: 100%;
    }
    .areaKaraSagasuWrap .areaKaraSagasu .block label {
        position: relative;
        display: block;
        margin: 0 0 5px 0;
        padding: 15px 10px 15px 20px;
        width: 100%;
        text-align: left;
        font-weight: bold;
        cursor :pointer;
        border: solid 1px #f5f5f5;
        border-radius: 5px;
        background: #fff;
        -webkit-filter: drop-shadow(0px 1px 3px rgba(0,0,0,.2));
        filter: drop-shadow(0px 1px 3px rgba(0,0,0,.2));
    }
    .areaKaraSagasuWrap .areaKaraSagasu .block input {
        display: none; 
    }
    .areaKaraSagasuWrap .areaKaraSagasu .block div {
        margin: 0 0 0 0;
        padding: 0 0 5px 0;
        height: 0;
        overflow-y: hidden;
        transition: 1s;
        opacity: 0;
    }
    .areaKaraSagasuWrap .areaKaraSagasu .block div ul {
        margin: 0 0 0 0;
        padding: 10px 0 20px 0;
        width: 100%;
    }
    .areaKaraSagasuWrap .areaKaraSagasu .block div ul li {
        display: inline-block;
        margin: 10px;
        padding: 0;
        line-height: 1.4;
        text-align: center;
        border-right: none;
        text-decoration: underline;

    }
    .areaKaraSagasuWrap .areaKaraSagasu .block input:checked + label + div {
        height: auto;
        opacity: 1;
    }
    .areaKaraSagasuWrap .areaKaraSagasu .block label::after {
        position: absolute;
        top: 16px;
        right: 30px;
        content: 'add';
        font-family: "Material Icons";
        padding-right: 8px;
        color: #f9610b;
    }
    .areaKaraSagasuWrap .areaKaraSagasu .block input:checked + label::after {
        content: 'remove';
        color: #f9610b;
    }
}










/* PRバナー */
.prBnr {
    display: block;
    margin: 0 auto 50px auto;
    padding: 0;
    max-width: 980px;
}
.prBnr li {
    padding: 0 5px
}    
.prBnr li img {
    border-radius: 10px
}    
.prBnr .prev {
    position: absolute;
    top: 35%;
    left: -5%;
    cursor: pointer;
    z-index: 8888;
}
.prBnr .next {
    position: absolute;
    top: 35%;
    right: -5%;
    cursor: pointer;
    z-index: 8888;
}
.prBnr .next i ,
.prBnr .prev i {
    font-size: 3em;
}
@media screen and (min-width: 480px) and ( max-width: 896px) {
    .prBnr {
        display: block;
        margin: 0 auto 50px auto;
        padding: 0;
        max-width: 90%;
    }
    .prBnr .prev {
        position: absolute;
        top: 30%;
        left: -5%;
        z-index: 8888;
    }
    .prBnr .next {
        position: absolute;
        top: 30%;
        right: -5%;
        z-index: 8888;
    }
}
@media screen and (max-width: 481px) {
    .prBnr {
        display: block;
        margin: 0 auto 50px auto;
        padding: 0;
        max-width: 980px;
    }
    .prBnr li img {
        padding: 5%;
        border-radius: 10px
    }
    .prBnr .prev {
        position: absolute;
        top: 40%;
        left: 0;
        z-index: 8888;
    }
    .prBnr .next {
        position: absolute;
        top: 40%;
        right: 0;
        z-index: 8888;
    }
}






/* ブランドから探す */
.brandWrap {
    display: block;
    margin: 0 auto 30px auto;
    padding: 0;
    max-width: 980px;
}
.brandWrap ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 30px 0;
    padding: 0;
}
.brandWrap ul li {
    margin: 1%;
    padding: 0;
    width: 18%;
}
.brandWrap ul li img {
    border-radius: 5px;
}
.brandWrap ul li img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.brandWrap ul li:hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
@media screen and (min-width: 480px) and ( max-width: 896px) {
    .brandWrap {
        display: block;
        margin: 0 auto 30px auto;
        padding: 0;
        width: 90%;
    }
}
@media screen and (max-width: 481px) {
    .brandWrap {
        display: block;
        margin: 0 auto 80px auto;
        padding: 0 10px;
        width: 100%;
    }
    .brandWrap ul {
        display: block;
        margin: 0 0 30px 0;
        padding: 0;
        font-size: 0;
    }
    .brandWrap ul li {
        margin: 1%;
        padding: 5px 0;
        width: 100%;
        border-bottom: solid 1px #d3d3d3;
    }
    .brandWrap ul li img {
        display: inline-block;
        width: 25%;
        border-radius: 5px;
        vertical-align: middle;
    }
    .brandWrap ul li span {
        display: inline-block;
        padding: 0 0 0 10px;
        width: 75%;
        font-size: 1.6rem;
        vertical-align: middle;
    }
    .brandWrap ul li a {
        color: #333333!important;
    }
    
}



/* お知らせ＆PRバナー :::::::::::::::::: */
.oshirase-bnr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto 30px auto;
    padding: 0 10px;
    max-width: 980px;
}
.oshirase-bnr .oshirase {
    margin: 0;
    padding: 0 3% 0 0;
    width: 75%;
}
.oshirase-bnr .bnr {
    margin: 0;
    padding: 0;
    width: 25%;
}
@media screen and (max-width: 481px) {
    .oshirase-bnr .oshirase {
        margin: 0;
        padding: 0;
        width: 100%;
    }
    .oshirase-bnr .bnr {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 0;
        padding: 0;
        width: 100%;
    }
    .oshirase-bnr .bnr a {
        margin: 0;
        padding: 0 1%;
        width: 50%;
    }
}
    
    
.grad-wrap {
    position: relative;
    width: 100%;
}
.grad-wrap + .grad-wrap {
    margin-top: 40px;
}
.grad-btn {
    z-index: 3;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 5px 10px;
    text-align: center;
    color: #f9610b;
    font-size: 1.6rem;
    background: #fff;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: -10px;
}
.grad-btn::before {
    content: "続きを読む";
}
.grad-btn::after {
    content:'keyboard_arrow_down';
    font-family: "Material Icons";
    position: relative;
    top: 3px;
}
.grad-item {
    position: relative;
    overflow: hidden;
    margin: 0 0 30px 0;
    height: 120px;
    border-bottom: solid 1px #d3d3d3;
}
.grad-item ul {
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: 0;
}
.grad-item ul li {
    display: inline-block;
    margin: 0;
    padding: 0 0 20px 0;
    width: 20%;
    font-size: 1.4rem;
    vertical-align: top;
}
.oshirase .grad-item ul li:last-child {
    width: 80%;
}
.grad-item ul li p {
    display: inline-block;
    position: relative;
    margin: 0;
    padding: 0 10px;
    line-height: 2;
    vertical-align: top;
}
.grad-item ul li p .date {
    margin-right: 15px;
    color: #f9610b;
    font-weight: bold;
}
.grad-item ul li p .title {
    margin-right: 15px;
    color: #a9a9a9;
    font-weight: bold;
}

.grad-item ul li p a .title {
    color: #434777;
}

.grad-item ul li p .cate {
    margin-right: 15px;
    padding: 4px 10px 3px 10px;
    color: #fff;
    font-size: 1.2rem;
    background: #1e89ae;
    border-radius: 30px;
}
.grad-item ul li p .more {
    position: absolute;
    right: 0;
    padding: 0;
    color: #f9610b;
    font-size: 1.4rem;
    font-weight: bold;
}
.grad-item ul li p .more a {
    color: #f9610b;
}
.grad-item::before {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
    background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
    content: "";
    z-index: 2;
}
.grad-trigger {
    display: none;
}
.grad-trigger:checked ~ .grad-btn::before {
    content: "閉じる";
}
.grad-trigger:checked ~ .grad-btn::after {
    content:'keyboard_arrow_up';
    font-family: "Material Icons";
    position: relative;
    top: 3px;
}
.grad-trigger:checked ~ .grad-item {
    height: auto;
}
.grad-trigger:checked ~ .grad-item::before {
    display: none;
}

.oshirase {
    margin-bottom: 2em;
}

.oshiraseItem {
    position: relative;
    box-sizing: border-box;
    margin: 0 0 60px 0;
    padding: 10px;
}
.oshiraseItem-content {
    position: relative;
    overflow: hidden;
    height: 100px;
}
.oshiraseItem-content ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    width: 100%;
}
.oshiraseItem-content ul li {
    margin: 0;
    padding: 5px;
    width: 20%;
}
.oshiraseItem-content ul li:last-child {
    width: 80%;
}
.oshiraseItem-content::before {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    content: "";
    height: 50px;
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.8) 50%, #fff 100%);
    background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.8) 50%, #fff 100%);
}
.oshiraseItem-label {
    display: table;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    margin: 0 auto;
    z-index: 2;
    padding: 0 10px;
    background-color: transparent;
    border-radius: 10px;
    color: #f9610b;
}
.oshiraseItem-label:before {
    content: '続きを読む +';
}
.oshiraseItem-check{
    display: none;
}
.oshiraseItem-check:checked ~ .oshiraseItem-label {
    position: static;
    transform: translateX(0);
    -webkit-transform: translateX(0);
}
.oshiraseItem-check:checked ~ .oshiraseItem-label:before {
    content: '閉じる';
}
.oshiraseItem-check:checked ~ .oshiraseItem-content {
    height: auto;
}
.oshiraseItem-check:checked ~ .oshiraseItem-content::before {
    display: none;
}

.sdOshirase_wrap {
    margin: 0;
    padding: 0 0 80px 0;
    width: 100%;
}
.sdOshirase_desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin: 0 0 25px 0;
    padding: 0;
    width: 100%;
}
.sdOshirase_desc li {
    margin: 0;
    padding: 0;
    width: 20%;
}
.sdOshirase_desc li:last-child {
    margin: 0;
    padding: 0;
    width: 80%;
}
.sdOshirase_desc li p.title {
    margin: 0 0 .5em 0;
    color: #aaaaaa;
    font-weight: bold;
}
.sdOshirase_desc li p.title .date {
    margin-right: 10px;
    color: #f9610b;
}
.sdOshirase_desc li p.title::after {
    position: relative;
    left: 10px;
    content: 'NEW';
    padding: 3px 15px 2px 15px;
    color: #ffffff;
    font-size: .8em;
    font-weight: normal;
    background: #2386af;
    border-radius: 20px;
}


.sdOshirase_item_hide {
    margin: 0;
    padding: 0;
}
.sdOshirase_item_hide .button {
    margin: 0 auto;
    padding: 10px 0;
    width:200px;
    text-align: center;
    color:#fff;
    background:#f9610b;
    border-radius: 30px;
}
.sdOshirase_item_hide .close {
    background:#f9610b;
}


.sdOshirase_item{
    position: relative;
    box-sizing: border-box;
    margin: 0 0 60px 0;
    padding: 0;
}
.sdOshirase_item_content{
    position: relative;
    overflow: hidden;
    height: 100px;
}
.sdOshirase_item_content::before {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    content: "";
    height: 50px;
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.8) 50%, #fff 100%);
    background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.8) 50%, #fff 100%);
}
.sdOshirase_item_label{
    display: table;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    margin: 0 auto;
    z-index: 2;
    padding: 0 10px;
    border-radius: 10px;
    color: #f9610b;
}
.sdOshirase_item_label:before {
    content: '続きを読む +';
}
.sdOshirase_item_check{
    display: none;
}
.sdOshirase_item_check:checked ~ .sdOshirase_item_label{
    position: static;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    /* ↓↓↓「閉じる」必要がない場合 */
    /* display: none; */
}
.sdOshirase_item_check:checked ~ .sdOshirase_item_label:before{
    content: '閉じる ×';
}
.sdOshirase_item_check:checked ~ .sdOshirase_item_content{
    height: auto;
}
.sdOshirase_item_check:checked ~ .sdOshirase_item_content::before {
    display: none;
}

/* 履歴 */
.rirekiWrap {
    display: block;
    margin: 0 auto 60px auto;
    padding: 0;
    max-width: 980px;
}
.rirekiWrap .rireki li {
    position: relative;
    padding: 0 4%;
}
.rirekiWrap .rireki li img {
    border-radius: 5px;
}
.rirekiWrap .rireki li .kyori {
    position: absolute;
    top: 15px;
    left 0;
    margin-left: 10px;
    padding: 4px 10px 5px 10px;
    color: #fff;
    font-size: 12px;
    background: #1e89ae;
    border-radius: 35px;
}
.rirekiWrap .prev {
    position: absolute;
    top: 35%;
    left: -4%;
    z-index: 8888;
}
.rirekiWrap .next {
    position: absolute;
    top: 35%;
    right: -4%;
    z-index: 8888;
}
.rirekiWrap .next i ,
.rirekiWrap .prev i {
    font-size: 3em;
}

@media screen and (min-width: 480px) and ( max-width: 896px) {
    .rirekiWrap {
        display: block;
        margin: 0 auto 60px auto;
        padding: 0;
        width: 90%;
    }
    .rirekiWrap .prev {
        position: absolute;
        top: 30%;
        left: -5%;
        z-index: 8888;
    }
    .rirekiWrap .next {
        position: absolute;
        top: 30%;
        right: -5%;
        z-index: 8888;
    }
}
@media screen and (max-width: 481px) {
    .rirekiWrap {
        display: block;
        margin: 0 auto 30px auto;
        padding: 0;
        width: 100%;
    }
    .rireki {
        width: 100%;
    }
    .rirekiWrap .prev {
        top: 30%;
        left: -3%;
    }
    .rirekiWrap .next {
        top: 30%;
        right: -3%;
    }
}






















/* メイン ---------------------------------------*/

.wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0;
    max-width: 980px;
}
@media screen and (max-width: 481px) {
    .wrapper {
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
    }
}

.main {
    margin: 0;
    width: 100%;
    margin-right: -230px;
    padding-right: 250px;
    padding-left: 10px;
}
@media screen and (max-width: 481px) {
    .main {
        display: block;
        margin: 0;
        padding: 0 10px;
        width: 100%;
    }
}

.main11 {
    margin: 0;
    padding: 0;
    width: 100%;
}
@media screen and (min-width: 480px) and ( max-width: 896px) {
    .main11 {
        margin: 0;
        padding: 0 10px;
        width: 100%;
    }
}
@media screen and (max-width: 481px) {
    .main11 {
        display: block;
        margin: 0;
        padding: 0 10px;
        width: 100%;
    }
}


/* PAGENATION */
.pagenation {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    margin: 20px 0;
    padding: 0;
    width: 100%;
}
.pagenation p {
    text-align: left;
    vertical-align: bottom;
}
.pagenation p a {
    margin: 0 20px 0 0;
    color: #f9610b;
}
.pagenation p span {
    font-size: 1.6em;
}
.pagenation p i {
    position: relative;
    top: 6px;
}
.pagenation p.modoru button {
    color: #f9610b!important;
    background: #ff0000;
}
.pagenation ul {
    text-align: right;
    vertical-align: bottom;
}
.pagenation ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
    color: #f9610b;
}
.pagenation ul li a {
    display: block;
    padding: 3px 8px;
    color: #f9610b;
    border: solid 1px #f9610b;
}
.pagenation ul li a:hover {
    color: #fff;
    background: #f9610b;
}
@media screen and (min-width: 480px) and ( max-width: 896px) {
    .pagenation p {
        font-size: 1.2rem;
        text-align: left;
        vertical-align: bottom;
    }
    .pagenation ul {
        font-size: 1.2rem;
        text-align: right;
        vertical-align: bottom;
    }
}
@media screen and (max-width: 481px) {
    .pagenation {
        display: block;
        margin: 20px 0;
        padding: 0;
        width: 100%;
    }
    .pagenation p {
        display: block;
        margin: 10px 0;
        padding: 0;
        width: 100%;
        text-align: center;
    }
    .pagenation ul {
        margin: 0;
        padding: 0;
        width: 100%;
        text-align: center;
    }
}



/* 店舗リスト */
.storeList {
    margin: 0 0 30px 0;
    padding: 15px;
    width: 100%;
    border-radius: 10px;
    background: #f7f7f7;
}
@media screen and (min-width: 480px) and ( max-width: 896px) {
    .storeList {
        margin: 0 0 15px 0;
        padding: 15px;
        width: 100%;
        border-radius: 10px;
        background: #f7f7f7;
    }
}

/* 店舗詳細ページ */
.store_details {
    margin: 0 0 30px 0;
    padding: 0;
    width: 100%;
    border-radius: 10px;
}




/* 店舗名 */
.storeName {
    display: block;
    margin: 0 0 10px 0;
    padding: 0;
    width: 100%;
    font-size: 0;
}
.storeName .logo  {
    display: inline-block;
    margin: 0;
    padding: 0;
    width: 15%;
    vertical-align: middle;
}
.storeName .name {
    display: inline-block;
    margin: 0;
    padding: 0 0 0 20px;
    width: 72%;
    vertical-align: middle;
}
.storeName .name p {
    margin: 0;
    padding: 0;
    font-size: 1.8rem;
}
.storeName .name h2 {
    margin: 0;
    padding: 0;
    font-size: 3rem;
}
.storeName .genzaichikara {
    display: inline-block;
    margin: 0;
    padding: 0;
    width: 13%;
    font-size: 2rem;
    text-align: center;
    vertical-align: middle;
}
.storeName .genzaichikara i {
    position: relative;
    top: 3px;
    color: #f9610b;
}





@media screen and (min-width: 480px) and ( max-width: 896px) {
    .storeName .name p {
        font-size: 1.4rem;
    }
    .storeName .name h2 {
        font-size: 2.2rem;
    }
}
@media screen and (max-width: 481px) {
    .storeName .logo  {
        display: inline-block;
        margin: 0;
        padding: 0 5px 0 0;
        width: 20%;
        vertical-align: middle;
    }
    .storeName .name {
        display: inline-block;
        margin: 0;
        padding: 0;
        width: 80%;
        vertical-align: middle;
    }
    .storeName .name p {
        margin: 0;
        padding: 0;
        font-size: 1.2rem;
    }
    .storeName .name h2 {
        margin: 0;
        padding: 0;
        font-size: 1.8rem;
    }
}


/* リストの店舗情報 */
.storeListInfo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    padding: 0;
    width: 100%;
}
.storeListInfo .photo {
    margin: 0;
    padding: 0 20px 0 0;
    width: 50%;
}
.storeListInfo .desc {
    margin: 0;
    padding: 0;
    width: 50%;
    font-size: 0;
}
@media screen and (max-width: 481px) {
    .storeListInfo {
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
    }
    .storeListInfo .photo {
        display: block;
        margin: 0 0 10px 0;
        padding: 0;
        width: 100%;
    }
    .storeListInfo .desc {
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
        font-size: 0;
    }
}

.storeListInfo .tel {
    display: block;
    margin: 0 0 10px 0;
    padding: 10px 0;
    width: 100%;
    color: #f9610b;
    font-size: 2.4rem;
    text-align: center;
    border-radius: 5px;
    background: #fff;
    -webkit-filter: drop-shadow(0px 1px 5px rgba(0,0,0,.3));
    filter: drop-shadow(0px 0px 3px rgba(0,0,0,.3));
}
.storeListInfo .tel:hover {
    color: #f9610b;
}
.storeListInfo .tel i {
    position: relative;
    top: 3px;
}
@media screen and (min-width: 480px) and ( max-width: 896px) {
    .storeListInfo .tel {
        padding: 8px 0;
    }
}

.storeListInfo .share {
    display: inline-block;
    margin: 0 0 10px 0;
    padding: 10px 0;
    width: 40%;
    color: #f9610b;
    font-size: 2rem;
    text-align: center;
    border-radius: 5px;
    background: #fff;
    -webkit-filter: drop-shadow(0px 1px 5px rgba(0,0,0,.3));
    filter: drop-shadow(0px 0px 3px rgba(0,0,0,.3));
}
.storeListInfo .share:hover {
    color: #fff;
    background: #f9610b;
}
.storeListInfo .share i {
    position: relative;
    top: 3px;
}
@media screen and (min-width: 480px) and ( max-width: 896px) {
    .storeListInfo .share {
        padding: 8px 0;
    }
}
.storeListInfo .reservation {
    display: inline-block;
    margin: 0 0 0 3%;
    padding: 10px 0;
    width: 57%;
    color: #fff;
    font-size: 2rem;
    text-align: center;
    border-radius: 5px;
    background: #f9610b;
    -webkit-filter: drop-shadow(0px 1px 5px rgba(0,0,0,.3));
    filter: drop-shadow(0px 0px 3px rgba(0,0,0,.3));
}
.storeListInfo .reservation:hover {
    background: #f9910b;
    color: #fff;
}
.storeListInfo .reservation i {
    position: relative;
    top: 3px;
}
.storeListInfo .reservation.off {
    background: #666666;
    color: #fff;
}
.storeListInfo .reservation.off:hover {
    background: #444444;
    color: #fff;
}
@media screen and (min-width: 480px) and ( max-width: 896px) {
    .storeListInfo .reservation {
        padding: 8px 0;
    }
}

.storeListInfo .genzaichikara {
    display: inline-block;
    margin: 0 0 10px 0;
    padding: 0;
    font-size: 1.6rem;
    width: 25%;
    vertical-align: top;
}
.storeListInfo .genzaichikara i {
    position: relative;
    top: 5px;
    color: #f9610b;
}

.storeListInfo .add {
    display: inline-block;
    margin: 0 0 10px 3%;
    padding: 0;
    font-size: 1.4rem;
    width: 100%;
    vertical-align: top;
}

.storeListInfo .moviaImplOn {
    display: inline-block;
    margin: 0 0 10px 0;
    padding: 5px 0;
    width: 100%;
    color: #fff;
    font-size: 1.4rem;
    letter-spacing: 2px;
    text-align: center;
    border-radius: 5px;
    background: #1e89ae;
    -webkit-filter: drop-shadow(0px 1px 5px rgba(0,0,0,.3));
    filter: drop-shadow(0px 0px 3px rgba(0,0,0,.3));
}
.storeListInfo .moviaImplOff {
    display: inline-block;
    margin: 0 0 10px 0;
    padding: 5px 0;
    width: 100%;
    color: #fff;
    font-size: 1.4rem;
    letter-spacing: 2px;
    text-align: center;
    border-radius: 5px;
    background: #ae1e1e;
    -webkit-filter: drop-shadow(0px 1px 5px rgba(0,0,0,.3));
    filter: drop-shadow(0px 0px 3px rgba(0,0,0,.3));
}

.storeListInfo .option {
    display: inline-block;
    margin: 0 1% 10px 0;
    padding: 5px 0;
    width: 19%;
    color: #1e89ae;
    font-size: 1rem;
    text-align: center;
    border-radius: 5px;
    border: solid 2px #1e89ae;
}
@media screen and (min-width: 480px) and ( max-width: 896px) {
    .storeListInfo .option {
        font-size: 8px;
    }
}


/* 店舗情報ページ　MV */
.storeImage {
    display: block;
    margin: 0;
    padding: 0;
    max-width: 100%;
}
.storeImage li img {
    border-radius: 10px;
}
.storeImage .slick-dots {
    position: absolute;
    bottom: 30px;
    color: #ff0000!important;
    z-index: 8888;
}
.storeImage .slick-dots li.slick-active button:before {
    opacity: 0.75;
    color: #f9610b!important;
}
.storeImage .slick-prev {
    top: 45%!important;
    left: 0;
    z-index: 8888;
}
.storeImage .slick-prev:before {
    content: 'keyboard_arrow_left'!important;
    font-family: "Material Icons"!important;
    font-size: 6rem!important;
    color: #f9610b!important;
}
.storeImage .slick-next {
    top: 45%!important;
    right: 30px;
    z-index: 8888;
}
.storeImage .slick-next:before {
    content: 'keyboard_arrow_right'!important;
    font-family: "Material Icons"!important;
    font-size: 6rem!important;
    color: #f9610b!important;
}


/* 店舗情報ページ内 Nav */

.storeInfoNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 30px 0;
    padding: 0;
    border-top: 2px solid #f9610b;
}
.storeInfoNav li {
    display: block;
    margin: 0;
    padding: 10px 0 16px 0;
    width: 25%;
    text-align: center;
    border-right: 1px solid #d9d9d9;
    background: #f7f7f7;
}
.storeInfoNav li:last-child {
    border-right: 0;
}
.storeInfoNav li a {
    display: block;
    color: #333333;
}
.storeInfoNav li a i {
    position: relative;
    top: 6px;
    color: #f9610b;
}
.storeInfoNav li.active {
    color: #fff;
    background: #f9610b;
    border-right: 1px solid #f9610b;
}
.storeInfoNav li.active a {
    color: #fff;
}
.storeInfoNav li.active i {
    position: relative;
    top: 6px;
    color: #fff;
}
@media screen and (max-width: 481px) {
    .storeInfoNav li {
        padding: 10px 0 8px 0;
    }
}

/* 店舗情報ページ内 「店舗の近隣地図」 */
.mapArea{
    margin: 0 0 50px 0;
    padding: 100px 0;
    text-align: center;
    background: #f5f5f5;
}

/* 店舗情報ページ内 「メニュー」 */
.menuNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 30px 0;
    padding: 0;
}
.menuNav li {
    margin: 0 2.5% 2.5% 0;
    padding: 0;
    width: 31.5%;
}
.menuNav li:nth-child(3n) {
    margin: 0 0 2.5% 0;
    padding: 0;
}
.menuNav li a {
    display: block;
    margin: 0;
    padding: 6% 0;
    width: 100%;
    color: #f9610b;
    text-align: center;
    border-radius: 5px;
    background: #fff;
    -webkit-filter: drop-shadow(0px 1px 5px rgba(0,0,0,.3));
    filter: drop-shadow(0px 0px 3px rgba(0,0,0,.3));
}
.menuNav li a:hover {
    color: #fff;
    background: #f9610b;
}
.menuNavDesc{
    margin: 0 0 30px 0;
    padding: 100px 0;
    text-align: center;
    background: #f5f5f5;
}
@media screen and (max-width: 481px) {
    .menuNav li {
        margin: 1%;
        padding: 0;
        width: 48%;
        font-size: 1.2rem;
    }
    .menuNav li:nth-child(3n) {
        margin: 1%;
        padding: 0;
    }
}

.storePlofile {
    margin: 0 0 50px 0;
    padding: 0;
    word-break: break-all;
}
.storePlofile li {
    margin: 0;
    padding: 30px 0;
    font-size: 0;
    border-bottom: 1px solid #a3a3a3;
}
.storePlofile li p {
    display: inline-block;
    margin: 0;
    padding: 0;
    width: 75%;
    font-size: 1.6rem;
    line-height: 1.6;
    vertical-align: middle;
}
.storePlofile li p:first-child {
    width: 25%;
    font-weight: bold;
}











/* ボタン */
.btnAwh {
    display: block;
    margin: 0 auto 30px auto;
    padding: 10px 0 15px 0;
    color: #f9610b;
    text-align: center;
    text-decoration: none;
    border: solid 1px #f9610b;
    border-radius: 30px;
    transition: .4s;
    background: #fff;
}
.btnAwh:hover {
    color: #fff;
    cursor: pointer;
    background: #f9610b;
}
.btnAwh i {
    position: relative;
    top: 6px;
}

.btnAorg {
    display: block;
    margin: 0 auto;
    padding: 10px 0 15px 0;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: .4s;
    background: #f9610b;
}
.btnAorg:hover {
    color: #fff;
    cursor: pointer;
    background: #f9910b;
}
.btnAorg i {
    position: relative;
    top: 6px;
}

.btnAyel {
    display: block;
    margin: 0 auto 20px auto;
    padding: 10px 0 15px 0;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: .4s;
    background: #e99711;
}
.btnAyel:hover {
    color: #fff;
    cursor: pointer;
    background: #e9c311;
}
.btnAyel i {
    position: relative;
    top: 6px;
}

.w320px {
    width: 320px;
}
.w100per {
    width: 100%;;
}







.contact {
    margin: 0 0 100px 0;
    padding: 0 10px;
}
.contact ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 2em 0 0 0;
}
.contact ul li {
    margin: 0;
    padding: 0;
    width: 50%;
    text-align: center;
}
.contact ul li:nth-child(2) ,
.contact ul li:nth-child(3) {
    padding: 3%;
}
.contact ul li h3 {
    margin: 0 0 1em 0;
    padding: 0;
    font-size: 1.8rem;
    font-weight: normal;
}
.contact ul li h4 {
    margin: 0 0 1em 0;
    padding: 0;
    color: #b82c21;
    font-size: 1.6rem;
    font-weight: normal;
    letter-spacing: .2em;
    font-family: 'Open Sans Condensed', sans-serif;
}
.contact ul li p {
    margin: 0 0 1.5em 0;
    padding: 0;
    font-size: 1.4rem;
    line-height: 1.6;
}
.contact ul li p a.btn {
    display: inline-block;
    position: relative;
    padding: 15px 20px;
    width: 80%;
    color: #fff;
    text-decoration: none;
    background: #b82c21;
    transition: .4s;
}
.contact ul li p a.btn:hover {
    color: #fff;
    background: #e79012;
}
@media screen and (max-width: 480px) {
    .contact ul li {
        margin: 0;
        padding: 0;
        width: 100%;
        text-align: center;
    }
    .contact ul li:nth-child(2) ,
    .contact ul li:nth-child(3) {
        padding: 0 0 4em 0;
    }
}













.privacypolicy {
    margin: 0 0 100px 0;
    padding: 0 10px;
}
.privacypolicy h3 {
    margin: 20px 0 0 0;
    padding: 0;
    font-size: 1.8rem;
}
.privacypolicy p {
    margin: 5px 0 0 0;
    padding: 0;
    font-size: 1.4rem;
    line-height: 1.6;
}

.uneigaisha {
    margin: 0 0 100px 0;
    padding: 0;
    font-size: 1.4rem;
}
.uneigaisha table {
    margin: 0 0 25px 0;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
.uneigaisha table th {
    padding: 20px 10px 20px 30px;
    width: 35%;
    text-align: left;
    font-weight: normal;
}
.uneigaisha table th small {
    font-size: .8em;
}
.uneigaisha table td {
    padding: 20px 10px 20px 30px;
    text-align: left;
}
.uneigaisha table tr:nth-child(odd) {
    background-color: #f7f7f7
}
@media screen and (max-width: 481px) {
    .uneigaisha table th{
        display: block;
        padding: 12px 10px;
        width: 100%;
        text-align: left;
        font-weight: normal;
        background-color: #f7f7f7
    }
    .uneigaisha table td {
        display: block;
        padding: 10px 10px 30px 10px;
        text-align: left;
        background-color: #fff;
    }
}


.otoiawase {
    margin: 0 0 100px 0;
    padding: 0 10px;
    text-align: center;
}
.otoiawase h3 {
    margin: 20px 0 0 0;
    padding: 0;
    font-size: 1.8rem;
}
.otoiawase p {
    margin: 5px 0 10px 0;
    padding: 0;
    font-size: 1.4rem;
    line-height: 1.6;
}
.otoiawase input[type='text'] {
	margin: 0 0 30px 0;
	padding: 10px 20px;
	width: 100%;
	box-sizing: border-box;
	letter-spacing: 1px;
    border: none;
    outline: none;
    border-radius: 0;
	border-bottom: solid 1px #c0c0c0;
}
.otoiawase input[type='text']:focus {
	outline: none;
}
.otoiawase input[type='text']:focus::after {
	outline: none;
}
.otoiawase input[type='text']::placeholder,
.otoiawase textarea::placeholder {
	color: #ccc;
}
.otoiawase textarea {
	margin: 0 0 20px 0;
	padding: 10px 20px;
	width: 100%;
	box-sizing: border-box;
	letter-spacing: 1px;
	border: solid 1px #c0c0c0;
    outline: none;
    border-radius: 5px;
    -webkit-appearance: none;
    appearance: button;
}
.otoiawase input[type="submit"] {
    margin: 30px 0 0 0;
    padding: 16px 0;
    width: 320px;
    color: #fff;
    text-align: center;
    border-radius: 30px;
    transition: .4s;
    background: #f9610b;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
.otoiawase input[type="submit"]::-webkit-search-decoration,
.otoiawase input[type="button"]::-webkit-search-decoration {
    display: none;
}
.otoiawase input[type="submit"]::focus,
.otoiawase input[type="button"]::focus {
    outline-offset: -2px;
}
.otoiawase input[type="submit"]:hover {
    background: #e99711;
}


.accessibility {
    margin: 0 0 100px 0;
    padding: 0 10px;
}
.accessibility h3 {
    margin: 20px 0 20px 0;
    padding: .2em 0 .2em .75em;
    font-size: 1.8rem;
    padding: .25em 0 .25em .75em;
    border-left: 6px solid #f9610b;
}
.accessibility p {
    margin: 5px 0 10px 0;
    padding: 0;
    font-size: 1.4rem;
    line-height: 1.6;
}













.appIntroduction {
    margin: 0 0 100px 0;
    padding: 0 10px;
    text-align: center;
}
.appIntroduction h3 {
    margin: 20px 0 0 0;
    padding: 0;
    font-size: 1.8rem;
    color: #ccc;
}
.appIntroduction p {
    margin: 5px 0 10px 0;
    padding: 0;
    font-size: 1.4rem;
    line-height: 1.6;
}
.appIntroduction img {
    margin: 0;
    padding: 0;
    vertical-align: bottom;
}
.appIntroduction section {
    margin: 1em 0 0 0;
    padding: 2em 0;
    background: url(../images/appIntroduction/bg.jpg);
    background-size: cover;
    border-radius: 30px;
}
.appIntroduction section h3 {
    margin: 1em 0 2em 0;
    padding: 0;
    font-size: 2em;
    color: #f66f04;
}
.appIntroduction section h3 span {
    font-size: .6em;
    color: #333;
    font-weight: normal;
}
.appIntroduction section ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}
.appIntroduction section ul li {
    margin: 0;
    padding: 20px;
    width: 50%;
    text-align: right;
}
.appIntroduction section ul li:last-child {
    text-align: left;
}
.appIntroduction section ul li img {
    width: 50%;
}
@media screen and (min-width: 480px) and ( max-width: 896px) {
    .appIntroduction section h3 {
        margin: 1em 0;
        padding: 0;
        font-size: 1.8em;
    }
}
@media screen and (max-width: 480px) {
    .appIntroduction section {
        padding: 2em 1em;
    }
    .appIntroduction section h3 {
        margin: 1em 0;
        font-size: 1.5em;
    }
    .appIntroduction section ul li img {
        width: 100%;
    }
}











.historyOfUsing {
    margin: 0 0 100px 0;
    padding: 0 10px;
    text-align: center;
}
.historyOfUsing h3 {
    margin: 20px 0 0 0;
    padding: 0;
    font-size: 1.8rem;
    color: #ccc;
}
.historyOfUsing p {
    margin: 5px 0 10px 0;
    padding: 0;
    font-size: 1.4rem;
    line-height: 1.6;
}


.brandList {
    margin: 0 0 10px 0;
    padding: 0 10px;
    text-align: center;
}
.brandList h3 {
    margin: 20px 0 0 0;
    padding: 0;
    font-size: 1.8rem;
    color: #ccc;
}
.brandList p {
    margin: 5px 0 10px 0;
    padding: 0;
    font-size: 1.4rem;
    line-height: 1.6;
}
.brandList ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 30px 0;
    padding: 0;
}
.brandList ul li {
    margin: 0 0 10px 0;
    padding: 10px;
    width: 25%;
}
.brandList ul li p {
    margin: 0 0 0 0;
}
.brandList ul li a {
    color: #333333;
}
.brandList ul li a:hover {
    color: #0000ee;
}
.brandList ul li img {
    margin: 0;
    border: solid 1px #f5f5f5;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.brandList ul li:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
@media screen and (max-width: 481px) {
    .brandList ul li {
        margin: 0 0 10px 0;
        padding: 10px;
        width: 50%;
    }
}























/* サイド */
aside {
    margin: 75px 0 0 0;
    padding: 0 10px 80px 0;
    min-width: 230px;
    width: 230px;
    vertical-align: top;
}
@media screen and (min-width: 480px) and ( max-width: 896px) {
    aside {
        margin: 70px 0 0 0;
        padding: 0 10px 70px 0;
        width: 25%;
        vertical-align: top;
    }
}
@media screen and (max-width: 481px) {
    aside {
        display: block;
        margin: 0 0 0 0;
        padding: 0 10px 30px 10px;
        width: 100%;
    }
}









.searchAbove {
    margin: 10px 0;
    padding: 0;
}
.searchAbove label.btn {
    display: block;
    margin-top: -10px;
    padding: 10px 0 10px 0;
    color: #fff;
    text-align: center;
    cursor :pointer;
    background: #3f3e3c;
    font-size: 1.2em;
}
.searchAbove input {
    display: none; 
}

.searchAbove .kWord input {
    display: inline-block;
    margin: 0 0 3px; 
}

.searchAbove input.reset00  {
    display: block; 
    margin: 15px 0 15px 0;
}

.searchAbove div.inner {
    height: 0;
    overflow-y: hidden;
    transition: .5s;
    opacity: 0;
    background: #f5f5f5;
    border-bottom: solid 1px #808080;
}
.searchAbove input:checked + label + div.inner {
    margin: 0 0 25px 0;
    padding: 25px 20px 30px 20px;
    height: auto;
    opacity: 1;
}
.searchAbove label.btn::after {
    position: relative;
    top: 3px;
    content:'keyboard_arrow_down';
    font-family: "Material Icons";
    color: #fff;
}
.searchAbove input:checked + label.btn::after {
    position: relative;
    top: 3px;
    content:'keyboard_arrow_up';
    font-family: "Material Icons";
    color: #fff;
}














.storeInfoHolder {
    margin: 0 0 20px 0;
    padding: 0 0 0 0;
    border-radius: 10px;
    background: #f7f7f7;
}
.storeInfoHolder .desc01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 15px;
    border-radius: 10px 10px 0 0;
    background: #3f3e3c;
}

.storeInfoHolder .desc01 .shop-name {
    display: block;
}

.storeInfoHolder .desc01 h2 {
    margin: 0 0 10px 0;
    color: #fff;
    font-size: 1.6rem
}
.storeInfoHolder .desc01 p {
    margin: 0 0 5px 0;
    color: #fff;
    font-size: 1.2rem
}
.storeInfoHolder .desc01 .tel {
    margin: 0 0 10px 0;
    padding: 10px 0;
    width: 100%;
    color: #f9610b;
    font-size: 2rem;
    text-align: center;
    border-radius: 5px;
    background: #fff;
    -webkit-filter: drop-shadow(0px 1px 5px rgba(0,0,0,.3));
    filter: drop-shadow(0px 0px 3px rgba(0,0,0,.3));
}
.storeInfoHolder .desc01 .tel:hover {
    color: #f9610b;
}
.storeInfoHolder .desc01 .tel i {
    position: relative;
    top:3px;
}
.storeInfoHolder .desc01 .share {
    margin: 0;
    padding: 10px 0;
    width: 25%;
    color: #f9610b;
    font-size: 2rem;
    text-align: center;
    border-radius: 5px;
    background: #fff;
    -webkit-filter: drop-shadow(0px 1px 5px rgba(0,0,0,.3));
    filter: drop-shadow(0px 0px 3px rgba(0,0,0,.3));
}
.storeInfoHolder .desc01 .share:hover {
    color: #fff;
    background: #f9610b;
}
.storeInfoHolder .desc01 .share i {
    position: relative;
    top: 3px;
}
.storeInfoHolder .desc01 .reservation {
    margin: 0 0 0 5%;
    padding: 10px 0;
    width: 70%;
    color: #fff;
    font-size: 2rem;
    text-align: center;
    border-radius: 5px;
    background: #f9610b;
    -webkit-filter: drop-shadow(0px 1px 5px rgba(0,0,0,.3));
    filter: drop-shadow(0px 0px 3px rgba(0,0,0,.3));
}
.storeInfoHolder .desc01 .reservation:hover {
    color: #fff;
    background: #f9910b;
}
.storeInfoHolder .desc01 .reservation.off {
    color: #fff;
    background: #666666;
}
.storeInfoHolder .desc01 .reservation.off:hover {
    color: #fff;
    background: #444444;
}
.storeInfoHolder .desc01 .reservation i {
    position: relative;
    top: 3px;
}

.storeInfoHolder .desc02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 15px;
}
.storeInfoHolder .desc02 .add {
    margin: 0 0 10px 0;
    padding: 0;
    font-size: 1.6rem;
    vertical-align: top;
}
@media screen and (max-width: 480px) {
    .storeInfoHolder .desc02 .add {
        margin: 0 0 10px 0;
        padding: 0;
        width: 70%;
        font-size: 1.4rem;
        vertical-align: top;
    }
}
    .storeInfoHolder .desc02 .goHere {
        margin: 0 0 10px 0;
        padding: 8px 0 0 0;
        width: 30%;
        color: #fff;
        font-size: 1.8rem;
        font-weight: bold;
        text-align: center;
        vertical-align: middle;
        border-radius: 5px;
        background: #f9610b;
        -webkit-filter: drop-shadow(0px 1px 5px rgba(0,0,0,.3));
        filter: drop-shadow(0px 0px 3px rgba(0,0,0,.3));
    }
.storeInfoHolder .desc02 .goHere:hover {
    color: #f9610b;
    background: #fff;
}




.storeInfoHolder .desc02 .moviaImplOn {
    margin: 0 0 10px 0;
    padding: 5px 0;
    width: 100%;
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
    border-radius: 5px;
    background: #1e89ae;
    -webkit-filter: drop-shadow(0px 1px 5px rgba(0,0,0,.3));
    filter: drop-shadow(0px 0px 3px rgba(0,0,0,.3));
}

.storeInfoHolder .desc02 .option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    width: 100%;
}
.storeInfoHolder .desc02 .option li {
    margin: 0 5% 10px 0;
    padding: 5px;
    width: 47%;
    color: #1e89ae;
    font-size: 1.2rem;
    text-align: center;
    border-radius: 5px;
    border: solid 2px #1e89ae;
    background: #fff;
}
.storeInfoHolder .desc02 .option li:nth-child(2n) {
    margin: 0 0 10px 0;
}
@media screen and (max-width: 480px) {
    .storeInfoHolder .desc02 .option li {
        margin: 0 1% 3px 0;
        padding: 5px;
        width: 24%;
        color: #1e89ae;
        font-size: 1rem;
        text-align: center;
        border-radius: 5px;
        border: solid 2px #1e89ae;
        background: #fff;
    }
    .storeInfoHolder .desc02 .option li:nth-child(2n) {
        margin: 0 1% 3px 0;
    }
}
.storeInfoHolder .desc02 .arrow {
    position: relative;
    margin: 0 0 10px 0;
    padding: 0;
    width: 100%;
    color: #333333;
    font-size: 1.6rem;
    text-align: left;
}
.storeInfoHolder .desc02 .arrow:after {
    position: absolute;
    right: 0;
    color: #f9610b;
    content:'arrow_forward_ios';
    font-family: "Material Icons";
}



aside .search {
    display: block;
    margin: 0 0 30px 0;
    padding: 30px 15px 10px;
    width: 100%;
    border-radius: 10px;
    background: #f7f7f7;
    vertical-align: top;
}


/* 周辺店舗を探す ボタン */
aside .search .sagasu {
    display: block;
    margin: 0 auto 20px auto;
    padding: 10px 0 15px 0;
    width: 100%;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: .4s;
    background: #e99711;
}
aside .search .sagasu:hover {
    color: #fff;
    cursor: pointer;
    background: #e9c311;
}
aside .search .sagasu i {
    position: relative;
    top: 6px;
}

/* リセット ボタン */
aside .search .reset00,
.searchAbove .reset00,
aside .search .zenkaiJouken,
.searchAbove .zenkaiJouken {
    display: block;
    margin: 20px 0 20px 0;
    padding: 0;
    width: 100%;
    text-align: center;
    color: #0000ee;
    border: none;
    cursor: pointer;
    outline: none;
    appearance: none;
    background-color: transparent;
    white-space: normal;
}
aside .search .reset00:hover,
.searchAbove .reset00:hover,
aside .search .zenkaiJouken:hover,
.searchAbove .reset00:hover {
    text-decoration: underline;
}

aside .kWord {
    margin: 20px 0;
}

.modal h2 {
    margin: 0 0 10px 0;
    padding: 0;
    color: #fff;
    text-align: center;
}
.modal p {
    margin: 0 0 30px 0;
    padding: 0;
    color: #fff;
    text-align: center;
}
.modal ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin: 0 0 15px 0;
    padding: 10px;
    border-radius: 5px;
    background-color: #fff;
}
.modal ul li {
    margin: 0;
    padding: 0 0 0 10px;
    width: 80%;
}
.modal ul li.area {
    margin: 0;
    padding: 20px 0 0 0;
    width: 20%;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    background: #63473f;
    cursor: pointer;
}
.modal ul li input[type="radio"],
.modal ul li input[type="checkbox"] {
    display: none;
}
.modal ul li .label {
    display: inline-block;
    margin: 5px;
    padding: 10px 25px;
    width: auto;
    color: #333333;
    text-align: center;
    cursor: pointer;
    border-radius: 30px;
    border: 1px solid #f7f7f7;
    background: #f7f7f7;
}
.modal ul li .label:hover {
    color: #f9610b;
    border: 1px solid #f9610b;
}

.modal ul li .label.disable {
    color: #888888;
    text-align: center;
    cursor: not-allowed;
    background: #a7a7a7;
    border: 1px solid #a7a7a7;
}
.modal ul li .label.disable:hover {
    color: #888888;
    background: #a7a7a7;
    border: 1px solid #a7a7a7;
}

.modal ul li input[type="radio"]:checked + label,
.modal ul li input[type="checkbox"]:checked + label {
    color: #fff;
    background: #f9610b;
}
.modal ul li p.none00 {
    display: inline-block;
    margin: 5px;
    padding: 10px 25px;
    width: auto;
    color: #ccc;
    text-align: center;
    cursor: pointer;
    border-radius: 30px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: default;
}
.modal .share {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 80px 0 15px 0;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    background-color: transparent;
}
.modal .share li {
    margin: 0 0 10px 0;
    padding: 0;
    width: 25%;
    text-align: center;
}


.modal button {
    display: block;
    margin: 0 auto;
    padding: 12px 0 15px 0;
    color: #fff;
    width: 320px;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: .4s;
    background: #f9610b;
}
.modal button:hover {
    color: #fff;
    cursor: pointer;
    background: #f9910b;
}
.modal button i {
    position: relative;
    top: 5px;
}

@media screen and (max-width: 481px) {
    .modal h2 {
        margin: 0 0 10px 0;
        padding: 0;
        color: #fff;
        font-size: 2.2rem;
        text-align: center;
    }
    .modal ul {
        display: block;
        margin: 0 0 15px 0;
        padding: 10px;
        border-radius: 5px;
        background-color: #fff;
    }
    .modal ul li {
        margin: 0;
        padding: 10px 0 0 0;
        width: 100%;
        text-align: center;
    }
    .modal ul li.area {
        margin: 0;
        padding: 15px 0;
        width: 100%;
        color: #fff;
        text-align: center;
        border-radius: 5px;
        background: #63473f;
    }
    .modal ul li .label {
        display: inline-block;
        margin: 5px;
        padding: 10px 20px;
        width: auto;
        color: #333333;
        text-align: center;
        cursor: pointer;
        border-radius: 30px;
        border: 1px solid #f7f7f7;
        background: #f7f7f7;
    }
.modal ul li p.none00 {
        display: inline-block;
        margin: 5px;
        padding: 10px 20px;
        width: auto;
        color: #ccc;
        text-align: center;
        cursor: pointer;
        border-radius: 30px;
        border: 1px solid #ccc;
        background: #fff;
        cursor: default;
    }
}



.selectingArea {
    display: block;
    margin: 0 0 20px 0;
    padding: 0;
    font-size: 2.2rem;
}
.selectingArea .selecting {
    display: inline-block;
    margin: 0 5px 5px 0;
    padding: 3px 6px 2px 8px;
    color: #fff;
    font-size: 1.4rem;
    border-radius: 5px;
    background: #1e89ae;
}
.selectingArea .selecting a {
    margin: 0 0 5px 0;
    color: #fff;
}



.tsuika {
    display: inline-block;
    margin: 0 0 10px 0;
    padding: 10px 0 16px 0;
    width: 100%;
    color: #f9610b;
    font-size: 1.6rem;
    text-align: center;
    border-radius: 5px;
    background: #fff;
    -webkit-filter: drop-shadow(0px 1px 5px rgba(0,0,0,.3));
    filter: drop-shadow(0px 0px 3px rgba(0,0,0,.3));
}
.tsuika:hover {
    color: #ff1e00;
}
.tsuika i {
    position: relative;
    top: 6px;
    color: #ff1e00;
}

.requirement {
    display: block;
    margin: 0 auto;
    margin-bottom: 5px;
    padding: 0;
    width: 100%;
    color: #333333;
    font-size: 1.4rem;
}
.requirement label {
    display: block;
    margin: 0 0 10px 0;
    padding-left: 0;
}
@media screen and (max-width: 481px) {
.requirement label {
    display: inline-block;
    margin: 0 10px 8px 0;
    padding-left: 0;
}
}

.requirement label .ckbx-input {
    display: none;
}
.requirement label .ckbx-parts {
    position:relative;
    padding: 0 0 0 18px;
    margin: 0;
}
.requirement label .ckbx-parts::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #333333;
    border-radius: 2px;
}
.requirement label .ckbx-input:checked + .ckbx-parts {
    color: #333333;
}
.requirement label .ckbx-input:checked + .ckbx-parts::after {
    content: "";
    display: block;
    position: absolute;
    top: -6px;
    left: 5px;
    width: 8px;
    height: 16px;
    transform: rotate(40deg);
    border-bottom: 3px solid #f9610b;
    border-right: 3px solid #f9610b;
}










/* 検 索 す る ボタン */
aside .search .kensakusuru {
    display: block;
    margin: 0 auto 0 auto;
    padding: 10px 0 15px 0;
    width: 100%;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: .4s;
    background: #f9610b;
}
aside .search .kensakusuru:hover {
    color: #fff;
    cursor: pointer;
    background: #f9910b;
}
aside .search .kensakusuru i {
    position: relative;
    top: 6px;
}


aside .intro {
    margin: 0 0 35px 0;
}
aside .intro li img {
    padding: 5px;
    border-radius: 10px
}
aside .intro li .kyori {
    position: absolute;
    top: 15px;
    left: 0;
    margin-left: 10px;
    padding: 4px 10px 5px 10px;
    color: #fff;
    font-size: 12px;
    background: #1e89ae;
    border-radius: 35px;
}
aside .intro .prev {
    position: absolute;
    left: 30px;
    bottom: -30px;
    cursor: pointer;
    z-index: 1499;
}
aside .intro .prev:before {
    color: #f9610b;
    content:'arrow_back';
    font-family: "Material Icons";
    font-size: 3rem;
}
aside .intro .next {
    position: absolute;
    right: 30px;
    bottom: -30px;
    cursor: pointer;
    z-index: 1499;
}
aside .intro .next:before {
    color: #f9610b;
    content:'arrow_forward';
    font-family: "Material Icons";
    font-size: 3rem;
}
aside p i {
    position: relative;
    top: 6px;
	color: #f9610b;
}











/* フッター
------------------------------------------------------------*/
footer{
    margin: 0;
	padding: 0;
    width: 100%;
    background: #252423;
}
footer .inner{
    position: relative;
    margin: 0 auto;
	padding: 80px 0 50px 0;
    max-width: 980px;
}
footer .inner ul {
    display: inline-block;
    margin: 0 30px 30px 0;
	padding: 0;
}
footer .inner ul li {
    margin: 0;
	padding: 0;
}
footer .inner ul li:first-child {
    margin-bottom: 20px;
	padding: 0;
}
footer .inner ul li a {
    color: #fff;
    font-size: 1.4rem;
}
footer .inner ul li i {
    position: relative;
    top: 3px;
    margin-right: 10px;
    color: #f9610b;
    font-size: 1.8rem;
}
footer small {
    position: absolute;
    right: 0;
    color: #fff;
    font-size: 1.2rem;
}
@media screen and (min-width: 480px) and ( max-width: 896px) {
    footer .inner{
        position: relative;
        margin: 0 auto;
        padding: 50px 0;
        width: 96%;
    }
    footer small {
        position: absolute;
        right: 0;
        bottom: 20px;
        color: #fff;
        font-size: 1.2rem;
    }
}
@media screen and (max-width: 481px) {
    footer{
        margin: 0;
        padding: 0 0 50px 0;
        width: 100%;
        background: #252423;
    }
    footer .inner{
        padding: 40px 10px 20px 10px;
        width: 100%;
    }
    footer .inner ul {
        display: block;
        margin: 0 80px 20px 0;
        padding: 0;
    }
    footer small {
        position: absolute;
        bottom: 20px;
        right: 10px;
        color: #fff;
        font-size: 1.2rem;
    }
}










    
    
    
    
.stk{
	position: fixed;
	top: 28%;
	right: 0;
    padding: 5px 8px 8px 8px;
    color: #fff;
	font-size: 1.4rem;
    background: #e99711;
    border-radius: 30px 0 0 30px;
    z-index: 99999;
}
@media screen and (min-width: 480px) and ( max-width: 896px) {
    .stk{
        position: fixed;
        top: 13%;
        right: 0;
    }
}
.stk:hover {
    background: #f9610b;
}
.stk p {
	display: inline-block;
    vertical-align: bottom;
}
.stk p i {
    position: relative;
    top: 6px;
	font-size: 4rem;
}

.stkFt{
	position: fixed;
	right: 0;
    bottom: 10px;
    padding: 0px 8px 8px 8px;
    color: #fff;
	font-size: 1.4rem;
    background: #e99711;
    border-radius: 30px 0 0 30px;
    z-index: 99999;
}
.stkFt:hover {
    background: #f9610b;
}
.stkFt p {
	display: inline-block;
    vertical-align: bottom;
}
.stkFt p i {
    position: relative;
    top: 6px;
	font-size: 4rem;
}

#page-top {
    position: fixed;
    bottom: 80px;
    right: 15px;
    font-size: 77%;
    z-index: 9999999;
}
#page-top a {
	display: block;
	padding: 8px 0;
	color: #fff;
	width: 60px;
	text-align: center;
	text-decoration: none;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	background-color: rgba(0,0,0,0.5);
}
#page-top a:hover {
	text-decoration: none;
	background: #333333;
}
#page-top i {
	font-size: 4rem;
}









.w100p {
    width: 100%;
}

.txalCnt { text-align: center; }
.txalLeft { text-align: left!important; }
.txalRight { text-align: left!important; }

.mgnCnt { margin: 0 auto!important; }

.pdgTop50 { padding-top: 50px }
.pdgTop40 { padding-top: 40px }
.pdgTop30 { padding-top: 30px }
.pdgTop20 { padding-top: 20px }
.pdgTop10 { padding-top: 10px }
.pdgTop05 { padding-top: 5px }

.mgnTop50 { margin-top: 50px }
.mgnTop40 { margin-top: 40px }
.mgnTop30 { margin-top: 30px }
.mgnTop20 { margin-top: 20px }
.mgnTop10 { margin-top: 10px }
.mgnTop05 { margin-top: 5px }

.mgnBtm100 { margin-bottom: 100px }
.mgnBtm50 { margin-bottom: 50px }
.mgnBtm40 { margin-bottom: 40px }
.mgnBtm30 { margin-bottom: 30px }
.mgnBtm20 { margin-bottom: 20px }
.mgnBtm10 { margin-bottom: 10px }
.mgnBtm05 { margin-bottom: 5px }

.org { color: #f9610b; }

@media screen and (max-width:481px) {
.jnbn1 { -webkit-box-ordinal-group: 1; -ms-flex-order: 1; -webkit-order: 1; order: 1; }
.jnbn2 { -webkit-box-ordinal-group: 2; -ms-flex-order: 2; -webkit-order: 2; order: 2; }
.jnbn3 { -webkit-box-ordinal-group: 3; -ms-flex-order: 3; -webkit-order: 3; order: 3; }
.jnbn4 { -webkit-box-ordinal-group: 4; -ms-flex-order: 4; -webkit-order: 4; order: 4; }
.jnbn5 { -webkit-box-ordinal-group: 5; -ms-flex-order: 5; -webkit-order: 5; order: 5; }
.jnbn6 { -webkit-box-ordinal-group: 6; -ms-flex-order: 6; -webkit-order: 6; order: 6; }
.jnbn7 { -webkit-box-ordinal-group: 7; -ms-flex-order: 7; -webkit-order: 7; order: 7; }
.jnbn8 { -webkit-box-ordinal-group: 8; -ms-flex-order: 8; -webkit-order: 8; order: 8; }
.jnbn9 { -webkit-box-ordinal-group: 9; -ms-flex-order: 9; -webkit-order: 9; order: 9; }
.jnbn10 { -webkit-box-ordinal-group: 10; -ms-flex-order: 10; -webkit-order: 10; order: 10; }
}


@media screen and (max-width: 481px) {
.pc { display: none !important; }
}
@media screen and (min-width: 481px) {
.sp { display: none !important; }
}