@charset "UTF-8";
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
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, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  line-height: 1;
}

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

ul {
  list-style: none;
}

li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: baseline;
  background: transparent;
}

img {
  display: block;
  max-width: 100%;
  vertical-align: bottom;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
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;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

main {
  display: block;
}

address {
  font-style: normal;
}

button {
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
}

button, input, select, textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

pre {
  white-space: pre-wrap;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*===========================================
  共通
===========================================*/
html,
body {
  width: 100%;
  height: auto;
  line-height: 1.6;
  color: #000000;
  font-size: 62.5%;
  font-weight: 400;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
  min-width: 1400px;
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 1399px) {
  html,
  body {
    min-width: 100%;
  }
}
p,
span,
ul,
li,
a,
dl,
dt,
dd,
input,
textarea {
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
}

a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover:not(.not_opacity) {
  opacity: 0.7;
}

h1 {
  font-size: 2.4rem;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  padding: 8px;
  margin-bottom: 30px;
}

.text_link {
  color: #009FE9;
  text-decoration: underline;
  padding: 0 10px;
}

.text_center {
  text-align: center;
}

.red {
  color: #eb1a48 !important;
}

.btn_primary {
  text-align: center;
  color: #fff;
  background-color: #DE5D50;
  border: none;
  cursor: pointer;
  -webkit-appearance: button;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  padding: 10px 20px;
  min-width: 200px;
}
.btn_primary:hover {
  opacity: 0.8;
}
.btn_primary.gray {
  background-color: #525263;
}

/*---------------------------
  レイアウト
---------------------------*/
body {
  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;
}

.main_container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0 50px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 900px) {
  .main_container {
    padding: 10px;
  }
}

.l-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
}
.l-row .heading {
  min-width: 15%;
}

