@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.4
2009-07-27
Author: Richard Clark - http://richclarkdesign.com
*/
/* ---------------------------------------------------
 color
----------------------------------------------------*/
.btn-block__btn {
  position: relative;
  text-align: center;
  border-radius: 40px;
  border: 2px solid transparent;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  width: 216px;
  height: 100%;
  padding: 20px 10px;
  font-size: 16px;
  font-weight: bold;
  color: #063190;
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

@media (max-width: 480px) {
  .btn-block__btn {
    width: 58.4vw;
    padding: 4vw 3vw;
  }
}

.is-disabled.btn-block__btn {
  background-color: #ccc;
  border: 2px solid #ccc;
  pointer-events: none;
}

.full-w.btn-block__btn {
  width: 100%;
  padding: 20px 30px;
}

@media (max-width: 480px) {
  .full-w.btn-block__btn {
    padding: 4vw 6vw;
  }
}

.left.btn-block__btn::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #063190;
  border-right: 2px solid #063190;
  position: absolute;
  top: 50%;
  left: 25px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  margin-top: -4px;
}

@media (max-width: 480px) {
  .left.btn-block__btn::before {
    left: 4vw;
  }
}

.left.full-w.btn-block__btn {
  width: 100%;
  padding: 20px 50px;
}

@media (max-width: 480px) {
  .left.full-w.btn-block__btn {
    padding: 4vw 8vw;
  }
}

.right.btn-block__btn::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #063190;
  border-right: 2px solid #063190;
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-top: -4px;
}

@media (max-width: 480px) {
  .right.btn-block__btn::after {
    right: 4vw;
  }
}

.right.full-w.btn-block__btn {
  width: 100%;
  padding: 20px 50px;
}

@media (max-width: 480px) {
  .right.full-w.btn-block__btn {
    padding: 4vw 8vw;
  }
}

.glass.btn-block__btn:after {
  content: "";
  display: inline-block;
  background: url(../img/icon_glass.png) 0 0 no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  margin-left: 20px;
}

@media (max-width: 768px) {
  .glass.btn-block__btn:after {
    width: 5vw;
    height: 5vw;
    margin-left: 4vw;
  }
}

.btn-block__btn:hover {
  background-color: #063190;
  color: #fff;
  opacity: 1 !important;
}

.btn-block__btn:hover.left::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.btn-block__btn:hover.right::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-top: -4px;
}

@media (max-width: 480px) {
  .btn-block__btn:hover.right::after {
    right: 4vw;
  }
}

/*---------------------------------------------
リセット
---------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

body {
  line-height: 1;
}

article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

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

input,
select {
  vertical-align: middle;
}

/* ---------------------------------------------------
 utilry
----------------------------------------------------*/
.ut_ta-c {
  text-align: center;
}

.ut_ta-r {
  text-align: right;
}

.ut_fw-b {
  font-weight: bold;
}

.ut_mlr-auto {
  margin-left: auto;
  margin-right: auto;
}

.ut_img-full {
  width: 100%;
}

.ut_for-pc {
  display: block;
}

@media (max-width: 480px) {
  .ut_for-pc {
    display: none;
  }
}

.ut_for-sp {
  display: none;
}

@media (max-width: 480px) {
  .ut_for-sp {
    display: block;
  }
}

.ut_for-md {
  display: none;
}

@media (max-width: 768px) {
  .ut_for-md {
    display: block;
  }
}

.ut_sup {
  font-size: 12px;
  vertical-align: super;
}

@media (max-width: 480px) {
  .ut_sup {
    font-size: 2vw;
  }
}

/* 共通設定 */
html {
  font-size: 62.5%;
  margin-top: 0 !important;
  height: 100%;
}

body {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  width: 100%;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  min-height: calc(var(--vh, 1vh) * 100);
}

body.fixed {
  position: fixed;
  width: 100%;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#overflow {
  overflow-x: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  width: 100%;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  min-height: 1px;
  /*IE11 img resizing bug*/
}

.btn-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 55px;
}

