@charset "utf-8";
html{
    font-size:62.5%;
    background: #fbeffb;
}
body{
    font-family: Verdana,Arial,Meiryo,"メイリオ","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3",Osaka,"MS P Gothic","ＭＳ Ｐゴシック","Helvetica Neue",Helvetica,Arial,Sans-serif;
    font-size:1.0rem;
    width: 750px;
    background: #fff;
    margin: 0 auto;
}
ul{
    margin:0;
    padding:0;
}
li{
    list-style:none;
}
a{
    transition:.3s ease;
}
a:hover{
    opacity:0.6;
    text-decoration:none;
}
.container {
    padding: 0 3em;
}
h1 img {
    width: 100%;
    height: auto;
}
.topTtl {
    color: #FF6E91;
    font-size: 4.0rem;
    padding: 1em 0;
}

.commentLeft {
    position: relative;
    display: inline-block;
    margin: 1.1em 0 1.1em 15px;
    padding: 15px;
    min-width: 120px;
    max-width: 100%;
    color: #555;
    font-size: 17px;
    font-weight: bold;
    background: #fffac9;
    border-radius: 12px;
}
.commentLeft:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -30px;
    margin-top: -15px;
    border: 15px solid transparent;
    border-right: 15px solid #fffac9;
}
.commentRight {
    position: relative;
    display: inline-block;
    margin: 1.1em 15px 1.1em 0;
    padding: 15px;
    min-width: 120px;
    max-width: 100%;
    font-weight: bold;
    color: #555;
    font-size: 17px;
    background: #fffece;
    border-radius: 12px;
    align-self: flex-end;
}
.commentRight:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 99%;
    margin-top: -15px;
    border: 15px solid transparent;
    border-left: 15px solid #fffece;
}
.commentSecond {
    position: relative;
    display: inline-block;
    margin: 1.1em 15px 1.1em 0;
    padding: 15px;
    min-width: 120px;
    max-width: 100%;
    font-weight: bold;
    color: #555;
    font-size: 17px;
    background: #fffece;
    border-radius: 12px;
    align-self: flex-end;
}
.commentSecond:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 99%;
    margin-top: -15px;
    border: 15px solid transparent;
    border-left: 15px solid #fffece;
}
.comment {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 80%;
}
.text1 {
    
    color: #ff6290;
    font-weight: bold;
    font-size: 3rem;
    text-align: center;
    margin: 3em 0;
}
.contentBox {
    margin-bottom: 8em;
}
.contentBox h3 {
    font-size: 2.6rem;
    border-top: 3px solid #ff6290;
    border-bottom: 3px solid #ff6290;
    color: #ff6290;
    text-align: center;
    padding: 1em 0;
    margin-bottom: 2em;
}
.contentBox h3 span {
    display: block;
    font-size: 2rem;
}
.contentBox ul {
    background-color: #fffde8;
    border: 5px double #ff6290;
    padding: 20px;
}
.contentBox li {
    margin-bottom: 2em;
}
.contentBox li h4 {
    font-size: 1.7rem;
    color: #ff6290;
}
.contentBox li p{
    font-size: 1.6rem;
}
.contentBox .text2{
    font-size: 1.6rem;
    line-height: 2;
    text-align: center;
    font-weight: bold;
}
.contentBox .text3{
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 2em;
}
.textLink {
    text-align: center;
    margin: 30px 0 50px;
}
.textLink a {
    font-weight: bold;
    font-size: 1.8rem;
    text-decoration: underline;
}
.contentBox .ex {
    font-size: 1rem;
    margin-bottom: 2em;
}
.contentBox .fontMid {
    font-size: 2.4rem;
}
.contentBox .fontLar {
    font-size: 3.2rem;
}
.colorRed {
    color: #f8174f;
    font-weight: bold;
}
.colorBlue {
    color: #5cbaff;
    font-weight: bold;
}
.fontBold {
    font-weight: bold;
}
.lpImg{
    text-align: center;
    margin-top: 3em;
    margin-bottom: 3em;
}
.lpImg img {
    width: 70%;
}
.lpSmallImg {
    text-align: center;
}
.lpSmallImg img {
    width: 50%;
}
.lpSmallImg2 {
    padding-bottom: 10px;
    margin: 0 40px;
}
.lpSmallImg2 img {
    width: 300px;
    height: auto;
}
.underLine {
    font-weight: bold;
    border-bottom: 2px solid;
}
/*
.banner img {
    animation: bomb 1.5s ease infinite;
}
*/
.banner {
    text-align: center;
    margin-bottom: 3em;
}
.banner img {
    -webkit-animation-duration:2s;
	-moz-animation-duration:2s;
	-ms-animation-duration:2s;
	-o-animation-duration:2s;
	animation-duration:2s;
	-webkit-animation-timing-function: ease-in;
	-moz-animation-timing-function: ease-in;
	-o-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
	-moz-animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	-o-animation-iteration-count: infinite;
	-ms-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	margin-left:auto;
	margin-right:auto;
	z-index: 8;
	-webkit-animation-name: animate1;
	-moz-animation-name: animate1;
	-o-animation-name: animate1;
	animation-name: animate1;
	width:70%;
}
@keyframes bomb {
  0% {transform: scale(1);}
  50% {transform: scale(.95);}
  100% {transform: scale(1);}
}
@-moz-keyframes animate1 {
	0% { -moz-transform: skewX(9deg); }
	10% { -moz-transform: skewX(-8deg); }
	20% { -moz-transform: skewX(7deg); }
	30% { -moz-transform: skewX(-6deg); }
	40% { -moz-transform: skewX(5deg); }
	50% { -moz-transform: skewX(-4deg); }
	60% { -moz-transform: skewX(3deg); }
	70% { -moz-transform: skewX(-2deg); }
	80% { -moz-transform: skewX(1deg); }
	90% { -moz-transform: skewX(0deg); }
	100% { -moz-transform: skewX(0deg); }
}

