@charset "utf-8";

/***************************************************
	common.css
	共通レイアウトスタイル定義
***************************************************/

@import url(//fonts.googleapis.com/earlyaccess/notosansjp.css);

/* Base
------------------------------------------------------------ */
html {
  font-size: 62.5%;
}
body {
  line-height: 1.7;
  color: #1a1311;
  margin: 0;
  min-width: 1280px;
  background: #ffffff;
  font-family: "Noto Sans JP", "Meiryo UI", "メイリオ", "ヒラギノ角ゴシック",
    "Hiragino Sans", sans-serif;
}
@media only screen and (max-width: 767px) {
  body {
    min-width: inherit;
  }
}

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

.innerBox {
  clear: both;
  max-width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .innerBox {
    padding: 0 4%;
  }
}

/* Link
------------------------------------------------------------ */
a {
  outline: none;
}
a:link {
  color: #1e90ff;
  text-decoration: underline;
}
a:visited {
  color: #1e90ff;
  text-decoration: underline;
}
a:hover {
  color: #1e90ff;
  text-decoration: none;
}

a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

/* wrapper
-------------------------------------------------------------------*/
#wrapper {
  clear: both;
}

/* header
-------------------------------------------------------------------*/
#header {
  clear: both;
  padding: 25px 35px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #header {
    padding: 15px;
  }
}
#header .logo {
  float: left;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  #header .logo {
    width: 180px;
  }
}
#header .box01 {
}
@media only screen and (min-width: 768px) {
  #header .gnaviBox {
    float: left;
  }
  #header .gnaviList {
    margin: 0 0 0 25px;
    padding: 0;
    border-bottom: 1px solid #727171;
  }
  #header .gnaviList > li {
    float: left;
    margin: 0 25px;
    padding: 0;
    list-style-type: none;
    font-size: 1.6rem;
    line-height: 1;
  }
  #header .gnaviList > li > a {
    color: #727171;
    text-decoration: none;
    display: block;
    padding: 10px 25px;
    position: relative;
  }
  #header .gnaviList > li > a:after {
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #727171;
    visibility: hidden;
    opacity: 0;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.4s;
  }

  #header .gnaviList > li > a:hover::after {
    visibility: visible;
    opacity: 1;
    transform: scale(1, 1);
  }

  body#news #header .gnaviList > li.news > a:after,
  body#about #header .gnaviList > li.about > a:after,
  body#group #header .gnaviList > li.group > a:after,
  body#recruit #header .gnaviList > li.recruit > a:after,
  body#contact #header .gnaviList > li.contact > a:after {
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #727171;
    visibility: visible;
    opacity: 1;
    transform: scale(1, 1);
  }

  #header .snsListBox {
    float: right;
  }
  #header .snsListBox ul {
    margin: 0;
    padding: 0;
  }
  #header .snsListBox ul li {
    margin: 0 0 0 15px;
    padding: 0;
    list-style-type: none;
    float: left;
  }
  #header .snsListBox02 {
    display: none;
  }
}

#menuBtnOpen {
  display: none;
}
#menuBtnClose {
  display: none;
}
@media only screen and (max-width: 767px) {
  #menuBtnOpen {
    display: block;
    float: right;
    /*position: fixed;
		top: 15px;
		right: 10px;*/
    margin: 0 0 0 10px;
    text-align: center;
    padding: 0 10px;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 40px;
    background: #00abe3;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    z-index: 1000;
  }
  #menuBtnClose {
    float: right;
    display: block;
    text-align: center;
    margin: 5px 0 20px 0;
    padding: 15px 20px;
    color: #00abe3;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1;
    background: #ffffff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
  }
  #menuBox {
    position: fixed;
    top: 0;
    right: -275px;
    width: 275px;
    height: 100%;
    color: #ffffff;
    padding: 10px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    background: #00abe3;
    overflow-x: hidden;
    z-index: 3000;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  #menuBox.open {
    -webkit-transform: translate3d(-275px, 0, 0);
    transform: translate3d(-275px, 0, 0);
  }
  #overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.3);
  }
  #header .gnaviList {
    clear: both;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #ffffff;
  }
  #header .gnaviList > li {
    margin: 0;
    padding: 0;
    list-style-type: none;
    border-top: 1px solid #ffffff;
  }
  #header .gnaviList > li a {
    display: block;
    text-align: center;
    font-size: 1.6rem;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 0;
  }
  #header .snsListBox {
    display: none;
  }
  #header .snsListBox02 {
  }
  #header .snsListBox02 ul {
    margin: 30px 0 0 0;
    padding: 0;
    text-align: center;
  }
  #header .snsListBox02 ul li {
    margin: 0 7px;
    padding: 0;
    list-style-type: none;
    display: inline-block;
  }
}

