@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}

.font-noto {
  font-family: 'Noto Sans JP', sans-serif;
}
.font-noto-serif {
  font-family: "Noto Serif JP", serif;
}
.font-mplus-rounded {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
.font-zenmaru{
  font-family: "Zen Maru Gothic", sans-serif;
}
html, body {
  height: 100%;
  font-size:62.5%;
}
*, *::after, *::before {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
}
body {
  color: #000000;
  background: #FFFFFF;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Lucida Grande", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Verdana, "ＭＳ Ｐゴシック", sans-serif;
  overflow-x: hidden;
  font-size: 1.4em;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
}
p {
  line-height: 1.8;
  letter-spacing: 0.05rem;
  text-align: center;
}
main {
  display: block;
  overflow:hidden;
  width:100%;
}

img{
  max-width:100%;
  height:auto;
  vertical-align:bottom;
}
li {
  list-style-type: none;
}
a {
  text-decoration: none;
  color: #fff;
}
.br-pc {
  display: block;
}
.br-sp {
  display: none;
}
sup, sub {
  font-size: 1.2rem;
}


@media only screen and (max-width: 1024px) {
  body {
    font-size: 1.4rem;
  }
  .inner {
    width: 80%;
  }
}
@media only screen and (max-width:750px) {
  .inner {
    width: 90%;
  }
  body {
    font-size: 1.35rem;
  }
  .br-pc {
    display: none;
  }
  .br-sp {
    display: block;
  }
}
.wrap {
  background-color: rgba(255, 255, 0, 1);
  background-blend-mode: lighten;
  z-index: 20;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.wrap img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  animation: fadeIn 1s;
  animation-fill-mode: backwards;
  -webkit-animation: fadeIn 1s;
  -webkit-animation-fill-mode: backwards;
  max-width: 500px;
  width: 80%;
  height: auto;
}
.wrap.active {
  -webkit-transition: all 3s ease;
  -moz-transition: all 3s ease;
  -o-transition: all 3s ease;
  transition: all 3s ease;
  background-color: rgba(255, 255, 255, 0);
}
.wrap.active img {
  display: none;
}






/*-------------------
animation
-------------------*/
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: scale(.8,.8);
  }
  to {
    opacity: 1;
    transform: scale(1,1);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: scale(.8,.8);
  }
  to {
    opacity: 1;
    transform: scale(1,1);
  }
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@-webkit-keyframes fadeInTop {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTop {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInBottom {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottom {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}


.CopyClickboard {
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 80%;
    max-width:500px;
    padding: 2em 1em;
    transform:translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    border: 3px solid #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    color: #fff;
    font-size: 1em;
    text-align: center;
    opacity: 0;
    -webkit-transition: opacity .8s;
    -o-transition: opacity .8s;
    -moz-transition: opacity .8s;
    transition: opacity .8s;
    z-index: -1;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.CopyClickboard__num {
    margin: 0 10px;
    font-size:80%;
}


.hf.disable:after{
  content:'';
  display:block;
  background:rgba(255,255,255, .7);
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  height:100%;
  width:100%;
  margin:auto;
  z-index:10;
  transform:skewY(0deg);
}

.hf.disable .disablea{
  position:absolute;
  left:50%;
  top:50%;
  margin:0 auto;
  z-index:11;
  width:60%;

  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align:center;
}

.hf.disable .disablea img{
  max-width:100%;
  height:auto;
}

/*-------------------
header
-------------------*/
header {
  width: 100%;
  position: relative;
  text-align:center;
  background:#ffe100;
  z-index:3;
}

header::after {
  content:'';
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%20640%2071.5420273%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.st0%20%7B%20fill%3A%20%23ffe102%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M640%2C39.5420273V0H0v65.5420273c184-74%2C346.6637103%2C6%2C497%2C6%2C113%2C0%2C143-32%2C143-32Z%22%2F%3E%3C%2Fsvg%3E');
  background-size:100% auto;
  background-repeat:no-repeat;
  background-position:center top;
  height:12vw;
  width:100%;
  position:absolute;
  bottom:-11.99vw;
  left:0;
  right:0;
}


header img{
  max-width:100%;
  height:auto;
  vertical-align:bottom;
}

header .mainhead{
  max-width:1000px;
  width:100%;
  margin:0 auto;
  position:relative;

}


header .head_lg{
  width:25%;
  max-width:250px;
  margin:0 auto;
  text-align:left;
  position:absolute;
  top:3vw;
  right:3vw;
  animation: fadeInBottom 1s;
  animation-delay: 1.8s;
  animation-fill-mode: backwards;
  -webkit-animation: fadeInBottom 1s;
  -webkit-animation-delay: 1.8s;
  -webkit-animation-fill-mode: backwards;
}

header .mainimg{
  position:relative;
  top:-5vw;
  left:-10%;
  animation: fadeInTop 1s;
  animation-delay: 1.8s;
  animation-fill-mode: backwards;
  -webkit-animation: fadeInTop 1s;
  -webkit-animation-delay: 1.8s;
  -webkit-animation-fill-mode: backwards;
}

header .mainhead h1 {
  animation: fadeInUp .8s;
  animation-delay: 2.3s;
  animation-fill-mode: backwards;
  -webkit-animation: fadeInUp .8s;
  -webkit-animation-delay: 2.3s;
  -webkit-animation-fill-mode: backwards;
  margin: -5vw auto 0 auto;
  width:95%;
  max-width:800px;

}

header .mainhead .head-pr {
  animation: fadeInLeft .8s;
  animation-delay: 2.3s;
  animation-fill-mode: backwards;
  -webkit-animation: fadeInLeft .8s;
  -webkit-animation-delay: 2.3s;
  -webkit-animation-fill-mode: backwards;
  margin: 0 auto;
  width:20%;
  max-width:190px;
  position:absolute;
  top:53%;
  right:0;

}




header .head-date.disable{
  position:relative;
}

header .head-date.disable img{
  opacity:.2;
}

header .head-date.disable .disablea{
  position:absolute;
  left:50%;
  top:50%;
  margin:auto;
  z-index:11;
  color:#FFFFFF;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align:center;
  font-size:clamp(2rem, 4vw, 3rem);
  font-weight:800;
}

header .head-date .head-date-main {
  animation: fadeInBottom 1s;
  animation-delay: 2.8s;
  animation-fill-mode: backwards;
  -webkit-animation: fadeInBottom 1s;
  -webkit-animation-delay: 2.8s;
  -webkit-animation-fill-mode: backwards;
  padding:3vw 0;
  width:90%;
  max-width:800px;
  margin:0 auto;
}


header.disable:after{
  content:'';
  display:block;
  background:rgba(0,0,0, .5);
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  height:30%;
  width:100%;
  margin:auto;
  z-index:10;
  transform:skewY(0deg);
}

header.disable .disablea{
  position:absolute;
  left:50%;
  bottom:5%;
  margin:auto;
  z-index:11;
  width:40%;

  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  text-align:center;
}

header.disable .disablea img{
  max-width:100%;
  height:auto;
}

@media only screen and (min-width:1000px) {
  header .head_lg{
    top:1rem;
    right:0;
  }

  header .mainimg{
    top:-5rem;
  }

  header .mainhead h1 {
    margin: -3rem auto 0 auto;
  }

}


@media only screen and (max-width:640px) {

  header::after {
    content:'';
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%20640%2071.5420273%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.st0%20%7B%20fill%3A%20%23ffe102%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M640%2C39.5420273V0H0v65.5420273c184-74%2C346.6637103%2C6%2C497%2C6%2C113%2C0%2C143-32%2C143-32Z%22%2F%3E%3C%2Fsvg%3E');
    background-size:100% auto;
    background-repeat:no-repeat;
    background-position:center top;
    height:12vw;
    width:100%;
    position:absolute;
    bottom:-11.99vw;
    left:0;
    right:0;
  }

  header .head_lg{
    top:1vw;
    right:1vw;
  }

  header .head_lg img{
    vertical-align:top;
  }

  header .mainimg{
    top:0;
    left:0;
    width:83%;
  }

  header .mainhead h1 {
    margin: 0 auto;

  }

  header .mainhead .head-pr {
    top:40%;
    right:2vw;

  }
  
}


/*campaign
--------------*/
#campaign{
  text-align:center;
  position:relative;
}

#campaign .campaign-tl-bg{
  background:url(../images/campaign_tl_bg_pc.webp), url(../images/campaign_tl_bg_bottom_pc.webp) ,url(../images/campaign_tl_bg_sm.webp);
  background-size:100% auto,100% auto, 2% auto;
  background-repeat:no-repeat,no-repeat, repeat;
  background-position:center 10vw,center bottom,left top;
  text-align:center;
  position:relative;
  padding:10vw 0;
}

#campaign .campaign-tl{
  width:80%;
  max-width:800px;
  margin:0 auto;
}

@media only screen and (min-width:1000px) {
  #campaign .campaign-tl-bg{
    background-size:1300px auto,100% auto, 2% auto;
  }
}

