@charset "utf-8"; 
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3 ,h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    text-decoration: none;
    color: #000;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;  
    border-top:1px solid #303030;
    margin: 30px 0;
}

input, select {
    vertical-align:middle;
} 

/* original */
html, body{
    margin: 0;
    padding: 0;
  }
  *{
    box-sizing: border-box;
  }
  .wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .inner{
    width: calc(100% - 100px);
    max-width: 600px;
  }
  .slide>span{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    background: #fff;
    font-size: 36px;
    font-weight: bold;
  }
  .slider{
    display: none; /* 最初は非表示に */
  }
  .slider.slick-initialized{
    display: block; /* slickが実行完了したら表示 */
  }
  
  /* arrow */
  .slick-arrow{
    z-index: 2;
    top: 50%;
    margin-top: -10px;
    width: 20px;
    height: 20px;
    border-top: 3px solid #3498db;
    border-right: 3px solid #3498db;
    opacity: .8;
  }
  .slick-arrow::before{
    content: '';
  }
  .slick-prev{
    left: 30px;
    transform: rotate(-135deg);
  }
  .slick-next{
    right: 30px;
    transform: rotate(45deg);
  }
  /* dots */
  .slick-dots{
    bottom: -25px;
  }
  .slick-dots li,
  .slick-dots li button,
  .slick-dots li button::before{
    width: 12px;
    height: 12px;
  }
  .slick-dots li{
    margin: 0 7px;
  }
  .slick-dots li button{
    background-color: #fff;
    opacity: .8;
    border-radius: 100%;
  }
  .slick-dots li.slick-active button{
    opacity: .4;
  }
  .slick-dots li button::before{
    content: '';
  }

/* ここからLP用 */
html {
  background-color: #f6bcb8;
  scroll-behavior: smooth;
}
.wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
/* トップ ここから */
.sec01 {
  background-color: #e60012;
  width: 100%;
  margin: 0 auto;
  background-image: url(../img/top_bg.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100vh;
}
.sec01_sp {
  display: none;
}
.wrapper0 {
  max-width: 70%;
  margin: 0 auto;
}
.firstview {
  padding-bottom: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  height: 90vh;
  align-items: center;
}
.fv_img img{
  width: 100%;
  margin: 0 auto;
}
.sp_top {
  display: none;
}
/* トップ ここまで */
/* ナビゲーションここから */
#nav {
  margin: 0;
  position: fixed;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  width: 100%;
  z-index: 100;
}
#nav li {
  text-align: center;
  padding: 10px;
  list-style: none;
}
#nav li:nth-of-type(1){
  background: #e92938;
  filter: brightness(100%);
  transition: 0.3s;
  outline: 2px solid #fff;
  outline-offset: -10px;  
}
#nav li:nth-of-type(2){
  background: #fff;
  filter: brightness(100%);
  transition: 0.3s;
  outline: 2px solid #e92938;
  outline-offset: -10px;  
}
#nav li:nth-of-type(3){
  background: #e92938;
  filter: brightness(100%);
  transition: 0.3s;
  outline: 2px solid #fff;
  outline-offset: -10px;  
}
#nav li:nth-of-type(4){
  background: #fff;
  filter: brightness(100%);
  transition: 0.3s;
  outline: 2px solid #e92938;
  outline-offset: -10px;  
}
#nav li:hover {
  filter: brightness(150%);
  transition: 0.3s;
  opacity: 0.9;
}
#nav li a {
  font-family: "fot-seurat-pron", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.8em;
  text-decoration: none;
}
.nav_flex {
  padding: 15px 0;
}
.nav1, .nav3 {
  color: #fff;
}
.nav2, .nav4 {
  color: #e92938;
}
/* ナビゲーションここまで */