/*===========================================
  header
===========================================*/
header .inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 900px) {
  header .inner {
    padding: 5px 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
header .img_logo {
  width: 30%;
  margin-right: 20px;
}
header .img_adobe_sp {
  padding-top: 5px;
}

/*===========================================
  note_block
===========================================*/
.note_block {
  margin-bottom: 20px;
  /*
  li {
  	position: relative;
  	padding-left: 15px;

  	&:not(:last-child) {
  		margin-bottom: 10px;
  	}

  	&::before {
  		content: "";
  		display: block;
  		width: 6px;
  		height: 6px;
  		background: #8a8a8a;
  		border-radius: 50%;
  		position: absolute;
  		left: 0;
  		top: center;
  		margin-top: 5px;
  	}

  }
  */
}
.note_block .heading {
  background: #EEF1F2;
  width: 100%;
  line-height: 1.2;
  padding: 5px 20px;
  margin-bottom: 15px;
}
.note_block .heading_sub {
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 5px;
}
.note_block .text_link {
  display: inline-block;
  padding-left: 1em;
  margin-bottom: 20px;
}
.note_block .text_link.to_apple {
  font-size: 1.6rem;
}
.note_block .note_item:not(:last-child) {
  margin-bottom: 20px;
}
.note_block .flow {
  background: #EEF1F2;
  padding: 15px;
  margin: 10px 0 15px;
}
.note_block .flow .heading_sub {
  margin-top: 0;
}
.note_block .note_list li {
  text-indent: -1em;
  padding-left: 1em;
}
.note_block .note_list li:not(:last-child) {
  margin-bottom: 2px;
}
.note_block .note_list em {
  font-weight: bold;
  font-style: normal;
}
.note_block .input_flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 520px) {
  .note_block .input_flow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.note_block .input_flow .item {
  background: #fff;
  padding: 6px 16px;
  position: relative;
}
@media screen and (max-width: 520px) {
  .note_block .input_flow .item {
    width: 100%;
    text-align: center;
  }
}
.note_block .input_flow .item:not(:last-child) {
  margin-right: 30px;
}
@media screen and (max-width: 520px) {
  .note_block .input_flow .item:not(:last-child) {
    margin-bottom: 20px;
  }
}
.note_block .input_flow .item.item:not(:last-child)::after {
  position: absolute;
  display: block;
  content: " ";
  width: 0;
  height: 0;
  border-width: 6px;
  border-left-width: 8px;
  border-style: solid;
  border-color: transparent transparent transparent #3a7dc2;
  top: 50%;
  right: -26px;
  margin-top: -4px;
}
@media screen and (max-width: 520px) {
  .note_block .input_flow .item.item:not(:last-child)::after {
    top: 130%;
    left: 50%;
    border-width: 6px;
    border-top-width: 8px;
    border-color: #3a7dc2 transparent transparent transparent;
  }
}

/*===========================================
  tabメニュー
===========================================*/
.heading-tab {
  width: 100%;
  font-size: 1.8rem;
  text-align: center;
  color: #fff;
  background: #484D50;
  padding: 15px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.tab {
  max-width: 600px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 520px) {
  .tab {
    max-width: 100%;
  }
}
.tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tab-list-item {
  width: 33.3%;
  font-size: 1.5rem;
  text-align: center;
  border: none;
  padding: 8px 0;
  cursor: pointer;
  background: #ebeeef;
}
.tab-list-item:not(:last-child) {
  border-right: 3px solid #fff;
}
.tab-list-item:hover {
  opacity: 0.7;
}
.tab-contents {
  background-color: #e7f7ff;
  display: none;
  padding: 20px;
}

.is-btn-active {
  background-color: #009fe9;
  color: #fff;
  font-weight: bold;
}

.is-contents-active {
  display: block;
}

/*===========================================
  フォーム
===========================================*/
.form_box {
  width: 100%;
  border-top: 1px dotted #ccc;
  margin-bottom: 16px;
  /* 製品の詳細 */
  /* AppleCare+ */
  /* お支払い合計金額(税込) */
  /* 住所 */
  /* その他のお問い合わせ */
  /* 個人情報について */
}
.form_box dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px dotted #ccc;
  padding: 20px 0;
  margin: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 900px) {
  .form_box dl {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.form_box dl.privacy_policy {
  border-bottom: none;
}
.form_box dt,
.form_box dd {
  padding: 0;
}
.form_box dt {
  font-weight: bold;
  width: 100%;
  padding-top: 0;
}
@media screen and (min-width: 900px) {
  .form_box dt {
    width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 900px) {
  .form_box dt {
    margin-top: 10px;
    margin-bottom: 5px;
  }
}
.form_box dt div {
  font-weight: bold;
}
.form_box dd {
  width: 100%;
  line-height: 2.5;
  padding: 0 0 0 20px;
  margin: 0;
}
@media screen and (min-width: 900px) {
  .form_box dd {
    width: 70%;
    line-height: 3;
  }
}
.form_box dd label {
  cursor: pointer;
}
.form_box p {
  line-height: 1.4;
}
.form_box .img_product {
  width: 60%;
  margin-bottom: 10px;
}
.form_box .e-required {
  font-size: 1.2rem;
  color: #fff;
  font-weight: normal;
  background: #eb1a48;
  padding: 3px;
  margin-left: 5px;
}
.form_box .any {
  font-size: 1.2rem;
  color: #fff;
  font-weight: normal;
  background: #959595;
  padding: 3px;
  margin-left: 5px;
}
.form_box input[type=text],
.form_box input[type=tel],
.form_box input[type=email],
.form_box textarea,
.form_box select {
  display: block;
  width: 99%;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  color: #555555;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  border-radius: 3px;
}
.form_box input[type=text]:-webkit-autofill, .form_box input[type=tel]:-webkit-autofill, .form_box input[type=email]:-webkit-autofill, .form_box textarea:-webkit-autofill, .form_box select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
          box-shadow: 0 0 0 1000px #fff inset;
}
.form_box input[type=text]:autofill,
.form_box input[type=tel]:autofill,
.form_box input[type=email]:autofill,
.form_box textarea:autofill,
.form_box select:autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
          box-shadow: 0 0 0 1000px #fff inset;
}
.form_box select {
  color: #000;
}
.form_box input[type=text],
.form_box input[type=tel],
.form_box input[type=email],
.form_box textarea {
  background-image: none;
  -webkit-appearance: none;
}
.form_box input[type=text],
.form_box input[type=tel],
.form_box input[type=email],
.form_box select {
  height: 40px;
}
.form_box textarea {
  width: 100%;
  max-width: 100%;
  min-height: 80px;
}
.form_box select {
  width: 48%;
  background-color: #f8f8f8;
}
.form_box input[type=text]:focus,
.form_box input[type=tel]:focus,
.form_box input[type=email]:focus,
.form_box textarea:focus {
  background-color: #fff;
}
.form_box input:disabled {
  background: #e4e4e4;
}
.form_box input[type=radio],
.form_box input[type=checkbox] {
  margin-top: -1px;
}
.form_box .l-halfInput input[type=text],
.form_box .l-halfInput input[type=tel] {
  display: inline-block;
  width: 48%;
  margin-left: 2%;
}
.form_box .l-halfInput input[type=text]:first-child,
.form_box .l-halfInput input[type=tel]:first-child {
  margin-left: 0;
}
.form_box ::-webkit-input-placeholder {
  color: #b8b8b8;
  font-weight: normal;
}
.form_box ::-moz-placeholder {
  color: #b8b8b8;
  font-weight: normal;
}
.form_box :-ms-input-placeholder {
  color: #b8b8b8;
  font-weight: normal;
}
.form_box ::-ms-input-placeholder {
  color: #b8b8b8;
  font-weight: normal;
}
.form_box ::placeholder {
  color: #b8b8b8;
  font-weight: normal;
}
.form_box .note {
  color: #484D50;
  font-size: 1.2rem;
  margin-top: 5px;
}
.form_box .note.indent {
  text-indent: -1em;
  padding-left: 1em;
}
.form_box .about_privacy .note {
  font-size: 1.4rem;
  text-align: center;
  color: #22a481;
  margin: 20px 0;
}
.form_box .detail textarea {
  min-height: 300px;
  border-radius: 0 0 3px 3px;
}
.form_box .detail .header_note {
  width: 100%;
  text-align: center;
  color: #fff;
  background: #484D50;
  padding: 5px;
}
.form_box .AppleCare label[id^=applecare_] {
  display: inline-block;
}
.form_box .total-value .yen {
  margin-left: 5px;
}
.form_box .address {
  margin-top: 8px;
}
.form_box textarea[name=comment] {
  min-height: 200px;
}
.form_box .text_privacy {
  text-align: center;
}

.button_block {
  text-align: center;
}
@media screen and (max-width: 900px) {
  .button_block {
    margin-top: 30px;
    margin-bottom: 40px;
  }
}
.button_block .btn_primary:not(:first-child) {
  margin-left: 20px;
}

/* エラーメッセージ */
.error {
  background: #ffc0cb;
  padding: 5px 10px;
}

/*===========================================
  確認ページ
===========================================*/
#form_confirm h1 {
  margin-bottom: 0;
}
#form_confirm .form_box {
  border-top: none;
  /* お支払い合計金額(税込) */
  /* お名前 */
}
#form_confirm .form_box dl {
  padding: 20px 0;
}
#form_confirm .form_box .dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#form_confirm .form_box .data_output {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#form_confirm .form_box .note {
  color: #bbbbbb;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin-top: 10px;
}
#form_confirm .form_box .total-value #price {
  display: inline;
  font-size: 1.8rem;
}
#form_confirm .form_box .full_name dd,
#form_confirm .form_box .furigana dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#form_confirm .form_box .full_name dd .data_input:first-child,
#form_confirm .form_box .furigana dd .data_input:first-child {
  margin-right: 10px;
}

