@charset "UTF-8";
/* Scss Document */
/*============================================================
	Reset
============================================================*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/*============================================================
	Common
============================================================*/
html,
body {
  width: 100%;
}

html {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: inherit;
  font-style: normal;
  line-height: 1;
  color: #4A1F00;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (max-width: 749px) {
  html {
    font-size: 4vw;
    -webkit-text-size-adjust: 100%;
  }
}
html * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media print, screen and (min-width: 750px) and (max-width: 1440px) {
  html {
    font-size: 20px;
  }
}

body {
  position: relative;
  overflow-x: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  -moz-animation: fadeIn 1.5s ease 0s 1 normal;
  -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
  animation: fadeIn 1.5s ease 0s 1 normal;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  body {
    overflow-x: hidden;
  }
}
body::before {
  position: absolute;
  content: "";
  background: url("../img/bg.svg") repeat;
  -moz-background-size: 28px 40px;
  -o-background-size: 28px 40px;
  -webkit-background-size: 28px 40px;
  background-size: 28px 40px;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -3;
}

img {
  width: 100%;
  height: auto;
}
img[src$=".svg"] {
  max-width: 100%;
}

a,
a * {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  text-decoration: none;
  outline: none;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover,
a:hover img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=75);
  opacity: 0.75;
}

header,
main,
section,
footer {
  width: 100%;
}

header, footer {
  flex-shrink: 0;
}

main {
  flex: 1 0 auto;
  min-height: 1px;
}
@media only screen and (max-width: 749px) {
  main {
    padding-bottom: 29.33333vw;
  }
}

@media only screen and (max-width: 749px) {
  .pc {
    display: none !important;
  }
}

@media print, screen and (min-width: 750px) {
  .sp {
    display: none !important;
  }
}

.inner {
  width: 83.33%;
  max-width: 1200px;
  margin: auto;
}
@media only screen and (max-width: 749px) {
  .inner {
    width: 92%;
    max-width: 92vw;
  }
}

.container {
  width: 83.33%;
  max-width: 1000px;
  margin: auto;
}
@media only screen and (max-width: 749px) {
  .container {
    width: 100%;
    max-width: 92vw;
  }
}

@keyframes fadeIn {
  from {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }
  to {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }
}
/*============================================================
	Layout
============================================================*/
/* header
------------------------------*/
header {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  padding: 0.5rem 2.08333% 1.5rem;
}
@media only screen and (max-width: 749px) {
  header {
    padding: 3.33333vw 2.66667vw 6vw;
  }
}
header::after {
  position: absolute;
  content: "";
  background: url("../img/tape.svg") repeat-x;
  width: 100%;
  height: 1rem;
  left: 0;
  bottom: 0;
}
@media only screen and (max-width: 749px) {
  header::after {
    height: 2.66667vw;
  }
}
header > a {
  width: 6.94444%;
}
@media only screen and (max-width: 749px) {
  header > a {
    width: 18.66667vw;
  }
}
header figure {
  width: 16.66667%;
}
@media only screen and (max-width: 749px) {
  header figure {
    width: 40vw;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  header figure {
    margin-left: auto;
  }
}
header ul {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  header ul {
    margin-left: auto;
  }
}
header ul li {
  width: 1.5rem;
}
@media only screen and (max-width: 749px) {
  header ul li {
    width: 8vw;
  }
}
header ul li:not(:last-child) {
  margin-right: 1.5rem;
}
@media only screen and (max-width: 749px) {
  header ul li:not(:last-child) {
    margin-right: 2.66667vw;
  }
}

/* mv
------------------------------*/
#mv {
  background: url("../img/bg_mv_pc.svg") no-repeat center top 2.9rem;
  -moz-background-size: auto 22.2rem;
  -o-background-size: auto 22.2rem;
  -webkit-background-size: auto 22.2rem;
  background-size: auto 22.2rem;
}
@media only screen and (max-width: 749px) {
  #mv {
    background: url("../img/bg_mv_sp.svg") no-repeat center top 11.06667vw;
    -moz-background-size: 100% auto;
    -o-background-size: 100% auto;
    -webkit-background-size: 100% auto;
    background-size: 100% auto;
    padding-bottom: 5.33333vw;
  }
}
#mv .inner .container {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
}
@media print, screen and (min-width: 750px) {
  #mv .inner .container {
    padding-bottom: 9.65rem;
  }
}
#mv .inner .container > figure {
  width: 36%;
  margin: 1rem 0;
}
@media only screen and (max-width: 749px) {
  #mv .inner .container > figure {
    width: 41.2vw;
    margin: 6.66667vw 0 2.66667vw;
  }
}
#mv .inner .container h1 {
  display: block;
  width: 80%;
}
@media only screen and (max-width: 749px) {
  #mv .inner .container h1 {
    width: 100%;
  }
}
#mv .inner .container ul {
  display: -webkit-flex;
  display: flex;
  width: 100%;
}
@media print, screen and (min-width: 750px) {
  #mv .inner .container ul {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    position: absolute;
    left: 0;
    bottom: -1.5rem;
    z-index: 2;
  }
}
@media only screen and (max-width: 749px) {
  #mv .inner .container ul {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    padding-top: 2.26667vw;
  }
}
#mv .inner .container ul li:first-child {
  width: 20.2%;
}
@media only screen and (max-width: 749px) {
  #mv .inner .container ul li:first-child {
    width: 31.2vw;
    padding-top: 1.33333vw;
    margin-right: 5.2vw;
  }
}
#mv .inner .container ul li:nth-child(2) {
  width: 19%;
  padding-bottom: 0.8rem;
}
@media only screen and (max-width: 749px) {
  #mv .inner .container ul li:nth-child(2) {
    width: 29.33333vw;
  }
}
#mv .inner .container ul li:nth-child(3) {
  width: 36.4%;
}
@media only screen and (max-width: 749px) {
  #mv .inner .container ul li:nth-child(3) {
    width: 56.26667vw;
    margin-top: 10vw;
    margin-right: 2.13333vw;
  }
}
#mv .inner .container ul li:last-child {
  width: 20%;
  padding-bottom: 0.8rem;
}
@media only screen and (max-width: 749px) {
  #mv .inner .container ul li:last-child {
    width: 30.93333vw;
    margin-top: 10vw;
  }
}

