@charset "UTF-8";

/*!
 * ress.css • v1.2.2
 * MIT License
 * github.com/filipelinhares/ress
 */
html {
  box-sizing: border-box;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}

*,
:after,
:before {
  background-repeat: no-repeat;
  box-sizing: inherit;
}

:after,
:before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

hr {
  overflow: visible;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden],
template {
  display: none;
}

abbr[title] {
  border-bottom: 1px dotted;
  text-decoration: none;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:active,
a:hover {
  outline-width: 0;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

b,
strong {
  font-weight: bolder;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

input {
  border-radius: 0;
}

[role=button],
[type=button],
[type=reset],
[type=submit],
button {
  cursor: pointer;
}

[disabled] {
  cursor: default;
}

[type=number] {
  width: auto;
}

[type=search] {
  -webkit-appearance: textfield;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset],
[type=submit],
button,
html [type=button] {
  -webkit-appearance: button;
}

button,
select {
  text-transform: none;
}

button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

svg:not(:root) {
  overflow: hidden;
}

audio,
canvas,
progress,
video {
  display: inline-block;
}

@media screen {
  [hidden~=screen] {
    display: inherit;
  }

  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

::-moz-selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

/* ------------------------------------------------------------------------
  General
------------------------------------------------------------------------ */
html {
  width: 100%;
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  color: #3A210B;
  /* font-weight for Noto Sans
  ------------------------------
  400: regular
  500: medium
  600: semi-bold
  700: bold
  ------------------------------*/
}

@media screen and (min-width: 768px) {
  body {
    min-width: 1100px;
  }
}

@media screen and (max-width: 767px) {
  body {
    width: 100%;
    overflow: hidden;
  }
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  img {
    width: 100%;
  }
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

a.link_underline {
  text-decoration: underline;
}

/* Layout
----------------------------------------- */
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }

  main section.sec_service .inner {
    max-width: 1750px;
  }

}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .inner {
    max-width: 1130px;
    padding: 0 15px;
    margin: auto;
  }
}

@media screen and (max-width: 767px) {
  .inner {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.inline-flex {
  display: inline-flex;
  flex-wrap: wrap;
}

/* Button
----------------------------------------- */
/* Text
----------------------------------------- */
.marker {
  background-color: #EFC000;
}

/* Animate
----------------------------------------- */
.ani {
  transition-duration: 1s;
  transition-delay: 0.4s;
}

.ani.ani_fadeIn {
  opacity: 0;
}

.ani.ani_fadeIn.animated {
  opacity: 1;
}

.ani.ani_fadeInBottom {
  opacity: 0;
  transform: translateY(20px);
}

.ani.ani_fadeInBottom.animated {
  opacity: 1;
  transform: translateY(0);
}

.shake_box {
  display: block;
}

.shake_box.shaking {
  pointer-events: none;
}

.shake_box.shaking figure {
  -webkit-animation: shake 1s ease-in-out;
  animation: shake 1s ease-in-out;
}

@-webkit-keyframes shake {
  0% {
    transform: rotate(0);
  }

  25% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(-8deg);
  }

  70% {
    transform: rotate(5deg);
  }

  80% {
    transform: rotate(-3deg);
  }

  90% {
    transform: rotate(1deg);
  }

  100% {
    transform: rotate(0);
  }
}

@keyframes shake {
  0% {
    transform: rotate(0);
  }

  25% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(-8deg);
  }

  70% {
    transform: rotate(5deg);
  }

  80% {
    transform: rotate(-3deg);
  }

  90% {
    transform: rotate(1deg);
  }

  100% {
    transform: rotate(0);
  }
}

/* ------------------------------------------------------------------------
  Main
------------------------------------------------------------------------ */
body {
  height: 100vh;
  background-color: #000;
  overflow: hidden;
}

body .oa {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  background-color: inherit;
}

body .oa video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

body.loaded {
  height: auto;
  background-color: transparent;
  overflow: auto;
}

main section {
  text-align: center;
}

main section h2 {
  margin-bottom: 30px;
}

main section .inner>p {
  text-align: left;
}

main section.sec_mv {
  height: 757px;
  padding: 150px 0 0;
  overflow: hidden;
  background-image: url(../img/mv_bg.svg);
  background-repeat: repeat-x;
  background-position: center;
}

@media screen and (max-width: 767px) {
  main section.sec_mv {
    height: auto;
    padding: 0;
    background-image: url(../img/mv_bg_sp.svg);
    background-position: center bottom;
    background-size: cover;
  }
}

main section.sec_mv .logo {
  padding: 25px 20px;
  background-color: #fff;
  border: 2px solid #3A210B;
  border-radius: 0 0 10px 10px;
  border-top: none;
  text-align: center;
  position: absolute;
  top: 0;
  left: 25px;
}

@media screen and (max-width: 767px) {
  main section.sec_mv .logo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 40px;
    padding: 9px 5vw;
    border: none;
    border-radius: 0;
    position: static;
  }
}

main section.sec_mv .logo img {
  max-width: 190px;
}

main section.sec_mv .logo p {
  margin-bottom: 7px;
  font-size: 1.0rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  main section.sec_mv .logo p {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  main section.sec_mv .logo img {
    width: 85px;
  }
}

main section.sec_mv h1 {
  margin-bottom: 65px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  main section.sec_mv h1 {
    margin-bottom: 35px;
  }
}

main section.sec_mv .mv_box {
  position: relative;
}

main section.sec_mv .mv_box img {
  position: relative;
}

main section.sec_mv .mv_box:before {
  content: "";
  width: 678px;
  height: 678px;
  background-image: url(../img/mv_halo.png);
  background-repeat: no-repeat;
  position: absolute;
  top: -200px;
  left: calc(50% - (678px / 2));
  -webkit-animation: halo 60s linear infinite;
  animation: halo 60s linear infinite;
}

@media screen and (max-width: 767px) {
  main section.sec_mv .mv_box:before {
    width: 120vw;
    height: 120vw;
    background-size: contain;
    top: -30vw;
    left: calc(50% - 60vw);
  }
}

@-webkit-keyframes halo {
  0% {
    transform: rotate(0) scale(1, 1);
  }

  0.5% {
    transform: rotate(2deg) scale(1.1, 1.1);
  }

  1% {
    transform: rotate(3deg) scale(1, 1);
  }

  50% {
    transform: rotate(180deg) scale(1, 1);
  }

  100% {
    transform: rotate(360deg) scale(1, 1);
  }
}

@keyframes halo {
  0% {
    transform: rotate(0) scale(1, 1);
  }

  0.5% {
    transform: rotate(2deg) scale(1.1, 1.1);
  }

  1% {
    transform: rotate(3deg) scale(1, 1);
  }

  50% {
    transform: rotate(180deg) scale(1, 1);
  }

  100% {
    transform: rotate(360deg) scale(1, 1);
  }
}

main section.sec_about {
  padding: 80px 0 100px;
  background-image: url(../img/about_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

@media screen and (max-width: 767px) {
  main section.sec_about {
    padding: 50px 0 0;
  }
}

main section.sec_about:after {
  content: "";
  display: block;
  width: 852px;
  height: 203px;
  margin: -30px auto 0;
  background-image: url(../img/about_landscape.png);
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (max-width: 767px) {
  main section.sec_about:after {
    content: none;
    width: 100%;
    height: 22vw;
    margin: -10px auto 0;
    background-size: contain;
  }
}

main section.sec_about .inner>p {
  width: 830px;
  margin: 0 auto 30px;
  font-size: 1.7rem;
  font-weight: 500;
  text-align: center;
}

@media screen and (max-width: 767px) {
  main section.sec_about .inner>p {
    width: auto;
    font-size: 1.6rem;
  }
}

main section.sec_about .about_diamond {
  width: 900px;
  margin: 40px auto 0;
  font-size: 0;
}

@media screen and (max-width: 767px) {
  main section.sec_about .about_diamond {
    width: auto;
    padding-top: 40px;
    position: relative;
  }
}

main section.sec_about .about_diamond img {
  margin: 0 5px;
  font-size: 1.6rem;
}

main section.sec_about .about_diamond img.about_diamond_hands {
  margin: 0 20px;
}

@media screen and (max-width: 767px) {
  main section.sec_about .about_diamond img.about_diamond_hands {
    width: 136px;
  }
}

main section.sec_about .about_diamond img:not(.about_diamond_hands) {
  position: relative;
}

@media screen and (max-width: 767px) {
  main section.sec_about .about_diamond img:not(.about_diamond_hands) {
    width: 60px;
    position: absolute;
  }
}

main section.sec_about .about_diamond img.about_diamond_pandora {
  top: 20px;
  -webkit-animation: diamond_pandora 1.5s ease-in-out infinite alternate;
  animation: diamond_pandora 1.5s ease-in-out infinite alternate;
}

@media screen and (max-width: 767px) {
  main section.sec_about .about_diamond img.about_diamond_pandora {
    top: 0;
    left: 0;
  }
}

main section.sec_about .about_diamond img.about_diamond_person {
  top: 60px;
  -webkit-animation: diamond_person 1.5s ease-in-out infinite alternate;
  animation: diamond_person 1.5s ease-in-out infinite alternate;
}

@media screen and (max-width: 767px) {
  main section.sec_about .about_diamond img.about_diamond_person {
    top: 20px;
    left: 60px;
  }
}

main section.sec_about .about_diamond img.about_diamond_potential {
  top: 20px;
  -webkit-animation: diamond_potential 1.5s ease-in-out infinite alternate;
  animation: diamond_potential 1.5s ease-in-out infinite alternate;
}

@media screen and (max-width: 767px) {
  main section.sec_about .about_diamond img.about_diamond_potential {
    top: 60px;
    left: 10px;
  }
}

main section.sec_about .about_diamond img.about_diamond_chance {
  top: 20px;
  -webkit-animation: diamond_chance 1.5s ease-in-out infinite alternate;
  animation: diamond_chance 1.5s ease-in-out infinite alternate;
}

@media screen and (max-width: 767px) {
  main section.sec_about .about_diamond img.about_diamond_chance {
    top: 60px;
    right: 10px;
  }
}

main section.sec_about .about_diamond img.about_diamond_change {
  top: 60px;
  -webkit-animation: diamond_change 1.5s ease-in-out infinite alternate;
  animation: diamond_change 1.5s ease-in-out infinite alternate;
}

@media screen and (max-width: 767px) {
  main section.sec_about .about_diamond img.about_diamond_change {
    top: 20px;
    right: 60px;
  }
}

main section.sec_about .about_diamond img.about_diamond_channel {
  top: 20px;
  -webkit-animation: diamond_channel 1.5s ease-in-out infinite alternate;
  animation: diamond_channel 1.5s ease-in-out infinite alternate;
}

@media screen and (max-width: 767px) {
  main section.sec_about .about_diamond img.about_diamond_channel {
    top: 0;
    right: 0;
  }
}

@media screen and (max-width: 767px) {
  main section.sec_about .about_diamond:after {
    content: "";
    display: block;
    width: 100%;
    height: 22vw;
    margin: -10px auto 0;
    background-image: url(../img/about_landscape.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
}

@-webkit-keyframes diamond_pandora {
  0% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(0);
  }

  80% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(-5px);
  }
}

@keyframes diamond_pandora {
  0% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(0);
  }

  80% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(-5px);
  }
}

@-webkit-keyframes diamond_person {
  0% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(0);
  }

  80% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(5px);
  }
}

@keyframes diamond_person {
  0% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(0);
  }

  80% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(5px);
  }
}