@media only screen and (max-width:640px) {
  #campaign .campaign-tl-bg{
    background:url(../images/campaign_tl_bg_sp.webp), url(../images/campaign_tl_bg_bottom_sp.webp) ,url(../images/campaign_tl_bg_sm.webp);
    background-size:95% auto,100% auto, 3% auto;
    background-repeat:no-repeat,no-repeat, repeat;
    background-position:center 10vw,center bottom,left top;
    padding:12vw 0 8vw 0;
  }
}


#campaign .campaign-date-bg{
  background:#40a7e1;
  padding:2vw 0;
}

#campaign .campaign-date-bg .campaign-date{
  width:90%;
  max-width:800px;
  margin:0 auto;
}

#campaign .campaign-date-bg .campaign-date li{
  padding:1vw 0;
}

@media only screen and (min-width:1000px) {
  #campaign .campaign-date-bg{
    padding:1rem 0;
  }

  #campaign .campaign-date-bg .campaign-date li{
    padding:1rem 0;
  }
}

#campaign .campaign-date .disable{
  position:relative;
}

#campaign .campaign-date .disable img{
  opacity:.2;
}

#campaign .campaign-date li .disablea{
  position:absolute;
  left:50%;
  top:50%;
  margin:auto;
  z-index:11;
  color:#FFFFFF;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align:center;
  font-size:clamp(1.2rem, 4vw, 3rem);
  font-weight:800;
}


