@charset "UTF-8";
/* ===============================================================================
Body Setting
=============================================================================== */
html {
  font-size: 62.5%;
}
.spOnly{
  display: none;
}
@media screen and (max-width: 640px) {
  .pcOnly{
    display: none;
  }
  .spOnly{
    display: block;
  }
}
img {
  vertical-align: top;
  max-width: 100%;
}
/* ===============================================================================
Header
=============================================================================== */
header[role="index"] {
  background: url(../img/bg_header.svg);
  background-size: 141px 70px;
  background-color: #ffe65a;
}
header[role="index"] > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1360px;
  width: 96.8%;
  height: 70px;
  margin: 0 auto;
}
header[role="index"] > div h1 a img{
  width: 260px;
}
header[role="index"] > div ul {
  display: table;
}
header[role="index"] > div ul li {
  display: table-cell;
}
header[role="index"] > div ul li a {
  display: block;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 20px;
}
header[role="index"] > div ul li a:not([href]) {
  background: #ffffff;
  border: 1px solid;
}
header[role="index"] > div ul li a img {
  display: block;
  width: 100%;
  height: 100%;
}
header[role="index"] > div ul li + li {
  padding-left: 8px;
}
@media screen and (max-width: 640px) {
  header[role="index"] {
    background-size: 105.75px 52.5px;
  }
  header[role="index"] > div {
    width: 100%;
    height: 54px;
    margin: 0 auto;
    padding: 0 3.125vw;
  }
  header[role="index"] > div h1 a img {
    width: 182px;
  }
  header[role="index"] > div ul li a {
    display: block;
    width: 30px;
    height: 30px;
    overflow: hidden;
    border-radius: 15px;
  }
}
/* ===============================================================================
Main
=============================================================================== */
#page{
  padding-top: 0 !important;
  background: url(../img/bg.jpg);
  background-size: 485px 999px;
  z-index: 0;
}
main a[target=_blank]:after {
  font-family: "Hobonichi-Icons";
  content: "\e914";
  font-weight: normal;
  font-size: .8em;
  position: relative;
  top: -.2em;
}
.main {
  font-family: 'Roboto', sans-serif;
  font-weight: Bold 700;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  color: #000000;
  overflow: hidden;
  z-index: 0;
  position: relative;
}
.wrapper{
  max-width: 1360px;
  width: 96.8%;
  margin: 30px auto 60px;
  background-color: #ffffff;
  border: 1px solid;
  z-index: -1;
  position: relative;
}
.wrapper .contents{
  padding: 20px;
}
.contents section{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.contents > section div.frame{
  margin-bottom: 20px;
  border: solid 3px;
  box-sizing: border-box;
  position: relative;
}
.contents > section div.frame img{
  position: absolute;
  max-width: initial;
  opacity: 0;
  transform: scale(.8);
}
.contents > section div.frame img.active {
  -webkit-animation: pulsate-fwd 0.5s ease-in-out both;
  animation: pulsate-fwd 0.5s ease-in-out both;
  opacity: 1;
  transform: scale(1);
}
.contents > section div.frame img.no-active {
  opacity: 1;
  transform: scale(1);
  -webkit-animation: none !important;
          animation: none !important;
}
/* ----------------------------------------------
 * Generated by Animista on 2021-1-15 10:4:29
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation pulsate-fwd
 * ----------------------------------------
 */
@-webkit-keyframes pulsate-fwd {
  0% {
    opacity: 0;
    transform: scale(.8);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes pulsate-fwd {
  0% {
    opacity: 0;
    transform: scale(.8);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@media screen and (min-width: 641px) {
  .contents > section div.frame.active img{
    -webkit-animation: pulsate-fwd 0.5s ease-in-out both;
    animation: pulsate-fwd 0.5s ease-in-out both;
    opacity: 1;
    transform: scale(1);
  }
  .contents > section div.frame img.delay{
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
  .contents > section div.frame img.delay1{
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
  }
  .contents > section div.frame img.delay2{
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
  }
  .contents > section div.frame img.delay3{
    -webkit-animation-delay: 1.2s;
            animation-delay: 1.2s;
  }
  .contents > section div.frame img.delay4{
    -webkit-animation-delay: 1.5s;
            animation-delay: 1.5s;
  }
}
.contents > section div.frame a{
  display: block;
  position: absolute;
  background-color: #079eb1;
  border: 3px solid #000000;
  border-radius: 35px;
  width: 247px;
  bottom: -37px;
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #ffffff;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: bold;
  font-size: 23px;
  padding: .4em 0 .4em 3.5em;
}
.contents > section div.frame a.btn_right{
  left: auto;
  right: 15px;
}
.contents > section div.frame a:hover span{
  transition: opacity 0.3s;
  opacity: 0.4;
}
.contents > section div.frame a::before {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 35px;
  background-color: #079eb1;
  -webkit-filter: blur(0);
          filter: blur(0);
  transform: translate(8px,8px);
  mix-blend-mode: multiply;
}
.contents > section div.frame a span::after{
  font-family: "Material Design Icons";
  content: "\F054";
  position: absolute;
  top: 50%;
  right: 60px;
  font-size: 32px;
  color: #ffffff;
  transform: translate(0, -50%);
  font-weight: normal;
  line-height: 1;
  direction: ltr;
  text-transform: none;
  font-style: normal;
  font-variant: normal;
  letter-spacing: normal;
  white-space: nowrap;
  word-wrap: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-animation: sdb 2s infinite;
          animation: sdb 2s infinite;
}
@-webkit-keyframes sdb {
  0% {
    transform: translate(0, -50%);
  }
  20% {
    transform: translate(10px, -50%);
  }
  40% {
    transform: translate(0, -50%);
  }
}
@keyframes sdb {
  0% {
    transform: translate(0, -50%);
  }
  20% {
    transform: translate(10px, -50%);
  }
  40% {
    transform: translate(0, -50%);
  }
}
.contents section.start{
  margin-bottom: 30px;
}
.start div.frame01{
  background: url(../img/frame01.jpg) no-repeat;
  background-size: cover;
  width: 940px;
  height: 740px;
}
.start div.frame02{
  background: url(../img/frame02.jpg) no-repeat;
  background-size: cover;
  width: 357px;
  height: 740px;
}
.start div.frame03{
  background: url(../img/frame03.jpg) no-repeat;
  background-size: cover;
  width: 646px;
  height: 430px;
}
.start div.frame04{
  background: url(../img/frame04.jpg) no-repeat;
  background-size: cover;
  width: 646px;
  height: 430px;
}
.start div.frame01 img{
  width: 431px;
  top: -30px;
  left: -20px;
}
.start div.frame01 img.illust01{
  width: 221px;
  top: auto;
  bottom: -10px;
  left: -12px;
}
.start div.frame02 img{
  width: 500px;
  top: 225px;
  left: -265px;
}
.start div.frame03 img{
  width: 339px;
  top: -12px;
  left: -13px;
}
.start div.frame04 img{
  width: 358px;
  bottom: 30px;
  left: -165px;
}
.dora div.frame05{
  background: url(../img/frame05.jpg) no-repeat;
  background-size: cover;
  width: 990px;
  height: 770px;
}
.dora div.frame05 img{
  width: 299px;
  bottom: 25px;
  left: 20px;
}
.dora div.frame05 img.title{
  width: 545px;
  top: 27px;
  left: 36px;
}
.dora div.frame05 img.copyright{
  width: 96px;
  bottom: -30px;
  left: -4px;
}
.dora div.frame06{
  width: 302px;
  height: 770px;
  background-size: auto auto;
  background-color: rgba(70, 167, 190, 1);
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 6px, rgba(7, 158, 177, 1) 6px, rgba(7, 158, 177, 1) 7.5px );
}
.dora div.frame06 img.first{
  width: 415px;
  top: -23px;
  left: -98px;
}
.dora div.frame06 img.second{
  width: 548px;
  top: 227px;
  left: -238px;
}
.dora div.frame06 img.third{
  width: 521px;
  bottom: -36px;
  left: -204px;
}

.tools div.frame07{
  width: 302px;
  height: 770px;
  background-size: auto auto;
  background-color: rgba(255, 140, 142, 1);
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 6px, rgba(245, 101, 103, 1) 6px, rgba(245, 101, 103, 1) 7.5px );
}
.tools div.frame07 img.first{
  width: 414px;
  top: 17px;
  left: -23px;
  z-index: 1;
}
.tools div.frame07 img.second{
  width: 200px;
  bottom: 72px;
  left: -15px;
}
.tools div.frame07 img.third{
  width: 200px;
  bottom: 50px;
  right: -97px;
  z-index: 1;
}
.tools div.frame08{
  background: url(../img/frame06.jpg) no-repeat;
  background-size: cover;
  width: 990px;
  height: 770px;
}
.tools div.frame08 img.title{
  width: 613px;
  top: 25px;
  left: 29px;
}
.contents > section div.frame07 a,
.contents > section div.frame07 a::before {
  background-color: #f56567;
}
.lottery div.frame09{
  background: url(../img/frame07.jpg) no-repeat;
  background-size: cover;
  width: 643px;
  height: 770px;
}
.lottery div.frame09 img:nth-of-type(1){
  width: 123px;
  top: -37px;
  right: -8px;
}
.lottery div.frame09 img:nth-of-type(2){
  width: 375px;
  bottom: 75px;
  left: 90px;
}
.lottery div.frame09 img.title{
  width: 394px;
  top: 33px;
  left: 23px;
}
.contents > section div.frame09 a,
.contents > section div.frame09 a::before{
  background-color: #43a1b9;
}
.lottery div.frame10{
  background: url(../img/frame08.jpg) no-repeat;
  background-size: cover;
  width: 643px;
  height: 770px;
}
.lottery div.frame10 img:nth-of-type(1){
  width: 123px;
  top: -37px;
  right: -8px;
}
.lottery div.frame10 img:nth-of-type(2){
  width: 332px;
  top: 176px;
  left: 6px;
}
.lottery div.frame10 img.title{
  width: 478px;
  top: 13px;
  left: 26px;
}
.contents > section div.frame10 a,
.contents > section div.frame10 a::before{
  background-color: #b36428;
}

.write div.frame11{
  background: url(../img/frame09.jpg) no-repeat;
  background-size: cover;
  width: 990px;
  height: 770px;
}
.write div.frame11 img.title{
  width: 381px;
  top: 28px;
  left: 35px;
}
.write div.frame12{
  width: 302px;
  height: 770px;
  background-size: auto auto;
  background-color: rgba(152, 202, 205, 1);
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 6px, rgba(168, 210, 213, 1) 6px, rgba(168, 210, 213, 1) 7.5px );
}
.write div.frame12 img.first{
  width: 577px;
  top: 15px;
  right: -10px;
}
.write div.frame12 img.second{
  width: 437px;
  top: 230px;
  right: -14px;
}
.write div.frame12 img.third{
  width: 510px;
  bottom: 48px;
  right: 21px;
}
.contents > section div.frame12 a,
.contents > section div.frame12 a::before{
  background-color: #73b7bb;
}
.abt div.frame13{
  background: url(../img/frame10.jpg) no-repeat;
  background-size: contain;
  background-position: center bottom;
  background-color: #ffffff;
  width: 643px;
  height: 770px;
}
.abt div.frame13 img{
  width: 230px;
  top: -32px;
  right: -10px;
}
.contents > section div.frame13 a,
.contents > section div.frame13 a::before{
  background-color: #aa84ab;
}
.abt div.frame h2{
  font-size: 30px;
  line-height: 1.26;
  padding-top: 15px;
  padding-left: 32px;
}
.abt div.frame13 h2 span{
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 18px;
  font-weight: normal;
  display: block;
  padding-top: 5px;
}
.abt div.frame14{
  background: url(../img/frame11.jpg) no-repeat;
  background-size: contain;
  background-position: center bottom;
  background-color: #ffffff;
  width: 643px;
  height: 770px;
}
.abt div.frame14 img{
  width: 276px;
  top: -25px;
  right: -15px;
}
.abt div.frame14 h2{
  padding-top: 12px;
}
.abt div.frame14 h2 span{
  font-size: 24px;
}
.contents > section div.frame14 a,
.contents > section div.frame14 a::before{
  background-color: #326f1d;
}
.event div.frame15{
  background: url(../img/frame12.jpg) no-repeat;
  background-size: cover;
  width: 100%;
  height: 770px;
}
.contents > section div.frame15 a,
.contents > section div.frame15 a::before{
  background-color: #f2b502;
}
.items div.frame h2{
  font-size: 30px;
  line-height: 1.26;
  padding-top: 26px;
  padding-left: 22px;
}
.items div.frame16 h2 span{
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: normal;
  font-size: 17px;
  line-height: 1.2;
  padding-top: 5px;
  display: inline-block;
}
.items div.frame16{
  background: url(../img/frame13.jpg) no-repeat;
  background-size: contain;
  background-position: center bottom;
  background-color: #ffffff;
  width: 643px;
  height: 770px;
}
.items div.frame16 img.first{
  width: 272px;
  top: -28px;
  right: -18px;
}
.items div.frame16 img.second{
  width: 120px;
  top: 135px;
  right: 23px;
}
.contents > section div.frame16 a,
.contents > section div.frame16 a::before{
  background-color: #ee2843;
}
.items div.frame17{
  background: url(../img/frame14.jpg) no-repeat;
  background-size: contain;
  background-position: center bottom;
  background-color: #ffffff;
  width: 643px;
  height: 770px;
}
.items div.frame17 img{
  width: 271px;
  top: -32px;
  right: -12px;
}
.contents > section div.frame17 a,
.contents > section div.frame17 a::before{
  background-color: #ff9eba;
}
@media screen and (max-width: 1380px) {
  #page{
    background-position: top center;
  }
  .wrapper .contents{
    padding: 30px 1.9vw;
  }
  .contents > section div.frame{
      margin-bottom: 1.9vw;
  }
  .contents section {
    margin-bottom: 5.4vw;
  }
  .contents > section div.frame a{
    border-radius: 30px;
    width: 180px;
    bottom: -30px;
    font-size: 17px;
  }
  .contents > section div.frame a::before {
    border-radius: 30px;
  }
  .contents > section div.frame a span::after{
    right: 31px;
    font-size: 24px;
  }
  .start div.frame01{
    width: 66.4vw;
    height: 0;
    padding-top: 55.7%;
  }
  .start div.frame02{
    width: 24.6vw;
    height: 0;
    padding-top: 55.7%;
  }
  .start div.frame03{
    width: 45.5vw;
    height: 0;
    padding-top: 32.5%;
  }
  .start div.frame04{
    width: 45.5vw;
    height: 0;
    padding-top: 32.5%;
  }
  .start div.frame01 img{
    width: 30.4vw;
    top: -3vw;
    left: -2vw;
  }
  .start div.frame01 img.illust01{
    width: 15.2vw;
    bottom: -.7vw;
    left: -1vw;
  }
  .start div.frame02 img{
    width: 35.3vw;
    top: 16vw;
    left: -19vw;
  }
  .start div.frame03 img{
    width: 23.9vw;
    top: -1.3vw;
    left: -1vw;
  }
  .start div.frame04 img:nth-of-type(1){
    width: 25.3vw;
    top: 11.4vw;
    left: -11.5vw;
  }
  .start div.frame04 img:nth-of-type(2){
    width: 17.5vw;
    top: -4.9vw;
    right: -2vw;
  }
  .dora div.frame05{
    width: 67.4vw;
    height: 0;
    padding-top: 56%;
  }
  .dora div.frame05 img {
    width: 21vw;
    bottom: 1.4vw;
    left: 1.4vw;
  }
  .dora div.frame05 img.copyright {
    width: 7vw;
    bottom: -2.4vw;
    left: -.3vw;
  }
  .dora div.frame05 img.title {
    width: 38.5vw;
    top: 1.7vw;
    left: 2.3vw;
  }
  .dora div.frame06 {
    width: 23.5vw;
    height: 0;
    padding-top: 56%;
  }
  .dora div.frame06 img.first {
    width: 30vw;
    top: -1.8vw;
    left: -5.4vw;
  }
  .dora div.frame06 img.second {
    width: 39vw;
    top: 16vw;
    left: -16vw;
  }
  .dora div.frame06 img.third {
    width: 35.9vw;
    bottom: -3.6vw;
    left: -12.5vw;
  }
  .contents > section div.frame a{
    left: 0;
  }
  .tools div.frame07 {
    width: 23.5vw;
    height: 0;
    padding-top: 56%;
  }
  .tools div.frame08{
    width: 67.5vw;
    height: 0;
    padding-top: 56%;
  }
  .tools div.frame07 img.first {
    width: 29vw;
    top: 1.2vw;
    left: -0.9vw;
  }
  .tools div.frame07 img.second {
    width: 14.1vw;
    bottom: 5.4vw;
    left: -1.3vw;
  }
  .tools div.frame07 img.third {
    width: 13vw;
    bottom: 4vw;
    right: -3vw;
  }
  .tools div.frame08 img.title {
    width: 43.3vw;
    top: 1.2vw;
    left: 1.5vw;
  }
  .lottery div.frame09 {
    width: 45.5vw;
    height: 0;
    padding-top: 56%;
  }
  .lottery div.frame09 img.title {
    width: 27.8vw;
    top: 2vw;
    left: 1.8vw;
  }
  .lottery div.frame09 img:nth-of-type(1) {
    width: 9vw;
    top: -2.7vw;
    right: -.7vw;
  }
  .lottery div.frame09 img:nth-of-type(2) {
    width: 26.4vw;
    bottom: 3.5vw;
    left: 6vw;
  }
  .lottery div.frame10 {
    width: 45.5vw;
    height: 0;
    padding-top: 56%;
  }
  .lottery div.frame10 img:nth-of-type(1) {
    width: 9vw;
    top: -2.7vw;
    right: -.7vw;
  }
  .lottery div.frame10 img:nth-of-type(2) {
    width: 23.3vw;
    top: 12.4vw;
    left: .3vw;
  }
  .lottery div.frame10 img.title {
    width: 33.7vw;
    top: 1vw;
    left: 1.6vw;
  }
  .write div.frame11 {
    width: 67.5vw;
    height: 0;
    padding-top: 56%;
  }
  .write div.frame11 img.title {
    width: 27vw;
    top: 1.8vw;
    left: 2vw;
  }
  .write div.frame12 {
    width: 23.5vw;
    height: 0;
    padding-top: 56%;
  }
  .write div.frame12 img.first {
    width: 40.8vw;
    top: .7vw;
    right: -1vw;
  }
  .write div.frame12 img.second {
    width: 30.2vw;
    top: 15.9vw;
    right: -1.1vw;
  }
  .write div.frame12 img.third {
    width: 35.9vw;
    bottom: 2.9vw;
    right: 1.4vw;
  }
  .abt div.frame13 {
    width: 45.5vw;
    height: 0;
    padding-top: 56%;
  }
  .abt div.frame h2 {
    font-size: 2vw;
    line-height: 1.2;
    padding-top: .7vw;
    padding-left: 2vw;
    position: absolute;
    top: 0;
  }
  .abt div.frame13 h2 span{
    font-size: 1.2vw;
    padding-top: .3vw;
  }
  .abt div.frame14 h2 span {
    font-size: 1.5vw;
  }
  .abt div.frame14 h2{
    padding-top: .3vw;
  }
  .abt div.frame13 img {
    width: 16.3vw;
    top: -3.1vw;
    right: -0.5vw;
  }
  .abt div.frame14 {
    width: 45.5vw;
    height: 0;
    padding-top: 56%;
  }
  .abt div.frame14 img {
    width: 19.6vw;
    top: -3.3vw;
    right: -1vw;
  }
  .event div.frame15{
    height: 0;
    padding-top: 58%;
  }
  .items div.frame16{
    width: 45.5vw;
    height: 0;
    padding-top: 56%;
  }
  .items div.frame h2 {
    font-size: 2.2vw;
    padding-top: .8vw;
    padding-left: 2vw;
    position: absolute;
    top: 0;
  }
  .items div.frame16 h2 span{
    font-size: 1.2vw;
  }
  .items div.frame16 img.first {
    width: 19.3vw;
    top: -3.4vw;
    right: -1.4vw;
    z-index: 1;
  }
  .items div.frame16 img.second {
    width: 8.8vw;
    top: 8vw;
    right: 1.5vw;
  }
  .items div.frame17{
    width: 45.5vw;
    height: 0;
    padding-top: 56%;
  }
  .items div.frame17 img {
    width: 19.2vw;
    top: -2.9vw;
    right: -1vw;
  }
}
@media screen and (max-width: 768px) {
  .contents > section div.frame a {
    left: -1vw;
  }
  .abt div.frame h2 {
    font-size: 21px;
  }
  .items div.frame h2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  main a:hover {
    opacity: 1;
  }
  .wrapper{
    width: 100%;
    background-color: initial;
    border: none;
    margin: 0 auto;
  }
  .wrapper .contents{
      padding: 0 3.125vw;
  }
  .contents section{
    margin-bottom: 18vw;
  }
  .contents > section div.frame{
    margin-bottom: 3.125vw;
    width: 100% !important;
  }
  .contents > section div.frame a,
  .contents > section div.frame a.btn_right{
    left: auto;
    right: 0;
    bottom: -25px;
  }
  .contents > section div.frame a span::after {
    right: 36px;
  }
  .contents section.start{
    margin-bottom: 2.25vw;
  }
  .start div.frame00{
    background: url(../img/frame00_sp.jpg) no-repeat;
    background-size: cover;
    padding-top: 35.7%;
    border-top: none !important;
  }
  .start div.frame01{
    background: url(../img/frame01_sp.jpg) no-repeat;
    background-size: cover;
    padding-top: calc(100% - 6px);
  }
  .start div.frame02{
    background: url(../img/frame02_sp.jpg) no-repeat;
    background-size: cover;
    padding-top: calc(100% - 6px);
  }
  .start div.frame03{
    background: url(../img/frame03_sp.jpg) no-repeat;
    background-size: cover;
    padding-top: calc(100% - 6px);
  }
  .start div.frame04{
    background: url(../img/frame04_sp.jpg) no-repeat;
    background-size: cover;
    padding-top: calc(100% - 6px);
  }
  .start div.frame01 img{
    width: 71.875vw;
    top: -38%;
    left: 11%;
  }
  .start div.frame01 img.illust01{
    width: 42.1875vw;
    bottom: -63.8%;
    left: -2%;
    z-index: 1;
  }
  .start div.frame02 img{
    width: 79.4vw;
    top: -16%;
    left: 16.5%;
  }
  .start div.frame03 img{
    width: 77.1875vw;
    top: -28%;
    left: -4%;
  }
  .start div.frame04 img:nth-of-type(1){
    width: 81.5vw;
    top: -12.4%;
    right: -4%;
    left: auto;
  }
  .dora div.frame05 {
    background: url(../img/frame05_sp.jpg) no-repeat;
    background-size: cover;
    padding-top: 150.33%;
  }
  .dora div.frame05 img.title {
    width: 82.28vw;
    top: 10px;
    left: 2.125vw;
  }
  .dora div.frame05 img {
    width: 87.187vw;
    bottom: -25vw;
    left: 1vw;
    z-index: 1;
  }
  .dora div.frame05 img.copyright{
    display: none;
  }
  .dora div.frame06{
    margin-top: calc(-3.125vw - 3px);
    height: auto;
    padding-top: 0;
  }
  .contents > section div.frame06 img{
    position: relative;
  }
  .border{
    display: block;
    border-top: 3px solid #000000;
  }
  .dora div.frame06 img.first {
    width: 85.937vw;
    top: auto;
    left: 4.5vw;
    padding: 68px 0 30px;
  }
  .dora div.frame06 img.second {
    width: 90vw;
    top: auto;
    left: 1vw;
    padding: 30px 0;
  }
  .dora div.frame06 img.third {
    width: 80.625vw;
    bottom: auto;
    left: 6.5vw;
    padding: 30px 0;
  }
  .contents section.tools{
    flex-wrap: wrap-reverse;
  }
  .tools div.frame08 {
    background: url(../img/frame06_sp.jpg) no-repeat;
    background-size: cover;
    padding-top: 150.33%;
  }
  .tools div.frame08 img.title {
    width: 58.937vw;
    top: 3.5vw;
    left: 3.125vw;
  }
  .tools div.frame07{
    padding-top: 164%;
    margin-top: calc(-3.125vw - 3px);
  }
  .tools div.frame07 img.first {
    width: 97.187vw;
    top: -20.5vw;
    left: -3vw;
  }
  .tools div.frame07 img.second {
    width: 45.4vw;
    bottom: 25vw;
    left: auto;
    right: -1.5vw;
    z-index: 2;
  }
  .tools div.frame07 img.third {
    width: 46.25vw;
    bottom: 20vw;
    right: auto;
    left: 5vw;
  }
  .lottery div.frame09 {
    background: url(../img/frame07_sp.jpg) no-repeat;
    background-size: cover;
    padding-top: 150.333%;
    margin-bottom: 21vw !important;
  }
  .lottery div.frame09 img:nth-of-type(1) {
    width: 28.125vw;
    top: -7vw;
    right: -3.6vw;
  }
  .lottery div.frame09 img:nth-of-type(2) {
    width: 78.125vw;
    bottom: 12vw;
    left: 7vw;
  }
  .lottery div.frame09 img.title {
    width: 55.99vw;
    top: 4vw;
    left: 3.125vw;
  }
  .lottery div.frame10 {
    background: url(../img/frame08_sp.jpg) no-repeat;
    background-size: cover;
    padding-top: 150.333%;
  }
  .lottery div.frame10 img:nth-of-type(1) {
    width: 28.125vw;
    top: -6vw;
    right: -3.6vw;
  }
  .lottery div.frame10 img:nth-of-type(2) {
    width: 66.75vw;
    top: 29vw;
    bottom: auto;
    left: 1vw;
  }
  .lottery div.frame10 img.title {
    width: 68.2vw;
    top: 7.5vw;
    left: 1.125vw;
  }
  .write div.frame11 {
    background: url(../img/frame09_sp.jpg) no-repeat;
    background-size: cover;
    padding-top: 150.333%;
  }
  .write div.frame11 img.title{
    width: 57.5vw;
    top: 5vw;
    left: 16.125vw;
  }
  .write div.frame12{
    margin-top: calc(-3.125vw - 3px);
    height: auto;
    padding-top: 0;
  }
  .contents > section div.frame12 img{
    position: relative;
  }
  .write div.frame12 img.first {
    width: 81.25vw;
    top: auto;
    left: 5vw;
    padding: 0 0 30px;
    margin-top: -20vw;
  }
  .write div.frame12 img.second {
    width: 85.625vw;
    top: auto;
    left: 2.5vw;
    padding: 25px 0 35px;
  }
  .write div.frame12 img.third {
    width: 70.937vw;
    bottom: auto;
    left: 13vw;
    padding: 24px 0 38px;
  }
  .abt div.frame13 {
    background: url(../img/frame10_sp.jpg) no-repeat;
    background-size: contain;
    background-position: center bottom;
    background-color: #ffffff;
    padding-top: 150.333%;
    margin-bottom: 21vw !important;
  }
  .abt div.frame h2 {
    font-size: 22px;
    padding-top: 6vw;
    padding-left: 10vw;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }
  .abt div.frame13 h2 span {
    font-size: 13px;
  }
  .abt div.frame13 img {
    width: 46.875vw;
    top: 20.5vw;
    right: -3vw;
  }
  .abt div.frame14 {
    background: url(../img/frame11_sp.jpg) no-repeat;
    background-size: contain;
    background-position: center bottom;
    background-color: #ffffff;
    padding-top: 150.333%;
  }
  .abt div.frame14 img {
    width: 56.6vw;
    top: 22vw;
    right: -3vw;
  }
  .abt div.frame14 h2{
    padding-top: 5vw;
    padding-left: 5vw;
  }
  .abt div.frame14 h2 span {
    font-size: 18px;
  }
  .event div.frame15 {
    background: url(../img/frame12_sp.jpg) no-repeat;
    background-size: cover;
    padding-top: 150.333%;
  }
  .items div.frame16 {
    background: url(../img/frame13_sp.jpg) no-repeat;
    background-size: contain;
    background-position: center bottom;
    background-color: #ffffff;
    padding-top: 150.333%;
    margin-bottom: 21vw !important;
  }
  .items div.frame16 img.first {
    width: 55.8vw;
    top: auto;
    bottom: 2vw;
    right: auto;
    left: 1vw;
    z-index: 1;
  }
  .items div.frame h2{
    font-size: 18px;
    padding: 4.5% 0;
    padding-left: 10vw;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
  }
  .items div.frame16 h2 span{
    font-size: 13px;
    display: block;
  }
  .items div.frame17 h2{
    padding-top: 4.8vw;
  }
  .items div.frame17 h2 span{
    font-size: 14px;
    display: inline-block;
    padding-left: .5em;
  }
  .items div.frame17 {
    background: url(../img/frame14_sp.jpg) no-repeat;
    background-size: contain;
    background-position: center bottom;
    background-color: #ffffff;
    padding-top: 150.333%;
  }
  .items div.frame17 img {
    width: 55.4vw;
    top: auto;
    right: auto;
    bottom: 3vw;
    left: 0;
    z-index: 1;
  }
}
/* ===============================================================================
Footer share
=============================================================================== */
.main > footer {
  font-family: "-apple-system","Helvetica Neue","Hiragino Kaku Gothic ProN",meiryo,"M+ 1p",sans-serif;
  padding: 45px 0;
  background-color: #ffffff;
  letter-spacing: 0;
}
.device-pc .main > footer > a {
  font-size: 16px;
  font-weight: 700;
  display: table;
  margin: 0 auto;
  margin-top: 37.5px;
}
.device-pc .main > footer > ul.magazine-share {
  display: flex;
  flex-wrap: wrap;
  width: 600px;
  margin: 60px auto 35px;
  padding: 20px 0 35px;
  border: 1px #ccc solid;
  justify-content: center;
}
.device-pc .main > footer > ul.magazine-share:before {
  font-size: 12px;
  font-weight: 700;
  line-height: 2.33;
  display: block;
  width: 100%;
  margin-bottom: 12.5px;
  content: "Share";
  text-align: center;
  color: #666;
}
.device-pc .main > footer > ul.magazine-share li a {
  display: block;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.device-pc .main > footer > ul.magazine-share li a img {
  display: block;
  width: 100%;
}
.device-pc .main > footer > ul.magazine-share li + li {
  margin-left: 40px;
}
.device-pc .main > footer > p {
  text-align: center;
  font-size: 12px;
}

.device-sp .main > footer {
  margin: 0 auto;
  padding: 15px 20px 40px;
}
.device-sp .main > footer > a {
  font-size: 14px;
  font-weight: 700;
  display: table;
  margin: 9px auto 0;
}
.device-sp .main > footer > ul {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0;
  padding: 20px 0;
  border: 1px #ccc solid;
  justify-content: center;
}
.device-sp .main > footer > ul:before {
  font-size: 12px;
  font-weight: 700;
  line-height: 2.33;
  display: block;
  width: 100%;
  margin-bottom: 10px;
  content: "Share";
  text-align: center;
  color: #666;
}
.device-sp .main > footer > ul li + li {
  margin-left: 40px;
}
.device-sp .main > footer > ul li a {
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: inline-block;
}
.device-sp .main > footer > p {
  text-align: center;
  font-size: 12px;
}
/* ===============================================================================
Footer share
=============================================================================== */
#footer-sitemap > div{
  background: url(../img/bg_header.svg);
  background-size: 141px 70px;
  background-color: #ffe65a;
}
.device-pc #footer-sitemap > div{
  height: 70px;
}
#footer-sitemap > div ul li a{
  color: #000000;
}
#footer-sitemap > div div small{
  color: #000000;
}