@charset "UTF-8";
/*  Slider styles
-------------------------*/
.slider-show {
  display: none;
}
.slider-show.slick-initialized {
  display: block;
  /*slick-initializedが付与されたら表示*/
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide > div {
  font-size: 0;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-arrow {
  position: absolute;
  text-indent: -9999px;
  cursor: pointer;
}

.slick-dots {
  position: absolute;
}

/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  filter: blur(3px);
}

/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(0, 0, 0, 0.6);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 10px 18px 0;
}

/* Default theme styles of the modal dialog */
.remodal {
  box-sizing: border-box;
  width: 100%;
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
  background: #fff;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */
.remodal-close {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "×";
  text-align: center;
}

/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* Keyframes
   ========================================================================== */
@keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0.95);
    opacity: 0;
    filter: blur(0);
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 1000px;
  }
}
/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 1000px;
}

/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
  touch-action: none;
}

/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

@media (max-width: 768px) {
  .disp-pc {
    display: none;
  }
}
@media (min-width: 769px) {
  .disp-sp {
    display: none;
  }
}
.wrapper {
  background-color: #edf1f4;
  padding-top: 90px;
}
@media (max-width: 768px) {
  .wrapper {
    padding-top: 70px;
  }
}

.contents-type1 .box-in .global-contents {
  padding: 120px 0 0 0;
}
.contents-type1 .box-in .global-contents .contents-in {
  width: calc(100% - 240px);
  margin: 0 auto;
  position: relative;
}
.contents-type1 .box-in .global-contents .lead-text {
  font-weight: bold;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: #2c2c2c;
}
.contents-type1 .box-in .global-contents .event-contents {
  margin-top: 60px;
}
.contents-type1 .box-in .global-contents .event-contents .event-ttl {
  font-weight: bold;
  font-size: 36px;
  line-height: 1;
  text-align: center;
  color: #2c2c2c;
}
.contents-type1 .box-in .global-contents .event-contents .event-box {
  margin-top: 30px;
  background-color: #dbf1ff;
  padding: 0 0 80px 0;
}
.contents-type1 .box-in .global-contents .event-contents .event-box .box-contents-in-pc .works-map {
  position: relative;
}
.contents-type1 .box-in .global-contents .event-contents .event-box .box-contents-in-pc .works-map .category-tooltip {
  position: absolute;
  cursor: pointer;
}
.contents-type1 .box-in .global-contents .event-contents .event-box .box-contents-in-pc .works-map .category-tooltip .box-in {
  position: relative;
  background-color: #fff;
  border: 1px solid #005BAC;
  border-radius: 20px;
}
.contents-type1 .box-in .global-contents .event-contents .event-box .box-contents-in-pc .works-map .category-tooltip .box-in:after {
  position: absolute;
  content: "";
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 12px solid #005BAC;
  border-bottom: 0;
  z-index: 0;
}
.contents-type1 .box-in .global-contents .event-contents .event-box .box-contents-in-pc .works-map .category-tooltip .box-in:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 11px solid #fff;
  border-bottom: 0;
  z-index: 2;
}
.contents-type1 .box-in .global-contents .event-contents .event-box .box-contents-in-pc .works-map .category-tooltip .box-in .category-text {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  color: #005cac;
  padding: 12px 20px;
}
.contents-type1 .box-in .global-contents .event-contents .event-box .box-contents-in-pc .works-map .category-tooltip.category1 {
  width: 8.84%;
  top: 12.7%;
  left: 21.87%;
}
.contents-type1 .box-in .global-contents .event-contents .event-box .box-contents-in-pc .works-map .category-tooltip.category2 {
  width: 10.26%;
  top: 7.22%;
  left: 41.62%;
}
.contents-type1 .box-in .global-contents .event-contents .event-box .box-contents-in-pc .works-map .category-tooltip.category3 {
  width: 13.11%;
  top: 5.48%;
  left: 56.08%;
}
.contents-type1 .box-in .global-contents .event-contents .event-box .box-contents-in-pc .works-map .category-tooltip.category4 {
  width: 14.53%;
  top: 9.68%;
  left: 72.74%;
}
.contents-type1 .box-in .global-contents .event-contents .event-box .box-contents-in-pc .works-map .category-tooltip.category5 {
  width: 9.63%;
  top: 29.63%;
  left: 8.76%;
}
.contents-type1 .box-in .global-contents .event-contents .event-box .box-contents-in-pc .works-map .category-tooltip.category6 {
  width: 8.84%;
  top: 39.84%;
  left: 22.74%;
}
.contents-type1 .box-in .global-contents .event-contents .event-box .box-contents-in-pc .works-map .category-tooltip.category7 {
  width: 15.91%;
  top: 21.46%;
  left: 48.63%;
}
.contents-type1 .box-in .global-contents .event-contents .event-box .box-contents-in-pc .works-map .category-tooltip.category8 {
  width: 10.26%;
  top: 35.99%;
  left: 72.19%;
}
.contents-type1 .box-in .global-contents .event-contents .event-box .box-contents-in-pc .works-map .category-tooltip.category9 {
  width: 12.08%;
  top: 41.19%;
  left: 59.16%;
}
.contents-type1 .box-in .global-contents .event-contents .event-box .box-contents-in-pc .works-map .category-tooltip.category10 {
  width: 10.26%;
  top: 45.47%;
  left: 44.7%;
}
.contents-type1 .box-in .global-contents .event-contents .event-box .box-contents-in-sp {
  display: none;
}
.contents-type1 .box-in .global-contents .event-contents .event-box .event-bnr-box {
  position: relative;
  width: 100%;
  max-width: 726px;
  margin: -13% auto 0 auto;
  padding: 40px 0;
  background-color: #fff;
  border-radius: 20px;
  text-align: center;
}
.contents-type1 .box-in .global-contents .event-contents .event-box .event-bnr-box .top-box {
  width: 515px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contents-type1 .box-in .global-contents .event-contents .event-box .event-bnr-box .top-box .logo-img {
  width: 220px;
}
.contents-type1 .box-in .global-contents .event-contents .event-box .event-bnr-box .top-box .event-text {
  width: calc(100% - 16px - 220px);
  text-align: left;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0;
  color: #2c2c2c;
}
.contents-type1 .box-in .global-contents .event-contents .event-box .event-bnr-box .bnr-img {
  width: 490px;
  margin: 30px auto 0 auto;
}
.contents-type1 .box-in .global-contents .event-contents .event-box .event-bnr-box .js_photo_box {
  display: flex;
  justify-content: space-between;
  width: 490px;
  margin: 20px auto 0;
}
.contents-type1 .box-in .global-contents .event-contents .event-box .event-bnr-box .js_photo_box li {
  flex-basis: 240px;
}
.contents-type1 .box-in .global-contents .event-contents .event-box .event-bnr-box .js_photo_box li img {
  max-width: 100%;
}
.contents-type1 .box-in .global-contents .promotion-top-ttl {
  margin-top: 70px;
  font-weight: bold;
  font-size: 36px;
  line-height: 1;
  text-align: center;
  color: #2c2c2c;
}
.contents-type1 .box-in .global-contents .promotion-list {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
}
.contents-type1 .box-in .global-contents .promotion-list .promotion-box {
  width: 31.3%;
  border-radius: 10px;
  margin: 0 0 30px 3.05%;
  border: 1px solid #dbdbdb;
  padding: 25px 30px 25px 30px;
  position: relative;
}
.contents-type1 .box-in .global-contents .promotion-list .promotion-box:before {
  content: "";
  position: absolute;
  top: -1px;
  left: 30px;
  background: #005bac;
  width: 20px;
  height: 4px;
}
.contents-type1 .box-in .global-contents .promotion-list .promotion-box:nth-child(3n+1) {
  margin: 0 0 30px 0;
}
.contents-type1 .box-in .global-contents .promotion-list .promotion-box .box-in {
  width: 100%;
  height: 100%;
}
.contents-type1 .box-in .global-contents .promotion-list .promotion-box .box-in .promotion-box-ttl {
  font-weight: bold;
  font-size: 20px;
  line-height: 28px;
  color: #005bac;
}
.contents-type1 .box-in .global-contents .promotion-list .promotion-box .box-in .promotion-box-text {
  margin-top: 7px;
  font-size: 15px;
  line-height: 26px;
  color: #2c2c2c;
}
.contents-type1 .box-in .global-contents .work-contents {
  margin-top: 70px;
}
.contents-type1 .box-in .global-contents .work-contents .work-contents-ttl {
  font-weight: bold;
  font-size: 36px;
  line-height: 1;
  text-align: center;
  color: #2c2c2c;
}
.contents-type1 .box-in .global-contents .work-contents .work-list {
  display: flex;
  flex-wrap: wrap;
}
.contents-type1 .box-in .global-contents .work-contents .work-list .work-box {
  width: 31%;
  margin: 40px 0 0 3.5%;
}
.contents-type1 .box-in .global-contents .work-contents .work-list .work-box:nth-child(3n+1) {
  margin: 40px 0 0 0;
}
.contents-type1 .box-in .global-contents .work-contents .work-list .work-box .item-name {
  margin-top: 15px;
  font-weight: bold;
  font-size: 18px;
  line-height: 28px;
  color: #005cac;
}
.contents-type1 .box-in .global-contents .work-contents .work-list .work-box .item-text {
  font-size: 14px;
  line-height: 26px;
  color: #2c2c2c;
}
.contents-type1 .box-in .global-contents .work-contents .work-list .work-box .tag-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}
.contents-type1 .box-in .global-contents .work-contents .work-list .work-box .tag-list .item-tag {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  color: #005bac;
  border: 1px solid #005bac;
  padding: 7px 12px;
  border-radius: 15px;
  margin: 10px 10px 0 0;
}
.contents-type1 .box-in .global-contents .group-company-ttl {
  font-weight: bold;
  font-size: 36px;
  line-height: 1;
  text-align: center;
  color: #2c2c2c;
  margin-top: 70px;
}
.contents-type1 .box-in .global-contents .tab-group {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.contents-type1 .box-in .global-contents .tab-group li {
  width: calc((100% - 20px) / 2);
  height: 80px;
}
.contents-type1 .box-in .global-contents .tab-group li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-radius: 40px;
  border: 1px solid #005bac;
  position: relative;
  text-align: center;
  padding: 0 44px;
}
.contents-type1 .box-in .global-contents .tab-group li a .btn-text {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 26px;
  color: #005bac;
}
.contents-type1 .box-in .global-contents .tab-group li a .btn-arrow {
  position: absolute;
  overflow: hidden;
  top: 34.5px;
  right: 30.5px;
  width: 12.1px;
}
.contents-type1 .box-in .global-contents .tab-group li a .btn-arrow img {
  width: 100%;
}
.contents-type1 .box-in .global-contents .tab-group li:hover .btn-arrow {
  animation: arrow_down 0.5s;
}
.contents-type1 .box-in .btn-more.size-l {
  width: 520px;
  height: 100px;
  margin: 60px auto 0 auto;
}
.contents-type1 .box-in .btn-more.size-l a {
  border-radius: 50px;
}
.contents-type1 .box-in .btn-more.size-l a .btn-text {
  font-size: 18px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.contents-type1 .box-in .btn-more.size-l a .btn-arrow {
  top: 43px;
}
@media screen and (max-width: 1366px) {
  .contents-type1 {
    max-width: calc(92.6793557833% + 15px);
  }
}
@media screen and (max-width: 1290px) {
  .contents-type1 .box-in .global-contents .contents-in {
    width: 85.3587115666%;
  }
}
@media (max-width: 768px) {
  .contents-type1 .box-in .global-contents {
    padding: 25px 0 0 0;
  }
  .contents-type1 .box-in .global-contents .contents-in {
    width: calc(100% - 50px);
  }
  .contents-type1 .box-in .global-contents .lead-text {
    font-size: 18px;
    line-height: 26px;
    text-align: left;
  }
  .contents-type1 .box-in .global-contents .event-contents {
    margin-top: 30px;
  }
  .contents-type1 .box-in .global-contents .event-contents .event-ttl {
    font-size: 28px;
  }
  .contents-type1 .box-in .global-contents .event-contents .event-box {
    padding: 0 0 40px 0;
    margin-top: 30px;
  }
  .contents-type1 .box-in .global-contents .event-contents .event-box .box-contents-in-pc {
    display: none;
  }
  .contents-type1 .box-in .global-contents .event-contents .event-box .box-contents-in-sp {
    display: block;
  }
  .contents-type1 .box-in .global-contents .event-contents .event-box .box-contents-in-sp .event-btn-list {
    width: calc(100% - 50px);
    margin: -50px auto 0 auto;
    position: relative;
  }
  .contents-type1 .box-in .global-contents .event-contents .event-box .box-contents-in-sp .event-btn-list li {
    border: 1px solid #005cac;
    background-color: #fff;
    font-weight: bold;
    height: 60px;
    border-radius: 15px;
    font-size: 18px;
    line-height: 1;
    text-align: center;
    color: #005cac;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-top: 10px;
  }
  .contents-type1 .box-in .global-contents .event-contents .event-box .box-contents-in-sp .event-btn-list:first-child {
    margin-top: 0;
  }
  .contents-type1 .box-in .global-contents .event-contents .event-box .event-bnr-box {
    width: calc(100% - 50px);
    margin: 30px auto 0 auto;
    padding: 20px 25px 30px 25px;
    border-radius: 10px;
  }
  .contents-type1 .box-in .global-contents .event-contents .event-box .event-bnr-box .top-box {
    width: 100%;
    margin: 0 auto;
    display: block;
  }
  .contents-type1 .box-in .global-contents .event-contents .event-box .event-bnr-box .top-box .logo-img {
    width: 56%;
    max-width: 200px;
    margin: 0 auto;
  }
  .contents-type1 .box-in .global-contents .event-contents .event-box .event-bnr-box .top-box .event-text {
    width: 100%;
    text-align: center;
    font-size: 12px;
    line-height: 18px;
  }
  .contents-type1 .box-in .global-contents .event-contents .event-box .event-bnr-box .bnr-img {
    width: 100%;
    margin: 20px auto 0 auto;
  }
  .contents-type1 .box-in .global-contents .event-contents .event-box .event-bnr-box .js_photo_box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin: 3vw auto 0;
  }
  .contents-type1 .box-in .global-contents .event-contents .event-box .event-bnr-box .js_photo_box li {
    flex-basis: 100%;
    margin-bottom: 2vw;
  }
  .contents-type1 .box-in .global-contents .event-contents .event-box .event-bnr-box .js_photo_box li img {
    max-width: 100%;
  }
  .contents-type1 .box-in .global-contents .promotion-top-ttl {
    margin-top: 30px;
    font-size: 28px;
  }
  .contents-type1 .box-in .global-contents .promotion-list {
    margin-top: 30px;
    display: block;
    flex-wrap: wrap;
  }
  .contents-type1 .box-in .global-contents .promotion-list .promotion-box {
    width: 100%;
    border-radius: 10px;
    margin: 0 0 20px 0;
  }
  .contents-type1 .box-in .global-contents .promotion-list .promotion-box:nth-child(3n+1) {
    margin: 0 0 20px 0;
  }
  .contents-type1 .box-in .global-contents .promotion-list .promotion-box .box-in .promotion-box-text {
    margin-top: 7px;
    font-size: 14px;
    line-height: 26px;
  }
  .contents-type1 .box-in .global-contents .work-contents {
    margin-top: 30px;
  }
  .contents-type1 .box-in .global-contents .work-contents .work-contents-ttl {
    font-size: 28px;
  }
  .contents-type1 .box-in .global-contents .work-contents .work-list {
    display: block;
  }
  .contents-type1 .box-in .global-contents .work-contents .work-list .work-box {
    width: 100%;
    margin: 30px 0 0 0;
  }
  .contents-type1 .box-in .global-contents .work-contents .work-list .work-box:nth-child(3n+1) {
    margin: 30px 0 0 0;
  }
  .contents-type1 .box-in .global-contents .work-contents .work-list .work-box .item-name {
    margin-top: 12px;
    font-size: 20px;
    line-height: 28px;
  }
  .contents-type1 .box-in .global-contents .work-contents .work-list .work-box .tag-list {
    display: flex;
    margin-top: 10px;
  }
  .contents-type1 .box-in .global-contents .work-contents .work-list .work-box .tag-list .item-tag {
    display: inline-block;
    font-size: 12px;
    line-height: 1;
    color: #005bac;
    border: 1px solid #005bac;
    padding: 7px 12px;
    border-radius: 15px;
  }
  .contents-type1 .box-in .global-contents .group-company-ttl {
    font-size: 28px;
    line-height: 38px;
    margin-top: 30px;
  }
  .contents-type1 .box-in .global-contents .tab-group {
    display: block;
    margin-top: 25px;
  }
  .contents-type1 .box-in .global-contents .tab-group li {
    width: 100%;
    height: 70px;
    margin-top: 12px;
  }
  .contents-type1 .box-in .global-contents .tab-group li:first-child {
    margin-top: 0;
  }
  .contents-type1 .box-in .global-contents .tab-group li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-radius: 40px;
    border: 1px solid #005bac;
    position: relative;
    text-align: center;
    padding: 0 44px;
  }
  .contents-type1 .box-in .global-contents .tab-group li a .btn-text {
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.08em;
    line-height: 26px;
    color: #005bac;
  }
  .contents-type1 .box-in .global-contents .tab-group li a .btn-arrow {
    top: 29.5px;
    right: 29.5px;
    width: 10.35px;
  }
  .contents-type1 .box-in .btn-more.size-l {
    width: 100%;
    margin: 30px auto 0 auto;
    height: 96px;
  }
  .contents-type1 .box-in .btn-more.size-l a {
    border-radius: 50px;
  }
  .contents-type1 .box-in .btn-more.size-l a .btn-text {
    font-size: 16px;
    line-height: 22px;
    text-align: center;
  }
  .contents-type1 .box-in .btn-more.size-l a .btn-arrow {
    width: 11.25px;
    top: 45px;
    right: 25px;
  }
}

