@charset "UTF-8";
/*リセット
--------------------------------------------*/
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;
}

/*フォント
---------------------------------------------*/
@font-face {
  font-family: "noto-sans";
  src: url("../fonts/NotoSansCJKjp-Regular.woff2") format("woff2"), url("../fonts/NotoSansCJKjp-Regular.woff") format("woff"), url("../fonts/NotoSansCJKjp-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "noto-sans";
  src: url("../fonts/NotoSansCJKjp-Bold.woff2") format("woff2"), url("../fonts/NotoSansCJKjp-Bold.woff") format("woff"), url("../fonts/NotoSansCJKjp-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "grandam";
  src: url("../fonts/grandam.woff2") format("woff2"), url("../fonts/grandam.woff") format("woff"), url("../fonts/grandam.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "apercu";
  src: url("../font/apercu/apercu_regular_pro.eot.woff2") format("woff2"), url("../font/apercu/apercu_regular_pro.eot.woff") format("woff"), url("../font/apercu/apercu_regular_pro.eot.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
/*メディアクエリー
---------------------------------------------*/
/*変数
---------------------------------------------*/
/* コンテンツ
---------------------------------------------*/
html {
  font-weight: 400;
  width: 100%;
  height: 100%;
  color: #3C3F41;
}

body {
  position: relative;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #3C3F41;
  font-family: sweet-sans-pro, yu-gothic-pr6n, sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media screen and (min-width: 769px) {
  body {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 12px;
  }
}

/* ------------------------
common(other)
------------------------ */
.fadein {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pb40 {
  padding-bottom: 24px;
}
@media screen and (min-width: 769px) {
  .pb40 {
    padding-bottom: 40px;
  }
}

.pb3 {
  padding-bottom: 3%;
}

.pb5 {
  padding-bottom: 5%;
}

.pr1 {
  padding-right: 1%;
}

.pt40 {
  padding-top: 20px;
}
@media screen and (min-width: 769px) {
  .pt40 {
    padding-top: 24px;
  }
}

img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (min-width: 769px) {
  .pcNone {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pcNone {
    display: block;
  }
}

@media screen and (min-width: 769px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none;
  }
}

/* ------------------------
common(button)
------------------------ */
.button {
  display: block;
  text-align: center;
  text-decoration: none;
  outline: none;
  margin: 4px auto 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 1px solid #3C3F41;
  font-size: 12px;
}
@media screen and (min-width: 769px) {
  .button {
    background: rgba(255, 255, 255, 0);
    color: #3C3F41;
    padding: 2px 10px;
  }
}
@media screen and (max-width: 768px) {
  .button {
    color: #3C3F41;
    background: #fff;
    padding: 0 10PX;
  }
}

.button:hover {
  color: #fff;
  background: #3C3F41;
}

.button_L {
  display: block;
  width: 90%;
  padding: 10px 0;
  font-size: 14px;
  line-height: 1em;
}
@media screen and (min-width: 769px) {
  .button_L {
    font-size: 14px;
    padding: 16px 0;
    width: 50%;
    letter-spacing: 0.1em;
  }
}

.buttonBox_more {
  text-align: right;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .buttonBox_more {
    margin-right: 5%;
  }
}

.buttonBox_more a {
  text-decoration: none;
  color: #3C3F41;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.buttonBox_more a:hover {
  opacity: 0.6;
  color: #86b5e1;
}

.button_img {
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.button_img:hover {
  opacity: 0.7;
}

.buttonBox_content {
  margin-top: 40px;
}

.dli-chevron-right {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 0.6em;
  height: 0.6em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translateX(-25%) rotate(45deg);
          transform: translateX(-25%) rotate(45deg);
  margin-left: 4px;
  margin-bottom: 4px;
}

.dli-chevron-down {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 0.8em;
  height: 0.8em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translateY(-25%) rotate(135deg);
          transform: translateY(-25%) rotate(135deg);
  margin-left: 8px;
  margin-bottom: 4px;
}

/* ------------------------
common(H)
------------------------ */
h2 {
  position: relative;
  display: inline-block;
  line-height: 1.2em;
  letter-spacing: 0.02em;
  text-align: center;
}
@media screen and (min-width: 769px) {
  h2 {
    font-size: 32px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
h2 span {
  opacity: 0.2;
  font-size: 200%;
  display: block;
}
h2 span::after {
  content: "";
  display: block;
  width: 2px;
  height: 40px;
  background: #3C3F41;
  margin-top: 25px;
  margin-bottom: 7px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 769px) {
  h3 {
    font-size: 22px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 18px;
    margin: 0 0 10px;
  }
}

.accent:first-letter {
  color: #86b5e1;
  font-size: 200%;
  display: inline-block;
}

.head-border {
  width: 80%;
  margin: 0 auto;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.head-border:before,
.head-border:after {
  content: "";
  height: 1px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: #666;
}

.head-border:before {
  margin-right: 1rem;
}

.head-border:after {
  margin-left: 1rem;
}

/* ------------------------
common(box)
------------------------ */
.contentBox01 {
  width: 90%;
  margin: 0 auto;
  padding: 56px 0 0;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .contentBox01 {
    width: 60%;
    padding: 96px 0 0;
    line-height: 1.6em;
  }
}
.contentBox01 .photoBox {
  width: 75%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .contentBox01 .photoBox {
    width: 65%;
  }
}
.contentBox01 .txtBox {
  font-size: 12px;
  text-align: left;
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .contentBox01 .txtBox {
    width: 80%;
    margin: 0 auto;
    font-size: 14px;
  }
}

.contentBox_bg {
  background-color: #F4F4F4;
  width: 100%;
  margin: 0 auto 40px;
  padding-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .contentBox_bg {
    width: 90%;
    margin: 0 auto 96px;
    padding-bottom: 56px;
  }
}

.contentBox02 {
  padding-top: 20px;
}
@media screen and (min-width: 769px) {
  .contentBox02 {
    width: 60%;
    margin: 0 auto;
    padding-top: 40px;
  }
}

.contentBox02_bg {
  margin: 0 auto 40px;
  background-color: #fff;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .contentBox02_bg {
    width: 90%;
    margin: 0 auto 24px;
    background-color: #fff;
    padding: 40px 0;
  }
}

.contentBox02_item {
  width: 50%;
  margin: 20px auto;
}
@media screen and (min-width: 769px) {
  .contentBox02_item {
    width: 30%;
    margin: 40px auto;
  }
}

.contentBox02_item2 {
  width: 60%;
  margin: 20px auto;
}
@media screen and (min-width: 769px) {
  .contentBox02_item2 {
    width: 40%;
    margin: 40px auto;
  }
}

p.contentBox02_txtBox {
  margin: 20px auto 40px;
  width: 90%;
  line-height: 1.6em;
}
@media screen and (min-width: 769px) {
  p.contentBox02_txtBox {
    width: 80%;
    margin: 40px auto;
    font-size: 12px;
  }
}

.checkmark {
  padding-left: 24px;
  position: relative;
}

.checkmark:before,
.checkmark:after {
  content: "";
  display: block;
  position: absolute;
}

.checkmark:before {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: #ffffff;
  border: 1px solid #86b5e1;
  left: 0;
  top: 2px;
}

.checkmark:after {
  border-left: 2px solid #86b5e1;
  border-bottom: 2px solid #86b5e1;
  width: 15px;
  height: 5px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 3px;
  top: 0;
}

/* ------------------------
Header
------------------------ */
/* for Scroll Fix Header */
header {
  width: 100%;
  text-align: center;
}

.fix-header {
  line-height: 56px;
  top: -56px;
  /* 上に隠す鷹さ */
  left: 0;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  color: #3C3F41;
  position: fixed;
  opacity: 0;
  /* 	最初読み込んだときは透過 */
  z-index: 1000;
  /*　他のアイテムに対して最上位のレイヤーになるように */
  /*	opacity: 0; */
}

.fix-header-contents {
  width: 100%;
  margin: 0 auto;
}

.fix-header ul {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fix-header li {
  width: 50%;
  background-color: rgba(134, 181, 225, 0.9);
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.fix-header li a, .fix-header li a:visited {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  width: 100%;
  display: block;
}

.fix-header li:hover {
  background: rgba(134, 181, 225, 0.7);
}

.fix-header li:last-child {
  margin-right: 0;
}

/* micro clearfx */
.cf:before, .cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  zoom: 1;
}

/* For IE 6/7 */
/* ------------------------
Main
------------------------ */
div#mainArea {
  width: 100%;
  height: calc( var(--vh) * 100 );
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 769px) {
  div#mainArea {
    background: url("../images/main_pc.jpg") center top;
    background-size: cover;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding-top: 8%;
    padding-right: 8%;
  }
}
@media screen and (max-width: 768px) {
  div#mainArea {
    background: url("../images/main_sp.jpg") center top;
    background-size: cover;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding-top: 20%;
  }
}
div#mainArea div.title .iacucci_logo {
  width: 30%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  div#mainArea div.title .iacucci_logo {
    width: 23%;
  }
}
div#mainArea div.title h1 {
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 24px;
  line-height: 1.2;
}
@media screen and (min-width: 769px) {
  div#mainArea div.title h1 {
    width: 100%;
    font-size: 35px;
    padding-top: 24px;
    line-height: 1.2;
  }
}
@media screen and (max-width: 768px) {
  div#mainArea div.title h1 {
    width: 100%;
    /*text-shadow:0px 0px 12px #ffffff;*/
    font-size: 30px;
  }
}
div#mainArea div.title h1 span {
  display: block;
  font-size: 12px;
  padding-top: 16px;
}
@media screen and (min-width: 769px) {
  div#mainArea div.title h1 span {
    font-size: 18px;
  }
}

.fv {
  min-height: 100vh;
  /* カスタムプロパティ未対応ブラウザ用のフォールバック */
  min-height: calc(var(--vh, 1vh) * 100);
}

/* ------------------------
Lead
------------------------ */
.leadBox {
  width: 90%;
  margin: 0 auto;
  padding: 56px 0 0;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .leadBox {
    width: 100%;
    padding: 96px 0 0;
    line-height: 1.6em;
  }
}
.leadBox p.lead_txt {
  line-height: 2;
  font-size: 12px;
  text-align: left;
}
@media screen and (min-width: 769px) {
  .leadBox p.lead_txt {
    font-size: 16px;
    text-align: center;
  }
}

/* ------------------------
SERIES
------------------------ */
.series .slidesInner {
  width: 50%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .series .slidesInner {
    width: 50%;
  }
}
.series .txt {
  margin-top: 62%;
}

/* ------------------------
SELECT BUTTON
------------------------ */
.navi {
  width: 70%;
  margin: 0 auto;
  padding: 56px 0;
  line-height: 1.6em;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .navi {
    width: 40%;
    padding: 96px 0;
  }
}

.fd-line {
  border-bottom: 1px solid #86b5e1;
  padding-bottom: 4px;
  color: #86b5e1;
  font-weight: bold;
}

.fd-line + div {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 14px 0 0;
  border-color: #86b5e1 transparent transparent transparent;
  margin-left: 22%;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  position: relative;
  margin-bottom: -15px;
}
@media screen and (max-width: 768px) {
  .fd-line + div {
    margin-top: -5%;
  }
}

.fd-line + div::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 14px 0 0;
  border-color: #fff transparent transparent transparent;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  position: absolute;
  left: -1px;
  top: 0;
}