#campaign .campaign-seal-bg{
  background:url(../images/campaign_seal_bg_pc.webp), url(../images/campaign_seal_bg_sm.webp);
  background-size:100% auto, 2% auto;
  background-repeat:no-repeat, repeat;
  background-position:center 5vw,left top;
  text-align:center;
  position:relative;
  padding:20vw 0 10vw 0;
}

#campaign .campaign-seal-bg .campaign-seal-box{
  width:80%;
  max-width:800px;
  margin:0 auto;
  background:#FFFFFF;
  border:3px solid #088dd8;
  border-radius:3rem;
}

#campaign .campaign-seal-bg .campaign-seal-box h2{
  width:85%;
  margin:-10vw auto 0 auto;
}

#campaign .campaign-seal-bg .campaign-seal-box .lead{
  color:#40a7e1;
  font-size:clamp(1rem, 3.5vw, 3.5rem);
  font-weight:600;
  padding:3vw 0 2vw 0;
  line-height:1.6;
}

#campaign .campaign-seal-bg .campaign-seal-box .campaign-seal-img{
  width:80%;
  margin:0 auto;
}

#campaign .campaign-seal-bg .campaign-seal-box .atten{
  color:#40a7e1;
  font-size:clamp(1rem, 2.2vw, 2rem);
  font-weight:600;
  line-height:1.4;
  padding:2vw 0;
}

#campaign .campaign-seal-bg .campaign-seal-box .schedule{
  padding-bottom:3vw;
}

#campaign .campaign-seal-bg .campaign-seal-box .schedule li{
  padding:2vw 0;
}

#campaign .campaign-seal-bg .campaign-seal-box .schedule li dl{
  
}

#campaign .campaign-seal-bg .campaign-seal-box .schedule li dl dt{
  background:#40a7e1;
  border:3px solid #088dd8;
  border-radius:10rem;
  color:#FFFFFF;
  padding:.2rem 0;
  width:6em;
  display:inline-block;
  font-size:clamp(1.7rem, 2.8vw, 3rem);
  font-weight:900;
}

#campaign .campaign-seal-bg .campaign-seal-box .schedule li dl dd{
  color:#40a7e1;
  font-weight:900;
  font-size:clamp(1.4rem, 3vw, 3rem);
  line-height:1.4;
  padding-top:1rem;
  padding-left:1rem;
  padding-right:1rem;
}

#campaign .campaign-seal-bg .campaign-seal-box .schedule li dl dd .txl{
  font-size:120%;
}

#campaign .campaign-seal-bg .campaign-seal-box .schedule li dl dd .txll{
  font-size:140%;
}

#campaign .campaign-seal-bg .campaign-seal-box .schedule li dl dd .txs{
  font-size:80%;
}

#campaign .campaign-seal-bg .campaign-seal-box .schedule li dl dd .yll{
  background: linear-gradient(transparent 60%, #fff000 60%);
  padding:0 1rem;
}

#campaign .campaign-seal-bg .campaign-seal-box .schedule li dl dd.atten{
  font-weight:600;
  font-size:clamp(.7rem, 1.8vw, 1.6rem);
  padding:1rem 0 0 0;
}