/* キャンペーン期間
------------------------------*/
@media print, screen and (min-width: 750px) {
  #period {
    min-height: 8rem;
    background: url("../img/bg1_pc.svg") no-repeat center top;
    -moz-background-size: auto 8rem;
    -o-background-size: auto 8rem;
    -webkit-background-size: auto 8rem;
    background-size: auto 8rem;
    padding: 2.25rem 0 1rem;
  }
}
@media only screen and (max-width: 749px) {
  #period {
    background: url("../img/bg1_sp.svg") no-repeat center top;
    -moz-background-size: 100% auto;
    -o-background-size: 100% auto;
    -webkit-background-size: 100% auto;
    background-size: 100% auto;
    padding: 0 0 4.4vw;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #period {
    background-image: url("../img/bg1_pc.png");
  }
}
@media only screen and (max-width: 749px) {
  #period .inner .container {
    position: relative;
    padding-top: 13.06667vw;
  }
}
#period .inner .container dl {
  text-align: center;
}
@media print, screen and (min-width: 750px) {
  #period .inner .container dl {
    display: -webkit-flex;
    display: flex;
    margin: auto;
    width: 80%;
    height: 3.1rem;
    background: #FFFFA8;
    -moz-border-radius: 1.65rem;
    -webkit-border-radius: 1.65rem;
    border-radius: 1.65rem;
    border: solid 4px #fff;
    font-size: 1.2rem;
  }
}
#period .inner .container dl dt {
  position: relative;
  background: #fff;
}
@media print, screen and (min-width: 750px) {
  #period .inner .container dl dt {
    width: 30%;
    -moz-border-radius: 1.65rem 0 0 1.65rem;
    -webkit-border-radius: 1.65rem;
    border-radius: 1.65rem 0 0 1.65rem;
  }
}
@media only screen and (max-width: 749px) {
  #period .inner .container dl dt {
    position: absolute;
    top: 5.6vw;
    left: 50%;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 40vw;
    height: 9.33333vw;
    -moz-border-radius: 4.66667vw;
    -webkit-border-radius: 4.66667vw;
    border-radius: 4.66667vw;
    border: solid 4px #FFFFA8;
  }
}
#period .inner .container dl dt img {
  position: absolute;
  left: 50%;
  top: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 9.4rem;
}
@media only screen and (max-width: 749px) {
  #period .inner .container dl dt img {
    width: 32vw;
  }
}
#period .inner .container dl dd {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: 900;
  color: #4A1F00;
}
@media print, screen and (min-width: 750px) {
  #period .inner .container dl dd {
    width: 70%;
  }
}
@media only screen and (max-width: 749px) {
  #period .inner .container dl dd {
    width: 100%;
    height: 12.26667vw;
    background: #FFFFA8;
    border: solid 4px #fff;
    -moz-border-radius: 6.13334vw;
    -webkit-border-radius: 6.13334vw;
    border-radius: 6.13334vw;
    font-size: 1.1rem;
  }
}
#period .inner .container dl dd strong {
  font-size: 1.8rem;
  margin: -.2em .1em 0;
}
@media only screen and (max-width: 749px) {
  #period .inner .container dl dd strong {
    font-size: 1.66667rem;
  }
}
#period .inner .container dl dd span {
  display: inline-block;
  background: #4A1F00;
  color: #fff;
  font-size: 1rem;
  width: 1.8rem;
  height: 1.8rem;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  line-height: 1.6rem;
  margin: 0 .2em;
}
@media only screen and (max-width: 749px) {
  #period .inner .container dl dd span {
    font-size: 0.93333rem;
    width: 7.06667vw;
    height: 7.06667vw;
    line-height: 7.06667vw;
  }
}
#period .inner .container small {
  font-size: 0.7rem;
  color: #fff;
  display: block;
  margin-top: 0.5rem;
  margin-right: 8rem;
  text-align: right;
}
@media only screen and (max-width: 749px) {
  #period .inner .container small {
    text-align: center;
    margin-right: 0;
  }
}