@-webkit-keyframes diamond_potential {
  0% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(0);
  }

  80% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(-5px);
  }
}

@keyframes diamond_potential {
  0% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(0);
  }

  80% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(-5px);
  }
}

@-webkit-keyframes diamond_chance {
  0% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(0);
  }

  80% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(-5px);
  }
}

@keyframes diamond_chance {
  0% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(0);
  }

  80% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(-5px);
  }
}

@-webkit-keyframes diamond_change {
  0% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(0);
  }

  80% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(5px);
  }
}

@keyframes diamond_change {
  0% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(0);
  }

  80% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(5px);
  }
}

@-webkit-keyframes diamond_channel {
  0% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(0);
  }

  80% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(-5px);
  }
}

@keyframes diamond_channel {
  0% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(0);
  }

  80% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(-5px);
  }
}

main section.sec_about .about_pandra {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 50px 90px;
  background-image: url(../img/about_pandora_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: -250px;
  left: calc(50% - 550px);
  z-index: 10;
}

@media screen and (max-width: 767px) {
  main section.sec_about .about_pandra {
    display: block;
    width: 100%;
    padding: 40px 4vw;
    background-image: url(../img/about_pandora_bg_sp.png);
    background-repeat: repeat-y;
    background-position: center top;
    background-size: 100%;
    border-top: 2px solid #3A210B;
    border-bottom: 2px solid #3A210B;
    position: relative;
    bottom: 1vw;
    left: 0;
  }
}

main section.sec_about .about_pandra:after {
  content: "";
  display: block;
  width: 285px;
  height: 260px;
  background-image: url(../img/about_pandora_box.svg);
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (max-width: 767px) {
  main section.sec_about .about_pandra:after {
    width: 54vw;
    height: 48vw;
    margin: auto;
    background-size: contain;
  }
}

main section.sec_about .about_pandra dl {
  padding: 0 65px 0 0;
}

@media screen and (max-width: 767px) {
  main section.sec_about .about_pandra dl {
    padding: 0 0 20px;
  }
}

main section.sec_about .about_pandra dl dt {
  font-size: 3.4rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  main section.sec_about .about_pandra dl dt {
    font-size: 2.6rem;
  }
}

main section.sec_about .about_pandra dl dd {
  width: 560px;
  margin-top: 20px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  main section.sec_about .about_pandra dl dd {
    width: auto;
    margin-top: 10px;
    font-size: 1.5rem;
  }
}

main section.sec_service {
  padding: 300px 0 90px;
  background-image: url(../img/service_bg.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  main section.sec_service {
    margin-top: -65vw;
    padding: 80vw 0 80px;
    position: relative;
  }
}

main section.sec_service .inner>p {
  width: 480px;
  margin: 0 auto 30px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  main section.sec_service .inner>p {
    width: auto;
    font-size: 1.5rem;
  }
}

main section.sec_service .service_link>p {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 1.9rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  main section.sec_service .service_link>p {
    margin-bottom: 50px;
    font-size: 1.7rem;
  }
}

main section.sec_service .service_link>p:after {
  content: "";
  display: block;
  width: 310px;
  height: 5px;
  margin-top: 5px;
  background-image: url(../img/service_underline.svg);
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (max-width: 767px) {
  main section.sec_service .service_link>p:after {
    width: 98%;
  }
}

main section.sec_service .service_link .service_box {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  row-gap: 30px;
}

main section.sec_service .service_link .service_box li {
  margin: 0 30px;
  position: relative;
}

@media screen and (max-width: 767px) {
  main section.sec_service .service_link .service_box li {
    margin: 15px auto;
  }
}

main section.sec_service .service_link .service_box li>img {
  display: block;
  width: 350px;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  main section.sec_service .service_link .service_box li>img {
    width: 310px;
  }
}

main section.sec_service .service_link .service_box li div {
  margin: auto;
}

main section.sec_service .service_link .service_box li a {
  display: block;
}

main section.sec_service .service_link .service_box li .service_box_name {
  position: relative;
  width: 350px;
  padding: 12px 0;
  margin-top: 10px;
  border-bottom: 5px solid #2a1700;
  border-radius: 50px;
  background-color: #4b2f0d;
  font-size: 1.4rem;
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  main section.sec_service .service_link .service_box li .service_box_name {
    width: 310px;
    margin-top: 5px;
    border-bottom: 5px solid #2a1700;
    font-size: 1.2rem;
  }
}

main section.sec_service .service_link .service_box li .service_box_name::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #fff;
  border-right: 0;
}

@media screen and (max-width: 767px) {
  main section.sec_service .service_link .service_box li .service_box_name::before {
    right: 10px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 9px solid #fff;
  }
}

main section.sec_service .service_link .service_box li .service_box_name span {
  font-size: 1.6rem;
  color: #fff;
  font-weight: bold;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  main section.sec_service .service_link .service_box li .service_box_name span {
    font-size: 1.4rem;
  }
}

main section.sec_service .service_link .service_box li.comingsoon a {
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  main section.sec_service .service_link .service_box li.comingsoon figure img {
    width: auto;
  }
}

main section.sec_service .service_link .service_box li.comingsoon figure:after {
  content: "COMING SOON";
  width: 100%;
  color: #fff;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 105px;
}

/* ------------------------------------------------------------------------
  Footer
------------------------------------------------------------------------ */
footer {
  padding: 15px 0;
  background-color: #311301;
  color: #fff;
  text-align: center;
}

footer a {
  font-size: 1.4rem;
  font-weight: 500;
}

footer small {
  display: block;
  margin-top: 20px;
  font-size: 1.0rem;
}

@media screen and (max-width: 767px) {
  footer small {
    margin-top: 15px;
  }
}