/* main
-------------------------------------------------------------------*/
#main {
  display: block;
  clear: both;
  font-size: 1.6rem;
  padding: 0 0 180px 0;
}
@media only screen and (max-width: 767px) {
  #main {
    padding-bottom: 90px;
  }
}

/* ttl */
.pageHeadBox {
  clear: both;
  margin: 100px 0 0 0;
}
@media only screen and (max-width: 767px) {
  .pageHeadBox {
    margin-top: 50px;
  }
}
.pageHeadBox .eng {
  color: #dcdddd;
  font-size: 15.3rem;
  line-height: 1;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .pageHeadBox .eng {
    font-size: 4rem;
  }
}
.pageHeadBox .jp {
  text-align: center;
  font-size: 3.8rem;
  line-height: 1;
  font-weight: bold;
  margin: -0.8em 0 0 0;
}
@media only screen and (max-width: 767px) {
  .pageHeadBox .jp {
    font-size: 2rem;
  }
}

.headerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .headerInner {
    position: relative;
  }
  #menuBtnOpen {
    position: absolute;
    right: 0px;
  }
}

/* footer
-------------------------------------------------------------------*/
#footer {
  clear: both;
  margin: 0;
  padding: 60px 0;
  text-align: center;
  color: #ffffff;
  font-size: 1.6rem;
  background: #00abe3 url(../img/common/footer_bg.png) center 0 no-repeat;
  background-size: 100% auto;
}
#footer a {
  color: inherit;
  text-decoration: none;
}
#footer .logo {
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #footer .logo {
    width: 360px;
  }
}
#footer .naviList {
  margin: 75px 0 0 0;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  #footer .naviList {
    margin-top: 30px;
  }
}
#footer .naviList > li {
  display: inline-block;
  margin: 0 35px;
}
@media only screen and (max-width: 767px) {
  #footer .naviList > li {
    margin: 5px 15px;
  }
}
#footer .naviList > li a:hover {
  color: #47b6ed;
}
#footer .snsList {
  margin: 75px 0 0 0;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  #footer .snsList {
    margin-top: 30px;
  }
}
#footer .snsList > li {
  display: inline-block;
  margin: 0 7px;
}
#footer .cr {
  margin: 75px 0 0 0;
}
@media only screen and (max-width: 767px) {
  #footer .cr {
    margin-top: 30px;
  }
}

/* back */
#back_to_top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  z-index: 999;
}
@media (max-width: 780px) {
  #back_to_top {
    width: 30px;
    height: 30px;
    right: 5px;
    bottom: 20px;
  }
}
#back_to_top button {
  height: 100%;
  width: 100%;
  line-height: 100%;
  text-align: center;
  background: transparent;
  display: block;
  border: none;
  padding: 0;
  outline: 0;
  opacity: 0.5;
}
#back_to_top button:hover {
  opacity: 1;
}
#back_to_top img {
  max-width: 100%;
}

/* facebook出し分け */
.fbBtn,
.fbBtn_footer {
  width: 40px;
  height: 40px;
  display: block;
  position: relative;
}

.SNSbaloonWrap,
.footSNSbaloonWrap {
  position: absolute;
  opacity: 0;
  transition: all 0.4s;
  z-index: 200;
}
.SNSbaloonWrap {
  top: calc(100% + 30px);
  right: -10px;
  opacity: 0;
  display: none;
}
.footSNSbaloonWrap {
  bottom: calc(100% + 20px);
  right: -15px;
  opacity: 0;
  display: none;
}

.SNSbaloonWrap.openSNS,
.footSNSbaloonWrap.openSNS {
  display: block;
  opacity: 1;
  animation-duration: 0.5s;
  animation-name: fade-in;
  -moz-animation-duration: 0.5s;
  -moz-animation-name: fade-in;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-name: fade-in;
}
.SNSbaloonWrap.closeSNS,
.footSNSbaloonWrap.closeSNS {
  opacity: 0;
  display: none;
}
@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}

@-moz-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}

@-webkit-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}