/* 応募要項
------------------------------*/
@media print, screen and (min-width: 750px) {
  #requirements {
    background-image: url("../img/bg2.svg"), url("../img/bg3.svg");
    background-repeat: no-repeat, repeat-y;
    background-position: center top, center top;
    -moz-background-size: 72rem auto, 11.25rem auto;
    -o-background-size: 72rem auto, 11.25rem auto;
    -webkit-background-size: 72rem auto, 11.25rem auto;
    background-size: 72rem auto, 11.25rem auto;
  }
}
@media only screen and (max-width: 749px) {
  #requirements {
    background-image: url("../img/bg2.svg"), url("../img/bg3.png");
    background-repeat: no-repeat, repeat-y;
    background-position: center top, center top;
    -moz-background-size: 192% 40vw, 30% auto;
    -o-background-size: 192% 40vw, 30% auto;
    -webkit-background-size: 192% 40vw, 30% auto;
    background-size: 192% 40vw, 30% auto;
    padding: 13.33333vw 0 22vw;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #requirements {
    background-image: url("../img/bg2.png"), url("../img/bg3.png");
  }
}
@media print, screen and (min-width: 750px) {
  #requirements .inner {
    padding: 3rem 0 6rem;
    position: relative;
  }
  #requirements .inner figure[class^="sable"] {
    position: absolute;
  }
  #requirements .inner .sable1 {
    width: 15.575rem;
    height: 19.75rem;
    right: -11.5rem;
    top: 0;
  }
  #requirements .inner .sable2 {
    width: 11.475rem;
    height: 12.8rem;
    left: -7.7rem;
    top: 20.35rem;
  }
  #requirements .inner .sable3 {
    width: 6.075rem;
    height: 4.8rem;
    left: -3.2rem;
    top: 56.5rem;
  }
  #requirements .inner .sable4 {
    width: 11.475rem;
    height: 12.8rem;
    right: -3.25rem;
    top: 60rem;
  }
  #requirements .inner .sable5 {
    width: 12.575rem;
    height: 12.575rem;
    left: -3rem;
    bottom: 32rem;
  }
  #requirements .inner .sable6 {
    width: 6.075rem;
    height: 4.8rem;
    right: -1.9rem;
    bottom: 22rem;
  }
  #requirements .inner .sable7 {
    width: 12.775rem;
    height: 11.25rem;
    right: -5.5rem;
    bottom: 5.65rem;
  }
  #requirements .inner .sable8 {
    width: 20.775rem;
    height: 18.625rem;
    left: -11.1rem;
    bottom: -2rem;
    z-index: 2;
  }
}
@media only screen and (max-width: 749px) {
  #requirements .inner figure[class^="sable"] {
    display: none;
  }
}
#requirements .inner .container {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
}
#requirements .inner .container h2 {
  width: 60%;
  height: 5rem;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container h2 {
    width: 80vw;
    height: 18.66667vw;
    margin-bottom: 13.33333vw;
  }
}
#requirements .inner .container .point {
  width: 98%;
  margin-left: 2%;
  border: solid 4px #4A1F00;
  background: #fff;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  position: relative;
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .point {
    width: 100%;
  }
}
#requirements .inner .container .point p {
  text-align: center;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 700;
}
@media print, screen and (min-width: 750px) and (max-width: 1440px) {
  #requirements .inner .container .point p {
    padding: 1.38889vw 0;
    font-size: 1.38889vw;
  }
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .point p {
    padding: 6.66667vw 0 0;
    font-size: 1.33333rem;
    line-height: 1.66;
  }
}
#requirements .inner .container .point p strong {
  color: #DC000C;
  font-size: 1.5rem;
  margin: 0 .2em;
}
@media print, screen and (min-width: 750px) and (max-width: 1440px) {
  #requirements .inner .container .point p strong {
    font-size: 2.08333vw;
  }
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .point p strong {
    font-size: 1.8rem;
  }
}
#requirements .inner .container .point p span {
  display: block;
  color: #DC000C;
  font-size: 1.2rem;
  line-height: 1.66;
  margin-top: 2rem;
}
@media print, screen and (min-width: 750px) and (max-width: 1440px) {
  #requirements .inner .container .point p span {
    font-size: 1.66667vw;
    margin-top: 2.77778vw;
  }
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .point p span {
    font-size: 1.2rem;
    margin: 1.66667rem 0;
  }
}
@media print, screen and (min-width: 750px) {
  #requirements .inner .container .point figure {
    position: absolute;
    width: 5.5rem;
    bottom: 1rem;
    right: 1rem;
    border: solid 10px #fff;
    background: #fff;
  }
}
@media print, screen and (min-width: 750px) and (max-width: 1440px) {
  #requirements .inner .container .point figure {
    width: 7.63889vw;
    bottom: 1.38889vw;
    right: 1.38889vw;
  }
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .point figure {
    width: 24vw;
    margin: 0 auto 6.66667vw;
  }
}
#requirements .inner .container .point > span {
  text-align: center;
  display: block;
  background: #4A1F00;
  color: #fff;
  font-size: 0.9rem;
  height: 2.5rem;
  line-height: 2.5rem;
  -moz-border-radius: 0 0 6px 6px;
  -webkit-border-radius: 0;
  border-radius: 0 0 6px 6px;
}
@media print, screen and (min-width: 750px) and (max-width: 1440px) {
  #requirements .inner .container .point > span {
    font-size: 1.25vw;
    height: 3.47222vw;
    line-height: 3.47222vw;
  }
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .point > span {
    font-size: 0.93333rem;
    height: 10.66667vw;
    line-height: 10.66667vw;
  }
}
#requirements .inner .container h3 {
  width: 50%;
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container h3 {
    width: 100%;
  }
}
#requirements .inner .container .present {
  width: 100%;
  padding: 3rem 0 4rem;
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .present {
    padding: 13.33333vw 0;
    margin-bottom: 9.33333vw;
  }
}
#requirements .inner .container .present h3 {
  margin: 0 auto 1.5rem;
}
@media print, screen and (min-width: 750px) and (max-width: 1440px) {
  #requirements .inner .container .present h3 {
    margin: 0 auto 2.08333vw;
  }
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .present h3 {
    margin: 0 0 8vw;
  }
}
@media print, screen and (min-width: 750px) {
  #requirements .inner .container .present > ul {
    width: 98%;
    margin-left: 2%;
  }
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .present > ul {
    width: 100%;
  }
}
#requirements .inner .container .present > ul > li {
  width: 100%;
  background: #fff;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
