@charset "UTF-8";
/* Scss Document */
/* mixin */
/*fontawsomeで、angleに丸い背景じゃないと、微妙に矢印が大きいためchevronは使わないのです*/
.btn_blk {
  background-color: #FFF;
  position: relative;
  border: solid 1px #000;
  text-align: center;
  font-weight: bold;
  display: block;
  padding: 0 20px;
}

.btn_blk label {
  position: relative;
  color: #FFF;
  line-height: 2;
  -webkit-transition: color ease 1s;
  transition: color ease 1s;
  pointer-events: none;
}

.btn_blk i {
  margin-left: 10px;
}

.btn_blk:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #000;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

@media screen and (min-width: 769px) {
  .btn_blk:hover {
    cursor: pointer;
  }
  .btn_blk:hover label {
    color: #000;
    cursor: pointer;
  }
  .btn_blk:hover:before {
    width: 0;
    opacity: 0;
  }
}

/*
一般設定
 */
html {
  font-size: 62.5%;
}

@media screen and (max-width: 480px) {
  html {
    font-size: 60%;
  }
}

@media screen and (max-width: 360px) {
  html {
    font-size: 54%;
  }
}

body {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.1em;
}

body.preload * {
  -webkit-transition: none !important;
  transition: none !important;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
  font-weight: bold;
}

p {
  font-weight: bold;
  line-height: 2;
}

h3 {
  font-family: "Jost*" , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , Osaka , sans-serif;
  font-weight: 500;
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1.1;
  letter-spacing: 0.5em;
  text-align: center;
}

h3 + span {
  text-align: center;
  display: block;
  letter-spacing: 0.5em;
}

h3.jp {
  font-weight: normal;
  font-family: "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , Osaka , sans-serif;
}

h3.jp + span {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: normal;
  margin-top: 5px;
}

@media screen and (max-width: 480px) {
  h3.jp {
    letter-spacing: 0.3em;
  }
  h3.jp + span {
    letter-spacing: 0.3em;
  }
}

h4 {
  font-weight: bold;
}

span.brk {
  display: inline-block;
}

.red {
  color: #FF0004;
}

.tb {
  display: none;
}

@media screen and (max-width: 768px) {
  .tb {
    display: inline-block;
  }
}

@media screen and (max-width: 768px) {
  .tb_none {
    display: none;
  }
}

.sp {
  display: none;
}

@media screen and (max-width: 480px) {
  .sp {
    display: inline-block;
  }
}

@media screen and (max-width: 480px) {
  .sp_none {
    display: none;
  }
}

/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  /*padding: 40px 0;*/
}

header:before {
  content: "";
  display: block;
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 1s ease-out;
  transition: opacity 1s ease-out;
}

header .inner {
  width: 100%;
  max-width: 1240px;
  padding: 40px 20px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: padding 1s ease-out;
  transition: padding 1s ease-out;
}

header .inner h1 {
  width: 296px;
}

header .inner h1 a {
  display: block;
  background: url("../img/logo_blk.png") no-repeat;
  background-size: contain;
  background-position: center;
  padding-top: 10.5%;
  position: relative;
}

header .inner h1 a span {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
}

header .inner h1 a img {
  display: block;
}

header .inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .inner ul li {
  padding: 0 0 0 26px;
}

header .inner ul li a {
  color: #000;
}

header .inner ul li:nth-last-of-type(1) {
  padding: 0;
  margin-left: 26px;
}

header .inner ul li:nth-last-of-type(1) a {
  display: block;
  padding: 0 10px;
  border: solid 1px #000;
  font-size: 12px;
  font-size: 1.2rem;
}

header .inner .navBtn {
  display: none;
}

header.on:before {
  opacity: 0.6;
}

header.on .inner {
  padding: 20px 20px;
}

@media screen and (max-width: 1100px) {
  header .inner ul li {
    padding: 0 0 0 18px;
  }
  header .inner ul li:nth-last-of-type(1) {
    margin-left: 18px;
  }
  header .inner ul li:nth-last-of-type(1) a {
    padding: 0 6px;
  }
  header .inner ul li a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 970px) {
  header .inner h1 {
    width: 237px;
  }
  header .inner ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .inner ul li {
    padding: 0 0 0 12px;
  }
  header .inner ul li a {
    font-size: 14px;
    font-size: 1.4rem;
  }
  header .inner ul li:nth-last-of-type(1) {
    margin-left: 12px;
  }
  header .inner ul li:nth-last-of-type(1) a {
    padding: 0 4px;
  }
}

@media screen and (max-width: 870px) {
  header .inner .navBtn {
    display: block;
  }
  header .inner .navBtn i {
    width: 26px;
    width: 2.6rem;
    height: 26px;
    height: 2.6rem;
    font-size: 16px;
    font-size: 1.6rem;
    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;
    color: #fff;
    background-color: #000;
    -webkit-transition: .5s;
    transition: .5s;
  }
  header .inner .navBtn i:before {
    margin-left: 2px;
  }
  header .inner .navBtn i:before {
    margin-left: 0;
    margin-right: 0;
  }
  header .inner .navBtn.on i {
    -webkit-transform: rotate(900deg);
            transform: rotate(900deg);
  }
  header .inner h1 {
    width: 222px;
  }
  header .inner ul {
    width: 50%;
    display: block;
    position: absolute;
    bottom: -380px;
    right: -50%;
    background-color: #fff;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
  }
  header .inner ul li {
    padding: 0;
    border-bottom: solid 1px #000;
  }
  header .inner ul li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 20px;
    color: #000 !important;
  }
  header .inner ul li:nth-last-of-type(1) {
    margin-left: 0;
  }
  header .inner ul li:nth-last-of-type(1) a {
    width: 100%;
    height: 100%;
    padding: 20px;
    border: none;
    font-size: 14px;
    font-size: 1.4rem;
  }
  header .inner ul.on {
    right: 0;
  }
}

@media screen and (max-width: 480px) {
  header .inner {
    padding: 25px 20px;
  }
  header .inner .navBtn i {
    width: 24px;
    width: 2.4rem;
    height: 24px;
    height: 2.4rem;
    font-size: 14px;
    font-size: 1.4rem;
    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;
  }
  header .inner .navBtn i:before {
    margin-left: 2px;
  }
  header .inner .navBtn i:before {
    margin-left: 0;
    margin-right: 0;
  }
  header .inner h1 {
    width: 178px;
  }
  header .inner ul {
    width: 65%;
    bottom: -285px;
    right: -65%;
  }
  header .inner ul li a {
    padding: 10px;
  }
  header.on .inner {
    padding: 15px 20px;
  }
}