/* 当選賞品 ここから */
.sec02 {
  background-image: url(../img/tousen_bg.png);
  background-position: center top;
  background-size: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.t_content {
  width: 80%;
  margin: 0 auto;
  padding: 50px 0;
}
.t_content img {
  width: 100%;
}
.sp_tousen {
  display: none;
}
/* 当選賞品 ここまで */

/* 取扱店舗 ここから */
.shop {
  background-color: #000;
  padding: 40px;
  margin: 0 auto;
  outline: 6px solid #ad8a2b;
  outline-offset: -3em;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}
.shop_waku {
  padding: 3em;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.shop_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}
.s_txt1, .s_txt2, .shop_btn_img {
  width: 350px;
  margin: 0 auto;
}
.s_txt2 {
  margin: 30px auto 5px auto;
}
.shop_content a {
  margin: auto;
}
.shop_btn {
  filter: brightness(100%);
  transition: 0.3s;
}
.shop_btn:hover {
  filter: brightness(115%);
  transform: scale(1.03);
  transition: 0.3s;
}
/* 取扱店舗 ここまで */

/* 応募方法 ここから */
.sec04 {
  width: 100%;
  background-color: #fdedee;
}
.oubo {
  padding: 50px;
  width: 100%;
}
.oubo_content {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.o_ribon {
  width: 700px;
  margin: 20px auto;
}
.step1, .step2, .step3 {
  border-radius: 30px;
  background-color: #fff;
  width: 750px;
  margin: 20px auto;
  padding: 60px;
  padding-bottom: 50px;
  display: grid;
  grid-template-columns: 200px 430px;
  align-items: center;
}
.step_illust {
  height: 200px;
  margin: auto;
  margin-bottom: 15px;
  grid-area: 1/1/2/3;
}
.step_arrow {
  height: 100px;
  margin: 20px;
  grid-area: 2/1/3/2;
}
.step_txt {
  grid-area: 2/2/3/3;
  font-family: "fot-udmarugo-large-pr6n", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6em;
  padding: 0 15px;
  line-height: 1.3em;
  letter-spacing: 0.05em;
}
.sp_a {
  display: none;
}
.joken {
  display: flex;
  flex-direction: column;
  width: 750px;
  margin: 30px auto;
}
.joken img {
  width: 750px;
  margin: 15px auto;
}
.joken span {
  font-family: "fot-udmarugo-large-pr6n", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.5em;
  letter-spacing: 0.05em;
  line-height: 1.4em;
  width: 750px;
  margin: 0 auto 10px auto;
}
/* 応募方法 ここまで */

/* 応募フォーム ここから */
/* 応募フォーム ここまで */

footer {
  background-color: #000;
  padding: 30px;
  padding-bottom: 7em;
  width: 100%;
}
.footer_all {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact {
  margin: 1em auto 0 auto;
  padding: 5px 30px;
  background-color: #fff;
  border-radius: 9999px;
  font-family: "fot-udmarugo-large-pr6n", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.4em;
  text-align: center;
}
.footer_all img {
  width: 350px;
  margin: 8px auto 4px auto;
}
.contact_details {
  margin: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.tel, .mail {
  width: fit-content;
  margin: 4px auto;
}
.footer_txt {
  margin: auto;
  font-family: "fot-udmarugo-large-pr6n", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.8em;
  color: #fff;
}
.footer_txt2 {
  margin: auto;
  font-family: "fot-udmarugo-large-pr6n", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4em;
  color: #fff;
}
.footer_txt3 {
  margin: auto;
  font-family: "fot-udmarugo-large-pr6n", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 0.7em;
  color: #fff;
}
.footer_txt4 {
  margin: auto;
  font-family: "fot-udmarugo-large-pr6n", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.25em;
  color: #fff;
}
.footer_txt2:last-of-type {
  margin-bottom: 20px;
}
@media screen and (max-width: 1030px) {
  .sec01 {
    display: none;
  }
  .sec01_sp {
    display: block;
    width: 100%;
      background: linear-gradient(45deg, #e60012 25%, transparent 25%, transparent 75%, #e60012 75%),
                  linear-gradient(45deg, #e60012 25%, transparent 25%, transparent 75%, #e60012 75%);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    background-color: #fff;
    padding-bottom: 20px;
  }
  .sec01_sp img {
    width: 100%;
  }
  .pc_top {
    display: none;
  }
  .sp_top {
    display: block;
  }
  .shop {
    width: 100%;
  }
  .shop_content {
    width: auto;
  }
  .o_ribon {
    width: 100%;
  }
  .step1, .step2, .step3 {
    width: 100%;
    padding: 40px;
    margin: 10px auto;
    grid-template-columns: 25% 75%;
  }
  .step_arrow {
    margin: 0;
    height: auto;
    width: 100%;
  }
  .step_txt {
    padding: 0;
    margin-left: 20px;
  }
  .joken, .joken img, .joken span {
    width: 100%;
  }
  .joken span {
    font-size: 1.4em;
  }
}
/* タブレット用 ここまで */
/* スマホ用 ここから*/
@media screen and (max-width: 480px) {
  .sec01 {
    display: none;
  }
  .sec01_sp {
    display: block;
    width: 100%;
      background: linear-gradient(45deg, #e60012 25%, transparent 25%, transparent 75%, #e60012 75%),
                  linear-gradient(45deg, #e60012 25%, transparent 25%, transparent 75%, #e60012 75%);
    background-size: 10px 10px;
    background-position: 0 0, 5px 5px;
    background-color: #fff;
  }
  .sec01_sp img {
    width: 100%;
  } 
  .wrapper {
    max-width: 100%;
  }
  .pc_top {
    display: none;
  }
  .sp_top {
    display: block;
  }
  #nav {
    width: 100%;
    grid-template-columns: 50% 50%;
  }
  .nav_flex {
    padding: 5px 0;
  }
  #nav li:nth-of-type(1) {
    grid-area: 1/1/2/2;
    outline-offset: -5px;
  }
  #nav li:nth-of-type(2) {
    grid-area: 1/2/2/3;
    outline-offset: -5px;
  }
  #nav li:nth-of-type(3) {
    grid-area: 2/1/3/2;
    outline-offset: -5px;
    background: #fff;
    outline: 2px solid #e92938;
  }
  #nav li:nth-of-type(4) {
    grid-area: 2/2/3/3;
    outline-offset: -5px;
    background: #e92938;
    outline: 2px solid #fff;
  }
  .nav1, .nav4 {
    color: #fff;
  }
  .nav2, .nav3 {
    color: #e92938;
  }
  #nav li a {
    font-size: 1.4em;
  }

  .pc_tousen {
    display: none;
  }
  .sp_tousen {
    display: block;
  }
  .t_content {
    width: 95%;
    padding: 15px;
  }
  .shop_content {
    width: auto;
  }
  .shop {
    width: 100%;
    outline-offset: -1em;
    outline: 4px solid #ad8a2b;
  }
  .shop_waku {
    width: 80%;
    padding: 0;
  }
  .shop_content img {
    width: 200px;
  }
  .s_txt1 {
    margin: 0 auto 10px auto;
  }
  .s_txt2 {
    margin: 8px auto 5px auto;
  }
  .oubo {
    padding: 0;
    padding-top: 30px;
  }
  .o_ribon {
    width: 85%;
    margin: 10px auto;
  }
  .pc_a {
    display: none;
  }
  .sp_a {
    display: block;
  }
  .step1, .step2, .step3 {
    border-radius: 30px;
    background-color: #fff;
    width: 90%;
    margin: 5px auto;
    padding: 30px;
    display: grid;
    grid-template-columns: 25% 75%;
  }
  .step_illust {
    height: 100px;
  }
  .step_arrow {
    height: auto;
    width: 100%;
    margin: 0;
  }
  .step_txt {
    font-size: 1.1em;
    padding: 0.15px;
    line-height: 1.25em;
    margin-left: 15px;
  }
  .joken {
    width: 90%;
  }
  .joken img {
    width: 100%;
    margin: 5px auto;
  }
  .joken span {
    width: auto;
    font-size: 1em;
    line-height: 1.2em;
    margin: 5px;
  }
  .joken span:last-of-type {
    margin-bottom: 15px;
  }
  footer {
    padding: 20px;
    padding-bottom: 8em;
  }
  .footer_all img {
    width: 60%;
    margin: 4px auto;
  }
  .contact {
    margin: 0  auto;
    padding: 5px 20px;
    font-size: 1em;
  }
  .footer_txt2 {
    font-size: 0.8em;
  }
  .footer_txt {
    font-size: 1.2em;
  }
  .footer_txt3 {
    font-size: 0.4em;
  }
  .footer_txt4 {
    font-size: 0.8em;
  }
}
/* スマホ用 ここまで*/