#requirements .inner .container .present > ul > li:not(:last-child) {
  margin-bottom: 1.5rem;
}
#requirements .inner .container .present > ul > li:first-child, #requirements .inner .container .present > ul > li:nth-child(2) {
  border: solid 4px #DC000C;
  position: relative;
}
@media print, screen and (min-width: 750px) {
  #requirements .inner .container .present > ul > li:first-child, #requirements .inner .container .present > ul > li:nth-child(2) {
    display: -webkit-flex;
    display: flex;
    height: 10rem;
  }
  #requirements .inner .container .present > ul > li:first-child::after, #requirements .inner .container .present > ul > li:nth-child(2)::after {
    position: absolute;
    content: "";
    width: 5rem;
    height: 5rem;
    right: -1rem;
    bottom: -1rem;
    background: url("../img/balloon1_pc.svg") no-repeat;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    -webkit-background-size: 100%;
    background-size: 100%;
    z-index: 10;
  }
}
@media print, screen and (min-width: 750px) and (max-width: 1440px) {
  #requirements .inner .container .present > ul > li:first-child, #requirements .inner .container .present > ul > li:nth-child(2) {
    height: 13.88889vw;
  }
  #requirements .inner .container .present > ul > li:first-child::after, #requirements .inner .container .present > ul > li:nth-child(2)::after {
    width: 6.94444vw;
    height: 6.94444vw;
    right: -1.38889vw;
    bottom: -1.38889vw;
  }
}
#requirements .inner .container .present > ul > li:first-child .left, #requirements .inner .container .present > ul > li:nth-child(2) .left {
  background: #DC000C;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media print, screen and (min-width: 750px) {
  #requirements .inner .container .present > ul > li:first-child .left, #requirements .inner .container .present > ul > li:nth-child(2) .left {
    width: 12.24%;
    height: 100%;
    -moz-border-radius: 6px 0 0 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px 0 0 6px;
    position: relative;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding: 1rem 0.5rem 0.5rem;
  }
}
@media print, screen and (min-width: 750px) and (max-width: 1440px) {
  #requirements .inner .container .present > ul > li:first-child .left, #requirements .inner .container .present > ul > li:nth-child(2) .left {
    padding: 1.38889vw 0.69444vw 0.69444vw;
  }
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .present > ul > li:first-child .left, #requirements .inner .container .present > ul > li:nth-child(2) .left {
    width: 100%;
    height: 21.33333vw;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    padding: 4vw;
  }
}
#requirements .inner .container .present > ul > li:first-child .left div, #requirements .inner .container .present > ul > li:nth-child(2) .left div {
  color: #fff;
  text-align: right;
  font-size: 2rem;
  font-weight: 500;
}
@media print, screen and (min-width: 750px) and (max-width: 1440px) {
  #requirements .inner .container .present > ul > li:first-child .left div, #requirements .inner .container .present > ul > li:nth-child(2) .left div {
    font-size: 2.77778vw;
  }
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .present > ul > li:first-child .left div, #requirements .inner .container .present > ul > li:nth-child(2) .left div {
    font-size: 2rem;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
}
@media print, screen and (min-width: 750px) {
  #requirements .inner .container .present > ul > li:first-child .left div strong, #requirements .inner .container .present > ul > li:nth-child(2) .left div strong {
    position: absolute;
    top: -0.7rem;
    left: -1.7rem;
    width: 5.15rem;
  }
  #requirements .inner .container .present > ul > li:first-child .left div strong img, #requirements .inner .container .present > ul > li:nth-child(2) .left div strong img {
    -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  }
}
@media print, screen and (min-width: 750px) and (max-width: 1440px) {
  #requirements .inner .container .present > ul > li:first-child .left div strong, #requirements .inner .container .present > ul > li:nth-child(2) .left div strong {
    top: -0.97222vw;
    left: -2.36111vw;
    width: 7.15278vw;
  }
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .present > ul > li:first-child .left div strong, #requirements .inner .container .present > ul > li:nth-child(2) .left div strong {
    display: inline-block;
    width: 16vw;
  }
}
#requirements .inner .container .present > ul > li:first-child .left p, #requirements .inner .container .present > ul > li:nth-child(2) .left p {
  width: 100%;
  height: 3rem;
  line-height: 3rem;
  background: #fff;
  color: #DC000C;
  text-align: center;
  font-size: 1.5rem;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
@media print, screen and (min-width: 750px) and (max-width: 1440px) {
  #requirements .inner .container .present > ul > li:first-child .left p, #requirements .inner .container .present > ul > li:nth-child(2) .left p {
    height: 4.16667vw;
    line-height: 4.16667vw;
    font-size: 2.08333vw;
  }
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .present > ul > li:first-child .left p, #requirements .inner .container .present > ul > li:nth-child(2) .left p {
    width: 34.66667vw;
    height: 13.33333vw;
    line-height: 13.33333vw;
    font-size: 2rem;
  }
}
#requirements .inner .container .present > ul > li:first-child .left p small, #requirements .inner .container .present > ul > li:nth-child(2) .left p small {
  font-size: 0.9rem;
}
@media print, screen and (min-width: 750px) and (max-width: 1440px) {
  #requirements .inner .container .present > ul > li:first-child .left p small, #requirements .inner .container .present > ul > li:nth-child(2) .left p small {
    font-size: 1.25vw;
  }
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .present > ul > li:first-child .left p small, #requirements .inner .container .present > ul > li:nth-child(2) .left p small {
    font-size: 1.26667rem;
  }
}
#requirements .inner .container .present > ul > li:first-child .right, #requirements .inner .container .present > ul > li:nth-child(2) .right {
  padding: 1.5rem 1.5rem 1rem 1rem;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