/* footer */
footer .map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  min-height: 600px;
}

footer .map .left {
  width: 50%;
  padding: 20px;
  background: -webkit-gradient(linear, left bottom, right top, from(#0fabae), to(#4a66a9));
  background: linear-gradient(to top right, #0fabae, #4a66a9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer .map .left h3 {
  color: #fff;
  width: 100%;
}

footer .map .left h3 + span {
  color: #fff;
  font-weight: normal;
  width: 100%;
}

footer .map .left .wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer .map .left .wrap p {
  color: #fff;
  text-align: left;
  font-weight: normal;
  margin-top: 40px;
}

footer .map .right {
  width: 50%;
}

footer .map .right iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 480px) {
  footer .map {
    display: block;
  }
  footer .map .left {
    width: 100%;
    padding: 40px 10px;
  }
  footer .map .left p {
    margin-top: 20px;
  }
  footer .map .right {
    width: 100%;
    height: 320px;
  }
}

footer .parking {
  background-color: #efefef;
}

footer .parking .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  min-height: inherit;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

footer .parking .inner .left {
  width: 50%;
  padding: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

footer .parking .inner .left .heading {
  display: inline-block;
}

footer .parking .inner .left .heading h3 {
  text-align: left;
  color: #000;
  width: 100%;
}

footer .parking .inner .left .heading h3 + span {
  text-align: center;
  color: #000;
  font-weight: normal;
  width: 100%;
}

footer .parking .inner .left .wrap {
  width: 100%;
}

footer .parking .inner .left .wrap p {
  color: #000;
  text-align: left;
  font-weight: normal;
  margin-top: 40px;
}

footer .parking .inner .right {
  width: 50%;
  text-align: left;
  padding: 40px 0  40px 20px;
}

footer .parking .inner .right img {
  width: 100%;
  max-width: 400px;
  border: solid 20px #fff;
}

@media screen and (max-width: 480px) {
  footer .parking .inner {
    display: block;
  }
  footer .parking .inner .left {
    display: block;
    width: 100%;
    padding: 40px 10px;
  }
  footer .parking .inner .left .heading {
    display: block;
  }
  footer .parking .inner .left .heading h3 {
    text-align: center;
  }
  footer .parking .inner .left p {
    margin-top: 20px;
  }
  footer .parking .inner .right {
    width: 100%;
    padding: 0;
    height: auto;
    padding-bottom: 40px;
  }
}

footer .foot {
  padding: 50px 20px;
  border-top: solid 2px #efefef;
}

footer .foot .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  max-width: 1240px;
  margin: 0 auto;
}

footer .foot .inner .left {
  width: 50%;
  padding-right: 20px;
}

footer .foot .inner .left h4 {
  max-width: 427px;
  margin-bottom: 40px;
}

footer .foot .inner .left p {
  font-size: 14px;
  font-size: 1.4rem;
}

footer .foot .inner .right {
  width: 50%;
  position: relative;
}

footer .foot .inner .right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -10px;
}

footer .foot .inner .right ul li {
  padding: 2px 10px;
  border-right: solid 1px #000;
  margin-bottom: 5px;
}

footer .foot .inner .right ul li a {
  display: block;
  line-height: 1;
  color: #000;
}

@media screen and (min-width: 769px) {
  footer .foot .inner .right ul li a:hover {
    opacity: 0.6;
  }
}

footer .foot .inner .right .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer .foot .inner .right .sns .fb-share-button {
  margin-right: 10px;
}

footer .foot .inner .right .logo_area {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
}

footer .foot .inner .right .logo_area .startup_logo {
  max-width: 135px;
  width: 40%;
  margin-right: 20px;
  margin-top: 10px;
}

footer .foot .inner .right .logo_area .tsukuba_logo {
  max-width: 200px;
  width: calc(60% - 20px);
  margin-top: 10px;
}

@media screen and (min-width: 769px) {
  footer .foot .inner .right .logo_area a:hover {
    opacity: 0.6;
  }
}

@media screen and (max-width: 768px) {
  footer .foot .inner .left {
    width: 50%;
    padding-right: 20px;
  }
  footer .foot .inner .left h4 {
    max-width: 426px;
    margin-bottom: 40px;
  }
  footer .foot .inner .left p {
    font-size: 14px;
    font-size: 1.4rem;
  }
  footer .foot .inner .right {
    width: 50%;
    position: relative;
  }
  footer .foot .inner .right ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -10px;
  }
  footer .foot .inner .right ul li {
    padding: 2px 5px;
    border-right: solid 1px #000;
    margin-bottom: 5px;
  }
  footer .foot .inner .right ul li a {
    display: block;
    line-height: 1;
    color: #000;
  }
  footer .foot .inner .right .sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .foot .inner .right .sns .fb-share-button {
    margin-right: 10px;
  }
}

