@charset "utf-8";
/* CSS Document */

/*--------------------------------------
 レイアウトのID
---------------------------------------*/
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    position: relative;
    text-align: center;
    font-family: 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-weight: 400;
}


#content {
    margin: 0;
    width: 980px;
}


.right_end,
.left_end {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

/*--------------------------------------
 文字
---------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6,
p {
    padding: 0;
    margin: 0;
    color: #000000;
}

a:link,
a:visited {
    color: inherit;
    text-decoration: none;
}

a:hover {
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    /*
iOS8.4.1でhover時にopacityするとクリックしてもリンク先に遷移しない
    -webkit-opacity: .8;
    -moz-opacity: .8;
    -ms-opacity: .8;
    opacity: .8;
    filter: alpha(opacity=70);        /* ie 6 7 */
    /*-ms-filter: "alpha(opacity=70)";*/
    /* ie 8 */

}

.svg a:hover {
    color: #000000;
    text-decoration: none;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    opacity: 1;
    /* svgのリンクがopacityをかけるとiPhoneだけリンクが動かないバグ対応 */
}

ol,
ul,
li,
dl,
dt,
dd {
    list-style: none;
    margin: 0;
    padding: 0;
}

/*--------------------------------------
 画像
---------------------------------------*/
img {
    border: none;
    padding: 0;
    margin: 0;
}

/*--------------------------------------
 フォーム
---------------------------------------*/
form {
    margin: 0px;
    text-align: left;
}

input {
    vertical-align: middle;
}

/*--------------------------------------
 アイフレーム
---------------------------------------*/
iframe#top_info {
    height: 76px;
    /* height: 115px; */
    /* height: 154px; */
}

iframe#header_pc {
    min-width: 980px;
    margin-bottom: 10px;
}

iframe#top_slide {
    min-width: 980px;
    height: 1350px;
    /*top_infoが3行の時 */
    margin-top: 20px;
}

iframe#coupon_area {
    min-width: 980px;
    height: 180px;
    height: 350px;
    /* margin-top: 50px; */
}

iframe#point_area {
    min-width: 980px;
    height: 277px;
}


iframe#footer {
    min-width: 980px;
    margin-top: 20px;
    height: 820px;
}

@media screen and (max-width:480px) {
    iframe#top_info {
        /* height: 35px; */
        height: 70px;
        /* height: 105px; */
        /* height: 140px; */
    }

    iframe#header_pc {
        min-width: 100vw;
    }


    iframe#top_slide {
        min-width: 100vw;
        height: 920px;
        /*top_infoが3行の時 */
        margin-top: 5px;
    }

    iframe#coupon_area {
        min-width: 100vw;
        height: 45px;
        /*        GW休業記載時はmargin-top指定。それ以外は0でOK*/
        margin-top: 20px;
        height: 80px;
        height: 170px;
        margin-top: 50px;
        /* ガイド2行のとき*/
        /* margin-top: 130px; ガイド3行のとき*/
    }

    iframe#point_area {
        min-width: 100vw;
        height: 277px;
    }

    iframe#footer {
        min-width: 100vw;
        height: 1220px;
    }
}

@media screen and (max-width:400px) {
    iframe#coupon_area {
        height: 150px;
    }

    iframe#top_slide {
        height: 870px;
    }
}

/*--------------------------------------
 モーダルウィンドウ 230529
---------------------------------------*/
a:hover#m_v {
    opacity: 1 !important;
}

input#modal {
    display: none;
}

input#modal+label {
    display: none;
    width: 100%;
    height: 120%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2147483646;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

input#modal+label div {
    position: fixed;
    width: 500px;
    /*画像の横幅*/
    top: 50%;
    left: 50%;
    margin: -250px 0 0 -250px;
    /*画像の高さと幅の半分 marginをマイナス */
    background: none;
    border: none;
}


@media screen and (max-width:480px) {
    input#modal+label div {
        position: fixed;
        width: 330px;
        /*画像の横幅*/
        top: 50%;
        left: 50%;
        margin: -217px 0 0 -165px;
        /*画像の高さと幅の半分 marginをマイナス */
        background: none;
        border: none;
    }
}

/*
input#modal + label div::before {
	content: "× 閉じる";
	position: absolute;
	bottom: -13%;
	right: 50%;
	margin: 0 -30px 0 0;
	font-size: 1.3rem;
	font-weight: bold;
	color: #ffffff;
}*/

input#modal+label div::before {
    content: "×";
    position: absolute;
    top: -4%;
    /*    top: 15px;*/
    right: -4%;
    /* margin: 0 -30px 0 0; */
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 33px;
    height: 35px;
    width: 35px;
    border-radius: 20px;
    color: #ffffff;
    background: #000000;
    text-align: center;
}