#campaign .campaign-seal-bg .campaign-seal-box .schedule li dl dd a{
  color:#40a7e1;
  position:relative;

}

#campaign .campaign-seal-bg .campaign-seal-box .schedule li dl dd a::after{
  content:'';
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2023.8709558%2023.8730438%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.st0%20%7B%20fill%3A%20none%3B%20stroke%3A%20%2340a7e1%3B%20stroke-linecap%3A%20round%3B%20stroke-linejoin%3A%20round%3B%20stroke-width%3A%202px%3B%20%7D%20.st1%20%7B%20fill%3A%20%2340a7e1%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpolyline%20class%3D%22st0%22%20points%3D%2211%202.8730438%201%202.8730438%201%2022.8730438%2021%2022.8730438%2021%2012.8730438%22%2F%3E%20%3Cg%3E%20%3Cpath%20class%3D%22st1%22%20d%3D%22M7%2C17.8730438c-.2558594%2C0-.5117188-.0976562-.7070312-.2929688-.390625-.3903809-.390625-1.0236816%2C0-1.4140625L21.8945312.5649383c.390625-.390625%2C1.0234375-.390625%2C1.4140625%2C0%2C.390625.3903809.390625%2C1.0236816%2C0%2C1.4140625l-15.6015625%2C15.6010742c-.1953125.1953125-.4511719.2929688-.7070312.2929688Z%22%2F%3E%20%3Cpath%20class%3D%22st1%22%20d%3D%22M13.7319054%2C1.1881692v.0000017c.01673.4697878.4113879.8369157.8811578.8196913l6.6110859-.2424001c.4938882-.0181088.8991639.3871054.8811301.8809963l-.2414521%2C6.6126658c-.0171513.4697238.3499612.864303.8197004.8810288l.0002696.0000096c.469209.0167069.8632064-.3499432.8802378-.8191405l.3063483-8.439624c.0179222-.4937407-.3871922-.8988049-.8809306-.8808215l-8.438512.3073543c-.4691558.017088-.835743.4110688-.8190351.8802383Z%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E');
  width:3rem;
  height:3rem;
  background-size:100%;
  background-repeat:no-repeat;
  background-position:center center;
  position:absolute;
  top:50%;
  right:-4rem;
  transform: translateY(-50%);
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#campaign .campaign-seal-bg .campaign-seal-box .schedule li dl dd a:hover::after{
  right:-5rem;
}

#campaign .campaign-seal-bg .campaign-seal-box .camp-bt{
  width:70%;
  max-width:500px;
  margin:0 auto 5vw auto;
  display:block;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#campaign .campaign-seal-bg .campaign-seal-box .camp-bt:hover{
  opacity:.7;
}

@media only screen and (min-width:1000px) {
  #campaign .campaign-seal-bg{
    background-size:1300px auto, 2% auto;
    padding:20rem 0 10rem 0;
  }

  #campaign .campaign-seal-bg .campaign-seal-box h2{
    width:85%;
    margin:-10vw auto 0 auto;
  }

  #campaign .campaign-seal-bg .campaign-seal-box .lead{
    padding:2rem 0 1rem 0;
  }

  #campaign .campaign-seal-bg .campaign-seal-box .atten{
    padding:1rem 0;
  }

  #campaign .campaign-seal-bg .campaign-seal-box .schedule{
    padding-bottom:3rem;
  }

  #campaign .campaign-seal-bg .campaign-seal-box .schedule li{
    padding:2rem 0;
  }

  #campaign .campaign-seal-bg .campaign-seal-box .camp-bt{
    margin:0 auto 5rem auto;
  }
}