@media print, screen and (min-width: 750px) and (max-width: 1440px) {
  #requirements .inner .container .present > ul > li:first-child .right, #requirements .inner .container .present > ul > li:nth-child(2) .right {
    padding: 2.08333vw 2.08333vw 1.38889vw 1.38889vw;
  }
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .present > ul > li:first-child .right, #requirements .inner .container .present > ul > li:nth-child(2) .right {
    -webkit-flex-direction: column;
    flex-direction: column;
    padding: 8vw 5.33333vw 13.33333vw;
  }
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .present > ul > li:first-child .right div, #requirements .inner .container .present > ul > li:nth-child(2) .right div {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
#requirements .inner .container .present > ul > li:first-child .right div h4, #requirements .inner .container .present > ul > li:nth-child(2) .right div h4 {
  width: 17.55rem;
}
@media print, screen and (min-width: 750px) and (max-width: 1440px) {
  #requirements .inner .container .present > ul > li:first-child .right div h4, #requirements .inner .container .present > ul > li:nth-child(2) .right div h4 {
    width: 24.375vw;
  }
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .present > ul > li:first-child .right div h4, #requirements .inner .container .present > ul > li:nth-child(2) .right div h4 {
    width: 100%;
  }
}
#requirements .inner .container .present > ul > li:first-child .right div p, #requirements .inner .container .present > ul > li:nth-child(2) .right div p {
  color: #D6006C;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  position: relative;
  padding-left: 3rem;
  margin-top: 1rem;
}
@media print, screen and (min-width: 750px) and (max-width: 1440px) {
  #requirements .inner .container .present > ul > li:first-child .right div p, #requirements .inner .container .present > ul > li:nth-child(2) .right div p {
    font-size: 1.38889vw;
    padding-left: 4.16667vw;
    margin-top: 1.38889vw;
  }
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .present > ul > li:first-child .right div p, #requirements .inner .container .present > ul > li:nth-child(2) .right div p {
    font-size: 1.2rem;
    padding-left: 16vw;
    margin-top: 4vw;
    display: inline-block;
  }
}
#requirements .inner .container .present > ul > li:first-child .right div p::before, #requirements .inner .container .present > ul > li:nth-child(2) .right div p::before {
  position: absolute;
  content: "";
  left: 0;
  background: url("../img/plus.svg") no-repeat;
  -moz-background-size: 100%;
  -o-background-size: 100%;
  -webkit-background-size: 100%;
  background-size: 100%;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
}
@media print, screen and (min-width: 750px) and (max-width: 1440px) {
  #requirements .inner .container .present > ul > li:first-child .right div p::before, #requirements .inner .container .present > ul > li:nth-child(2) .right div p::before {
    width: 3.47222vw;
    height: 3.47222vw;
  }
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .present > ul > li:first-child .right div p::before, #requirements .inner .container .present > ul > li:nth-child(2) .right div p::before {
    width: 12.8vw;
    height: 12.8vw;
  }
}
#requirements .inner .container .present > ul > li:first-child .right div p strong, #requirements .inner .container .present > ul > li:nth-child(2) .right div p strong {
  font-size: 1.5rem;
  line-height: 1;
}
@media print, screen and (min-width: 750px) and (max-width: 1440px) {
  #requirements .inner .container .present > ul > li:first-child .right div p strong, #requirements .inner .container .present > ul > li:nth-child(2) .right div p strong {
    font-size: 2.08333vw;
  }
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .present > ul > li:first-child .right div p strong, #requirements .inner .container .present > ul > li:nth-child(2) .right div p strong {
    font-size: 1.83333rem;
  }
}
#requirements .inner .container .present > ul > li:first-child .right ul, #requirements .inner .container .present > ul > li:nth-child(2) .right ul {
  display: -webkit-flex;
  display: flex;
}
@media print, screen and (min-width: 750px) {
  #requirements .inner .container .present > ul > li:first-child .right ul, #requirements .inner .container .present > ul > li:nth-child(2) .right ul {
    margin-left: -0.5rem;
  }
}
@media print, screen and (min-width: 750px) and (max-width: 1440px) {
  #requirements .inner .container .present > ul > li:first-child .right ul, #requirements .inner .container .present > ul > li:nth-child(2) .right ul {
    margin-left: -0.69444vw;
  }
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .present > ul > li:first-child .right ul, #requirements .inner .container .present > ul > li:nth-child(2) .right ul {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    margin-top: 6.66667vw;
  }
}
#requirements .inner .container .present > ul > li:first-child .right ul li:first-child, #requirements .inner .container .present > ul > li:nth-child(2) .right ul li:first-child {
  position: relative;
}
@media print, screen and (min-width: 750px) {
  #requirements .inner .container .present > ul > li:first-child .right ul li:first-child, #requirements .inner .container .present > ul > li:nth-child(2) .right ul li:first-child {
    width: 9.45rem;
    padding-right: 3rem;
    margin-right: 0.75rem;
  }
}
@media print, screen and (min-width: 750px) and (max-width: 1440px) {
  #requirements .inner .container .present > ul > li:first-child .right ul li:first-child, #requirements .inner .container .present > ul > li:nth-child(2) .right ul li:first-child {
    width: 13.125vw;
    padding-right: 4.16667vw;
    margin-right: 1.04167vw;
  }
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .present > ul > li:first-child .right ul li:first-child, #requirements .inner .container .present > ul > li:nth-child(2) .right ul li:first-child {
    width: 43.06667vw;
    padding-bottom: 18.66667vw;
    margin-bottom: 5.33333vw;
  }
}
#requirements .inner .container .present > ul > li:first-child .right ul li:first-child::before, #requirements .inner .container .present > ul > li:first-child .right ul li:first-child::after, #requirements .inner .container .present > ul > li:nth-child(2) .right ul li:first-child::before, #requirements .inner .container .present > ul > li:nth-child(2) .right ul li:first-child::after {
  position: absolute;
  content: "";
  background: #DC000C;
}
@media print, screen and (min-width: 750px) {
  #requirements .inner .container .present > ul > li:first-child .right ul li:first-child::before, #requirements .inner .container .present > ul > li:first-child .right ul li:first-child::after, #requirements .inner .container .present > ul > li:nth-child(2) .right ul li:first-child::before, #requirements .inner .container .present > ul > li:nth-child(2) .right ul li:first-child::after {
    top: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .present > ul > li:first-child .right ul li:first-child::before, #requirements .inner .container .present > ul > li:first-child .right ul li:first-child::after, #requirements .inner .container .present > ul > li:nth-child(2) .right ul li:first-child::before, #requirements .inner .container .present > ul > li:nth-child(2) .right ul li:first-child::after {
    left: 50%;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media print, screen and (min-width: 750px) {
  #requirements .inner .container .present > ul > li:first-child .right ul li:first-child::before, #requirements .inner .container .present > ul > li:nth-child(2) .right ul li:first-child::before {
    width: 2rem;
    height: 0.5rem;
    right: 0;
  }
}
@media print, screen and (min-width: 750px) and (max-width: 1440px) {
  #requirements .inner .container .present > ul > li:first-child .right ul li:first-child::before, #requirements .inner .container .present > ul > li:nth-child(2) .right ul li:first-child::before {
    width: 2.77778vw;
    height: 0.69444vw;
  }
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .present > ul > li:first-child .right ul li:first-child::before, #requirements .inner .container .present > ul > li:nth-child(2) .right ul li:first-child::before {
    width: 13.33333vw;
    height: 3.33333vw;
    bottom: 4.93333vw;
  }
}
@media print, screen and (min-width: 750px) {
  #requirements .inner .container .present > ul > li:first-child .right ul li:first-child::after, #requirements .inner .container .present > ul > li:nth-child(2) .right ul li:first-child::after {
    width: 0.5rem;
    height: 2rem;
    right: 0.75rem;
  }
}
@media print, screen and (min-width: 750px) and (max-width: 1440px) {
  #requirements .inner .container .present > ul > li:first-child .right ul li:first-child::after, #requirements .inner .container .present > ul > li:nth-child(2) .right ul li:first-child::after {
    width: 0.69444vw;
    height: 2.77778vw;
    right: 1.04167vw;
  }
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .present > ul > li:first-child .right ul li:first-child::after, #requirements .inner .container .present > ul > li:nth-child(2) .right ul li:first-child::after {
    width: 3.33333vw;
    height: 13.33333vw;
    bottom: 0;
  }
}
#requirements .inner .container .present > ul > li:first-child .right ul li:last-child, #requirements .inner .container .present > ul > li:nth-child(2) .right ul li:last-child {
  width: 11.8rem;
}
@media print, screen and (min-width: 750px) and (max-width: 1440px) {
  #requirements .inner .container .present > ul > li:first-child .right ul li:last-child, #requirements .inner .container .present > ul > li:nth-child(2) .right ul li:last-child {
    width: 16.38889vw;
  }
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .present > ul > li:first-child .right ul li:last-child, #requirements .inner .container .present > ul > li:nth-child(2) .right ul li:last-child {
    width: 100%;
    padding-right: 21.86667vw;
    position: relative;
  }
  #requirements .inner .container .present > ul > li:first-child .right ul li:last-child::after, #requirements .inner .container .present > ul > li:nth-child(2) .right ul li:last-child::after {
    position: absolute;
    content: "";
    right: 0;
    top: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 21.46667vw;
    height: 18.66667vw;
    background: url("../img/balloon1_sp.svg") no-repeat;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    -webkit-background-size: 100%;
    background-size: 100%;
  }
}
#requirements .inner .container .present > ul > li:nth-child(2) {
  border-color: #0057AA;
}
@media print, screen and (min-width: 750px) {
  #requirements .inner .container .present > ul > li:nth-child(2)::after {
    background: url("../img/balloon2_pc.svg") no-repeat;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    -webkit-background-size: 100%;
    background-size: 100%;
  }
}
#requirements .inner .container .present > ul > li:nth-child(2) .left {
  background: #0057AA;
}
@media print, screen and (min-width: 750px) {
  #requirements .inner .container .present > ul > li:nth-child(2) .left div strong {
    left: -1rem;
    width: 4.15rem;
  }
}
@media print, screen and (min-width: 750px) and (max-width: 1440px) {
  #requirements .inner .container .present > ul > li:nth-child(2) .left div strong {
    left: -1.38889vw;
    width: 5.76389vw;
  }
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .present > ul > li:nth-child(2) .left div strong {
    width: 12.93333vw;
  }
}
#requirements .inner .container .present > ul > li:nth-child(2) .left p {
  color: #0057AA;
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .present > ul > li:nth-child(2) .right {
    padding-bottom: 18.66667vw;
  }
}
#requirements .inner .container .present > ul > li:nth-child(2) .right ul {
  margin-left: 0;
}
#requirements .inner .container .present > ul > li:nth-child(2) .right ul li:first-child {
  width: 8.85rem;
}
@media print, screen and (min-width: 750px) and (max-width: 1440px) {
  #requirements .inner .container .present > ul > li:nth-child(2) .right ul li:first-child {
    width: 12.29167vw;
  }
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .present > ul > li:nth-child(2) .right ul li:first-child {
    width: 44.13333vw;
  }
}
#requirements .inner .container .present > ul > li:nth-child(2) .right ul li:first-child::before, #requirements .inner .container .present > ul > li:nth-child(2) .right ul li:first-child::after {
  background: #0057AA;
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .present > ul > li:nth-child(2) .right ul li:last-child::after {
    background: url("../img/balloon2_sp.svg") no-repeat;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    -webkit-background-size: 100%;
    background-size: 100%;
  }
}
#requirements .inner .container .present > ul > li:nth-child(2) > small {
  position: absolute;
  color: #4A1F00;
  font-size: 0.7rem;
  font-weight: 400;
  right: 5rem;
  bottom: 0.9rem;
}
@media print, screen and (min-width: 750px) and (max-width: 1440px) {
  #requirements .inner .container .present > ul > li:nth-child(2) > small {
    font-size: 0.97222vw;
    right: 5.55556vw;
    bottom: 1.25vw;
  }
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .present > ul > li:nth-child(2) > small {
    font-size: 0.86667rem;
    left: 8vw;
    bottom: 8vw;
    right: inherit;
  }
}
#requirements .inner .container .present > ul > li:last-child {
  padding: 0.8rem 0;
  font-size: 0.8rem;
  text-align: center;
  color: #301718;
  -moz-box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.16);
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .present > ul > li:last-child {
    padding: 4vw;
    text-align: left;
  }
  #requirements .inner .container .present > ul > li:last-child span {
    display: block;
    font-size: 0.93333rem;
    margin-left: 1em;
    text-indent: -1em;
    line-height: 1.57;
  }
}
#requirements .inner .container .target,
#requirements .inner .container .period {
  position: relative;
  width: 100%;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #fff;
}
#requirements .inner .container .target h3,
#requirements .inner .container .period h3 {
  width: 50%;
  position: absolute;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -2rem;
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .target h3,
  #requirements .inner .container .period h3 {
    width: 101.4%;
    top: -9.33333vw;
  }
}
#requirements .inner .container .target {
  border: solid 4px #13ACC4;
  padding: 3.5rem 5rem 3rem;
  color: #4A1F00;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .target {
    padding: 13.33333vw 0 9.33333vw 3.33333vw;
    margin-bottom: 22.66667vw;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #requirements .inner .container .target {
    max-height: 31rem;
  }
}
#requirements .inner .container .target figure {
  width: 73%;
  margin: 0 auto 1.5rem;
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .target figure {
    width: 88.4%;
    margin: 0 0 6.66667vw 3.33333vw;
  }
}
#requirements .inner .container .target p {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .target p {
    font-size: 1.2rem;
    line-height: 1.38;
    margin-bottom: 6.66667vw;
  }
}
#requirements .inner .container .target ul li {
  font-size: 0.7rem;
  margin-left: 1.25em;
  text-indent: -1.25em;
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .target ul li {
    font-size: 0.86667rem;
    line-height: 1.69;
    margin-right: 3.33333vw;
  }
}
#requirements .inner .container .target ul li:not(:last-child) {
  margin-bottom: 1em;
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .target ul li:not(:last-child) {
    margin-bottom: .3;
  }
}
#requirements .inner .container .period {
  border: solid 4px #D6006C;
  padding: 3.5rem 0 1.5rem;
  text-align: right;
  z-index: 10;
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .period {
    padding: 12vw 0 6vw;
    text-align: center;
  }
}
#requirements .inner .container .period p {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 1.85rem;
  font-weight: 900;
  color: #D6006C;
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .period p {
    font-size: 1.1rem;
  }
}
#requirements .inner .container .period p strong {
  font-size: 2.75rem;
  margin: -.2em .1em 0;
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .period p strong {
    font-size: 1.66667rem;
  }
}
#requirements .inner .container .period p span {
  display: inline-block;
  background: #D6006C;
  color: #fff;
  font-size: 1.5rem;
  width: 2.75rem;
  height: 2.75rem;
  line-height: 2.75rem;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  margin: 0 .2em;
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .period p span {
    font-size: 0.93333rem;
    width: 7.06667vw;
    height: 7.06667vw;
    line-height: 7.06667vw;
  }
}
#requirements .inner .container .period small {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  margin-top: 0.5rem;
  margin-right: 7.5rem;
}
@media only screen and (max-width: 749px) {
  #requirements .inner .container .period small {
    font-size: 0.86667rem;
    margin: 4vw auto 0;
  }
}