.SNSbaloon {
  padding: 10px;
  text-align: center;
  width: 160px;
  border-radius: 10px;
  background: #00abe3;
  box-sizing: border-box;
  position: relative;
}
.SNSbaloon:before {
  content: "";
  margin: auto;
  height: 0;
  width: 0;
  border-width: 15px;
  border-style: solid;
  border-color: transparent;
  border-bottom-color: #00abe3;
  position: absolute;
  left: auto;
  right: 20px;
  bottom: 100%;
  display: block;
}

.SNSbaloon .snsBtn a,
.footSNSbaloon .snsBtn a {
  font-size: 1.6rem;
  color: #00abe3 !important;
  text-decoration: none;
  box-shadow: 0px -2px 0px 1px #89c3eb inset;
  border-radius: 5px;
  background: #ffffff;
  display: block;
}

/* footer */
.fbBtn_footer span img:hover {
  opacity: 0.6;
}
.footSNSbaloon {
  padding: 10px;
  text-align: center;
  width: 160px;
  border-radius: 10px;
  background: #a0d8ef;
  box-sizing: border-box;
  position: relative;
}
.footSNSbaloon:before {
  content: "";
  margin: auto;
  height: 0;
  width: 0;
  border-width: 15px;
  border-style: solid;
  border-color: transparent;
  border-top-color: #a0d8ef;
  position: absolute;
  top: 100%;
  left: auto;
  right: 20px;
}

.fl {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .SNSbaloon {
    background: #a0d8ef;
  }
  .SNSbaloon:before {
    border-bottom-color: #a0d8ef;
  }

  .SNSbaloon .snsBtn a {
    background: #ffffff;
  }
}

/* 調整用
---------------------------------------------------------------------------- */
.mt0 {
  margin-top: 0 !important;
}
.mt5 {
  margin-top: 5px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mt15 {
  margin-top: 15px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mt30 {
  margin-top: 30px !important;
}
.mt35 {
  margin-top: 35px !important;
}
.mt40 {
  margin-top: 40px !important;
}
.mt50 {
  margin-top: 50px !important;
}
.mt100 {
  margin-top: 100px !important;
}
.mr0 {
  margin-right: 0 !important;
}
.mr5 {
  margin-right: 5px !important;
}
.mr10 {
  margin-right: 10px !important;
}
.mr15 {
  margin-right: 15px !important;
}
.mr20 {
  margin-right: 20px !important;
}
.mr25 {
  margin-right: 25px !important;
}
.mb0 {
  margin-bottom: 0 !important;
}
.mb5 {
  margin-bottom: 5px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb12 {
  margin-bottom: 12px !important;
}
.mb15 {
  margin-bottom: 15px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb25 {
  margin-bottom: 25px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb35 {
  margin-bottom: 35px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.mb60 {
  margin-bottom: 60px !important;
}
.mb80 {
  margin-bottom: 80px !important;
}
.ml0 {
  margin-left: 0 !important;
}
.ml5 {
  margin-left: 5px !important;
}
.ml10 {
  margin-left: 10px !important;
}
.ml15 {
  margin-left: 15px !important;
}
.ml20 {
  margin-left: 20px !important;
}
.ml25 {
  margin-left: 25px !important;
}
.ml30 {
  margin-left: 30px !important;
}

.clearB {
  clear: both !important;
}
.floatR {
  float: right !important;
}
.floatL {
  float: left !important;
}

.taCenter {
  text-align: center !important;
}
.taRight {
  text-align: right !important;
}
.taLeft {
  text-align: left !important;
}
.vaMiddle {
  vertical-align: middle !important;
}
.fwBold {
  font-weight: bold !important;
}

.fs11 {
  font-size: 11px !important;
}
.fs12 {
  font-size: 12px !important;
}
.fs14 {
  font-size: 14px !important;
}
.fs16 {
  font-size: 16px !important;
}
.fs20 {
  font-size: 20px !important;
}

.w100per {
  width: 100%;
}

.minIndent {
  padding-left: 1em;
  text-indent: -1em;
}
.notFloat {
  overflow: hidden;
  _zoom: 1;
}

/* clearfix */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.clearfix {
  zoom: 1;
}

.show960,
.show480,
.show780 {
  display: none;
}
@media (max-width: 480px) {
  .hdn480 {
    display: none;
  }
  .show480 {
    display: inherit;
  }
}