@media only screen and (max-width:640px) {
  #campaign .campaign-seal-bg{
    background:url(../images/campaign_seal_bg_sp.webp), url(../images/campaign_seal_bg_sm.webp);
    background-size:95% auto, 3% auto;
    background-repeat:no-repeat, repeat;
    background-position:center 5vw,left top;
    padding:15vw 0 5vw 0;
  }

  #campaign .campaign-seal-bg .campaign-seal-box{
    border:2px solid #088dd8;
    border-radius:2rem;
  }

  #campaign .campaign-seal-bg .campaign-seal-box .schedule li dl dt{
    border:2px solid #088dd8;
    padding:.2vw 0;
  }


  #campaign .campaign-seal-bg .campaign-seal-box .schedule li dl dd a::after{
    content:'';
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2023.8709558%2023.8730438%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.st0%20%7B%20fill%3A%20none%3B%20stroke%3A%20%2340a7e1%3B%20stroke-linecap%3A%20round%3B%20stroke-linejoin%3A%20round%3B%20stroke-width%3A%202px%3B%20%7D%20.st1%20%7B%20fill%3A%20%2340a7e1%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpolyline%20class%3D%22st0%22%20points%3D%2211%202.8730438%201%202.8730438%201%2022.8730438%2021%2022.8730438%2021%2012.8730438%22%2F%3E%20%3Cg%3E%20%3Cpath%20class%3D%22st1%22%20d%3D%22M7%2C17.8730438c-.2558594%2C0-.5117188-.0976562-.7070312-.2929688-.390625-.3903809-.390625-1.0236816%2C0-1.4140625L21.8945312.5649383c.390625-.390625%2C1.0234375-.390625%2C1.4140625%2C0%2C.390625.3903809.390625%2C1.0236816%2C0%2C1.4140625l-15.6015625%2C15.6010742c-.1953125.1953125-.4511719.2929688-.7070312.2929688Z%22%2F%3E%20%3Cpath%20class%3D%22st1%22%20d%3D%22M13.7319054%2C1.1881692v.0000017c.01673.4697878.4113879.8369157.8811578.8196913l6.6110859-.2424001c.4938882-.0181088.8991639.3871054.8811301.8809963l-.2414521%2C6.6126658c-.0171513.4697238.3499612.864303.8197004.8810288l.0002696.0000096c.469209.0167069.8632064-.3499432.8802378-.8191405l.3063483-8.439624c.0179222-.4937407-.3871922-.8988049-.8809306-.8808215l-8.438512.3073543c-.4691558.017088-.835743.4110688-.8190351.8802383Z%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E');
    width:5vw;
    height:5vw;
    background-size:100%;
    background-repeat:no-repeat;
    background-position:center center;
    position:absolute;
    top:50%;
    right:-8vw;
  }

  #campaign .campaign-seal-bg .campaign-seal-box .schedule li dl dd a:hover::after{
    right:-9vw;
  }
}


/*present
--------------*/
#present{
  background:url(../images/present_bg_pc.webp), url(../images/present_bg_sm.webp);
  background-size:100% auto, 2% auto;
  background-repeat:no-repeat, repeat;
  background-position:center 10vw,left top;
  text-align:center;
  position:relative;
  padding:5vw 0;
}

#present h2{
  width:90%;
  max-width:800px;
  margin:0 auto;
}

#present .primg{
  width:80%;
  max-width:800px;
  margin:0 auto;
  padding:3vw 0;
}

#present .atten{
  color:#4e7abc;
  font-size:clamp(.6rem, 2vw, 1.4rem);
  font-weight:600;
}

@media only screen and (min-width:1000px) {
  #present{
    background-size:1300px auto, 2% auto;
    padding:5em 0;
  }

  #present .primg{
    padding:2em 0;
  }
}

@media only screen and (max-width:640px) {
  #present{
    background:url(../images/present_bg_sp.webp), url(../images/present_bg_sm.webp);
    background-size:95% auto, 3% auto;
    background-repeat:no-repeat, repeat;
    background-position:center 12vw,left top;
    text-align:center;
    position:relative;
    padding:10vw 0 5vw 0;
  }

  #present .primg{
    padding:5vw 0;
  }

}

/*howto
--------------*/
#howto {
  background:url(../images/howto_bg_pc.webp), url(../images/howto_bg_sm.webp);
  background-size:100% auto, 2% auto;
  background-repeat:no-repeat, repeat;
  background-position:center 10vw,left top;
  text-align:center;
  position:relative;

}



#howto h2:after{
  content:'';
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2086.6%2075%22%20style%3D%22enable-background%3Anew%200%200%2086.6%2075%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%2340a7e1%3B%7D%3C%2Fstyle%3E%3Cpolygon%20class%3D%22st0%22%20points%3D%2243.3%2C75%2086.6%2C0%200%2C0%20%22%2F%3E%3C%2Fsvg%3E');
  background-size:5% 100%;
  background-position:center top;
  background-repeat:no-repeat;
  height:5vw;
  width:100%;
  position:absolute;
  bottom:-4vw;
  left:0;
  right:0;
}

#howto h2 {
  margin: 0 auto;
  background-color:#40a7e1;
  position: relative;
  padding:1vw 0;
  z-index:2;
  color:#FFFFFF;
  font-size:clamp(2rem, 5vw, 8rem);
  letter-spacing:.5rem;
}




@media only screen and (min-width:1000px) {
  #howto {
    background-size:1300px auto, 2% auto;
  }

  #howto h2 {
    padding:0;
  }

}


