@charset "utf-8";
@import "reset.css";
@import url('https://fonts.googleapis.com/css?family=Oswald:400,500');
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed&display=swap');
body {
  font-family: '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  color: #000;
  font-size: 16px;
  height: 100%;
  word-wrap: break-word;
  background-color: rgba(220, 255, 255, 1.0);
  min-width: 1024px;
}
html {
  height: 100%;
}
a {
  color: #333;
}
#wrapper {
  position: relative;
  min-height: 100%;
}
@media (min-width: 1024px) {
  a:hover {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
  }
}
/* 横向き */
@media screen and (orientation: landscape) {
  body {
    min-width: 100%;
  }
}
/* 縦向き */
@media screen and (orientation: portrait) {
  body {
    min-width: 100%;
  }
}
@media (min-width: 768px) {
  br.sp {
    display: none;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
  br.pc {
    display: none;
  }
}
/*---------------------- Loading ------------------------*/
.loading {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 1.0);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
}
.loading img.loadingIcon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -50px;
  margin-left: -50px;
}
/*---------------------- Header ------------------------*/
/* 横向き */
#header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 3vh 3vh 0 4vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 10000;
  width: 100%;
  box-sizing: border-box;
}
#header .logo {
  text-align: center;
}
#header .logo img {
  height: 5vh;
  width: auto;
}
/* 縦向き タブレット */
@media screen and (orientation: portrait) and (min-width: 768px) {
  #header {
    padding: 1.5vh 1.5vh 0 2vh;
  }
  #header .logo img {
    height: 4vh;
  }
}
/* 縦向き スマホ */
@media screen and (orientation: portrait) and (max-width: 767px) {
  #header .logo {
    padding: 7px 0 0 40px;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    height: 50px;
    z-index: 99998;
    background-color: #FFF;
  }
  #header .logo img {
    width: auto;
    height: 35px;
  }
}
/*---------------------- Global Navi Button ------------------------*/
/* 横向き */
#gNaviBtn {
  display: none;
}
/* 縦向き スマホ */
@media screen and (orientation: portrait) and (max-width: 767px) {
  #gNaviBtn {
    display: block;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 99999;
    background-color: #dc0032;
    text-align: center;
    position: fixed;
    transition: all 0.5s ease-in-out 0.0s;
  }
  #gNaviBtn span {
    display: block;
    position: absolute;
    width: 30px;
    border-bottom: solid 2px #FFFFFF;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 10px;
    letter-spacing: normal;
  }
  #gNaviBtn span:nth-child(1) {
    top: 14px;
  }
  #gNaviBtn span:nth-child(2) {
    top: 24px;
  }
  #gNaviBtn span:nth-child(3) {
    top: 34px;
  }
  /* 最初のspanをマイナス45度に */
  #gNaviBtn.active span:nth-child(1) {
    top: 24px;
    left: 10px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  /* 2番目と3番目のspanを45度に */
  #gNaviBtn.active span:nth-child(2), #gNaviBtn.active span:nth-child(3) {
    top: 24px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
/*---------------------- Global Navi ------------------------*/
/* 横向き */
#gNaviMenu li a {
  display: inline-block;
  padding: 1.5vh 0;
  font-size: 1.5vh;
  width: 18vh;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  font-family: 'Roboto Condensed', sans-serif;
  background-color: rgba(220, 0, 50, 1.0);
  color: #FFFFFF;
  letter-spacing: 0.05em;
}
/* 縦向き タブレット */
@media screen and (orientation: portrait) and (min-width: 768px) {
  #gNaviMenu li a {
    padding: 1.3vh 0;
    font-size: 1.3vh;
    width: 16vh;
  }
}
/* 横向き スマホ */
@media screen and (orientation: landscape) and (max-width: 767px) {
  #gNaviMenu li a {
    width: 32vh;
  }
}
@media (min-width: 1025px) {
  #gNaviMenu li a:hover {
    background-color: rgba(220, 0, 50, 0.6);
  }
}
/* 縦向き スマホ */
@media screen and (orientation: portrait) and (max-width: 767px) {
  #gNaviMenu {
    display: none;
  }
}
/*---------------------- Contents ------------------------*/
/* 縦向き スマホ */
@media screen and (orientation: portrait) and (max-width: 767px) {
  #contents {
    padding: 50px 0 0;
  }
}
/*---------------------- Footer ------------------------*/
#footer {
  position: fixed;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 0.05em;
  color: #666666;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 30px;
  text-align: right;
  font-size: 1.2vh;
  z-index: 10000;
}
/* 縦向き タブレット */
@media screen and (orientation: portrait) and (min-width: 768px) {
  #footer {
    text-align: center;
    padding: 30px 0 30px;
    font-size: 0.8em;
  }
}
/* 横向き スマホ */
@media screen and (orientation: landscape) and (max-width: 767px) {
  #footer {
    padding: 10px;
    z-index: 99;
  }
}
/* 縦向き スマホ */
@media screen and (orientation: portrait) and (max-width: 767px) {
  #footer {
    text-align: center;
    padding: 10px 0 10px;
    font-size: 0.8em;
    z-index: 9998;
  }
}