@media screen and (max-width: 480px) {
  footer .foot .inner {
    display: block;
    padding: 0 10px;
  }
  footer .foot .inner .left {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
  footer .foot .inner .left h4 {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 40px;
  }
  footer .foot .inner .left p {
    text-align: center;
  }
  footer .foot .inner .right {
    width: 100%;
  }
  footer .foot .inner .right ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -10px;
  }
  footer .foot .inner .right ul li {
    padding: 2px 5px;
    border-right: solid 1px #000;
    margin-bottom: 5px;
  }
  footer .foot .inner .right ul li a {
    display: block;
    line-height: 1;
    color: #000;
  }
  footer .foot .inner .right .sns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  footer .foot .inner .right .sns .fb-share-button {
    margin: 0 10px;
  }
  footer .foot .inner .right .sns .twitter-share-button {
    margin: 0 10px;
  }
  footer .foot .inner .right .logo_area {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

footer .copyright .inner {
  max-width: 1280px;
  padding: 0 20px 80px;
  margin: 0 auto;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 480px) {
  footer .copyright .inner {
    padding: 0 20px 40px;
  }
  footer .copyright .inner p {
    text-align: center;
  }
}

.to_top {
  position: fixed;
  z-index: 9;
  opacity: 0;
  bottom: 20px;
  right: 20px;
  -webkit-transition: opacity 2s ease-out;
  transition: opacity 2s ease-out;
}

.to_top a {
  width: 60px;
  height: 60px;
  display: block;
}

.to_top.on {
  opacity: 0.6;
}

@media screen and (max-width: 480px) {
  .to_top a {
    width: 40px;
    height: 40px;
    display: block;
  }
}

/*****************************
TOPページ
*****************************/
/*メインビジュアル*/
.main {
  position: relative;
  z-index: 1;
  margin-top: 112px;
  min-height: 690px;
}

.main .wrap {
  position: relative;
  margin: 0 auto;
  z-index: 2;
  overflow: hidden;
}

.main .wrap .slick-box div {
  width: 100%;
  height: 100%;
  min-height: 690px;
}

.main .wrap .slick-box div:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.main .wrap .slick-box div .slide01 {
  background: url("../img/slide01.jpg") no-repeat;
  background-size: cover;
  background-position: bottom center;
}

.main .wrap .slick-box div .slide02 {
  background: url("../img/slide02.jpg") no-repeat;
  background-size: cover;
  background-position: bottom center;
}

.main .wrap .slick-box div .slide03 {
  background: url("../img/slide03.jpg") no-repeat;
  background-size: cover;
  background-position: bottom center;
}

.main .wrap .slick-box div .slide04 {
  background: url("../img/slide04.jpg") no-repeat;
  background-size: cover;
  background-position: bottom center;
}

.main .wrap .slick-box div .slide05 {
  background: url("../img/slide05.jpg") no-repeat;
  background-size: cover;
  background-position: bottom center;
}

.main .wrap .item {
  position: absolute;
  top: 0;
  min-width: 500px;
}

.main .wrap .item.title_logo {
  top: 110px;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 500px;
  width: 35.7%;
}

.main .wrap .catch {
  position: absolute;
  top: 300px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin: auto;
}

.main .wrap .catch p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.4;
  text-align: center;
  padding: 0 20px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .main .wrap .item {
    min-width: 440px;
  }
  .main .wrap .item.title_logo {
    width: 80%;
  }
  .main .wrap .catch p {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 480px) {
  .main {
    min-height: 550px;
    margin-top: 74px;
  }
  .main .wrap .slick-box div {
    min-height: 550px;
  }
  .main .wrap .item {
    min-width: 300px;
  }
  .main .wrap .item.title_logo {
    top: 50px;
    width: 80%;
  }
  .main .wrap .catch {
    top: 160px;
  }
  .main .wrap .catch p {
    letter-spacing: 0;
    padding: 0 10px;
  }
}

.info_wrapper {
  max-width: 1240px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 0 20px;
  margin: 60px auto 0;
}

.info_wrapper .info {
  width: 100%;
  max-width: 500px;
  margin: 60px auto 0;
  padding: 0 10px;
}

.info_wrapper .youtube h3 {
  letter-spacing: 0.3em;
}

.info_wrapper .youtube .movie {
  position: relative;
  width: 100%;
  margin: 30px 0 0;
  padding: 56.25% 0 0;
}

.info_wrapper .youtube .movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.info_wrapper .magazine h3 {
  letter-spacing: 0.1em;
}

.info_wrapper .magazine .link_wrap {
  margin-top: 25px;
}

.info_wrapper .magazine .link_wrap p {
  text-align: center;
}

.info_wrapper .magazine .link_wrap a.btn_blk {
  width: 100%;
  font-size: 20px;
  font-size: 2rem;
  margin-top: 30px;
}

.info_wrapper .news ul {
  margin-top: 30px;
}

.info_wrapper .news ul li {
  border: solid 1px #DDD;
  margin-bottom: 10px;
}

.info_wrapper .news ul li .wrap {
  position: relative;
  color: #000;
  padding: 20px 20px 15px;
  display: block;
  letter-spacing: 0;
  background-color: #000;
}

.info_wrapper .news ul li .wrap:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.info_wrapper .news ul li .wrap span {
  position: relative;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.1;
  display: block;
  -webkit-transition: color ease 1s;
  transition: color ease 1s;
}

.info_wrapper .news ul li .wrap p {
  position: relative;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8;
  margin-top: 5px;
  width: calc(100% - 40px);
  -webkit-transition: color ease 1s;
  transition: color ease 1s;
}

.info_wrapper .news ul li .wrap i {
  width: 30px;
  width: 3rem;
  height: 30px;
  height: 3rem;
  font-size: 20px;
  font-size: 2rem;
  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;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2rem;
  margin: auto;
  color: #FFF;
  background-color: #DDD;
}

.info_wrapper .news ul li .wrap i:before {
  margin-left: 2px;
}

.info_wrapper .news ul li .wrap i.fa-clone, .info_wrapper .news ul li .wrap i.fa-file-pdf {
  font-size: 1.2rem;
}

@media screen and (min-width: 769px) {
  .info_wrapper .news ul li a:hover:before {
    width: 0;
    opacity: 0;
  }
  .info_wrapper .news ul li a:hover span {
    color: #fff;
  }
  .info_wrapper .news ul li a:hover p {
    color: #fff;
  }
}

.info_wrapper .news .link_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.info_wrapper .news .link_wrap a.btn_blk {
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 20px;
  max-width: 120px;
}

.info_wrapper .facebook h3 {
  letter-spacing: 0.3em;
}

.info_wrapper .facebook iframe {
  margin: 25px auto 0;
  border: 1px solid #eee;
}

@media screen and (max-width: 768px) {
  .info_wrapper {
    display: block;
  }
  .info_wrapper .news {
    width: 100%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 480px) {
  .info_wrapper {
    padding: 0 10px;
  }
  .info_wrapper .news ul li a {
    padding: 20px 10px 15px;
  }
  .info_wrapper .news ul li a p {
    width: calc(100% - 30px);
  }
  .info_wrapper .news ul li a i {
    width: 25px;
    width: 2.5rem;
    height: 25px;
    height: 2.5rem;
    font-size: 15px;
    font-size: 1.5rem;
    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;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1rem;
    margin: auto;
    color: #FFF;
    background-color: #DDD;
  }
  .info_wrapper .news ul li a i:before {
    margin-left: 2px;
  }
}

.info_wrapper.all {
  max-width: 840px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 0 20px;
  margin: 100px auto 160px;
}

.info_wrapper.all .news {
  width: 100%;
  max-width: none;
}

.service {
  margin-top: 12rem;
  background-color: #f7f7f7;
  padding-bottom: 70px;
}

.service .heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 50px 20px;
  max-width: 1240px;
  margin: 0 auto;
}

.service .heading .left {
  width: 280px;
}

.service .heading .right {
  width: calc(100% - 300px);
  max-width: 820px;
  font-weight: normal;
}

.service a {
  display: block;
  height: 480px;
  position: relative;
  overflow: hidden;
  background-color: #000;
  /*▼オンマウス*/
  /*▲オンマウス*/
}

.service a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: url("../img/service_bg.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-transition: .8s ease-out;
  transition: .8s ease-out;
  opacity: 1;
}

.service a span.btn_blk {
  position: absolute;
  width: calc(100% - 40px);
  max-width: 380px;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 5%;
}

@media screen and (min-width: 769px) {
  .service a:hover:before {
    opacity: 0.7;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  .service a:hover span.btn_blk label {
    color: #000;
  }
  .service a:hover span.btn_blk:before {
    width: 0;
    opacity: 0;
  }
}

@media screen and (max-width: 768px) {
  .service .heading {
    display: block;
  }
  .service .heading .left {
    width: 100%;
  }
  .service .heading .right {
    margin-top: 30px;
    width: 100%;
    text-align: center;
  }
  .service a {
    height: 300px;
  }
}

.event {
  margin-top: 90px;
  margin-bottom: 100px;
}

.event .text {
  font-weight: normal;
  margin-top: 70px;
  text-align: center;
  padding: 0 20px;
}

.event .text a {
  font-weight: bold;
  color: #000;
}

.event .text a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .event .text {
    margin-top: 30px;
  }
}

@media screen and (max-width: 480px) {
  .event .text {
    padding: 0 10px;
  }
}

.event ul.list {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.event ul.list li {
  width: 33.33%;
}

.event ul.list li a {
  color: #000;
  display: block;
  padding: 20px 20px 20px 21px;
  border-right: solid 1px #cacaca;
  border-bottom: solid 1px #cacaca;
  background-color: #fff;
}

.event ul.list li a .img_box {
  padding-top: 48.9%;
  position: relative;
  width: 100%;
  margin-bottom: 15px;
  overflow: hidden;
}

.event ul.list li a .img_box img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: .8s ease-out;
  transition: .8s ease-out;
  height: auto;
}

.event ul.list li a .text_box h4 {
  line-height: 1.7;
  letter-spacing: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.event ul.list li a .text_box p {
  letter-spacing: 0;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: normal;
}

@media screen and (min-width: 769px) {
  .event ul.list li a:hover .img_box img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

.event ul.list li:first-of-type a, .event ul.list li:nth-of-type(4n) a {
  padding: 20px 20px 20px 20px;
  border-left: solid  1px #cacaca;
}

.event ul.list li:nth-of-type(1) a, .event ul.list li:nth-of-type(2) a, .event ul.list li:nth-of-type(3) a {
  border-top: solid  1px #cacaca;
}

@media screen and (max-width: 768px) {
  .event ul.list li {
    width: 50%;
  }
  .event ul.list li a {
    padding: 15px 15px 15px 16px;
    border-right: solid 1px #cacaca;
    border-bottom: solid 1px #cacaca;
  }
  .event ul.list li:nth-of-type(4n) a {
    padding: 15px 15px 15px 16px;
    border-left: none;
  }
  .event ul.list li:nth-of-type(3) a {
    border-top: none;
  }
  .event ul.list li:first-of-type a, .event ul.list li:nth-of-type(2n-1) a {
    padding: 15px 15px 15px 15px;
    border-left: solid  1px #cacaca;
  }
}

@media screen and (max-width: 480px) {
  .event ul.list li {
    width: 100%;
  }
  .event ul.list li a {
    padding: 10px 10px 10px 11px !important;
    border-right: solid 1px #cacaca !important;
    border-bottom: solid 1px #cacaca !important;
    border-left: solid 1px #cacaca !important;
  }
  .event ul.list li:nth-of-type(2) a {
    border-top: none;
  }
}

.event .btn_blk {
  margin-top: 20px;
  font-size: 20px;
  font-size: 2rem;
  width: calc(100% - 40px);
  max-width: 380px;
  margin: 40px auto 0;
}

.contact {
  background-color: #f7f7f7;
  padding: 60px 20px 60px;
}

.contact .form_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}

.contact .form_btn span {
  margin: 0 20px;
  background-color: #000;
  display: inline-block;
  margin-bottom: 10px;
}

.contact .form_btn span label {
  color: #000;
  line-height: 2;
}

.contact .form_btn span i {
  margin-left: 10px;
}

.contact .form_btn span:before {
  background-color: #fff;
}

.contact .form_btn span.on label {
  color: #fff;
}

.contact .form_btn span.on:before {
  background-color: #000;
}

@media screen and (min-width: 769px) {
  .contact .form_btn span:hover label {
    color: #fff;
  }
}

@media screen and (max-width: 768px) {
  .contact .form_btn span {
    max-width: 380px;
    width: 100%;
  }
}

.contact .formArea {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.contact .formArea.on {
  visibility: visible;
  height: auto;
}

.contact .formArea .text {
  margin: 70px 0;
  text-align: center;
}

.contact .formArea .text a {
  color: #000;
  text-decoration: underline;
  display: inline-block;
  margin: 0 10px;
}

.contact .formArea .text a:hover {
  opacity: 0.7;
}

.contact .formArea .inner {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact .formArea .inner p {
  margin-bottom: 20px;
}

.contact .formArea .inner p:nth-of-type(2n-1) {
  width: 170px;
}

.contact .formArea .inner p:nth-of-type(2n) {
  width: calc(100% - 170px);
}

.contact .formArea .inner p:nth-of-type(2n) input, .contact .formArea .inner p:nth-of-type(2n) textarea {
  width: 100%;
  padding: 15px 20px;
  border: solid 1px #DDD;
}

.contact .formArea .inner .btn {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.contact .formArea .inner .btn button {
  background-color: #FFF;
  position: relative;
  border: solid 1px #000;
  text-align: center;
  font-weight: bold;
  display: block;
  padding: 0 20px;
  font-size: 14px;
  font-size: 1.4rem;
  width: 250px;
  margin: 0 10px 20px;
}

.contact .formArea .inner .btn button label {
  position: relative;
  color: #FFF;
  line-height: 2;
  -webkit-transition: color ease 1s;
  transition: color ease 1s;
  pointer-events: none;
}

.contact .formArea .inner .btn button i {
  margin-left: 10px;
}

.contact .formArea .inner .btn button:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #000;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

@media screen and (min-width: 769px) {
  .contact .formArea .inner .btn button:hover {
    cursor: pointer;
  }
  .contact .formArea .inner .btn button:hover label {
    color: #000;
    cursor: pointer;
  }
  .contact .formArea .inner .btn button:hover:before {
    width: 0;
    opacity: 0;
  }
}

.contact .formArea .recaptcha {
  text-align: center;
  font-weight: normal;
  font-size: 12px;
  font-size: 1.2rem;
}

.contact .formArea .recaptcha a {
  color: #000;
}

@media screen and (max-width: 480px) {
  .contact .formArea .text {
    margin: 30px 0;
    text-align: left;
  }
  .contact .formArea .inner {
    display: block;
  }
  .contact .formArea .inner p:nth-of-type(2n-1) {
    width: 100%;
    margin-bottom: 10px;
  }
  .contact .formArea .inner p:nth-of-type(2n) {
    width: 100%;
  }
  .contact .formArea .recaptcha {
    text-align: left;
  }
  .contact .formArea .recaptcha br {
    display: none;
  }
}

/*****************************
TOPページ
*****************************/
/*下層ページタイトル*/
.page_title {
  position: relative;
}

.page_title .wrap {
  border-top: solid 2px #DDD;
  margin-top: 112px;
  background-color: #f7f7f7;
}

.page_title .wrap .bg {
  max-width: 1400px;
  padding: 0 20px;
  margin: 0 auto;
  background: url("../img/headling_bg.png") no-repeat;
  background-size: cover;
  background-position: center;
}

.page_title .wrap .bg .inner {
  max-width: 1240px;
  margin: 0 auto;
  height: 208px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.page_title .wrap .bg .inner .h2_block h2 {
  width: 100%;
  font-family: "Jost*" , "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: bold;
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1.1;
  letter-spacing: 0.5em;
  text-align: center;
}

.page_title .wrap .bg .inner .h2_block h2 + span {
  text-align: center;
  display: block;
  letter-spacing: 0.5em;
}

.page_title .icon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3rem;
  margin: auto;
  width: 6rem;
}

.page_title .icon i {
  width: 40px;
  width: 4rem;
  height: 40px;
  height: 4rem;
  font-size: 30px;
  font-size: 3rem;
  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: 6rem;
  height: 6rem;
  background-color: #fff;
  color: #717171;
}

.page_title .icon i:before {
  margin-left: 2px;
}

@media screen and (max-width: 480px) {
  .page_title .wrap {
    margin-top: 74px;
  }
  .page_title .wrap .bg .inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.consultation {
  padding: 120px 20px 90px;
}

.consultation .text {
  font-weight: normal;
  margin: 50px 0 70px;
  text-align: center;
}

.consultation .text a {
  font-weight: bold;
  color: #000;
}

.consultation .text a:hover {
  opacity: 0.8;
}

.consultation .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1040px;
  padding: 0 20px;
  margin: 0 auto;
}

.consultation .link .panel {
  border: solid 1px #DDD;
  width: 48%;
  max-width: 450px;
}

.consultation .link .panel .wrap {
  padding: 50px 10px 30px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #000;
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}

.consultation .link .panel .wrap .title {
  font-size: 20px;
  font-size: 2rem;
  margin-bottom: 3rem;
  text-align: center;
}

.consultation .link .panel .wrap .explain {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: normal;
  margin-bottom: 4rem;
  text-align: center;
  width: 100%;
}

.consultation .link .panel .wrap img {
  max-width: 180px;
  max-height: 202px;
  height: auto !important;
}

.consultation .link .panel .wrap .icon {
  width: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 70px;
}

.consultation .link .panel .wrap .icon i {
  width: 30px;
  width: 3rem;
  height: 30px;
  height: 3rem;
  font-size: 20px;
  font-size: 2rem;
  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;
  color: #fff;
  background-color: #000;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}

.consultation .link .panel .wrap .icon i:before {
  margin-left: 2px;
}

@media screen and (min-width: 769px) {
  .consultation .link .panel a:hover {
    opacity: 0.6;
  }
  .consultation .link .panel a:hover .icon i {
    -webkit-transform: rotate(720deg);
            transform: rotate(720deg);
  }
}

@media screen and (max-width: 480px) {
  .consultation {
    padding: 120px 10px 90px;
  }
  .consultation .link .panel {
    width: 100%;
    margin-bottom: 20px;
  }
}

.mentor {
  padding: 90px 20px 70px;
  background-color: #f7f7f7;
}

.mentor .text {
  font-weight: normal;
  margin: 50px 0 70px;
  text-align: center;
}

.mentor ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}

.mentor ul li {
  width: 22%;
  background-color: #fff;
  margin-bottom: 20px;
  position: relative;
}

.mentor ul li .img_box {
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}

.mentor ul li .img_box img {
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: auto;
}

.mentor ul li .text_box {
  padding: 15px 15px 40px 15px;
}

.mentor ul li .text_box .name {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 10px;
}

.mentor ul li .text_box .job {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: normal;
}

.mentor ul li .text_box .skill {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: normal;
}

.mentor ul li .more {
  font-size: 12px;
  font-size: 1.2rem;
  color: #fff;
  font-weight: normal;
  position: absolute;
  padding: 0 10px;
  background-color: #575757;
  border-radius: 10px;
  bottom: 10px;
  right: 5px;
  letter-spacing: 0;
}

.mentor ul li .more i {
  margin-left: 4px;
}

.mentor ul li.none {
  height: 0;
  background-color: inherit;
  margin-bottom: 0;
}

@media screen and (min-width: 769px) {
  .mentor ul li:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

@media screen and (max-width: 768px) {
  .mentor ul li {
    width: 31%;
  }
}

@media screen and (max-width: 480px) {
  .mentor {
    padding: 90px 10px 70px;
  }
  .mentor ul li {
    width: 49%;
  }
  .mentor ul li .text_box {
    padding: 10px 5px 40px;
  }
}

.floormap {
  padding: 90px 20px 70px;
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
}

.floormap .h3_block {
  position: absolute;
  top: 90px;
  left: 20px;
  z-index: 2;
}

.floormap .map_img {
  position: relative;
  width: 100%;
  text-align: right;
}

.floormap .map_img img {
  max-width: 826px;
}

@media screen and (max-width: 920px) {
  .floormap .h3_block {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 50px;
  }
}

.facilities {
  padding: 90px 0 100px;
  background-color: #f7f7f7;
}

.facilities .caption {
  margin: 60px auto 10px;
  text-align: right;
  max-width: 1040px;
  font-weight: normal;
  font-size: 12px;
  font-size: 1.2rem;
  padding: 0 20px;
}

.facilities ul {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1040px;
}

.facilities ul li {
  width: 130px;
  padding: 0 5px;
  text-align: center;
  margin-bottom: 60px;
}

.facilities ul li img {
  width: 99px;
  border: solid 1px #000;
}

.facilities ul li p {
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: normal;
  letter-spacing: 0;
  line-height: 1.2;
  margin-top: 10px;
}

.facilities ul li.none {
  margin-bottom: 0;
  height: 0;
}

@media screen and (max-width: 480px) {
  .facilities ul li {
    margin-bottom: 30px;
  }
}

.space {
  max-width: 1040px;
  padding: 90px 20px 40px;
  margin: 0 auto;
}

.space .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border: solid 1px #DDD;
  border-top: none;
  margin-bottom: 50px;
}

.space .box .text_box {
  width: 55%;
  padding: 30px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: solid 5px #575757;
}

.space .box .text_box h4 {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.5em;
  width: 100%;
}

.space .box .text_box h4 + span {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.5em;
  width: 100%;
  margin-top: 10px;
}

.space .box .text_box p {
  margin-top: 50px;
  font-weight: normal;
  width: 100%;
}

.space .box .img_box {
  width: 45%;
  min-height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: solid 1px #DDD;
}

.space .box .img_box .bg {
  width: 90%;
  max-width: 400px;
  height: 100%;
  background-size: cover;
}

.space .box:nth-child(1) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.space .box:nth-child(1) .img_box {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.space .box:nth-child(1) .img_box .bg {
  background: url("../img/space_exchange.jpg") no-repeat;
  background-position: center;
}

.space .box:nth-child(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.space .box:nth-child(2) .img_box {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.space .box:nth-child(2) .img_box .bg {
  background: url("../img/space_seminar.jpg") no-repeat;
  background-position: center;
}

.space .box:nth-child(3) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.space .box:nth-child(3) .img_box {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.space .box:nth-child(3) .img_box .bg {
  background: url("../img/space_coworking.jpg") no-repeat;
  background-position: center;
}

.space .box:nth-child(4) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.space .box:nth-child(4) .img_box {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.space .box:nth-child(4) .img_box .bg {
  background: url("../img/space_meeting.jpg") no-repeat;
  background-position: center;
}

.space .box:nth-child(5) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.space .box:nth-child(5) .img_box {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.space .box:nth-child(5) .img_box .bg {
  background: url("../img/space_cafe.jpg") no-repeat;
  background-position: center;
}

@media screen and (max-width: 768px) {
  .space .box .text_box h4 {
    letter-spacing: 0.3em;
  }
  .space .box .text_box h4 + span {
    letter-spacing: 0.3em;
  }
}

@media screen and (max-width: 480px) {
  .space {
    padding: 90px 20px 40px;
  }
  .space .box {
    display: block;
  }
  .space .box .text_box {
    width: 100%;
  }
  .space .box .text_box h4 {
    letter-spacing: 0.1em;
  }
  .space .box .text_box h4 + p {
    letter-spacing: 0.1em;
  }
  .space .box .img_box {
    border-top: none;
    width: 100%;
  }
  .space .box .img_box .bg {
    width: 100%;
    height: 400px;
    max-width: none;
  }
}

.detail_01 {
  padding: 120px 20px 90px;
  background-color: #f7f7f7;
}

@media screen and (max-width: 480px) {
  .detail_01 {
    padding: 120px 10px 90px;
  }
}

.detail_01 .icon {
  width: 221px;
  margin: 0 auto 24px;
}

.detail_01 .table_wrap {
  width: 100%;
  max-width: 1000px;
  margin: 90px auto 0;
  margin-top: 90px;
}

.detail_01 .table_wrap .caption {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: normal;
}

.detail_01 .table_wrap table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}

.detail_01 .table_wrap table tr th, .detail_01 .table_wrap table tr td {
  border: solid 1px #DDD;
  vertical-align: middle;
  padding: 10px;
}

.detail_01 .table_wrap table tr th p, .detail_01 .table_wrap table tr td p {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-weight: normal;
}

.detail_01 .table_wrap table tr th p span.wrap span.indent, .detail_01 .table_wrap table tr td p span.wrap span.indent {
  display: block;
  text-indent: -1em;
  padding-left: 1em;
}

.detail_01 .table_wrap table tr th {
  width: 40%;
  background-color: #efefef;
}

.detail_01 .table_wrap table tr th p {
  font-weight: bold;
}

.detail_01 .table_wrap table tr td.head p {
  font-weight: bold;
}

.detail_01 .text_link {
  margin-top: 30px;
  font-weight: normal;
}

.detail_01 .text_link a {
  color: #000;
  text-decoration: underline;
  font-weight: bold;
}

.detail_01 .text_link a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .detail_01 .table_wrap table tr th p, .detail_01 .table_wrap table tr td p {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .detail_01 .table_wrap table tr th {
    width: 42%;
  }
}

@media screen and (max-width: 480px) {
  .detail_01 .table_wrap table.sp {
    display: table;
  }
  .detail_01 .table_wrap table tr th p, .detail_01 .table_wrap table tr td p {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-weight: normal;
  }
  .detail_01 .table_wrap table tr th {
    width: 40%;
    background-color: #efefef;
  }
  .detail_01 .table_wrap table tr th p {
    font-weight: bold;
  }
  .detail_01 .table_wrap table tr.sp {
    display: block;
    width: 100%;
  }
  .detail_01 .table_wrap table tr.sp td {
    display: block;
    width: 100%;
  }
  .detail_01 .table_wrap table tr.sp td p {
    font-weight: bold;
  }
}

.detail_02 {
  padding: 90px 20px 200px;
}

@media screen and (max-width: 480px) {
  .detail_02 {
    padding: 90px 10px 200px;
  }
}

.detail_02 .icon {
  width: 221px;
  margin: 0 auto 24px;
}

.detail_02 .text {
  font-weight: normal;
  margin: 50px 0 70px;
  text-align: center;
}

.detail_02 .flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.detail_02 .flow .box {
  padding: 50px 10px 90px;
  border: solid 1px #DDD;
  width: 48%;
  max-width: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #000;
}

.detail_02 .flow .box .title {
  font-size: 20px;
  font-size: 2rem;
  margin-bottom: 3rem;
  text-align: center;
}

.detail_02 .flow .box .explain {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: normal;
  margin-bottom: 4rem;
  text-align: center;
  width: 100%;
}

.detail_02 .flow .box .chart {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.detail_02 .flow .box .chart:before {
  position: absolute;
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #717171;
}

.detail_02 .flow .box .chart p {
  position: relative;
  color: #fff;
  font-weight: normal;
  background-color: #717171;
  text-align: center;
  padding: 2px 20px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 20px;
}

.detail_02 .flow .box .chart p:last-of-type {
  margin: 0 auto;
}

@media screen and (max-width: 480px) {
  .detail_02 .flow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 auto;
  }
  .detail_02 .flow .box {
    padding: 50px 10px 30px;
    width: 100%;
    margin-bottom: 20px;
  }
}

.detail_02 .download {
  margin: 70px auto 0;
  max-width: 1000px;
}

.detail_02 .download .bold {
  font-size: 18px;
  font-size: 1.8rem;
}

.detail_02 .download .normal {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: normal;
  margin: 0 0 30px;
}

.detail_02 .download .normal a {
  color: #000;
  font-weight: bold;
}

.detail_02 .download .normal a span {
  text-decoration: underline;
}

.detail_02 .download .normal a i {
  margin-left: 2px;
  position: relative;
  top: -2px;
  font-size: 12px;
  font-size: 1.2rem;
}

@media screen and (min-width: 769px) {
  .detail_02 .download .normal a:hover {
    opacity: 0.6;
  }
  .detail_02 .download .normal a:hover span {
    text-decoration: none;
  }
}

.detail_02 .download .link {
  margin-top: 10px;
  margin-bottom: 30px;
}

.detail_02 .download .link .btn_blk {
  display: inline-block;
  width: 130px;
  margin-right: 20px;
}

.detail_02 .table_wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.detail_02 .table_wrap .caption {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: normal;
}

.detail_02 .table_wrap table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}

.detail_02 .table_wrap table tr th, .detail_02 .table_wrap table tr td {
  border: solid 1px #DDD;
  vertical-align: middle;
  padding: 10px;
}

.detail_02 .table_wrap table tr th p, .detail_02 .table_wrap table tr td p {
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-weight: normal;
}

.detail_02 .table_wrap table tr th p.bold, .detail_02 .table_wrap table tr td p.bold {
  font-weight: bold;
}

.detail_02 .table_wrap table tr th {
  width: 20%;
  background-color: #efefef;
}

.detail_02 .table_wrap table tr th p {
  font-weight: bold;
}

@media screen and (max-width: 480px) {
  .detail_02 .table_wrap table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
  }
  .detail_02 .table_wrap table.sp {
    display: table;
  }
  .detail_02 .table_wrap table tr th, .detail_02 .table_wrap table tr td {
    border: solid 1px #DDD;
    vertical-align: middle;
    padding: 10px 5px;
  }
  .detail_02 .table_wrap table tr th p, .detail_02 .table_wrap table tr td p {
    text-align: center;
  }
  .detail_02 .table_wrap table tr th {
    width: 33.33%;
    background-color: #efefef;
  }
  .detail_02 .table_wrap table tr th p {
    font-weight: bold;
  }
}

.news_detail, .event_detail {
  margin: 120px 20px 30px;
}

.news_detail .wrap, .event_detail .wrap {
  max-width: 800px;
  margin: 0 auto;
}

.news_detail .wrap .heading, .event_detail .wrap .heading {
  border: solid 1px #ddd;
  border-bottom: none;
  padding-bottom: 20px;
}

.news_detail .wrap .heading .date, .event_detail .wrap .heading .date {
  font-family: "Jost*" , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , Osaka , sans-serif;
  color: #fff;
  font-weight: normal;
  background-color: #575757;
  line-height: 1;
  padding: 20px 45px;
  display: inline-block;
  letter-spacing: 0.5em;
}

.news_detail .wrap .heading h3, .event_detail .wrap .heading h3 {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  padding: 20px;
  text-align: left;
  line-height: 2;
  letter-spacing: 0.1em;
}

.news_detail .wrap .edit img, .event_detail .wrap .edit img {
  max-width: 100%;
  width: auto;
  height: auto;
  margin: 5px;
}

.news_detail .wrap .edit p, .event_detail .wrap .edit p {
  padding: 40px 20px;
  border-left: solid 1px #ddd;
  border-right: solid 1px #ddd;
  font-weight: normal;
}

.news_detail .wrap .participate, .event_detail .wrap .participate {
  text-align: center;
  border-left: solid 1px #ddd;
  border-right: solid 1px #ddd;
  padding: 30px 10px;
}

.news_detail .wrap .participate a.btn_blk, .event_detail .wrap .participate a.btn_blk {
  font-size: 20px;
  font-size: 2rem;
  max-width: 300px;
  margin: 0 auto;
}

.news_detail .wrap .participate p, .event_detail .wrap .participate p {
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 10px;
  font-weight: normal;
}

.news_detail .wrap .participate .btn_end, .event_detail .wrap .participate .btn_end {
  font-size: 20px;
  font-size: 2rem;
  max-width: 300px;
  margin: 0 auto;
  color: #fff;
  font-weight: bold;
  background-color: #000;
  padding: 0 20px;
  display: block;
}

.news_detail .wrap .sns, .event_detail .wrap .sns {
  padding: 50px 20px 70px;
  border: solid 1px #ddd;
  border-top: none;
}

.news_detail .wrap .sns .banzai, .event_detail .wrap .sns .banzai {
  display: block;
  text-align: center;
}

.news_detail .wrap .sns .banzai span, .event_detail .wrap .sns .banzai span {
  display: inline-block;
  position: relative;
}

.news_detail .wrap .sns .banzai span:before, .event_detail .wrap .sns .banzai span:before {
  content: "";
  display: block;
  width: 1px;
  height: 24px;
  background-color: #000;
  position: absolute;
  left: -40px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.news_detail .wrap .sns .banzai span:after, .event_detail .wrap .sns .banzai span:after {
  content: "";
  display: block;
  width: 1px;
  height: 24px;
  background-color: #000;
  position: absolute;
  right: -40px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.news_detail .wrap .sns .icons, .event_detail .wrap .sns .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 20px;
  padding: 0 20px;
}

.news_detail .wrap .sns .icons a, .event_detail .wrap .sns .icons a {
  width: 60px;
  margin: 0 15px;
  text-align: center;
  -webkit-transition: opacity .4s ease-in-out;
  transition: opacity .4s ease-in-out;
}

@media screen and (min-width: 769px) {
  .news_detail .wrap .sns .icons a:hover, .event_detail .wrap .sns .icons a:hover {
    opacity: 0.6;
  }
}

.news_detail .wrap .sns .icons a i, .event_detail .wrap .sns .icons a i {
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto;
}

.news_detail .wrap .sns .icons a span, .event_detail .wrap .sns .icons a span {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: normal;
  display: block;
}

.news_detail .wrap .sns .icons a:nth-of-type(1), .event_detail .wrap .sns .icons a:nth-of-type(1) {
  color: #3b5998;
}

.news_detail .wrap .sns .icons a:nth-of-type(1) i, .event_detail .wrap .sns .icons a:nth-of-type(1) i {
  background: url("../img/facebook.svg") no-repeat;
  background-size: contain;
  background-position: center;
}

.news_detail .wrap .sns .icons a:nth-of-type(2), .event_detail .wrap .sns .icons a:nth-of-type(2) {
  color: #3b5998;
}

.news_detail .wrap .sns .icons a:nth-of-type(2) i, .event_detail .wrap .sns .icons a:nth-of-type(2) i {
  background: url("../img/twitter.svg") no-repeat;
  background-size: contain;
  background-position: center;
}

.event_detail .wrap {
  max-width: 922px;
}

.back {
  text-align: center;
  padding-bottom: 100px;
}

.back a {
  color: #000;
}

@media screen and (min-width: 769px) {
  .back a:hover {
    opacity: 0.6;
  }
}

.floating {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  height: 0;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.floating.on {
  visibility: visible;
  opacity: 1;
  z-index: 9;
}

.floating .back {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -9;
}

.floating .inner {
  width: 90%;
  max-width: 800px;
  max-height: 80%;
  position: relative;
  overflow: auto;
  background-color: #fff;
  margin: 0 auto;
  z-index: 10;
}

.floating .inner .heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background-color: #000;
}

.floating .inner .heading .face {
  width: 220px;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.floating .inner .heading .face img {
  top: 0;
  left: -50%;
  right: -50%;
  bottom: 0;
  margin: auto;
  position: absolute;
  height: 100%;
  width: auto;
}

.floating .inner .heading .data {
  width: calc(100% - 220px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  padding: 10px 40px;
}

.floating .inner .heading .data .name {
  color: #fff;
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: normal;
  width: 100%;
  margin-bottom: 20px;
  line-height: 1;
}

.floating .inner .heading .data .skill {
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: normal;
  width: 100%;
}

.floating .inner .profile {
  padding: 40px;
}

.floating .inner .profile p {
  font-weight: normal;
}

@media screen and (max-width: 540px) {
  .floating .inner .heading .face {
    width: 100%;
    height: auto;
    padding-top: 90%;
  }
  .floating .inner .heading .face img {
    width: 100%;
    height: auto;
  }
  .floating .inner .heading .data {
    width: 100%;
    padding: 20px;
  }
  .floating .inner .heading .data .name {
    font-size: 30px;
    font-size: 3rem;
  }
  .floating .inner .profile {
    padding: 20px;
  }
}

.member {
  padding: 120px 20px 90px;
}

.member .text {
  font-weight: normal;
  margin: 50px 0 70px;
  text-align: center;
}

.member .text a {
  font-weight: bold;
  color: #000;
}

.member .text a:hover {
  opacity: 0.8;
}

.member .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1040px;
  padding: 0 20px;
  margin: 0 auto;
}

.member .link .panel {
  border: solid 1px #DDD;
  width: 46%;
  max-width: 450px;
  margin: 0 2% 40px;
}

.member .link .panel .wrap {
  padding: 50px 10px 30px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #000;
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}

.member .link .panel .wrap .title {
  font-size: 20px;
  font-size: 2rem;
  margin-bottom: 3rem;
  text-align: center;
}

.member .link .panel .wrap .explain {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: normal;
  margin-bottom: 4rem;
  text-align: center;
  width: 100%;
}

.member .link .panel .wrap img {
  max-width: 180px;
  max-height: 202px;
  height: auto !important;
}

.member .link .panel .wrap .icon {
  width: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 70px;
}

.member .link .panel .wrap .icon i {
  width: 30px;
  width: 3rem;
  height: 30px;
  height: 3rem;
  font-size: 20px;
  font-size: 2rem;
  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;
  color: #fff;
  background-color: #000;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}

.member .link .panel .wrap .icon i:before {
  margin-left: 2px;
}

@media screen and (min-width: 769px) {
  .member .link .panel a:hover {
    opacity: 0.6;
  }
  .member .link .panel a:hover .icon i {
    -webkit-transform: rotate(720deg);
            transform: rotate(720deg);
  }
}

@media screen and (max-width: 480px) {
  .member {
    padding: 120px 10px 90px;
  }
  .member .link .panel {
    width: 100%;
    margin-bottom: 20px;
  }
}

.policy {
  padding: 120px 20px 90px;
}

.policy .wrap {
  max-width: 1040px;
  padding: 0 20px 40px;
  margin: 0 auto;
}

.policy .wrap .edit {
  margin-bottom: 60px;
}

.policy .wrap .edit p {
  margin-bottom: 40px;
}

.policy .wrap .reserve .text {
  margin: 60px 0 40px;
}

.policy .wrap .reserve p img {
  width: 90%;
  border: solid 1px #000;
  display: block;
  margin: 20px auto 0;
}

.policy .wrap .reserve #air {
  margin: 60px auto 0;
  font-size: 20px;
  font-size: 2rem;
  width: calc(100% - 40px);
  max-width: 380px;
}

.resident {
  padding: 120px 20px 90px;
}

.resident .resident_list {
  max-width: 1000px;
  margin: 50px auto 0;
  word-break: break-all;
}

.resident .resident_list li .link {
  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;
  min-height: 120px;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  color: #000;
  -webkit-transition: .2s ease;
  transition: .2s ease;
}

.resident .resident_list li .link .text {
  width: 80%;
  font-weight: normal;
}

.resident .resident_list li .link .text .name {
  font-size: 18px;
  font-weight: bold;
}

.resident .resident_list li .link .text .url {
  font-weight: normal;
  color: #ccc;
  font-size: 14px;
}

.resident .resident_list li .link .text .description p {
  font-weight: normal;
  font-size: 14px;
}

.resident .resident_list li .link i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 24px;
  color: #ccc;
}

.resident .resident_list a.link:hover {
  background: #fafafa;
}

@media screen and (max-width: 480px) {
  .resident {
    padding: 120px 10px 90px;
  }
}

.en_centering {
  max-width: 800px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.grecaptcha-badge {
  visibility: hidden;
}
/*# sourceMappingURL=style_20210115.css.map */