@media (max-width: 480px) {
  .btn-block {
    margin-top: 9.35vw;
  }
}

.btn-block__btn {
  position: relative;
  background-color: #fff;
  border: 1px solid #063190;
}

.btn-block__btn--og {
  background-color: #fd9a01;
  border: 1px solid #fd9a01;
  color: #fff;
}

.btn-block__btn--og.left::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.btn-block__btn--og.right::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.btn-block__btn--og:hover {
  background-color: #fff;
  color: #fd9a01;
}

.btn-block__btn--og:hover.left::before {
  border-top: 2px solid #fd9a01;
  border-right: 2px solid #fd9a01;
}

.btn-block__btn--og:hover.right::after {
  border-top: 2px solid #fd9a01;
  border-right: 2px solid #fd9a01;
}

.btn-block__btn--pink {
  background-color: #f0428f;
  border: 1px solid #f0428f;
  color: #fff;
}

.btn-block__btn--pink.left::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.btn-block__btn--pink.right::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.btn-block__btn--pink:hover {
  background-color: #fff;
  color: #f0428f;
}

.btn-block__btn--pink:hover.left::before {
  border-top: 2px solid #f0428f;
  border-right: 2px solid #f0428f;
}

.btn-block__btn--pink:hover.right::after {
  border-top: 2px solid #f0428f;
  border-right: 2px solid #f0428f;
}

@media (max-width: 480px) {
  .btn-block__btn {
    width: 40vw;
    font-size: 3.2vmin;
  }
}

.txt-sup {
  vertical-align: super;
  font-size: 11px;
  margin-left: -2px;
}

@media (max-width: 480px) {
  .txt-sup {
    font-size: 2vw;
  }
}

.icon-link::after {
  content: "";
  display: inline-block;
  background: url(../img/common/icon_link.png) 0 0 no-repeat;
  background-size: contain;
  width: 16px;
  height: 13px;
  vertical-align: middle;
}

@media (max-width: 480px) {
  .icon-link::after {
    width: 4.5vw;
    height: 4vw;
  }
}

.icon-pdf::after {
  content: "";
  display: inline-block;
  background: url(../img/common/icon_pdf.png) 0 0 no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

@media (max-width: 480px) {
  .icon-pdf::after {
    width: 4.5vw;
    height: 4.5vw;
  }
}

/* ---------------------------------------------------
 header
----------------------------------------------------*/
.header {
  border-bottom: 1px solid #063190;
  height: 63px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 480px) {
  .header {
    padding: 0;
  }
}

.header-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 480px) {
  .header-block {
    height: 70px;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .header-block__ttl {
    width: 20vw;
  }
}

@media (max-width: 480px) {
  .header-block__ttl {
    width: 100%;
  }
}

/*=============================
.btn-trigger
=============================*/
.btn-trigger {
  position: relative;
  cursor: pointer;
  display: none;
}

@media (max-width: 480px) {
  .btn-trigger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: static;
    right: 40px;
    width: 40px;
    height: 30px;
  }
}

.btn-trigger span {
  width: 100%;
  height: 3px;
  background-color: #063190;
  border-radius: 4px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.btn-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(11px) rotate(315deg);
          transform: translateY(11px) rotate(315deg);
}

.btn-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.btn-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-16px) rotate(-315deg);
          transform: translateY(-16px) rotate(-315deg);
}

/* ---------------------------------------------------
gnav
----------------------------------------------------*/
@media (max-width: 768px) {
  .gnav {
    width: 65vw;
  }
}

@media (max-width: 480px) {
  .gnav {
    position: absolute;
    top: 70px;
    left: 100%;
    width: 100%;
    height: calc(100vh - 70px);
    z-index: 20;
    background-color: #063190;
    -webkit-transition: left 0.3s ease-in-out;
    transition: left 0.3s ease-in-out;
    display: none;
  }
}

.gnav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: bold;
  position: relative;
}