/* 応募方法
------------------------------*/
#method {
  background: #731002;
  color: #fff;
  padding-bottom: 4.5rem;
}
@media only screen and (max-width: 749px) {
  #method {
    padding-bottom: 16vw;
  }
}
#method .inner .container {
  padding-top: 4rem;
  position: relative;
}
@media only screen and (max-width: 749px) {
  #method .inner .container {
    padding-top: 14.66667vw;
  }
}
#method .inner .container h3 {
  width: 50%;
  position: absolute;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -2rem;
}
@media only screen and (max-width: 749px) {
  #method .inner .container h3 {
    width: 101.4%;
    top: -9.33333vw;
  }
}
#method .inner .container p {
  font-size: 0.8rem;
  line-height: 2;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 749px) {
  #method .inner .container p {
    font-size: 1rem;
    line-height: 1.66;
    margin-bottom: 8vw;
  }
}
#method .inner .container ul {
  margin-bottom: 1.5rem;
}
#method .inner .container ul li {
  font-size: 0.7rem;
  line-height: 1.85;
  margin-left: 1.25em;
  text-indent: -1.25em;
}
@media only screen and (max-width: 749px) {
  #method .inner .container ul li {
    font-size: 0.86667rem;
    line-height: 1.69;
  }
}
#method .inner .container ul li:not(:last-child) {
  margin-bottom: 1em;
}
@media only screen and (max-width: 749px) {
  #method .inner .container ul li:not(:last-child) {
    margin-bottom: .3;
  }
}
#method .inner .container strong {
  display: block;
  font-size: 0.8rem;
  line-height: 2;
  margin-bottom: 2.5rem;
  font-weight: 700;
}
@media only screen and (max-width: 749px) {
  #method .inner .container strong {
    font-size: 1rem;
    line-height: 1.66;
    margin-bottom: 13.33333vw;
  }
}
#method .inner .container a {
  display: block;
  width: 25rem;
  height: 4rem;
  line-height: 4rem;
  margin: auto;
}
@media only screen and (max-width: 749px) {
  #method .inner .container a {
    width: 80vw;
    height: 18.66667vw;
  }
}

