@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Kite+One&display=swap');

/*================================================
 *  CSSリセット
 ================================================*/
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,
main,
menu,
nav.gnav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-weight: normal;
}

body {
  line-height: 1
}

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

ul {
  list-style: none
}

blockquote,
q {
  quotes: none
}

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

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

del {
  text-decoration: line-through
}

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

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

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

input,
select {
  vertical-align: middle
}

/*================================================
 *  一般・共通設定
 ================================================*/
body {
  font-size: 15px;
  font-family: 'Noto Sans Japanese', "メイリオ", Meiryo, sans-serif;
  line-height: 1.6;
  letter-spacing: .05em;
  -webkit-text-size-adjust: 100%;
  background: #fff;
  color: #333;
}

html {
  visibility: hidden;
}

html.wf-active {
  visibility: visible;
}

#contents {
  max-width: 980px;
  margin: 0 auto;
}

header+#contents {
  padding-top: 50px;
}

.inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

a {
  color: #333;
  text-decoration: none;
}

a:hover {
  color: #403732;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a.underline {
  text-decoration: underline;
}

h1 {
  font-size: 28px;
}

h2 {
  margin: 30px auto;
  font-size: 45px;
  color: #084795;
  letter-spacing: .1em;
  font-family: 'Kite One', sans-serif;
  text-transform: uppercase;
  line-height: 1;
}

h2 span {
  position: relative;
  font-size: 12px;
  font-family: 'Noto Sans Japanese', "メイリオ", Meiryo, sans-serif;
}

h3 {
  margin-bottom: 1em;
  font-size: 21px;
  color: #084795;
  font-style: normal;
  font-style: italic;
}

h4 {
  margin-top: 0.25em;
  margin-bottom: 0.8em;
  font-size: 17px;
  background-color: #084795;
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;

}

h5 {
  margin-bottom: 0.25em;
  font-size: 19px;
  color: #084795;
  font-style: italic;
  border-left: 8px solid #084795;
  padding-left: 7px;
}

h6 {
  margin-bottom: 0.25em;
  padding-left: 5px;
  font-size: 16px;
  font-weight: bold;
}

p {
  margin: 0 0 1em 0;
}

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

em {
  font-weight: bold;
}

small {
  font-size: smaller;
}

strong {
  font-weight: bold;
}

pre {
  margin: 1em 0;
  padding: 1em;
}

blockquote {
  margin-bottom: 1em;
  padding: 1em;
  border: 1px dotted #ddd;
  border-left: 5px solid #ddd;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

li {
  margin-left: 0;
}

@media screen and (max-width:768px) {

  *,
  *:before,
  *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
  }

  #contents {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .inner {
    padding-left: 15px;
    padding-right: 15px;
  }

  h2 {
    font-size: 30px;
  }
}

/*================================================
 *  汎用クラス
 ================================================*/
/* 中央寄せ */
.ac {
  text-align: center;
}

/* 左寄せ */
.al {
  text-align: left;
}

/* 右寄せ */
.ar {
  text-align: right;
}

/* ボタン */
.btnArea {
  margin: 30px 0 0;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  z-index: 9;
}

.btnArea a {
  padding: 10px 80px;
  position: relative;
  color: #084795;
  border: 1px solid #084795;
  display: inline-block;
  line-height: 1.2;
}

.btnArea a span {
  font-size: 11px;
}

.btnArea a:hover {
  color: #fff;
}

.btnArea a:after {
  content: "";
  height: 100%;
  left: 0;
  top: 0;
  width: 0px;
  position: absolute;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  z-index: -1;
}

.btnArea a:hover:after {
  width: 100%;
  background: #084795;
}

/* 白ボタン */
.btnArea.white a {
  padding: 20px 100px;
  display: inline-block;
  background-color: #173d6b;
  color: #fff;
  border: 1px solid #fff;
  font-size: 26px;
  font-family: 'Kite One', sans-serif;
  font-weight: bold;
  letter-spacing: .2em;
}

.btnArea.white a span {
  font-size: 13px;
  letter-spacing: .15em;
  font-family: 'Noto Sans Japanese', "メイリオ", Meiryo, sans-serif;
}