@media (max-width: 480px) {
  .gnav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.gnav__item {
  white-space: nowrap;
}

.gnav__item:not(:last-child)::after {
  content: "|";
  padding-left: 10px;
  display: inline-block;
}

@media (max-width: 768px) {
  .gnav__item:not(:last-child)::after {
    padding-left: 1vw;
  }
}

@media (max-width: 480px) {
  .gnav__item:not(:last-child)::after {
    display: none;
  }
}

.gnav__item > a {
  font-size: 14px;
  color: #333;
  position: relative;
  padding-left: 10px;
}

@media (max-width: 768px) {
  .gnav__item > a {
    font-size: 1.8vw;
    padding-left: 1vw;
  }
}

@media (max-width: 480px) {
  .gnav__item > a {
    display: block;
    padding: 6vw 4vw;
    border-bottom: 1px solid #fff;
    color: #fff;
    font-size: 4vw;
  }
  .gnav__item > a::after {
    content: "";
    width: 10px;
    height: 10px;
    border: 0px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 4vw;
    margin-top: -5px;
  }
}

.gnav--sp {
  display: none;
}

@media (max-width: 480px) {
  .gnav--sp {
    position: absolute;
    top: 63px;
    left: 100%;
    width: 100%;
    height: calc(100vh - 70px);
    z-index: 20;
    background-color: #063190;
    -webkit-transition: left 0.2s ease-in-out;
    transition: left 0.2s ease-in-out;
    display: block;
  }
}

.gnav--sp.active {
  left: 0;
}

.gnav--sp .js-over {
  white-space: nowrap;
}

@media (max-width: 480px) {
  .gnav--sp .js-over > a {
    display: block;
    padding: 6vw 4vw;
    border-bottom: 1px solid #fff;
    color: #fff;
    font-size: 4vw;
    position: relative;
  }
  .gnav--sp .js-over > a::after {
    content: "";
    width: 16px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    right: 14px;
    margin-top: -2px;
    border: none;
    -webkit-transform: none;
            transform: none;
  }
  .gnav--sp .js-over > a::before {
    content: "";
    width: 2px;
    height: 16px;
    border: 0px;
    background-color: #fff;
    position: absolute;
    border: none;
    top: 50%;
    right: 21px;
    margin-top: -8px;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .gnav--sp .js-over > a.active::before {
    opacity: 0;
  }
}

.gnav-child {
  position: absolute;
  display: none;
  background-color: #fff;
  padding: 35px 0 0 0;
  min-width: 16%;
}

@media (max-width: 480px) {
  .gnav-child {
    position: relative;
    padding: 0;
    background-color: transparent;
  }
}

.gnav-child li a {
  font-size: 14px;
  color: #333;
  position: relative;
  padding: 10px;
  display: inline-block;
}

@media (max-width: 768px) {
  .gnav-child li a {
    font-size: 1.8vw;
    padding: 1vw;
  }
}

@media (max-width: 480px) {
  .gnav-child li a {
    display: block;
    padding: 6vw 4vw;
    border-bottom: 1px solid #fff;
    color: #fff;
    font-size: 4vw;
    background-color: #cfcfcf;
  }
  .gnav-child li a::after {
    content: "";
    width: 10px;
    height: 10px;
    border: 0px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 4vw;
    margin-top: -5px;
  }
}

/* ---------------------------------------------------
breadcrumb
----------------------------------------------------*/
.breadcrumb {
  padding: 20px 0 0;
}

.breadcrumb__list {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 14px;
}

.breadcrumb__list a {
  color: #333;
}

.breadcrumb__item:not(:first-child)::before {
  content: ">";
  padding-left: 10px;
  padding-right: 10px;
  display: inline-block;
}

.breadcrumb__item:last-child {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  word-wrap: break-word;
  min-width: 0;
  padding-left: 1.6em;
  text-indent: -0.8em;
}

@media (max-width: 1024px) {
  .breadcrumb__list {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    overflow: auto;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .breadcrumb {
    border-top: 1px solid #f0f0f0;
    padding: 3vw 0;
  }
  .breadcrumb__list {
    font-size: 1.2rem;
    overflow-x: auto;
    overflow-y: hidden;
    overflow-scrolling: touch;
    overflow: auto;
    white-space: nowrap;
  }
  .breadcrumb__item:not(:first-child)::before {
    padding-left: 2vw;
    padding-right: 2vw;
  }
}

/* ---------------------------------------------------
コンテンツ
----------------------------------------------------*/
.section__ttl {
  text-align: center;
  font-weight: bold;
  font-size: 36px;
  color: #063190;
  margin-bottom: 45px;
}

@media (max-width: 768px) {
  .section__ttl {
    margin-bottom: 8vw;
  }
}

@media (max-width: 480px) {
  .section__ttl {
    font-size: 7.4vw;
  }
}

.section__ttl span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, transparent), color-stop(65%, #fccc00));
  background: linear-gradient(transparent 65%, #fccc00 65%);
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .section__ttl span {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #fccc00), color-stop(80%, #fccc00), color-stop(80%, transparent));
    background: linear-gradient(transparent 50%, #fccc00 50%, #fccc00 80%, transparent 80%);
  }
}

.section__ttl.ver2 {
  color: #fff;
}

.section__ttl--s {
  font-size: 21px;
}

@media (max-width: 480px) {
  .section__ttl--s {
    font-size: 5vw;
  }
}

.section__sub-ttl {
  font-size: 24px;
  margin-bottom: 40px;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 480px) {
  .section__sub-ttl {
    font-size: 5.6vw;
    margin-bottom: 5.33vw;
  }
}

.inner {
  padding: 0 35px;
  width: 100%;
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .inner {
    padding: 0 4vw;
  }
}

.inner.wide {
  padding: 0;
}

/* ---------------------------------------------------
 footer
----------------------------------------------------*/
.footer {
  border-top: 1px solid #063190;
  margin-top: auto;
}

.footer-top {
  padding: 28px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 480px) {
  .footer-top {
    padding: 5vw 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer-top__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
}

@media (max-width: 480px) {
  .footer-top__list {
    margin-top: 4vw;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.footer-top__item {
  font-size: 14px;
}

@media (max-width: 480px) {
  .footer-top__item {
    font-size: 3.75vw;
  }
}

.footer-top__item:not(:last-child)::after {
  content: "|";
  padding-left: 10px;
  padding-right: 10px;
  display: inline-block;
}

@media (max-width: 480px) {
  .footer-top__item:not(:last-child)::after {
    padding-left: 2vw;
    padding-right: 2vw;
  }
}

@media (max-width: 480px) {
  .footer-top__item:first-child {
    width: 100%;
    text-align: center;
    margin-bottom: 3vw;
  }
  .footer-top__item:first-child::after {
    display: none;
  }
}

.footer-top__item a {
  color: #333;
}

@media (max-width: 480px) {
  .footer-top p {
    text-align: center;
  }
}

.footer-bottom {
  text-align: center;
  padding: 12px 0;
  background-color: #063190;
  border-top: 4px solid #fccc00;
}

.footer-bottom p {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
}

@media (max-width: 480px) {
  .footer-bottom--pb {
    padding: 12px 0 16vw !important;
  }
}

/* ---------------------------------------------------
top へ戻る
----------------------------------------------------*/
.btn-top {
  display: none;
}

.btn-top__btn {
  position: fixed;
  right: 30px;
  bottom: 50px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  background-color: rgba(6, 49, 144, 0.8);
  z-index: 10;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 768px) {
  .btn-top__btn {
    width: 60px;
    height: 60px;
    right: 4%;
    bottom: 10%;
  }
}

@media (max-width: 480px) {
  .btn-top__btn {
    width: 12vw;
    height: 12vw;
  }
}

　 .btn-top__btn::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  margin-bottom: 10px;
  padding-right: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translateY(25%) rotate(-45deg);
          transform: translateY(25%) rotate(-45deg);
}

@media (max-width: 768px) {
  　 .btn-top__btn::before {
    width: 10px;
    height: 10px;
    margin-bottom: 6px;
  }
}
/*# sourceMappingURL=common.css.map */