@media only screen and (max-width:640px) {

  #howto {
    background:url(../images/howto_bg_sp.webp), url(../images/howto_bg_sm.webp);
    background-size:95% auto, 3% auto;
    background-repeat:no-repeat, repeat;
    background-position:center 20vw,left top;
    text-align:center;
    position:relative;

  }
}

#howto .htbx {
  width:80%;
  margin: 0 auto;
  max-width: 600px;
  position: relative;
  padding:5vw 0;
}

.htbx.disable{
  position:relative;
}

.htbx.disable:after{
  content:'';
  display:block;
  background:rgba(0,0,0, .7);
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  height:100%;
  width:100%;
  margin:auto;
  border-radius:20px;
}

.htbx.disable .disablea{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  top:0;
  margin:auto;
  z-index:100;
  width:60%;
  display:flex;
  align-items: center;
    justify-content: center;
    align-content: center;
    color:#FFFFFF;
    font-weight:800;
    font-size:clamp(3rem, 7vw, 5rem);
}


#howto .htstep {
  vertical-align: middle;
  padding: 0;
  display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
}


#howto .htstep li{
  padding:5vw 0;
  width:100%;
}


#howto .htstep li .htbutton {
  padding-top:3vw;
}

#howto .htstep li .htbutton a{
  background:#ffe100;
  color:#6b3b30;
  font-size:clamp(2rem, 3vw, 4rem);
  font-weight:600;
  letter-spacing:.3rem;
  padding:2vw 8vw;
  border-radius:10rem;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#howto .htstep li .htbutton a:hover{
  background:#6b3b30;
  color:#ffe100;
}

#howto .htbx .atten{
  color:#6b3b30;
  font-size:clamp(.75rem, 2vw, 1.8rem);
  font-weight:600;
}




@media only screen and (min-width:1000px) {
  #howto .htbx {
    padding:3em 0;
    max-width: 1000px;
  }

  #howto .htstep li{
    width:48%;
    padding:3em 0;
  }

  #howto .htstep li .htbutton {
    padding-top:3em;
  }

  #howto .htstep li .htbutton a{
    padding:.5em 2em;
  }

  


}




@media only screen and (max-width:640px) {
  #howto .htstep li{
    padding:8vw 0;
  }
 
}

.attention{
  background:#40a7e1;
  padding:5vw 0;
  text-align:center;
}

.attention dl{
  color:#FFFFFF;
  width:90%;
  max-width:600px;
  margin:0 auto;
}

.attention dl dt{
  font-family: 'Noto Sans JP', sans-serif;
  font-size:clamp(1.6rem, 4vw, 3rem);
  font-weight:bold;
}

.attention dl dd.lead{
  font-size:clamp(1.2rem, 3vw, 1.6rem);
  font-weight:600;
  line-height:1.4;
  padding-bottom:2vw;
}

.attention dl dd.address{
  font-size:clamp(1.6rem, 3.5vw, 2rem);
  font-weight:600;
  line-height:1.4;
  border-top:1px solid #FFFFFF;
  border-bottom:1px solid #FFFFFF;
  padding:1vw 0;
}

.attention dl dd.address a{
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;

}

.attention dl dd.address a:hover{
  color:#000000;
}

.attention dl dd.atten{
  font-size:clamp(1rem, 2vw, 1.2rem);
  font-weight:600;
  line-height:1.4;
  padding-top:2vw;
}

@media only screen and (min-width:1000px) {
  .attention{
    padding:3em 0;
  }

  .attention dl dd.lead{
    padding-bottom:1em;
  }

  .attention dl dd.address{
    padding:1em 0;
  }

  .attention dl dd.atten{
    padding-top:1em;
  }
}

/*products
--------------*/

#products{
  background:url(../images/products_bg_sm.webp);
  background-size:2% auto;
  background-repeat:repeat;
  background-position:left top;
  text-align:center;
  position:relative;
  padding:5vw 0;
}



#products h2 {
  margin: 0 auto;
  width:60%;
  max-width:600px;
}

#products .products-list{
  width:90%;
  max-width:1000px;
  margin:0 auto;
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
  padding:5vw 0;
}

#products .products-list li{
  width:33%;
}


#products .prbutton {
  margin: 0 auto;
  position: relative;
  z-index: 10;
  padding:0 0 3vw 0;
}


#products .prbutton .prproducs {
}
#products .prbutton .prproducs .btg {
  display:flex;
  justify-content: center;
}

#products .prbutton .prproducs .btg > div{
  padding:0 2%;
}