.btnArea.white a:hover {
  background-color: #fff;
  color: #173d6b;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* ピンクボタン */
.btnArea.pink a {
  color: #e25151;
  border: 2px solid #e25151;
  padding: 20px 70px;
  font-size: 23px;
  font-family: 'Kite One', sans-serif;
  font-weight: bold;
  letter-spacing: .2em;
  line-height: 1.5;
}

.btnArea.pink a span {
  font-size: 23px;
  letter-spacing: .15em;
  /*font-family: 'Noto Sans Japanese',"メイリオ",Meiryo,sans-serif;*/
  font-family: fot-tsukuardgothic-std, sans-serif;
}

.btnArea.pink a:hover {
  color: #fff;
}

.btnArea.pink a:after {
  content: "";
  height: 100%;
  left: 0;
  top: 0;
  width: 0px;
  position: absolute;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  z-index: -1;
}

.btnArea.pink a:hover:after {
  width: 100%;
  background: #e25151;
}

/* ノーマルボタン */
.btnArea.normal {
  margin-top: 60px;
}

.btnArea.normal a {
  background-color: #084795;
  color: #fff;
}

.btnArea.normal a:hover {
  opacity: .7;
}

@media screen and (max-width:768px) {
  .btnArea a {
    padding: 10px 50px;
  }

  .btnArea.white a {
    width: 100%;
    padding: 20px 30px;
  }

  .btnArea.pink {
    margin-bottom: 20px;
  }

  .btnArea.pink a {
    padding: 15px 45px;
    font-size: 21px;
    letter-spacing: 0;
  }

  .btnArea.pink a span {
    font-size: 18px;
  }
}


/*================================================
 *  ヘッダー
 ================================================*/
header {
  position: fixed;
  width: 100%;
  z-index: 100;
  height: 90px;
  padding: 15px 3% 0;
  box-sizing: border-box;
}

header h1 {
  float: left;
  font-size: 21px;
  position: relative;
  letter-spacing: .2em;
}

header h1 a {
  color: #fff;
}

header h1 a:hover {
  opacity: .7;
  color: #fff;
}

header h1 img {
  vertical-align: middle;
  margin-right: 15px;
}

header.changeNav {
  background: #fff;
  padding-top: 10px;
  /*border-bottom: 1px solid #084795;*/
  box-shadow: 3px 3px 10px rgba(74, 74, 74, 0.2);
}

@media screen and (max-width:768px) {
  header {
    height: 60px;
    padding: 10px 0 0 0;
  }

  header .inner {
    width: 100%;
  }

  header h1 {
    padding: 0 0 0 10px;
  }

  header h1 img.logo {
    width: 15%;
  }

  header h1 img.company {
    width: 40%;
  }
}

/*================================================
 *  グローバルナビゲーション
 ================================================*/
/* PC用 */
@media print,
screen and (min-width:769px) {
  nav.gnav:after {
    content: '';
    display: block;
    clear: both;
  }

  nav.gnav {
    float: right;
  }

  /* 共通 */
  nav.gnav ul {
    margin: 0;
    padding: 0;
  }

  nav.gnav ul li {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  nav.gnav ul li a {
    display: block;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 0.3em;
    color: #fff;
  }

  nav.gnav.text-dark ul li a {
    color: #232323;
  }

  nav.gnav ul li:hover>a {
    opacity: .7;
  }

  header.changeNav nav.gnav ul li a {
    color: #222;
  }

  /* 1段目 */
  nav.gnav>ul>li {
    position: relative;
    float: left;
    margin: 20px 15px;
    font-family: 'Kite One', sans-serif;
    padding: 0;
    text-align: center;
    list-style: none;
    text-transform: uppercase;
  }

  nav.gnav>ul>li a span {
    font-size: 12px;
    font-family: 'Noto Sans Japanese', "メイリオ", Meiryo, sans-serif;
  }

  /* 2段目 */
  nav.gnav ul li ul {
    position: absolute;
    z-index: 3;
    top: 100%;
    left: 0;
    width: 180px;
    margin: 0;
    padding: 0;
  }

  nav.gnav ul li ul li {
    overflow: hidden;
    height: 0;
    color: #fff;
    transition: .2s;
  }

  nav.gnav ul li ul li a {
    padding: 0 15px;
    text-align: left;
    background: #4a342c;
    font-weight: normal;
  }

  nav.gnav ul li ul li a:hover {
    background: #291d18;
  }

  nav.gnav ul li:hover>ul>li {
    overflow: visible;
    height: 40px;
    line-height: 40px;
    border-bottom: 1px solid #555;
  }

  nav.gnav ul li:hover ul li:last-child {
    border-bottom: none;
  }

  nav.gnav>ul>li:last-child>ul {
    left: -60px;
  }

  nav.gnav ul li ul li ul:before {
    position: absolute;
    content: "";
    top: 17.5px;
    left: -20px;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-left-color: #fff;
  }

  nav.gnav>ul>li:last-child ul li ul:before {
    position: absolute;
    content: "";
    top: 17.5px;
    left: 200%;
    margin-left: -20px;
    border: 5px solid transparent;
    border-right-color: #fff;
  }

}

/* タブレット・スマートフォン用 */
@media screen and (max-width:768px) {

  /*ハンバーガーメニュー*/
  nav.global-nav {
    position: fixed;
    right: -320px;
    /* これで隠れる */
    top: 0;
    width: 270px;
    /* スマホに収まるくらい */
    height: 100vh;
    padding-top: 40px;
    background: #084795;
    transition: all .2s ease-out;
    z-index: 200;
    overflow-y: auto;
    /* メニューが多くなったらスクロールできるように */
    padding: 60px 40px 40px 40px;
  }

  nav.global-nav li {
    list-style: none;
    display: block;
    text-align: left;
    margin-bottom: 15px;
    padding: 5px 0;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.6);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-family: 'Kite One', sans-serif;
    font-size: 14px;
  }

  nav.global-nav li a {
    color: #fff;
  }

  nav.global-nav li span {
    font-size: 10px;
    font-family: 'Noto Sans Japanese', 'Open Sans', sans-serif, Arial, Helvetica;
  }

  .hamburger {
    position: absolute;
    right: 0;
    top: 11px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 300;
  }

  .global-nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .global-nav__item a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    line-height: 1.3;
  }

  .global-nav__item a:hover {
    background-color: #eee;
  }

  .hamburger__line {
    position: absolute;
    left: -17px;
    width: 40px;
    height: 2px;
    background-color: #377ad0;
    transition: all .2s ease-out;
  }

  /*header.changeNav .hamburger__line {
	  	background-color: #377ad0;
	  }*/
  .hamburger__line--1 {
    top: 11px;
  }

  .hamburger__line--2 {
    top: 26px;
  }

  .hamburger__line--3 {
    top: 21px;
  }

  .black-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }

  /* 表示された時用のCSS */
  .nav-open .global-nav {
    right: 0;
  }

  .nav-open .black-bg {
    opacity: .8;
    visibility: visible;
  }

  .nav-open .hamburger__line--1 {
    transform: rotate(45deg);
    top: 20px;
  }

  .nav-open .hamburger__line--2 {
    width: 0;
    left: 50%;
  }

  .nav-open .hamburger__line--3 {
    transform: rotate(-45deg);
    top: 20px;
  }
}