/*===========================================
  完了ページ
===========================================*/
#form_thanks .text_block {
  margin-bottom: 40px;
}
#form_thanks .note_block .after_flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
#form_thanks .note_block .after_flow .item {
  color: #3a7dc2;
  border: 3px solid #e4e4e4;
  padding: 6px 16px;
  position: relative;
}
#form_thanks .note_block .after_flow .item:not(:last-child) {
  margin-right: 30px;
}
#form_thanks .note_block .after_flow .item.item:not(:last-child)::after {
  position: absolute;
  display: block;
  content: " ";
  width: 0;
  height: 0;
  border-width: 6px;
  border-left-width: 8px;
  border-style: solid;
  border-color: transparent transparent transparent #3a7dc2;
  top: 50%;
  right: -30px;
  margin-top: -4px;
}
#form_thanks .note_reply {
  text-align: center;
  border: 1px solid #cbcbcb;
  padding: 20px;
}
#form_thanks .link_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;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  #form_thanks .link_block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#form_thanks .link_block .item {
  display: block;
  width: 99%;
}
@media screen and (max-width: 900px) {
  #form_thanks .link_block .item {
    width: 100%;
  }
}
#form_thanks .link_block .item:not(:last-child) {
  margin-right: 1%;
}
@media screen and (max-width: 900px) {
  #form_thanks .link_block .item:not(:last-child) {
    margin-right: 0%;
    margin-bottom: 10px;
  }
}
#form_thanks .link_block .item a {
  display: block;
  text-decoration: none;
  text-align: center;
  color: #fff;
  background: #00A0E9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 70px;
}
#form_thanks .link_block .item a:hover {
  border-color: rgba(0, 146, 196, 0.8);
}