#products .prbutton .prproducs .btg > div a{
 -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#products .prbutton .prproducs .btg > div a:hover{
  opacity:.7;
}

#products .prbutton .prproducs .btg .js-img-switch {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}
#products .prbutton .prproducs .btg .js-img-switch:hover {
  opacity: .7;
}


#products .pr_eshop .js-dropdown {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  cursor: pointer;
  pointer-events: auto;
  color: #fff;
}

#products .pr_eshop .js-dropdown .pr_eshop_hv:before {
  content:'';
  display:block;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #ff89b8;
  border-left: 20px solid transparent;
  width:20px;
  margin:0 auto;
  position:absolute;
  top:-20px;
  left:0;
  right:0;
  z-index:105;

}
#products .pr_eshop .js-dropdown .pr_eshop_hv {
  line-height: 1;
  position: absolute;
  z-index: 100;
  top: 20px;
  left: 0;
  display: none;
  width: 100%;
  padding: 10px 10px 0;
  background: #ff89b8;
  border-radius:10px;
}
#products .pr_eshop .js-dropdown .pr_eshop_hv li {
  margin-bottom: 10px;
  position: relative;
}
#products .pr_eshop .js-dropdown .pr_eshop_hv li a {
  display: block;
  background: #FFFFFF;
  padding: 0.5em;
  transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
  opacity: .9;
}
#products .pr_eshop .js-dropdown .pr_eshop_hv li::after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-weight: bold;
  color: #000;
  position: absolute;
  top: 35%;
  right: 10px;
  transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
}
#products .pr_eshop .js-dropdown .pr_eshop_hv li a:hover {
  opacity: 1;
}
#products .pr_eshop .js-dropdown .pr_eshop_hv li:hover::after {
  right: 5px;
}

#products .sns_list{
  padding:10vw 0 2vw 0;
  margin:5% auto 0 auto;
  max-width:970px;
  width:90%;
  background:#FFFFFF;
  border:3px solid #40a7e1;
  position:relative;
  border-radius:3rem;
}


#products .sns_list img{
  max-width:100%;
  height:auto;
}

#products .sns_list dt{
  position:absolute;
  top:-8%;
  left:0;
  right:0;
  width:70%;
  margin:0 auto;
}


#products .sns_list dd.sl{
  text-align:center;
    width:90%;
    margin:0 auto;
}

#products .sns_list dd.comment{
  padding-top:2vw;
  width:40%;
  margin:0 auto;
}


#products .sns_list dd ul{
  text-align:center;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

#products .sns_list dd ul li{
padding:0 3%;
}


#products .sns_list dd ul li a{
transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
  opacity:1;
}

#products .sns_list dd ul li a:hover{
  opacity:.6;
}

#products .stry{
  padding-top:5%;
}

#products .stry a{
  display:inline-block;
  transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
  opacity:1;
}

#products .stry a:hover{
  opacity:.6;
}



@media only screen and (min-width:1000px) {
  #products{
    padding:5em 0;
  }

  #products .products-list{
    padding:3em 0;
  }

  #products .prbutton {
    padding:0 0 2em 0;
  }

  #products .sns_list{
    padding:8em 0 1em 0;
  }

  #products .sns_list dd.comment{
    padding-top:2em;
  }
}




@media only screen and (max-width:640px) {
  #products{
    background:url(../images/products_bg_sm.webp);
    background-size:3% auto;
    background-repeat:repeat;
    background-position:left top;
    text-align:center;
    position:relative;
    padding:10vw 0;
  }

  #products .products-list li{
    width:50%;
    padding:1vw 0;
  }

  #products .sns_list{
    border:2px solid #40a7e1;
    border-radius:1rem;
  }

  #products .sns_list dt{
    position:absolute;
    top:-15%;
    left:0;
    right:0;
    width:70%;
    margin:0 auto;
  }
  
}