/*================================================
 *  コンテンツ
 ================================================*/
section {
  padding-bottom: 2.5rem;
  position: relative;
}

section.section {
  padding-top: 6rem;
}

@media screen and (max-width:768px) {
  section.section {
    padding-top: 2rem;
  }
}

/*================================================
 *  connect
 ================================================*/
#connect {
  padding-top: 3rem;
}

/* 外国人採用サポートセミナー */
#connect div {
  max-width: 550px;
  margin: 0 auto;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}

/* コネクト */
#connect .linkBox {
  max-width: 700px;
  margin: 0 auto;
  border: 2px solid #1b4890;
  border-radius: 20px;
}

#connect .linkBox .linkBox_btn {
  width: 30%;
  background-color: #1b4890;
  border-radius: 15px 0 0 15px;
  text-align: center;
  box-sizing: border-box;
  padding: 20px 10px;
}

#connect .linkBox .linkBox_btn a {
  background-color: #00acbb;
  border: 1px solid #00acbb;
  color: #fff;
  border-radius: 30px;
  padding: 5px 20px;
  display: inline-block;
}

#connect .linkBox .linkBox_btn a:hover {
  background-color: #fff;
  color: #00acbb;
}

#connect .linkBox .linkBox_txt {
  width: 70%;
  color: #1b4890;
  padding: 20px 35px;
  box-sizing: border-box;
  font-size: 16px;
}