/* 応募先～注意事項
------------------------------*/
#info {
  background: #FFFFA8;
  position: relative;
  padding: 3rem 0;
}
@media only screen and (max-width: 749px) {
  #info {
    padding: 13.33333vw 0;
  }
}
#info::before {
  position: absolute;
  content: "";
  background: url("../img/round_repeat.svg") repeat-x center top;
  -moz-background-size: auto 2rem;
  -o-background-size: auto 2rem;
  -webkit-background-size: auto 2rem;
  background-size: auto 2rem;
  z-index: 2;
  width: 100%;
  height: 2rem;
  top: -1rem;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media only screen and (max-width: 749px) {
  #info::before {
    height: 5.33333vw;
    -moz-background-size: auto 5.33333vw;
    -o-background-size: auto 5.33333vw;
    -webkit-background-size: auto 5.33333vw;
    background-size: auto 5.33333vw;
    top: -2.66667vw;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #info::before {
    background-image: url("../img/round_repeat.png");
  }
}
@media print, screen and (min-width: 750px) {
  #info .inner .container {
    background: #fff;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    padding: 2rem;
  }
}
#info .inner .container dl {
  font-size: 0.8rem;
  font-weight: 400;
}
@media only screen and (max-width: 749px) {
  #info .inner .container dl {
    font-size: 0.86667rem;
  }
}
#info .inner .container dl:not(:last-child) {
  margin-bottom: 1em;
}
#info .inner .container dl dt {
  font-weight: 700;
  margin-bottom: .5em;
}
#info .inner .container dl dt::before {
  content: "●";
  margin-right: .25em;
}
#info .inner .container dl dd {
  line-height: 2;
  margin-left: 1.25em;
}
@media only screen and (max-width: 749px) {
  #info .inner .container dl dd {
    line-height: 1.69;
  }
}