/*===========================================
  ご購入前の注意ページ
===========================================*/
#info .check_list {
  margin-top: 40px;
  margin-bottom: 40px;
}
#info .check_list li {
  position: relative;
  font-size: 1.8rem;
  line-height: 2;
  background: #fffff0;
  border: 3px solid #23b16c;
  border-radius: 20px;
  padding: 40px 40px 40px 70px;
  z-index: 0;
}
#info .check_list li:not(:last-child) {
  margin-bottom: 20px;
}
#info .check_list li::before {
  position: absolute;
  top: 50%;
  left: 30px;
  margin-top: -11px;
  display: block;
  content: "";
  min-width: 22px;
  min-height: 22px;
  background: #23b16c;
  border-radius: 5px;
  z-index: 1;
}
#info .check_list li::after {
  position: absolute;
  top: 50%;
  left: 37px;
  margin-top: -9px;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  width: 6px;
  height: 10px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  content: "";
  z-index: 2;
}
#info .check_list li .highlight {
  font-size: 1.8rem;
  font-weight: bold;
  border-bottom: 2px solid #000;
}
#info .bank_details {
  background: #f7f7f7;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
}
#info .bank_details .heading {
  background: #646464;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  padding: 10px;
}
#info .bank_details .item_block {
  padding: 20px 100px;
}
@media screen and (max-width: 520px) {
  #info .bank_details .item_block {
    padding: 5%;
  }
}
#info .bank_details dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 2;
  padding: 10px;
}
#info .bank_details dl:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
#info .bank_details dl dt,
#info .bank_details dl dd {
  font-size: 1.8rem;
}
#info .bank_details dl dt {
  min-width: 30%;
  position: relative;
}
#info .bank_details dl dt::after {
  position: absolute;
  top: 0;
  right: 30px;
  content: "：";
}
@media screen and (max-width: 520px) {
  #info .bank_details dl dt::after {
    content: "";
  }
}
#info .bank_details .note {
  margin-top: 15px;
}

/*===========================================
  footer
===========================================*/
footer {
  /* TOPへ戻るボタン */
  color: #fff;
  background: #484D50;
  padding: 20px;
}
footer #page-top {
  position: fixed;
  bottom: 80px;
  right: 40px;
  z-index: 1;
}
@media screen and (max-width: 520px) {
  footer #page-top {
    bottom: 10px;
    right: 10px;
  }
}
footer #page-top a {
  display: block;
  background: rgba(111, 121, 123, 0.8);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: relative;
}
@media screen and (max-width: 520px) {
  footer #page-top a {
    width: 30px;
    height: 30px;
  }
}
footer #page-top a::before {
  position: absolute;
  display: block;
  content: " ";
  width: 0;
  height: 0;
  border-right: 10px solid transparent;
  border-bottom: 14px solid #fff;
  border-left: 10px solid transparent;
  top: 50%;
  left: 50%;
  margin-top: -10px;
  margin-left: -9px;
}
@media screen and (max-width: 520px) {
  footer #page-top a::before {
    border-right-width: 5px;
    border-bottom-width: 7px;
    border-left-width: 5px;
    margin-top: -5px;
    margin-left: -5px;
  }
}
footer .inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 900px) {
  footer .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}
footer a {
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
}
footer .copyright {
  font-size: 1.2rem;
}
@media screen and (max-width: 900px) {
  footer .copyright {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 8px;
  }
}
footer .footer_link a:not(:last-child) {
  margin-right: 20px;
}
@media screen and (max-width: 900px) {
  footer .footer_link a:not(:last-child) {
    display: block;
    margin-bottom: 8px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

#topcontrol {
  right: 20px !important;
  bottom: 70px !important;
}