.not-first .fd-line {
  display: inline-block;
}

.type-box-wrap {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.type-box {
  width: 49%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  padding: 24px 0;
}

.type-box:hover {
  opacity: 0.8;
}

.type-box * {
  color: #fff;
}

.type-box.type01 {
  background: #86b5e1;
}

.type-box.type01:hover {
  background: rgba(134, 181, 225, 0.7);
}

.fs_s {
  font-size: 12px;
}

.fs_m {
  font-size: 14px;
}

.fs_l {
  font-size: 18px;
  letter-spacing: 0.1em;
  padding-left: 2px;
}
@media screen and (min-width: 769px) {
  .fs_l {
    font-size: 24px;
  }
}

.type-box .fs_m::after {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: #fff;
  margin-top: 2px;
  margin-bottom: 7px;
  margin-left: auto;
  margin-right: auto;
}

.type-box .fs_s {
  line-height: 1;
  padding: 6px 0 4px;
}

a {
  text-decoration: none;
}

/* ------------------------
SIZE
------------------------ */
.txt_c {
  text-align: center;
  display: block;
}

.size_pointBox {
  width: 80%;
  margin: 20px auto 40px;
}
@media screen and (min-width: 769px) {
  .size_pointBox {
    margin: 40px auto;
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (max-width: 768px) {
  .leftBox {
    padding-top: 8px;
  }
}
@media screen and (min-width: 769px) {
  .leftBox {
    width: 50%;
    padding-right: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

@media screen and (min-width: 769px) {
  .rightBox {
    width: 50%;
  }
}

@media screen and (min-width: 769px) {
  .staffBox {
    width: 80%;
    margin: 0 auto;
  }
}
.staffBox h4 {
  font-size: 16px;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .staffBox h4 {
    font-size: 20px;
  }
}

ul.styling {
  width: 92%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
  padding-top: 16px;
}
@media screen and (min-width: 769px) {
  ul.styling {
    width: 100%;
    padding-left: -8px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
ul.styling li.styling_li {
  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: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
}
@media screen and (min-width: 769px) {
  ul.styling li.styling_li {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 8px;
    width: 33%;
  }
}
@media screen and (max-width: 768px) {
  ul.styling li.styling_li {
    width: 50%;
    margin: 0 auto;
    padding: 0 1% 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
ul.styling .staff {
  padding-top: 8px;
  text-align: center;
  font-size: 12px;
}

/* ------------------------
MATERIAL
------------------------ */
.box_inner {
  position: relative;
  margin: 2em 0;
  padding: 0.5em 1em;
  border: solid 1px #86b5e1;
  border-radius: 8px;
}

.box_inner .box-title {
  position: absolute;
  display: inline-block;
  top: -10px;
  left: 10px;
  padding: 0 9px;
  line-height: 1;
  font-size: 14px;
  background: #FFF;
}

.box-title {
  color: #86b5e1;
  font-weight: bold;
}

ul.point {
  padding: 15px;
}

ul.point li {
  margin-bottom: 16px;
  padding-bottom: 4px;
  border-bottom: #86b5e1 dotted 1px;
}

ul.point li:last-child {
  margin-bottom: 0;
}

p.d_point_txtBox {
  border: 1px dotted #86b5e1;
  padding: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 90%;
  margin: 0 auto;
  line-height: 1.6em;
}
@media screen and (min-width: 769px) {
  p.d_point_txtBox {
    width: 80%;
    margin: 40px auto;
    font-size: 12px;
  }
}
p.d_point_txtBox span {
  display: block;
  font-weight: bold;
  font-size: 18px;
  color: #86b5e1;
  letter-spacing: 0.1em;
  line-height: 1;
  padding-bottom: 8px;
}

/* ------------------------
LIVE
------------------------ */
.liveBox_bg {
  background-color: rgba(134, 181, 225, 0.2);
  width: 100%;
  margin: 0 auto;
  padding-bottom: 56px;
}
@media screen and (min-width: 769px) {
  .liveBox_bg {
    padding-bottom: 96px;
  }
}

.movie {
  width: 50%;
  margin: 0 auto;
}

/* ------------------------
BUTTON
------------------------ */
.footer_btBox {
  margin: 92px auto 96px;
}
@media screen and (min-width: 769px) {
  .footer_btBox {
    width: 60%;
  }
}

.footer_btBox_mb {
  margin-bottom: 16px;
}
@media screen and (min-width: 769px) {
  .footer_btBox_mb {
    margin-bottom: 16px;
  }
}

/* ------------------------
Footer
------------------------ */
div#footer {
  width: 100%;
  padding: 0 0 10px;
  height: 150px;
  position: relative;
}
div#footer a {
  display: block;
}
@media screen and (min-width: 769px) {
  div#footer a {
    width: 200px;
    height: auto;
    margin: 0 auto 80px;
  }
}
@media screen and (max-width: 768px) {
  div#footer a {
    width: 35%;
    height: auto;
    margin: 0 auto 50px;
  }
}
div#footer div {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
@media screen and (min-width: 769px) {
  div#footer p.logo {
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  div#footer p.logo {
    width: 135px;
    margin: 20px auto 0;
  }
}
div#footer p.logo a {
  display: block;
  width: 100%;
}
div#footer p.copy {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 10px;
  width: 100%;
  text-align: center;
}

#page-top {
  background: rgba(134, 181, 225, 0.7);
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 999;
  border-radius: 50%;
  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;
  width: 50px;
  height: 50px;
}
#page-top a {
  color: #fff;
  text-decoration: none;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  text-align: center;
  font-size: 20px;
}

.arrow_o {
  position: relative;
  display: inline-block;
  padding-left: 12px;
  padding-top: 12px;
  color: #fff;
  text-decoration: none;
}

.arrow_o:before {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -4px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* loading
--------------------------------------*/
#loader-bg {
  position: fixed;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  top: 0px;
  left: 0px;
  background: #FFF;
  z-index: 1;
  z-index: 99999;
}
#loader-bg #loading {
  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;
}
@media screen and (min-width: 769px) {
  #loader-bg #loading {
    width: 40%;
    margin: auto;
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  #loader-bg #loading {
    width: 100%;
    margin: auto;
    height: 100%;
  }
}
@media screen and (min-width: 769px) {
  #loader-bg #loading div {
    width: 20%;
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  #loader-bg #loading div {
    width: 40%;
    margin: auto;
  }
}