@charset "UTF-8";
/*--------------------------------
  グローバルメニュートップだけの修正
----------------------------------*/
.global-wrap {
  background-color: #1596ff;
}

#global > li > a {
  color: #fff;
}

#global > li > a::after {
  background-color: #fff;
}

#global > li::after {
  border-left: solid 1px rgba(255, 255, 255, 0.8);
}

#global > li:last-child::after {
  border-right: solid 1px rgba(255, 255, 255, 0.8);
}

/*------------------------------------------
  組合員ページ新着の吹き出し
------------------------------------------*/
.speech_balloon {
  display: none;
}

@media print, screen and (min-width: 800px) {
  .speech_balloon {
    display: inline-block;
    border-radius: 6px;
    font-size: 0.8em;
    font-weight: 700;
    background-color: white;
    padding: 0.25em 1em;
    max-width: 15em;
    position: absolute;
    top: 58px;
    right: 0.75em;
    z-index: 2006;
    vertical-align: middle;
    box-shadow: 2px 2px 4px 2px rgba(0, 0, 0, 0.3);
  }
  .speech_balloon:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: -1.5em;
    left: 6em;
    border: 12px solid transparent;
    border-bottom: 12px solid white;
  }
  .speech_balloon span.blink {
    animation: blinkEffect 0.5s ease-in-out infinite;
  }
  .speech_balloon span.exq {
    color: red;
  }
}