@-o-keyframes animate1 {
	0% { -o-transform: skewX(9deg); }
	10% { -o-transform: skewX(-8deg); }
	20% { -o-transform: skewX(7deg); }
	30% { -o-transform: skewX(-6deg); }
	40% { -o-transform: skewX(5deg); }
	50% { -o-transform: skewX(-4deg); }
	60% { -o-transform: skewX(3deg); }
	70% { -o-transform: skewX(-2deg); }
	80% { -o-transform: skewX(1deg); }
	90% { -o-transform: skewX(0deg); }
	100% { -o-transform: skewX(0deg); }
}

@-webkit-keyframes animate1 {
	0% { -webkit-transform: skewX(9deg); }
	10% { -webkit-transform: skewX(-8deg); }
	20% { -webkit-transform: skewX(7deg); }
	30% { -webkit-transform: skewX(-6deg); }
	40% { -webkit-transform: skewX(5deg); }
	50% { -webkit-transform: skewX(-4deg); }
	60% { -webkit-transform: skewX(3deg); }
	70% { -webkit-transform: skewX(-2deg); }
	80% { -webkit-transform: skewX(1deg); }
	90% { -webkit-transform: skewX(0deg); }
	100% { -webkit-transform: skewX(0deg); }
}
footer img {
    width: 100%;
    height: auto;
}
footer .cr {
    background: #302F30;
    color: #fff;
    padding: 20px;
    font-size: 1.1rem;
    margin-bottom: 0;
}
.lineImg img{
    width: 70%;
}
.yellowBg {
    background-color: #fdf8a2;
}
.caution {
    display: block;
    margin-top: 10px;
    background: #fcf995;
    color: #ea0000;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 3px 0;
    text-align: center;
}
.right-balloon{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.left-balloon{
    display: flex;
    align-items: center;
}

.ShopInfo{
	margin-bottom: 40px;
}
.ShopName p{
	font-weight: bold;
	font-size: 2.3rem;
	color: #0056b3;
}
.ShopInfo_box li{
	display: flex;
	margin:5px 0 0;
	border-bottom:1px solid #ccc;
}
.ShopDetail_title{
	width: 30%;
}
.ShopDetail_info{
	width: 70%;
}
.map{
	text-align: right;
}
.map span{
	padding: 5px 10px; 
	background-color: #0056b3; 
	color: #fff; 
	font-weight: bold;
}
.ShopButton p{
	font-size: 1.6rem; 
	color: #fff; 
	font-weight:800; 
	width:90%; 
	margin:0 auto;
}
.ShopButton a{
	color:#fff;
}
.ShopButton span{
	display:block; 
	text-align:center; 
	padding: 10px; 
	background-color: #a5903f;
}
.ShopList{
	display: flex; 
	margin:5px 0 0; 
	border-bottom:1px solid #ccc;
}

.spOnly{
    display: none;
}
.markerYellow {
    background:linear-gradient(transparent 20%, #FFFF00 0%);
}
.markerPink {
    background:linear-gradient(transparent 20%, #ff8ac2 0%);
}
.markerBlue {
    background:linear-gradient(transparent 20%, #4bdcff 0%);
}
/* 点滅 */
.blinking{
    -webkit-animation:blink 0.8s ease-in-out infinite alternate;
    -moz-animation:blink 0.8s ease-in-out infinite alternate;
    animation:blink 0.8s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
/*マーカーアニメーション*/

.marker-animation.active{
    background-position: -100% .5em;
}

.marker-animation {
    background-image: -webkit-linear-gradient(left, transparent 50%, rgb(255,250,153) 50%);
    background-image: -moz-linear-gradient(left, transparent 50%, rgb(255,250,153) 50%);
    background-image: -ms-linear-gradient(left, transparent 50%, rgb(255,250,153) 50%);
    background-image: -o-linear-gradient(left, transparent 50%, rgb(255,250,153) 50%);
    background-image: linear-gradient(left, transparent 50%, rgb(255,250,153) 50%);
    background-repeat: repeat-x;
    background-size: 200% .8em;
    background-position: 0 .5em;
    transition: all 2s ease;
    font-weight: bold;
}
.hikaru {
    position: relative;
    overflow: hidden;
    background-color: #fff;
    text-align: center;
}
.hikaru img {
    width: 80%
}
.hikaru::after {
    content: "";
    display: block;
    width: 30px;
    height: 100%;
    position: absolute;
    top: -180px;
    left: 0;
    background-color: #FFF;
    opacity: 0;
    transform: rotate(45deg);
    animation: reflect 1.5s ease-in-out infinite;
    -webkit-transform: rotate(45deg);
    -webkit-animation: reflect 2s ease-in-out infinite;
}
.pr_text{
    text-align: right;
    font: #5a5a5a;
    font-size: 0.7rem;
    margin-bottom: 2rem;
    margin-right: 10px;
}
.question{
    display: flex;
      flex-direction: column;
      align-items: center;
}
.question label{
    display: block;
    width: 65%;
    background: #fff;
    color: #ff597f;
    border: 2px solid #ffd9e9;
    font-weight: bold;
    font-size: 2rem;
    padding: 4px;
    margin: 5px;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
}
.question input:checked+label{
    background: #ffd9e9;
    color: #ff597f;
        font-weight: bold;
}
.question input{
    display: none;
}

.tuiki{
    padding: 1rem;
    text-align: center;
}
.getDate{
    font-size: 4rem;
    font-weight: bold;
    color: #ff0000;
    width: 70%;
    margin: 0 auto;
    text-align: center;
}
@media screen and (max-width: 749px) {
    body {
        width: 100%;
    }
    .container {
        padding: 0 1em;
    }
    .topTtl {
        font-size: 2.4rem;
        padding: 0.5em 0;
    }
    .text1 {
        font-size: 2.2rem;
    }
    .contentBox h3 {
        font-size: 2.2rem;
    }
    .contentBox h3 span {
        font-size: 1.6rem;
    }
    .contentBox .text3 {
        line-height: 1.6;
    }
    .lineImg img{
        width: 100%;
    }
    .lpImg img{
        width: 100%;
    }
    .banner img {
	width:90%;
}
    .textLink a {
        font-size: 1.8rem;
    }
    .question label{
    width: 90%;
}
    .spOnly{
        display: inline-block;
    }
}