/* footer
------------------------------*/
footer {
  background: #fff;
  color: #000;
}
@media only screen and (max-width: 749px) {
  footer {
    padding-top: 8vw;
  }
}
footer .inner {
  padding: 2rem 0;
  position: relative;
}
@media only screen and (max-width: 749px) {
  footer .inner {
    width: 100%;
    max-width: 100%;
    padding: 0 0 8vw;
  }
}
footer .inner #pageTop {
  width: 3.9rem;
  height: 4.6rem;
  position: absolute;
  right: 0;
  top: -4.6rem;
}
@media only screen and (max-width: 749px) {
  footer .inner #pageTop {
    width: 18.66667vw;
    height: 21.33333vw;
    left: 50%;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: -29.33333vw;
  }
}
@media only screen and (max-width: 749px) {
  footer .inner .container {
    width: 100%;
    max-width: 100%;
  }
  footer .inner .container > a {
    display: block;
    width: 29.33333vw;
    margin: 0 auto 6.66667vw;
  }
}
@media print, screen and (min-width: 750px) {
  footer .inner .container h2 {
    font-size: 0.6rem;
    margin-bottom: 0.75rem;
    margin-left: 13%;
  }
}
@media only screen and (max-width: 749px) {
  footer .inner .container h2 {
    width: 92%;
    max-width: 92vw;
    font-size: 3.2vw;
    margin: 0 auto 2.66667vw;
  }
}
footer .inner .container ul {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
@media only screen and (max-width: 749px) {
  footer .inner .container ul {
    width: 92%;
    max-width: 92vw;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin: auto;
  }
}
@media print, screen and (min-width: 750px) {
  footer .inner .container ul li {
    width: 10%;
    margin-right: 3%;
  }
  footer .inner .container ul li:not(:first-child) {
    width: 16%;
  }
}
@media only screen and (max-width: 749px) {
  footer .inner .container ul li {
    width: 23.9%;
  }
}
footer .inner .container nav {
  display: -webkit-flex;
  display: flex;
  margin-top: 1.75rem;
}
@media only screen and (max-width: 749px) {
  footer .inner .container nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
footer .inner .container nav a {
  color: #000;
}
@media print, screen and (min-width: 750px) {
  footer .inner .container nav a {
    font-size: 0.7rem;
    text-decoration: underline;
  }
  footer .inner .container nav a:not(:last-child) {
    margin-right: 2em;
  }
}
@media only screen and (max-width: 749px) {
  footer .inner .container nav a {
    position: relative;
    display: block;
    padding: 4vw 0;
    border-bottom: solid 1px #ccc;
    font-size: 0.86667rem;
    padding-left: 5.33333vw;
  }
  footer .inner .container nav a:first-child {
    border-top: solid 1px #ccc;
  }
  footer .inner .container nav a::after {
    position: absolute;
    content: "";
    width: 2.66667vw;
    height: 2.66667vw;
    border-bottom: solid 1px #ccc;
    border-right: solid 1px #ccc;
    right: 4vw;
    top: 50%;
    -moz-transform: rotate(-45deg) translateY(-50%);
    -ms-transform: rotate(-45deg) translateY(-50%);
    -webkit-transform: rotate(-45deg) translateY(-50%);
    transform: rotate(-45deg) translateY(-50%);
  }
}
footer .inner .container p {
  font-size: 0.6rem;
  margin-top: 0.75rem;
}
@media only screen and (max-width: 749px) {
  footer .inner .container p {
    font-size: 0.86667rem;
    width: 92%;
    max-width: 92vw;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin: 8vw auto 0;
    line-height: 1.7;
  }
  footer .inner .container p span {
    font-weight: 700;
    display: block;
  }
}
footer .inner .container small {
  display: block;
  font-size: 0.6rem;
  margin-top: 1.75rem;
}
@media only screen and (max-width: 749px) {
  footer .inner .container small {
    font-size: 0.8rem;
    width: 92%;
    max-width: 92vw;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin: 6.66667vw auto 0;
  }
}