@media screen and (max-width:768px) {
  #connect .linkBox {
    margin: 0 20px;
  }

  #connect .linkBox .linkBox_btn {
    width: 100%;
    border-radius: 15px 15px 0 0;
  }

  #connect .linkBox .linkBox_btn img {
    width: 65%;
  }

  #connect .linkBox .linkBox_btn a {
    padding: 10px 40px;
    font-size: 17px;
  }

  #connect .linkBox .linkBox_txt {
    width: 100%;
    font-size: 15px;
    padding: 20px 15px;
  }
}



/*================================================
 *  catch
 ================================================*/
#catch {
  position: relative;
}

#catch:before {
  position: absolute;
  content: "";
  width: 37%;
  height: 150%;
  background: rgba(157, 190, 230, 0.1);
  top: 0;
  left: 0;
}

#catch .catchcopy {
  font-size: 50px;
  font-family: 'Kite One', sans-serif;
  color: #084795;
  padding-bottom: 40px;
  text-align: center;
}

.vertical {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'rockness';
  font-size: 100px;
  height: 1000px;
  color: rgba(8, 71, 149, 0.4);
}

#catch .catch-detail {
  text-align: center;
  line-height: 2;
  font-size: 16px;
}

@media screen and (max-width:768px) {
  #catch .catchcopy {
    font-size: 43px;
    padding-bottom: 20px;
    font-family: 'rockness';
    font-weight: bold;
    white-space: nowrap;
  }

  .vertical {
    display: none;
  }

  #catch:before {
    height: 137%;
  }

  #catch .catch-detail {
    line-height: 1.7;
  }

}



/*================================================
 *  value
 ================================================*/
#value {
  position: relative;
}

#value h2 {
  padding-bottom: 30px;
}

#value .serviceList ul {
  overflow: hidden;
}

#value .serviceList ul li {
  width: 19.5%;
  list-style: none;
  margin-bottom: 15px;
  position: relative;
}

#value .serviceList ul li p {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 100%;
  text-align: center;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-style: normal;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px 0;
  font-size: 17px;
  margin-bottom: 0;
}

#value .serviceList ul li a:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width:768px) {
  #value h2 {
    padding-bottom: 10px;
  }

  #value .serviceList {
    margin: 0px 0rem 2rem;
  }

  #value .serviceList ul li {
    width: 31%;
    margin-bottom: 10px;
  }

  #value .serviceList ul li p {
    font-size: 10px;
    padding: 5px 0;
    letter-spacing: -.1em;
  }

}



/*================================================
 *  benefit
 ================================================*/
#benefit {
  position: relative;
}

#benefit:before {
  position: absolute;
  content: "";
  top: -10%;
  right: 0;
  left: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 240vh 100vw;
  border-color: transparent transparent rgba(157, 190, 230, 0.1) transparent;
}

#benefit .flex {
  padding: 15px 0;
}

#benefit .number {
  font-size: 45px;
  color: rgba(8, 71, 149, 0.4);
  letter-spacing: .1em;
  font-family: 'Kite One', sans-serif;
  text-align: center;
  font-family: 'rockness';
  margin-bottom: .2em;
  position: relative;
  color: #084795;
}

#benefit .number:after {
  position: absolute;
  content: "";
  bottom: 12px;
  left: 50%;
  margin-left: -200px;
  width: 400px;
  height: 1px;
  background: #084795;
}

#benefit .training-txt {
  max-width: 180px;
  margin: 0 auto;
  text-align: left;
  line-height: 2;
}

@media screen and (max-width:768px) {
  #benefit .flex .ac-spal {
    padding: 0 20px 0px 20px;
  }

  #benefit .number {
    font-size: 33px;
    text-align: left;
    margin-bottom: .5em;
    font-weight: bold;
  }

  #benefit .number:after {
    bottom: 8px;
    left: 0;
    margin-left: 0;
    width: 100%;
  }

  #benefit:before {
    border-width: 0 0 370vh 100vw;
  }

  #benefit .training-txt {
    max-width: 100%;
  }

}


/*================================================
 *  join
 ================================================*/
#join {
  position: relative;
  background-color: #173d6b;
  padding: 2rem 0 4rem;
  color: #fff;
}

#join ul li {
  line-height: 2;
  list-style: none;
  position: relative;
  padding-left: 23px;
}

#join ul li:before {
  position: absolute;
  top: 2px;
  left: 0;
  content: url(../images/icn-check.png);
}