/*kiyaku
--------------*/
#kiyaku {
  text-align: center;
  padding: 0 0 2em 0;
  position: relative;
  background:#e4f5ff;
}
#kiyaku h2 {
  background: #40a7e1;
  color: #FFFFFF;
  font-size:clamp(1.4rem, 3vw, 3rem);
  padding: 0.3em 0;
  letter-spacing: .5rem;
  font-weight: 700;
}
#kiyaku .kiyaku_wp {
  width: 90%;
  max-width: 950px;
  margin: 20px auto;
  text-align: left;
  padding: 0.5em 1.5em;
  overflow: auto;
  height: 40em;
  box-sizing: border-box;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  background:#FFFFFF;
}
#kiyaku .kiyaku_wp dt.ky_tl {
  font-size: 110%;
  font-weight: bold;
  padding-top: 1em;
}
#kiyaku .kiyaku_wp dd.ky_mn {
  border-top: 2px solid #000;
  padding: 0.5em 0;
}
#kiyaku .kiyaku_wp dd.ky_mn dl.ky_eac {}
#kiyaku .kiyaku_wp dd.ky_mn dl.ky_eac dt {
  font-weight: bold;
}
#kiyaku .kiyaku_wp dd.ky_mn dl.ky_eac dd {
  padding-bottom: 1em;
}
#kiyaku .kiyaku_wp dd.ky_mn dl.ky_eac dd:last-child {
  padding-bottom: 0;
}
#kiyaku .kiyaku_wp dd.ky_mn dl.ky_eac dd .tx_nl {
  margin: 0.5em 0;
}
#kiyaku .kiyaku_wp dd.ky_mn dl.ky_eac dd .tx_nl.tl {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 0 1em;
}
#kiyaku .kiyaku_wp dd.ky_mn dl.ky_eac dd .tx_sl {
  padding-left: 1em;
  font-size: 90%;
  line-height: 1.4;
}
#kiyaku .kiyaku_wp ul {}
#kiyaku .kiyaku_wp ul li, #kiyaku .kiyaku_wp ol li {
  text-indent: -1em;
  padding-left: 1em;
}
#kiyaku .kiyaku_wp dd .ky_atten {
  font-size: 90%;
}
#kiyaku .kiyaku_wp a {
  color: #1272e9;
  text-decoration: underline;
}
#kiyaku .kiyaku_wp dd p {
  text-align: left;
}

@media only screen and (max-width:480px) {
  #kiyaku h2 {
    font-size: 5vw;
  }
}
/*-----------------
footer
-----------------*/
.copyright {
  font-size:clamp(1rem, 2vw, 1.6rem);
  letter-spacing: 0;
  background:#FFFFFF;
  color:#000000;
  padding:1vw 0 1vw 0;
}
footer {
  padding:0;
  text-align: center;
  position: relative;
  background:#7191b4;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight:500;
}
footer .footer_wp {
  background: #40a7e1;
  padding: 1em 1em 2em 1em;
  font-size:clamp(1.2rem, 2vw, 1.8rem);
  color: #FFFFFF;
  letter-spacing: 1px;
}
footer .footer_wp dt {
  font-size: 110%;
  font-weight: bold;
}
footer .footer_wp dd.ftml a {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size:clamp(2.2rem, 3vw, 4rem);
  line-height:1.4;
  font-weight:600;
}
footer .footer_wp dd.ftml a:hover {
  color:#2f4494;
}

footer .footer_wp dd.ftatten {
  font-size: 90%;
  line-height: 1.3;
  padding-top: 0.5em;
}
footer .footer_wp dd.ftatten2 {
  margin: 0 auto;
  font-size: 80%;
  line-height: 1.3;
  padding-top: 0.5em;
}
/* back to top */
#go-top {
  position: fixed;
  bottom: 10%;
  right: 10%;
  z-index: 10;
  width: 100%;
  text-align: center;
  display: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
#go-top .totop {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70px;
  padding: 0;
}

#go-top .totop img{
  max-width:100%;
  height:auto;
}
#go-top .totop a {
  display: block;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#go-top .totop a:hover {
  opacity: 0.5;
}

@media screen and (min-width:1000px) {
  .copyright {
    padding:1em 0 1em 0;
  }
}

@media only screen and (max-width:1380px) {
  #go-top {
    right: 1%;
    bottom: 13%;
  }
}
@media only screen and (max-width:640px) {

  #go-top {
    right: 1%;
    bottom: 10%;
  }

  #go-top .totop {
    width: 40px;

  }

}
@media only screen and (max-width:480px) {
  footer .footer_wp {
    letter-spacing: 0;
  }

  #go-top .totop {
    width: 40px;
  }

  #go-top {
    right: 1%;
    bottom: 20vw;
  }


}
/*------------
animetion
------------*/
.fadein {
  opacity: 0;
  transform: translate(0, 30px);
  -webkit-transform: translate(0, 30px);
  -moz-transform: translate(0, 30px);
  transition: all 1000ms;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
}

.fadeinp {
  opacity: 0;
  transform: scale(1.1);
  -webkit-transform: scale(1.21);
  -moz-transform: scale(1.1);
  transition: all 1000ms;
}
.fadeinp.scrollin {
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
}

.brc {
  display: block;
}
@media only screen and (max-width:750px) {
  .brc {
    display: none;
  }
}