@charset "utf-8";

/* CSS Document */



body {
    background-color: #f7ebdc;
}



/* -------------------- header -------------------- */

/* 背景色変更 不要な場合は削除 */

header {
    background-color: #fffcf8;
}



/* -------------------- contents -------------------- */

/*文字装飾*/


h1 {
    font-size: 2rem;
	font-weight: 600;
    line-height: 2;
    margin-bottom: 1.6rem;
}


h2 {
    position: relative;
    display: block;
    text-align: center;
    margin-top: 80px;
    margin-bottom: 2em;
    font-size: 1.6rem;
    line-height: 2;
}
h2:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: black;
  border-radius: 2px;
}

h3 {
    font-size: 1.4rem;
    text-align: center;
    font-weight: 600;
}


p {
    font-size: 1.2rem;
	line-height: 1.85;
}


span.underline {

background:linear-gradient(transparent 70%, #FFFF00 0%);
}

span.red {
color: crimson;
}

span.fo3 {
    font-weight: 600;
}


span.emphasis {
    font-size: 1.4rem;
    font-weight: 600;
}

span.text-link {
    font-weight: 600;
    text-decoration: underline;
}


.contents-wrapper {
    max-width: 980px;
    margin: auto;
    padding: 10px;
}

#mv {
    margin: auto;
    display: block;
    padding-top: 50px;
    background-color: #fbebdd;
}

/*イントロ*/

#introduction {
    padding: 40px 0;
}



#mv {
    margin: auto;
    display: block;
    padding-top: 50px;
    background-color: #fbebdd;
}

img.top-image {
    max-width: 1000px;
    margin: auto;
    display: block;
}


.event_banner {
    width: 70%;
    margin: 20px auto;
}

.eventDates {
    margin-top: 1rem;
    font-weight: 600;
}

/*クーポン*/


.sheet1 {
    background-color: #d5d5d5;
    margin: 40px 0;
    padding: 50px 0;
}



.sheet_innner {
    display: flex;
    margin: auto;
    width: 80%;
    max-width: 600px;
    padding: 0;

}
.coupon {
    margin: 10px;
}

.coupon_img {

}



.img_coupon {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    display: block;
}

.attention {
    margin: 40px 10px;
}

.attention p {
    margin-bottom: 1rem;
}





/*クーポンの使い方ボタン*/


.how_to_use {
    display: flex;
}

a.btn-border {
    border: 2px solid #000;
    border-radius: 0;
    background: #fff;
    font-size: 1rem;
    padding: 5px;
    line-height: 3;
    margin: 0 10px;
    /* margin: 50px; */
    width: 50%;
    text-align: center;
}
a.btn-border:hover {
  color: #fff;
  background: #000;
}








#coupon {
    margin-bottom: 80px;
}


/* クーポン注意事項 */

#caution {
    padding: 2%;
	margin-bottom: 80px;
}

.caution_topic {
    display: flex;
    flex-wrap: wrap;
}


.caution_topic_title {
    background-color: #d4d4d4;
    width: 100%;
    padding: 1em;
}

.caution_topic_text {
    width: 100%;
    padding: 2em;
    background-color: #f9f9f9;
}


#caution ul li {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    line-height: 1.75;
}


/*お買い物*/

#shopping {
    display: block;
    width: 96%;
    margin: 0 auto;
}


.shopping_banner {
    margin: 20px 0;
}





.btn {
    /* flex: 1 1 auto; */
    padding: 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: black;
    font-size: 2rem;
	line-height: 4;
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
}

.btn:hover {
  background-position: right center; /* change the direction of the change here */
}



.btn-4 {
    background-image: linear-gradient(to right, #5c5c5c 0%, #000000 51%, #000000 100%);
}




.shopping_search {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 40px;
}



.button10 {
    width: 30%;
    margin: 1%;
}



.button10 a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: 0 auto;
    padding: 0.5em 1em;
    width: 100%;
    color: #333;
    font-size: 1.2rem;
    text-align: center;
    font-weight: 700;
    background-color: #f1eeee;
    transition: 0.3s;
}
.button10 a::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 2px solid #3d9ec8;
  transition: 0.2s;
}

.button10 a::after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #333333;
  border-right: 3px solid #333333;
  transform: rotate(45deg);
}

.button10 a:hover::before {
  top: 0;
  left: 0;
}

.button10 a:hover {
  text-decoration: none;
  background-color: #a0c4d3;
}

.button10 a:hover {
  text-decoration: none;
  background-color: #a0c4d3;
}




@media (max-width:720px) {

h1 {
    font-size: 2rem;
    margin:  0 auto 1rem;
    max-width: 960px;
    width: 90%;
}



h2 {
    font-size: 1.6rem;
}

h3 {
    font-size: 1.2rem;

}

p {
    font-size: 1rem;
}

p.description {
    width: 90%;
    margin: 0 auto;
}




#introduction {
    padding: 40px 10px;
}


.attention {
    margin: 20px;
}






}





@media (max-width:540px) {




#caution {
    padding: 0;
}

#caution ul li {

    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.75;
}

.caution_topic_text {
    width: 100%;
    padding: 1.2rem;
    background-color: #f9f9f9;
    text-align: justify;
}

.btn {
    font-size: 1.4rem;

}

.button10 a {
    font-size: 1rem;

}



.how_to_use {
    display: flex;
    flex-wrap: wrap;
}


a.btn-border {
width: 100%;
    font-size: 1.2rem;
	margin-bottom: 10px
}

.button10 {

    width: 46%!important;
	margin: 2%;
}



.button10 a::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -5px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border: 2px solid #3d9ec8;
    transition: 0.2s;
}


.sheet_innner {
    display: flex;
    margin: auto;
    width: 80%;
    max-width: auto;
    padding: 0;
    flex-wrap: wrap;
}
.coupon {
    margin: 20px auto;
}


.coupon_img {
    width: 100%;
}




}



.twosheet .coupon_img {
    margin: 5% auto;

}


@media (min-width:900px) {
.twosheet .coupon_img {
    width: 40%;
    margin: 5% ;
    float: left;
}
}



