/* ==========================================================================
   css popup
   ========================================================================== */

/* Hide scroll bar */

html.remodal-is-locked {
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
}

/* Anti FOUC */
.remodal, [data-remodal-id] {
    display: none;
}

/* Necessary styles of the overlay */
.remodal-overlay {
    position: fixed;
    z-index: 9999;
    top: -5000px;
    right: -5000px;
    bottom: -5000px;
    left: -5000px;
    display: none;
}

/* Necessary styles of the wrapper */
.remodal-wrapper {
    position: fixed;
    z-index: 10000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
	touch-action: none !important;
}
.remodal-wrapper:after {
    display: inline-block;
    height: 100%;
    margin-left: -0.05em;
    content: "";
}

/* Fix iPad, iPhone glitches */
.remodal-overlay, .remodal-wrapper {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */
.remodal {
    position: relative;
    outline: none;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
.remodal-is-initialized {

    /* Disable Anti-FOUC */
    display: inline-block;
}

/* Default theme styles for the background */
.remodal-bg.remodal-is-opening, .remodal-bg.remodal-is-opened {
    -webkit-filter: blur(3px);
    filter: blur(3px);
}

/* Default theme styles of the overlay */
.remodal-overlay {
    background: rgba(0, 0, 0, 0.9);
	touch-action: none !important;
}
.remodal-overlay.remodal-is-opening, .remodal-overlay.remodal-is-closing {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
.remodal-overlay.remodal-is-opening {
    -webkit-animation-name: remodal-overlay-opening-keyframes;
    animation-name: remodal-overlay-opening-keyframes;
}
.remodal-overlay.remodal-is-closing {
    -webkit-animation-name: remodal-overlay-closing-keyframes;
    animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */
.remodal-wrapper {
    padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */
.remodal {
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 10px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.remodal.remodal-is-opening, .remodal.remodal-is-closing {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
.remodal.remodal-is-opening {
    -webkit-animation-name: remodal-opening-keyframes;
    animation-name: remodal-opening-keyframes;
}
.remodal.remodal-is-closing {
    -webkit-animation-name: remodal-closing-keyframes;
    animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */
.remodal, .remodal-wrapper:after {
    vertical-align: middle;
}

/* Close button */
.remodal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    display: block;
    overflow: visible;
    width: 40px;
    height: 22px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
    text-align: center;
    text-decoration: none;
    border: 0;
    outline: 0;
    background: url("../img/shared/close.png") no-repeat center / cover;
}
.remodal-close:hover, .remodal-close:focus {
    opacity: 0.7;
}
.remodal-close:before {
    font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
    font-size: 50px;
    line-height: 1;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    content: "\00d7";
    text-align: center;
}

/* Dialog buttons */
.remodal-confirm, .remodal-cancel {
    font: inherit;
    display: inline-block;
    overflow: visible;
    min-width: 110px;
    margin: 0;
    padding: 12px 0;
    cursor: pointer;
    -webkit-transition: background 0.2s;
    transition: background 0.2s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    border: 0;
    outline: 0;
}
.remodal-confirm {
    color: #fff;
    background: #81c784;
}
.remodal-confirm:hover, .remodal-confirm:focus {
    background: #66bb6a;
}
.remodal-cancel {
    color: #fff;
    background: #e57373;
}
.remodal-cancel:hover, .remodal-cancel:focus {
    background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner, .remodal-cancel::-moz-focus-inner, .remodal-close::-moz-focus-inner {
    padding: 0;
    border: 0;
}

/* Keyframes
 ========================================================================== */
@-webkit-keyframes remodal-opening-keyframes {
    from {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        opacity: 0;
    }
    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}
@keyframes remodal-opening-keyframes {
    from {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        opacity: 0;
    }
    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}
@-webkit-keyframes remodal-closing-keyframes {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    to {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        opacity: 0;
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}
@keyframes remodal-closing-keyframes {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    to {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        opacity: 0;
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}
@-webkit-keyframes remodal-overlay-opening-keyframes {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes remodal-overlay-opening-keyframes {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-webkit-keyframes remodal-overlay-closing-keyframes {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@keyframes remodal-overlay-closing-keyframes {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Media queries
 ========================================================================== */
@media only screen and (min-width: 768px) {
    .remodal-wrapper {
        text-align: center;
    }
    .remodal {
        text-align: left;
        max-width: 1000px;
    }
    .remodal.popup-menu{
        border: 2px solid #b6b6b6;
        max-width: 1420px;
    }
    .remodal-close {
        top: 29px;
        right: 24px;
    }
	.remodal-close:hover, .remodal-close:focus {
		opacity: 0.7;
	}
}

/* IE8
 ========================================================================== */
.lt-ie9 .remodal-overlay {
    background: #2b2e38;
}
.lt-ie9 .remodal {
    width: 1000px;
}

/* ==========================================================================
 end css popup
 ========================================================================== */


.popup-content {
    background-color: #fff;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0;
    font-weight: 500;
    text-align: center;
    padding: 50px 10px 50px;
    box-sizing: border-box;
    width: 100%;
    color: #555555;
    overflow-y: auto;
}
.popup-content h3 {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    font-weight: 500;
}
.popup-content h3 span {
    display: inline-block;
    line-height: 1.5;
    border-bottom: 1px solid #cccccc;
}
.popup-content .txt1 {
    margin: 30px 0 36px;
}
.popup-content ul{
    text-align: left;
    margin-left: 30px;
}
.popup-content ul li span{
    display: inline-block;
    font-size: 7px;
    margin-right: 5px;
    color: #222222;
}
.popup-content .txt2 {
    margin: 30px 0 0;
}
.popup-content-menu{
    background-color: #fff;
    font-size: 15px;
    line-height: 30px;
    letter-spacing: 0;
    font-weight: 500;
    text-align: center;
    padding: 50px 20px 50px;
    box-sizing: border-box;
    width: 100%;
    color: #555555;
    overflow-y: auto;
}
.popup-content-menu h3{
    background: url("../img/index/deco_ttl.png") no-repeat center top / 40px;
    padding-top: 30px;
    font-size: 23px;
}
.popup-content-menu .gr-ttl{
    border-bottom: 2px solid #000;
    position: relative;
}
.popup-content-menu .gr-ttl:before{
    content: "";
    position: absolute;
    left: 0;
    height: 1px;
    width: 100%;
    bottom: -5px;
    background-color: #000;
}
.popup-content-menu .gr-list dl{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e2e2e2;
    padding: 10px 4px 10px 0px;
    font-family: 'Noto Serif JP', serif;
    text-align: left;
    line-height: 1.9;
}
.popup-content-menu .gr-list dl small{
    line-height: 1;
}
.popup-content-menu .gr-list dl dd{
    text-align: right;
}
.popup-menu .remodal-close{
    background: url("../img/shared/close2.png") no-repeat center / cover;
    width: 46px;
    height: 35px;
    right: 15px;
    top: 15px;
}
.popup-menu .remodal-close.btn-close2{
    position: relative;
    text-align: center;
    top: auto;
    right: auto;
    background: none;
    height: auto;
    width: auto;
    margin: 30px auto 0px;
}
.popup-content-menu .gr-list .col .ttl{
    font-size: 20px;
    background-color: #494949;
    color: #fff;
    margin-top: 20px;
}
@media only screen and (max-width: 767px){
    .popup-content-menu .note{
        font-size: 10px;
        margin: 8px 0px 7px;
    }
    .popup-content-menu .gr-ttl{
        width: 75%;
        margin: 0 auto 30px;
    }
}
@media only screen and (min-width: 768px) {
	.popup-content {
		padding:71px 154px 81px;
        font-size: 16px;
        line-height: 32px;
	}
    .popup-content h3{
        font-size: 25px;
        line-height: 45px;
    }
    .popup-content h3 span{
        padding: 0px 30px 5px;
    }
    .popup-content ul{
        display: flex;
        justify-content: center;
        margin-left: 0;
    }
    .popup-menu .remodal-close{
        width: 61px;
        height: 48px;
    }
    .popup-content ul li{
        margin: 0px 20px;
        letter-spacing: 0.1em;
        line-height: 29px;
    }
    .popup-content-menu{
        padding: 69px 0 90px;
        font-size: 16px;
        line-height: 40px;
    }
    .popup-menu .remodal-close{
        width: 61px;
        height: 48px;
        top: 45px;
        right: 50px;
    }
    .popup-menu .remodal-close.btn-close2{
        margin-top: 112px;
    }
    .popup-content-menu .note{
        font-size: 14px;
    }
    .popup-content-menu h3{
        padding-top: 36px;
        font-size: 30px;
        line-height: 58px;
        margin-bottom:15px;
        background: url("../img/index/deco_ttl.png") no-repeat center top;
    }
    .popup-content-menu .gr-list{
        display: flex;
        max-width: 1000px;
        width: 100%;
        margin: 75px auto 0px;
        justify-content: space-evenly;
    }
    .popup-content-menu .gr-ttl{
        width: 465px;
        margin: 0px auto;
        padding-bottom: 6px;
    }
    .popup-content-menu .gr-list .col{
        width: 400px;
        box-sizing: border-box;
    }
    .popup-content-menu .gr-list .col .ttl{
        font-size: 20px;
        background-color: #494949;
        color: #fff;
    }
}