@media screen and (max-width:768px) {
  #join {
    padding-top: 2rem;
  }

  #join ul {
    padding: 10px 30px 50px 30px
  }

  #join ul li {
    padding-left: 0;
  }

  #join ul li:before {
    left: -20px;
  }

}



/*================================================
 * 下層ページのタイトル
 ================================================*/
.mainVis {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.mainVis .mainVis_ttl {
  position: absolute;
  font-size: 60px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-style: italic;
  color: #084795;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -55%);
  line-height: 1.5;
  text-align: center;
  letter-spacing: .05em;
  width: 100%;
}

.mainVis .mainVis_ttl span {
  font-size: 40px;
  font-family: 'rockness';
  position: relative;
  letter-spacing: 0.1em;
}

.mainVis .mainVis_ttl span:before {
  position: absolute;
  content: "";
  width: 80px;
  height: 2px;
  background: #084795;
  top: -15px;
  left: 50%;
  margin-left: -40px;
}

@media screen and (max-width:768px) {
  .mainVis {
    height: 250px;
  }

  .mainVis .mainVis_ttl {
    font-size: 30px;
    width: 100%;
  }

  .mainVis .mainVis_ttl span {
    font-size: 25px;
  }

  .mainVis .mainVis_ttl span:before {
    width: 60px;
    top: -5px;
    margin-left: -30px;
  }
}



/*================================================
 *  フッター
 ================================================*/
footer {
  padding: 60px 20px;
  box-sizing: border-box;
  background-color: #eaeff7;
  position: relative;
}

footer.underpage {
  padding: 20px 10px 15px;
  background: none;
  background: #eaeff7;
}

.footer-inner {
  max-width: 1150px;
  margin: 0 auto;
}

.site-map {
  padding-bottom: 10px;
}

.footer_logo {
  width: 150px;
}

.footer_menu {
  width: 50%;
}

.menuLeft,
.menuRight {
  width: 50%;
}

.footer_menu li {
  list-style: none;
  margin: 8px 0px;
  font-size: 13px;
}

.footer_menu li sup img {
  width: 12px;
  vertical-align: top;
  padding-left: 3px;
}

.footer_menu li a {
  color: #111;
}

.footer_menu li a:hover {
  opacity: 0.7;
}

.footer_p {
  width: 100px;
}

.copyright {
  border-top: 1px solid #aeb6c3;
  padding-top: 30px;
  font-size: 12px;
  color: #333;
  text-align: right;
}

footer.underpage .copyright {
  border-top: 1px solid #aeb6c3;
  padding-top: 15px;
}

@media screen and (max-width:768px) {
  footer {
    padding: 50px 10px;
  }

  .footer_logo {
    width: 100%;
    margin-bottom: 25px;
  }

  .footer_logo img {
    width: 150px;
  }

  .footer_menu,
  .menuLeft,
  .menuRight {
    width: 100%;
  }


  .site-map {
    text-align: center;
    padding-bottom: 0;
  }

  .site-map ul li {
    margin: 8px 20px 0;
    display: block;
    text-align: left;
    border-bottom: 1px dotted #a4b3ca;
    padding: 0 0 8px 20px;
    position: relative;
  }

  .site-map ul li::before {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f0da";
    font-weight: 900;
    top: 0;
    left: 5px;
    color: #094795;
  }

  footer .site-map ul li sup img {
    width: 12px;
  }

  .site-map ul li img {
    width: 50%;
    margin: 0 auto;
  }

  .footer_p {
    position: absolute;
    bottom: 30px;
  }

  .copyright,
  footer.underpage .copyright {
    text-align: center;
    padding: 25px 0 5px;
    border-top: none;
    font-size: 10px;
  }

}

/* ==================================================
	preloader
====================================================*/

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 1040;
}

#status {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  background-image: url(../images/loader.gif);
  background-repeat: no-repeat;
  background-position: center;
  margin: -100px 0 0 -100px;
}

/*================================================
 *  ページトップへの戻り
 ================================================*/
#pagetop {
  position: fixed;
  right: 20px;
  bottom: 15px;
  cursor: pointer;
}

.arrow-up {
  width: 25px;
  height: 25px;
  border: 1px solid;
  border-color: #084795 #084795 transparent transparent;
  transform: rotate(-45deg);
}