.remodal-overlay {
  background: rgba(0, 0, 0, 0.7);
}

.remodal {
  border-radius: 20px;
}
.remodal .box-in {
  padding: 50px 70px 70px 70px;
  position: relative;
}
.remodal .box-in .modol-close {
  position: absolute;
  width: 30px;
  height: 30px;
  top: -30px;
  right: -35px;
  cursor: pointer;
}
.remodal .box-in .ttl1 {
  font-weight: bold;
  font-size: 36px;
  line-height: 52px;
  text-align: center;
  color: #2c2c2c;
}
.remodal .box-in .item-box {
  margin-top: 25px;
}
.remodal .box-in .item-box .item-img {
  max-width: 300px;
  margin: 45px auto 0 auto;
}
.remodal .box-in .item-box .item-text {
  margin-top: 30px;
  font-size: 15px;
  line-height: 32px;
  text-align: left;
  color: #2c2c2c;
}
.remodal .box-in .btn-more {
  width: 520px;
  height: 100px;
  margin: 30px auto 0 auto;
}
.remodal .box-in .btn-more a {
  border-radius: 50px;
}
.remodal .box-in .btn-more a .btn-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
}
.remodal .box-in .btn-more a .btn-arrow {
  top: 43px;
}
@media (max-width: 768px) {
  .remodal {
    border-radius: 15px;
  }
  .remodal .box-in {
    padding: 30px;
    position: relative;
  }
  .remodal .box-in .modol-close {
    position: absolute;
    width: 18px;
    height: 18px;
    top: -25px;
    right: 0;
  }
  .remodal .box-in .ttl1 {
    font-size: 26px;
    line-height: 38px;
  }
  .remodal .box-in .item-box {
    margin-top: 25px;
  }
  .remodal .box-in .item-box .item-text {
    margin-top: 30px;
    font-size: 14px;
    line-height: 28px;
  }
  .remodal .box-in .btn-more {
    width: 100%;
    height: 80px;
    margin: 30px auto 0 auto;
  }
  .remodal .box-in .btn-more a {
    border-radius: 40px;
  }
  .remodal .box-in .btn-more a .btn-text {
    font-size: 16px;
  }
  .remodal .box-in .btn-more a .btn-arrow {
    width: 10.35px;
    right: 20px;
    top: 35px;
  }
}

.remodal-wrapper {
  overflow: auto;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .remodal-wrapper {
    padding-left: 48px;
    padding-right: 48px;
  }
}/*# sourceMappingURL=global.css.map */