@keyframes blinkEffect {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*------------------------------------------
  レスポンシブで動画から画像スライドショー
------------------------------------------*/
.fade-image {
  display: none;
  height: 100vh;
  position: relative;
}

.fade-image div {
  text-align: center;
  position: absolute;
  top: 0;
  left: 50%;
  height: 100vh;
  transform: translateX(-50%) scale(1);
  transform-origin: center;
  transition: transform 7s linear;
}

.fade-image div img {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  height: 100vh;
}

.fade-image .current {
  transform: translateX(-50%) scale(1.05);
}

.movie-wrap {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: #2464e6;
}

.movie-wrap .mesh {
  background-image: url("../images/mesh.png");
  background-repeat: repeat;
  z-index: 998;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.movie-wrap video {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  min-width: 100vw;
  min-height: 100vh;
  pointer-events: none;
  left: 50%;
  transform: translateX(-50%);
}

.movie-wrap > img {
  position: absolute;
  z-index: 600;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

/*----------------------
  ヘッダー
----------------------*/
.header h1 a {
  color: #fff;
  cursor: default;
}

/*----------------------
  コンテンツ
----------------------*/
.col2-55 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.col2-55 > .left {
  margin-bottom: 20px;
}

.col2-55 > .left, .col2-55 > .right {
  width: 100%;
  border: solid 1px #2464e6;
  padding: 10px;
  position: relative;
}

.col2-55 .col-head {
  position: absolute;
  top: 0;
  left: 5px;
  z-index: 2;
  transform: translateY(-50%);
  font-size: 1.2em;
  font-weight: bold;
  color: #2464e6;
  background-color: #fff;
  padding: 0 10px;
}

.col2-inner {
  display: flex;
  justify-content: space-between;
}

.col2-inner p {
  margin-top: 3px;
  position: relative;
  z-index: 3;
}

.col2-inner .left {
  width: 54%;
  font-size: 0.8em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.col2-inner .right {
  width: 44%;
  overflow: hidden;
  line-height: 0;
}

.col2-inner .right img {
  width: 100%;
  min-height: 180px;
}

.col2-btns {
  width: 100%;
  display: inline-flex;
  flex-wrap: wrap;
  line-height: 0;
}

.col2-btns a:first-child {
  margin-bottom: 5px;
}

.col2-btns .blue {
  line-height: 1.5em;
  display: block;
  width: 100%;
  background-color: #2464e6;
  color: #fff;
  font-weight: bold;
  padding: 10px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 1.2em;
}

.col2-btns .img {
  display: inline-block;
  line-height: 0;
}

.col2-btns img {
  width: 100%;
  height: auto;
}

@media print, screen and (min-width: 800px) {
  .col2-55 > .left {
    margin-bottom: 0;
  }
  .col2-55 > .left, .col2-55 > .right {
    width: 49%;
  }
}

.foot-img {
  margin-top: 20px;
  text-align: center;
  line-height: 0;
  margin-bottom: 30px;
  box-sizing: border-box;
  background-image: url(../images/foot_2.png);
  background-repeat: repeat-x;
}

.foot-img img {
  max-width: 920px;
  width: 100%;
  height: auto;
}

.top-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}

.top-flex .left {
  padding: 0 20px;
  margin-bottom: 30px;
}

.top-flex .right {
  text-align: center;
  width: 100%;
}

.top-flex .right img {
  max-width: 320px;
  width: 100%;
  border-radius: 3px;
}

@media print, screen and (min-width: 768px) {
  .top-flex .left {
    width: 60%;
  }
  .top-flex .right {
    width: 40%;
  }
}

.hall-wrap {
  width: 100%;
  background-color: #f0f0f0;
  padding: 30px 0;
}

.hall-wrap .hall {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px;
}

.hall-wrap .hall .hall-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hall-wrap .hall .hall-flex .left {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column;
  max-width: 450px;
  width: 100%;
  order: 2;
}

.hall-wrap .hall .hall-flex .left .hall-wide {
  width: 100%;
  min-height: 0%;
}

.hall-wrap .hall .hall-flex .left .hall-wide img {
  width: 100%;
}

.hall-wrap .hall .hall-flex .left .hall-2col {
  display: flex;
  justify-content: space-between;
  width: 100%;
  line-height: 0;
}

.hall-wrap .hall .hall-flex .left .hall-2col p:first-child {
  margin-right: 10px;
}

.hall-wrap .hall .hall-flex .left .hall-2col img {
  width: 100%;
}

.hall-wrap .hall .hall-flex .right {
  max-width: 450px;
  width: 100%;
  height: 100%;
  order: 1;
  margin-bottom: 30px;
}

.hall-wrap .hall .hall-flex .right .hall-card {
  background-color: #fff;
  overflow: hidden;
  position: relative;
  padding: 10px 40px;
  min-height: 530px;
}

.hall-wrap .hall .hall-flex .right .hall-card .h3-card {
  text-align: right;
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #ff8400 0%, #ff4800 99%);
  /* Chrome10-25,Safari5.1-6 */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #ff8400;
  font-size: 1.875em;
  margin-bottom: 20px;
}

.hall-wrap .hall .hall-flex .right .hall-card::after {
  content: '';
  display: block;
  width: 200px;
  height: 200px;
  background-color: #ffe4cc;
  position: absolute;
  right: -100px;
  bottom: -100px;
  transform: rotate(45deg);
  z-index: 0;
}

.hall-wrap .hall .hall-flex .right .hall-card .card-desc {
  margin-bottom: 15px;
}

.hall-wrap .hall .hall-flex .right .hall-card .card-button {
  position: relative;
}

.hall-wrap .hall .hall-flex .right .hall-card .card-button::after {
  content: '';
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  right: 30px;
  top: calc(50% - 2px);
  border-top: solid 2px;
  border-right: solid 2px;
  transform: rotate(45deg) translateY(-50%);
  color: #fff;
}

.hall-wrap .hall .hall-flex .right .hall-card p {
  position: relative;
  z-index: 1;
  line-height: 2.25em;
}

.hall-wrap .hall .hall-flex .right .hall-card p a {
  display: block;
  width: 100%;
  background: #ff8400;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #ff8400 0%, #ff4800 99%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff8400', endColorstr='#ff4800',GradientType=1 );
  /* IE6-9 */
  color: #fff;
  text-decoration: none;
  padding: 14px 35px 14px 20px;
  border-radius: 5px;
  margin-bottom: 10px;
  font-weight: bold;
}

.hall-wrap .hall .hall-flex .right .hall-card p a span {
  display: inline-block;
}

@media print, screen and (min-width: 990px) {
  .hall-wrap .hall .hall-flex {
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: row;
  }
  .hall-wrap .hall .hall-flex .left {
    order: 1;
    margin-right: 10px;
    min-height: 530px;
  }
  .hall-wrap .hall .hall-flex .right {
    order: 2;
    margin-bottom: 0;
  }
}

.shoku-wrap {
  width: 100%;
  background-color: #fff;
  padding: 30px 0;
}

.shoku-wrap .shoku {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px;
}

.shoku-wrap .shoku .shoku-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.shoku-wrap .shoku .shoku-flex .right {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column;
  max-width: 450px;
  width: 100%;
  height: 100%;
}

.shoku-wrap .shoku .shoku-flex .right .shoku-wide {
  width: 100%;
  min-height: 0%;
}

.shoku-wrap .shoku .shoku-flex .right .shoku-wide img {
  width: 100%;
}

.shoku-wrap .shoku .shoku-flex .right .shoku-2col {
  display: flex;
  justify-content: space-between;
  width: 100%;
  line-height: 0;
}

.shoku-wrap .shoku .shoku-flex .right .shoku-2col p:first-child {
  margin-right: 10px;
}

.shoku-wrap .shoku .shoku-flex .right .shoku-2col img {
  width: 100%;
}

.shoku-wrap .shoku .shoku-flex .left {
  max-width: 450px;
  width: 100%;
  height: 100%;
  margin-bottom: 30px;
}

.shoku-wrap .shoku .shoku-flex .left .shoku-card {
  min-height: 530px;
  color: #fff;
  overflow: hidden;
  position: relative;
  padding: 10px 40px;
  background: #ff345f;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #ff345f 0%, #ff5f45 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff345f', endColorstr='#ff5f45',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
}

.shoku-wrap .shoku .shoku-flex .left .shoku-card::after {
  content: '';
  display: block;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  right: -100px;
  bottom: -100px;
  transform: rotate(45deg);
  z-index: 0;
}

.shoku-wrap .shoku .shoku-flex .left .shoku-card .h3-card {
  font-size: 1.875em;
  margin-bottom: 20px;
}

.shoku-wrap .shoku .shoku-flex .left .shoku-card .card-desc {
  margin-bottom: 40px;
  font-size: 1.125em;
}

.shoku-wrap .shoku .shoku-flex .left .shoku-card .card-button {
  position: relative;
}

.shoku-wrap .shoku .shoku-flex .left .shoku-card .card-button::after {
  content: '';
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 30px;
  top: calc(50% - 2px);
  border-top: solid 2px;
  border-right: solid 2px;
  transform: rotate(45deg) translateY(-50%);
  color: #ff1d1d;
}

.shoku-wrap .shoku .shoku-flex .left .shoku-card .card-images {
  max-width: 100%;
  height: auto;
}

.shoku-wrap .shoku .shoku-flex .left .shoku-card p {
  position: relative;
  z-index: 1;
  line-height: 2.25em;
}

.shoku-wrap .shoku .shoku-flex .left .shoku-card p a {
  display: block;
  width: 100%;
  background: #fff;
  color: #ff1d1d;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 5px;
  margin-bottom: 10px;
  font-weight: bold;
}

@media print, screen and (min-width: 990px) {
  .shoku-wrap .shoku .shoku-flex {
    justify-content: space-between;
    flex-direction: row;
  }
  .shoku-wrap .shoku .shoku-flex .right {
    margin-left: 10px;
    min-height: 530px;
  }
  .shoku-wrap .shoku .shoku-flex .left {
    margin-bottom: 0;
  }
}

.top-btns {
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.top-btns li {
  width: 48%;
  margin-bottom: 10px;
  text-align: center;
  line-height: 0;
}

.top-btns li a {
  display: inline-block;
  max-width: 170px;
  transition: transform .3s ease,box-shadow .3s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
}

.top-btns li a:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.15);
}

.top-btns li a img {
  width: 100%;
  height: auto;
}

@media print, screen and (min-width: 800px) {
  .top-btns {
    max-width: 800px;
  }
  .top-btns li {
    width: 24%;
  }
}

.h2-top-g {
  text-align: center;
  color: #2464e6;
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #2464e6 0%, #9537b4 100%);
  /* Chrome10-25,Safari5.1-6 */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 30px 10px;
  font-size: 2.1em;
}

.h2-top-g .break {
  display: inline-block;
}

.h2-top-r {
  text-align: center;
  font-size: 1.875em;
  color: #fff;
  font-weight: normal;
  margin-bottom: 40px;
}

.h2-top-r span {
  font-size: 0.6em;
  color: rgba(255, 255, 255, 0.3);
}

.h3-top {
  font-size: 30px;
}

.content-wrap {
  width: 100%;
  position: relative;
  z-index: 100;
}

.content-wrap .content {
  width: 100%;
  max-width: 1040px;
  padding: 30px;
  margin: 0px auto;
}

.info-2col {
  display: flex;
  justify-content: space-around;
  list-style: none;
  flex-wrap: wrap;
}

.info-2col li {
  display: flex;
  margin-bottom: 30px;
  transition: transform 0.1s ease-in-out;
}

.info-2col li:hover {
  transform: translateY(-5px);
}

.info-2col a {
  display: flex;
  flex-wrap: wrap;
  width: 400px;
  height: 220px;
  border-radius: 6px;
  font-size: 22px;
  text-decoration: none;
  color: #fff;
  padding: 20px;
  box-sizing: border-box;
}

.info-2col a p {
  width: 100%;
  text-align: center;
}

.info-2col .info-career {
  background-color: #307cef;
}

.info-2col .info-general {
  background-color: #f23990;
}

.gmap {
  margin-bottom: 80px;
}

.member-wrap {
  background-color: #1596ff;
  width: 100%;
  padding: 20px 10px 40px 10px;
  margin-bottom: 30px;
}

.member-wrap .member {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 5px;
}

.member-wrap .member .member-list {
  background-color: #fff;
  padding: 30px 10px;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
}

.member-wrap .member .member-list:last-child::after {
  content: '';
  display: block;
  width: 48%;
}

.member-wrap .member .member-list li {
  width: 48%;
  margin-bottom: 10px;
}

.member-wrap .member .member-list li:last-of-type a {
  box-sizing: border-box;
  color: #2464e6;
  background-color: #fff;
  border: solid 1px #114cc2;
}

.member-wrap .member .member-list li:last-of-type a::before {
  border-top: 5px solid transparent;
  border-left: 8.6602540379px solid #2464e6;
  border-bottom: 5px solid transparent;
}

.member-wrap .member .member-list li:last-of-type a::after {
  background-color: #fff;
  border-right: solid 1px #114cc2;
  box-sizing: border-box;
}

.member-wrap .member .member-list li a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #2464e6;
  padding: 10px 0;
  padding-left: 30px;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  position: relative;
}

.member-wrap .member .member-list li a::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  border-top: 5px solid transparent;
  border-left: 8.6602540379px solid #fff;
  border-bottom: 5px solid transparent;
  z-index: 15;
}

.member-wrap .member .member-list li a::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 100%;
  background-color: #114cc2;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

@media print, screen and (min-width: 1000px) {
  .member-wrap .member .member-list:last-child::after {
    content: '';
    width: 32%;
    min-width: 310px;
  }
  .member-wrap .member .member-list li {
    width: 32%;
    min-width: 310px;
  }
}

@media screen and (max-width: 600px) {
  .member-wrap .member .member-list {
    padding: 30px 20px;
  }
  .member-wrap .member .member-list:last-child::after {
    content: '';
    width: 100%;
  }
  .member-wrap .member .member-list li {
    width: 100%;
  }
}
