@charset "UTF-8";

@keyframes circleLoading {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  position: absolute !important;
  top: -9999px;
  left: -9999px;
  visibility: hidden;
  margin: 0;
}

.fancybox-container {
  position: fixed;
  z-index: 99992;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: none;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

.fancybox-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.fancybox-outer {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
  -webkit-transition-duration: inherit;
  transition-duration: inherit;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.fancybox-is-open .fancybox-bg {
  opacity: .9;
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  position: absolute;
  z-index: 99997;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .25s ease, visibility 0s ease .25s;
  transition: opacity .25s ease, visibility 0s ease .25s;
  direction: ltr;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity .25s ease 0s, visibility 0s ease 0s;
  transition: opacity .25s ease 0s, visibility 0s ease 0s;
}

.fancybox-infobar {
  top: 0;
  left: 0;
  min-width: 44px;
  height: 44px;
  padding: 0 10px;
  font-size: 13px;
  line-height: 44px;
  color: #ccc;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-font-smoothing: subpixel-antialiased;
  mix-blend-mode: difference;
  -webkit-touch-callout: none;
}

.fancybox-toolbar {
  top: 0;
  right: 0;
}

.fancybox-stage {
  z-index: 99994;
  overflow: visible;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  direction: ltr;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  position: absolute;
  z-index: 99994;
  top: 0;
  left: 0;
  display: none;
  overflow: auto;
  width: 100%;
  height: 100%;
  padding: 44px;
  outline: none;
  text-align: center;
  white-space: normal;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-backface-visibility: hidden;
  -webkit-overflow-scrolling: touch;
}

.fancybox-slide::before {
  display: inline-block;
  width: 0;
  height: 100%;
  font-size: 0;
  vertical-align: middle;
  content: '';
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  position: relative;
  display: inline-block;
  overflow: auto;
  max-width: 100%;
  margin: 0;
  padding: 44px;
  background: #fff;
  text-align: left;
  vertical-align: middle;
  -webkit-overflow-scrolling: touch;
}

.fancybox-slide--image .fancybox-content {
  position: absolute;
  z-index: 99995;
  top: 0;
  left: 0;
  overflow: visible;
  max-width: none;
  padding: 0;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-container [data-selectable='true'] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  overflow: visible;
  width: 100%;
  height: 100%;
  padding: 0;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-video,
.fancybox-iframe {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.fancybox-iframe {
  position: absolute;
  top: 0;
  left: 0;
}

.fancybox-error {
  width: 100%;
  max-width: 400px;
  padding: 40px;
  background: #fff;
  cursor: default;
}

.fancybox-error p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 20px;
  color: #444;
}

.fancybox-button {
  position: relative;
  display: inline-block;
  visibility: inherit;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 10px;
  border: 0;
  border-radius: 0;
  background: rgba(30, 30, 30, 0.6);
  -webkit-box-shadow: none;
  box-shadow: none;
  vertical-align: top;
  cursor: pointer;
  -webkit-transition: color .2s;
  transition: color .2s;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  outline: none;
  color: #888;
  cursor: default;
}

.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  position: relative;
  display: block;
  overflow: visible;
  width: 100%;
  height: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none;
}

.fancybox-progress {
  position: absolute;
  z-index: 99998;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: #ff5268;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0;
  transform-origin: 0;
}

.fancybox-close-small {
  position: absolute;
  z-index: 401;
  top: -44px;
  right: -12px;
  padding: 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ccc;
  cursor: pointer;
  opacity: .8;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  top: 0;
  right: 0;
  padding: 10px;
  color: currentColor;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

.fancybox-navigation .fancybox-button {
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
  height: 100px;
  background-clip: content-box;
  opacity: 0;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  right: 0;
  padding: 31px 6px 31px 26px;
}

.fancybox-caption {
  z-index: 99996;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 75px 44px 25px 44px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.85)), color-stop(50%, rgba(0, 0, 0, 0.3)), color-stop(65%, rgba(0, 0, 0, 0.15)), color-stop(75.5%, rgba(0, 0, 0, 0.075)), color-stop(82.85%, rgba(0, 0, 0, 0.037)), color-stop(88%, rgba(0, 0, 0, 0.019)), to(rgba(0, 0, 0, 0)));
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #eee;
  text-align: center;
  pointer-events: none;
}

.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  overflow: auto;
  max-height: 50vh;
  pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

.fancybox-loading {
  position: absolute;
  z-index: 99999;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  margin: -25px 0 0 -25px;
  padding: 0;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  background: transparent;
  opacity: .7;
  -webkit-animation: fancybox-rotate 1s linear infinite;
  animation: fancybox-rotate 1s linear infinite;
}

@-webkit-keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.fancybox-animated {
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}

@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-right: 6px;
    padding-left: 6px;
  }

  .fancybox-slide--image {
    padding: 6px 0;
  }

  .fancybox-close-small {
    right: -6px;
  }

  .fancybox-slide--image .fancybox-close-small {
    top: 0;
    right: 0;
    width: 36px;
    height: 36px;
    padding: 6px;
    background: #4e4e4e;
    color: #f2f4f6;
    opacity: 1;
  }

  .fancybox-caption {
    padding-right: 12px;
    padding-left: 12px;
  }
}

.fancybox-share {
  max-width: 90%;
  padding: 30px;
  border-radius: 3px;
  background: #f4f4f4;
  text-align: center;
}

.fancybox-share h1 {
  margin: 0 0 20px 0;
  font-size: 35px;
  font-weight: 700;
  color: #222;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  display: inline-block;
  min-width: 130px;
  margin: 0 5px 10px 5px;
  padding: 0 15px;
  border: 0;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  white-space: nowrap;
  text-decoration: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  position: relative;
  top: -1px;
  width: 25px;
  height: 25px;
  margin-right: 7px;
  vertical-align: middle;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  width: 100%;
  margin: 10px 0 0 0;
  padding: 10px 15px;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: #5d5b5b;
}

.fancybox-thumbs {
  position: absolute;
  z-index: 99995;
  top: 0;
  right: 0;
  bottom: 0;
  display: none;
  width: 212px;
  margin: 0;
  padding: 2px 2px 4px 2px;
  background: #ddd;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  position: absolute;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0;
  white-space: nowrap;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #2a2a2a;
}

.fancybox-thumbs__list a {
  position: relative;
  float: left;
  overflow: hidden;
  width: 100px;
  max-width: calc(50% - 4px);
  height: 75px;
  max-height: calc(100% - 8px);
  margin: 2px;
  padding: 0;
  outline: none;
  background-color: rgba(0, 0, 0, 0.1);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  cursor: pointer;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
}

.fancybox-thumbs__list a::before {
  position: absolute;
  z-index: 99991;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 6px solid #ff5268;
  content: '';
  opacity: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fancybox-thumbs__list a:focus::before {
  opacity: .5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1;
}

@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }

  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }

  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}

.swiper-container {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  list-style: none;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical>.swiper-wrapper {
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
}

.swiper-wrapper {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  width: 100%;
  height: 100%;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow>.swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode>.swiper-wrapper {
  margin: 0 auto;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -ms-flex-align: start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
  -webkit-box-align: start;
  align-items: flex-start;
}

.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal>.swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical>.swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  z-index: 10;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 27px 44px;
  cursor: pointer;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  pointer-events: none;
  cursor: auto;
  opacity: 0.35;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  right: auto;
  left: 10px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  z-index: 10;
  text-align: center;
  -webkit-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal>.swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  position: relative;
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  background: #007aff;
  opacity: 1;
}

.swiper-container-vertical>.swiper-pagination-bullets {
  top: 50%;
  right: 10px;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
  display: block;
  margin: 6px 0;
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  width: 8px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  white-space: nowrap;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

.swiper-pagination-progressbar {
  position: absolute;
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #007aff;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal>.swiper-pagination-progressbar,
.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.swiper-container-vertical>.swiper-pagination-progressbar,
.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  position: relative;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
  -ms-touch-action: none;
}

.swiper-container-horizontal>.swiper-scrollbar {
  position: absolute;
  z-index: 50;
  bottom: 3px;
  left: 1%;
  width: 98%;
  height: 5px;
}

.swiper-container-vertical>.swiper-scrollbar {
  position: absolute;
  z-index: 50;
  top: 1%;
  right: 3px;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

.swiper-zoom-container>img,
.swiper-zoom-container>svg,
.swiper-zoom-container>canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  margin-left: -21px;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  content: '';
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.swiper-container .swiper-notification {
  position: absolute;
  z-index: -1000;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  z-index: 1;
  visibility: hidden;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next+.swiper-slide {
  visibility: visible;
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  z-index: 0;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  z-index: 1;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  -ms-perspective: 1200px;
}

.c-desc-001 {
  padding: 60px 20px 40px;
}

@media screen and (max-width: 767px) {
  .c-desc-001 {
    padding: 40px 20px 20px;
    text-align: left;
  }
}

.c-desc-001__txt {
  line-height: 2.2;
}

.c-form {
  max-width: 1080px;
  margin: 0 auto 120px;
  padding: 0 40px;
}

@media screen and (max-width: 767px) {
  .c-form {
    margin: 0 auto 80px;
    padding: 0 20px;
  }

  .c-form .c-form__table,
  .c-form .c-form__tbody,
  .c-form .c-form__row,
  .c-form .c-form__ttl,
  .c-form .c-form__cnt {
    display: block;
  }
}

.c-form input,
.c-form textarea,
.c-form select,
.c-form button {
  font-size: 16px;
  font-size: 1.6rem;
}

.c-form input,
.c-form textarea,
.c-form select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #adadad;
}

.c-form input {
  line-height: 1;
}

.c-form input[type="file"] {
  padding: 14px 0;
  border: 0;
}

.c-form input[type="radio"],
.c-form input[type="checkbox"] {
  display: none;
}

.c-form input[type="radio"]:checked+span::after,
.c-form input[type="checkbox"]:checked+span::after {
  opacity: 1;
}

.c-form input[type="radio"]+span,
.c-form input[type="checkbox"]+span {
  position: relative;
  display: inline-block;
  padding: 0 0 0 30px;
  font-size: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}

.c-form input[type="radio"]+span::before,
.c-form input[type="radio"]+span::after,
.c-form input[type="checkbox"]+span::before,
.c-form input[type="checkbox"]+span::after {
  position: absolute;
  display: block;
  content: "";
}

.c-form input[type="radio"]+span::before,
.c-form input[type="checkbox"]+span::before {
  border: 1px solid #adadad;
}

.c-form input[type="radio"]+span::after,
.c-form input[type="checkbox"]+span::after {
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.c-form input[type="radio"]+span::before {
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 20px;
}

.c-form input[type="radio"]+span::after {
  top: 8px;
  left: 5px;
  width: 12px;
  height: 12px;
  border-radius: 20px;
  background: var(--primary-bg, #04a1af);
}

.c-form input[type="checkbox"]+span::before {
  top: 5px;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 2px;
}

.c-form input[type="checkbox"]+span::after {
  top: 0;
  left: 10px;
  width: 6px;
  height: 15px;
  border-width: 0 4px 4px 0;
  border-style: solid;
  border-color: var(--primary-bg, #04a1af);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.c-form textarea {
  min-height: 210px;
  resize: vertical;
}

.c-form__notice {
  width: 1000px;
  max-width: calc(100% - 40px);
  margin: 0 auto 40px;
  padding: 10px 20px;
  border: 2px solid red;
  background: rgba(255, 0, 0, 0.1);
  font-weight: 900;
  color: red;
}

@media screen and (max-width: 767px) {
  .c-form__notice {
    margin: 0 auto 20px;
  }
}

.c-form__error {
  display: block;
  margin: 10px 0 0;
  padding: 4px 10px;
  background: rgba(255, 0, 0, 0.1);
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 900;
  color: red;
}

.c-form__info-list {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 900;
  color: #adadad;
}

.c-form__info-list-item {
  margin: 10px 0 0;
  padding: 4px 8px;
  background: #f2f2f2;
}

.c-form__table {
  width: 100%;
  margin: 0 0 100px;
}

@media screen and (max-width: 767px) {
  .c-form__table {
    margin: 0 0 60px;
  }
}

.c-form__ttl,
.c-form__cnt {
  border-bottom: 1px solid #adadad;
  text-align: left;
  vertical-align: top;
}

.c-form__ttl {
  width: 260px;
  padding: 30px;
}

@media screen and (max-width: 1024px) {
  .c-form__ttl {
    width: 220px;
    padding: 30px 0;
  }
}

@media screen and (max-width: 767px) {
  .c-form__ttl {
    width: 100%;
    padding: 10px 0 0;
    border-bottom: 0;
  }
}

.c-form__cnt {
  padding: 30px 0 30px 30px;
}

@media screen and (max-width: 1024px) {
  .c-form__cnt {
    padding: 30px 0;
  }
}

@media screen and (max-width: 767px) {
  .c-form__cnt {
    padding: 0 0 30px;
  }
}

.c-form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  padding: 14px 0;
  -webkit-box-align: start;
  align-items: flex-start;
}

.c-form__label-val {
  margin: 4px 10px 0 0;
  padding: 0 4px 0 5px;
  font-size: 11px;
  font-size: 1.1rem;
  white-space: nowrap;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.c-form__label-val.is-require {
  background: var(--primary-bg, #04a1af);
  color: #fff;
}

.c-form__label-val.is-any {
  background: #adadad;
  color: #fff;
}

.c-form__desc {
  padding: 14px;
  background: #f2f2f2;
}

@media screen and (max-width: 767px) {
  .c-form__desc {
    padding: 14px;
  }
}

.c-form__list {
  padding: 14px 0 4px;
}

@media screen and (max-width: 767px) {
  .c-form__list {
    padding: 14px 0 0;
  }
}

.c-form__zip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .c-form__zip {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.c-form__zip input {
  width: 140px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .c-form__zip input {
    width: 80px;
  }
}

@media screen and (max-width: 374px) {
  .c-form__zip input {
    width: 70px;
  }
}

.c-form__zip-button {
  margin: 0 0 0 10px;
  padding: 8px 20px;
  border-radius: 50px;
  background: var(--primary, #04a1af);
  font-weight: 900;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .c-form__zip-button {
    margin: 10px 0 10px 10px;
    padding: 4px 10px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 374px) {
  .c-form__zip-button {
    margin: 10px 0 10px 5px;
  }
}

.c-form__zip-button::before {
  display: none;
}

.c-form__zip-hyphen {
  padding: 0 10px;
}

@media screen and (max-width: 767px) {
  .c-form__zip-hyphen {
    padding: 0 5px;
  }
}

.c-form__zip-hyphen::before {
  display: block;
  width: 20px;
  height: 1px;
  background: #adadad;
  content: "";
}

@media screen and (max-width: 767px) {
  .c-form__zip-hyphen::before {
    width: 10px;
  }
}

.c-form__check_or_radio___label {
  display: inline-block;
  margin: 0 24px 10px 0;
}

.c-form__select-wrap {
  position: relative;
}

.c-form__select-wrap::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  margin: -6px 0 0;
  border-top: 12px solid rgba(17, 17, 17, 0.8);
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  pointer-events: none;
  content: "";
}

.c-form__select-wrap select {
  padding-right: 50px;
}

.c-form__consent {
  padding: 50px 0 40px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .c-form__consent {
    padding: 30px 0 40px;
  }
}

.c-form__status {
  display: none;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  margin: 0 0 10px;
  padding: 4px;
  border: 2px solid #ff0;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .c-form__status {
    padding: 10px;
  }
}

.c-form__status::before {
  display: inline-block;
  width: 14px;
  min-width: 14px;
  max-width: 14px;
  height: 14px;
  min-height: 14px;
  max-height: 14px;
  margin: 0 10px 0 0;
  border-top: 2px solid #adadad;
  border-right: 2px solid rgba(173, 173, 173, 0.5);
  border-bottom: 2px solid #adadad;
  border-left: 2px solid rgba(173, 173, 173, 0.5);
  border-radius: 50px;
  content: "";
  -webkit-animation: circleLoading .7s linear normal infinite;
  animation: circleLoading .7s linear normal infinite;
}

.c-form__status.-view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .c-form__status-txt {
    text-align: left;
  }
}

.c-form__btn {
  position: relative;
  display: inline-block;
  width: 320px;
  max-width: 100%;
  margin: 20px 20px 30px;
  padding: 20px;
  background: var(--primary-bg, #04a1af);
  color: #fff;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .c-form__btn {
    width: 220px;
    margin: 10px 20px 20px;
    padding: 10px;
  }
}

.c-form__btn::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: rgba(17, 17, 17, 0.2);
  content: "";
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.c-form__btn:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.c-form__btn.is-back {
  background: rgba(17, 17, 17, 0.5);
}

.c-form__btn.-disabled {
  pointer-events: none;
  opacity: .5;
}

.c-form__terms {
  padding: 20px;
  border: 1px solid #eee;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .c-form__terms {
    padding: 10px;
  }
}

.c-form__terms-container {
  overflow-y: auto;
  max-height: 200px;
  padding: 20px;
}

@media screen and (max-width: 767px) {
  .c-form__terms-container {
    padding: 10px;
  }
}

.c-form__terms-ttl {
  margin: 0 0 20px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .c-form__terms-ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.c-form__terms-txt {
  margin: 0 0 40px;
  text-align: justify;
}

.c-form__terms-list-item {
  margin: 0 0 40px;
}

.c-form__terms-list-ttl {
  margin: 0 0 20px;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .c-form__terms-list-ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.c-form__terms-list-subttl {
  margin: 0 0 20px;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .c-form__terms-list-subttl {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.c-form__terms-list-desc {
  margin: 0 0 40px;
  text-align: justify;
}

.c-form__terms-order {
  counter-reset: order 0;
}

.c-form__terms-order.is-child {
  margin: -10px 0 30px;
}

.c-form__terms-order-txt {
  margin: 0 0 20px;
}

.c-form__terms-order-item {
  position: relative;
  margin: 0 0 10px;
  padding: 0 0 0 24px;
}

.c-form__terms-order-item::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.3;
  color: #111;
  content: counter(order) ".";
  counter-increment: order 1;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

@media screen and (max-width: 767px) {
  .c-form__terms-order-item::before {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.c-headline-001 {
  margin: 0 0 20px;
}

.c-headline-001__en {
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 20px;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--primary, #04a1af);
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .c-headline-001__en {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.c-headline-001__ja {
  display: block;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 4px;
  letter-spacing: .4rem;
}

@media screen and (max-width: 767px) {
  .c-headline-001__ja {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.c-message-001 {
  width: 640px;
  max-width: 100%;
  margin: 80px auto;
  padding: 60px 20px;
  background: #eee;
}

@media screen and (max-width: 767px) {
  .c-message-001 {
    margin: 0;
    padding: 80px 20px;
  }
}

.c-message-001__txt {
  margin: 0 0 10px;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .c-message-001__txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.c-page-ttl-001 {
  padding: 100px 20px;
  background: var(--primary-bg, #04a1af);
}

@media screen and (max-width: 767px) {
  .c-page-ttl-001 {
    padding: 40px 20px;
  }
}

.c-page-ttl-001__txt {
  color: #fff;
}

.c-page-ttl-001__txt-en {
  display: block;
  margin: 0 0 10px;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 60px;
  font-size: 6rem;
  line-height: 1;
  letter-spacing: 6px;
  letter-spacing: .6rem;
}

@media screen and (max-width: 767px) {
  .c-page-ttl-001__txt-en {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

.c-page-ttl-001__txt-ja {
  display: block;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 4px;
  letter-spacing: .4rem;
}

@media screen and (max-width: 767px) {
  .c-page-ttl-001__txt-ja {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.m-footer-001 {
  background: var(--primary-bg, #04a1af);
  color: var(--primary-txt, #fff);
}

.m-footer-001__copyright {
  display: block;
  padding: 40px 0;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .m-footer-001__copyright {
    padding: 20px 0;
  }
}

.m-header-001 {
  position: -webkit-sticky;
  position: sticky;
  z-index: 99;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  background: #fff;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.m-header-001__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  padding: 20px 40px;
  font-size: 0;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-header-001__logo {
    max-width: 60%;
    padding: 15px;
  }
}

.m-header-001__logo-link {
  display: inline-block;
}

.m-header-001__logo-link-img {
  max-height: 30px;
}

@media screen and (max-width: 1024px) {
  .m-header-001__logo-link-img {
    display: none;
  }
}

.m-header-001__logo-link-img.is-mobile {
  display: none;
}

@media screen and (max-width: 1024px) {
  .m-header-001__logo-link-img.is-mobile {
    display: block;
  }
}

.m-header-001__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.m-header-001__btn-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  height: 100%;
  min-height: 68px;
  padding: 0 40px;
  background: var(--primary-bg, #04a1af);
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  color: var(--primary-txt, #fff);
  letter-spacing: 2px;
  letter-spacing: .2rem;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-header-001__btn-link {
    min-height: 48px;
    padding: 0 20px;
  }
}

.m-header-001__btn-link::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: rgba(17, 17, 17, 0.2);
  content: "";
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.m-header-001__btn-link:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.m-header-001__btn-link-txt {
  position: relative;
  z-index: 1;
}

.m-header-002 {
  position: -webkit-sticky;
  position: sticky;
  z-index: 99;
  top: 0;
  width: 100%;
}

.m-header-002.-pattern-7,
.m-header-002.-pattern-8,
.m-header-002.-pattern-9,
.m-header-002.-pattern-10,
.m-header-002.-pattern-11,
.m-header-002.-pattern-12,
.m-header-002.-pattern-13,
.m-header-002.-pattern-14,
.m-header-002.-pattern-15,
.m-header-002.-pattern-16,
.m-header-002.-pattern-17,
.m-header-002.-pattern-18,
.m-header-002.-pattern-19,
.m-header-002.-pattern-20,
.m-header-002.-pattern-21,
.m-header-002.-pattern-22,
.m-header-002.-pattern-23,
.m-header-002.-pattern-24,
.m-header-002.-pattern-25,
.m-header-002.-pattern-26,
.m-header-002.-pattern-27,
.m-header-002.-pattern-28,
.m-header-002.-pattern-29,
.m-header-002.-pattern-30,
.m-header-002.-pattern-31,
.m-header-002.-pattern-32,
.m-header-002.-pattern-33,
.m-header-002.-pattern-34 {
  position: fixed;
  padding: 20px;
}

@media screen and (max-width: 767px) {

  .m-header-002.-pattern-7,
  .m-header-002.-pattern-8,
  .m-header-002.-pattern-9,
  .m-header-002.-pattern-10,
  .m-header-002.-pattern-11,
  .m-header-002.-pattern-12,
  .m-header-002.-pattern-13,
  .m-header-002.-pattern-14,
  .m-header-002.-pattern-15,
  .m-header-002.-pattern-16,
  .m-header-002.-pattern-17,
  .m-header-002.-pattern-18,
  .m-header-002.-pattern-19,
  .m-header-002.-pattern-20,
  .m-header-002.-pattern-21,
  .m-header-002.-pattern-22,
  .m-header-002.-pattern-23,
  .m-header-002.-pattern-24,
  .m-header-002.-pattern-25,
  .m-header-002.-pattern-26,
  .m-header-002.-pattern-27,
  .m-header-002.-pattern-28,
  .m-header-002.-pattern-29,
  .m-header-002.-pattern-30,
  .m-header-002.-pattern-31,
  .m-header-002.-pattern-32,
  .m-header-002.-pattern-33,
  .m-header-002.-pattern-34 {
    padding: 10px;
  }
}

@media screen and (max-width: 767px) {

  .m-header-002.-pattern-7.-entry,
  .m-header-002.-pattern-8.-entry,
  .m-header-002.-pattern-9.-entry,
  .m-header-002.-pattern-10.-entry,
  .m-header-002.-pattern-11.-entry,
  .m-header-002.-pattern-12.-entry,
  .m-header-002.-pattern-13.-entry,
  .m-header-002.-pattern-14.-entry,
  .m-header-002.-pattern-15.-entry,
  .m-header-002.-pattern-16.-entry,
  .m-header-002.-pattern-17.-entry,
  .m-header-002.-pattern-18.-entry,
  .m-header-002.-pattern-19.-entry,
  .m-header-002.-pattern-20.-entry,
  .m-header-002.-pattern-21.-entry,
  .m-header-002.-pattern-22.-entry,
  .m-header-002.-pattern-23.-entry,
  .m-header-002.-pattern-24.-entry,
  .m-header-002.-pattern-25.-entry,
  .m-header-002.-pattern-26.-entry,
  .m-header-002.-pattern-27.-entry,
  .m-header-002.-pattern-28.-entry,
  .m-header-002.-pattern-29.-entry,
  .m-header-002.-pattern-30.-entry,
  .m-header-002.-pattern-31.-entry,
  .m-header-002.-pattern-32.-entry,
  .m-header-002.-pattern-33.-entry,
  .m-header-002.-pattern-34.-entry {
    position: static;
    padding: 10px 10px 0;
    background: var(--primary-bg, #04a1af);
  }
}

.m-header-002.-pattern-23,
.m-header-002.-pattern-24 {
  padding: 0;
}

@media screen and (max-width: 767px) {

  .m-header-002.-pattern-23.-entry,
  .m-header-002.-pattern-24.-entry {
    padding: 0;
  }
}

.m-header-002__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  background: #fff;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.m-header-002__inner.-pattern-7,
.m-header-002__inner.-pattern-8,
.m-header-002__inner.-pattern-9,
.m-header-002__inner.-pattern-10,
.m-header-002__inner.-pattern-19,
.m-header-002__inner.-pattern-20,
.m-header-002__inner.-pattern-21,
.m-header-002__inner.-pattern-22,
.m-header-002__inner.-pattern-23,
.m-header-002__inner.-pattern-24,
.m-header-002__inner.-pattern-25,
.m-header-002__inner.-pattern-26,
.m-header-002__inner.-pattern-27,
.m-header-002__inner.-pattern-28,
.m-header-002__inner.-pattern-29,
.m-header-002__inner.-pattern-30,
.m-header-002__inner.-pattern-31,
.m-header-002__inner.-pattern-32,
.m-header-002__inner.-pattern-33,
.m-header-002__inner.-pattern-34 {
  background: none;
}

.m-header-002__inner.-pattern-11,
.m-header-002__inner.-pattern-12,
.m-header-002__inner.-pattern-13,
.m-header-002__inner.-pattern-14,
.m-header-002__inner.-pattern-15,
.m-header-002__inner.-pattern-16,
.m-header-002__inner.-pattern-17,
.m-header-002__inner.-pattern-18 {
  -webkit-box-shadow: 0 0 15px rgba(17, 17, 17, 0.1);
  box-shadow: 0 0 15px rgba(17, 17, 17, 0.1);
}

.m-header-002__inner.-pattern-13,
.m-header-002__inner.-pattern-14,
.m-header-002__inner.-pattern-17,
.m-header-002__inner.-pattern-18 {
  border-radius: 64px;
}

.m-header-002__inner.-pattern-15,
.m-header-002__inner.-pattern-16,
.m-header-002__inner.-pattern-17,
.m-header-002__inner.-pattern-18 {
  padding: 10px;
}

.m-header-002__inner.-pattern-23,
.m-header-002__inner.-pattern-24,
.m-header-002__inner.-pattern-31,
.m-header-002__inner.-pattern-32,
.m-header-002__inner.-pattern-33,
.m-header-002__inner.-pattern-34 {
  padding: 0;
}

.m-header-002__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  padding: 20px 40px;
  font-size: 0;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-header-002__logo {
    max-width: 60%;
    padding: 15px;
  }
}

.m-header-002__logo.-pattern-7,
.m-header-002__logo.-pattern-8,
.m-header-002__logo.-pattern-9,
.m-header-002__logo.-pattern-10 {
  padding: 0;
}

.m-header-002__logo.-pattern-15,
.m-header-002__logo.-pattern-16,
.m-header-002__logo.-pattern-17,
.m-header-002__logo.-pattern-18 {
  padding: 10px;
}

@media screen and (max-width: 767px) {

  .m-header-002__logo.-pattern-15,
  .m-header-002__logo.-pattern-16,
  .m-header-002__logo.-pattern-17,
  .m-header-002__logo.-pattern-18 {
    padding: 0;
  }
}

.m-header-002__logo.-pattern-19,
.m-header-002__logo.-pattern-20,
.m-header-002__logo.-pattern-21,
.m-header-002__logo.-pattern-22,
.m-header-002__logo.-pattern-23,
.m-header-002__logo.-pattern-24,
.m-header-002__logo.-pattern-25,
.m-header-002__logo.-pattern-26,
.m-header-002__logo.-pattern-27,
.m-header-002__logo.-pattern-28,
.m-header-002__logo.-pattern-29,
.m-header-002__logo.-pattern-30,
.m-header-002__logo.-pattern-31,
.m-header-002__logo.-pattern-32,
.m-header-002__logo.-pattern-33,
.m-header-002__logo.-pattern-34 {
  -ms-flex-align: start;
  padding: 10px 0;
  -webkit-box-align: start;
  align-items: flex-start;
}

.m-header-002__logo.-pattern-23,
.m-header-002__logo.-pattern-24,
.m-header-002__logo.-pattern-31,
.m-header-002__logo.-pattern-32,
.m-header-002__logo.-pattern-33,
.m-header-002__logo.-pattern-34 {
  padding: 20px;
}

@media screen and (max-width: 767px) {

  .m-header-002__logo.-pattern-23,
  .m-header-002__logo.-pattern-24,
  .m-header-002__logo.-pattern-31,
  .m-header-002__logo.-pattern-32,
  .m-header-002__logo.-pattern-33,
  .m-header-002__logo.-pattern-34 {
    padding: 10px;
  }
}

.m-header-002__logo-link {
  display: inline-block;
}

.m-header-002__logo-link-img {
  max-height: 30px;
}

@media screen and (max-width: 1024px) {
  .m-header-002__logo-link-img {
    display: none;
  }
}

.m-header-002__logo-link-img.is-mobile {
  display: none;
}

@media screen and (max-width: 1024px) {
  .m-header-002__logo-link-img.is-mobile {
    display: block;
  }
}

.m-header-002__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.m-header-002__btn.-pattern-25,
.m-header-002__btn.-pattern-26,
.m-header-002__btn.-pattern-27,
.m-header-002__btn.-pattern-28 {
  position: fixed;
  right: 20px;
  bottom: 20px;
}

@media screen and (max-width: 767px) {

  .m-header-002__btn.-pattern-25,
  .m-header-002__btn.-pattern-26,
  .m-header-002__btn.-pattern-27,
  .m-header-002__btn.-pattern-28 {
    right: 10px;
    bottom: 10px;
  }
}

.m-header-002__btn.-pattern-31,
.m-header-002__btn.-pattern-32,
.m-header-002__btn.-pattern-33,
.m-header-002__btn.-pattern-34 {
  position: fixed;
  right: 0;
  bottom: 40px;
}

@media screen and (max-width: 767px) {

  .m-header-002__btn.-pattern-31,
  .m-header-002__btn.-pattern-32,
  .m-header-002__btn.-pattern-33,
  .m-header-002__btn.-pattern-34 {
    right: 0;
    bottom: 20px;
  }
}

.m-header-002__btn-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  height: 100%;
  min-height: 68px;
  padding: 0 40px;
  background: var(--primary-bg, #04a1af);
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  color: var(--primary-txt, #fff);
  letter-spacing: 2px;
  letter-spacing: .2rem;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-header-002__btn-link {
    min-height: 48px;
    padding: 0 20px;
  }
}

.m-header-002__btn-link.-pattern-8,
.m-header-002__btn-link.-pattern-10,
.m-header-002__btn-link.-pattern-12,
.m-header-002__btn-link.-pattern-14,
.m-header-002__btn-link.-pattern-16,
.m-header-002__btn-link.-pattern-18,
.m-header-002__btn-link.-pattern-20,
.m-header-002__btn-link.-pattern-22,
.m-header-002__btn-link.-pattern-24,
.m-header-002__btn-link.-pattern-26,
.m-header-002__btn-link.-pattern-28,
.m-header-002__btn-link.-pattern-32,
.m-header-002__btn-link.-pattern-34 {
  border: 2px solid var(--primary-bg, #04a1af);
  background: #fff;
  color: var(--primary-bg, #04a1af);
}

.m-header-002__btn-link.-pattern-8::before,
.m-header-002__btn-link.-pattern-10::before,
.m-header-002__btn-link.-pattern-12::before,
.m-header-002__btn-link.-pattern-14::before,
.m-header-002__btn-link.-pattern-16::before,
.m-header-002__btn-link.-pattern-18::before,
.m-header-002__btn-link.-pattern-20::before,
.m-header-002__btn-link.-pattern-22::before,
.m-header-002__btn-link.-pattern-24::before,
.m-header-002__btn-link.-pattern-26::before,
.m-header-002__btn-link.-pattern-28::before,
.m-header-002__btn-link.-pattern-32::before,
.m-header-002__btn-link.-pattern-34::before {
  background: var(--primary-bg, #04a1af);
}

.m-header-002__btn-link.-pattern-8:hover,
.m-header-002__btn-link.-pattern-10:hover,
.m-header-002__btn-link.-pattern-12:hover,
.m-header-002__btn-link.-pattern-14:hover,
.m-header-002__btn-link.-pattern-16:hover,
.m-header-002__btn-link.-pattern-18:hover,
.m-header-002__btn-link.-pattern-20:hover,
.m-header-002__btn-link.-pattern-22:hover,
.m-header-002__btn-link.-pattern-24:hover,
.m-header-002__btn-link.-pattern-26:hover,
.m-header-002__btn-link.-pattern-28:hover,
.m-header-002__btn-link.-pattern-32:hover,
.m-header-002__btn-link.-pattern-34:hover {
  color: #fff;
}

.m-header-002__btn-link.-pattern-9,
.m-header-002__btn-link.-pattern-10,
.m-header-002__btn-link.-pattern-13,
.m-header-002__btn-link.-pattern-14,
.m-header-002__btn-link.-pattern-17,
.m-header-002__btn-link.-pattern-18 {
  border-radius: 68px;
}

.m-header-002__btn-link.-pattern-19,
.m-header-002__btn-link.-pattern-20,
.m-header-002__btn-link.-pattern-21,
.m-header-002__btn-link.-pattern-22,
.m-header-002__btn-link.-pattern-23,
.m-header-002__btn-link.-pattern-24,
.m-header-002__btn-link.-pattern-25,
.m-header-002__btn-link.-pattern-26,
.m-header-002__btn-link.-pattern-27,
.m-header-002__btn-link.-pattern-28 {
  min-width: 120px;
  min-height: 120px;
  padding: 0 24px;
}

@media screen and (max-width: 767px) {

  .m-header-002__btn-link.-pattern-19,
  .m-header-002__btn-link.-pattern-20,
  .m-header-002__btn-link.-pattern-21,
  .m-header-002__btn-link.-pattern-22,
  .m-header-002__btn-link.-pattern-23,
  .m-header-002__btn-link.-pattern-24,
  .m-header-002__btn-link.-pattern-25,
  .m-header-002__btn-link.-pattern-26,
  .m-header-002__btn-link.-pattern-27,
  .m-header-002__btn-link.-pattern-28 {
    min-width: 80px;
    min-height: 80px;
    padding: 0 8px;
  }
}

.m-header-002__btn-link.-pattern-21,
.m-header-002__btn-link.-pattern-22,
.m-header-002__btn-link.-pattern-27,
.m-header-002__btn-link.-pattern-28 {
  border-radius: 480px;
}

.m-header-002__btn-link.-pattern-25,
.m-header-002__btn-link.-pattern-26,
.m-header-002__btn-link.-pattern-27,
.m-header-002__btn-link.-pattern-28 {
  -webkit-box-shadow: 0 0 15px rgba(17, 17, 17, 0.1);
  box-shadow: 0 0 15px rgba(17, 17, 17, 0.1);
}

.m-header-002__btn-link.-pattern-31,
.m-header-002__btn-link.-pattern-32,
.m-header-002__btn-link.-pattern-33,
.m-header-002__btn-link.-pattern-34 {
  padding: 28px 68px;
}

@media screen and (max-width: 767px) {

  .m-header-002__btn-link.-pattern-31,
  .m-header-002__btn-link.-pattern-32,
  .m-header-002__btn-link.-pattern-33,
  .m-header-002__btn-link.-pattern-34 {
    padding: 18px 40px;
  }
}

.m-header-002__btn-link.-pattern-33,
.m-header-002__btn-link.-pattern-34 {
  border-top-left-radius: 68px;
  border-bottom-left-radius: 68px;
}

.m-header-002__btn-link::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: rgba(17, 17, 17, 0.2);
  content: "";
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.m-header-002__btn-link:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.m-header-002__btn-link-txt {
  position: relative;
  z-index: 1;
  padding: .3em 0 0;
}

.m-about-001 {
  position: relative;
}

@media screen and (max-width: 767px) {
  .m-about-001 {
    padding: 20px 20px 40px;
  }
}

.m-about-001__detail {
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-about-001__detail {
    padding: 20px 0 0;
  }
}

@media screen and (max-width: 767px) {
  .m-about-001__headline {
    margin: 0 0 10px;
  }
}

.m-about-001__headline-txt {
  font-size: 30px;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 4px;
  letter-spacing: .4rem;
}

@media screen and (max-width: 767px) {
  .m-about-001__headline-txt {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

.m-about-001__desc-txt {
  padding: 20px 0;
}

@media screen and (max-width: 767px) {
  .m-about-001__desc-txt {
    padding: 10px 0;
  }
}

.m-about-002 {
  position: relative;
  padding: 240px 0 40px;
}

@media screen and (max-width: 767px) {
  .m-about-002 {
    padding: 80px 0 40px;
  }
}

.m-about-002__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .m-about-002__inner {
    padding: 0 20px;
  }
}

.m-about-002__background {
  position: absolute;
  z-index: 0;
  top: 40px;
  left: 0;
  display: block;
  width: 100%;
  height: 500px;
  max-height: 40%;
  background: no-repeat center / cover;
  content: "";
}

@media screen and (max-width: 1024px) {
  .m-about-002__background {
    height: 380px;
    max-height: 35%;
  }
}

@media screen and (max-width: 767px) {
  .m-about-002__background {
    top: 20px;
    height: 180px;
    max-height: 20%;
  }
}

.m-about-002__detail {
  padding: 80px 40px;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .m-about-002__detail {
    padding: 40px 20px 20px;
  }
}

.m-about-002__headline {
  margin: 0 0 10px;
}

@media screen and (max-width: 767px) {
  .m-about-002__headline {
    margin: 0;
  }
}

.m-about-002__headline-txt {
  font-size: 30px;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 4px;
  letter-spacing: .4rem;
}

@media screen and (max-width: 767px) {
  .m-about-002__headline-txt {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

.m-about-002__desc-txt {
  padding: 20px 0;
}

@media screen and (max-width: 767px) {
  .m-about-002__desc-txt {
    padding: 10px 0;
  }
}

.m-about-003 {
  position: relative;
  padding: 40px 0;
}

@media screen and (max-width: 767px) {
  .m-about-003 {
    padding: 40px 0 20px;
  }
}

.m-about-003__inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

@media screen and (max-width: 767px) {
  .m-about-003__inner {
    padding: 0 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.m-about-003__figure {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .m-about-003__figure {
    width: 100%;
  }
}

.m-about-003__detail {
  width: 50%;
  padding: 20px 0 20px 40px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-about-003__detail {
    width: 100%;
    padding: 20px;
  }
}

.m-about-003__headline-txt {
  font-size: 30px;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 4px;
  letter-spacing: .4rem;
}

@media screen and (max-width: 767px) {
  .m-about-003__headline-txt {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

.m-about-003__desc-txt {
  padding: 15px 0;
}

@media screen and (max-width: 767px) {
  .m-about-003__desc-txt {
    padding: 10px 0;
  }
}

.m-about-004 {
  position: relative;
  padding: 60px 0 40px;
}

@media screen and (max-width: 767px) {
  .m-about-004 {
    padding: 40px 0 20px;
  }
}

.m-about-004__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

@media screen and (max-width: 767px) {
  .m-about-004__inner {
    padding: 0 20px;
  }
}

.m-about-004__detail {
  padding: 20px 0 20px 40px;
}

@media screen and (max-width: 767px) {
  .m-about-004__detail {
    padding: 10px 20px;
  }
}

.m-about-004__headline {
  padding: 10px 0;
}

.m-about-004__headline-txt {
  font-size: 30px;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 4px;
  letter-spacing: .4rem;
}

@media screen and (max-width: 767px) {
  .m-about-004__headline-txt {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

.m-about-004__desc-txt {
  padding: 15px 0;
}

@media screen and (max-width: 767px) {
  .m-about-004__desc-txt {
    padding: 10px 0;
  }
}

.m-about-005 {
  position: relative;
  padding: 60px 0 40px;
}

@media screen and (max-width: 767px) {
  .m-about-005 {
    padding: 40px 0 20px;
  }
}

.m-about-005__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

@media screen and (max-width: 767px) {
  .m-about-005__inner {
    padding: 0 20px;
  }
}

.m-about-005__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .m-about-005__images {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.m-about-005__figure {
  padding: 5px;
}

@media screen and (max-width: 767px) {
  .m-about-005__figure {
    width: 50%;
  }
}

.m-about-005__figure-img {
  width: 100%;
}

.m-about-005__detail {
  padding: 20px 0 20px 40px;
}

@media screen and (max-width: 767px) {
  .m-about-005__detail {
    padding: 10px 20px;
  }
}

.m-about-005__headline {
  padding: 10px 0;
}

.m-about-005__headline-txt {
  font-size: 30px;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 4px;
  letter-spacing: .4rem;
}

@media screen and (max-width: 767px) {
  .m-about-005__headline-txt {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

.m-about-005__desc-txt {
  padding: 15px 0;
}

@media screen and (max-width: 767px) {
  .m-about-005__desc-txt {
    padding: 10px 0;
  }
}

.m-access-001 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-access-001 {
    padding: 40px 0 20px;
  }
}

.m-access-001__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}

.m-access-001__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-access-001__list-item {
  position: relative;
  width: 100%;
  margin: 0 0 30px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-access-001__list-item {
    width: 100%;
  }
}

.m-access-001__list-item:last-child {
  margin: 0;
}

.m-access-001__list-item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  padding: 40px;
  border: 2px solid #eee;
  background: #fff;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-access-001__list-item-inner {
    padding: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.m-access-001__list-item-map {
  width: 50%;
  font-size: 0;
}

@media screen and (max-width: 767px) {
  .m-access-001__list-item-map {
    width: 100%;
    margin: 0 0 20px;
  }
}

.m-access-001__list-item-map iframe {
  width: 100%;
  height: 400px;
}

@media screen and (max-width: 767px) {
  .m-access-001__list-item-map iframe {
    height: 200px;
  }
}

.m-access-001__list-item-content {
  width: 50%;
  padding: 0 0 0 40px;
}

@media screen and (max-width: 767px) {
  .m-access-001__list-item-content {
    width: 100%;
    padding: 0;
  }
}

.m-access-001__list-item-ttl {
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
  padding: 0 0 10px;
  border-bottom: 2px solid #eee;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .m-access-001__list-item-ttl {
    margin: 0 0 10px;
  }
}

.m-access-001__list-item-ttl-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-access-001__list-item-ttl-txt {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-access-001__list-item-figure {
  margin: 0 0 20px;
  font-size: 0;
  text-align: center;
}

.m-access-001__list-item-desc-txt {
  margin: 0 0 20px;
}

.m-access-002 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-access-002 {
    padding: 40px 0;
  }
}

.m-access-002__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}

.m-access-002__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-access-002__list-item {
  position: relative;
  width: 100%;
  margin: 0 0 60px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-access-002__list-item {
    width: 100%;
  }
}

.m-access-002__list-item:last-child {
  margin: 0;
}

.m-access-002__list-item-map {
  margin: 0 0 20px;
  font-size: 0;
}

.m-access-002__list-item-map iframe {
  width: 100%;
  height: 400px;
}

@media screen and (max-width: 767px) {
  .m-access-002__list-item-map iframe {
    height: 200px;
  }
}

.m-access-002__list-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -ms-flex-align: start;
  padding: 60px 20px 40px;
  background: #eee;
  -webkit-box-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .m-access-002__list-item-content {
    display: block;
  }
}

.m-access-002__list-item-ttl {
  position: relative;
  z-index: 1;
  padding: 0 0 10px;
  font-weight: 900;
}

.m-access-002__list-item-ttl-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-access-002__list-item-ttl-txt {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-access-002__list-item-figure {
  margin: 0 0 20px;
  font-size: 0;
  text-align: center;
}

.m-access-002__list-item-desc {
  padding: 0 0 0 60px;
}

@media screen and (max-width: 767px) {
  .m-access-002__list-item-desc {
    padding: 0;
  }
}

.m-access-002__list-item-desc-txt {
  margin: 0 0 20px;
}

.m-access-003 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-access-003 {
    padding: 40px 0;
  }
}

.m-access-003__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}

.m-access-003__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-access-003__list-item {
  position: relative;
  width: 100%;
  margin: 0 0 30px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-access-003__list-item {
    width: 100%;
  }
}

.m-access-003__list-item:last-child {
  margin: 0;
}

.m-access-003__list-item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
}

@media screen and (max-width: 767px) {
  .m-access-003__list-item-inner {
    padding: 0;
  }
}

.m-access-003__list-item-figure {
  position: relative;
  z-index: 1;
  width: 50%;
  font-size: 0;
}

@media screen and (max-width: 1024px) {
  .m-access-003__list-item-figure {
    width: 90%;
  }
}

.m-access-003__list-item-content {
  width: calc(50% + 240px);
  margin: 100px 0 0 -240px;
  padding: 60px 60px 80px 300px;
  background: #eee;
}

@media screen and (max-width: 1024px) {
  .m-access-003__list-item-content {
    position: relative;
    z-index: 2;
    width: calc(10% + 480px);
    margin: 240px 0 0 -480px;
    padding: 40px;
  }
}

@media screen and (max-width: 767px) {
  .m-access-003__list-item-content {
    width: calc(10% + 240px);
    margin: 100px 0 0 -240px;
    padding: 30px;
  }
}

.m-access-003__list-item-ttl {
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
  padding: 0 0 10px;
  border-bottom: 2px solid #eee;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .m-access-003__list-item-ttl {
    margin: 0 0 10px;
  }
}

.m-access-003__list-item-ttl-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-access-003__list-item-ttl-txt {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-access-003__list-item-desc {
  margin: 0 0 20px;
}

.m-access-003__list-item-desc-txt {
  margin: 0 0 20px;
}

.m-access-003__list-item-link {
  display: inline-block;
  padding: 5px 10px;
  border-bottom: 1px solid #111;
}

.m-access-003__list-item-link-txt {
  padding: 0 0 0 5px;
  font-size: 14px;
  font-size: 1.4rem;
}

.m-access-004 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-access-004 {
    padding: 40px 0;
  }
}

.m-access-004__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

.m-access-004__content {
  position: relative;
  padding: 180px 20px 20px;
}

@media screen and (max-width: 767px) {
  .m-access-004__content {
    padding: 140px 20px 20px;
  }
}

.m-access-004__background {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 300px;
  max-height: 40%;
  background: no-repeat center / cover;
  content: "";
}

@media screen and (max-width: 1024px) {
  .m-access-004__background {
    height: 380px;
    max-height: 35%;
  }
}

@media screen and (max-width: 767px) {
  .m-access-004__background {
    top: 20px;
    height: 180px;
    max-height: 20%;
  }
}

.m-access-004__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 880px;
  margin: 0 auto;
  padding: 60px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .m-access-004__list {
    padding: 40px 20px;
  }
}

.m-access-004__list::after {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: var(--primary-bg, #04a1af);
  content: "";
  opacity: .9;
}

.m-access-004__list-item {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 0 40px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-access-004__list-item {
    margin: 0 0 20px;
  }
}

.m-access-004__list-item:last-child {
  margin: 0;
}

.m-access-004__list-item-inner {
  padding: 20px;
}

.m-access-004__list-item-content {
  position: relative;
  color: var(--primary-txt, #fff);
  text-align: center;
}

.m-access-004__list-item-ttl {
  margin: 0 0 20px;
  padding: 0 0 10px;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .m-access-004__list-item-ttl {
    margin: 0 0 10px;
  }
}

.m-access-004__list-item-ttl-txt {
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-access-004__list-item-ttl-txt {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-access-004__list-item-desc {
  margin: 0 0 20px;
}

.m-access-004__list-item-desc-txt {
  margin: 0 0 20px;
}

.m-access-004__list-item-link {
  display: inline-block;
  padding: 5px 10px;
  border-bottom: 1px solid var(--primary-txt, #fff);
  color: var(--primary-txt, #fff);
}

.m-access-004__list-item-link-txt {
  padding: 0 0 0 5px;
  font-size: 14px;
  font-size: 1.4rem;
}

.m-access-005 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-access-005 {
    padding: 40px 0;
  }
}

.m-access-005__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

.m-access-005__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-access-005__list-item {
  position: relative;
  width: 100%;
  margin: 0 0 20px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-access-005__list-item {
    width: 100%;
  }
}

.m-access-005__list-item:last-child {
  margin: 0;
}

.m-access-005__list-item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .m-access-005__list-item-inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.m-access-005__list-item-map {
  width: 50%;
  font-size: 0;
}

@media screen and (max-width: 767px) {
  .m-access-005__list-item-map {
    width: 100%;
  }
}

.m-access-005__list-item-map iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .m-access-005__list-item-map iframe {
    height: 200px;
  }
}

.m-access-005__list-item-content {
  width: 50%;
  padding: 80px 60px 120px;
  background: var(--primary-bg, #04a1af);
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .m-access-005__list-item-content {
    width: 100%;
    padding: 40px 30px 20px;
  }
}

.m-access-005__list-item-ttl {
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
  padding: 0 0 10px;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .m-access-005__list-item-ttl {
    margin: 0 0 10px;
  }
}

.m-access-005__list-item-ttl-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-access-005__list-item-ttl-txt {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-access-005__list-item-desc-txt {
  margin: 0 0 20px;
}

.m-assessment-001 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-assessment-001 {
    padding: 40px 0;
  }
}

.m-assessment-001__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.m-assessment-001__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-assessment-001__list-item {
  width: 100%;
  padding: 24px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-assessment-001__list-item {
    width: 100%;
    padding: 12px 24px;
  }
}

.m-assessment-001__list-item-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  margin: 0 0 30px;
  padding: 14px 20px;
  border: solid #eee;
  border-width: 2px 0;
  font-weight: 900;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-assessment-001__list-item-ttl {
    margin: 0 0 20px;
    padding: 10px 0;
  }
}

.m-assessment-001__list-item-ttl-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-bg, #04a1af);
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 64px;
  color: var(--primary-txt, #fff);
  text-align: center;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-assessment-001__list-item-ttl-num {
    width: 40px;
    height: 40px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 44px;
  }
}

.m-assessment-001__list-item-ttl-txt {
  width: calc(100% - 120px);
  padding: 0 0 0 20px;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-assessment-001__list-item-ttl-txt {
    width: calc(100% - 40px);
    padding: 0 0 0 10px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-assessment-001__list-item-figure {
  padding: 0 20px;
  text-align: center;
}

.m-assessment-001__list-item-desc {
  padding: 24px 20px 0;
}

@media screen and (max-width: 767px) {
  .m-assessment-001__list-item-desc {
    padding: 10px 0 0;
  }
}

.m-assessment-002 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-assessment-002 {
    padding: 40px 0;
  }
}

.m-assessment-002__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.m-assessment-002__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-assessment-002__list-item {
  width: 100%;
  padding: 24px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-assessment-002__list-item {
    width: 100%;
    padding: 12px 24px;
  }
}

.m-assessment-002__list-item-inner {
  height: 100%;
  padding: 30px;
  border: 1px solid #eee;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .m-assessment-002__list-item-inner {
    padding: 20px;
  }
}

.m-assessment-002__list-item-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  margin: 0 0 20px;
  font-weight: 900;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-assessment-002__list-item-ttl {
    margin: 0 0 10px;
  }
}

.m-assessment-002__list-item-ttl-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-bg, #04a1af);
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 64px;
  color: var(--primary-txt, #fff);
  text-align: center;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-assessment-002__list-item-ttl-num {
    width: 40px;
    height: 40px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 44px;
  }
}

.m-assessment-002__list-item-ttl-txt {
  width: calc(100% - 120px);
  padding: 0 0 0 20px;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-assessment-002__list-item-ttl-txt {
    width: calc(100% - 40px);
    padding: 0 0 0 10px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-assessment-002__list-item-figure {
  text-align: center;
}

.m-assessment-002__list-item-desc {
  padding: 14px 0 0;
}

@media screen and (max-width: 767px) {
  .m-assessment-002__list-item-desc {
    padding: 10px 0 0;
  }
}

.m-assessment-003 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-assessment-003 {
    padding: 40px 0;
  }
}

.m-assessment-003__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.m-assessment-003__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-assessment-003__list-item {
  width: 50%;
  padding: 24px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-assessment-003__list-item {
    width: 100%;
    padding: 12px 24px;
  }
}

.m-assessment-003__list-item-inner {
  height: 100%;
  padding: 30px;
  border: 1px solid #eee;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .m-assessment-003__list-item-inner {
    padding: 20px;
  }
}

.m-assessment-003__list-item-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  margin: 0 0 20px;
  font-weight: 900;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-assessment-003__list-item-ttl {
    margin: 0 0 10px;
  }
}

.m-assessment-003__list-item-ttl-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-bg, #04a1af);
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 64px;
  color: var(--primary-txt, #fff);
  text-align: center;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-assessment-003__list-item-ttl-num {
    width: 40px;
    height: 40px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 44px;
  }
}

.m-assessment-003__list-item-ttl-txt {
  width: calc(100% - 60px);
  padding: 0 0 0 20px;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.2;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-assessment-003__list-item-ttl-txt {
    width: calc(100% - 40px);
    padding: 0 0 0 10px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-assessment-003__list-item-desc {
  padding: 14px 0 0;
}

@media screen and (max-width: 767px) {
  .m-assessment-003__list-item-desc {
    padding: 10px 0 0;
  }
}

.m-assessment-004 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-assessment-004 {
    padding: 40px 0;
  }
}

.m-assessment-004__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.m-assessment-004__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-assessment-004__list-item {
  width: 50%;
  padding: 24px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-assessment-004__list-item {
    width: 100%;
    padding: 12px 24px;
  }
}

.m-assessment-004__list-item-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  margin: 0 0 20px;
  padding: 10px 20px;
  border: solid #eee;
  border-width: 2px 0;
  font-weight: 900;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-assessment-004__list-item-ttl {
    padding: 10px 0;
  }
}

.m-assessment-004__list-item-ttl-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-bg, #04a1af);
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 64px;
  color: var(--primary-txt, #fff);
  text-align: center;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-assessment-004__list-item-ttl-num {
    width: 40px;
    height: 40px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 44px;
  }
}

.m-assessment-004__list-item-ttl-txt {
  width: calc(100% - 60px);
  padding: 0 0 0 20px;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.2;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-assessment-004__list-item-ttl-txt {
    width: calc(100% - 40px);
    padding: 0 0 0 10px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-assessment-004__list-item-figure {
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .m-assessment-004__list-item-figure {
    padding: 0;
  }
}

.m-assessment-004__list-item-desc {
  padding: 14px 20px 0;
}

@media screen and (max-width: 767px) {
  .m-assessment-004__list-item-desc {
    padding: 10px 0 0;
  }
}

.m-assessment-005 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-assessment-005 {
    padding: 40px 0;
  }
}

.m-assessment-005__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

.m-assessment-005__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-assessment-005__list-item {
  width: 50%;
  padding: 24px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-assessment-005__list-item {
    width: 100%;
    padding: 12px 24px;
  }
}

.m-assessment-005__list-item-inner {
  height: 100%;
  padding: 30px;
  border: 1px solid #eee;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .m-assessment-005__list-item-inner {
    padding: 20px;
  }
}

.m-assessment-005__list-item-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  margin: 0 0 20px;
  font-weight: 900;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-assessment-005__list-item-ttl {
    margin: 0 0 10px;
  }
}

.m-assessment-005__list-item-ttl-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-bg, #04a1af);
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 64px;
  color: var(--primary-txt, #fff);
  text-align: center;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-assessment-005__list-item-ttl-num {
    width: 40px;
    height: 40px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 44px;
  }
}

.m-assessment-005__list-item-ttl-txt {
  width: calc(100% - 60px);
  padding: 0 0 0 20px;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.2;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-assessment-005__list-item-ttl-txt {
    width: calc(100% - 40px);
    padding: 0 0 0 10px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-assessment-005__list-item-desc {
  padding: 14px 0 0;
}

@media screen and (max-width: 767px) {
  .m-assessment-005__list-item-desc {
    padding: 10px 0 0;
  }
}

.m-company-001 {
  position: relative;
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .m-company-001 {
    padding: 40px 0;
  }
}

.m-company-001__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.m-company-001__detail {
  padding: 0 40px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-company-001__detail {
    padding: 0 20px;
  }
}

.m-company-001__detail-row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 10px;
}

@media screen and (max-width: 767px) {
  .m-company-001__detail-row {
    display: block;
  }
}

.m-company-001__detail-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  width: 200px;
  padding: 20px;
  background: var(--primary-bg, #04a1af);
  font-weight: 900;
  color: var(--primary-txt, #fff);
  letter-spacing: 2px;
  letter-spacing: .2rem;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-company-001__detail-ttl {
    width: 100%;
    padding: 10px;
  }
}

.m-company-001__detail-desc {
  position: relative;
  width: calc(100% - 200px);
  padding: 20px;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-company-001__detail-desc {
    width: 100%;
    padding: 10px;
  }
}

.m-company-001__detail-desc::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: var(--primary-bg, #04a1af);
  content: "";
  opacity: .2;
}

.m-company-001__entry {
  padding: 40px;
}

@media screen and (max-width: 767px) {
  .m-company-001__entry {
    padding: 20px;
  }
}

.m-company-001__entry-btn {
  position: relative;
  display: block;
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 0;
  background: var(--primary-bg, #04a1af);
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .m-company-001__entry-btn {
    max-width: 80%;
    padding: 30px 0;
  }
}

.m-company-001__entry-btn::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: rgba(17, 17, 17, 0.2);
  content: "";
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.m-company-001__entry-btn:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.m-company-001__entry-btn-txt {
  position: relative;
  z-index: 1;
  padding: 0 10px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-company-002 {
  position: relative;
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .m-company-002 {
    padding: 40px 0;
  }
}

.m-company-002__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.m-company-002__detail {
  padding: 0 40px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-company-002__detail {
    padding: 0 20px;
  }
}

.m-company-002__detail-row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 10px;
}

@media screen and (max-width: 767px) {
  .m-company-002__detail-row {
    display: block;
    padding: 15px;
  }
}

.m-company-002__detail-row::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: var(--primary-bg, #04a1af);
  content: "";
  opacity: .2;
}

.m-company-002__detail-row:nth-child(even)::before {
  display: none;
}

.m-company-002__detail-ttl {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  width: 200px;
  padding: 20px;
  font-weight: 900;
  color: var(--primary, #04a1af);
  letter-spacing: 2px;
  letter-spacing: .2rem;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-company-002__detail-ttl {
    width: 100%;
    padding: 0;
  }
}

.m-company-002__detail-desc {
  position: relative;
  z-index: 1;
  width: calc(100% - 200px);
  padding: 20px;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-company-002__detail-desc {
    width: 100%;
    padding: 0;
  }
}

.m-company-002__entry {
  padding: 40px;
}

@media screen and (max-width: 767px) {
  .m-company-002__entry {
    padding: 20px;
  }
}

.m-company-002__entry-btn {
  position: relative;
  display: block;
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 0;
  background: var(--primary-bg, #04a1af);
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .m-company-002__entry-btn {
    max-width: 80%;
    padding: 30px 0;
  }
}

.m-company-002__entry-btn::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: rgba(17, 17, 17, 0.2);
  content: "";
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.m-company-002__entry-btn:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.m-company-002__entry-btn-txt {
  position: relative;
  z-index: 1;
  padding: 0 10px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-company-003 {
  position: relative;
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .m-company-003 {
    padding: 40px 0;
  }
}

.m-company-003__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.m-company-003__detail {
  padding: 0 40px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-company-003__detail {
    padding: 0 20px;
  }
}

.m-company-003__detail-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  border-top: 1px solid #eee;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-company-003__detail-row {
    display: block;
    padding: 15px;
  }
}

.m-company-003__detail-row:last-child {
  border-bottom: 1px solid #eee;
}

.m-company-003__detail-ttl {
  width: 200px;
  padding: 20px;
  font-weight: 900;
  color: var(--primary, #04a1af);
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-company-003__detail-ttl {
    width: 100%;
    margin: 0 0 5px;
    padding: 0;
  }
}

.m-company-003__detail-desc {
  width: calc(100% - 200px);
  padding: 20px;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-company-003__detail-desc {
    width: 100%;
    padding: 0;
  }
}

.m-company-003__entry {
  padding: 40px;
}

@media screen and (max-width: 767px) {
  .m-company-003__entry {
    padding: 20px;
  }
}

.m-company-003__entry-btn {
  position: relative;
  display: block;
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 0;
  background: var(--primary-bg, #04a1af);
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .m-company-003__entry-btn {
    max-width: 80%;
    padding: 30px 0;
  }
}

.m-company-003__entry-btn::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: rgba(17, 17, 17, 0.2);
  content: "";
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.m-company-003__entry-btn:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.m-company-003__entry-btn-txt {
  position: relative;
  z-index: 1;
  padding: 0 10px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-company-004 {
  position: relative;
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .m-company-004 {
    padding: 40px 0;
  }
}

.m-company-004__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.m-company-004__detail {
  padding: 0 40px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-company-004__detail {
    padding: 0 20px;
  }
}

.m-company-004__detail-row {
  padding: 20px;
  border-top: 1px solid #eee;
}

@media screen and (max-width: 767px) {
  .m-company-004__detail-row {
    display: block;
    padding: 15px;
  }
}

.m-company-004__detail-row:last-child {
  border-bottom: 1px solid #eee;
}

.m-company-004__detail-ttl {
  font-weight: 900;
  color: var(--primary, #04a1af);
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-company-004__detail-desc {
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-company-004__detail-desc {
    width: 100%;
  }
}

.m-company-004__entry {
  padding: 40px;
}

@media screen and (max-width: 767px) {
  .m-company-004__entry {
    padding: 20px;
  }
}

.m-company-004__entry-btn {
  position: relative;
  display: block;
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 0;
  background: var(--primary-bg, #04a1af);
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .m-company-004__entry-btn {
    max-width: 80%;
    padding: 30px 0;
  }
}

.m-company-004__entry-btn::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: rgba(17, 17, 17, 0.2);
  content: "";
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.m-company-004__entry-btn:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.m-company-004__entry-btn-txt {
  position: relative;
  z-index: 1;
  padding: 0 10px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-company-005 {
  position: relative;
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .m-company-005 {
    padding: 40px 0;
  }
}

.m-company-005__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.m-company-005__detail {
  padding: 0 40px;
}

@media screen and (max-width: 767px) {
  .m-company-005__detail {
    padding: 0 20px;
  }
}

.m-company-005__detail-row {
  padding: 15px;
  border-top: 1px solid #eee;
}

@media screen and (max-width: 767px) {
  .m-company-005__detail-row {
    display: block;
  }
}

.m-company-005__detail-row:last-child {
  border-bottom: 1px solid #eee;
}

.m-company-005__detail-ttl {
  margin: 0 0 5px;
  font-weight: 900;
  color: var(--primary, #04a1af);
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-company-005__detail-ttl {
    margin: 0;
  }
}

.m-company-005__detail-desc {
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-company-005__detail-desc {
    width: 100%;
  }
}

.m-company-005__entry {
  padding: 40px;
}

@media screen and (max-width: 767px) {
  .m-company-005__entry {
    padding: 20px;
  }
}

.m-company-005__entry-btn {
  position: relative;
  display: block;
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 0;
  background: var(--primary-bg, #04a1af);
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .m-company-005__entry-btn {
    max-width: 80%;
    padding: 30px 0;
  }
}

.m-company-005__entry-btn::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: rgba(17, 17, 17, 0.2);
  content: "";
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.m-company-005__entry-btn:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.m-company-005__entry-btn-txt {
  position: relative;
  z-index: 1;
  padding: 0 10px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-culture-001 {
  position: relative;
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .m-culture-001 {
    padding: 20px 0;
  }
}

.m-culture-001__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

.m-culture-001__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-culture-001__list-item {
  width: 25%;
  padding: 12px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-culture-001__list-item {
    width: 100%;
    padding: 12px 15px;
  }
}

.m-culture-001__list-item-inner {
  height: 100%;
}

.m-culture-001__list-item-figure {
  margin: 0 0 10px;
  font-size: 0;
}

.m-culture-001__list-item-detail-ttl {
  margin: 0 0 10px;
  padding: 10px 0;
  border: solid #eee;
  border-width: 0 0 1px;
  font-weight: 900;
}

.m-culture-001__list-item-detail-ttl-txt {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.2;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-culture-001__list-item-detail-ttl-txt {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-culture-001__list-item-detail-desc {
  padding: 4px 0 0;
}

.m-culture-002 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-culture-002 {
    padding: 40px 0 20px;
  }
}

.m-culture-002__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

.m-culture-002__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-culture-002__list-item {
  width: 50%;
  padding: 24px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-culture-002__list-item {
    width: 100%;
    padding: 12px 24px;
  }
}

.m-culture-002__list-item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-culture-002__list-item-figure {
  width: 310px;
}

@media screen and (max-width: 767px) {
  .m-culture-002__list-item-figure {
    width: 100%;
  }
}

.m-culture-002__list-item-detail {
  width: calc(100% - 310px);
  padding: 0 0 0 20px;
}

@media screen and (max-width: 767px) {
  .m-culture-002__list-item-detail {
    width: 100%;
    padding: 20px 0;
  }
}

.m-culture-002__list-item-detail-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  margin: 0 0 10px;
  padding: 14px 0;
  border: solid #eee;
  border-width: 1px 0;
  font-weight: 900;
  -webkit-box-align: center;
  align-items: center;
}

.m-culture-002__list-item-detail-ttl-txt {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.2;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-culture-002__list-item-detail-ttl-txt {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-culture-002__list-item-detail-desc {
  padding: 14px 0 0;
}

@media screen and (max-width: 767px) {
  .m-culture-002__list-item-detail-desc {
    padding: 10px 0 0;
  }
}

.m-culture-003 {
  position: relative;
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .m-culture-003 {
    padding: 20px 0 0;
  }
}

.m-culture-003__inner {
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin: 0 auto;
}

.m-culture-003__list {
  padding: 12px;
}

@media screen and (max-width: 767px) {
  .m-culture-003__list {
    padding: 0;
  }
}

.m-culture-003__list-item {
  margin: 0 0 40px;
  padding: 12px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-culture-003__list-item {
    width: 100%;
    margin: 0;
    padding: 12px 24px;
  }
}

.m-culture-003__list-item:last-child {
  margin: 0;
}

.m-culture-003__list-item-inner {
  height: 100%;
}

.m-culture-003__list-item-figure {
  margin: 0 0 10px;
  font-size: 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .m-culture-003__list-item-figure {
    margin: 0;
  }
}

.m-culture-003__list-item-detail {
  padding: 20px 40px;
}

@media screen and (max-width: 1024px) {
  .m-culture-003__list-item-detail {
    padding: 20px 0;
  }
}

.m-culture-003__list-item-detail-ttl {
  margin: 0 0 10px;
  padding: 4px 0;
  border: solid #eee;
  border-width: 0 0 1px;
  font-weight: 900;
}

.m-culture-003__list-item-detail-ttl-txt {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.2;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-culture-003__list-item-detail-ttl-txt {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-culture-003__list-item-detail-desc {
  padding: 4px 0 0;
}

.m-culture-004 {
  position: relative;
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .m-culture-004 {
    padding: 20px 0;
  }
}

.m-culture-004__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

.m-culture-004__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 12px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-culture-004__list-item {
  width: 25%;
  padding: 12px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-culture-004__list-item {
    width: 100%;
    padding: 12px 15px;
  }
}

.m-culture-004__list-item-inner {
  height: 100%;
}

.m-culture-004__list-item-figure {
  margin: 0 0 10px;
  font-size: 0;
}

.m-culture-004__list-item-detail-ttl {
  margin: 0 0 10px;
  padding: 10px 0;
  border: solid #eee;
  border-width: 0 0 1px;
  font-weight: 900;
}

.m-culture-004__list-item-detail-ttl-txt {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.2;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-culture-004__list-item-detail-ttl-txt {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-culture-004__list-item-detail-desc {
  padding: 4px 0 0;
}

.m-culture-005 {
  position: relative;
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .m-culture-005 {
    padding: 20px 0;
  }
}

.m-culture-005__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.m-culture-005__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 12px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-culture-005__list-item {
  width: 50%;
  padding: 12px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-culture-005__list-item {
    width: 100%;
    padding: 12px 15px;
  }
}

.m-culture-005__list-item-inner {
  height: 100%;
  padding: 20px;
  border: 1px solid #eee;
}

.m-culture-005__list-item-figure {
  margin: 0 0 10px;
  font-size: 0;
}

.m-culture-005__list-item-detail-ttl {
  margin: 0 0 10px;
  padding: 10px 0;
  border: solid #eee;
  border-width: 0 0 1px;
  font-weight: 900;
}

.m-culture-005__list-item-detail-ttl-txt {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.2;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-culture-005__list-item-detail-ttl-txt {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-culture-005__list-item-detail-desc {
  padding: 4px 0 0;
}

.m-faq-001 {
  position: relative;
  padding: 80px 40px;
}

@media screen and (max-width: 767px) {
  .m-faq-001 {
    padding: 40px 20px 60px;
  }
}

.m-faq-001__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.m-faq-001__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-faq-001__list-item {
  width: 100%;
  margin: 0 0 20px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-faq-001__list-item {
    width: 100%;
  }
}

.m-faq-001__list-item:last-child {
  margin: 0;
}

.m-faq-001__list-item-ttl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #eee;
  font-weight: 900;
}

.m-faq-001__list-item-ttl-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  padding: 20px 14px 14px;
  background: var(--primary-bg, #04a1af);
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--primary-txt, #fff);
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-faq-001__list-item-ttl-icon {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.m-faq-001__list-item-ttl-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  padding: 10px 0 10px 20px;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-faq-001__list-item-ttl-txt {
    padding: 10px 0 10px 10px;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.2;
  }
}

.m-faq-001__list-item-content {
  padding: 20px;
}

@media screen and (max-width: 767px) {
  .m-faq-001__list-item-content {
    padding: 10px;
  }
}

.m-faq-002 {
  position: relative;
  padding: 80px 40px;
}

@media screen and (max-width: 767px) {
  .m-faq-002 {
    padding: 40px 20px 60px;
  }
}

.m-faq-002__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.m-faq-002__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-faq-002__list-item {
  width: 100%;
  margin: 0 0 20px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-faq-002__list-item {
    width: 100%;
  }
}

.m-faq-002__list-item:last-child {
  margin: 0;
}

.m-faq-002__list-item-ttl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 60px 0 0;
  background: #eee;
  font-weight: 900;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .m-faq-002__list-item-ttl {
    padding: 0 40px 0 0;
  }
}

.m-faq-002__list-item-ttl.is-active::after {
  opacity: 0;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

.m-faq-002__list-item-ttl::before {
  position: absolute;
  top: calc(50% - 1px);
  right: 20px;
  display: block;
  width: 20px;
  height: 2px;
  background: #adadad;
  content: "";
}

@media screen and (max-width: 767px) {
  .m-faq-002__list-item-ttl::before {
    right: 10px;
  }
}

.m-faq-002__list-item-ttl::after {
  position: absolute;
  top: calc(50% - 10px);
  right: 29px;
  display: block;
  width: 2px;
  height: 20px;
  background: #adadad;
  content: "";
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  .m-faq-002__list-item-ttl::after {
    right: 19px;
  }
}

.m-faq-002__list-item-ttl-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  padding: 20px 14px 14px;
  background: var(--primary-bg, #04a1af);
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--primary-txt, #fff);
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-faq-002__list-item-ttl-icon {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.m-faq-002__list-item-ttl-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  padding: 10px 0 10px 20px;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-faq-002__list-item-ttl-txt {
    padding: 10px 0 10px 10px;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.2;
  }
}

.m-faq-002__list-item-content {
  display: none;
  padding: 20px;
}

@media screen and (max-width: 767px) {
  .m-faq-002__list-item-content {
    padding: 10px;
  }
}

.m-faq-003 {
  position: relative;
  padding: 80px 40px;
}

@media screen and (max-width: 767px) {
  .m-faq-003 {
    padding: 40px 20px 60px;
  }
}

.m-faq-003__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.m-faq-003__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-faq-003__list-item {
  width: 100%;
  margin: 0 0 20px;
  padding: 20px;
  border: 1px solid #eee;
  background: #fff;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-faq-003__list-item {
    width: 100%;
  }
}

.m-faq-003__list-item:last-child {
  margin: 0;
}

.m-faq-003__list-item-ttl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 900;
}

.m-faq-003__list-item-ttl-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  padding: 20px 14px 14px;
  background: var(--primary-bg, #04a1af);
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--primary-txt, #fff);
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-faq-003__list-item-ttl-icon {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.m-faq-003__list-item-ttl-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  padding: 10px 0 10px 20px;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-faq-003__list-item-ttl-txt {
    padding: 10px 0 10px 10px;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.2;
  }
}

.m-faq-003__list-item-content {
  padding: 20px 0;
}

@media screen and (max-width: 767px) {
  .m-faq-003__list-item-content {
    padding: 10px 0;
  }
}

.m-faq-004 {
  position: relative;
  padding: 80px 40px;
}

@media screen and (max-width: 767px) {
  .m-faq-004 {
    padding: 40px 20px 60px;
  }
}

.m-faq-004__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.m-faq-004__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-faq-004__list-item {
  width: 100%;
  margin: 0 0 20px;
  padding: 20px;
  border: 1px solid #eee;
  background: #fff;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-faq-004__list-item {
    width: 100%;
    padding: 20px 0 20px 20px;
  }
}

.m-faq-004__list-item:last-child {
  margin: 0;
}

.m-faq-004__list-item-ttl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 60px 0 0;
  font-weight: 900;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .m-faq-004__list-item-ttl {
    padding: 0 40px 0 0;
  }
}

.m-faq-004__list-item-ttl.is-active::after {
  opacity: 0;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

.m-faq-004__list-item-ttl::before {
  position: absolute;
  top: calc(50% - 1px);
  right: 20px;
  display: block;
  width: 20px;
  height: 2px;
  background: #adadad;
  content: "";
}

@media screen and (max-width: 767px) {
  .m-faq-004__list-item-ttl::before {
    right: 10px;
  }
}

.m-faq-004__list-item-ttl::after {
  position: absolute;
  top: calc(50% - 10px);
  right: 29px;
  display: block;
  width: 2px;
  height: 20px;
  background: #adadad;
  content: "";
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  .m-faq-004__list-item-ttl::after {
    right: 19px;
  }
}

.m-faq-004__list-item-ttl-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  padding: 20px 14px 14px;
  background: var(--primary-bg, #04a1af);
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--primary-txt, #fff);
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-faq-004__list-item-ttl-icon {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.m-faq-004__list-item-ttl-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  padding: 10px 0 10px 20px;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-faq-004__list-item-ttl-txt {
    padding: 10px 0 10px 10px;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.2;
  }
}

.m-faq-004__list-item-content {
  display: none;
  padding: 20px 0;
}

@media screen and (max-width: 767px) {
  .m-faq-004__list-item-content {
    padding: 10px 0;
  }
}

.m-faq-005 {
  position: relative;
  padding: 80px 40px;
}

@media screen and (max-width: 767px) {
  .m-faq-005 {
    padding: 40px 20px 60px;
  }
}

.m-faq-005__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.m-faq-005__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-faq-005__list-item {
  width: 100%;
  margin: 0 0 20px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-faq-005__list-item {
    width: 100%;
  }
}

.m-faq-005__list-item:last-child {
  margin: 0;
}

.m-faq-005__list-item-ttl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 60px 20px 20px;
  border: solid #eee;
  border-width: 1px 0;
  font-weight: 900;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .m-faq-005__list-item-ttl {
    padding: 10px 40px 10px 10px;
  }
}

.m-faq-005__list-item-ttl.is-active::after {
  opacity: 0;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

.m-faq-005__list-item-ttl::before {
  position: absolute;
  top: calc(50% - 1px);
  right: 20px;
  display: block;
  width: 20px;
  height: 2px;
  background: #adadad;
  content: "";
}

@media screen and (max-width: 767px) {
  .m-faq-005__list-item-ttl::before {
    right: 10px;
  }
}

.m-faq-005__list-item-ttl::after {
  position: absolute;
  top: calc(50% - 10px);
  right: 29px;
  display: block;
  width: 2px;
  height: 20px;
  background: #adadad;
  content: "";
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  .m-faq-005__list-item-ttl::after {
    right: 19px;
  }
}

.m-faq-005__list-item-ttl-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  padding: 20px 14px 14px;
  background: var(--primary-bg, #04a1af);
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--primary-txt, #fff);
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-faq-005__list-item-ttl-icon {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.m-faq-005__list-item-ttl-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  padding: 10px 0 10px 20px;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-faq-005__list-item-ttl-txt {
    padding: 10px 0 10px 10px;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.2;
  }
}

.m-faq-005__list-item-content {
  display: none;
  padding: 20px;
}

@media screen and (max-width: 767px) {
  .m-faq-005__list-item-content {
    padding: 10px;
  }
}

.m-flow-001 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-flow-001 {
    padding: 40px 0 0;
  }
}

.m-flow-001__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.m-flow-001__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px;
  counter-reset: number 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-flow-001__list-item {
  position: relative;
  width: 100%;
  margin: 0 0 40px;
  text-align: left;
  counter-increment: number 1;
}

@media screen and (max-width: 1024px) {
  .m-flow-001__list-item {
    width: 100%;
  }
}

.m-flow-001__list-item:last-child {
  margin: 0;
}

.m-flow-001__list-item:last-child::after {
  display: none;
}

.m-flow-001__list-item::after {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: -40px;
  left: 58px;
  display: block;
  width: 5px;
  background: var(--primary, #04a1af);
  content: "";
  opacity: .5;
}

@media screen and (max-width: 767px) {
  .m-flow-001__list-item::after {
    left: 38px;
  }
}

.m-flow-001__list-item-ttl {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 20px;
  background: #eee;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .m-flow-001__list-item-ttl {
    margin: 0 0 10px;
  }
}

.m-flow-001__list-item-ttl-num {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  width: 120px;
  min-width: 120px;
  padding: 10px 0 0;
  background: var(--primary-bg, #04a1af);
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 18px;
  font-size: 1.8rem;
  color: var(--primary-txt, #fff);
  letter-spacing: 2px;
  letter-spacing: .2rem;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .m-flow-001__list-item-ttl-num {
    width: 80px;
    min-width: 80px;
    padding: 6px 0 0;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.m-flow-001__list-item-ttl-num::before {
  position: absolute;
  top: 100%;
  left: 0;
  display: block;
  border-top: 15px solid var(--primary-bg, #04a1af);
  border-right: 60px solid transparent;
  border-left: 60px solid transparent;
  content: "";
}

@media screen and (max-width: 767px) {
  .m-flow-001__list-item-ttl-num::before {
    border-width: 10px 40px 0;
  }
}

.m-flow-001__list-item-ttl-num::after {
  content: attr(data-prefix) counter(number, decimal-leading-zero) " ";
}

.m-flow-001__list-item-ttl-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  padding: 10px 0 10px 20px;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-flow-001__list-item-ttl-txt {
    padding: 5px 0 5px 10px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-flow-001__list-item-content {
  padding: 0 0 0 140px;
}

@media screen and (max-width: 767px) {
  .m-flow-001__list-item-content {
    padding: 0 0 0 90px;
  }
}

.m-flow-001__list-item-figure {
  margin: 0 0 20px;
  font-size: 0;
  text-align: center;
}

.m-flow-001__list-item-desc {
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .m-flow-001__list-item-desc {
    padding: 0;
  }
}

.m-flow-002 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-flow-002 {
    padding: 40px 0;
  }
}

.m-flow-002__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.m-flow-002__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px;
  counter-reset: number 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-flow-002__list-item {
  position: relative;
  width: 100%;
  margin: 0 0 30px;
  text-align: left;
  counter-increment: number 1;
}

@media screen and (max-width: 1024px) {
  .m-flow-002__list-item {
    width: 100%;
  }
}

.m-flow-002__list-item:last-child {
  margin: 0;
}

.m-flow-002__list-item:last-child::after {
  display: none;
}

.m-flow-002__list-item::after {
  display: block;
  width: 20px;
  height: 20px;
  margin: 10px auto 0;
  border: solid var(--primary, #04a1af);
  border-width: 0 6px 6px 0;
  content: "";
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.m-flow-002__list-item-ttl {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 20px;
  background: #eee;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .m-flow-002__list-item-ttl {
    margin: 0 0 20px;
  }
}

.m-flow-002__list-item-ttl-num {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  width: 120px;
  min-width: 120px;
  background: var(--primary-bg, #04a1af);
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 18px;
  font-size: 1.8rem;
  color: var(--primary-txt, #fff);
  letter-spacing: 2px;
  letter-spacing: .2rem;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .m-flow-002__list-item-ttl-num {
    width: 80px;
    min-width: 80px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.m-flow-002__list-item-ttl-num::after {
  content: attr(data-prefix) counter(number, decimal-leading-zero) " ";
}

.m-flow-002__list-item-ttl-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  padding: 10px 0 10px 20px;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-flow-002__list-item-ttl-txt {
    padding: 5px 0 5px 10px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-flow-002__list-item-figure {
  margin: 0 0 20px;
  font-size: 0;
  text-align: center;
}

.m-flow-002__list-item-desc {
  padding: 0 20px 20px;
  border-bottom: 1px solid #eee;
}

.m-flow-003 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-flow-003 {
    padding: 40px 0;
  }
}

.m-flow-003__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.m-flow-003__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px;
  counter-reset: number 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-flow-003__list-item {
  position: relative;
  width: 100%;
  margin: 0 0 30px;
  text-align: left;
  counter-increment: number 1;
}

@media screen and (max-width: 1024px) {
  .m-flow-003__list-item {
    width: 100%;
  }
}

.m-flow-003__list-item:last-child {
  margin: 0;
}

.m-flow-003__list-item:last-child::after {
  display: none;
}

.m-flow-003__list-item::after {
  display: block;
  width: 20px;
  height: 20px;
  margin: 15px auto 5px;
  border: solid var(--primary, #04a1af);
  border-width: 0 6px 6px 0;
  content: "";
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.m-flow-003__list-item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  border: 1px solid #eee;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .m-flow-003__list-item-inner {
    padding: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.m-flow-003__list-item-num {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  width: 140px;
  min-width: 140px;
  background: var(--primary-bg, #04a1af);
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 18px;
  font-size: 1.8rem;
  color: var(--primary-txt, #fff);
  letter-spacing: 2px;
  letter-spacing: .2rem;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .m-flow-003__list-item-num {
    width: 100%;
    margin: 0 0 14px;
  }
}

.m-flow-003__list-item-num::after {
  content: attr(data-prefix) counter(number, decimal-leading-zero) " ";
}

.m-flow-003__list-item-content {
  width: calc(100% - 140px);
}

@media screen and (max-width: 767px) {
  .m-flow-003__list-item-content {
    width: 100%;
  }
}

.m-flow-003__list-item-ttl {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .m-flow-003__list-item-ttl {
    margin: 0 0 10px;
  }
}

.m-flow-003__list-item-ttl-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  padding: 10px 0 10px 20px;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-flow-003__list-item-ttl-txt {
    padding: 0;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-flow-003__list-item-figure {
  margin: 0 0 20px;
  padding: 0 20px;
  font-size: 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .m-flow-003__list-item-figure {
    padding: 0;
  }
}

.m-flow-003__list-item-desc {
  padding: 0 20px 20px;
}

@media screen and (max-width: 767px) {
  .m-flow-003__list-item-desc {
    padding: 0;
  }
}

.m-flow-004 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-flow-004 {
    padding: 40px 0;
  }
}

.m-flow-004__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.m-flow-004__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px;
  counter-reset: number 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-flow-004__list-item {
  position: relative;
  width: 100%;
  margin: 0 0 30px;
  text-align: left;
  counter-increment: number 1;
}

@media screen and (max-width: 1024px) {
  .m-flow-004__list-item {
    width: 100%;
  }
}

.m-flow-004__list-item:last-child {
  margin: 0;
}

.m-flow-004__list-item:last-child::after {
  display: none;
}

.m-flow-004__list-item::after {
  display: block;
  width: 20px;
  height: 20px;
  margin: 10px auto 0;
  border: solid var(--primary, #04a1af);
  border-width: 0 6px 6px 0;
  content: "";
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.m-flow-004__list-item-inner {
  padding: 20px;
  border: 1px solid #eee;
  background: #fff;
}

.m-flow-004__list-item-ttl {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  margin: 0 0 20px;
  font-weight: 900;
  -webkit-box-align: start;
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .m-flow-004__list-item-ttl {
    margin: 0 0 10px;
  }
}

.m-flow-004__list-item-ttl-num {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  width: 120px;
  min-width: 120px;
  margin: 2px 0 0;
  padding: 2px 0 0;
  border-radius: 100px;
  background: var(--primary-bg, #04a1af);
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 18px;
  font-size: 1.8rem;
  color: var(--primary-txt, #fff);
  letter-spacing: 2px;
  letter-spacing: .2rem;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .m-flow-004__list-item-ttl-num {
    width: 80px;
    min-width: 80px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.m-flow-004__list-item-ttl-num::after {
  content: attr(data-prefix) counter(number, decimal-leading-zero) " ";
}

.m-flow-004__list-item-ttl-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  padding: 0 0 0 20px;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-flow-004__list-item-ttl-txt {
    padding: 0 0 0 10px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-flow-004__list-item-figure {
  margin: 0 0 20px;
  font-size: 0;
  text-align: center;
}

.m-flow-005 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-flow-005 {
    padding: 40px 0;
  }
}

.m-flow-005__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.m-flow-005__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px;
  counter-reset: number 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-flow-005__list::after {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: calc(50% - 5px);
  display: block;
  width: 10px;
  background: var(--primary, #04a1af);
  content: "";
  opacity: .5;
}

.m-flow-005__list-item {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 0 30px;
  text-align: left;
  counter-increment: number 1;
}

@media screen and (max-width: 1024px) {
  .m-flow-005__list-item {
    width: 100%;
  }
}

.m-flow-005__list-item:last-child {
  margin: 0;
}

.m-flow-005__list-item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  border: 1px solid #eee;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .m-flow-005__list-item-inner {
    padding: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.m-flow-005__list-item-num {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  width: 140px;
  min-width: 140px;
  background: var(--primary-bg, #04a1af);
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 18px;
  font-size: 1.8rem;
  color: var(--primary-txt, #fff);
  letter-spacing: 2px;
  letter-spacing: .2rem;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .m-flow-005__list-item-num {
    width: 100%;
    margin: 0 0 14px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.m-flow-005__list-item-num::after {
  content: attr(data-prefix) counter(number, decimal-leading-zero) " ";
}

.m-flow-005__list-item-content {
  width: calc(100% - 140px);
}

@media screen and (max-width: 767px) {
  .m-flow-005__list-item-content {
    width: 100%;
  }
}

.m-flow-005__list-item-ttl {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .m-flow-005__list-item-ttl {
    margin: 0 0 10px;
  }
}

.m-flow-005__list-item-ttl-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  padding: 10px 0 10px 20px;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-flow-005__list-item-ttl-txt {
    padding: 0;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-flow-005__list-item-figure {
  margin: 0 0 20px;
  padding: 0 20px;
  font-size: 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .m-flow-005__list-item-figure {
    padding: 0;
  }
}

.m-flow-005__list-item-desc {
  padding: 0 20px 20px;
}

@media screen and (max-width: 767px) {
  .m-flow-005__list-item-desc {
    padding: 0;
  }
}

.m-gallery-001 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-gallery-001 {
    padding: 40px 0;
  }
}

.m-gallery-001__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

.m-gallery-001__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 12px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-gallery-001__list-item {
  width: 25%;
  margin: 0 0 10px;
  padding: 6px;
  font-size: 0;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-gallery-001__list-item {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .m-gallery-001__list-item {
    width: 100%;
  }
}

.m-gallery-001__list-item-figure-caption {
  padding: 10px 20px;
  border: solid #eee;
  border-width: 0 1px 1px;
  background: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 900;
}

.m-gallery-002 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-gallery-002 {
    padding: 40px 0;
  }
}

.m-gallery-002__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 6px;
}

.m-gallery-002__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-gallery-002__list-item {
  width: 25%;
  margin: 0 0 10px;
  padding: 6px;
  font-size: 0;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-gallery-002__list-item {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .m-gallery-002__list-item {
    width: 100%;
  }
}

.m-gallery-002__list-item-figure-caption {
  padding: 10px 20px;
  border: solid #eee;
  border-width: 0 1px 1px;
  background: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 900;
}

.m-gallery-003 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-gallery-003 {
    padding: 40px 0;
  }
}

.m-gallery-003__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

.m-gallery-003__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 12px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-gallery-003__list-item {
  width: 25%;
  padding: 6px;
  font-size: 0;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-gallery-003__list-item {
    width: 50%;
    padding: 12px;
  }
}

.m-gallery-004 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-gallery-004 {
    padding: 40px 0;
  }
}

.m-gallery-004__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 6px;
}

.m-gallery-004__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-gallery-004__list-item {
  width: 25%;
  padding: 6px;
  font-size: 0;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-gallery-004__list-item {
    width: 50%;
    padding: 12px;
  }
}

.m-gallery-005 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-gallery-005 {
    padding: 40px 0;
  }
}

.m-gallery-005__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 12px;
}

.m-gallery-005__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-gallery-005__list-item {
  width: 33.33333%;
  margin: 0 0 10px;
  padding: 12px;
  font-size: 0;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-gallery-005__list-item {
    width: 50%;
    padding: 12px;
  }
}

@media screen and (max-width: 767px) {
  .m-gallery-005__list-item {
    width: 100%;
    padding: 12px;
  }
}

.m-gallery-005__list-item-figure-caption {
  position: relative;
  z-index: 1;
  width: 90%;
  margin: -30px 0 0;
  padding: 20px;
  background: #f2f2f2;
  font-weight: 900;
}

.m-gallery-005__list-item-figure-caption-ttl {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
}

.m-gallery-005__list-item-figure-caption-txt {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  opacity: .7;
}

.m-history-001 {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .m-history-001 {
    padding: 40px 0;
  }
}

.m-history-001__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

.m-history-001__detail {
  padding: 0 40px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-history-001__detail {
    padding: 0 20px;
  }
}

.m-history-001__detail-row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-history-001__detail-row::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 300px;
  background: #eee;
  content: "";
}

@media screen and (max-width: 1024px) {
  .m-history-001__detail-row::before {
    width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .m-history-001__detail-row::before {
    width: 40px;
  }
}

.m-history-001__detail-row::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 300px;
  display: block;
  width: 2px;
  background: #adadad;
  content: "";
  opacity: .5;
}

@media screen and (max-width: 1024px) {
  .m-history-001__detail-row::after {
    left: 200px;
  }
}

@media screen and (max-width: 767px) {
  .m-history-001__detail-row::after {
    left: 40px;
  }
}

.m-history-001__detail-date {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  -ms-flex-align: end;
  width: 300px;
  padding: 20px 30px;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
  -webkit-box-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 1024px) {
  .m-history-001__detail-date {
    width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .m-history-001__detail-date {
    -ms-flex-pack: start;
    width: 100%;
    padding: 10px 10px 10px 50px;
    -webkit-box-pack: start;
    justify-content: flex-start;
  }
}

.m-history-001__detail-date::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 50px;
  display: block;
  height: 2px;
  background: #adadad;
  content: "";
}

@media screen and (max-width: 767px) {
  .m-history-001__detail-date::after {
    left: 0;
  }
}

.m-history-001__detail-ttl {
  position: relative;
  width: calc(100% - 300px);
  padding: 20px 30px;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 1024px) {
  .m-history-001__detail-ttl {
    width: calc(100% - 200px);
  }
}

@media screen and (max-width: 767px) {
  .m-history-001__detail-ttl {
    width: 100%;
    padding: 10px 10px 10px 50px;
  }
}

.m-history-001__detail-ttl::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 2px;
  background: #adadad;
  content: "";
}

.m-history-001__detail-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 30px 40px 330px;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 1024px) {
  .m-history-001__detail-content {
    padding: 20px 30px 40px 230px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .m-history-001__detail-content {
    width: 100%;
    padding: 10px 10px 10px 50px;
  }
}

.m-history-001__detail-content-desc {
  min-width: 320px;
  padding: 0 30px 0 0;
}

.m-history-001__detail-content-desc-txt {
  font-size: 14px;
  font-size: 1.4rem;
  opacity: .7;
}

.m-history-001__detail-content-figure {
  min-width: 40%;
  max-width: 40%;
}

@media screen and (max-width: 1024px) {
  .m-history-001__detail-content-figure {
    max-width: 100%;
    padding: 10px 0 0;
  }
}

.m-history-002 {
  position: relative;
  padding: 60px 0;
}

@media screen and (max-width: 1024px) {
  .m-history-002 {
    padding: 40px 0;
  }
}

.m-history-002__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

.m-history-002__detail {
  position: relative;
  padding: 40px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-history-002__detail {
    padding: 0 20px;
  }
}

.m-history-002__detail::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  display: block;
  width: 2px;
  background: #adadad;
  content: "";
}

@media screen and (max-width: 1024px) {
  .m-history-002__detail::after {
    left: 20px;
  }
}

.m-history-002__detail-row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 1024px) {
  .m-history-002__detail-row {
    display: block;
  }
}

.m-history-002__detail-row:nth-child(even) {
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
}

.m-history-002__detail-row:nth-child(even) .m-history-002__detail-date::after {
  right: -10px;
  left: auto;
}

@media screen and (max-width: 1024px) {
  .m-history-002__detail-row:nth-child(even) .m-history-002__detail-date::after {
    right: auto;
    left: -8px;
  }
}

.m-history-002__detail-row-inner {
  width: 50%;
}

@media screen and (max-width: 1024px) {
  .m-history-002__detail-row-inner {
    width: 100%;
  }
}

.m-history-002__detail-date {
  position: relative;
  padding: 10px 40px;
  border-bottom: 2px solid #adadad;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 1024px) {
  .m-history-002__detail-date {
    width: 100%;
    padding: 10px 10px 10px 30px;
  }
}

.m-history-002__detail-date::after {
  position: absolute;
  z-index: 1;
  bottom: -10px;
  left: -8px;
  display: block;
  width: 14px;
  height: 14px;
  border: 2px solid #111;
  border-radius: 14px;
  background: #fff;
  content: "";
}

.m-history-002__detail-content {
  padding: 20px 30px;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 1024px) {
  .m-history-002__detail-content {
    padding: 10px 10px 10px 30px;
  }
}

.m-history-002__detail-content-inner {
  padding: 30px;
  background: #eee;
}

.m-history-002__detail-content-ttl {
  position: relative;
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-history-002__detail-content-desc {
  margin: 0 0 20px;
}

.m-history-002__detail-content-desc-txt {
  font-size: 14px;
  font-size: 1.4rem;
  opacity: .7;
}

.m-history-003 {
  position: relative;
  padding: 60px 20px;
}

@media screen and (max-width: 767px) {
  .m-history-003 {
    padding: 40px 0;
  }
}

.m-history-003__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.m-history-003__detail {
  position: relative;
  text-align: left;
}

.m-history-003__detail-row {
  position: relative;
  padding: 20px 0 0;
}

@media screen and (max-width: 767px) {
  .m-history-003__detail-row {
    display: block;
  }
}

.m-history-003__detail-date {
  position: relative;
  padding: 10px 40px;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-history-003__detail-date {
    width: 100%;
    padding: 10px 10px 10px 40px;
  }
}

.m-history-003__detail-date::before {
  position: absolute;
  top: -20px;
  bottom: 0;
  left: 20px;
  display: block;
  width: 2px;
  background: #adadad;
  content: "";
}

.m-history-003__detail-date::after {
  position: absolute;
  top: 100%;
  left: 20px;
  display: block;
  width: 2px;
  height: 30px;
  background: rgba(255, 255, 255, 0.5);
  content: "";
}

.m-history-003__detail-content {
  padding: 60px 60px 60px 30px;
  background: var(--primary-bg, #04a1af);
  font-weight: 900;
  color: var(--primary-txt, #fff);
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-history-003__detail-content {
    padding: 20px 20px 20px 40px;
  }
}

.m-history-003__detail-content-inner {
  overflow: visible;
}

.m-history-003__detail-content-figure {
  float: right;
  width: 50%;
  margin: -100px 0 20px 40px;
}

@media screen and (max-width: 767px) {
  .m-history-003__detail-content-figure {
    float: none;
    width: 100%;
    margin: 10px 0 20px;
  }
}

.m-history-003__detail-content-ttl {
  position: relative;
  margin: 0 0 20px;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-history-003__detail-content-desc-txt {
  font-size: 14px;
  font-size: 1.4rem;
  opacity: .7;
}

.m-history-004 {
  overflow: hidden;
}

.m-history-004__thumbnail {
  margin: 0 0 20px;
  padding: 20px 0 0;
}

@media screen and (max-width: 767px) {
  .m-history-004__thumbnail {
    padding: 0;
  }
}

.m-history-004__thumbnail-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  justify-content: center;
}

.m-history-004__thumbnail-list-item {
  padding: 20px;
}

@media screen and (max-width: 767px) {
  .m-history-004__thumbnail-list-item {
    padding: 10px;
  }
}

.m-history-004__thumbnail-list-item.is-active .m-history-004__thumbnail-list-item-link {
  border-bottom: 2px solid var(--primary, #04a1af);
  color: var(--primary, #04a1af);
}

.m-history-004__thumbnail-list-item-link {
  padding: 10px 0;
  background: none;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 24px;
  font-size: 2.4rem;
}

@media screen and (max-width: 767px) {
  .m-history-004__thumbnail-list-item-link {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.m-history-004__content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 40px;
}

@media screen and (max-width: 767px) {
  .m-history-004__content {
    padding: 40px 0;
  }
}

.m-history-004__background {
  position: relative;
  padding: 80px;
  background: no-repeat center / cover;
}

@media screen and (max-width: 767px) {
  .m-history-004__background {
    padding: 20px;
  }
}

.m-history-004__background::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: var(--primary, #04a1af);
  content: "";
  opacity: .7;
}

.m-history-004__slide {
  position: relative;
  display: block;
  height: auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.9);
}

@media screen and (max-width: 767px) {
  .m-history-004__slide {
    display: block;
    padding: 20px;
  }
}

.m-history-004__controls {
  position: absolute;
  z-index: 1;
  top: 80px;
  right: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  pointer-events: none;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .m-history-004__controls {
    top: 20px;
    right: 20px;
  }
}

.m-history-004__controls-next,
.m-history-004__controls-prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  width: 40px;
  height: 40px;
  outline: none;
  background: var(--primary-bg, #04a1af);
  pointer-events: auto;
  cursor: pointer;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

.m-history-004__controls-next::before,
.m-history-004__controls-prev::before {
  display: block;
  width: 20px;
  height: 5px;
  border: solid var(--primary-txt, #fff);
  content: "";
}

.m-history-004__controls-prev::before {
  margin: -2px 0 0 4px;
  border-width: 0 0 1px 1px;
  -webkit-transform: skew(-45deg);
  transform: skew(-45deg);
}

.m-history-004__controls-next::before {
  margin: -2px 0 0 -4px;
  border-width: 0 1px 1px 0;
  -webkit-transform: skew(45deg);
  transform: skew(45deg);
}

.m-history-004__detail {
  text-align: left;
}

.m-history-004__detail-date {
  margin: 0 0 20px;
  padding: 0 10px 8px;
  border-bottom: 2px solid #adadad;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

@media screen and (max-width: 767px) {
  .m-history-004__detail-date {
    padding: 0;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.m-history-004__detail-content {
  overflow-y: auto;
  max-height: 480px;
  padding: 0 30px 0 0;
}

@media screen and (max-width: 767px) {
  .m-history-004__detail-content {
    padding: 0 10px 0 0;
  }
}

.m-history-004__detail-content-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 40px;
}

@media screen and (max-width: 767px) {
  .m-history-004__detail-content-list-item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.m-history-004__detail-content-list-item:last-child {
  margin: 0;
}

.m-history-004__detail-content-date {
  width: 100px;
  padding: 0 10px;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

@media screen and (max-width: 767px) {
  .m-history-004__detail-content-date {
    width: 100%;
    padding: 0;
  }
}

.m-history-004__detail-content-body {
  width: calc(100% - 100px);
}

@media screen and (max-width: 767px) {
  .m-history-004__detail-content-body {
    width: 100%;
  }
}

.m-history-004__detail-content-ttl {
  margin: 0 0 10px;
  font-weight: 900;
}

.m-history-004__detail-content-desc {
  font-size: 14px;
  font-size: 1.4rem;
}

.m-history-005 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-history-005 {
    padding: 40px 0 10px;
  }
}

.m-history-005__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

.m-history-005__year {
  position: relative;
  overflow: hidden;
  margin: 60px 0 0;
  padding: 100px 0 0;
}

.m-history-005__figure {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
}

@media screen and (max-width: 1024px) {
  .m-history-005__figure {
    width: 80%;
  }
}

@media screen and (max-width: 767px) {
  .m-history-005__figure {
    width: 90%;
  }
}

.m-history-005__detail {
  position: relative;
  z-index: 1;
  width: 70%;
  background: #eee;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-history-005__detail {
    width: 80%;
  }
}

@media screen and (max-width: 767px) {
  .m-history-005__detail {
    width: 90%;
  }
}

.m-history-005__detail-row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .m-history-005__detail-row {
    display: block;
  }
}

.m-history-005__detail-row:last-child .m-history-005__detail-content {
  margin: 0 0 60px;
}

.m-history-005__detail-date {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  width: 300px;
  padding: 40px 30px 0;
  background: var(--primary-bg, #04a1af);
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-weight: 900;
  color: var(--primary-txt, #fff);
  letter-spacing: 2px;
  letter-spacing: .2rem;
  -webkit-box-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 1024px) {
  .m-history-005__detail-date {
    width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .m-history-005__detail-date {
    -ms-flex-pack: start;
    width: 100%;
    padding: 10px;
    -webkit-box-pack: start;
    justify-content: flex-start;
  }
}

.m-history-005__detail-content {
  width: calc(100% - 300px);
  padding: 40px 30px 0;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 1024px) {
  .m-history-005__detail-content {
    width: calc(100% - 200px);
  }
}

@media screen and (max-width: 767px) {
  .m-history-005__detail-content {
    width: 100%;
    padding: 20px 10px;
  }
}

.m-history-005__detail-content-ttl {
  position: relative;
  margin: 0 0 20px;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-history-005__detail-content-ttl {
    width: 100%;
  }
}

.m-history-005__detail-content-desc-txt {
  font-size: 14px;
  font-size: 1.4rem;
  opacity: .7;
}

.m-interview-001 {
  position: relative;
  padding: 80px 20px;
}

@media screen and (max-width: 767px) {
  .m-interview-001 {
    padding: 40px 0 20px;
  }
}

.m-interview-001__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.m-interview-001__nav {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-interview-001__nav-item {
  width: 25%;
  padding: 5px;
}

@media screen and (max-width: 767px) {
  .m-interview-001__nav-item {
    width: 50%;
  }
}

.m-interview-001__nav-item-btn {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  color: var(--primary, #04a1af);
}

.m-interview-001__nav-item-btn.is-active {
  background: var(--primary-bg, #04a1af);
  color: var(--primary-txt, #fff);
}

.m-interview-001__nav-item-btn.is-active::after {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  border: 6px solid var(--primary-bg, #04a1af);
  pointer-events: none;
  content: "";
  opacity: .8;
}

.m-interview-001__nav-item-figure {
  font-size: 0;
}

.m-interview-001__nav-item-ttl {
  width: 100%;
  padding: 20px;
  border: solid var(--primary, #04a1af);
  border-width: 0 2px 2px;
  font-weight: 900;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-interview-001__nav-item-ttl {
    padding: 10px 15px 15px;
    line-height: 1.5;
  }
}

.m-interview-001__nav-item-ttl-category {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-interview-001__nav-item-ttl-ruby {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-interview-001__nav-item-ttl-name {
  display: block;
  padding: 5px 0;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-interview-001__nav-item-ttl-name {
    padding: 10px 0;
  }
}

.m-interview-001__contents {
  position: relative;
  overflow: hidden;
  margin: 40px 5px 0;
}

.m-interview-001__contents-tab {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}

.m-interview-001__contents-tab.is-active {
  position: relative;
  z-index: 1;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.m-interview-001__contents-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 40px;
  background: var(--primary-bg, #04a1af);
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .m-interview-001__contents-card {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.m-interview-001__contents-card-figure {
  width: 50%;
  background: no-repeat top center / cover;
  font-size: 0;
}

@media screen and (max-width: 767px) {
  .m-interview-001__contents-card-figure {
    width: 100%;
  }
}

.m-interview-001__contents-card-figure::after {
  padding: 60% 0 0;
  content: "";
}

@media screen and (max-width: 767px) {
  .m-interview-001__contents-card-figure::after {
    display: block;
  }
}

.m-interview-001__contents-card-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  width: 50%;
  padding: 50px;
  text-align: left;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-interview-001__contents-card-content {
    width: 100%;
    padding: 30px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.m-interview-001__contents-card-content::before {
  position: absolute;
  z-index: 0;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  border: 1px solid var(--primary-txt, #fff);
  content: "";
}

.m-interview-001__contents-card-content::after {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: -30px;
  width: 60px;
  height: 1px;
  background: var(--primary-txt, #fff);
  content: "";
}

.m-interview-001__contents-card-ttl {
  margin: 0 0 30px;
}

.m-interview-001__contents-card-ttl-category {
  display: block;
  margin: 0 0 10px;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-interview-001__contents-card-ttl-name {
  display: block;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-interview-001__contents-card-ttl-name {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.m-interview-001__contents-card-ttl-ruby {
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-interview-001__contents-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 60px;
}

@media screen and (max-width: 1024px) {
  .m-interview-001__contents-section {
    margin: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.m-interview-001__contents-section:nth-child(odd) {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
}

.m-interview-001__contents-section:nth-child(odd) .m-interview-001__contents-section-detail {
  padding: 0 60px 0 0;
}

@media screen and (max-width: 1024px) {
  .m-interview-001__contents-section:nth-child(odd) .m-interview-001__contents-section-detail {
    padding: 30px 0 0;
  }
}

.m-interview-001__contents-section:last-child {
  margin: 0;
}

.m-interview-001__contents-section-figure {
  width: 480px;
  font-size: 0;
}

@media screen and (max-width: 1024px) {
  .m-interview-001__contents-section-figure {
    width: 100%;
  }
}

.m-interview-001__contents-section-figure-img {
  width: 100%;
}

.m-interview-001__contents-section-detail {
  position: relative;
  z-index: 1;
  width: calc(100% - 480px);
  padding: 0 0 0 60px;
  font-weight: 900;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-interview-001__contents-section-detail {
    width: 100%;
    padding: 30px 0;
  }
}

.m-interview-001__contents-section-detail-question {
  margin: 0 0 20px;
  padding: 0 0 10px;
  border-bottom: 2px solid var(--primary, #04a1af);
  color: var(--primary, #04a1af);
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-interview-001__contents-section-detail-ttl {
  margin: 0 0 20px;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-interview-001__contents-section-detail-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .m-interview-001__contents-section-detail-content {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-interview-001__contents-section-detail-content-txt {
  margin: 0 0 20px;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-interview-001__contents-section-detail-content-txt-name {
  display: block;
  color: var(--primary, #04a1af);
}

.m-interview-002 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-interview-002 {
    padding: 40px 0 20px;
  }
}

.m-interview-002__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .m-interview-002__inner {
    padding: 0;
  }
}

.m-interview-002__nav {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .m-interview-002__nav {
    padding: 0 20px;
  }
}

.m-interview-002__nav-item {
  width: 25%;
  padding: 5px;
}

@media screen and (max-width: 767px) {
  .m-interview-002__nav-item {
    width: 50%;
  }
}

.m-interview-002__nav-item-btn {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  color: var(--primary, #04a1af);
}

.m-interview-002__nav-item-btn.is-active {
  background: var(--primary-bg, #04a1af);
  color: var(--primary-txt, #fff);
}

.m-interview-002__nav-item-btn.is-active::after {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  border: 6px solid var(--primary-bg, #04a1af);
  pointer-events: none;
  content: "";
  opacity: .8;
}

.m-interview-002__nav-item-figure {
  font-size: 0;
}

.m-interview-002__nav-item-ttl {
  width: 100%;
  padding: 20px;
  border: solid var(--primary, #04a1af);
  border-width: 0 2px 2px;
  font-weight: 900;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-interview-002__nav-item-ttl {
    padding: 10px 15px 15px;
    line-height: 1.5;
  }
}

.m-interview-002__nav-item-ttl-category {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-interview-002__nav-item-ttl-ruby {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-interview-002__nav-item-ttl-name {
  display: block;
  padding: 5px 0;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-interview-002__nav-item-ttl-name {
    padding: 10px 0;
  }
}

.m-interview-002__contents {
  position: relative;
  overflow: hidden;
  margin: 40px 5px 0;
}

@media screen and (max-width: 767px) {
  .m-interview-002__contents {
    padding: 0 20px;
  }
}

.m-interview-002__contents-tab {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}

.m-interview-002__contents-tab.is-active {
  position: relative;
  z-index: 1;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.m-interview-002__contents-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 40px;
  background: var(--primary-bg, #04a1af);
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .m-interview-002__contents-card {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.m-interview-002__contents-card-figure {
  width: 50%;
  background: no-repeat top center / cover;
  font-size: 0;
}

@media screen and (max-width: 767px) {
  .m-interview-002__contents-card-figure {
    width: 100%;
  }
}

.m-interview-002__contents-card-figure::after {
  padding: 60% 0 0;
  content: "";
}

@media screen and (max-width: 767px) {
  .m-interview-002__contents-card-figure::after {
    display: block;
  }
}

.m-interview-002__contents-card-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  width: 50%;
  padding: 50px;
  text-align: left;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-interview-002__contents-card-content {
    width: 100%;
    padding: 30px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.m-interview-002__contents-card-content::before {
  position: absolute;
  z-index: 0;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  border: 1px solid var(--primary-txt, #fff);
  content: "";
}

.m-interview-002__contents-card-content::after {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: -30px;
  width: 60px;
  height: 1px;
  background: var(--primary-txt, #fff);
  content: "";
}

.m-interview-002__contents-card-ttl {
  margin: 0 0 30px;
}

.m-interview-002__contents-card-ttl-category {
  display: block;
  margin: 0 0 10px;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-interview-002__contents-card-ttl-name {
  display: block;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-interview-002__contents-card-ttl-name {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.m-interview-002__contents-card-ttl-ruby {
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-interview-002__contents-section {
  margin: 0 0 40px;
}

@media screen and (max-width: 767px) {
  .m-interview-002__contents-section {
    margin: 0 -20px 10px;
  }
}

.m-interview-002__contents-section:last-child {
  margin: 0;
}

.m-interview-002__contents-section-figure-img {
  width: 100%;
}

.m-interview-002__contents-section-figure+.m-interview-002__contents-section-detail {
  margin-top: -140px;
}

.m-interview-002__contents-section-detail {
  position: relative;
  z-index: 1;
  margin: 0 40px;
  padding: 40px;
  background: #fff;
  font-weight: 900;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-interview-002__contents-section-detail {
    margin: -60px 20px 0;
    padding: 30px 20px;
  }
}

.m-interview-002__contents-section-detail-ttl {
  margin: 0 0 30px;
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-interview-002__contents-section-detail-ttl {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.m-interview-002__contents-section-detail-intro {
  margin: 0 0 30px;
  font-size: 20px;
  font-size: 2rem;
  color: var(--primary, #04a1af);
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-interview-002__contents-section-detail-intro {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .m-interview-002__contents-section-detail-content {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.m-interview-002__contents-section-detail-content-txt {
  margin: 0 0 20px;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-interview-002__contents-section-detail-content-txt-name {
  display: block;
  color: var(--primary, #04a1af);
}

.m-interview-003 {
  position: relative;
  padding: 80px 20px;
}

@media screen and (max-width: 767px) {
  .m-interview-003 {
    padding: 40px 0 20px;
  }
}

.m-interview-003__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.m-interview-003__nav {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-interview-003__nav-item {
  width: 25%;
  padding: 5px;
}

@media screen and (max-width: 767px) {
  .m-interview-003__nav-item {
    width: 50%;
  }
}

.m-interview-003__nav-item-btn {
  width: 100%;
  height: 100%;
  background: var(--primary-bg, #04a1af);
  color: var(--primary-txt, #fff);
}

.m-interview-003__nav-item-ttl {
  padding: 20px;
  font-weight: 900;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-interview-003__nav-item-ttl {
    padding: 10px 15px 15px;
    line-height: 1.5;
  }
}

.m-interview-003__nav-item-ttl-category {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-interview-003__nav-item-ttl-ruby {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-interview-003__nav-item-ttl-name {
  display: block;
  padding: 5px 0;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-interview-003__nav-item-ttl-name {
    padding: 10px 0;
  }
}

.m-interview-003__contents {
  position: relative;
  overflow: hidden;
  margin: 40px 5px 0;
}

.m-interview-003__contents-tab {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}

.m-interview-003__contents-tab.is-active {
  position: relative;
  z-index: 1;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.m-interview-003__contents-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 60px;
}

@media screen and (max-width: 1024px) {
  .m-interview-003__contents-section {
    margin: 0 0 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.m-interview-003__contents-section:nth-child(even) {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
}

.m-interview-003__contents-section:nth-child(even) .m-interview-003__contents-section-detail {
  padding: 0 60px 0 0;
}

@media screen and (max-width: 1024px) {
  .m-interview-003__contents-section:nth-child(even) .m-interview-003__contents-section-detail {
    padding: 30px 0 0;
  }
}

.m-interview-003__contents-section:last-child {
  margin: 0;
}

.m-interview-003__contents-section-figure {
  width: 480px;
  font-size: 0;
}

@media screen and (max-width: 1024px) {
  .m-interview-003__contents-section-figure {
    width: 100%;
  }
}

.m-interview-003__contents-section-figure-img {
  width: 100%;
}

.m-interview-003__contents-section-detail {
  position: relative;
  z-index: 1;
  width: calc(100% - 480px);
  padding: 0 0 0 60px;
  font-weight: 900;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-interview-003__contents-section-detail {
    width: 100%;
    padding: 30px 0;
  }
}

.m-interview-003__contents-section-detail-ttl {
  margin: 0 0 30px;
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-interview-003__contents-section-detail-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

.m-interview-003__contents-section-detail-intro {
  margin: 0 0 30px;
  font-size: 20px;
  font-size: 2rem;
  color: var(--primary, #04a1af);
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-interview-003__contents-section-detail-intro {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .m-interview-003__contents-section-detail-content {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-interview-003__contents-section-detail-content-txt {
  margin: 0 0 20px;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-interview-003__contents-section-detail-content-txt-name {
  display: block;
  color: var(--primary, #04a1af);
}

.m-interview-004 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-interview-004 {
    padding: 40px 0 20px;
  }
}

.m-interview-004__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .m-interview-004__inner {
    padding: 0;
  }
}

.m-interview-004__nav {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .m-interview-004__nav {
    padding: 0 20px;
  }
}

.m-interview-004__nav-item {
  width: 25%;
  padding: 5px;
}

@media screen and (max-width: 767px) {
  .m-interview-004__nav-item {
    width: 50%;
  }
}

.m-interview-004__nav-item-btn {
  width: 100%;
  height: 100%;
  background: var(--primary-bg, #04a1af);
  color: var(--primary-txt, #fff);
}

.m-interview-004__nav-item-ttl {
  padding: 20px;
  font-weight: 900;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-interview-004__nav-item-ttl {
    padding: 10px 15px 15px;
    line-height: 1.5;
  }
}

.m-interview-004__nav-item-ttl-category {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-interview-004__nav-item-ttl-ruby {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-interview-004__nav-item-ttl-name {
  display: block;
  padding: 5px 0;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-interview-004__nav-item-ttl-name {
    padding: 10px 0;
  }
}

.m-interview-004__contents {
  position: relative;
  overflow: hidden;
  margin: 40px 5px 0;
}

.m-interview-004__contents-tab {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}

.m-interview-004__contents-tab.is-active {
  position: relative;
  z-index: 1;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.m-interview-004__contents-section {
  margin: 0 0 40px;
}

@media screen and (max-width: 767px) {
  .m-interview-004__contents-section {
    margin: 0 0 10px;
  }
}

.m-interview-004__contents-section:last-child {
  margin: 0;
}

.m-interview-004__contents-section-figure-img {
  width: 100%;
}

.m-interview-004__contents-section-figure+.m-interview-004__contents-section-detail {
  margin-top: -140px;
}

.m-interview-004__contents-section-detail {
  position: relative;
  z-index: 1;
  margin: 0 40px;
  padding: 40px;
  background: #fff;
  font-weight: 900;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-interview-004__contents-section-detail {
    margin: -60px 20px 0;
    padding: 30px 20px;
  }
}

.m-interview-004__contents-section-detail-ttl {
  margin: 0 0 30px;
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-interview-004__contents-section-detail-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

.m-interview-004__contents-section-detail-intro {
  margin: 0 0 30px;
  font-size: 20px;
  font-size: 2rem;
  color: var(--primary, #04a1af);
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-interview-004__contents-section-detail-intro {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .m-interview-004__contents-section-detail-content {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-interview-004__contents-section-detail-content-txt {
  margin: 0 0 20px;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-interview-004__contents-section-detail-content-txt-name {
  display: block;
  color: var(--primary, #04a1af);
}

.m-interview-005 {
  position: relative;
  padding: 80px 20px;
}

@media screen and (max-width: 767px) {
  .m-interview-005 {
    padding: 40px 0 20px;
  }
}

.m-interview-005__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .m-interview-005__inner {
    padding: 0;
  }
}

.m-interview-005__nav {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .m-interview-005__nav {
    padding: 0 20px;
  }
}

.m-interview-005__nav-item {
  width: 25%;
  padding: 5px;
}

@media screen and (max-width: 767px) {
  .m-interview-005__nav-item {
    width: 50%;
  }
}

.m-interview-005__nav-item-btn {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  color: var(--primary, #04a1af);
}

.m-interview-005__nav-item-btn.is-active {
  background: var(--primary-bg, #04a1af);
  color: var(--primary-txt, #fff);
}

.m-interview-005__nav-item-btn.is-active::after {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  border: 6px solid var(--primary-bg, #04a1af);
  pointer-events: none;
  content: "";
  opacity: .8;
}

.m-interview-005__nav-item-figure {
  font-size: 0;
}

.m-interview-005__nav-item-ttl {
  width: 100%;
  padding: 20px;
  border: solid var(--primary, #04a1af);
  border-width: 0 2px 2px;
  font-weight: 900;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-interview-005__nav-item-ttl {
    padding: 10px 15px 15px;
    line-height: 1.5;
  }
}

.m-interview-005__nav-item-ttl-category {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-interview-005__nav-item-ttl-ruby {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-interview-005__nav-item-ttl-name {
  display: block;
  padding: 5px 0;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-interview-005__nav-item-ttl-name {
    padding: 10px 0;
  }
}

.m-interview-005__contents {
  position: relative;
  overflow: hidden;
  margin: 40px 5px 0;
}

.m-interview-005__contents-tab {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}

.m-interview-005__contents-tab.is-active {
  position: relative;
  z-index: 1;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.m-interview-005__contents-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  margin: 0 0 40px;
  padding: 80px 60px 80px 0;
  background: no-repeat top center / cover;
  color: var(--primary-txt, #fff);
  -webkit-box-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 1024px) {
  .m-interview-005__contents-card {
    display: none;
    padding: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.m-interview-005__contents-card::before {
  display: none;
  padding: 60% 0 0;
  content: "";
}

@media screen and (max-width: 767px) {
  .m-interview-005__contents-card::before {
    display: block;
  }
}

.m-interview-005__contents-card::after {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: #111;
  content: "";
  opacity: .2;
}

.m-interview-005__contents-card-content {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  width: calc(50% - 60px);
  padding: 50px;
  text-align: left;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-interview-005__contents-card-content {
    width: 100%;
    padding: 30px;
  }
}

.m-interview-005__contents-card-content::before {
  position: absolute;
  z-index: 0;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  border: 1px solid var(--primary-txt, #fff);
  content: "";
}

.m-interview-005__contents-card-content::after {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: -30px;
  width: 60px;
  height: 1px;
  background: var(--primary-txt, #fff);
  content: "";
}

.m-interview-005__contents-card-ttl {
  margin: 0 0 30px;
}

.m-interview-005__contents-card-ttl-category {
  display: block;
  margin: 0 0 10px;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-interview-005__contents-card-ttl-name {
  display: block;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-interview-005__contents-card-ttl-ruby {
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-interview-005__contents-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 60px;
}

@media screen and (max-width: 1024px) {
  .m-interview-005__contents-section {
    margin: 0 0 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.m-interview-005__contents-section:nth-child(odd) {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
}

.m-interview-005__contents-section:nth-child(odd) .m-interview-005__contents-section-detail {
  padding: 0 60px 0 0;
}

@media screen and (max-width: 1024px) {
  .m-interview-005__contents-section:nth-child(odd) .m-interview-005__contents-section-detail {
    padding: 30px 20px 0;
  }
}

.m-interview-005__contents-section:last-child {
  margin: 0;
}

.m-interview-005__contents-section-figure {
  width: 480px;
  font-size: 0;
}

@media screen and (max-width: 1024px) {
  .m-interview-005__contents-section-figure {
    width: 100%;
  }
}

.m-interview-005__contents-section-figure-img {
  width: 100%;
}

.m-interview-005__contents-section-detail {
  position: relative;
  z-index: 1;
  width: calc(100% - 480px);
  padding: 0 0 0 60px;
  font-weight: 900;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-interview-005__contents-section-detail {
    width: 100%;
    padding: 30px 20px;
  }
}

.m-interview-005__contents-section-detail-question {
  margin: 0 0 20px;
  padding: 0 0 10px;
  border-bottom: 2px solid var(--primary, #04a1af);
  color: var(--primary, #04a1af);
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-interview-005__contents-section-detail-ttl {
  margin: 0 0 20px;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-interview-005__contents-section-detail-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .m-interview-005__contents-section-detail-content {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-interview-005__contents-section-detail-content-txt {
  margin: 0 0 20px;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-interview-005__contents-section-detail-content-txt-name {
  display: block;
  color: var(--primary, #04a1af);
}

.m-jobs-001 {
  position: relative;
  padding: 80px 20px 40px;
}

@media screen and (max-width: 767px) {
  .m-jobs-001 {
    padding: 40px 20px;
  }
}

.m-jobs-001__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

.m-jobs-001__content {
  margin: 0 0 20px;
}

.m-jobs-001__content-desc {
  line-height: 2;
}

.m-jobs-001__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .m-jobs-001__list {
    padding: 0;
  }
}

.m-jobs-001__list-item {
  width: 100%;
  padding: 20px;
}

@media screen and (max-width: 1024px) {
  .m-jobs-001__list-item {
    padding: 10px 0;
  }
}

.m-jobs-001__list-item:nth-child(even) .m-jobs-001__list-item-inner {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
}

.m-jobs-001__list-item:nth-child(even) .m-jobs-001__list-item-detail {
  margin: 0 -8% 0 0;
  padding: 40px 40px 40px 10%;
}

@media screen and (max-width: 1024px) {
  .m-jobs-001__list-item:nth-child(even) .m-jobs-001__list-item-detail {
    padding: 20px;
  }
}

@media screen and (max-width: 767px) {
  .m-jobs-001__list-item:nth-child(even) .m-jobs-001__list-item-detail {
    margin: -14% 0 0;
    padding: 20px;
  }
}

.m-jobs-001__list-item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .m-jobs-001__list-item-inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.m-jobs-001__list-item-figure {
  width: 55%;
  background: no-repeat center / cover;
}

@media screen and (max-width: 767px) {
  .m-jobs-001__list-item-figure {
    width: 100%;
  }
}

.m-jobs-001__list-item-figure::before {
  display: none;
  padding: 60% 0 0;
  content: "";
}

@media screen and (max-width: 767px) {
  .m-jobs-001__list-item-figure::before {
    display: block;
  }
}

.m-jobs-001__list-item-detail {
  width: 53%;
  margin: 0 0 0 -8%;
  padding: 40px 10% 40px 40px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-jobs-001__list-item-detail {
    padding: 20px;
  }
}

@media screen and (max-width: 767px) {
  .m-jobs-001__list-item-detail {
    width: 100%;
    margin: -14% 0 0;
    padding: 20px;
  }
}

.m-jobs-001__list-item-detail-job {
  display: inline-block;
  margin: 0 0 10px;
  padding: 0 20px;
  background: var(--primary-bg, #04a1af);
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary-txt, #fff);
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-jobs-001__list-item-detail-ttl {
  display: inline-block;
  margin: 0 0 30px;
  padding: 2px 10px;
  background: var(--primary-bg, #04a1af);
  font-size: 14px;
  font-size: 1.4rem;
  color: var(--primary-txt, #fff);
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-jobs-001__list-item-detail-desc {
  font-weight: 900;
}

.m-jobs-002 {
  position: relative;
  padding: 80px 20px 20px;
}

@media screen and (max-width: 767px) {
  .m-jobs-002 {
    padding: 40px 20px;
  }
}

.m-jobs-002__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

.m-jobs-002__content {
  margin: 0 0 20px;
}

.m-jobs-002__content-desc {
  line-height: 2;
}

.m-jobs-002__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
  .m-jobs-002__list {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .m-jobs-002__list {
    padding: 0;
  }
}

.m-jobs-002__list-item {
  width: 33.33333%;
  padding: 20px;
}

@media screen and (max-width: 1024px) {
  .m-jobs-002__list-item {
    width: 60%;
    padding: 10px 0;
  }
}

@media screen and (max-width: 767px) {
  .m-jobs-002__list-item {
    width: 100%;
  }
}

.m-jobs-002__list-item-figure {
  background: no-repeat center / cover;
}

.m-jobs-002__list-item-figure::before {
  display: block;
  padding: 100% 0 0;
  content: "";
}

.m-jobs-002__list-item-detail {
  margin: -14% 0 0;
  padding: 20px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-jobs-002__list-item-detail {
    padding: 20px;
  }
}

@media screen and (max-width: 767px) {
  .m-jobs-002__list-item-detail {
    width: 100%;
    margin: -14% 0 0;
    padding: 20px;
  }
}

.m-jobs-002__list-item-detail-job {
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 38px;
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--primary, #04a1af);
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-jobs-002__list-item-detail-ttl {
  margin: 0 0 30px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-jobs-002__list-item-detail-desc {
  font-weight: 900;
}

.m-jobs-003 {
  position: relative;
  padding: 80px 20px 20px;
}

@media screen and (max-width: 767px) {
  .m-jobs-003 {
    padding: 40px 20px;
  }
}

.m-jobs-003__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

.m-jobs-003__content {
  margin: 0 0 20px;
}

.m-jobs-003__content-desc {
  line-height: 2;
}

.m-jobs-003__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .m-jobs-003__list {
    padding: 0;
  }
}

.m-jobs-003__list-item {
  width: 50%;
  padding: 20px;
}

@media screen and (max-width: 1024px) {
  .m-jobs-003__list-item {
    width: 100%;
    padding: 10px 0;
  }
}

.m-jobs-003__list-item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .m-jobs-003__list-item-inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.m-jobs-003__list-item-figure {
  width: 40%;
  background: no-repeat center / cover;
}

@media screen and (max-width: 767px) {
  .m-jobs-003__list-item-figure {
    width: 100%;
  }
}

.m-jobs-003__list-item-figure::before {
  display: none;
  padding: 60% 0 0;
  content: "";
}

@media screen and (max-width: 767px) {
  .m-jobs-003__list-item-figure::before {
    display: block;
  }
}

.m-jobs-003__list-item-detail {
  width: 60%;
  padding: 40px;
  background: #eee;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-jobs-003__list-item-detail {
    width: 100%;
    padding: 20px;
  }
}

.m-jobs-003__list-item-detail-job {
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-weight: 900;
  color: var(--primary, #04a1af);
}

.m-jobs-003__list-item-detail-ttl {
  margin: 0 0 20px;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-jobs-004 {
  position: relative;
  padding: 80px 20px 60px;
}

@media screen and (max-width: 767px) {
  .m-jobs-004 {
    padding: 40px 20px;
  }
}

.m-jobs-004__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

.m-jobs-004__content {
  margin: 0 0 20px;
}

.m-jobs-004__content-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 20px;
  padding: 20px 0;
  font-size: 0;
}

@media screen and (max-width: 767px) {
  .m-jobs-004__content-images {
    padding: 10px 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.m-jobs-004__content-images-figure {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .m-jobs-004__content-images-figure {
    width: 50%;
  }
}

.m-jobs-004__content-ttl {
  margin: 0 0 20px;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-jobs-004__content-desc {
  line-height: 2;
}

.m-jobs-005 {
  position: relative;
  padding: 80px 20px 60px;
}

@media screen and (max-width: 767px) {
  .m-jobs-005 {
    padding: 40px 20px;
  }
}

.m-jobs-005__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

.m-jobs-005__content {
  margin: 0 0 20px;
}

.m-jobs-005__content-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 880px;
  margin: 0 auto 20px;
  padding: 20px 0;
  font-size: 0;
}

@media screen and (max-width: 767px) {
  .m-jobs-005__content-images {
    padding: 10px 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.m-jobs-005__content-images-figure {
  width: 100%;
}

.m-jobs-005__content-ttl {
  margin: 0 0 20px;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-jobs-005__content-desc {
  line-height: 2;
}

.m-jobs-005__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
  .m-jobs-005__list {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .m-jobs-005__list {
    padding: 0;
  }
}

.m-jobs-005__list-item {
  width: 33.33333%;
  padding: 20px;
}

@media screen and (max-width: 1024px) {
  .m-jobs-005__list-item {
    width: 60%;
    padding: 10px 0;
  }
}

@media screen and (max-width: 767px) {
  .m-jobs-005__list-item {
    width: 100%;
  }
}

.m-jobs-005__list-item-detail {
  padding: 40px;
  background: var(--primary-bg, #04a1af);
  color: var(--primary-txt, #fff);
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-jobs-005__list-item-detail {
    padding: 20px;
  }
}

@media screen and (max-width: 767px) {
  .m-jobs-005__list-item-detail {
    width: 100%;
    padding: 20px;
  }
}

.m-jobs-005__list-item-detail-job {
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 38px;
  font-size: 3.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-jobs-005__list-item-detail-job {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.m-jobs-005__list-item-detail-ttl {
  margin: 0 0 30px;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-jobs-005__list-item-detail-ttl {
    margin: 0 0 20px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.m-jobs-005__list-item-detail-desc {
  font-size: 14px;
  font-size: 1.4rem;
}

.m-kv-001 {
  font-size: 0;
  text-align: center;
}

.m-kv-001__figure-img-pc {
  display: inline;
}

@media screen and (max-width: 767px) {
  .m-kv-001__figure-img-pc {
    display: none;
  }
}

.m-kv-001__figure-img-sp {
  display: none;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .m-kv-001__figure-img-sp {
    display: inline;
  }
}

.m-kv-002 {
  overflow: hidden;
  font-size: 0;
  text-align: center;
}

.m-kv-002__movie {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

.m-kv-002__movie video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.m-message-001 {
  position: relative;
}

@media screen and (max-width: 767px) {
  .m-message-001 {
    padding: 20px 20px 40px;
  }
}

.m-message-001__detail {
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-message-001__detail {
    padding: 20px 0 0;
  }
}

.m-message-001__headline {
  color: var(--primary, #04a1af);
}

@media screen and (max-width: 767px) {
  .m-message-001__headline {
    margin: 0 0 10px;
  }
}

.m-message-001__headline-txt {
  font-size: 30px;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 4px;
  letter-spacing: .4rem;
}

@media screen and (max-width: 767px) {
  .m-message-001__headline-txt {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

.m-message-001__desc-txt {
  padding: 20px 0;
}

@media screen and (max-width: 767px) {
  .m-message-001__desc-txt {
    padding: 10px 0;
  }
}

.m-message-002 {
  position: relative;
  background: no-repeat center;
  background-size: cover;
}

.m-message-002__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 20px;
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .m-message-002__inner {
    padding: 40px;
  }
}

.m-message-002__inner::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: var(--primary-bg, #04a1af);
  content: "";
  opacity: .5;
}

.m-message-002__detail {
  position: relative;
  z-index: 1;
  padding: 40px 0;
}

@media screen and (max-width: 767px) {
  .m-message-002__detail {
    padding: 20px 0 0;
  }
}

.m-message-002__headline {
  margin: 0 0 20px;
}

@media screen and (max-width: 767px) {
  .m-message-002__headline {
    margin: 0 0 10px;
  }
}

.m-message-002__headline-txt {
  font-size: 30px;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 4px;
  letter-spacing: .4rem;
}

@media screen and (max-width: 767px) {
  .m-message-002__headline-txt {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

.m-message-002__desc-txt {
  padding: 20px 0;
}

@media screen and (max-width: 767px) {
  .m-message-002__desc-txt {
    padding: 10px 0;
  }
}

.m-message-003 {
  position: relative;
  padding: 80px 0 40px;
}

@media screen and (max-width: 1024px) {
  .m-message-003 {
    padding: 40px 0 0;
  }
}

@media screen and (max-width: 767px) {
  .m-message-003 {
    padding: 40px 0;
  }
}

.m-message-003__inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .m-message-003__inner {
    padding: 0 20px;
  }
}

.m-message-003__figure {
  width: 60%;
}

@media screen and (max-width: 1024px) {
  .m-message-003__figure {
    width: 80%;
  }
}

.m-message-003__detail {
  position: relative;
  z-index: 1;
  width: 50%;
  margin: 5% 0 0 -10%;
  padding: 60px;
  background: var(--primary-bg, #04a1af);
  color: var(--primary-txt, #fff);
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-message-003__detail {
    width: 80%;
    margin: 15% 0 0 -60%;
  }
}

@media screen and (max-width: 767px) {
  .m-message-003__detail {
    width: 90%;
    margin: 25% 0 0 -70%;
    padding: 20px;
  }
}

.m-message-003__headline {
  margin: 0 0 10px;
}

@media screen and (max-width: 767px) {
  .m-message-003__headline {
    margin: 0;
  }
}

.m-message-003__headline-txt {
  font-size: 30px;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 4px;
  letter-spacing: .4rem;
}

@media screen and (max-width: 767px) {
  .m-message-003__headline-txt {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

.m-message-003__desc-txt {
  padding: 20px 0;
}

@media screen and (max-width: 767px) {
  .m-message-003__desc-txt {
    padding: 10px 0;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.m-message-004 {
  position: relative;
  padding: 120px 0 40px;
}

@media screen and (max-width: 767px) {
  .m-message-004 {
    padding: 80px 0 40px;
  }
}

.m-message-004::before {
  position: absolute;
  z-index: 0;
  top: 40px;
  left: 0;
  display: block;
  width: 100%;
  height: 500px;
  max-height: 40%;
  background: var(--primary-bg, #04a1af);
  content: "";
}

@media screen and (max-width: 1024px) {
  .m-message-004::before {
    height: 380px;
    max-height: 35%;
  }
}

@media screen and (max-width: 767px) {
  .m-message-004::before {
    top: 20px;
    height: 180px;
    max-height: 20%;
  }
}

.m-message-004__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .m-message-004__inner {
    padding: 0 20px;
  }
}

.m-message-004__detail {
  padding: 40px 0;
}

@media screen and (max-width: 767px) {
  .m-message-004__detail {
    padding: 20px 0 0;
  }
}

.m-message-004__headline {
  margin: 0 0 20px;
}

@media screen and (max-width: 767px) {
  .m-message-004__headline {
    margin: 0 0 10px;
  }
}

.m-message-004__headline-txt {
  font-size: 30px;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 4px;
  letter-spacing: .4rem;
}

@media screen and (max-width: 767px) {
  .m-message-004__headline-txt {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

.m-message-004__desc-txt {
  padding: 20px 0;
}

@media screen and (max-width: 767px) {
  .m-message-004__desc-txt {
    padding: 10px 0;
  }
}

.m-message-005 {
  position: relative;
  padding: 40px 0;
}

@media screen and (max-width: 767px) {
  .m-message-005 {
    padding: 40px 0;
  }
}

.m-message-005__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .m-message-005__inner {
    padding: 0 20px;
  }
}

.m-message-005__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .m-message-005__images {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.m-message-005__images-item {
  padding: 0 5px;
}

@media screen and (max-width: 767px) {
  .m-message-005__images-item {
    max-width: 50%;
  }
}

.m-message-005__figure-img {
  width: 100%;
}

.m-message-005__detail {
  padding: 60px;
}

@media screen and (max-width: 767px) {
  .m-message-005__detail {
    padding: 20px 0 0;
  }
}

.m-message-005__headline {
  margin: 0 0 10px;
}

.m-message-005__headline-txt {
  font-size: 30px;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 4px;
  letter-spacing: .4rem;
}

@media screen and (max-width: 767px) {
  .m-message-005__headline-txt {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

.m-message-005__desc-txt {
  padding: 20px 0;
}

@media screen and (max-width: 767px) {
  .m-message-005__desc-txt {
    padding: 10px 0;
  }
}

.mp-modulegroup001-001 {
  padding: 0 20px;
  background-color: #fff !important;
  text-align: left;
}

.mp-modulegroup001-001__headline {
  max-width: 1375px;
  margin: 0 auto 30px;
  font-size: 35px;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .1em;
}

.mp-modulegroup001-001__headline_sub {
  margin-left: 10px;
  font-size: 13px;
  font-size: 1.3rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-001__headline_sub {
    display: block;
    margin-top: 10px;
    margin-left: 0;
  }
}

.mp-modulegroup001-001__container {
  margin-bottom: 150px;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-001__container {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-001__container {
    margin-bottom: 70px;
  }
}

.mp-modulegroup001-001__container_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1600px;
  margin: 0 auto 150px;
  counter-increment: index;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-001__container_inner {
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 auto 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}

.mp-modulegroup001-001__container_inner:last-child {
  margin: 0 auto;
}

.mp-modulegroup001-001__figure {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 1180px;
  padding-top: 30px;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-001__figure {
    width: 85%;
  }
}

.mp-modulegroup001-001__figure::before {
  position: absolute;
  z-index: -10;
  top: 0;
  left: 110px;
  display: block;
  width: 245px;
  height: 670px;
  background-image: -webkit-repeating-linear-gradient(right, var(--sub-bg, #f2f2f2), var(--sub-bg, #f2f2f2) 5px, #fff 6px, #fff 15px);
  background-image: repeating-linear-gradient(-90deg, var(--sub-bg, #f2f2f2), var(--sub-bg, #f2f2f2) 5px, #fff 6px, #fff 15px);
  background-size: auto auto;
  content: "";
  opacity: 0.8;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-001__figure::before {
    height: 110%;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-001__figure::before {
    left: 50px;
    width: 125px;
  }
}

.mp-modulegroup001-001__figure::after {
  position: absolute;
  top: -20px;
  right: -70px;
  font-size: 85px;
  font-size: 8.5rem;
  font-weight: 500;
  line-height: 1;
  content: counter(index, decimal-leading-zero);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-001__figure::after {
    top: -10px;
    right: -50px;
    font-size: 60px;
    font-size: 6rem;
  }
}

.mp-modulegroup001-001__figure-img-pc-bg {
  position: relative;
  height: 590px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-001__figure-img-pc-bg {
    height: auto;
    padding-top: 60%;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-001__figure-img-pc-bg {
    display: none;
  }
}

.mp-modulegroup001-001__figure-img-pc-bg::after {
  position: absolute;
  z-index: -10;
  top: 75px;
  right: -210px;
  display: block;
  width: 210px;
  height: 255px;
  background-color: var(--sub-bg, #f2f2f2);
  background-image: -webkit-linear-gradient(right, #fff 10px, transparent 10px), -webkit-linear-gradient(#fff 10px, transparent 10px);
  background-image: linear-gradient(-90deg, #fff 10px, transparent 10px), linear-gradient(#fff 10px, transparent 10px);
  background-size: 15px 15px;
  content: "";
  opacity: 0.7;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-001__figure-img-pc-bg::after {
    top: 22%;
    right: -18%;
    width: 18%;
  }
}

.mp-modulegroup001-001__figure-img-sp-bg {
  display: none;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-001__figure-img-sp-bg {
    display: block;
    height: auto;
    padding-top: 60%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
  }

  .mp-modulegroup001-001__figure-img-sp-bg::after {
    position: absolute;
    z-index: -10;
    top: 22%;
    right: -18%;
    display: block;
    width: 18%;
    height: 60%;
    background-color: var(--sub-bg, #f2f2f2);
    background-image: -webkit-linear-gradient(right, #fff 10px, transparent 10px), -webkit-linear-gradient(#fff 10px, transparent 10px);
    background-image: linear-gradient(-90deg, #fff 10px, transparent 10px), linear-gradient(#fff 10px, transparent 10px);
    background-size: 15px 15px;
    content: "";
    opacity: 0.7;
  }
}

.mp-modulegroup001-001__cnt {
  position: relative;
  width: 540px;
  margin-top: 450px;
  margin-left: -235px;
  padding: 30px 0 30px 30px;
  background-color: #fff;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-001__cnt {
    width: auto;
    margin-top: 60px;
    margin-left: 0;
    padding: 0;
    background-color: transparent;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-001__cnt {
    margin-top: 40px;
  }
}

.mp-modulegroup001-001__ttl {
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--primary, #04a1af);
  letter-spacing: .2em;
}

.mp-modulegroup001-001__txt {
  margin-top: 15px;
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .2em;
}

.mp-modulegroup001-001__container_inner:nth-child(even) {
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  max-width: 1375px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
}

.mp-modulegroup001-001__container_inner:nth-child(even) .mp-modulegroup001-001__figure {
  max-width: none;
  padding-top: 40px;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-001__container_inner:nth-child(even) .mp-modulegroup001-001__figure {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-001__container_inner:nth-child(even) .mp-modulegroup001-001__figure {
    padding-top: 30px;
  }
}

.mp-modulegroup001-001__container_inner:nth-child(even) .mp-modulegroup001-001__figure::before {
  content: none;
}

.mp-modulegroup001-001__container_inner:nth-child(even) .mp-modulegroup001-001__figure::after {
  content: none;
}

.mp-modulegroup001-001__container_inner:nth-child(even) .mp-modulegroup001-001__figure-img-pc-bg {
  height: auto;
  padding-top: 40.5%;
  background-position: 100% 50%;
  background-size: contain;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-001__container_inner:nth-child(even) .mp-modulegroup001-001__figure-img-pc-bg {
    padding-top: 42.5%;
    background-position: 50% 50%;
  }
}

.mp-modulegroup001-001__container_inner:nth-child(even) .mp-modulegroup001-001__figure-img-pc-bg::after {
  content: none;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-001__container_inner:nth-child(even) .mp-modulegroup001-001__figure-img-sp-bg {
    padding-top: 42.5%;
    background-size: contain;
  }

  .mp-modulegroup001-001__container_inner:nth-child(even) .mp-modulegroup001-001__figure-img-sp-bg::after {
    content: none;
  }
}

.mp-modulegroup001-001__container_inner:nth-child(even) .mp-modulegroup001-001__cnt {
  width: auto;
  margin-top: 0;
  margin-left: 0;
  padding: 0 0 0 190px;
  background-color: transparent;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-001__container_inner:nth-child(even) .mp-modulegroup001-001__cnt {
    padding: 0 0 0 135px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-001__container_inner:nth-child(even) .mp-modulegroup001-001__cnt {
    padding: 0;
  }
}

.mp-modulegroup001-001__container_inner:nth-child(even) .mp-modulegroup001-001__cnt::after {
  position: absolute;
  top: -5px;
  left: 55px;
  font-size: 85px;
  font-size: 8.5rem;
  font-weight: 500;
  line-height: 1;
  content: counter(index, decimal-leading-zero);
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-001__container_inner:nth-child(even) .mp-modulegroup001-001__cnt::after {
    left: 0;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-001__container_inner:nth-child(even) .mp-modulegroup001-001__cnt::after {
    font-size: 60px;
    font-size: 6rem;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-001__container_inner:nth-child(even) .mp-modulegroup001-001__ttl {
    min-height: 60px;
    padding-left: 85px;
  }
}

.mp-modulegroup001-002 {
  position: relative;
  z-index: 0;
  padding: 0 20px;
  background-color: #fff !important;
  text-align: left;
}

.mp-modulegroup001-002::before {
  position: absolute;
  z-index: -10;
  top: 25px;
  left: 0;
  display: block;
  width: 100%;
  height: 212px;
  background-image: -webkit-repeating-linear-gradient(right, var(--sub-bg, #f2f2f2), var(--sub-bg, #f2f2f2) 5px, #fff 6px, #fff 15px);
  background-image: repeating-linear-gradient(-90deg, var(--sub-bg, #f2f2f2), var(--sub-bg, #f2f2f2) 5px, #fff 6px, #fff 15px);
  background-size: auto auto;
  content: "";
  opacity: 0.8;
}

.mp-modulegroup001-002__headline {
  max-width: 1375px;
  margin: 0 auto 50px;
  font-size: 35px;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .1em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-002__headline {
    margin: 0 auto 35px;
  }
}

.mp-modulegroup001-002__headline_sub {
  margin-left: 10px;
  font-size: 13px;
  font-size: 1.3rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-002__headline_sub {
    display: block;
    margin-top: 10px;
    margin-left: 0;
  }
}

.mp-modulegroup001-002__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  max-width: 1375px;
  margin: 0 auto 150px;
  -webkit-box-pack: center;
  justify-content: center;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-002__container {
    display: block;
    margin: 0 auto 100px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-002__container {
    margin: 0 auto 70px;
  }
}

.mp-modulegroup001-002__container_inner {
  width: calc(33.3% - 80px / 3);
  margin-right: 40px;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-002__container_inner {
    width: 100%;
    margin: 0 0 40px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-002__container_inner {
    margin: 0 0 30px;
  }
}

.mp-modulegroup001-002__container_inner:nth-child(3) {
  margin-right: 0;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-002__container_inner:last-child {
    margin: 0;
  }
}

.mp-modulegroup001-002__figure {
  text-align: center;
}

.mp-modulegroup001-002__figure-img-pc {
  width: 100%;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-002__figure-img-pc {
    display: none;
  }
}

.mp-modulegroup001-002__figure-img-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-002__figure-img-sp {
    display: inline;
    vertical-align: top;
  }
}

.mp-modulegroup001-002__ttl {
  margin-top: 20px;
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--primary, #04a1af);
  letter-spacing: .2em;
}

.mp-modulegroup001-002__txt {
  margin-top: 15px;
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .2em;
}

.mp-modulegroup001-003 {
  overflow: hidden;
  padding: 0 20px;
  background-color: #fff !important;
  text-align: left;
}

.mp-modulegroup001-003__headline {
  max-width: 1375px;
  margin: 0 auto 50px;
  font-size: 35px;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .1em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-003__headline {
    margin: 0 auto 35px;
  }
}

.mp-modulegroup001-003__headline_sub {
  margin-left: 10px;
  font-size: 13px;
  font-size: 1.3rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-003__headline_sub {
    display: block;
    margin-top: 10px;
    margin-left: 0;
  }
}

.mp-modulegroup001-003__container {
  max-width: 1375px;
  margin: 0 auto 150px;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-003__container {
    margin: 0 auto 100px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-003__container {
    margin: 0 auto 70px;
  }
}

.mp-modulegroup001-003__container_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  margin-bottom: 100px;
  -webkit-box-align: start;
  align-items: flex-start;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-003__container_inner {
    display: block;
    margin: 0 0 40px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-003__container_inner {
    margin: 0 0 20px;
  }
}

.mp-modulegroup001-003__container_inner:last-child {
  margin-bottom: 0;
}

.mp-modulegroup001-003__figure {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 793px;
  padding-top: 33%;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-003__figure {
    max-width: none;
    padding-top: 50%;
  }
}

.mp-modulegroup001-003__svg {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: auto;
  max-height: 394px;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-003__svg {
    max-height: none;
  }
}

.mp-modulegroup001-003__figure-img-pc {
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-003__figure-img-pc {
    display: none;
  }
}

.mp-modulegroup001-003__figure-img-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-003__figure-img-sp {
    display: inline;
    vertical-align: top;
  }
}

.mp-modulegroup001-003__cnt {
  position: relative;
  z-index: 0;
  width: 850px;
  min-height: 390px;
  margin-top: 65px;
  margin-left: -265px;
  padding: 75px 0 75px 310px;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-003__cnt {
    width: 100%;
    min-height: 0;
    margin-top: -65px;
    margin-left: 0;
    padding: 100px 0 40px;
  }
}

.mp-modulegroup001-003__cnt::after {
  position: absolute;
  z-index: -10;
  top: 0;
  left: 0;
  display: block;
  width: 160vw;
  height: 100%;
  background: var(--sub-bg, #f2f2f2);
  content: "";
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-003__cnt::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.mp-modulegroup001-003__ttl {
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--primary, #04a1af);
  letter-spacing: .2em;
}

.mp-modulegroup001-003__txt {
  margin-top: 15px;
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .2em;
}

.mp-modulegroup001-003__svg_clip {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.mp-modulegroup001-003__container_inner:nth-child(even) {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
}

.mp-modulegroup001-003__container_inner:nth-child(even) .mp-modulegroup001-003__cnt {
  margin-right: -265px;
  margin-left: 0;
  padding: 75px 310px 75px 0;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-003__container_inner:nth-child(even) .mp-modulegroup001-003__cnt {
    margin-right: 0;
    padding: 100px 0 40px;
  }
}

.mp-modulegroup001-003__container_inner:nth-child(even) .mp-modulegroup001-003__cnt::after {
  right: 0;
  left: auto;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-003__container_inner:nth-child(even) .mp-modulegroup001-003__cnt::after {
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.mp-modulegroup001-004 {
  position: relative;
  z-index: 0;
  padding: 0 20px;
  background-color: #fff !important;
  text-align: left;
}

.mp-modulegroup001-004::before {
  position: absolute;
  z-index: -10;
  top: 25px;
  left: 0;
  display: block;
  width: 100%;
  height: calc(100% + 35px);
  background-image: -webkit-repeating-linear-gradient(right, var(--sub-bg, #f2f2f2), var(--sub-bg, #f2f2f2) 5px, #fff 6px, #fff 15px);
  background-image: repeating-linear-gradient(-90deg, var(--sub-bg, #f2f2f2), var(--sub-bg, #f2f2f2) 5px, #fff 6px, #fff 15px);
  background-size: auto auto;
  content: "";
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-004::before {
    height: calc(100% + 20px);
  }
}

.mp-modulegroup001-004__headline {
  max-width: 1375px;
  margin: 0 auto 65px;
  font-size: 35px;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .1em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-004__headline {
    margin: 0 auto 55px;
  }
}

.mp-modulegroup001-004__headline_sub {
  margin-left: 10px;
  font-size: 13px;
  font-size: 1.3rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-004__headline_sub {
    display: block;
    margin-top: 10px;
    margin-left: 0;
  }
}

.mp-modulegroup001-004__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  max-width: 1000px;
  margin: 0 auto 210px;
  -webkit-box-pack: center;
  justify-content: center;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-004__container {
    margin: 0 auto 160px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-004__container {
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 auto 115px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}

.mp-modulegroup001-004__container_inner {
  width: calc(50% - 35px / 2);
  margin-right: 35px;
  padding: 0 60px 50px;
  background-color: #fff;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-004__container_inner {
    padding: 0 30px 25px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-004__container_inner {
    width: 100%;
    min-height: 0%;
    margin: 0 0 60px;
    padding: 0 5% 20px;
  }
}

.mp-modulegroup001-004__container_inner:nth-child(2) {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-004__container_inner:last-child {
    margin: 0;
  }
}

.mp-modulegroup001-004__ttl {
  width: 100%;
  max-width: 215px;
  min-height: 40px;
  margin: -20px auto 0;
  padding: 5px;
  background: #111;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  letter-spacing: .2em;
}

.mp-modulegroup001-004__figure-graph {
  margin-top: 45px;
}

.mp-modulegroup001-004__figure-graph-pc {
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-004__figure-graph-pc {
    display: none;
  }
}

.mp-modulegroup001-004__figure-graph-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-004__figure-graph-sp {
    display: inline;
    vertical-align: top;
  }
}

.mp-modulegroup001-004__figure-legend {
  margin-top: 35px;
}

.mp-modulegroup001-004__figure-legend-pc {
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-004__figure-legend-pc {
    display: none;
  }
}

.mp-modulegroup001-004__figure-legend-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-004__figure-legend-sp {
    display: inline;
    vertical-align: top;
  }
}

.mp-modulegroup001-004__txt {
  margin-top: 30px;
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .2em;
}

.mp-modulegroup001-005 {
  padding: 0 20px;
  background-color: #fff !important;
  text-align: left;
}

.mp-modulegroup001-005__headline {
  max-width: 1375px;
  margin: 0 auto 50px;
  font-size: 35px;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .1em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-005__headline {
    margin: 0 auto 35px;
  }
}

.mp-modulegroup001-005__headline_sub {
  margin-left: 10px;
  font-size: 13px;
  font-size: 1.3rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-005__headline_sub {
    display: block;
    margin-top: 10px;
    margin-left: 0;
  }
}

.mp-modulegroup001-005__container {
  max-width: 1375px;
  margin: 0 auto 150px;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-005__container {
    margin: 0 auto 100px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-005__container {
    margin: 0 auto 70px;
  }
}

.mp-modulegroup001-005__container_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mp-modulegroup001-005__container_inner:nth-child(even) {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-005__container_inner:nth-child(even) {
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
  }
}

.mp-modulegroup001-005__container_inner:not(:first-child) {
  margin-top: -30px;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-005__container_inner:not(:first-child) {
    margin-top: 20px;
  }
}

.mp-modulegroup001-005__cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(50% - 155px / 2);
  padding: 35px 40px;
  background: var(--sub-bg, #f2f2f2);
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-005__cnt {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-005__cnt {
    display: block;
    padding: 20px;
  }
}

.mp-modulegroup001-005__cnt_inner {
  width: 60%;
  min-width: 175px;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-005__cnt_inner {
    width: 75%;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-005__cnt_inner {
    width: 100%;
  }
}

.mp-modulegroup001-005__cnt_inner:only-child {
  width: 100%;
}

.mp-modulegroup001-005__time {
  font-size: 29px;
  font-size: 2.9rem;
  font-weight: 500;
  line-height: 1;
  color: var(--primary, #04a1af);
  white-space: nowrap;
  letter-spacing: .05em;
}

.mp-modulegroup001-005__ttl {
  margin-top: 15px;
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: .2em;
}

.mp-modulegroup001-005__txt {
  margin-top: 15px;
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .2em;
}

.mp-modulegroup001-005__figure {
  width: 40%;
  max-width: 205px;
  margin-left: 30px;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-005__figure {
    width: 25%;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-005__figure {
    width: 100%;
    max-width: none;
    margin-top: 30px;
    margin-left: 0;
    text-align: center;
  }
}

.mp-modulegroup001-005__figure-img-pc {
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-005__figure-img-pc {
    display: none;
  }
}

.mp-modulegroup001-005__figure-img-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-005__figure-img-sp {
    display: inline;
    vertical-align: top;
  }
}

.mp-modulegroup001-005__timetable {
  position: relative;
  width: 155px;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-005__timetable {
    display: none;
  }
}

.mp-modulegroup001-005__timetable::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1px;
  height: 100%;
  background: var(--primary, #04a1af);
  content: "";
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.mp-modulegroup001-005__timetable_start {
  position: relative;
  margin-top: -20px;
  padding: 15px 0;
  background: #fff;
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  letter-spacing: .2em;
}

.mp-modulegroup001-005__timetable_end {
  position: absolute;
  bottom: 0;
  left: 50%;
  padding: 15px 0;
  background: #fff;
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .2em;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.mp-modulegroup001-006 {
  overflow: hidden;
  padding: 0 20px;
  background-color: #fff !important;
  text-align: left;
}

.mp-modulegroup001-006__headline {
  position: relative;
  z-index: 10;
  max-width: 1375px;
  margin: 0 auto 50px;
  font-size: 35px;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .1em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-006__headline {
    margin: 0 auto 35px;
  }
}

.mp-modulegroup001-006__headline_sub {
  margin-left: 10px;
  font-size: 13px;
  font-size: 1.3rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-006__headline_sub {
    display: block;
    margin-top: 10px;
    margin-left: 0;
  }
}

.mp-modulegroup001-006__container {
  max-width: 1375px;
  margin: 0 auto 150px;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-006__container {
    margin: 0 auto 100px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-006__container {
    margin: 0 auto 70px;
  }
}

.mp-modulegroup001-006__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  margin-bottom: 90px;
  -webkit-box-align: start;
  align-items: flex-start;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-006__main {
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-006__main {
    margin-bottom: 30px;
  }
}

.mp-modulegroup001-006__figure_main {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 1020px;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-006__figure_main {
    width: calc(100% - 5%);
    min-height: 0%;
  }
}

.mp-modulegroup001-006__figure_main::before {
  position: absolute;
  z-index: -10;
  top: -70px;
  right: 88%;
  display: block;
  width: 100vw;
  height: 255px;
  background-color: var(--sub-bg, #f2f2f2);
  background-image: -webkit-linear-gradient(right, #fff 10px, transparent 10px), -webkit-linear-gradient(#fff 10px, transparent 10px);
  background-image: linear-gradient(-90deg, #fff 10px, transparent 10px), linear-gradient(#fff 10px, transparent 10px);
  background-position: right;
  background-size: 15px 15px;
  content: "";
  opacity: 0.7;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-006__figure_main::before {
    content: none;
  }
}

.mp-modulegroup001-006__figure_main::after {
  position: absolute;
  z-index: -10;
  right: -190px;
  bottom: -80px;
  display: block;
  width: 425px;
  height: 130px;
  background-image: -webkit-repeating-linear-gradient(right, var(--sub-bg, #f2f2f2), var(--sub-bg, #f2f2f2) 5px, #fff 6px, #fff 15px);
  background-image: repeating-linear-gradient(-90deg, var(--sub-bg, #f2f2f2), var(--sub-bg, #f2f2f2) 5px, #fff 6px, #fff 15px);
  background-size: auto auto;
  content: "";
  opacity: 0.8;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-006__figure_main::after {
    content: none;
  }
}

.mp-modulegroup001-006__figure-main-img-pc {
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-006__figure-main-img-pc {
    display: none;
  }
}

.mp-modulegroup001-006__figure-main-img-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-006__figure-main-img-sp {
    display: inline;
    vertical-align: top;
  }
}

.mp-modulegroup001-006__cnt_main {
  position: relative;
  z-index: 10;
  width: 510px;
  min-height: 330px;
  margin-top: 45px;
  margin-left: -155px;
  padding: 45px 70px 45px 45px;
  background: var(--primary, #04a1af);
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-006__cnt_main {
    width: calc(100% - 5%);
    min-height: 0;
    margin-top: -5%;
    margin-left: 5%;
    padding: 20px;
  }
}

.mp-modulegroup001-006__cnt_main::after {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  display: block;
  width: 60px;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, right top, color-stop(50%, transparent), color-stop(50.5%, #fff)) no-repeat top left/100% 100%;
  background: -webkit-linear-gradient(bottom left, transparent 50%, #fff 50.5%) no-repeat top left/100% 100%;
  background: linear-gradient(to top right, transparent 50%, #fff 50.5%) no-repeat top left/100% 100%;
  content: "";
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-006__cnt_main::after {
    content: none;
  }
}

.mp-modulegroup001-006__position {
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  letter-spacing: .2em;
}

.mp-modulegroup001-006__name {
  margin-top: 10px;
  font-size: 39px;
  font-size: 3.9rem;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  letter-spacing: .1em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-006__name {
    font-size: 29px;
    font-size: 2.9rem;
    letter-spacing: .05em;
  }
}

.mp-modulegroup001-006__name_kana {
  margin-top: 10px;
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: .2em;
}

.mp-modulegroup001-006__career {
  position: relative;
  margin-top: 30px;
  padding-top: 30px;
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: .2em;
}

.mp-modulegroup001-006__career::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100px;
  height: 1px;
  background: #73a1ce;
  content: "";
}

.mp-modulegroup001-006__container_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 80px;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-006__container_inner {
    display: block;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-006__container_inner {
    margin-bottom: 30px;
  }
}

.mp-modulegroup001-006__container_inner:last-child {
  margin-bottom: 0;
}

.mp-modulegroup001-006__cnt {
  -webkit-box-flex: 1;
  -ms-flex: 1 1;
  flex: 1 1;
}

.mp-modulegroup001-006__figure {
  display: none;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-006__figure {
    display: block;
    width: 100%;
    margin-top: 15px;
    margin-left: 0;
  }
}

.mp-modulegroup001-006__figure-pc {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 430px;
  margin-left: 65px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1;
  flex: 1 1;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-006__figure-pc {
    display: none;
  }
}

.mp-modulegroup001-006__figure-pc::after {
  position: absolute;
  z-index: -10;
  top: -50px;
  left: 72%;
  display: block;
  width: 100vw;
  height: 255px;
  background-color: var(--sub-bg, #f2f2f2);
  background-image: -webkit-linear-gradient(right, #fff 10px, transparent 10px), -webkit-linear-gradient(#fff 10px, transparent 10px);
  background-image: linear-gradient(-90deg, #fff 10px, transparent 10px), linear-gradient(#fff 10px, transparent 10px);
  background-size: 15px 15px;
  content: "";
  opacity: 0.7;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-006__figure-pc::after {
    content: none;
  }
}

.mp-modulegroup001-006__figure-img-pc {
  width: 100%;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-006__figure-img-pc {
    display: none;
  }
}

.mp-modulegroup001-006__figure-img-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-006__figure-img-sp {
    display: inline;
    vertical-align: top;
  }
}

.mp-modulegroup001-006__ttl {
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--primary, #04a1af);
  letter-spacing: .2em;
}

.mp-modulegroup001-006__txt {
  margin-top: 15px;
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .2em;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-006__figure+.mp-modulegroup001-006__txt {
    margin-top: 20px;
  }
}

.mp-modulegroup001-007 {
  position: relative;
  z-index: 0;
  padding: 0 20px;
  background-color: #fff !important;
  text-align: left;
}

.mp-modulegroup001-007::before {
  position: absolute;
  z-index: -10;
  top: 25px;
  left: 0;
  display: block;
  width: 100%;
  height: 212px;
  background-image: -webkit-repeating-linear-gradient(right, var(--sub-bg, #f2f2f2), var(--sub-bg, #f2f2f2) 5px, #fff 6px, #fff 15px);
  background-image: repeating-linear-gradient(-90deg, var(--sub-bg, #f2f2f2), var(--sub-bg, #f2f2f2) 5px, #fff 6px, #fff 15px);
  background-size: auto auto;
  content: "";
  opacity: 0.8;
}

.mp-modulegroup001-007__headline {
  max-width: 1375px;
  margin: 0 auto 50px;
  font-size: 35px;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .1em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-007__headline {
    margin: 0 auto 35px;
  }
}

.mp-modulegroup001-007__headline_sub {
  margin-left: 10px;
  font-size: 13px;
  font-size: 1.3rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-007__headline_sub {
    display: block;
    margin-top: 10px;
    margin-left: 0;
  }
}

.mp-modulegroup001-007__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  max-width: 1375px;
  margin: 0 auto 150px;
  -webkit-box-pack: center;
  justify-content: center;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-007__container {
    display: block;
    margin: 0 auto 100px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-007__container {
    margin: 0 auto 70px;
  }
}

.mp-modulegroup001-007__container_inner {
  width: calc(33.3% - 80px / 3);
  margin-right: 40px;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-007__container_inner {
    width: 100%;
    margin: 0 0 40px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-007__container_inner {
    margin: 0 0 30px;
  }
}

.mp-modulegroup001-007__container_inner:nth-child(3) {
  margin-right: 0;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-007__container_inner:last-child {
    margin: 0;
  }
}

.mp-modulegroup001-007__figure {
  text-align: center;
}

.mp-modulegroup001-007__figure-img-pc {
  width: 100%;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-007__figure-img-pc {
    display: none;
  }
}

.mp-modulegroup001-007__figure-img-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-007__figure-img-sp {
    display: inline;
    vertical-align: top;
  }
}

.mp-modulegroup001-007__ttl {
  margin-top: 20px;
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--primary, #04a1af);
  letter-spacing: .2em;
}

.mp-modulegroup001-007__txt {
  margin-top: 15px;
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .2em;
}

.mp-modulegroup001-008 {
  position: relative;
  z-index: 0;
  overflow: hidden;
  margin-bottom: 150px;
  padding: 0 20px;
  background-color: var(--sub-bg, #f2f2f2);
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-008 {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-008 {
    margin-bottom: 70px;
  }
}

.mp-modulegroup001-008::before {
  position: absolute;
  z-index: -10;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 25px;
  background: #fff;
  content: "";
}

.mp-modulegroup001-008__headline {
  max-width: 1375px;
  margin: 0 auto 50px;
  font-size: 35px;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .1em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-008__headline {
    margin: 0 auto 35px;
  }
}

.mp-modulegroup001-008__headline_sub {
  margin-left: 10px;
  font-size: 13px;
  font-size: 1.3rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-008__headline_sub {
    display: block;
    margin-top: 10px;
    margin-left: 0;
  }
}

.mp-modulegroup001-008__container {
  max-width: 1375px;
  margin: 0 auto;
}

.mp-modulegroup001-008__container_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 80px;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-008__container_inner {
    display: block;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-008__container_inner {
    padding-bottom: 20px;
  }
}

.mp-modulegroup001-008__figure {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 685px;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-008__figure {
    max-width: none;
  }
}

.mp-modulegroup001-008__figure-img-pc {
  width: 100%;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-008__figure-img-pc {
    display: none;
  }
}

.mp-modulegroup001-008__figure-img-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-008__figure-img-sp {
    display: inline;
    vertical-align: top;
  }
}

.mp-modulegroup001-008__cnt {
  position: relative;
  width: 685px;
  min-height: 385px;
  margin-top: 45px;
  margin-left: -190px;
  padding: 60px 50px 60px 240px;
  background: #fff;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-008__cnt {
    width: 100%;
    min-height: 0;
    margin-top: 0;
    margin-left: 0;
    padding: 20px;
  }
}

.mp-modulegroup001-008__cnt::after {
  position: absolute;
  z-index: -10;
  top: -45px;
  right: -165px;
  display: block;
  width: 440px;
  height: 250px;
  background-image: -webkit-repeating-linear-gradient(right, var(--sub-bg, #f2f2f2), var(--sub-bg, #f2f2f2) 5px, #fff 6px, #fff 15px);
  background-image: repeating-linear-gradient(-90deg, var(--sub-bg, #f2f2f2), var(--sub-bg, #f2f2f2) 5px, #fff 6px, #fff 15px);
  background-size: auto auto;
  content: "";
  opacity: 0.8;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-008__cnt::after {
    content: none;
  }
}

.mp-modulegroup001-008__ttl {
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--primary, #04a1af);
  letter-spacing: .2em;
}

.mp-modulegroup001-008__txt {
  margin-top: 15px;
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .2em;
}

.mp-modulegroup001-008__container_inner:nth-child(even) {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-008__container_inner:nth-child(even) {
    display: block;
  }
}

.mp-modulegroup001-008__container_inner:nth-child(even) .mp-modulegroup001-008__cnt {
  margin-right: -190px;
  margin-left: 0;
  padding: 60px 240px 60px 50px;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-008__container_inner:nth-child(even) .mp-modulegroup001-008__cnt {
    margin-right: 0;
    padding: 20px;
  }
}

.mp-modulegroup001-008__container_inner:nth-child(even) .mp-modulegroup001-008__cnt::before {
  position: absolute;
  z-index: -10;
  top: -45px;
  left: -165px;
  display: block;
  width: 240px;
  height: 250px;
  background-color: var(--sub-bg, #f2f2f2);
  background-image: -webkit-linear-gradient(right, #fff 10px, transparent 10px), -webkit-linear-gradient(#fff 10px, transparent 10px);
  background-image: linear-gradient(-90deg, #fff 10px, transparent 10px), linear-gradient(#fff 10px, transparent 10px);
  background-position: 5px -10px;
  background-size: 15px 15px;
  content: "";
  opacity: 0.7;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-008__container_inner:nth-child(even) .mp-modulegroup001-008__cnt::before {
    content: none;
  }
}

.mp-modulegroup001-008__container_inner:nth-child(even) .mp-modulegroup001-008__cnt::after {
  content: none;
}

.mp-modulegroup001-009 {
  padding: 0 20px;
  background-color: #fff !important;
  text-align: left;
}

.mp-modulegroup001-009__headline {
  max-width: 1375px;
  margin: 0 auto 50px;
  font-size: 35px;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .1em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-009__headline {
    margin: 0 auto 35px;
  }
}

.mp-modulegroup001-009__headline_sub {
  margin-left: 10px;
  font-size: 13px;
  font-size: 1.3rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-009__headline_sub {
    display: block;
    margin-top: 10px;
    margin-left: 0;
  }
}

.mp-modulegroup001-009__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1375px;
  margin: 0 auto 130px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-009__container {
    display: block;
    margin: 0 auto 100px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-009__container {
    margin: 0 auto 70px;
  }
}

.mp-modulegroup001-009__container_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -ms-flex-align: start;
  width: calc(50% - 35px / 2);
  margin-right: 35px;
  margin-bottom: 20px;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  align-items: flex-start;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-009__container_inner {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
  }

  .mp-modulegroup001-009__container_inner:not(:first-child) {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-009__container_inner {
    display: block;
  }

  .mp-modulegroup001-009__container_inner:not(:first-child) {
    margin-top: 20px;
  }
}

.mp-modulegroup001-009__container_inner:nth-child(2n) {
  margin-right: 0;
}

.mp-modulegroup001-009__figure {
  width: 100%;
  max-width: 515px;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-009__figure {
    max-width: none;
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
  }
}

.mp-modulegroup001-009__figure-img-pc {
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-009__figure-img-pc {
    display: none;
  }
}

.mp-modulegroup001-009__figure-img-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-009__figure-img-sp {
    display: inline;
    vertical-align: top;
  }
}

.mp-modulegroup001-009__cnt {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 515px;
  min-height: 205px;
  margin-top: 210px;
  margin-left: -360px;
  padding: 30px 35px;
  background: var(--sub-bg, #f2f2f2);
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-009__cnt {
    max-width: none;
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-009__cnt {
    min-height: 0;
    margin-top: 0;
    margin-left: 0;
    padding: 20px;
  }
}

.mp-modulegroup001-009__ttl {
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--primary, #04a1af);
  letter-spacing: .2em;
}

.mp-modulegroup001-009__txt {
  margin-top: 15px;
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .2em;
}

.mp-modulegroup001-009__container_inner:nth-child(even) {
  margin-top: 80px;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-009__container_inner:nth-child(even) {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-009__container_inner:nth-child(even) {
    margin-top: 20px;
  }
}

.mp-modulegroup001-010 {
  position: relative;
  z-index: 0;
  padding: 0 20px;
  background-color: var(--sub-bg, #f2f2f2);
  text-align: left;
}

.mp-modulegroup001-010::before {
  position: absolute;
  z-index: -10;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 25px;
  background: #fff;
  content: "";
}

.mp-modulegroup001-010__headline {
  max-width: 1375px;
  margin: 0 auto 50px;
  font-size: 35px;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .1em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-010__headline {
    margin: 0 auto 35px;
  }
}

.mp-modulegroup001-010__headline_sub {
  margin-left: 10px;
  font-size: 13px;
  font-size: 1.3rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-010__headline_sub {
    display: block;
    margin-top: 10px;
    margin-left: 0;
  }
}

.mp-modulegroup001-010__container {
  max-width: 1000px;
  margin: 0 auto 150px;
  padding-bottom: 70px;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup001-010__container {
    margin: 0 auto 100px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-010__container {
    margin: 0 auto 70px;
    padding-bottom: 35px;
  }
}

.mp-modulegroup001-010__figure {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-010__figure {
    max-width: none;
  }
}

.mp-modulegroup001-010__figure-img-pc {
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-010__figure-img-pc {
    display: none;
  }
}

.mp-modulegroup001-010__figure-img-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-010__figure-img-sp {
    display: inline;
    vertical-align: top;
  }
}

.mp-modulegroup001-010__txt {
  margin-top: 40px;
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup001-010__txt {
    margin-top: 20px;
  }
}

.mp-modulegroup002-001 {
  margin: 120px auto 0;
  padding: 0 20px;
  background: var(--sub-bg, #f2f2f2);
  color: var(--sub-txt, #000);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-001 {
    padding: 0 20px;
  }
}

.mp-modulegroup002-001__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 1px;
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-001__inner {
    padding-bottom: 30px;
  }
}

.mp-modulegroup002-001__headline {
  margin-bottom: -.65em;
  font-size: 60px;
  font-size: 6rem;
  line-height: 1;
  -webkit-transform: translateY(-0.65em);
  transform: translateY(-0.65em);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-001__headline {
    font-size: 34px;
    font-size: 3.4rem;
  }
}

.mp-modulegroup002-001__headline-en {
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  line-height: 1;
  color: var(--primary, #04a1af);
  letter-spacing: .05em;
}

.mp-modulegroup002-001__headline-ja {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-001__headline-ja {
    margin-top: 5px;
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.mp-modulegroup002-001__container {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 45px;
  padding: 60px 0;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup002-001__container {
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-001__container {
    margin-top: 30px;
    padding: 30px 0;
  }
}

.mp-modulegroup002-001__container:first-child {
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-001__container:first-child {
    margin-top: 30px;
  }
}

.mp-modulegroup002-001__container::after {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 70%;
  max-width: 800px;
  background: #fff;
  content: "";
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.mp-modulegroup002-001__figure {
  width: 50%;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup002-001__figure {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-001__figure {
    width: 100%;
  }
}

.mp-modulegroup002-001__figure-img-pc {
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-001__figure-img-pc {
    display: none;
  }
}

.mp-modulegroup002-001__figure-img-sp {
  display: none;
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-001__figure-img-sp {
    display: inline;
  }
}

.mp-modulegroup002-001__content {
  width: 50%;
  padding: 0 5%;
  text-align: left;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup002-001__content {
    width: 100%;
    margin-top: 20px;
    padding: 0;
  }
}

.mp-modulegroup002-001__content:only-child {
  margin: 0 auto;
  padding: 0;
}

.mp-modulegroup002-001__ttl {
  font-size: 30px;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--primary, #04a1af);
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-001__ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

.mp-modulegroup002-001__ttl+.mp-modulegroup002-001__txt {
  margin-top: 20px;
}

.mp-modulegroup002-001__txt {
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  line-height: 1.875;
  letter-spacing: .1em;
}

.mp-modulegroup002-002 {
  overflow: hidden;
  margin: 100px auto;
  padding: 0 40px;
  background-color: #fff !important;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup002-002 {
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-002 {
    margin: 60px auto;
    padding: 0 20px;
  }
}

.mp-modulegroup002-002__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.mp-modulegroup002-002__headline {
  font-size: 60px;
  font-size: 6rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-002__headline {
    font-size: 34px;
    font-size: 3.4rem;
  }
}

.mp-modulegroup002-002__headline-en {
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  line-height: 1;
  color: var(--primary, #04a1af);
  letter-spacing: .05em;
}

.mp-modulegroup002-002__headline-ja {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-002__headline-ja {
    margin-top: 5px;
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.mp-modulegroup002-002__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 45px;
  padding: 60px 0;
  background: var(--primary-bg, #04a1af);
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup002-002__container {
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 30px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-002__container {
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}

.mp-modulegroup002-002__container::before {
  position: absolute;
  top: 30px;
  right: -30px;
  bottom: 30px;
  left: -30px;
  display: block;
  border: 1px solid var(--primary-border, #04a1af);
  pointer-events: none;
  content: "";
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup002-002__container::before {
    top: 15px;
    right: -15px;
    bottom: 15px;
    left: -15px;
  }
}

.mp-modulegroup002-002__figure {
  -ms-flex-order: 1;
  width: 50%;
  text-align: center;
  -webkit-box-ordinal-group: 2;
  order: 1;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup002-002__figure {
    -ms-flex-order: inherit;
    width: 100%;
    -webkit-box-ordinal-group: inherit;
    order: inherit;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-002__figure {
    -ms-flex-order: inherit;
    width: 100%;
    -webkit-box-ordinal-group: inherit;
    order: inherit;
  }
}

.mp-modulegroup002-002__figure-img-pc {
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-002__figure-img-pc {
    display: none;
  }
}

.mp-modulegroup002-002__figure-img-sp {
  display: none;
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-002__figure-img-sp {
    display: inline;
  }
}

.mp-modulegroup002-002__content {
  width: 50%;
  padding: 0 5%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup002-002__content {
    width: 100%;
    margin: 20px auto 10px;
    padding: 0 20px;
  }
}

.mp-modulegroup002-002__content:only-child {
  margin: 0 auto;
}

.mp-modulegroup002-002__ttl {
  font-size: 30px;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-002__ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

.mp-modulegroup002-002__ttl+.mp-modulegroup002-002__txt {
  margin-top: 20px;
}

.mp-modulegroup002-002__txt {
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  line-height: 1.875;
  letter-spacing: .1em;
}

.mp-modulegroup002-003 {
  margin: 100px auto 0;
  padding: 0 20px;
  background-color: #fff !important;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-003 {
    margin: 60px auto 0;
  }
}

.mp-modulegroup002-003__inner {
  max-width: 1130px;
  margin: 0 auto;
}

.mp-modulegroup002-003__headline {
  font-size: 60px;
  font-size: 6rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-003__headline {
    font-size: 34px;
    font-size: 3.4rem;
  }
}

.mp-modulegroup002-003__headline-en {
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  line-height: 1;
  color: var(--primary, #04a1af);
  letter-spacing: .05em;
}

.mp-modulegroup002-003__headline-ja {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-003__headline-ja {
    margin-top: 5px;
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.mp-modulegroup002-003__feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 45px -10px 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup002-003__feature {
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 20px 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-003__feature {
    margin: 0;
  }
}

.mp-modulegroup002-003__feature-item {
  position: relative;
  width: calc(33.33% - 20px);
  margin: 30px 10px;
  padding: 60px 15px 30px;
  background: var(--sub-bg, #f2f2f2);
  color: var(--sub-txt, #000);
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup002-003__feature-item {
    width: 100%;
    margin: 50px 0 0;
    padding: 60px 30px 30px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-003__feature-item {
    padding: 42px 15px 25px;
  }
}

.mp-modulegroup002-003__feature-num {
  position: absolute;
  top: 0;
  left: 50%;
  min-width: 60px;
  padding: 12px 15px 18px;
  background: var(--primary-bg, #04a1af);
  font-size: 30px;
  font-size: 3rem;
  line-height: 1;
  color: var(--primary-txt, #fff);
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-003__feature-num {
    min-width: auto;
    padding: 12px 15px 15px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.mp-modulegroup002-003__feature-figure {
  margin: 0 auto 20px;
  text-align: center;
}

.mp-modulegroup002-003__feature-figure-img-pc {
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-003__feature-figure-img-pc {
    display: none;
  }
}

.mp-modulegroup002-003__feature-figure-img-sp {
  display: none;
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-003__feature-figure-img-sp {
    display: inline;
  }
}

.mp-modulegroup002-003__feature-ttl {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-003__feature-ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.mp-modulegroup002-003__feature-txt {
  margin-top: 15px;
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  line-height: 1.6;
  text-align: left;
  letter-spacing: .1em;
}

.mp-modulegroup002-004 {
  overflow: hidden;
  margin: 120px auto 0;
  padding: 0 20px;
  background-color: #fff !important;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-004 {
    margin: 60px auto 0;
    padding: 0 20px;
  }
}

.mp-modulegroup002-004__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.mp-modulegroup002-004__headline {
  font-size: 60px;
  font-size: 6rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-004__headline {
    font-size: 34px;
    font-size: 3.4rem;
  }
}

.mp-modulegroup002-004__headline-en {
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  line-height: 1;
  color: var(--primary, #04a1af);
  letter-spacing: .05em;
}

.mp-modulegroup002-004__headline-ja {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-004__headline-ja {
    margin-top: 5px;
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.mp-modulegroup002-004__first {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 560px;
  margin-top: 40px;
  padding: 60px 0;
  color: var(--sub-txt, #000);
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup002-004__first {
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-004__first {
    padding: 30px 0;
  }
}

.mp-modulegroup002-004__first::after {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: -150px;
  left: 140px;
  width: 100vw;
  background: var(--sub-bg, #f2f2f2);
  content: "";
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-004__first::after {
    left: 20%;
  }
}

.mp-modulegroup002-004__figure {
  position: absolute;
  right: 50%;
  width: 50vw;
  max-width: 800px;
  height: 450px;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup002-004__figure {
    position: relative;
    right: auto;
    width: 100%;
    max-width: none;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-004__figure {
    position: static;
    width: 100%;
    height: auto;
  }
}

.mp-modulegroup002-004__figure-bg-pc {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-004__figure-bg-pc {
    display: none;
  }
}

.mp-modulegroup002-004__figure-img-sp {
  display: none;
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-004__figure-img-sp {
    display: inline;
  }
}

.mp-modulegroup002-004__content {
  width: 50%;
  margin: 0 0 0 auto;
  padding: 0 5%;
  text-align: left;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup002-004__content {
    width: 100%;
    margin: 20px 0 0;
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-004__content {
    width: 100%;
    margin-top: 20px;
    padding: 0;
  }
}

.mp-modulegroup002-004__content:only-child {
  margin: 0 auto;
  padding: 0;
}

.mp-modulegroup002-004__ttl {
  font-size: 30px;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--primary, #04a1af);
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-004__ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

.mp-modulegroup002-004__ttl+.mp-modulegroup002-004__txt {
  margin-top: 20px;
}

.mp-modulegroup002-004__txt {
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  line-height: 1.875;
  letter-spacing: .1em;
}

.mp-modulegroup002-004__works {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -30px -20px 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup002-004__works {
    -ms-flex-direction: column;
    flex-direction: column;
    margin: -40px 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-004__works {
    margin: -30px 0 0;
  }
}

.mp-modulegroup002-004__works-item {
  width: calc(33.33% - 40px);
  margin: 30px 20px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup002-004__works-item {
    width: 100%;
    margin: 40px 0 0;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-004__works-item {
    margin: 30px 0 0;
  }
}

.mp-modulegroup002-004__works-figure {
  text-align: center;
}

.mp-modulegroup002-004__works-figure-img-pc {
  width: 100%;
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-004__works-figure-img-pc {
    display: none;
  }
}

.mp-modulegroup002-004__works-figure-img-sp {
  display: none;
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-004__works-figure-img-sp {
    display: inline;
  }
}

.mp-modulegroup002-004__works-caption {
  margin-top: 15px;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--primary, #04a1af);
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-004__works-caption {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.mp-modulegroup002-004__works-txt {
  margin-top: 15px;
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  line-height: 1.875;
  letter-spacing: .1em;
}

.mp-modulegroup002-005 {
  margin: 100px auto 0;
  padding: 0 20px;
  background: var(--sub-bg, #f2f2f2);
  color: var(--sub-txt, #000);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-005 {
    margin: 80px auto 0;
    padding: 0 20px;
  }
}

.mp-modulegroup002-005__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 1px;
  padding-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-005__inner {
    padding-bottom: 30px;
  }
}

.mp-modulegroup002-005__headline {
  margin-bottom: -.65em;
  font-size: 60px;
  font-size: 6rem;
  line-height: 1;
  -webkit-transform: translateY(-0.65em);
  transform: translateY(-0.65em);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-005__headline {
    font-size: 34px;
    font-size: 3.4rem;
  }
}

.mp-modulegroup002-005__headline-en {
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  line-height: 1;
  color: var(--primary, #04a1af);
  letter-spacing: .05em;
}

.mp-modulegroup002-005__headline-ja {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-005__headline-ja {
    margin-top: 5px;
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.mp-modulegroup002-005__container {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 45px;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup002-005__container {
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-005__container {
    margin-top: 30px;
    padding: 0;
  }
}

.mp-modulegroup002-005__container:first-child {
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-005__container:first-child {
    margin-top: 30px;
  }
}

.mp-modulegroup002-005__figure {
  width: 50%;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup002-005__figure {
    width: 100%;
  }
}

.mp-modulegroup002-005__figure-img-pc {
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-005__figure-img-pc {
    display: none;
  }
}

.mp-modulegroup002-005__figure-img-sp {
  display: none;
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-005__figure-img-sp {
    display: inline;
  }
}

.mp-modulegroup002-005__content {
  -ms-flex-order: -1;
  width: 50%;
  padding: 0 5%;
  text-align: left;
  -webkit-box-ordinal-group: 0;
  order: -1;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup002-005__content {
    -ms-flex-order: 1;
    width: 100%;
    margin-top: 20px;
    padding: 0;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}

.mp-modulegroup002-005__content:only-child {
  margin: 0 auto;
  padding: 0;
}

.mp-modulegroup002-005__ttl {
  font-size: 30px;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--primary, #04a1af);
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-005__ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

.mp-modulegroup002-005__ttl+.mp-modulegroup002-005__txt {
  margin-top: 20px;
}

.mp-modulegroup002-005__txt {
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  line-height: 1.875;
  letter-spacing: .1em;
}

.mp-modulegroup002-006 {
  margin: 100px auto 0;
  padding: 0 20px;
  background-color: #fff !important;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-006 {
    margin: 60px auto 0;
  }
}

.mp-modulegroup002-006__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.mp-modulegroup002-006__headline {
  font-size: 60px;
  font-size: 6rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-006__headline {
    font-size: 34px;
    font-size: 3.4rem;
  }
}

.mp-modulegroup002-006__headline-en {
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  line-height: 1;
  color: var(--primary, #04a1af);
  letter-spacing: .05em;
}

.mp-modulegroup002-006__headline-ja {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-006__headline-ja {
    margin-top: 5px;
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.mp-modulegroup002-006__member {
  margin-top: 10px;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup002-006__member {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-006__member {
    margin-top: 30px;
  }
}

.mp-modulegroup002-006__member-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  background: var(--sub-bg, #f2f2f2);
  color: var(--sub-txt, #000);
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup002-006__member-item {
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-006__member-item {
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}

.mp-modulegroup002-006__member-figure {
  width: 45%;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup002-006__member-figure {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-006__member-figure {
    width: 100%;
  }
}

.mp-modulegroup002-006__member-figure-bg-pc {
  height: 100%;
  min-height: 320px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup002-006__member-figure-bg-pc {
    display: none;
  }
}

.mp-modulegroup002-006__member-figure-img-sp {
  display: none;
  vertical-align: bottom;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup002-006__member-figure-img-sp {
    display: inline;
    width: 100%;
  }
}

.mp-modulegroup002-006__member-item:nth-child(2n) .mp-modulegroup002-006__member-figure {
  -ms-flex-order: 1;
  -webkit-box-ordinal-group: 2;
  order: 1;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup002-006__member-item:nth-child(2n) .mp-modulegroup002-006__member-figure {
    -ms-flex-order: inherit;
    -webkit-box-ordinal-group: inherit;
    order: inherit;
  }
}

.mp-modulegroup002-006__member-content {
  width: 55%;
  padding: 30px 5%;
  text-align: left;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup002-006__member-content {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-006__member-content {
    width: 100%;
    padding: 15px 5%;
  }
}

.mp-modulegroup002-006__member-content:only-child {
  margin: 0 auto;
}

.mp-modulegroup002-006__member-name {
  color: var(--primary, #04a1af);
}

.mp-modulegroup002-006__member-name-kanji {
  display: inline-block;
  margin-right: 15px;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-006__member-name-kanji {
    margin-right: 10px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.mp-modulegroup002-006__member-name-kana {
  display: inline-block;
  letter-spacing: .05em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-006__member-name-kana {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.mp-modulegroup002-006__member-position {
  margin-top: 5px;
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  letter-spacing: .1em;
}

.mp-modulegroup002-006__member-txt {
  margin-top: 15px;
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  line-height: 1.6;
  text-align: left;
  letter-spacing: .1em;
}

.mp-modulegroup002-007 {
  margin: 100px auto;
  background-color: #fff !important;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-007 {
    margin: 60px auto;
  }
}

.mp-modulegroup002-007__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.mp-modulegroup002-007__headline {
  font-size: 60px;
  font-size: 6rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-007__headline {
    font-size: 34px;
    font-size: 3.4rem;
  }
}

.mp-modulegroup002-007__headline-en {
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  line-height: 1;
  color: var(--primary, #04a1af);
  letter-spacing: .05em;
}

.mp-modulegroup002-007__headline-ja {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-007__headline-ja {
    margin-top: 5px;
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.mp-modulegroup002-007__figure {
  margin-top: 45px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-007__figure {
    margin-top: 30px;
  }
}

.mp-modulegroup002-007__figure-img-pc {
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-007__figure-img-pc {
    display: none;
  }
}

.mp-modulegroup002-007__figure-img-sp {
  display: none;
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-007__figure-img-sp {
    display: inline;
    width: 100%;
  }
}

.mp-modulegroup002-007__figure+.mp-modulegroup002-007__container {
  margin: -60px 4% 0;
}

.mp-modulegroup002-007__headline+.mp-modulegroup002-007__container {
  margin: 30px 4% 0;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-007__headline+.mp-modulegroup002-007__container {
    margin-top: 10px;
  }
}

.mp-modulegroup002-007__container {
  position: relative;
  z-index: 1;
  padding: 20px 5% 0;
  background: #fff;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-007__container {
    padding: 20px 16px 0;
  }
}

.mp-modulegroup002-007__name {
  color: var(--primary, #04a1af);
}

.mp-modulegroup002-007__name-kanji {
  display: inline-block;
  margin-right: 15px;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-007__name-kanji {
    margin-right: 10px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.mp-modulegroup002-007__name-kana {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-007__name-kana {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.mp-modulegroup002-007__position {
  margin-top: 5px;
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  letter-spacing: .1em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-007__position {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.mp-modulegroup002-007__cnt-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 25px;
  padding: 25px 0 0;
  border-top: 1px solid var(--primary-border, #04a1af);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-007__cnt-item {
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 15px;
    padding-top: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}

.mp-modulegroup002-007__cnt-ttl {
  width: 20%;
  line-height: 1.6;
  letter-spacing: .1em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-007__cnt-ttl {
    width: 100%;
    margin-bottom: 15px;
  }
}

.mp-modulegroup002-007__cnt-txt {
  width: 80%;
  padding-left: 15px;
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  line-height: 1.875;
  letter-spacing: .1em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-007__cnt-txt {
    width: 100%;
    padding-left: 0;
  }
}

.mp-modulegroup002-008 {
  margin: 100px auto 80px;
  padding: 0 20px;
  background-color: #fff !important;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-008 {
    margin: 60px auto;
    padding: 0 20px;
  }
}

.mp-modulegroup002-008__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.mp-modulegroup002-008__headline {
  font-size: 60px;
  font-size: 6rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-008__headline {
    font-size: 34px;
    font-size: 3.4rem;
  }
}

.mp-modulegroup002-008__headline-en {
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  line-height: 1;
  color: var(--primary, #04a1af);
  letter-spacing: .05em;
}

.mp-modulegroup002-008__headline-ja {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-008__headline-ja {
    margin-top: 5px;
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.mp-modulegroup002-008__data-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
  padding: 40px 4.2%;
  background: var(--sub-bg, #f2f2f2);
  color: var(--sub-txt, #000);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-008__data-item {
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}

.mp-modulegroup002-008__data-ttl {
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 20px;
  background: #111;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  text-align: left;
  letter-spacing: .15em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-008__data-ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.mp-modulegroup002-008__data-figure {
  width: 30%;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-008__data-figure {
    width: 100%;
  }
}

.mp-modulegroup002-008__data-figure-img-pc {
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-008__data-figure-img-pc {
    display: none;
  }
}

.mp-modulegroup002-008__data-figure-img-sp {
  display: none;
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-008__data-figure-img-sp {
    display: inline;
  }
}

.mp-modulegroup002-008__data-figure+.mp-modulegroup002-008__data-content {
  width: 65%;
  margin-left: 5%;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-008__data-figure+.mp-modulegroup002-008__data-content {
    width: 100%;
    margin-top: 15px;
    margin-left: 0;
  }
}

.mp-modulegroup002-008__data-content {
  text-align: left;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.mp-modulegroup002-008__data-legend {
  margin: 20px auto;
}

.mp-modulegroup002-008__data-legend-img-pc {
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-008__data-legend-img-pc {
    display: none;
  }
}

.mp-modulegroup002-008__data-legend-img-sp {
  display: none;
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-008__data-legend-img-sp {
    display: inline;
  }
}

.mp-modulegroup002-008__data-txt {
  margin-top: 15px;
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  line-height: 1.6;
  text-align: left;
  letter-spacing: .1em;
}

.mp-modulegroup002-008__data-legend+.mp-modulegroup002-008__data-txt {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--primary-border, #04a1af);
}

.mp-modulegroup002-009 {
  margin: 100px auto;
  padding: 0 20px;
  background-color: #fff !important;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-009 {
    margin: 60px auto;
    padding: 0 20px;
  }
}

.mp-modulegroup002-009__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.mp-modulegroup002-009__headline {
  font-size: 60px;
  font-size: 6rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-009__headline {
    font-size: 34px;
    font-size: 3.4rem;
  }
}

.mp-modulegroup002-009__headline-en {
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  line-height: 1;
  color: var(--primary, #04a1af);
  letter-spacing: .05em;
}

.mp-modulegroup002-009__headline-ja {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-009__headline-ja {
    margin-top: 5px;
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.mp-modulegroup002-009__gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 38px -7px 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-009__gallery {
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 20px 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}

.mp-modulegroup002-009__gallery-item {
  position: relative;
  width: calc(25% - 14px);
  margin: 7px;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup002-009__gallery-item {
    width: calc(50% - 14px);
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-009__gallery-item {
    width: 100%;
    margin: 7px 0;
  }
}

.mp-modulegroup002-009__gallery-figure-img-pc {
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-009__gallery-figure-img-pc {
    display: none;
  }
}

.mp-modulegroup002-009__gallery-figure-img-sp {
  display: none;
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-009__gallery-figure-img-sp {
    display: inline;
  }
}

.mp-modulegroup002-010 {
  margin: 140px auto 0;
  padding: 0 20px;
  background: var(--sub-bg, #f2f2f2);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-010 {
    margin-top: 60px;
    padding: 0 20px;
  }
}

.mp-modulegroup002-010__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-010__inner {
    padding-bottom: 40px;
  }
}

.mp-modulegroup002-010__headline {
  margin-bottom: -.65em;
  font-size: 60px;
  font-size: 6rem;
  line-height: 1;
  -webkit-transform: translateY(-0.65em);
  transform: translateY(-0.65em);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-010__headline {
    font-size: 34px;
    font-size: 3.4rem;
  }
}

.mp-modulegroup002-010__headline-en {
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  line-height: 1;
  color: var(--primary, #04a1af);
  letter-spacing: .05em;
}

.mp-modulegroup002-010__headline-ja {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-010__headline-ja {
    margin-top: 5px;
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.mp-modulegroup002-010__container {
  max-width: 1000px;
  margin: 45px auto 0;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-010__container {
    margin-top: 30px;
  }
}

.mp-modulegroup002-010__faq {
  text-align: left;
}

.mp-modulegroup002-010__faq-item {
  margin-top: 20px;
  padding: 40px 90px 30px 100px;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-010__faq-item {
    padding: 20px 20px 30px;
  }
}

.mp-modulegroup002-010__faq-ttl {
  position: relative;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-010__faq-ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.mp-modulegroup002-010__faq-ttl::before {
  position: absolute;
  top: -.2em;
  left: -20px;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 40px;
  font-size: 4rem;
  line-height: 1;
  color: var(--primary, #04a1af);
  content: "Q.";
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup002-010__faq-ttl::before {
    position: static;
    margin-right: 10px;
    font-size: 28px;
    font-size: 2.8rem;
    -webkit-transform: none;
    transform: none;
  }
}

.mp-modulegroup002-010__faq-txt {
  margin-top: 15px;
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  line-height: 1.875;
  letter-spacing: .1em;
}

.mp-modulegroup003-001 {
  overflow: hidden;
  margin: 120px auto 0;
  padding: 0 20px;
  color: var(--sub-txt, #000);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-001 {
    margin: 60px auto 0;
    padding: 0 20px;
  }
}

.mp-modulegroup003-001__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 60px;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-001__inner {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-001__inner {
    padding-top: 8.3%;
  }
}

.mp-modulegroup003-001__headline-bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  font-size: 150px;
  font-size: 15rem;
  font-weight: 700;
  line-height: .7;
  color: var(--sub-bg, #f2f2f2);
  white-space: nowrap;
  letter-spacing: .15em;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-001__headline-bg {
    font-size: 120px;
    font-size: 12rem;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-001__headline-bg {
    font-size: 17vw;
    letter-spacing: .1em;
  }
}

.mp-modulegroup003-001__container {
  width: 40%;
  max-width: 505px;
  padding-left: 6%;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-001__container {
    width: 100%;
    max-width: none;
    padding: 0 0 30px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-001__container {
    padding: 0 0 20px;
  }
}

.mp-modulegroup003-001__headline {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-001__headline {
    font-size: 20px;
    font-size: 2rem;
  }
}

.mp-modulegroup003-001__headline-en {
  display: block;
  color: var(--primary, #04a1af);
  letter-spacing: .15em;
}

.mp-modulegroup003-001__headline+.mp-modulegroup003-001__ttl {
  margin-top: 15px;
}

.mp-modulegroup003-001__ttl {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-001__ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

.mp-modulegroup003-001__ttl+.mp-modulegroup003-001__txt {
  margin-top: 15px;
}

.mp-modulegroup003-001__txt {
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-001__txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup003-001__message-figure {
  position: relative;
  left: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  width: 60%;
  max-width: 860px;
  -webkit-box-align: start;
  align-items: flex-start;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-001__message-figure {
    left: auto;
    width: 100%;
    max-width: none;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-001__message-figure {
    display: block;
  }
}

.mp-modulegroup003-001__message-figure-img-pc {
  width: 50%;
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-001__message-figure-img-pc {
    display: none;
  }
}

.mp-modulegroup003-001__message-figure-img-pc-only {
  width: 100%;
}

.mp-modulegroup003-001__message-figure-img-sp {
  display: none;
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-001__message-figure-img-sp {
    display: inline;
  }
}

.mp-modulegroup003-002 {
  margin: 120px auto 0;
  padding: 0 20px;
  color: var(--sub-txt, #000);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-002 {
    margin: 60px auto 0;
    padding: 0 20px;
  }
}

.mp-modulegroup003-002__inner {
  max-width: 1175px;
  margin: 0 auto;
}

.mp-modulegroup003-002__headline {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-002__headline {
    font-size: 20px;
    font-size: 2rem;
  }
}

.mp-modulegroup003-002__headline-en {
  display: block;
  color: var(--primary, #04a1af);
  letter-spacing: .15em;
}

.mp-modulegroup003-002__headline-ja {
  display: block;
  margin-top: 20px;
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-002__headline-ja {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.mp-modulegroup003-002__feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 85px;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-002__feature {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-002__feature {
    margin-top: 60px;
  }
}

.mp-modulegroup003-002__feature-item {
  position: relative;
  width: calc(33.3% - 40px / 3);
  margin-right: 20px;
  padding: 50px 30px;
  background: var(--sub-bg, #f2f2f2);
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-002__feature-item {
    width: 100%;
    padding: 50px 30px 30px;
  }

  .mp-modulegroup003-002__feature-item:not(:first-child) {
    margin-top: 65px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-002__feature-item {
    padding: 35px 15px 25px;
  }

  .mp-modulegroup003-002__feature-item:not(:first-child) {
    margin-top: 50px;
  }
}

.mp-modulegroup003-002__feature-item:nth-child(3) {
  margin-right: 0;
}

.mp-modulegroup003-002__feature-figure {
  position: absolute;
  top: -45px;
  left: 50%;
  width: 80px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-002__feature-figure {
    top: -35px;
    width: 60px;
  }
}

.mp-modulegroup003-002__feature-figure-img-pc {
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-002__feature-figure-img-pc {
    display: none;
  }
}

.mp-modulegroup003-002__feature-figure-img-sp {
  display: none;
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-002__feature-figure-img-sp {
    display: inline;
  }
}

.mp-modulegroup003-002__feature-ttl {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-002__feature-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

.mp-modulegroup003-002__feature-ttl+.mp-modulegroup003-002__feature-txt {
  margin-top: 20px;
}

.mp-modulegroup003-002__feature-txt {
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 15px;
  font-size: 1.5rem;
  text-align: left;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-002__feature-txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup003-003 {
  margin: 120px auto 0;
  padding: 0 20px;
  color: var(--sub-txt, #000);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-003 {
    margin: 60px auto 0;
    padding: 0 20px;
  }
}

.mp-modulegroup003-003__inner {
  max-width: 960px;
  margin: 0 auto;
}

.mp-modulegroup003-003__headline {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-003__headline {
    font-size: 20px;
    font-size: 2rem;
  }
}

.mp-modulegroup003-003__headline-en {
  display: block;
  color: var(--primary, #04a1af);
  letter-spacing: .15em;
}

.mp-modulegroup003-003__headline-ja {
  display: block;
  margin-top: 20px;
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-003__headline-ja {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.mp-modulegroup003-003__work {
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-003__work {
    margin-top: 30px;
  }
}

.mp-modulegroup003-003__work-item:not(:first-child) {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-003__work-item:not(:first-child) {
    margin-top: 25px;
  }
}

.mp-modulegroup003-003__work-num {
  display: block;
  width: 220px;
  border-bottom: 1px solid #111;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: left;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-003__work-num {
    font-size: 20px;
    font-size: 2rem;
  }
}

.mp-modulegroup003-003__work-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  margin-top: 30px;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-003__work-dl {
    display: block;
    margin-top: 25px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-003__work-dl {
    margin-top: 20px;
  }
}

.mp-modulegroup003-003__work-dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  width: 23%;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-003__work-dt {
    -ms-flex-pack: start;
    width: 100%;
    -webkit-box-pack: start;
    justify-content: flex-start;
  }
}

.mp-modulegroup003-003__work-style {
  width: 60px;
  white-space: nowrap;
}

.mp-modulegroup003-003__work-style-txt {
  display: block;
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary, #04a1af);
  text-indent: -.5em;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-003__work-style-txt {
    font-size: 10px;
    font-size: 1rem;
  }
}

.mp-modulegroup003-003__work-style-num {
  display: block;
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1;
  color: var(--primary, #04a1af);
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-003__work-style-num {
    font-size: 30px;
    font-size: 3rem;
  }
}

.mp-modulegroup003-003__work-ttl-sub {
  width: 50px;
  margin-left: 15%;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--primary, #04a1af);
  letter-spacing: .2em;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-003__work-ttl-sub {
    width: auto;
    margin-left: 20px;
    font-size: 24px;
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-003__work-ttl-sub {
    font-size: 20px;
    font-size: 2rem;
  }
}

.mp-modulegroup003-003__work-dd {
  width: 77%;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-003__work-dd {
    width: 100%;
    padding-top: 15px;
  }
}

.mp-modulegroup003-003__work-ttl {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-003__work-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

.mp-modulegroup003-003__work-ttl+.mp-modulegroup003-003__work-txt {
  margin-top: 10px;
}

.mp-modulegroup003-003__work-txt {
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 15px;
  font-size: 1.5rem;
  text-align: left;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-003__work-txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup003-004 {
  overflow: hidden;
  margin: 120px auto 0;
  padding: 0 20px;
  color: var(--sub-txt, #000);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-004 {
    margin: 60px auto 0;
    padding: 0 20px;
  }
}

.mp-modulegroup003-004__inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-004__inner {
    display: block;
  }
}

.mp-modulegroup003-004__inner::after {
  position: absolute;
  z-index: -1;
  top: 50px;
  right: 5.5%;
  bottom: 36.6%;
  width: 160vw;
  background: var(--sub-bg, #f2f2f2);
  content: "";
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-004__inner::after {
    top: 35px;
    right: 80px;
    bottom: 20.3%;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-004__inner::after {
    top: 15px;
    right: 11%;
    bottom: 33vw;
  }
}

.mp-modulegroup003-004__headline {
  font-size: 100px;
  font-size: 10rem;
  font-weight: 700;
  line-height: .8;
  text-align: left;
  white-space: nowrap;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-004__headline {
    font-size: 70px;
    font-size: 7rem;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-004__headline {
    font-size: 30px;
    font-size: 3rem;
  }
}

.mp-modulegroup003-004__headline-en {
  display: block;
  color: var(--primary, #04a1af);
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-004__headline-en {
    letter-spacing: .1em;
  }
}

.mp-modulegroup003-004__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  padding-top: 100px;
  text-align: left;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-004__container {
    display: block;
    padding-top: 50px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-004__container {
    padding-top: 30px;
  }
}

.mp-modulegroup003-004__flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 45.8%;
  margin-right: 75px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-004__flow {
    display: block;
    width: 100%;
    margin-right: 0;
  }
}

.mp-modulegroup003-004__flow:nth-child(even) {
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 54.2%;
  margin-right: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-004__flow:nth-child(even) {
    width: 100%;
  }
}

.mp-modulegroup003-004__flow:nth-child(even) .mp-modulegroup003-004__flow-cnt {
  margin-top: 50px;
  padding: 0 10% 0 16.2%;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-004__flow:nth-child(even) .mp-modulegroup003-004__flow-cnt {
    margin-top: 40px;
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-004__flow:nth-child(even) .mp-modulegroup003-004__flow-cnt {
    margin-top: 30px;
  }
}

.mp-modulegroup003-004__flow:nth-child(even) .mp-modulegroup003-004__flow-figure {
  max-width: 820px;
  min-height: 0%;
  margin-top: 20px;
  margin-right: -80px;
  margin-left: 0;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-004__flow:nth-child(even) .mp-modulegroup003-004__flow-figure {
    max-width: none;
    margin-top: 30px;
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-004__flow:nth-child(even) .mp-modulegroup003-004__flow-figure {
    margin-top: 20px;
  }
}

.mp-modulegroup003-004__flow-cnt {
  padding: 0 0 0 12.8%;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-004__flow-cnt {
    padding: 0;
  }
}

.mp-modulegroup003-004__flow-ttl {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-004__flow-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

.mp-modulegroup003-004__flow-ttl+.mp-modulegroup003-004__flow-txt {
  margin-top: 15px;
}

.mp-modulegroup003-004__flow-txt {
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-004__flow-txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup003-004__flow-figure {
  width: calc(100% + 80px);
  max-width: 705px;
  min-height: 0%;
  margin-top: 55px;
  margin-left: -80px;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-004__flow-figure {
    width: 100%;
    max-width: none;
    margin-top: 30px;
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-004__flow-figure {
    margin-top: 20px;
  }
}

.mp-modulegroup003-004__flow-figure-img-pc {
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-004__flow-figure-img-pc {
    display: none;
  }
}

.mp-modulegroup003-004__flow-figure-img-sp {
  display: none;
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-004__flow-figure-img-sp {
    display: inline;
  }
}

.mp-modulegroup003-005 {
  margin: 120px auto 0;
  padding: 0 20px;
  color: var(--sub-txt, #000);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-005 {
    margin: 60px auto 0;
    padding: 0 20px;
  }
}

.mp-modulegroup003-005__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.mp-modulegroup003-005__headline {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-005__headline {
    font-size: 20px;
    font-size: 2rem;
  }
}

.mp-modulegroup003-005__headline-en {
  display: block;
  color: var(--primary, #04a1af);
  letter-spacing: .15em;
}

.mp-modulegroup003-005__headline-ja {
  display: block;
  margin-top: 20px;
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-005__headline-ja {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.mp-modulegroup003-005__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  margin-top: 85px;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-005__container {
    display: block;
    margin-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-005__container {
    margin-top: 40px;
  }
}

.mp-modulegroup003-005__cnt {
  width: 40%;
  max-width: 420px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-005__cnt {
    width: 100%;
    max-width: none;
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-005__cnt {
    margin-top: 20px;
  }
}

.mp-modulegroup003-005__figure {
  width: 60%;
  max-width: 590px;
  margin-right: 70px;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-005__figure {
    width: 100%;
    max-width: none;
    margin-right: 0;
  }
}

.mp-modulegroup003-005__figure-img-pc {
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-005__figure-img-pc {
    display: none;
  }
}

.mp-modulegroup003-005__figure-img-sp {
  display: none;
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-005__figure-img-sp {
    display: inline;
  }
}

.mp-modulegroup003-005__ttl {
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.5;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-005__ttl {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.mp-modulegroup003-005__ttl+.mp-modulegroup003-005__txt {
  margin-top: 15px;
}

.mp-modulegroup003-005__txt {
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-005__txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup003-006 {
  overflow: hidden;
  margin: 120px auto 0;
  padding: 0 20px;
  color: var(--sub-txt, #000);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-006 {
    margin: 60px auto 0;
    padding: 0 20px;
  }
}

.mp-modulegroup003-006__inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding-bottom: 65px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-006__inner {
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-006__inner {
    padding-bottom: 30px;
  }
}

.mp-modulegroup003-006__inner::after {
  position: absolute;
  z-index: -1;
  top: 115px;
  bottom: 0;
  left: 5.5%;
  width: 160vw;
  background: var(--sub-bg, #f2f2f2);
  content: "";
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-006__inner::after {
    top: 80px;
    left: 80px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-006__inner::after {
    left: 11%;
  }
}

.mp-modulegroup003-006__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  padding-top: 35px;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-006__container {
    display: block;
    padding-top: 0;
  }
}

.mp-modulegroup003-006__headline-bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 515px;
  font-size: 150px;
  font-size: 15rem;
  font-weight: 700;
  line-height: .7;
  color: var(--sub-bg, #f2f2f2);
  white-space: nowrap;
  letter-spacing: .15em;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-006__headline-bg {
    display: none;
  }
}

.mp-modulegroup003-006__figure {
  width: calc(60% + 80px);
  max-width: 810px;
  margin-right: 7.3%;
  margin-left: -80px;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-006__figure {
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
  }
}

.mp-modulegroup003-006__figure-img-pc {
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-006__figure-img-pc {
    display: none;
  }
}

.mp-modulegroup003-006__figure-img-sp {
  display: none;
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-006__figure-img-sp {
    display: inline;
  }
}

.mp-modulegroup003-006__cnt {
  width: 40%;
  max-width: 455px;
  margin-top: 80px;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-006__cnt {
    width: 100%;
    max-width: none;
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-006__cnt {
    margin-top: 30px;
  }
}

.mp-modulegroup003-006__headline {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-006__headline {
    font-size: 20px;
    font-size: 2rem;
  }
}

.mp-modulegroup003-006__headline-en {
  display: block;
  color: var(--primary, #04a1af);
  letter-spacing: .15em;
}

.mp-modulegroup003-006__headline+.mp-modulegroup003-006__ttl {
  margin-top: 15px;
}

.mp-modulegroup003-006__ttl {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-006__ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

.mp-modulegroup003-006__ttl+.mp-modulegroup003-006__position {
  margin-top: 15px;
}

.mp-modulegroup003-006__position {
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-006__position {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup003-006__position+.mp-modulegroup003-006__name {
  margin-top: 5px;
}

.mp-modulegroup003-006__name {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-006__name {
    font-size: 20px;
    font-size: 2rem;
  }
}

.mp-modulegroup003-006__interview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1150px;
  margin: 65px 0 0 11%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-006__interview {
    display: block;
    max-width: none;
    margin: 0;
  }
}

.mp-modulegroup003-006__interview-item {
  position: relative;
  width: calc(49.9% - 9% / 2);
  margin-right: 9%;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-006__interview-item {
    width: 100%;
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-006__interview-item {
    margin-top: 30px;
  }
}

.mp-modulegroup003-006__interview-item:nth-child(even) {
  margin-right: 0;
}

.mp-modulegroup003-006__interview-item:nth-child(3n) {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-006__interview-item:nth-child(3n) {
    margin-top: 30px;
  }
}

.mp-modulegroup003-006__interview-item:only-child {
  width: 100%;
  margin-right: 0;
}

.mp-modulegroup003-006__interview-ttl-sub {
  position: relative;
  padding-left: 65px;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary, #04a1af);
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-006__interview-ttl-sub {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.mp-modulegroup003-006__interview-ttl-sub::before {
  position: absolute;
  top: 10px;
  left: 0;
  display: block;
  width: 50px;
  height: 1px;
  background: var(--primary, #04a1af);
  content: "";
}

.mp-modulegroup003-006__interview-ttl-sub+.mp-modulegroup003-006__interview-ttl {
  margin-top: 15px;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-006__interview-ttl-sub+.mp-modulegroup003-006__interview-ttl {
    margin-top: 10px;
  }
}

.mp-modulegroup003-006__interview-ttl {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-006__interview-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

.mp-modulegroup003-006__interview-ttl+.mp-modulegroup003-006__interview-txt {
  margin-top: 20px;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-006__interview-ttl+.mp-modulegroup003-006__interview-txt {
    margin-top: 15px;
  }
}

.mp-modulegroup003-006__interview-txt {
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 15px;
  font-size: 1.5rem;
  text-align: left;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-006__interview-txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup003-007 {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding: 120px 20px;
  color: var(--sub-txt, #000);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-007 {
    padding: 60px 20px;
  }
}

.mp-modulegroup003-007::after {
  position: absolute;
  z-index: -10;
  top: 0;
  bottom: 0;
  left: 50%;
  display: block;
  width: calc(100% + 10px);
  max-width: 938px;
  background-image: -webkit-repeating-linear-gradient(left, #d7dae0, #d7dae0 1px, transparent 2px, transparent calc(25% - 1px));
  background-image: repeating-linear-gradient(90deg, #d7dae0, #d7dae0 1px, transparent 2px, transparent calc(25% - 1px));
  content: "";
  opacity: .7;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.mp-modulegroup003-007__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.mp-modulegroup003-007__headline {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-007__headline {
    font-size: 20px;
    font-size: 2rem;
  }
}

.mp-modulegroup003-007__headline-en {
  display: block;
  color: var(--primary, #04a1af);
  letter-spacing: .15em;
}

.mp-modulegroup003-007__headline-ja {
  display: block;
  margin-top: 20px;
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-007__headline-ja {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.mp-modulegroup003-007__headline+.mp-modulegroup003-007__txt {
  margin-top: 35px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-007__headline+.mp-modulegroup003-007__txt {
    margin-top: 30px;
  }
}

.mp-modulegroup003-007__txt {
  max-width: 565px;
  margin-right: auto;
  margin-left: auto;
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 15px;
  font-size: 1.5rem;
  text-align: left;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-007__txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup003-007__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 65px;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-007__data {
    display: block;
    margin-top: 0;
  }
}

.mp-modulegroup003-007__data-figure {
  width: 50%;
  padding: 0 2.4% 0 3.8%;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-007__data-figure {
    width: 100%;
    margin-top: 40px;
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-007__data-figure {
    margin-top: 30px;
  }
}

.mp-modulegroup003-007__data-figure:nth-child(even) {
  padding: 0 3.8% 0 2.4%;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-007__data-figure:nth-child(even) {
    padding: 0;
  }
}

.mp-modulegroup003-007__data-figure:only-child {
  margin-right: auto;
  margin-left: auto;
  padding: 0;
}

.mp-modulegroup003-007__data-figure-img-pc {
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-007__data-figure-img-pc {
    display: none;
  }
}

.mp-modulegroup003-007__data-figure-img-sp {
  display: none;
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-007__data-figure-img-sp {
    display: inline;
  }
}

.mp-modulegroup003-008 {
  margin: 0 auto;
  padding: 0 20px;
  background: var(--sub-bg, #f2f2f2);
  color: var(--sub-txt, #000);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-008 {
    padding: 0 20px;
  }
}

.mp-modulegroup003-008__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 60px 0 80px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-008__inner {
    padding: 35px 0;
  }
}

.mp-modulegroup003-008__headline {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-008__headline {
    font-size: 20px;
    font-size: 2rem;
  }
}

.mp-modulegroup003-008__headline-en {
  display: block;
  color: var(--primary, #04a1af);
  letter-spacing: .15em;
}

.mp-modulegroup003-008__headline-ja {
  display: block;
  margin-top: 20px;
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-008__headline-ja {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.mp-modulegroup003-008__headline+.mp-modulegroup003-008__txt {
  margin-top: 35px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-008__headline+.mp-modulegroup003-008__txt {
    margin-top: 30px;
  }
}

.mp-modulegroup003-008__txt {
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-008__txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup003-008__faq {
  margin-top: 35px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-008__faq {
    margin-top: 30px;
  }
}

.mp-modulegroup003-008__faq-item {
  padding-left: 50px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-008__faq-item {
    padding-left: 0;
  }
}

.mp-modulegroup003-008__faq-item:not(:first-child) {
  margin-top: 25px;
}

.mp-modulegroup003-008__faq-ttl {
  position: relative;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-008__faq-ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.mp-modulegroup003-008__faq-ttl::before {
  position: absolute;
  top: 0;
  left: -20px;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--primary, #04a1af);
  content: "Q.";
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-008__faq-ttl::before {
    position: static;
    margin-right: 10px;
    font-size: 20px;
    font-size: 2rem;
    -webkit-transform: none;
    transform: none;
  }
}

.mp-modulegroup003-008__faq-txt {
  margin-top: 10px;
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-008__faq-txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup003-009 {
  overflow: hidden;
  margin: 0 auto;
  padding: 0 20px;
  color: var(--sub-txt, #000);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-009 {
    padding: 0 20px;
  }
}

.mp-modulegroup003-009__inner {
  max-width: 1440px;
  margin: 0 auto;
  text-align: left;
}

.mp-modulegroup003-009__container {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 100px 0;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-009__container {
    padding: 80px 0;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-009__container {
    width: auto;
    margin: 0;
    padding: 0;
  }
}

.mp-modulegroup003-009__container-img-pc-bg {
  background-repeat: no-repeat;
  background-position: 70% 50%;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-009__container-img-pc-bg {
    background-image: none !important;
  }
}

.mp-modulegroup003-009__figure {
  display: none;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-009__figure {
    display: block;
    width: calc(100% + 480px);
    margin: 0 -80px 0 -400px;
  }
}

.mp-modulegroup003-009__figure-img-sp {
  vertical-align: bottom;
}

.mp-modulegroup003-009__cnt {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-009__cnt {
    padding: 0;
  }
}

.mp-modulegroup003-009__cnt-inner {
  display: inline-block;
}

.mp-modulegroup003-009__headline {
  display: inline-block;
  width: 100%;
  padding: 40px 35px;
  border: 10px solid var(--primary-border, #04a1af);
  background: rgba(241, 244, 250, 0.83);
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  color: var(--primary, #04a1af);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-009__headline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin-top: 30px;
    padding: 0;
    border: 0;
    background: none;
    font-size: 20px;
    font-size: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
  }
}

.mp-modulegroup003-009__headline-ja {
  display: block;
  font-size: 60px;
  font-size: 6rem;
  letter-spacing: .2em;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-009__headline-ja {
    font-size: 45px;
    font-size: 4.5rem;
    letter-spacing: .15em;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-009__headline-ja {
    margin-top: 20px;
    font-size: 24px;
    font-size: 2.4rem;
    color: var(--sub-txt, #000);
    letter-spacing: .2em;
  }
}

.mp-modulegroup003-009__headline-en {
  position: relative;
  display: block;
  margin-top: 30px;
  padding-top: 30px;
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-009__headline-en {
    margin-top: 0;
    padding-top: 0;
  }
}

.mp-modulegroup003-009__headline-en::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 57px;
  height: 4px;
  background: var(--primary, #04a1af);
  content: "";
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-009__headline-en::before {
    content: none;
  }
}

.mp-modulegroup003-009__training {
  max-width: 1280px;
  margin: 100px auto 0;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-009__training {
    margin: 40px auto 0;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-009__training {
    margin: 30px auto 0;
  }
}

.mp-modulegroup003-009__training-item:not(:first-child) {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-009__training-item:not(:first-child) {
    margin-top: 25px;
  }
}

.mp-modulegroup003-009__training-item:last-child .mp-modulegroup003-009__training-dt::before {
  content: none;
}

.mp-modulegroup003-009__training-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-009__training-dl {
    display: block;
  }
}

.mp-modulegroup003-009__training-dt {
  position: relative;
  width: 215px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-009__training-dt {
    width: 100%;
  }
}

.mp-modulegroup003-009__training-dt::before {
  position: absolute;
  bottom: 0;
  left: 70px;
  display: block;
  width: 2px;
  height: 100%;
  background: var(--primary, #04a1af);
  content: "";
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-009__training-dt::before {
    content: none;
  }
}

.mp-modulegroup003-009__training-flow {
  position: relative;
  padding-bottom: 20px;
  background: #fff;
  white-space: nowrap;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-009__training-flow {
    padding-bottom: 0;
  }
}

.mp-modulegroup003-009__training-flow-txt {
  margin-right: 5px;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-009__training-flow-txt {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.mp-modulegroup003-009__training-flow-num {
  font-size: 60px;
  font-size: 6rem;
  font-weight: 500;
  line-height: .8;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-009__training-flow-num {
    font-size: 40px;
    font-size: 4rem;
  }
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-009__training-dd {
    padding-top: 15px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-009__training-dd {
    padding-top: 10px;
  }
}

.mp-modulegroup003-009__training-ttl-sub {
  position: relative;
  padding-left: 65px;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary, #04a1af);
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-009__training-ttl-sub {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.mp-modulegroup003-009__training-ttl-sub::before {
  position: absolute;
  top: 10px;
  left: 0;
  display: block;
  width: 50px;
  height: 1px;
  background: var(--primary, #04a1af);
  content: "";
}

.mp-modulegroup003-009__training-ttl-sub+.mp-modulegroup003-009__training-ttl {
  margin-top: 10px;
}

.mp-modulegroup003-009__training-ttl {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-009__training-ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.mp-modulegroup003-009__training-ttl+.mp-modulegroup003-009__training-txt {
  margin-top: 15px;
}

.mp-modulegroup003-009__training-txt {
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-009__training-txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup003-010 {
  margin: 120px auto 0;
  padding: 0 20px;
  background: var(--sub-bg, #f2f2f2);
  color: var(--sub-txt, #000);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-010 {
    margin: 60px auto 0;
    padding: 0 20px;
  }
}

.mp-modulegroup003-010__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 0 80px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-010__inner {
    padding: 35px 0;
  }
}

.mp-modulegroup003-010__headline {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-010__headline {
    font-size: 20px;
    font-size: 2rem;
  }
}

.mp-modulegroup003-010__headline-en {
  display: block;
  color: var(--primary, #04a1af);
  letter-spacing: .15em;
}

.mp-modulegroup003-010__headline-ja {
  display: block;
  margin-top: 20px;
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-010__headline-ja {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.mp-modulegroup003-010__headline+.mp-modulegroup003-010__txt {
  margin-top: 35px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-010__headline+.mp-modulegroup003-010__txt {
    margin-top: 30px;
  }
}

.mp-modulegroup003-010__txt {
  max-width: 565px;
  margin-right: auto;
  margin-left: auto;
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 15px;
  font-size: 1.5rem;
  text-align: left;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-010__txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup003-010__experience {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 45px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-010__experience {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-010__experience {
    margin-top: 30px;
  }
}

.mp-modulegroup003-010__experience-item {
  width: calc(33.3% - 13.2% / 3);
  margin-right: 6.6%;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-010__experience-item {
    width: 100%;
    margin-right: 0;
  }
}

.mp-modulegroup003-010__experience-item:nth-child(3) {
  margin-right: 0;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup003-010__experience-item:not(:first-child) {
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-010__experience-item:not(:first-child) {
    margin-top: 25px;
  }
}

.mp-modulegroup003-010__experience-ttl {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-010__experience-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

.mp-modulegroup003-010__experience-ttl+.mp-modulegroup003-010__experience-txt {
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid #111;
}

.mp-modulegroup003-010__experience-txt {
  font-family: var(--font-sans, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup003-010__experience-txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

:root {
  --mg004-bg: #ebb600;
  --mg004-txt: #000;
}

.mp-modulegroup004-001 {
  margin: 150px auto 130px;
  padding: 0 20px;
  background: var(--sub-bg, #f2f2f2);
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-001 {
    margin: 80px auto 60px;
    padding: 0 20px;
  }
}

.mp-modulegroup004-001__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 1px;
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-001__inner {
    padding-bottom: 50px;
  }
}

.mp-modulegroup004-001__headline {
  margin-bottom: -.55em;
  font-size: 45px;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  -webkit-transform: translateY(-0.55em);
  transform: translateY(-0.55em);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-001__headline {
    font-size: 30px;
    font-size: 3rem;
  }
}

.mp-modulegroup004-001__headline-en {
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  letter-spacing: .06em;
}

.mp-modulegroup004-001__headline-ja {
  display: block;
  margin-top: 10px;
  font-size: 19px;
  font-size: 1.9rem;
  color: var(--primary, #04a1af);
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-001__headline-ja {
    margin-top: 5px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup004-001__container {
  position: relative;
  z-index: 1;
  margin-top: 60px;
  border: 5px solid var(--primary-border, #04a1af);
  background: #fff;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-001__container {
    margin-top: 35px;
  }
}

.mp-modulegroup004-001__container:first-child {
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-001__container:first-child {
    margin-top: 50px;
  }
}

.mp-modulegroup004-001__figure {
  text-align: center;
}

.mp-modulegroup004-001__figure-img-pc {
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-001__figure-img-pc {
    display: none;
  }
}

.mp-modulegroup004-001__figure-img-sp {
  display: none;
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-001__figure-img-sp {
    display: inline;
  }
}

.mp-modulegroup004-001__body {
  padding: 35px 4.55% 45px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-001__body {
    padding: 20px 5% 30px;
  }
}

.mp-modulegroup004-001__ttl {
  font-size: 23px;
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--primary, #04a1af);
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-001__ttl {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.mp-modulegroup004-001__ttl+.mp-modulegroup004-001__txt {
  margin-top: 1.45em;
}

.mp-modulegroup004-001__txt {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.714;
  letter-spacing: .12em;
}

.mp-modulegroup004-002 {
  overflow: hidden;
  margin: 130px auto;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-002 {
    margin: 60px auto;
  }
}

.mp-modulegroup004-002__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.mp-modulegroup004-002__headline {
  font-size: 45px;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-002__headline {
    font-size: 30px;
    font-size: 3rem;
  }
}

.mp-modulegroup004-002__headline-en {
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  letter-spacing: .06em;
}

.mp-modulegroup004-002__headline-ja {
  display: block;
  margin-top: 10px;
  font-size: 19px;
  font-size: 1.9rem;
  color: var(--primary, #04a1af);
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-002__headline-ja {
    margin-top: 5px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup004-002__headline+.mp-modulegroup004-002__container {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-002__headline+.mp-modulegroup004-002__container {
    margin-top: 35px;
  }
}

.mp-modulegroup004-002__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup004-002__container {
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}

.mp-modulegroup004-002__figure {
  width: 50%;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup004-002__figure {
    width: 100%;
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-002__figure {
    width: 100%;
    padding: 0 20px;
  }
}

.mp-modulegroup004-002__figure-img-pc {
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-002__figure-img-pc {
    display: none;
  }
}

.mp-modulegroup004-002__figure-img-sp {
  display: none;
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-002__figure-img-sp {
    display: inline;
  }
}

.mp-modulegroup004-002__body {
  width: 50%;
  margin-top: 100px;
  padding: 65px 5%;
  color: var(--sub-txt, #000);
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup004-002__body {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 40px 20px 60px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-002__body {
    padding: 20px 20px 40px;
  }
}

.mp-modulegroup004-002__body::before {
  position: absolute;
  z-index: -1;
  top: 100px;
  bottom: 0;
  left: calc(50% - 150px);
  display: block;
  width: 80vw;
  max-width: 1000px;
  background: var(--sub-bg, #f2f2f2);
  content: "";
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup004-002__body::before {
    top: -100px;
    left: 0;
    width: 100%;
    max-width: none;
  }
}

.mp-modulegroup004-002__body:only-child {
  position: relative;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup004-002__body:only-child {
    width: 80%;
    max-width: 530px;
    padding: 65px 5%;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-002__body:only-child {
    width: calc(100% - 20px * 2);
    max-width: none;
    padding: 40px 20px;
  }
}

.mp-modulegroup004-002__body:only-child::before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
}

.mp-modulegroup004-002__ttl {
  font-size: 23px;
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--primary, #04a1af);
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-002__ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

.mp-modulegroup004-002__ttl+.mp-modulegroup004-002__txt {
  margin-top: 20px;
}

.mp-modulegroup004-002__txt {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.714;
  letter-spacing: .1em;
}

.c-module-container>section.mp-modulegroup004-002:nth-of-type(odd) {
  background: transparent;
}

.mp-modulegroup004-003 {
  margin: 130px auto;
  padding: 0 20px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-003 {
    margin: 60px auto;
    padding: 0 20px;
  }
}

.mp-modulegroup004-003__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.mp-modulegroup004-003__headline {
  font-size: 45px;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-003__headline {
    font-size: 30px;
    font-size: 3rem;
  }
}

.mp-modulegroup004-003__headline-en {
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  letter-spacing: .06em;
}

.mp-modulegroup004-003__headline-ja {
  display: block;
  margin-top: 10px;
  font-size: 19px;
  font-size: 1.9rem;
  color: var(--primary, #04a1af);
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-003__headline-ja {
    margin-top: 5px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup004-003__container {
  overflow: hidden;
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-003__container {
    margin-top: 35px;
  }
}

.mp-modulegroup004-003__works {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -80px -3% 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup004-003__works {
    margin: -80px -10px 0;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-003__works {
    -ms-flex-direction: column;
    flex-direction: column;
    margin: -40px 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}

.mp-modulegroup004-003__works-item {
  width: calc(33.33% - 6%);
  margin: 80px 3% 0;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup004-003__works-item {
    width: calc(33.33% - 20px);
    margin: 80px 10px 0;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-003__works-item {
    width: 100%;
    margin: 40px 0 0;
  }
}

.mp-modulegroup004-003__works-figure {
  margin: 0 auto;
  text-align: center;
}

.mp-modulegroup004-003__works-figure-img-pc {
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-003__works-figure-img-pc {
    display: none;
  }
}

.mp-modulegroup004-003__works-figure-img-sp {
  display: none;
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-003__works-figure-img-sp {
    display: inline;
  }
}

.mp-modulegroup004-003__works-figure+.mp-modulegroup004-003__works-body {
  margin-bottom: calc(-.6em - 14px);
  -webkit-transform: translateY(calc(-.6em - 14px));
  transform: translateY(calc(-.6em - 14px));
}

@media all and (-ms-high-contrast: none) {
  .mp-modulegroup004-003__works-figure+.mp-modulegroup004-003__works-body {
    margin-bottom: 0;
  }
}

.mp-modulegroup004-003__works-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  font-size: 23px;
  font-size: 2.3rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-align: start;
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-003__works-body {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.mp-modulegroup004-003__works-ttl {
  padding: 10px 18px;
  background: var(--primary-bg, #04a1af);
  line-height: 1.5;
  color: var(--primary-txt, #fff);
  letter-spacing: .2em;
}

.mp-modulegroup004-003__works-txt {
  margin-top: 10px;
  padding: 8px 18px;
  background: var(--mg004-bg);
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
  color: var(--mg004-txt);
  text-align: left;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-003__works-txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.c-module-container>section.mp-modulegroup004-003:nth-of-type(odd) {
  background: transparent;
}

.mp-modulegroup004-004 {
  margin: 150px auto 0;
  padding: 0 20px;
  background: var(--sub-bg, #f2f2f2);
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-004 {
    margin: 80px auto 60px;
    padding: 0 20px;
  }
}

.mp-modulegroup004-004__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding-top: 1px;
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-004__inner {
    padding-bottom: 50px;
  }
}

.mp-modulegroup004-004__headline {
  margin-bottom: -.55em;
  font-size: 45px;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  -webkit-transform: translateY(-0.55em);
  transform: translateY(-0.55em);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-004__headline {
    font-size: 30px;
    font-size: 3rem;
  }
}

.mp-modulegroup004-004__headline-en {
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  letter-spacing: .06em;
}

.mp-modulegroup004-004__headline-ja {
  display: block;
  margin-top: 10px;
  font-size: 19px;
  font-size: 1.9rem;
  color: var(--primary, #04a1af);
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-004__headline-ja {
    margin-top: 5px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup004-004__comment {
  position: relative;
  margin-top: 40px;
  padding-top: 30px;
}

.mp-modulegroup004-004__comment::before,
.mp-modulegroup004-004__comment::after {
  position: absolute;
  top: 0;
  content: "";
}

.mp-modulegroup004-004__comment::before {
  left: 25px;
  width: 270px;
  height: 115px;
  border-radius: 15px;
  background: var(--primary-border, #04a1af);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-004__comment::before {
    left: 17px;
  }
}

.mp-modulegroup004-004__comment::after {
  top: 50px;
  left: 0;
  border-width: 0 26px 24px 0;
  border-style: solid;
  border-color: transparent var(--primary-border, #04a1af) transparent transparent;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-004__comment::after {
    border-width: 0 18px 20px 0;
  }
}

.mp-modulegroup004-004__comment:first-child {
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-004__comment:first-child {
    margin-top: 50px;
  }
}

.mp-modulegroup004-004__comment-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-004__comment-item {
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}

.mp-modulegroup004-004__comment-item+.mp-modulegroup004-004__comment-item {
  margin-top: 70px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-004__comment-item+.mp-modulegroup004-004__comment-item {
    margin-top: 35px;
  }
}

.mp-modulegroup004-004__comment-baloon {
  position: relative;
  z-index: 1;
  width: 50%;
  margin-left: 70px;
  padding: 50px 4.65%;
  border: 5px solid var(--primary-border, #04a1af);
  border-radius: 12px;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-004__comment-baloon {
    width: calc(100% - 35px);
    margin-left: 35px;
    padding: 20px 10px;
  }
}

.mp-modulegroup004-004__comment-baloon::before,
.mp-modulegroup004-004__comment-baloon::after {
  position: absolute;
  border-style: solid;
  content: "";
}

.mp-modulegroup004-004__comment-baloon::before {
  z-index: 2;
  right: calc(100% - 1px);
  bottom: 54px;
  border-width: 0 0 21px 46px;
  border-color: transparent transparent #fff transparent;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-004__comment-baloon::before {
    bottom: 34px;
    border-width: 0 0 13px 27px;
  }
}

.mp-modulegroup004-004__comment-baloon::after {
  z-index: 0;
  right: 100%;
  bottom: 50px;
  border-width: 0 0 30px 64px;
  border-color: transparent transparent var(--primary-border, #04a1af) transparent;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-004__comment-baloon::after {
    bottom: 30px;
    border-width: 0 0 23px 40px;
  }
}

.mp-modulegroup004-004__comment-txt {
  width: calc(50% - 70px);
  padding: 10px 0 10px 5%;
  line-height: 1.52;
  color: var(--primary, #04a1af);
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup004-004__comment-txt {
    padding-right: 10px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-004__comment-txt {
    width: 100%;
    margin-top: 30px;
    padding: 0 15px 0 10px;
  }
}

.mp-modulegroup004-004__comment-item:nth-child(2n) .mp-modulegroup004-004__comment-baloon {
  -ms-flex-order: 1;
  margin-right: 70px;
  margin-left: 0;
  -webkit-box-ordinal-group: 2;
  order: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-004__comment-item:nth-child(2n) .mp-modulegroup004-004__comment-baloon {
    -ms-flex-order: unset;
    margin-right: 35px;
    -webkit-box-ordinal-group: unset;
    order: unset;
  }
}

.mp-modulegroup004-004__comment-item:nth-child(2n) .mp-modulegroup004-004__comment-baloon::before,
.mp-modulegroup004-004__comment-item:nth-child(2n) .mp-modulegroup004-004__comment-baloon::after {
  right: auto;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.mp-modulegroup004-004__comment-item:nth-child(2n) .mp-modulegroup004-004__comment-baloon::before {
  left: calc(100% - 1px);
}

.mp-modulegroup004-004__comment-item:nth-child(2n) .mp-modulegroup004-004__comment-baloon::after {
  left: 100%;
}

.mp-modulegroup004-004__comment-item:nth-child(2n) .mp-modulegroup004-004__comment-txt {
  padding: 10px 5% 10px 0;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup004-004__comment-item:nth-child(2n) .mp-modulegroup004-004__comment-txt {
    padding-left: 10px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-004__comment-item:nth-child(2n) .mp-modulegroup004-004__comment-txt {
    padding: 0 10px;
  }
}

.mp-modulegroup004-005 {
  margin: 110px auto;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-005 {
    margin: 60px auto;
    padding: 0 20px;
  }
}

.mp-modulegroup004-005__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.mp-modulegroup004-005__headline {
  font-size: 45px;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-005__headline {
    font-size: 30px;
    font-size: 3rem;
  }
}

.mp-modulegroup004-005__headline-en {
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  letter-spacing: .06em;
}

.mp-modulegroup004-005__headline-ja {
  display: block;
  margin-top: 10px;
  font-size: 19px;
  font-size: 1.9rem;
  color: var(--primary, #04a1af);
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-005__headline-ja {
    margin-top: 5px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup004-005__headline+.mp-modulegroup004-005__container {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-005__headline+.mp-modulegroup004-005__container {
    margin-top: 35px;
  }
}

.mp-modulegroup004-005__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: -40px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-005__data {
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}

.mp-modulegroup004-005__data-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  width: 50%;
  margin: 40px 0 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-align: start;
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-005__data-item {
    width: 100%;
  }
}

.mp-modulegroup004-005__data-item:nth-child(2n+1) {
  margin-left: auto;
}

.mp-modulegroup004-005__data-item:nth-child(2n) {
  margin-right: auto;
}

.mp-modulegroup004-005__data-figure {
  margin: 0 auto;
  text-align: center;
}

.mp-modulegroup004-005__data-figure-img-pc {
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-005__data-figure-img-pc {
    display: none;
  }
}

.mp-modulegroup004-005__data-figure-img-sp {
  display: none;
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-005__data-figure-img-sp {
    display: inline;
  }
}

.mp-modulegroup004-005__data-txt {
  margin-top: 15px;
  padding-right: 10%;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: left;
  letter-spacing: .2em;
}

.c-module-container>section.mp-modulegroup004-005:nth-of-type(odd) {
  background: transparent;
}

.mp-modulegroup004-006 {
  margin: 150px auto 130px;
  padding: 0 20px;
  background: var(--sub-bg, #f2f2f2);
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-006 {
    margin: 80px auto 60px;
    padding: 0 20px;
  }
}

.mp-modulegroup004-006__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 1px;
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-006__inner {
    padding-bottom: 50px;
  }
}

.mp-modulegroup004-006__headline {
  margin-bottom: -.55em;
  font-size: 45px;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  -webkit-transform: translateY(-0.55em);
  transform: translateY(-0.55em);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-006__headline {
    font-size: 30px;
    font-size: 3rem;
  }
}

.mp-modulegroup004-006__headline-en {
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  letter-spacing: .06em;
}

.mp-modulegroup004-006__headline-ja {
  display: block;
  margin-top: 10px;
  font-size: 19px;
  font-size: 1.9rem;
  color: var(--primary, #04a1af);
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-006__headline-ja {
    margin-top: 5px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup004-006__container {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 70px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-006__container {
    padding-top: 50px;
  }
}

.mp-modulegroup004-006__container:first-child {
  padding-top: 100px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-006__container:first-child {
    padding-top: 50px;
  }
}

.mp-modulegroup004-006__graph {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -70px -25px 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup004-006__graph {
    margin: -70px -15px 0;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-006__graph {
    -ms-flex-direction: column;
    flex-direction: column;
    margin: -70px 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}

.mp-modulegroup004-006__graph-item {
  position: relative;
  width: calc(50% - 50px);
  margin: 70px 25px 0;
  padding: 65px 3.4% 50px;
  background: #fff;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup004-006__graph-item {
    width: calc(50% - 30px);
    margin: 70px 15px 0;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-006__graph-item {
    width: 100%;
    margin: 70px 0 0;
    padding: 50px 15px 30px;
  }
}

.mp-modulegroup004-006__graph-ttl {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 20px;
  background: var(--primary-bg, #04a1af);
  font-size: 23px;
  font-size: 2.3rem;
  line-height: 1.2;
  color: var(--primary-txt, #fff);
  letter-spacing: .2em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-006__graph-ttl {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.mp-modulegroup004-006__graph-figure {
  text-align: center;
}

.mp-modulegroup004-006__graph-figure-img-pc {
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-006__graph-figure-img-pc {
    display: none;
  }
}

.mp-modulegroup004-006__graph-figure-img-sp {
  display: none;
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-006__graph-figure-img-sp {
    display: inline;
  }
}

.mp-modulegroup004-006__graph-figure+.mp-modulegroup004-006__graph-txt {
  margin-top: 30px;
}

.mp-modulegroup004-006__graph-txt {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.714;
  letter-spacing: .12em;
}

.mp-modulegroup004-007 {
  margin: 130px auto;
  padding: 0 20px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-007 {
    margin: 60px auto;
    padding: 0 20px;
  }
}

.mp-modulegroup004-007__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.mp-modulegroup004-007__headline {
  font-size: 45px;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-007__headline {
    font-size: 30px;
    font-size: 3rem;
  }
}

.mp-modulegroup004-007__headline-en {
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  letter-spacing: .06em;
}

.mp-modulegroup004-007__headline-ja {
  display: block;
  margin-top: 10px;
  font-size: 19px;
  font-size: 1.9rem;
  color: var(--primary, #04a1af);
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-007__headline-ja {
    margin-top: 5px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup004-007__headline+.mp-modulegroup004-007__container {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-007__headline+.mp-modulegroup004-007__container {
    margin-top: 30px;
  }
}

.mp-modulegroup004-007__feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -45px -15px 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup004-007__feature {
    margin: -45px -8px 0;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-007__feature {
    max-width: 450px;
    margin: -30px auto 0;
  }
}

.mp-modulegroup004-007__feature-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  width: calc(33.33% - 30px);
  margin: 45px 15px 0;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-align: start;
  align-items: flex-start;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup004-007__feature-item {
    width: calc(33.33% - 16px);
    margin: 45px 8px 0;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-007__feature-item {
    width: 100%;
    margin: 30px 0 0;
  }
}

.mp-modulegroup004-007__feature-figure {
  position: relative;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.mp-modulegroup004-007__feature-figure::after {
  position: absolute;
  top: 50%;
  right: 0;
  bottom: -1px;
  left: 0;
  display: block;
  background: var(--primary-bg, #04a1af);
  content: "";
}

.mp-modulegroup004-007__feature-figure-img-pc {
  position: relative;
  z-index: 1;
  max-width: 140px;
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-007__feature-figure-img-pc {
    display: none;
  }
}

.mp-modulegroup004-007__feature-figure-img-sp {
  position: relative;
  z-index: 1;
  display: none;
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-007__feature-figure-img-sp {
    display: inline;
    width: 30%;
    max-width: 140px;
  }
}

.mp-modulegroup004-007__feature-body {
  width: 100%;
  height: 100%;
  padding: 10px 7.2% 40px;
  background: var(--primary-bg, #04a1af);
  color: var(--primary-txt, #fff);
}

.mp-modulegroup004-007__feature-body:first-child {
  padding-top: 40px;
}

.mp-modulegroup004-007__feature-ttl {
  font-size: 23px;
  font-size: 2.3rem;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-007__feature-ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.mp-modulegroup004-007__feature-txt {
  margin-top: 20px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.714;
  letter-spacing: .2em;
  opacity: .7;
}

.c-module-container>section.mp-modulegroup004-007:nth-of-type(odd) {
  background: transparent;
}

.mp-modulegroup004-008 {
  margin: 130px auto;
  padding: 0 20px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-008 {
    margin: 60px auto;
    padding: 0 20px;
  }
}

.mp-modulegroup004-008__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.mp-modulegroup004-008__headline {
  font-size: 45px;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-008__headline {
    font-size: 30px;
    font-size: 3rem;
  }
}

.mp-modulegroup004-008__headline-en {
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  letter-spacing: .06em;
}

.mp-modulegroup004-008__headline-ja {
  display: block;
  margin-top: 10px;
  font-size: 19px;
  font-size: 1.9rem;
  color: var(--primary, #04a1af);
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-008__headline-ja {
    margin-top: 5px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup004-008__headline+.mp-modulegroup004-008__container {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-008__headline+.mp-modulegroup004-008__container {
    margin-top: 20px;
  }
}

.mp-modulegroup004-008__benefits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -45px -20px 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup004-008__benefits {
    margin: -45px -10px 0;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-008__benefits {
    -ms-flex-direction: column;
    flex-direction: column;
    margin: -45px 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}

.mp-modulegroup004-008__benefits-item {
  position: relative;
  width: calc(33.33% - 40px);
  margin: 45px 20px 0;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup004-008__benefits-item {
    width: calc(33.33% - 20px);
    margin: 45px 10px 0;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-008__benefits-item {
    width: 100%;
    margin: 45px 0 0;
  }
}

.mp-modulegroup004-008__benefits-visual {
  position: relative;
  text-align: center;
}

.mp-modulegroup004-008__benefits-icon {
  position: absolute;
  top: -30px;
  right: -3%;
  width: 30%;
  max-width: 130px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-008__benefits-icon {
    right: -8px;
  }
}

.mp-modulegroup004-008__benefits-icon-img-pc {
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-008__benefits-icon-img-pc {
    display: none;
  }
}

.mp-modulegroup004-008__benefits-icon-img-sp {
  display: none;
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-008__benefits-icon-img-sp {
    display: inline;
  }
}

.mp-modulegroup004-008__benefits-icon+.mp-modulegroup004-008__benefits-figure {
  margin-top: 30px;
}

.mp-modulegroup004-008__benefits-figure-img-pc {
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-008__benefits-figure-img-pc {
    display: none;
  }
}

.mp-modulegroup004-008__benefits-figure-img-sp {
  display: none;
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-008__benefits-figure-img-sp {
    display: inline;
  }
}

.mp-modulegroup004-008__benefits-ttl {
  margin-top: 20px;
  font-size: 23px;
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--primary, #04a1af);
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-008__benefits-ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.mp-modulegroup004-008__benefits-txt {
  margin-top: 18px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.714;
  letter-spacing: .2em;
}

.c-module-container>section.mp-modulegroup004-008:nth-of-type(odd) {
  background: transparent;
}

.mp-modulegroup004-009 {
  margin: 150px auto 130px;
  padding: 0 20px;
  background: var(--sub-bg, #f2f2f2);
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-009 {
    margin: 80px auto 60px;
    padding: 0 20px;
  }
}

.mp-modulegroup004-009__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 1px;
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-009__inner {
    padding-bottom: 40px;
  }
}

.mp-modulegroup004-009__headline {
  margin-bottom: -.55em;
  font-size: 45px;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  -webkit-transform: translateY(-0.55em);
  transform: translateY(-0.55em);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-009__headline {
    font-size: 30px;
    font-size: 3rem;
  }
}

.mp-modulegroup004-009__headline-en {
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  letter-spacing: .06em;
}

.mp-modulegroup004-009__headline-ja {
  display: block;
  margin-top: 10px;
  font-size: 19px;
  font-size: 1.9rem;
  color: var(--primary, #04a1af);
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-009__headline-ja {
    margin-top: 5px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup004-009__container {
  margin-top: 70px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-009__container {
    margin-top: 40px;
  }
}

.mp-modulegroup004-009__container:first-child {
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-009__container:first-child {
    margin-top: 40px;
  }
}

.mp-modulegroup004-009__faq {
  position: relative;
  z-index: 1;
  padding: 0 70px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-009__faq {
    padding: 0;
  }
}

.mp-modulegroup004-009__faq-item {
  text-align: left;
}

.mp-modulegroup004-009__faq-item+.mp-modulegroup004-009__faq-item {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-009__faq-item+.mp-modulegroup004-009__faq-item {
    margin-top: 30px;
  }
}

.mp-modulegroup004-009__faq-q {
  position: relative;
  margin-right: 10%;
  padding: 30px 3%;
  border: 5px solid var(--primary-border, #04a1af);
  border-radius: 15px;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-009__faq-q {
    margin: 0 20px;
    padding: 20px 15px;
  }
}

.mp-modulegroup004-009__faq-q::before,
.mp-modulegroup004-009__faq-q::after {
  position: absolute;
  border-style: solid;
  content: "";
}

.mp-modulegroup004-009__faq-q::before {
  z-index: 2;
  right: calc(100% - 1px);
  bottom: 54px;
  border-width: 0 0 21px 46px;
  border-color: transparent transparent #fff transparent;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-009__faq-q::before {
    bottom: 53px;
    border-width: 0 0 10px 23px;
  }
}

.mp-modulegroup004-009__faq-q::after {
  z-index: 0;
  right: 100%;
  bottom: 50px;
  border-width: 0 0 30px 64px;
  border-color: transparent transparent var(--primary-border, #04a1af) transparent;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-009__faq-q::after {
    border-width: 0 0 18px 34px;
  }
}

.mp-modulegroup004-009__faq-q-txt {
  position: relative;
  margin-left: 70px;
  padding-left: 2%;
  border-left: 1px solid var(--primary-border, #04a1af);
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup004-009__faq-q-txt {
    margin-left: 50px;
    padding-left: 15px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-009__faq-q-txt {
    margin-left: 40px;
    padding-left: 10px;
  }
}

.mp-modulegroup004-009__faq-q-txt::before {
  position: absolute;
  left: -70px;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 45px;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--primary, #04a1af);
  content: "Q";
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup004-009__faq-q-txt::before {
    left: -50px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-009__faq-q-txt::before {
    left: -40px;
    font-size: 28px;
    font-size: 2.8rem;
  }
}

.mp-modulegroup004-009__faq-a {
  position: relative;
  margin: 30px 0 0 10%;
  padding: 30px 3%;
  border-radius: 15px;
  background: var(--primary-bg, #04a1af);
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-009__faq-a {
    margin: 15px 20px 0;
    padding: 20px;
  }
}

.mp-modulegroup004-009__faq-a::after {
  position: absolute;
  z-index: 0;
  top: 50px;
  left: calc(100% - 3px);
  border-width: 30px 0 0 64px;
  border-style: solid;
  border-color: transparent transparent transparent var(--primary-bg, #04a1af);
  content: "";
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-009__faq-a::after {
    border-width: 18px 0 0 34px;
  }
}

.mp-modulegroup004-009__faq-a-txt {
  position: relative;
  margin-left: 70px;
  padding-left: 2%;
  border-left: 1px solid #fff;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup004-009__faq-a-txt {
    margin-left: 50px;
    padding-left: 15px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-009__faq-a-txt {
    margin-left: 40px;
    padding-left: 10px;
  }
}

.mp-modulegroup004-009__faq-a-txt::before {
  position: absolute;
  left: -70px;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 45px;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  content: "A";
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup004-009__faq-a-txt::before {
    left: -50px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-009__faq-a-txt::before {
    left: -40px;
    font-size: 28px;
    font-size: 2.8rem;
  }
}

.mp-modulegroup004-010 {
  margin: 110px auto;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-010 {
    margin: 60px auto;
  }
}

.mp-modulegroup004-010__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.mp-modulegroup004-010__headline {
  font-size: 45px;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-010__headline {
    font-size: 30px;
    font-size: 3rem;
  }
}

.mp-modulegroup004-010__headline-en {
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  letter-spacing: .06em;
}

.mp-modulegroup004-010__headline-ja {
  display: block;
  margin-top: 10px;
  font-size: 19px;
  font-size: 1.9rem;
  color: var(--primary, #04a1af);
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-010__headline-ja {
    margin-top: 5px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup004-010__headline+.mp-modulegroup004-010__container {
  margin-top: 70px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-010__headline+.mp-modulegroup004-010__container {
    margin-top: 40px;
  }
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup004-010__flow {
    padding-left: 10px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-010__flow {
    padding-left: 5px;
  }
}

.mp-modulegroup004-010__flow-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 35px;
  text-align: left;
}

.mp-modulegroup004-010__flow-item:last-child .mp-modulegroup004-010__flow-step::after {
  display: none;
}

.mp-modulegroup004-010__flow-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  width: 120px;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  line-height: 1;
  letter-spacing: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-010__flow-step {
    width: 60px;
  }
}

.mp-modulegroup004-010__flow-step::after {
  width: 2px;
  margin-top: 25px;
  background: var(--primary, #04a1af);
  content: "";
  -webkit-box-flex: 1;
  -ms-flex: 1 1;
  flex: 1 1;
}

.mp-modulegroup004-010__flow-step-inner {
  position: relative;
  z-index: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  align-items: center;
}

.mp-modulegroup004-010__flow-step-label {
  font-size: 30px;
  font-size: 3rem;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-010__flow-step-label {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.mp-modulegroup004-010__flow-step-num {
  font-size: 70px;
  font-size: 7rem;
  font-weight: 900;
  letter-spacing: .08em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-010__flow-step-num {
    font-size: 35px;
    font-size: 3.5rem;
  }
}

.mp-modulegroup004-010__flow-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% - 120px);
  padding: 0 0 70px 3%;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup004-010__flow-content {
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-010__flow-content {
    width: calc(100% - 60px);
    padding-bottom: 20px;
  }
}

.mp-modulegroup004-010__flow-figure {
  max-width: 650px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1;
  flex: 1 1;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup004-010__flow-figure {
    max-width: none;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
}

.mp-modulegroup004-010__flow-figure-img-pc {
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-010__flow-figure-img-pc {
    display: none;
  }
}

.mp-modulegroup004-010__flow-figure-img-sp {
  display: none;
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-010__flow-figure-img-sp {
    display: inline;
  }
}

.mp-modulegroup004-010__flow-card {
  position: relative;
  min-height: 335px;
  margin-top: 80px;
  padding: 65px 50px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1;
  flex: 1 1;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup004-010__flow-card {
    min-height: auto;
    margin-top: 0;
    padding: 40px 20px 50px 0;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-010__flow-card {
    margin-top: 0;
    padding: 30px 15px 30px 0;
  }
}

.mp-modulegroup004-010__flow-card::after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: -120px;
  background: var(--sub-bg, #f2f2f2);
  content: "";
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup004-010__flow-card::after {
    top: -100px;
    left: -50vw;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-010__flow-card::after {
    top: -20px;
    bottom: 0;
  }
}

.mp-modulegroup004-010__flow-card:first-child {
  width: 100%;
  min-height: auto;
  margin-top: 0;
}

.mp-modulegroup004-010__flow-card:first-child::after {
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup004-010__flow-card:first-child::after {
    top: 0;
    left: -20px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-010__flow-card:first-child::after {
    top: 0;
    left: -10px;
  }
}

.mp-modulegroup004-010__flow-ttl {
  font-size: 23px;
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--primary, #04a1af);
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup004-010__flow-ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.mp-modulegroup004-010__flow-txt {
  margin-top: 18px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.714;
  letter-spacing: .2em;
}

.c-module-container>section.mp-modulegroup004-010:nth-of-type(odd) {
  background: transparent;
}

.mp-modulegroup005-001 {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding: 140px 20px;
  color: var(--sub-txt, #000);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-001 {
    padding: 70px 20px;
  }
}

.mp-modulegroup005-001__headline {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 45px;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-001__headline {
    font-size: 30px;
    font-size: 3rem;
  }
}

.mp-modulegroup005-001__headline-sub {
  display: block;
  margin-top: 10px;
  font-family: var(--font, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary-bg, #04a1af);
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-001__headline-sub {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup005-001__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary, #04a1af);
}

.mp-modulegroup005-001__bg-img-pc {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-001__bg-img-pc {
    display: none;
  }
}

.mp-modulegroup005-001__bg-img-sp {
  display: none;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup005-001__bg-img-sp {
    display: block;
  }
}

.mp-modulegroup005-001__container {
  position: relative;
  max-width: 900px;
  margin: 66px auto 0;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-001__container {
    margin: 30px auto 0;
  }
}

.mp-modulegroup005-001__ttl {
  font-size: 23px;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--primary-bg, #04a1af);
  letter-spacing: 7px;
  letter-spacing: .7rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-001__ttl {
    font-size: 20px;
    font-size: 2rem;
    text-align: left;
  }
}

.mp-modulegroup005-001__ttl+.mp-modulegroup005-001__txt {
  margin-top: 20px;
}

.mp-modulegroup005-001__txt {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.4;
  letter-spacing: 3px;
  letter-spacing: .3rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-001__txt {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 2.1;
    text-align: left;
  }
}

.mp-modulegroup005-002 {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding: 140px 20px 150px;
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-002 {
    padding: 70px 20px 75px;
  }
}

.mp-modulegroup005-002__headline {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 45px;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-002__headline {
    font-size: 30px;
    font-size: 3rem;
  }
}

.mp-modulegroup005-002__headline-sub {
  display: block;
  margin-top: 10px;
  font-family: var(--font, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary-bg, #04a1af);
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-002__headline-sub {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup005-002__container {
  position: relative;
  max-width: 1110px;
  margin: 75px auto 0;
  padding: 0 52px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-002__container {
    margin: 40px auto 0;
    padding: 0;
  }
}

.mp-modulegroup005-002__container-inner {
  position: relative;
  padding: 50px 95px;
  background-color: var(--sub-bg, #f2f2f2);
  text-align: left;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-002__container-inner {
    margin-top: 50px;
    padding: 45px 30px 30px;
  }
}

.mp-modulegroup005-002__svg-arrow {
  margin-bottom: 42px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-002__svg-arrow {
    margin-bottom: 0;
  }
}

.mp-modulegroup005-002__svg-arrow-path {
  fill: var(--primary-bg, #04a1af);
}

.mp-modulegroup005-002__ttl {
  font-size: 23px;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--primary-bg, #04a1af);
  letter-spacing: 5px;
  letter-spacing: .5rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-002__ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

.mp-modulegroup005-002__ttl+.mp-modulegroup005-002__txt {
  margin-top: 16px;
}

.mp-modulegroup005-002__txt {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.4;
  letter-spacing: 3px;
  letter-spacing: .3rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-002__txt {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 2.1;
  }
}

.mp-modulegroup005-002__step {
  position: absolute;
  top: 20px;
  left: -52px;
  display: inline-block;
  width: 108px;
  max-width: 108px;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-weight: 500;
  color: var(--primary-bg, #04a1af);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-002__step {
    top: -50px;
    left: 0;
    width: 65px;
    max-width: 65px;
  }
}

.mp-modulegroup005-002__step-before {
  display: block;
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1;
  text-align: center;
  letter-spacing: 4px;
  letter-spacing: .4rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-002__step-before {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.mp-modulegroup005-002__step-num {
  display: block;
  font-size: 117px;
  font-size: 11.7rem;
  line-height: .85;
  text-align: left;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-002__step-num {
    font-size: 70px;
    font-size: 7rem;
  }
}

.c-module-container>section.mp-modulegroup005-002:nth-of-type(odd) {
  background-color: transparent;
}

.mp-modulegroup005-003 {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding: 140px 20px;
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-003 {
    padding: 70px 20px;
  }
}

.mp-modulegroup005-003__headline {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 45px;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-003__headline {
    font-size: 30px;
    font-size: 3rem;
  }
}

.mp-modulegroup005-003__headline-sub {
  display: block;
  margin-top: 10px;
  font-family: var(--font, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary-bg, #04a1af);
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-003__headline-sub {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup005-003__container {
  position: relative;
  max-width: 1375px;
  margin: 75px auto 0;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-003__container {
    margin: 40px auto 0;
  }
}

.mp-modulegroup005-003__container-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  margin-left: -42px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-003__container-inner {
    display: block;
    margin-left: 0;
  }
}

.mp-modulegroup005-003__item {
  width: 50%;
  max-width: 50%;
  padding-left: 42px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-003__item {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
}

@media screen and (min-width: 767px) {
  .mp-modulegroup005-003__item:nth-child(n+3) {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-003__item+.mp-modulegroup005-003__item {
    margin-top: 40px;
  }
}

.mp-modulegroup005-003__header {
  position: relative;
}

.mp-modulegroup005-003__header+.mp-modulegroup005-003__txt {
  margin-top: 32px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-003__header+.mp-modulegroup005-003__txt {
    margin-top: 20px;
  }
}

@media screen and (min-width: 767px) {
  .mp-modulegroup005-003__figure-img-pc {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-003__figure-img-pc {
    display: none;
  }
}

@media screen and (min-width: 767px) {
  .mp-modulegroup005-003__figure-img-sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-003__figure-img-sp {
    display: block;
  }
}

.mp-modulegroup005-003__ttl {
  position: absolute;
  bottom: -20px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-003__ttl {
    bottom: -16px;
  }
}

.mp-modulegroup005-003__ttl-inner {
  display: inline;
  background-color: var(--primary-bg, #04a1af);
  font-size: 23px;
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1.7;
  color: var(--primary-txt, #fff);
  letter-spacing: 5px;
  letter-spacing: .5rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-003__ttl-inner {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.mp-modulegroup005-003__txt {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.4;
  letter-spacing: 3px;
  letter-spacing: .3rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-003__txt {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 2.1;
  }
}

.mp-modulegroup005-004 {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding: 140px 20px;
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-004 {
    padding: 70px 20px;
  }
}

.mp-modulegroup005-004__headline {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 45px;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-004__headline {
    font-size: 30px;
    font-size: 3rem;
  }
}

.mp-modulegroup005-004__headline-sub {
  display: block;
  margin-top: 10px;
  font-family: var(--font, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary-bg, #04a1af);
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-004__headline-sub {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup005-004__container {
  position: relative;
  max-width: 1375px;
  margin: 75px auto 0;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-004__container {
    margin: 40px auto 0;
  }
}

.mp-modulegroup005-004__container-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  margin-left: -42px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-004__container-inner {
    display: block;
    margin-left: 0;
  }
}

.mp-modulegroup005-004__item {
  width: 33.33%;
  max-width: 33.33%;
  padding-left: 42px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-004__item {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
}

@media screen and (min-width: 767px) {
  .mp-modulegroup005-004__item:nth-child(n+4) {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-004__item+.mp-modulegroup005-004__item {
    margin-top: 40px;
  }
}

@media screen and (min-width: 767px) {
  .mp-modulegroup005-004__figure-img-pc {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-004__figure-img-pc {
    display: none;
  }
}

@media screen and (min-width: 767px) {
  .mp-modulegroup005-004__figure-img-sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-004__figure-img-sp {
    display: block;
  }
}

.mp-modulegroup005-004__ttl {
  margin-top: 22px;
  font-size: 23px;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--primary-bg, #04a1af);
  letter-spacing: 5px;
  letter-spacing: .5rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-004__ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

.mp-modulegroup005-004__txt {
  margin-top: 12px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.4;
  letter-spacing: 3px;
  letter-spacing: .3rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-004__txt {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 2.1;
  }
}

.c-module-container>section.mp-modulegroup005-004:nth-of-type(odd) {
  background-color: transparent;
}

.mp-modulegroup005-005 {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding: 140px 20px 150px;
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-005 {
    padding: 70px 20px 75px;
  }
}

.mp-modulegroup005-005__headline {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 45px;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-005__headline {
    font-size: 30px;
    font-size: 3rem;
  }
}

.mp-modulegroup005-005__headline-sub {
  display: block;
  margin-top: 10px;
  font-family: var(--font, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary-bg, #04a1af);
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-005__headline-sub {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup005-005__container {
  max-width: 1375px;
  margin: 75px auto 0;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-005__container {
    max-width: 314px;
    margin: 40px auto 0;
  }
}

.mp-modulegroup005-005__container-inner {
  position: relative;
}

.mp-modulegroup005-005__figure-img-pc {
  margin: auto;
}

@media screen and (min-width: 767px) {
  .mp-modulegroup005-005__figure-img-pc {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-005__figure-img-pc {
    display: none;
  }
}

.mp-modulegroup005-005__figure-img-sp {
  margin: auto;
}

@media screen and (min-width: 767px) {
  .mp-modulegroup005-005__figure-img-sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-005__figure-img-sp {
    display: block;
  }
}

.mp-modulegroup005-006 {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding: 140px 20px 150px;
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-006 {
    padding: 70px 20px 75px;
  }
}

.mp-modulegroup005-006__headline {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 45px;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-006__headline {
    font-size: 30px;
    font-size: 3rem;
  }
}

.mp-modulegroup005-006__headline-sub {
  display: block;
  margin-top: 10px;
  font-family: var(--font, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary-bg, #04a1af);
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-006__headline-sub {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup005-006__container {
  max-width: 1375px;
  margin: 75px auto 0;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-006__container {
    margin: 40px auto 0;
  }
}

.mp-modulegroup005-006__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  justify-content: center;
}

.mp-modulegroup005-006__btn-item {
  width: 25%;
  max-width: 25%;
  text-align: left;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-006__btn-item {
    width: 50%;
    max-width: 50%;
  }
}

.mp-modulegroup005-006__btn-item:hover {
  opacity: .7;
}

@media screen and (min-width: 767px) {
  .mp-modulegroup005-006__btn-item:nth-child(n+5) {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-006__btn-item:nth-child(n+3) {
    margin-top: 30px;
  }
}

.mp-modulegroup005-006__btn-img {
  position: relative;
}

@media screen and (min-width: 767px) {
  .mp-modulegroup005-006__btn-img-pc {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-006__btn-img-pc {
    display: none;
  }
}

@media screen and (min-width: 767px) {
  .mp-modulegroup005-006__btn-img-sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-006__btn-img-sp {
    display: block;
  }
}

.mp-modulegroup005-006__btn-img::after {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border: 10px solid var(--primary-bg, #04a1af);
  pointer-events: none;
  content: "";
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-006__btn-img::after {
    border-width: 5px;
  }
}

.is-active .mp-modulegroup005-006__btn-img::after {
  opacity: .8;
}

.mp-modulegroup005-006__btn-position {
  margin-top: 22px;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 3px;
  letter-spacing: .3rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-006__btn-position {
    margin-top: 12px;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.mp-modulegroup005-006__btn-name {
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.3;
  color: var(--primary-bg, #04a1af);
  letter-spacing: 5px;
  letter-spacing: .5rem;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup005-006__btn-name {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-006__btn-name {
    font-size: 20px;
    font-size: 2rem;
  }
}

.mp-modulegroup005-006__btn-name-en {
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 3px;
  letter-spacing: .3rem;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup005-006__btn-name-en {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.mp-modulegroup005-006__interview {
  margin-top: 90px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-006__interview {
    margin-top: 45px;
  }
}

.mp-modulegroup005-006__interview-inner {
  position: relative;
}

.mp-modulegroup005-006__interview-item {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}

.mp-modulegroup005-006__interview-item.is-active {
  position: relative;
  z-index: 1;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.mp-modulegroup005-006__interview-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  text-align: left;
  -webkit-box-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-006__interview-section {
    display: block;
  }
}

.mp-modulegroup005-006__interview-section:nth-child(odd) .mp-modulegroup005-006__interview-img+.mp-modulegroup005-006__interview-cnt {
  padding-left: 60px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-006__interview-section:nth-child(odd) .mp-modulegroup005-006__interview-img+.mp-modulegroup005-006__interview-cnt {
    padding-left: 0;
  }
}

.mp-modulegroup005-006__interview-section:nth-child(even) {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
}

.mp-modulegroup005-006__interview-section:nth-child(even) .mp-modulegroup005-006__interview-img+.mp-modulegroup005-006__interview-cnt {
  padding-right: 60px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-006__interview-section:nth-child(even) .mp-modulegroup005-006__interview-img+.mp-modulegroup005-006__interview-cnt {
    padding-right: 0;
  }
}

.mp-modulegroup005-006__interview-section+.mp-modulegroup005-006__interview-section {
  margin-top: 75px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-006__interview-section+.mp-modulegroup005-006__interview-section {
    margin-top: 40px;
  }
}

.mp-modulegroup005-006__interview-img {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-006__interview-img {
    width: 100%;
  }
}

@media screen and (min-width: 767px) {
  .mp-modulegroup005-006__interview-img-pc {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-006__interview-img-pc {
    display: none;
  }
}

@media screen and (min-width: 767px) {
  .mp-modulegroup005-006__interview-img-sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-006__interview-img-sp {
    display: block;
  }
}

.mp-modulegroup005-006__interview-img+.mp-modulegroup005-006__interview-cnt {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-006__interview-img+.mp-modulegroup005-006__interview-cnt {
    width: 100%;
  }
}

.mp-modulegroup005-006__interview-cnt {
  width: 100%;
  padding: 50px 0;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-006__interview-cnt {
    padding: 20px 0 0;
  }
}

.mp-modulegroup005-006__interview-ttl {
  display: inline;
  font-size: 23px;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--primary-bg, #04a1af);
  letter-spacing: 5px;
  letter-spacing: .5rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-006__interview-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

.mp-modulegroup005-006__interview-ttl+.mp-modulegroup005-006__interview-txt {
  margin-top: 12px;
}

.mp-modulegroup005-006__interview-txt {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.4;
  letter-spacing: 3px;
  letter-spacing: .3rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-006__interview-txt {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 2.1;
  }
}

.c-module-container>section.mp-modulegroup005-006:nth-of-type(odd) {
  background-color: transparent;
}

.mp-modulegroup005-007 {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding: 140px 20px 150px;
  color: var(--sub-txt, #000);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-007 {
    padding: 70px 20px 75px;
  }
}

.mp-modulegroup005-007__headline {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 45px;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-007__headline {
    font-size: 30px;
    font-size: 3rem;
  }
}

.mp-modulegroup005-007__headline-sub {
  display: block;
  margin-top: 10px;
  font-family: var(--font, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary-bg, #04a1af);
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-007__headline-sub {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup005-007__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary, #04a1af);
}

.mp-modulegroup005-007__bg-img-pc {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-007__bg-img-pc {
    display: none;
  }
}

.mp-modulegroup005-007__bg-img-sp {
  display: none;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup005-007__bg-img-sp {
    display: block;
  }
}

.mp-modulegroup005-007__container {
  max-width: 1000px;
  margin: 75px auto 0;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-007__container {
    margin: 60px auto 0;
  }
}

.mp-modulegroup005-007__container-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 56px 50px;
  border: 10px solid var(--primary-border, #04a1af);
  text-align: left;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-007__container-inner {
    display: block;
    padding: 45px 20px 20px;
    border-width: 5px;
  }
}

.mp-modulegroup005-007__container-inner+.mp-modulegroup005-007__container-inner {
  margin-top: 75px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-007__container-inner+.mp-modulegroup005-007__container-inner {
    margin-top: 60px;
  }
}

.mp-modulegroup005-007__figure-graph {
  max-width: 356px;
  margin: auto;
}

@media screen and (min-width: 767px) {
  .mp-modulegroup005-007__figure-graph-img-pc {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-007__figure-graph-img-pc {
    display: none;
  }
}

@media screen and (min-width: 767px) {
  .mp-modulegroup005-007__figure-graph-img-sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-007__figure-graph-img-sp {
    display: block;
  }
}

.mp-modulegroup005-007__figure-caption {
  max-width: 350px;
  height: auto;
  margin: 0 0 25px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-007__figure-caption {
    margin: 0 auto 25px;
  }
}

@media screen and (min-width: 767px) {
  .mp-modulegroup005-007__figure-caption-img-pc {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-007__figure-caption-img-pc {
    display: none;
  }
}

@media screen and (min-width: 767px) {
  .mp-modulegroup005-007__figure-caption-img-sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-007__figure-caption-img-sp {
    display: block;
  }
}

@media screen and (min-width: 767px) {
  .mp-modulegroup005-007__cnt {
    margin-left: 46px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-007__cnt {
    margin-top: 20px;
  }
}

.mp-modulegroup005-007__ttl {
  position: absolute;
  top: -25px;
  left: 0;
  display: inline-block;
  min-width: 214px;
  max-width: calc(100% - 240px);
  min-height: 40px;
  margin: 0 120px;
  padding: 6px 20px;
  background: var(--primary-bg, #04a1af);
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.6;
  color: var(--primary-txt, #fff);
  text-align: center;
  letter-spacing: 3px;
  letter-spacing: .3rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-007__ttl {
    top: -20px;
    min-width: calc(100% - 60px);
    max-width: calc(100% - 60px);
    min-height: 35px;
    margin: 0 30px;
    padding: 5px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.mp-modulegroup005-007__txt {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.4;
  letter-spacing: 3px;
  letter-spacing: .3rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-007__txt {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 2.1;
  }
}

.mp-modulegroup005-008 {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding: 140px 20px 150px;
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-008 {
    padding: 70px 20px 75px;
  }
}

.mp-modulegroup005-008__headline {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 45px;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-008__headline {
    font-size: 30px;
    font-size: 3rem;
  }
}

.mp-modulegroup005-008__headline-sub {
  display: block;
  margin-top: 10px;
  font-family: var(--font, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary-bg, #04a1af);
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-008__headline-sub {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup005-008__container {
  position: relative;
  max-width: 1000px;
  margin: 72px auto 0;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-008__container {
    margin: 40px auto 0;
  }
}

.mp-modulegroup005-008__container-inner+.mp-modulegroup005-008__container-inner {
  margin-top: 50px;
}

.mp-modulegroup005-008__container-inner:nth-child(odd) .mp-modulegroup005-008__que {
  border: 10px solid var(--primary-bg, #04a1af);
  background-color: var(--primary-bg, #04a1af);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-008__container-inner:nth-child(odd) .mp-modulegroup005-008__que {
    border-width: 5px;
  }
}

.mp-modulegroup005-008__container-inner:nth-child(odd) .mp-modulegroup005-008__ans {
  border: 10px solid var(--primary-bg, #04a1af);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-008__container-inner:nth-child(odd) .mp-modulegroup005-008__ans {
    border-width: 5px;
  }
}

.mp-modulegroup005-008__container-inner:nth-child(even) .mp-modulegroup005-008__que {
  border: 10px solid var(--primary, #04a1af);
  background-color: var(--primary, #04a1af);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-008__container-inner:nth-child(even) .mp-modulegroup005-008__que {
    border-width: 5px;
  }
}

.mp-modulegroup005-008__container-inner:nth-child(even) .mp-modulegroup005-008__ans {
  border: 10px solid var(--primary, #04a1af);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-008__container-inner:nth-child(even) .mp-modulegroup005-008__ans {
    border-width: 5px;
  }
}

.mp-modulegroup005-008__cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-008__cnt {
    display: block;
  }
}

.mp-modulegroup005-008__que {
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  width: 50%;
  min-height: 200px;
  margin-bottom: 53px;
  padding: 28px 36px 28px 20px;
  -webkit-box-align: start;
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-008__que {
    width: calc(100% - 20px);
    min-height: 140px;
    margin: 0 20px -20px 0;
    padding: 20px;
  }
}

.mp-modulegroup005-008__que-before {
  padding-right: 30px;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 130px;
  font-size: 13rem;
  font-weight: 500;
  line-height: .8;
  color: var(--sub-txt, #000);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-008__que-before {
    padding-right: 20px;
    font-size: 60px;
    font-size: 6rem;
  }
}

.mp-modulegroup005-008__que-txt {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.4;
  color: var(--sub-txt, #000);
  letter-spacing: 3px;
  letter-spacing: .3rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-008__que-txt {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 2.1;
  }
}

.mp-modulegroup005-008__ans {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  width: calc(50% + 42px);
  min-height: 250px;
  margin-top: 53px;
  margin-left: -42px;
  padding: 28px 36px 28px 66px;
  -webkit-box-align: start;
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-008__ans {
    width: calc(100% - 20px);
    min-height: 140px;
    margin: 0 0 0 20px;
    padding: 35px 20px 20px;
  }
}

.mp-modulegroup005-008__ans-before {
  padding-right: 30px;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 130px;
  font-size: 13rem;
  font-weight: 500;
  line-height: .8;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-008__ans-before {
    padding-right: 20px;
    font-size: 60px;
    font-size: 6rem;
  }
}

.mp-modulegroup005-008__ans-txt {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.4;
  letter-spacing: 3px;
  letter-spacing: .3rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-008__ans-txt {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 2.1;
  }
}

.c-module-container>section.mp-modulegroup005-008:nth-of-type(odd) {
  background-color: transparent;
}

.mp-modulegroup005-009 {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding: 140px 20px 150px;
  color: var(--sub-txt, #000);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-009 {
    padding: 70px 20px 75px;
  }
}

.mp-modulegroup005-009__headline {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 45px;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-009__headline {
    font-size: 30px;
    font-size: 3rem;
  }
}

.mp-modulegroup005-009__headline-sub {
  display: block;
  margin-top: 10px;
  font-family: var(--font, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary-bg, #04a1af);
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-009__headline-sub {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup005-009__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary, #04a1af);
}

.mp-modulegroup005-009__bg-img-pc {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-009__bg-img-pc {
    display: none;
  }
}

.mp-modulegroup005-009__bg-img-sp {
  display: none;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup005-009__bg-img-sp {
    display: block;
  }
}

.mp-modulegroup005-009__container {
  position: relative;
  max-width: 1000px;
  margin: 72px auto 0;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-009__container {
    margin: 40px auto 0;
  }
}

.mp-modulegroup005-009__container-inner {
  padding: 64px 90px;
  border: 10px solid var(--primary-border, #04a1af);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-009__container-inner {
    padding: 25px 30px;
    border-width: 5px;
  }
}

.mp-modulegroup005-009__txt {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.4;
  letter-spacing: 3px;
  letter-spacing: .3rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-009__txt {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 2.1;
    text-align: left;
  }
}

.mp-modulegroup005-010 {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding: 140px 0;
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-010 {
    padding: 70px 0;
  }
}

.mp-modulegroup005-010__headline {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 45px;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-010__headline {
    font-size: 30px;
    font-size: 3rem;
  }
}

.mp-modulegroup005-010__headline-sub {
  display: block;
  margin-top: 10px;
  font-family: var(--font, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary-bg, #04a1af);
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-010__headline-sub {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup005-010__container {
  margin: 75px 0 0;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-010__container {
    margin: 40px 0 0;
  }
}

.mp-modulegroup005-010__item {
  height: auto;
  text-align: left;
}

.mp-modulegroup005-010__item:only-child {
  max-width: 800px;
  margin: 0 auto;
}

.mp-modulegroup005-010__figure-img-pc {
  vertical-align: bottom;
}

@media screen and (min-width: 767px) {
  .mp-modulegroup005-010__figure-img-pc {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-010__figure-img-pc {
    display: none;
  }
}

.mp-modulegroup005-010__figure-img-sp {
  vertical-align: bottom;
}

@media screen and (min-width: 767px) {
  .mp-modulegroup005-010__figure-img-sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-010__figure-img-sp {
    display: block;
  }
}

.mp-modulegroup005-010__ttl {
  margin-top: 20px;
  font-size: 23px;
  font-size: 2.3rem;
  line-height: 1.7;
  color: var(--primary-bg, #04a1af);
  letter-spacing: 5px;
  letter-spacing: .5rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-010__ttl {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.mp-modulegroup005-010__ttl+.mp-modulegroup005-010__txt {
  position: relative;
  margin: 16px 0 0;
  padding: 21px 0 0;
}

.mp-modulegroup005-010__ttl+.mp-modulegroup005-010__txt::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 5px;
  background-color: var(--primary-bg, #04a1af);
  content: "";
}

.mp-modulegroup005-010__txt {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.4;
  letter-spacing: 3px;
  letter-spacing: .3rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-010__txt {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 2.1;
  }
}

.mp-modulegroup005-010 .swiper-button-prev,
.mp-modulegroup005-010 .swiper-button-next {
  top: 16.3vw;
  width: 80px;
  height: 80px;
  margin-top: 0;
  background-color: var(--primary-bg, #04a1af);
  background-size: 10px 29px;
}

@media screen and (max-width: 1024px) {

  .mp-modulegroup005-010 .swiper-button-prev,
  .mp-modulegroup005-010 .swiper-button-next {
    top: 22.8vw;
  }
}

@media screen and (max-width: 767px) {

  .mp-modulegroup005-010 .swiper-button-prev,
  .mp-modulegroup005-010 .swiper-button-next {
    top: 26.6vw;
    width: 28px;
    height: 28px;
    background-size: 5px 10px;
  }
}

.mp-modulegroup005-010 .swiper-button-prev {
  left: 22.5%;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMSIgaGVpZ2h0PSI1OCI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBmaWxsPSIjRkZGIiBkPSJNMjAgMSAwIDI5bDIwIDI4VjFaIi8+PC9zdmc+");
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup005-010 .swiper-button-prev {
    left: calc(15.45vw - 40px);
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-010 .swiper-button-prev {
    left: calc(8.4% - 14px);
  }
}

.mp-modulegroup005-010 .swiper-button-next {
  right: 22.5%;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMSIgaGVpZ2h0PSI1OCI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBmaWxsPSIjRkZGIiBkPSJtMSAxIDIwIDI4TDEgNTdWMVoiLz48L3N2Zz4=");
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup005-010 .swiper-button-next {
    right: calc(15.45vw - 40px);
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-010 .swiper-button-next {
    right: calc(8.4% - 14px);
  }
}

.c-module-container>section.mp-modulegroup005-010:nth-of-type(odd) {
  background-color: transparent;
}

.mp-modulegroup005-011 {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding: 140px 20px 150px;
  background-color: var(--primary, #04a1af);
  color: var(--sub-txt, #000);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-011 {
    padding: 70px 20px 75px;
  }
}

.mp-modulegroup005-011__headline {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 45px;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-011__headline {
    font-size: 30px;
    font-size: 3rem;
  }
}

.mp-modulegroup005-011__headline-sub {
  display: block;
  margin-top: 10px;
  font-family: var(--font, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary-bg, #04a1af);
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-011__headline-sub {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup005-011__container {
  max-width: 1000px;
  margin: 75px auto 0;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-011__container {
    max-width: 290px;
    margin: 40px auto 0;
  }
}

.mp-modulegroup005-011__figure-img-pc {
  vertical-align: bottom;
}

@media screen and (min-width: 767px) {
  .mp-modulegroup005-011__figure-img-pc {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-011__figure-img-pc {
    display: none;
  }
}

.mp-modulegroup005-011__figure-img-sp {
  vertical-align: bottom;
}

@media screen and (min-width: 767px) {
  .mp-modulegroup005-011__figure-img-sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-011__figure-img-sp {
    display: block;
  }
}

.mp-modulegroup005-012 {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding: 140px 20px 150px;
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-012 {
    padding: 70px 20px 75px;
  }
}

.mp-modulegroup005-012__headline {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 45px;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-012__headline {
    font-size: 30px;
    font-size: 3rem;
  }
}

.mp-modulegroup005-012__headline-sub {
  display: block;
  margin-top: 10px;
  font-family: var(--font, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary-bg, #04a1af);
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-012__headline-sub {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup005-012__container {
  max-width: 1375px;
  margin: 75px auto 0;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-012__container {
    margin: 40px auto 0;
  }
}

.mp-modulegroup005-012__container-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 50px 3.63% 40px;
  background-color: var(--sub-bg, #f2f2f2);
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup005-012__container-inner {
    padding: 50px 50px 40px;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-012__container-inner {
    padding: 30px 30px 25px;
  }
}

.mp-modulegroup005-012__item {
  width: 39.22%;
  max-width: 500px;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup005-012__item {
    width: 100%;
    max-width: none;
  }
}

.mp-modulegroup005-012__cnt {
  width: 60.78%;
  max-width: 775px;
  padding: 25px 0 0 4.7%;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup005-012__cnt {
    width: 100%;
    max-width: none;
    padding: 40px 0 0 0;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-012__cnt {
    padding: 30px 0 0 0;
  }
}

.mp-modulegroup005-012__cnt:only-child {
  width: 100%;
  max-width: none;
  padding: 0;
}

.mp-modulegroup005-012__figure-img-pc {
  vertical-align: bottom;
}

@media screen and (min-width: 767px) {
  .mp-modulegroup005-012__figure-img-pc {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-012__figure-img-pc {
    display: none;
  }
}

.mp-modulegroup005-012__figure-img-sp {
  vertical-align: bottom;
}

@media screen and (min-width: 767px) {
  .mp-modulegroup005-012__figure-img-sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-012__figure-img-sp {
    display: block;
  }
}

.mp-modulegroup005-012__ttl {
  font-size: 23px;
  font-size: 2.3rem;
  line-height: 1.7;
  color: var(--primary-bg, #04a1af);
  letter-spacing: 5px;
  letter-spacing: .5rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-012__ttl {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.mp-modulegroup005-012__ttl+.mp-modulegroup005-012__txt {
  margin: 16px 0 0;
}

.mp-modulegroup005-012__txt {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.4;
  letter-spacing: 3px;
  letter-spacing: .3rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-012__txt {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 2.1;
  }
}

.mp-modulegroup005-012 .swiper-pagination-bullets {
  margin-top: 15px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-012 .swiper-pagination-bullets {
    margin-top: 5px;
  }
}

.mp-modulegroup005-012 .swiper-pagination-bullet {
  width: 75px;
  height: 8px;
  margin: 0 7px;
  border-radius: 0;
  background: var(--primary, #04a1af);
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-012 .swiper-pagination-bullet {
    width: 37px;
    height: 4px;
    margin: 0 6px;
  }
}

.mp-modulegroup005-012 .swiper-pagination-bullet-active {
  background: var(--primary-bg, #04a1af);
}

.c-module-container>section.mp-modulegroup005-012:nth-of-type(odd) {
  background-color: transparent;
}

.mp-modulegroup005-013 {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding: 140px 20px;
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-013 {
    padding: 70px 20px;
  }
}

.mp-modulegroup005-013__headline {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 45px;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1;
  color: var(--sub-txt, #000);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-013__headline {
    font-size: 30px;
    font-size: 3rem;
  }
}

.mp-modulegroup005-013__headline-sub {
  display: block;
  margin-top: 10px;
  font-family: var(--font, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary-bg, #04a1af);
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-013__headline-sub {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup005-013__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 677px;
  background-color: var(--primary, #04a1af);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-013__bg {
    height: 462px;
  }
}

.mp-modulegroup005-013__bg-img-pc {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-013__bg-img-pc {
    display: none;
  }
}

.mp-modulegroup005-013__bg-img-sp {
  display: none;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-013__bg-img-sp {
    display: block;
  }
}

.mp-modulegroup005-013__container {
  position: relative;
  max-width: 1000px;
  margin: 75px auto 0;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-013__container {
    margin: 40px auto 0;
  }
}

.mp-modulegroup005-013__item {
  text-align: left;
}

.mp-modulegroup005-013__item+.mp-modulegroup005-013__item {
  margin: 60px 0 0;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-013__item+.mp-modulegroup005-013__item {
    margin: 40px 0 0;
  }
}

.mp-modulegroup005-013__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-013__item-inner {
    display: block;
  }
}

.mp-modulegroup005-013__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  width: 70px;
  height: 70px;
  margin: 0 20px 0 0;
  background-color: var(--primary-bg, #04a1af);
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1;
  color: var(--sub-txt, #000);
  letter-spacing: 1.5px;
  letter-spacing: .15rem;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-013__num {
    width: 50px;
    height: 50px;
    margin: 0;
    font-size: 25px;
    font-size: 2.5rem;
  }
}

.mp-modulegroup005-013__ttl {
  font-size: 23px;
  font-size: 2.3rem;
  line-height: 1.7;
  color: var(--primary-bg, #04a1af);
  letter-spacing: 5px;
  letter-spacing: .5rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-013__ttl {
    margin: 16px 0 0;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.mp-modulegroup005-013__item-inner+.mp-modulegroup005-013__figure {
  margin: 25px 0 0;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-013__item-inner+.mp-modulegroup005-013__figure {
    margin: 16px 0 0;
  }
}

.mp-modulegroup005-013__figure-img-pc {
  vertical-align: bottom;
}

@media screen and (min-width: 767px) {
  .mp-modulegroup005-013__figure-img-pc {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-013__figure-img-pc {
    display: none;
  }
}

.mp-modulegroup005-013__figure-img-sp {
  vertical-align: bottom;
}

@media screen and (min-width: 767px) {
  .mp-modulegroup005-013__figure-img-sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-013__figure-img-sp {
    display: block;
  }
}

.mp-modulegroup005-013__figure+.mp-modulegroup005-013__txt {
  margin: 16px 0 0;
}

.mp-modulegroup005-013__txt {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.4;
  letter-spacing: 3px;
  letter-spacing: .3rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-013__txt {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 2.1;
  }
}

.mp-modulegroup005-014 {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding: 140px 20px 150px;
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-014 {
    padding: 70px 20px 75px;
  }
}

.mp-modulegroup005-014__headline {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 45px;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-014__headline {
    font-size: 30px;
    font-size: 3rem;
  }
}

.mp-modulegroup005-014__headline-sub {
  display: block;
  margin-top: 10px;
  font-family: var(--font, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif);
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary-bg, #04a1af);
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-014__headline-sub {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mp-modulegroup005-014__container {
  max-width: 1370px;
  margin: 75px auto 0;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-014__container {
    margin: 40px auto 0;
  }
}

.mp-modulegroup005-014__container-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  margin: -40px -20px 0;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-014__container-inner {
    margin: -20px 0 0;
  }
}

.mp-modulegroup005-014__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  width: calc(33.33% - 40px);
  max-width: 430px;
  min-height: 240px;
  margin: 40px 20px 0;
  padding: 48px 20px;
  background-color: var(--primary-bg, #04a1af);
  cursor: pointer;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .mp-modulegroup005-014__item {
    width: calc(50% - 40px);
  }
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-014__item {
    width: 100%;
    max-width: none;
    min-height: 0;
    margin: 20px 0 0;
    padding: 35px 20px;
  }
}

.mp-modulegroup005-014__item::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  background-color: var(--primary, #04a1af);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBmaWxsPSIjRkZGIiBkPSJNNDAgMTh2NEgwdi00aDQwWiIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgZmlsbD0iI0ZGRiIgZD0iTTE4IDBoNHY0MGgtNFYwWiIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  content: "";
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-014__item::after {
    width: 28px;
    height: 28px;
    background-size: 12px;
  }
}

.mp-modulegroup005-014__item:nth-of-type(even) {
  background-color: var(--primary, #04a1af);
}

.mp-modulegroup005-014__item:nth-of-type(even)::after {
  background-color: var(--primary-bg, #04a1af);
}

.mp-modulegroup005-014__ttl {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.7;
  color: var(--sub-txt, #000);
  letter-spacing: 5px;
  letter-spacing: .5rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-014__ttl {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.mp-modulegroup005-014__modal {
  display: none;
  width: 100%;
  max-width: 1000px;
  padding: 105px 40px;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-014__modal {
    padding: 50px 20px;
  }
}

.mp-modulegroup005-014__modal-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.mp-modulegroup005-014__modal.-even .mp-modulegroup005-014__modal-ttl {
  background-color: var(--primary, #04a1af);
}

.mp-modulegroup005-014__modal.fancybox-content {
  cursor: auto;
}

.mp-modulegroup005-014__modal .fancybox-button {
  width: 50px;
  height: 50px;
  background-color: var(--primary-bg, #04a1af);
  opacity: 1;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-014__modal .fancybox-button {
    width: 30px;
    height: 30px;
    padding: 5px;
  }
}

.mp-modulegroup005-014__modal .fancybox-button:hover {
  opacity: .8;
}

.mp-modulegroup005-014__modal .fancybox-button svg path {
  fill: var(--sub-txt, #000);
}

.mp-modulegroup005-014__modal-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  width: 46.74%;
  max-width: 430px;
  padding: 48px 20px;
  background-color: var(--primary-bg, #04a1af);
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.7;
  color: var(--sub-txt, #000);
  text-align: center;
  letter-spacing: 5px;
  letter-spacing: .5rem;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-014__modal-ttl {
    width: 100%;
    max-width: none;
    padding: 35px 20px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.mp-modulegroup005-014__cnt {
  width: 53.26%;
  max-width: 490px;
  padding: 0 0 0 40px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-014__cnt {
    width: 100%;
    max-width: none;
    padding: 16px 0 0;
  }
}

.mp-modulegroup005-014__cnt-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  margin: 16px 0 0;
  -webkit-box-align: center;
  align-items: center;
}

.mp-modulegroup005-014__txt {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.3;
  letter-spacing: 3px;
  letter-spacing: .3rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-014__txt {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 2.1;
  }
}

.mp-modulegroup005-014__bg {
  overflow: hidden;
  width: 80px;
  height: 80px;
  margin: 0 20px 0 0;
  border-radius: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-014__bg {
    width: 65px;
    height: 65px;
  }
}

.mp-modulegroup005-014__bg-img-pc {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-014__bg-img-pc {
    display: none;
  }
}

.mp-modulegroup005-014__bg-img-sp {
  display: none;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-014__bg-img-sp {
    display: block;
  }
}

.mp-modulegroup005-014__position {
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary-bg, #04a1af);
  letter-spacing: 5px;
  letter-spacing: .5rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-014__position {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.mp-modulegroup005-014__note {
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 3px;
  letter-spacing: .3rem;
}

@media screen and (max-width: 767px) {
  .mp-modulegroup005-014__note {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.c-module-container>section.mp-modulegroup005-014:nth-of-type(odd) {
  background-color: transparent;
}

.m-movie-001 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-movie-001 {
    padding: 40px 0 20px;
  }
}

.m-movie-001__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.m-movie-001__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-movie-001__list-item {
  position: relative;
  width: 100%;
  margin: 0 0 30px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-movie-001__list-item {
    width: 100%;
  }
}

.m-movie-001__list-item:last-child {
  margin: 0;
}

.m-movie-001__list-item-inner {
  padding: 40px;
  border: 2px solid #eee;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .m-movie-001__list-item-inner {
    padding: 20px;
  }
}

.m-movie-001__list-item-movie {
  margin: 0 0 20px;
  font-size: 0;
}

.m-movie-001__list-item-movie iframe {
  width: 100%;
  height: 400px;
}

@media screen and (max-width: 767px) {
  .m-movie-001__list-item-movie iframe {
    height: 180px;
  }
}

.m-movie-001__list-item-ttl {
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
  padding: 0 0 10px;
  border-bottom: 2px solid #eee;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .m-movie-001__list-item-ttl {
    margin: 0 0 10px;
  }
}

.m-movie-001__list-item-ttl-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-movie-001__list-item-ttl-txt {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-movie-001__list-item-figure {
  margin: 0 0 20px;
  font-size: 0;
  text-align: center;
}

.m-movie-001__list-item-desc-txt {
  margin: 0 0 20px;
}

.m-movie-002 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-movie-002 {
    padding: 40px 0 20px;
  }
}

.m-movie-002__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

.m-movie-002__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 40px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .m-movie-002__list {
    padding: 0 20px;
  }
}

.m-movie-002__list-item {
  position: relative;
  width: 100%;
  margin: 0 0 30px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-movie-002__list-item {
    width: 100%;
  }
}

.m-movie-002__list-item:last-child {
  margin: 0;
}

.m-movie-002__list-item:nth-child(even) .m-movie-002__list-item-inner {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
}

.m-movie-002__list-item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  .m-movie-002__list-item-inner {
    display: block;
  }
}

.m-movie-002__list-item-movie {
  width: calc(60% - 20px);
  font-size: 0;
}

@media screen and (max-width: 1024px) {
  .m-movie-002__list-item-movie {
    width: 100%;
  }
}

.m-movie-002__list-item-movie iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
}

@media screen and (max-width: 767px) {
  .m-movie-002__list-item-movie iframe {
    min-height: 200px;
  }
}

.m-movie-002__list-item-content {
  width: 40%;
  padding: 60px 40px;
  background: #eee;
}

@media screen and (max-width: 1024px) {
  .m-movie-002__list-item-content {
    width: 100%;
    padding: 40px 20px;
  }
}

.m-movie-002__list-item-ttl {
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
  padding: 0 0 10px;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .m-movie-002__list-item-ttl {
    margin: 0 0 10px;
  }
}

.m-movie-002__list-item-ttl-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-movie-002__list-item-ttl-txt {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-movie-002__list-item-figure {
  margin: 0 0 20px;
  font-size: 0;
  text-align: center;
}

.m-movie-002__list-item-desc-txt {
  margin: 0 0 20px;
}

.m-movie-003 {
  overflow: hidden;
}

.m-movie-003__content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-movie-003__content {
    padding: 40px 0;
  }
}

.m-movie-003__container {
  overflow: visible;
  width: 640px;
  max-width: 80%;
  margin: 0 auto 30px;
  padding: 100px 0;
}

@media screen and (max-width: 1024px) {
  .m-movie-003__container {
    max-width: 60%;
    padding: 60px 0;
  }
}

@media screen and (max-width: 767px) {
  .m-movie-003__container {
    max-width: 60%;
    padding: 20px 0;
  }
}

.m-movie-003__slide {
  position: relative;
  font-size: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.m-movie-003__slide.swiper-slide-active {
  z-index: 1;
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
}

.m-movie-003__slide-link {
  position: relative;
  display: block;
}

.m-movie-003__slide-link::before {
  position: absolute;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  display: block;
  width: 60px;
  height: 60px;
  border: 4px solid #fff;
  border-radius: 60px;
  -webkit-box-shadow: 0 0 10px rgba(17, 17, 17, 0.1);
  box-shadow: 0 0 10px rgba(17, 17, 17, 0.1);
  content: "";
}

.m-movie-003__slide-link::after {
  position: absolute;
  top: calc(50% - 8px);
  left: calc(50% - 4px);
  display: block;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #fff;
  content: "";
}

.m-movie-003__pagination {
  font-size: 0;
}

.m-movie-003__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 4px;
  border: 1px solid #adadad;
  outline: none;
  background: #fff;
  opacity: 1;
}

.m-movie-003__pagination .swiper-pagination-bullet-active {
  border-color: var(--primary, #04a1af);
  background: var(--primary, #04a1af);
}

.m-movie-004 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-movie-004 {
    padding: 40px 0 20px;
  }
}

.m-movie-004__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

.m-movie-004__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
  .m-movie-004__list {
    padding: 0;
  }
}

.m-movie-004__list-item {
  position: relative;
  width: 50%;
  margin: 0 0 30px;
}

@media screen and (max-width: 1024px) {
  .m-movie-004__list-item {
    width: 100%;
  }
}

.m-movie-004__list-item:last-child,
.m-movie-004__list-item:nth-last-child(2) {
  margin: 0;
}

@media screen and (max-width: 1024px) {

  .m-movie-004__list-item:last-child,
  .m-movie-004__list-item:nth-last-child(2) {
    margin: 0 0 30px;
  }
}

.m-movie-004__list-item::after {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: var(--primary-bg, #04a1af);
  content: "";
}

.m-movie-004__list-item-inner {
  position: relative;
  z-index: 1;
  padding: 40px 40px 60px;
}

@media screen and (max-width: 767px) {
  .m-movie-004__list-item-inner {
    padding: 0 20px 20px;
  }
}

.m-movie-004__list-item-movie {
  margin: 0 0 30px;
  font-size: 0;
}

.m-movie-004__list-item-movie-link {
  position: relative;
  display: block;
}

.m-movie-004__list-item-movie-link::before {
  position: absolute;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  display: block;
  width: 60px;
  height: 60px;
  border: 4px solid #fff;
  border-radius: 60px;
  -webkit-box-shadow: 0 0 10px rgba(17, 17, 17, 0.1);
  box-shadow: 0 0 10px rgba(17, 17, 17, 0.1);
  content: "";
}

.m-movie-004__list-item-movie-link::after {
  position: absolute;
  top: calc(50% - 8px);
  left: calc(50% - 4px);
  display: block;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #fff;
  content: "";
}

.m-movie-004__list-item-ttl {
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
  padding: 0 0 10px;
  font-weight: 900;
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .m-movie-004__list-item-ttl {
    margin: 0 0 10px;
  }
}

.m-movie-004__list-item-ttl-txt {
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-movie-004__list-item-ttl-txt {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-movie-004__list-item-figure {
  margin: 0 0 20px;
  font-size: 0;
  text-align: center;
}

.m-movie-004__list-item-desc-txt {
  margin: 0 0 20px;
}

.m-movie-005 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-movie-005 {
    padding: 40px 0 20px;
  }
}

.m-movie-005__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

.m-movie-005__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 40px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .m-movie-005__list {
    padding: 0 20px;
  }
}

.m-movie-005__list-item {
  position: relative;
  width: 100%;
  padding: 80px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-movie-005__list-item {
    width: 100%;
    padding: 20px 0 20px 40px;
  }
}

.m-movie-005__list-item-img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: no-repeat center / cover;
}

@media screen and (max-width: 1024px) {
  .m-movie-005__list-item-img {
    bottom: auto;
  }
}

.m-movie-005__list-item-img::before {
  display: block;
  padding: 60% 0 0;
  content: "";
}

.m-movie-005__list-item-inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 1024px) {
  .m-movie-005__list-item-inner {
    padding: 40% 0 0;
  }
}

.m-movie-005__list-item-content {
  position: relative;
  width: 40%;
  padding: 60px 40px 120px;
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 1024px) {
  .m-movie-005__list-item-content {
    width: 100%;
    margin: 0 -20px 0 0;
    padding: 30px;
  }
}

.m-movie-005__list-item-content::after {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: var(--primary-bg, #04a1af);
  content: "";
  opacity: .9;
}

.m-movie-005__list-item-ttl {
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
  padding: 0 0 10px;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .m-movie-005__list-item-ttl {
    margin: 0 0 10px;
  }
}

.m-movie-005__list-item-ttl-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-movie-005__list-item-ttl-txt {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-movie-005__list-item-desc {
  position: relative;
  z-index: 1;
}

.m-movie-005__list-item-desc-txt {
  margin: 0 0 20px;
}

.m-movie-005__list-item-link {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 10px 0 0;
  padding: 10px 40px;
  border: 1px solid var(--primary-txt, #fff);
  color: var(--primary-txt, #fff);
}

.m-movie-005__list-item-link-txt {
  padding: 0 5px 0 0;
  font-size: 14px;
  font-size: 1.4rem;
}

.m-news-001 {
  position: relative;
  padding: 80px 40px;
}

@media screen and (max-width: 767px) {
  .m-news-001 {
    padding: 40px 20px 60px;
  }
}

.m-news-001__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.m-news-001__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-news-001__list-item {
  width: 100%;
  border-top: 2px solid #adadad;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-news-001__list-item {
    width: 100%;
  }
}

.m-news-001__list-item:last-child {
  border-bottom: 2px solid #adadad;
}

.m-news-001__list-item-ttl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 40px 20px 20px;
  font-weight: 900;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .m-news-001__list-item-ttl {
    display: block;
    padding: 10px 40px 10px 10px;
  }
}

.m-news-001__list-item-ttl.is-active::after {
  opacity: 0;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

.m-news-001__list-item-ttl::before {
  position: absolute;
  top: calc(50% - 1px);
  right: 20px;
  display: block;
  width: 20px;
  height: 2px;
  background: #adadad;
  content: "";
}

@media screen and (max-width: 767px) {
  .m-news-001__list-item-ttl::before {
    right: 10px;
  }
}

.m-news-001__list-item-ttl::after {
  position: absolute;
  top: calc(50% - 10px);
  right: 29px;
  display: block;
  width: 2px;
  height: 20px;
  background: #adadad;
  content: "";
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  .m-news-001__list-item-ttl::after {
    right: 19px;
  }
}

.m-news-001__list-item-ttl-date {
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 16px;
  font-size: 1.6rem;
  white-space: nowrap;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-news-001__list-item-ttl-date {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.m-news-001__list-item-ttl-txt {
  padding: 0 0 0 20px;
  font-size: 16px;
  font-size: 1.6rem;
  color: var(--primary, #04a1af);
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-news-001__list-item-ttl-txt {
    padding: 0;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.2;
  }
}

.m-news-001__list-item-content {
  display: none;
  padding: 0 20px 20px;
}

@media screen and (max-width: 767px) {
  .m-news-001__list-item-content {
    padding: 0 10px 10px;
  }
}

.m-news-001__list-item-figure {
  margin: 0 0 20px;
  font-size: 0;
  text-align: center;
}

.m-news-002 {
  position: relative;
  padding: 80px 40px;
}

@media screen and (max-width: 767px) {
  .m-news-002 {
    padding: 40px 20px;
  }
}

.m-news-002__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.m-news-002__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-news-002__list-item {
  width: 100%;
  margin: 0 0 2px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-news-002__list-item {
    width: 100%;
  }
}

.m-news-002__list-item-ttl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 40px 20px 20px;
  background: #eee;
  font-weight: 900;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .m-news-002__list-item-ttl {
    display: block;
    padding: 10px 40px 10px 10px;
  }
}

.m-news-002__list-item-ttl.is-active {
  background: var(--primary-bg, #04a1af);
  color: var(--primary-txt, #fff);
}

.m-news-002__list-item-ttl.is-active::before,
.m-news-002__list-item-ttl.is-active::after {
  background: var(--primary-txt, #fff);
}

.m-news-002__list-item-ttl.is-active::after {
  opacity: 0;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

.m-news-002__list-item-ttl::before {
  position: absolute;
  top: calc(50% - 1px);
  right: 20px;
  display: block;
  width: 20px;
  height: 2px;
  background: #adadad;
  content: "";
}

@media screen and (max-width: 767px) {
  .m-news-002__list-item-ttl::before {
    right: 10px;
  }
}

.m-news-002__list-item-ttl::after {
  position: absolute;
  top: calc(50% - 10px);
  right: 29px;
  display: block;
  width: 2px;
  height: 20px;
  background: #adadad;
  content: "";
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  .m-news-002__list-item-ttl::after {
    right: 19px;
  }
}

.m-news-002__list-item-ttl-date {
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 16px;
  font-size: 1.6rem;
  white-space: nowrap;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-news-002__list-item-ttl-date {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.m-news-002__list-item-ttl-txt {
  padding: 0 0 0 20px;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-news-002__list-item-ttl-txt {
    padding: 0;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.2;
  }
}

.m-news-002__list-item-content {
  display: none;
  padding: 20px;
}

@media screen and (max-width: 767px) {
  .m-news-002__list-item-content {
    padding: 20px 0;
  }
}

.m-news-002__list-item-figure {
  margin: 0 0 20px;
  font-size: 0;
  text-align: center;
}

.m-news-003 {
  position: relative;
  padding: 80px 40px;
}

@media screen and (max-width: 767px) {
  .m-news-003 {
    padding: 40px 20px;
  }
}

.m-news-003__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.m-news-003__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-news-003__list-item {
  width: 100%;
  margin: 0 0 2px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-news-003__list-item {
    width: 100%;
  }
}

.m-news-003__list-item-ttl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 40px 20px 20px;
  background: var(--primary-bg, #04a1af);
  font-weight: 900;
  color: var(--primary-txt, #fff);
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .m-news-003__list-item-ttl {
    display: block;
    padding: 10px 40px 10px 10px;
  }
}

.m-news-003__list-item-ttl.is-active {
  background: #eee;
  color: #111;
}

.m-news-003__list-item-ttl.is-active::before,
.m-news-003__list-item-ttl.is-active::after {
  background: #adadad;
}

.m-news-003__list-item-ttl.is-active::after {
  opacity: 0;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

.m-news-003__list-item-ttl::before {
  position: absolute;
  top: calc(50% - 1px);
  right: 20px;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary-txt, #fff);
  content: "";
}

@media screen and (max-width: 767px) {
  .m-news-003__list-item-ttl::before {
    right: 10px;
  }
}

.m-news-003__list-item-ttl::after {
  position: absolute;
  top: calc(50% - 10px);
  right: 29px;
  display: block;
  width: 2px;
  height: 20px;
  background: var(--primary-txt, #fff);
  content: "";
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  .m-news-003__list-item-ttl::after {
    right: 19px;
  }
}

.m-news-003__list-item-ttl-date {
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 16px;
  font-size: 1.6rem;
  white-space: nowrap;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-news-003__list-item-ttl-date {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.m-news-003__list-item-ttl-txt {
  padding: 0 0 0 20px;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-news-003__list-item-ttl-txt {
    padding: 0;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-news-003__list-item-content {
  display: none;
  padding: 20px;
}

@media screen and (max-width: 767px) {
  .m-news-003__list-item-content {
    padding: 20px 0;
  }
}

.m-news-003__list-item-figure {
  margin: 0 0 20px;
  font-size: 0;
  text-align: center;
}

.m-news-004 {
  overflow: hidden;
}

.m-news-004__content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 40px;
}

@media screen and (max-width: 767px) {
  .m-news-004__content {
    padding: 40px 20px;
  }
}

.m-news-004__outer {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}

.m-news-004__container {
  margin: 0 auto 30px;
}

.m-news-004__slide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px;
  background: #eee;
}

@media screen and (max-width: 767px) {
  .m-news-004__slide {
    display: block;
    padding: 30px;
  }
}

.m-news-004__controls {
  position: absolute;
  z-index: 1;
  top: calc(50% - 50px);
  right: -20px;
  left: -20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  pointer-events: none;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.m-news-004__controls-next,
.m-news-004__controls-prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  width: 40px;
  height: 40px;
  outline: none;
  background: var(--primary-bg, #04a1af);
  pointer-events: auto;
  cursor: pointer;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

.m-news-004__controls-next::before,
.m-news-004__controls-prev::before {
  display: block;
  width: 20px;
  height: 5px;
  border: solid var(--primary-txt, #fff);
  content: "";
}

.m-news-004__controls-prev::before {
  margin: -2px 0 0 4px;
  border-width: 0 0 1px 1px;
  -webkit-transform: skew(-45deg);
  transform: skew(-45deg);
}

.m-news-004__controls-next::before {
  margin: -2px 0 0 -4px;
  border-width: 0 1px 1px 0;
  -webkit-transform: skew(45deg);
  transform: skew(45deg);
}

.m-news-004__pagination {
  font-size: 0;
}

.m-news-004__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 4px;
  border: 1px solid #adadad;
  outline: none;
  background: #fff;
  opacity: 1;
}

.m-news-004__pagination .swiper-pagination-bullet-active {
  border-color: var(--primary, #04a1af);
  background: var(--primary, #04a1af);
}

.m-news-004__list-item-figure {
  width: 45%;
  font-size: 0;
}

@media screen and (max-width: 767px) {
  .m-news-004__list-item-figure {
    width: 100%;
  }
}

.m-news-004__list-item-content {
  width: 55%;
  padding: 30px 20px 30px 40px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-news-004__list-item-content {
    width: 100%;
    padding: 20px 0;
  }
}

.m-news-004__list-item-ttl-date {
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-news-004__list-item-ttl-date {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.m-news-004__list-item-ttl-txt {
  display: block;
  margin: 0 0 5px;
  padding: 10px 0;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-news-004__list-item-ttl-txt {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-news-005 {
  overflow: hidden;
}

.m-news-005__content {
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 40px;
}

@media screen and (max-width: 767px) {
  .m-news-005__content {
    padding: 40px 20px;
  }
}

.m-news-005__outer {
  position: relative;
}

.m-news-005__slide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .m-news-005__slide {
    display: block;
  }
}

.m-news-005__controls {
  position: absolute;
  z-index: 1;
  top: 60px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  pointer-events: none;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .m-news-005__controls {
    top: 0;
  }
}

.m-news-005__controls-next,
.m-news-005__controls-prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  width: 40px;
  height: 40px;
  outline: none;
  background: var(--primary-bg, #04a1af);
  pointer-events: auto;
  cursor: pointer;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

.m-news-005__controls-next::before,
.m-news-005__controls-prev::before {
  display: block;
  width: 20px;
  height: 5px;
  border: solid var(--primary-txt, #fff);
  content: "";
}

.m-news-005__controls-prev::before {
  margin: -2px 0 0 4px;
  border-width: 0 0 1px 1px;
  -webkit-transform: skew(-45deg);
  transform: skew(-45deg);
}

.m-news-005__controls-next::before {
  margin: -2px 0 0 -4px;
  border-width: 0 1px 1px 0;
  -webkit-transform: skew(45deg);
  transform: skew(45deg);
}

.m-news-005__pagination {
  font-size: 0;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-news-005__pagination {
    padding: 20px 0 0;
  }
}

.m-news-005__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 4px;
  border: 1px solid #adadad;
  outline: none;
  background: #fff;
  opacity: 1;
}

.m-news-005__pagination .swiper-pagination-bullet-active {
  border-color: var(--primary, #04a1af);
  background: var(--primary, #04a1af);
}

.m-news-005__list-item-figure {
  position: relative;
  z-index: 1;
  width: 50%;
  font-size: 0;
}

@media screen and (max-width: 767px) {
  .m-news-005__list-item-figure {
    width: 100%;
  }
}

.m-news-005__list-item-content {
  width: calc(50% + 200px);
  margin: 60px 0 0 -200px;
  padding: 30px 20px 60px 240px;
  background: #eee;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-news-005__list-item-content {
    width: 100%;
    margin: 0;
    padding: 30px;
  }
}

.m-news-005__list-item-ttl-date {
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-news-005__list-item-ttl-date {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.m-news-005__list-item-ttl-txt {
  display: block;
  margin: 0 0 5px;
  padding: 10px 0;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-news-005__list-item-ttl-txt {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-partner-001 {
  position: relative;
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .m-partner-001 {
    padding: 40px 20px;
  }
}

.m-partner-001__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}

.m-partner-001__content-txt {
  margin: -20px 0 10px;
}

.m-partner-001__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  padding: 10px 0;
  font-size: 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
}

.m-partner-001__list-item {
  width: 20%;
  padding: 20px 15px;
}

@media screen and (max-width: 767px) {
  .m-partner-001__list-item {
    width: 50%;
    padding: 20px 10px;
  }
}

.m-partner-002 {
  position: relative;
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .m-partner-002 {
    padding: 40px 0;
  }
}

.m-partner-002__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}

.m-partner-002__content {
  padding: 0 20px;
}

.m-partner-002__content-txt {
  margin: -20px 0 20px;
}

.m-partner-002__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  padding: 10px 0;
  border: 1px solid #eee;
  background: #fff;
  font-size: 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
}

.m-partner-002__list-item {
  width: 20%;
  padding: 20px 15px;
}

@media screen and (max-width: 767px) {
  .m-partner-002__list-item {
    width: 50%;
    padding: 20px 10px;
  }
}

.m-partner-003 {
  position: relative;
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .m-partner-003 {
    padding: 40px 0;
  }
}

.m-partner-003__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}

.m-partner-003__content-txt {
  margin: -20px 0 20px;
}

.m-partner-003__list {
  padding: 10px 0;
}

@media screen and (max-width: 767px) {
  .m-partner-003__list {
    padding: 0;
  }
}

.m-partner-003__list-item {
  padding: 10px;
}

.m-partner-004 {
  position: relative;
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .m-partner-004 {
    padding: 40px 20px;
  }
}

.m-partner-004__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.m-partner-004__content-txt {
  margin: -20px 0 20px;
}

.m-partner-004__list {
  padding: 10px 0;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-partner-004__list {
    padding: 0;
  }
}

.m-partner-004__list-item {
  padding: 10px;
}

.m-partner-005 {
  position: relative;
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .m-partner-005 {
    padding: 40px 20px;
  }
}

.m-partner-005__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.m-partner-005__content-txt {
  margin: -20px 0 20px;
}

.m-partner-005__list {
  padding: 10px 0;
}

@media screen and (max-width: 767px) {
  .m-partner-005__list {
    padding: 0;
  }
}

.m-partner-005__list-item {
  padding: 15px;
  border-top: 1px solid #eee;
}

.m-partner-005__list-item:last-child {
  border-bottom: 1px solid #eee;
}

.m-project-001 {
  position: relative;
  padding: 80px 20px 20px;
}

@media screen and (max-width: 767px) {
  .m-project-001 {
    padding: 40px 0 20px;
  }
}

.m-project-001__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.m-project-001__eyecatch {
  margin: 0 0 60px;
}

@media screen and (max-width: 767px) {
  .m-project-001__eyecatch {
    margin: 0 0 40px;
  }
}

.m-project-001__ttl {
  margin: 0 0 20px;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-project-001__ttl {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.m-project-001__lead {
  margin: 0 0 20px;
  font-weight: 900;
}

.m-project-001__member {
  position: relative;
  z-index: 1;
  padding: 20px 0 0;
}

.m-project-001__member::before {
  display: block;
  width: 60px;
  height: 3px;
  margin: 0 auto 30px;
  background: #adadad;
  content: "";
}

.m-project-001__member-ttl {
  padding: 15px 0;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-weight: 900;
  color: #adadad;
}

.m-project-001__member-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-project-001__member-item {
  width: 25%;
  margin: 0 0 20px;
  padding: 20px;
}

@media screen and (max-width: 1024px) {
  .m-project-001__member-item {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .m-project-001__member-item {
    padding: 4px;
  }
}

.m-project-001__member-item-inner {
  position: relative;
}

.m-project-001__member-item-figure {
  margin: 0 0 20px;
  font-size: 0;
}

.m-project-001__member-item-ttl {
  width: 100%;
  font-weight: 900;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .m-project-001__member-item-ttl {
    line-height: 1.5;
  }
}

.m-project-001__member-item-ttl-category {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  color: #adadad;
}

@media screen and (max-width: 767px) {
  .m-project-001__member-item-ttl-category {
    margin: 0 0 5px;
  }
}

.m-project-001__member-item-ttl-name {
  display: block;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-project-001__member-item-desc {
  padding: 10px 0;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: left;
}

.m-project-001__member-item-year {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  background: #eee;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 900;
}

.m-project-001__contents {
  position: relative;
  overflow: hidden;
  margin: 40px 5px;
}

@media screen and (max-width: 767px) {
  .m-project-001__contents {
    margin: 20px 0;
  }
}

.m-project-001__contents:last-child {
  margin: 0;
}

.m-project-001__contents-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -ms-flex-align: center;
  margin: 0 0 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .m-project-001__contents-section {
    margin: 0;
  }
}

.m-project-001__contents-section-figure {
  width: 100%;
  font-size: 0;
}

.m-project-001__contents-section-figure-img {
  width: 100%;
}

.m-project-001__contents-section-detail {
  position: relative;
  z-index: 1;
  width: 100%;
  font-weight: 900;
}

@media screen and (max-width: 1024px) {
  .m-project-001__contents-section-detail {
    padding: 30px 0;
  }
}

.m-project-001__contents-section-detail-number {
  display: inline-block;
  margin: 0 0 20px;
  padding: 4px 20px 2px;
  background: var(--primary-bg, #04a1af);
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 14px;
  font-size: 1.4rem;
  color: var(--primary-txt, #fff);
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-project-001__contents-section-detail-ttl {
  margin: 0 0 20px;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-project-001__contents-section-detail-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

.m-project-001__contents-section-detail-content {
  margin: 0 0 40px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-project-001__contents-section-detail-content {
    margin: 0;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-project-001__contents-section-detail-content:last-child {
  margin: 0;
}

.m-project-001__contents-section-detail-content-txt {
  margin: 0 0 20px;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-project-001__contents-section-detail-content-txt-name {
  display: block;
  color: var(--primary, #04a1af);
}

.m-project-002 {
  position: relative;
  padding: 80px 20px 20px;
}

@media screen and (max-width: 767px) {
  .m-project-002 {
    padding: 40px 0 0;
  }
}

.m-project-002__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.m-project-002__eyecatch {
  margin: 0 0 60px;
}

@media screen and (max-width: 767px) {
  .m-project-002__eyecatch {
    margin: 0 0 40px;
  }
}

.m-project-002__ttl {
  margin: 0 0 20px;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-project-002__ttl {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.m-project-002__lead {
  margin: 0 0 20px;
  font-weight: 900;
}

.m-project-002__member {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 0 0;
}

.m-project-002__member-ttl {
  display: inline-block;
  margin: 15px 0;
  padding: 4px 30px 2px;
  border: 3px solid #eee;
  border-radius: 50px;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-weight: 900;
  color: #adadad;
}

.m-project-002__member-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-project-002__member-item {
  width: 25%;
  margin: 0 0 20px;
  padding: 20px;
}

@media screen and (max-width: 1024px) {
  .m-project-002__member-item {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .m-project-002__member-item {
    padding: 4px;
  }
}

.m-project-002__member-item-inner {
  position: relative;
}

.m-project-002__member-item-figure {
  margin: 0 0 20px;
  border-radius: 200px;
  background: no-repeat center / cover;
  font-size: 0;
}

.m-project-002__member-item-figure::before {
  display: block;
  padding: 100% 0 0;
  content: "";
}

.m-project-002__member-item-ttl {
  width: 100%;
  font-weight: 900;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .m-project-002__member-item-ttl {
    line-height: 1.5;
  }
}

.m-project-002__member-item-ttl-category {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  color: #adadad;
}

@media screen and (max-width: 767px) {
  .m-project-002__member-item-ttl-category {
    margin: 0 0 5px;
  }
}

.m-project-002__member-item-ttl-name {
  display: block;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-project-002__member-item-desc {
  padding: 10px 0;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: left;
}

.m-project-002__member-item-year {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  background: #eee;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 900;
}

.m-project-002__contents {
  position: relative;
  overflow: hidden;
  margin: 40px 5px;
}

@media screen and (max-width: 767px) {
  .m-project-002__contents {
    margin: 20px 0 0;
  }
}

.m-project-002__contents-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  margin: 0 0 60px;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .m-project-002__contents-section {
    margin: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.m-project-002__contents-section:nth-child(even) {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
}

.m-project-002__contents-section:last-child {
  margin: 0;
}

.m-project-002__contents-section-figure {
  width: 50%;
  font-size: 0;
}

@media screen and (max-width: 1024px) {
  .m-project-002__contents-section-figure {
    width: 100%;
  }
}

.m-project-002__contents-section-figure-img {
  width: 100%;
}

.m-project-002__contents-section-detail {
  position: relative;
  z-index: 1;
  width: 50%;
  padding: 0 60px;
  font-weight: 900;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-project-002__contents-section-detail {
    width: 100%;
    padding: 30px 0;
  }
}

.m-project-002__contents-section-detail-number {
  display: inline-block;
  margin: 0 0 20px;
  padding: 4px 20px 2px;
  border-radius: 100px;
  background: var(--primary-bg, #04a1af);
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 14px;
  font-size: 1.4rem;
  color: var(--primary-txt, #fff);
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-project-002__contents-section-detail-ttl {
  margin: 0 0 20px;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-project-002__contents-section-detail-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .m-project-002__contents-section-detail-content {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-project-002__contents-section-detail-content-txt {
  margin: 0 0 20px;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-project-002__contents-section-detail-content-txt:last-child {
  margin: 0;
}

.m-project-002__contents-section-detail-content-txt-name {
  display: block;
  color: var(--primary, #04a1af);
}

.m-project-003 {
  position: relative;
  padding: 80px 20px 60px;
}

@media screen and (max-width: 767px) {
  .m-project-003 {
    padding: 40px 0 0;
  }
}

.m-project-003__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.m-project-003__eyecatch {
  margin: 0 0 60px;
}

@media screen and (max-width: 767px) {
  .m-project-003__eyecatch {
    margin: 0 0 40px;
  }
}

.m-project-003__ttl {
  margin: 0 0 20px;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-project-003__ttl {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.m-project-003__lead {
  margin: 0 0 20px;
  font-weight: 900;
}

.m-project-003__member {
  position: relative;
  z-index: 1;
  padding: 20px 0 0;
  text-align: left;
}

.m-project-003__member-eyecatch {
  margin: 0 0 30px;
  font-size: 0;
}

.m-project-003__member-ttl {
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-weight: 900;
  color: var(--primary, #04a1af);
}

@media screen and (max-width: 767px) {
  .m-project-003__member-ttl {
    margin: 0 0 20px;
  }
}

.m-project-003__member-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .m-project-003__member-list {
    margin: 0;
  }
}

.m-project-003__member-item {
  width: 25%;
  margin: 0 0 20px;
  padding: 20px;
}

@media screen and (max-width: 1024px) {
  .m-project-003__member-item {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .m-project-003__member-item {
    width: 100%;
    padding: 0;
  }
}

.m-project-003__member-item-inner {
  position: relative;
}

.m-project-003__member-item-figure {
  margin: 0 0 20px;
  border-radius: 200px;
  background: no-repeat center / cover;
  font-size: 0;
}

.m-project-003__member-item-figure::before {
  display: block;
  padding: 100% 0 0;
  content: "";
}

.m-project-003__member-item-ttl {
  width: 100%;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .m-project-003__member-item-ttl {
    line-height: 1.5;
  }
}

.m-project-003__member-item-ttl-category {
  display: inline-block;
  padding: 2px 10px;
  background: #eee;
  font-size: 12px;
  font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
  .m-project-003__member-item-ttl-category {
    margin: 0 0 5px;
  }
}

.m-project-003__member-item-ttl-name {
  display: block;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-project-003__member-item-desc {
  padding: 10px 0;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: left;
}

.m-project-003__member-item-year {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 900;
  color: #adadad;
}

.m-project-003__contents {
  position: relative;
  overflow: hidden;
}

.m-project-003__contents-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  margin: 0 0 60px;
  -webkit-box-align: start;
  align-items: flex-start;
}

@media screen and (max-width: 1024px) {
  .m-project-003__contents-section {
    margin: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.m-project-003__contents-section:nth-child(even) {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
}

.m-project-003__contents-section:nth-child(even) .m-project-003__contents-section-detail {
  margin: 40px -80px 0 0;
  padding: 0 140px 60px 40px;
}

@media screen and (max-width: 1024px) {
  .m-project-003__contents-section:nth-child(even) .m-project-003__contents-section-detail {
    margin: 0 0 40px;
    padding: 40px 20px 20px;
  }
}

.m-project-003__contents-section:last-child {
  margin: 0;
}

.m-project-003__contents-section-figure {
  position: relative;
  z-index: 1;
  width: 400px;
  font-size: 0;
}

@media screen and (max-width: 1024px) {
  .m-project-003__contents-section-figure {
    width: 100%;
  }
}

.m-project-003__contents-section-figure-img {
  width: 100%;
}

.m-project-003__contents-section-detail {
  width: calc(100% - 320px);
  margin: 40px 0 0 -80px;
  padding: 0 40px 60px 140px;
  background: #eee;
  font-weight: 900;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-project-003__contents-section-detail {
    width: 100%;
    margin: 0 0 40px;
    padding: 40px 20px 20px;
  }
}

.m-project-003__contents-section-detail-number {
  display: inline-block;
  margin: 0 0 10px;
  padding: 4px 20px 2px;
  background: var(--primary-bg, #04a1af);
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 14px;
  font-size: 1.4rem;
  color: var(--primary-txt, #fff);
  letter-spacing: 1px;
  letter-spacing: .1rem;
  -webkit-transform: translateY(-15px);
  transform: translateY(-15px);
}

.m-project-003__contents-section-detail-ttl {
  margin: 0 0 20px;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-project-003__contents-section-detail-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .m-project-003__contents-section-detail-content {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-project-003__contents-section-detail-content-txt {
  margin: 0 0 20px;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-project-003__contents-section-detail-content-txt:last-child {
  margin: 0;
}

.m-project-003__contents-section-detail-content-txt-name {
  display: block;
  color: var(--primary, #04a1af);
}

.m-project-004 {
  position: relative;
  padding: 80px 0 20px;
}

@media screen and (max-width: 767px) {
  .m-project-004 {
    padding: 40px 0 20px;
  }
}

.m-project-004__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.m-project-004__eyecatch {
  margin: 0 0 60px;
  padding: 100px 20px;
  background: top center / cover;
}

@media screen and (max-width: 767px) {
  .m-project-004__eyecatch {
    margin: 0 0 40px;
    padding: 20px;
  }
}

.m-project-004__eyecatch-inner {
  display: inline-block;
  padding: 60px;
  background: rgba(255, 255, 255, 0.9);
}

@media screen and (max-width: 767px) {
  .m-project-004__eyecatch-inner {
    padding: 30px;
  }
}

.m-project-004__ttl {
  margin: 0 0 20px;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-project-004__ttl {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.m-project-004__ttl::after {
  display: block;
  width: 60px;
  height: 4px;
  margin: 10px auto 20px;
  background: var(--primary-bg, #04a1af);
  content: "";
}

.m-project-004__lead {
  margin: 0 0 20px;
  font-weight: 900;
}

.m-project-004__member {
  position: relative;
  z-index: 1;
  margin: 0 0 60px;
  text-align: left;
}

.m-project-004__member-ttl {
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-weight: 900;
}

.m-project-004__member-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 10px -20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .m-project-004__member-list {
    margin: 10px 0;
  }
}

.m-project-004__member-item {
  width: 50%;
  padding: 10px 20px;
}

@media screen and (max-width: 767px) {
  .m-project-004__member-item {
    width: 100%;
    padding: 4px;
  }
}

.m-project-004__member-item-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #eee;
}

.m-project-004__member-item-figure {
  width: 140px;
  background: no-repeat center / cover;
  font-size: 0;
}

.m-project-004__member-item-content {
  width: calc(100% - 140px);
  padding: 20px;
}

.m-project-004__member-item-ttl {
  width: 100%;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .m-project-004__member-item-ttl {
    line-height: 1.5;
  }
}

.m-project-004__member-item-ttl-category {
  display: inline-block;
  font-size: 12px;
  font-size: 1.2rem;
  color: var(--primary, #04a1af);
}

.m-project-004__member-item-ttl-year {
  display: inline-block;
  padding: 4px;
  border: 1px solid #adadad;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  color: #adadad;
}

@media screen and (max-width: 767px) {
  .m-project-004__member-item-ttl-year {
    margin: 0 0 5px;
  }
}

.m-project-004__member-item-ttl-name {
  display: block;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-project-004__member-item-desc {
  padding: 10px 0;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: left;
}

.m-project-004__contents {
  position: relative;
  overflow: hidden;
  margin: 40px 5px;
}

@media screen and (max-width: 767px) {
  .m-project-004__contents {
    margin: 20px 0;
  }
}

.m-project-004__contents-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  margin: 0 0 60px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .m-project-004__contents-section {
    margin: 0;
  }
}

.m-project-004__contents-section:last-child {
  margin: 0;
}

.m-project-004__contents-section-figure {
  width: 100%;
  font-size: 0;
}

.m-project-004__contents-section-figure-img {
  width: 100%;
}

.m-project-004__contents-section-detail {
  position: relative;
  z-index: 1;
  width: 90%;
  margin: -60px auto 0;
  padding: 0 60px 60px;
  background: #fff;
  font-weight: 900;
}

@media screen and (max-width: 1024px) {
  .m-project-004__contents-section-detail {
    padding: 0 20px 30px;
  }
}

.m-project-004__contents-section-detail-number {
  display: inline-block;
  margin: 0 0 10px;
  padding: 10px 60px 8px;
  background: var(--primary-bg, #04a1af);
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 14px;
  font-size: 1.4rem;
  color: var(--primary-txt, #fff);
  letter-spacing: 1px;
  letter-spacing: .1rem;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}

.m-project-004__contents-section-detail-ttl {
  margin: 0 0 20px;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-project-004__contents-section-detail-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

.m-project-004__contents-section-detail-content {
  margin: 0 0 40px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-project-004__contents-section-detail-content {
    margin: 0;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-project-004__contents-section-detail-content:last-child {
  margin: 0;
}

.m-project-004__contents-section-detail-content-txt {
  margin: 0 0 20px;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-project-004__contents-section-detail-content-txt:last-child {
  margin: 0;
}

.m-project-004__contents-section-detail-content-txt-name {
  display: block;
  color: var(--primary, #04a1af);
}

.m-project-005 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-project-005 {
    padding: 40px 0 20px;
  }
}

.m-project-005__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
}

@media screen and (max-width: 767px) {
  .m-project-005__inner {
    padding: 0 20px;
  }
}

.m-project-005__eyecatch {
  background-size: cover;
  color: #fff;
  text-align: left;
}

.m-project-005__eyecatch-inner {
  padding: 160px 60px 100px;
  background: rgba(17, 17, 17, 0.3);
}

@media screen and (max-width: 767px) {
  .m-project-005__eyecatch-inner {
    padding: 80px 20px 100px;
  }
}

.m-project-005__ttl {
  max-width: 1440px;
  margin: 0 auto 20px;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-project-005__ttl {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.m-project-005__lead {
  max-width: 1440px;
  margin: 0 auto 20px;
  font-weight: 900;
}

.m-project-005__member {
  position: relative;
  z-index: 1;
  margin: -60px 0 60px;
  padding: 20px 40px 0;
  background: #fff;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-project-005__member {
    margin: -60px 0 0;
    padding: 20px 20px 0;
  }
}

.m-project-005__member-ttl {
  padding: 15px 0;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-weight: 900;
  color: #adadad;
}

.m-project-005__member-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -15px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .m-project-005__member-list {
    margin: 0;
  }
}

.m-project-005__member-item {
  width: 25%;
  margin: 0 0 20px;
  padding: 15px;
}

@media screen and (max-width: 1024px) {
  .m-project-005__member-item {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .m-project-005__member-item {
    width: 100%;
    padding: 4px;
  }
}

.m-project-005__member-item-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.m-project-005__member-item-figure {
  width: 80px;
  margin: 0 0 20px;
  font-size: 0;
}

.m-project-005__member-item-content {
  width: calc(100% - 80px);
  padding: 0 0 0 20px;
}

.m-project-005__member-item-ttl {
  width: 100%;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .m-project-005__member-item-ttl {
    line-height: 1.5;
  }
}

.m-project-005__member-item-ttl-category {
  display: block;
  font-size: 11px;
  font-size: 1.1rem;
  color: var(--primary, #04a1af);
}

@media screen and (max-width: 767px) {
  .m-project-005__member-item-ttl-category {
    margin: 0 0 5px;
  }
}

.m-project-005__member-item-ttl-name {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
}

.m-project-005__member-item-desc {
  padding: 10px 0;
  font-size: 11px;
  font-size: 1.1rem;
  text-align: left;
}

.m-project-005__member-item-year {
  display: inline-block;
  padding: 2px 10px 0;
  border: 1px solid #adadad;
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 900;
  color: #adadad;
}

.m-project-005__contents {
  position: relative;
  overflow: hidden;
}

.m-project-005__contents-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  margin: 0 0 60px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .m-project-005__contents-section {
    margin: 0;
  }
}

.m-project-005__contents-section:last-child {
  margin: 0;
}

.m-project-005__contents-section:nth-child(even) {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
}

.m-project-005__contents-section-figure {
  width: 40%;
  font-size: 0;
}

@media screen and (max-width: 767px) {
  .m-project-005__contents-section-figure {
    width: 100%;
  }
}

.m-project-005__contents-section-figure-img {
  width: 100%;
}

.m-project-005__contents-section-detail {
  position: relative;
  z-index: 1;
  width: 60%;
  padding: 60px;
  font-weight: 900;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-project-005__contents-section-detail {
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .m-project-005__contents-section-detail {
    width: 100%;
  }
}

.m-project-005__contents-section-detail-number {
  display: inline-block;
  margin: 0 0 20px;
  padding: 4px 20px 2px;
  border-radius: 100px;
  background: var(--primary-bg, #04a1af);
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 14px;
  font-size: 1.4rem;
  color: var(--primary-txt, #fff);
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-project-005__contents-section-detail-ttl {
  margin: 0 0 20px;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-project-005__contents-section-detail-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

.m-project-005__contents-section-detail-content {
  margin: 0 0 40px;
}

@media screen and (max-width: 767px) {
  .m-project-005__contents-section-detail-content {
    margin: 0;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-project-005__contents-section-detail-content:last-child {
  margin: 0;
}

.m-project-005__contents-section-detail-content-txt {
  margin: 0 0 20px;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-project-005__contents-section-detail-content-txt:last-child {
  margin: 0;
}

.m-project-005__contents-section-detail-content-txt-name {
  display: block;
  color: var(--primary, #04a1af);
}

.m-recruit-001 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-recruit-001 {
    padding: 40px 0 10px;
  }
}

.m-recruit-001__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .m-recruit-001__list {
    padding: 0 20px;
  }
}

.m-recruit-001__list-item {
  margin: 0 0 40px;
}

.m-recruit-001__list-item:last-child {
  margin: 0;
}

.m-recruit-001__list-item-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  background: #eee;
}

@media screen and (max-width: 767px) {
  .m-recruit-001__list-item-link {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.m-recruit-001__list-item-job {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  padding: 4px 10px;
  background: var(--primary-bg, #04a1af);
  color: var(--primary-txt, #fff);
}

.m-recruit-001__list-item-bg {
  position: relative;
  z-index: 0;
  width: 50%;
  background: no-repeat center;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .m-recruit-001__list-item-bg {
    width: 100%;
  }
}

.m-recruit-001__list-item-bg::before {
  display: block;
  padding: 70% 0 0;
  content: "";
}

.m-recruit-001__list-item-detail {
  width: 50%;
  padding: 0 20px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-recruit-001__list-item-detail {
    width: 100%;
    padding: 20px 0;
  }
}

.m-recruit-001__list-item-detail-ttl {
  padding: 0 0 14px;
  border-bottom: 1px solid #adadad;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary, #04a1af);
}

@media screen and (max-width: 767px) {
  .m-recruit-001__list-item-detail-ttl {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.m-recruit-001__list-item-detail-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  padding: 14px 0;
  border-bottom: 1px solid #adadad;
  -webkit-box-align: center;
  align-items: center;
}

.m-recruit-001__list-item-detail-data-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  width: 30px;
  height: 30px;
  margin: 0 20px 0 0;
  border-radius: 50%;
  background: var(--primary-bg, #04a1af);
  font-size: 18px;
  font-size: 1.8rem;
  color: var(--primary-txt, #fff);
  text-align: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.m-recruit-001__list-item-detail-data-txt {
  width: calc(100% - 50px);
}

.m-recruit-001__list-item-detail-more {
  position: relative;
  z-index: 1;
  display: block;
  margin: 20px 0 0;
  padding: 20px 0;
  border: 2px solid var(--primary-bg, #04a1af);
  background: #fff;
  font-weight: 900;
  color: var(--primary, #04a1af);
  text-align: center;
}

.m-recruit-001__list-item-detail-more::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: var(--primary, #04a1af);
  content: "";
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.m-recruit-001__list-item-detail-more:hover {
  color: var(--primary-txt, #fff);
}

.m-recruit-001__list-item-detail-more:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.m-recruit-001__list-item-detail-more-txt {
  position: relative;
  z-index: 1;
  margin: 0 10px 0 0;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-recruit-001__list-item-detail-more-icon {
  position: relative;
  z-index: 1;
}

.m-recruit-002 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-recruit-002 {
    padding: 40px 0 0;
  }
}

.m-recruit-002__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .m-recruit-002__list {
    padding: 0 20px;
  }
}

.m-recruit-002__list-item {
  margin: 0 0 40px;
}

.m-recruit-002__list-item:last-child {
  margin: 0;
}

.m-recruit-002__list-item-link {
  display: block;
}

.m-recruit-002__list-item-bg {
  position: relative;
  z-index: 0;
  background: no-repeat center;
  background-size: cover;
}

@media screen and (max-width: 1024px) {
  .m-recruit-002__list-item-bg {
    position: static;
  }
}

.m-recruit-002__list-item-bg::before {
  display: block;
  padding: 70% 0 0;
  content: "";
}

.m-recruit-002__list-item-detail {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  max-width: 50%;
  max-height: 80%;
  padding: 40px;
  background: var(--primary-bg, #04a1af);
  color: var(--primary-txt, #fff);
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-recruit-002__list-item-detail {
    position: static;
    overflow: visible;
    max-width: 100%;
    max-height: 100%;
    padding: 30px;
  }
}

.m-recruit-002__list-item-detail-ttl {
  padding: 0 0 14px;
  border-bottom: 1px solid var(--primary-txt, #fff);
  font-size: 20px;
  font-size: 2rem;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .m-recruit-002__list-item-detail-ttl {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.m-recruit-002__list-item-detail-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--primary-txt, #fff);
  -webkit-box-align: center;
  align-items: center;
}

.m-recruit-002__list-item-detail-data-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  width: 30px;
  height: 30px;
  margin: 0 20px 0 0;
  border-radius: 50%;
  background: var(--primary-txt, #fff);
  font-size: 18px;
  font-size: 1.8rem;
  color: var(--primary-bg, #04a1af);
  text-align: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.m-recruit-002__list-item-detail-data-txt {
  width: calc(100% - 50px);
}

.m-recruit-002__list-item-detail-more {
  margin: 20px 0 0;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  text-align: right;
}

.m-recruit-002__list-item-detail-more-txt {
  margin: 0 10px 0 0;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-recruit-003 {
  position: relative;
  padding: 80px 20px;
}

@media screen and (max-width: 767px) {
  .m-recruit-003 {
    padding: 40px 20px 10px;
  }
}

.m-recruit-003__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}

.m-recruit-003__list-item {
  margin: 0 0 40px;
}

.m-recruit-003__list-item:last-child {
  margin: 0;
}

.m-recruit-003__list-item-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px;
  background: #eee;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .m-recruit-003__list-item-link {
    padding: 20px;
  }
}

.m-recruit-003__list-item-ttl {
  width: 100%;
  margin: 0 0 24px;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary, #04a1af);
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-recruit-003__list-item-ttl {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.m-recruit-003__list-item-images {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 30px;
  font-size: 0;
}

@media screen and (max-width: 767px) {
  .m-recruit-003__list-item-images {
    margin: 0 0 10px;
  }
}

.m-recruit-003__list-item-images-figure {
  width: 100%;
}

.m-recruit-003__list-item-detail {
  width: 100%;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-recruit-003__list-item-detail {
    padding: 20px 0;
  }
}

.m-recruit-003__list-item-detail-data {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 20px 10px 0;
}

.m-recruit-003__list-item-detail-data-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  min-width: 30px;
  height: 30px;
  margin: 0 5px 0 0;
  border-radius: 50%;
  background: var(--primary-bg, #04a1af);
  font-size: 18px;
  font-size: 1.8rem;
  color: var(--primary-txt, #fff);
  text-align: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.m-recruit-003__list-item-detail-desc {
  margin: 10px 0 0;
  padding: 10px 0 0;
  border-top: 1px solid #adadad;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.4;
}

.m-recruit-003__list-item-detail-more {
  position: relative;
  z-index: 1;
  display: block;
  width: 320px;
  max-width: 100%;
  margin: 20px auto 0;
  padding: 20px;
  border: 2px solid var(--primary-bg, #04a1af);
  background: #fff;
  font-weight: 900;
  color: var(--primary, #04a1af);
  text-align: center;
}

.m-recruit-003__list-item-detail-more::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: var(--primary, #04a1af);
  content: "";
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.m-recruit-003__list-item-detail-more:hover {
  color: var(--primary-txt, #fff);
}

.m-recruit-003__list-item-detail-more:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.m-recruit-003__list-item-detail-more-txt {
  position: relative;
  z-index: 1;
  margin: 0 10px 0 0;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-recruit-003__list-item-detail-more-icon {
  position: relative;
  z-index: 1;
}

.m-recruit-004 {
  position: relative;
  padding: 80px 20px;
}

@media screen and (max-width: 767px) {
  .m-recruit-004 {
    padding: 40px 20px 10px;
  }
}

.m-recruit-004__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

.m-recruit-004__list-item {
  margin: 0 0 40px;
}

.m-recruit-004__list-item:last-child {
  margin: 0;
}

.m-recruit-004__list-item-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px;
  background: #eee;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .m-recruit-004__list-item-link {
    padding: 20px;
  }
}

.m-recruit-004__list-item-ttl {
  width: 100%;
  margin: 0 0 24px;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary, #04a1af);
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-recruit-004__list-item-ttl {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.m-recruit-004__list-item-bg {
  position: relative;
  z-index: 0;
  width: 40%;
  background: no-repeat center;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .m-recruit-004__list-item-bg {
    width: 100%;
  }
}

.m-recruit-004__list-item-bg::before {
  display: block;
  padding: 70% 0 0;
  content: "";
}

.m-recruit-004__list-item-detail {
  width: 60%;
  padding: 0 20px 0 30px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-recruit-004__list-item-detail {
    width: 100%;
    padding: 20px 0;
  }
}

.m-recruit-004__list-item-detail-data {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 20px 10px 0;
}

.m-recruit-004__list-item-detail-data-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  min-width: 30px;
  height: 30px;
  margin: 0 5px 0 0;
  border-radius: 50%;
  background: var(--primary-bg, #04a1af);
  font-size: 18px;
  font-size: 1.8rem;
  color: var(--primary-txt, #fff);
  text-align: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.m-recruit-004__list-item-detail-desc {
  padding: 10px 0 0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.4;
}

.m-recruit-004__list-item-detail-more {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 320px;
  max-width: 100%;
  margin: 20px 0 0;
  padding: 20px;
  border: 2px solid var(--primary-bg, #04a1af);
  background: #fff;
  font-weight: 900;
  color: var(--primary, #04a1af);
  text-align: center;
}

.m-recruit-004__list-item-detail-more::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: var(--primary, #04a1af);
  content: "";
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.m-recruit-004__list-item-detail-more:hover {
  color: var(--primary-txt, #fff);
}

.m-recruit-004__list-item-detail-more:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.m-recruit-004__list-item-detail-more-txt {
  position: relative;
  z-index: 1;
  margin: 0 10px 0 0;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-recruit-004__list-item-detail-more-icon {
  position: relative;
  z-index: 1;
}

.m-recruit-005 {
  position: relative;
  padding: 80px 20px;
}

@media screen and (max-width: 767px) {
  .m-recruit-005 {
    padding: 40px 20px 10px;
  }
}

.m-recruit-005__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

.m-recruit-005__list-item {
  margin: 0 0 40px;
}

.m-recruit-005__list-item:last-child {
  margin: 0;
}

.m-recruit-005__list-item-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px;
  background: #eee;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .m-recruit-005__list-item-link {
    padding: 20px;
  }
}

.m-recruit-005__list-item-ttl {
  width: 100%;
  margin: 0 0 24px;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary, #04a1af);
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-recruit-005__list-item-ttl {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.m-recruit-005__list-item-images {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 30px;
  font-size: 0;
}

@media screen and (max-width: 767px) {
  .m-recruit-005__list-item-images {
    margin: 0 0 10px;
  }
}

.m-recruit-005__list-item-detail {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-recruit-005__list-item-detail {
    width: 100%;
    padding: 20px 0;
  }
}

.m-recruit-005__list-item-detail-data {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 20px 10px 0;
}

.m-recruit-005__list-item-detail-data-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  min-width: 30px;
  height: 30px;
  margin: 0 5px 0 0;
  border-radius: 50%;
  background: var(--primary-bg, #04a1af);
  font-size: 18px;
  font-size: 1.8rem;
  color: var(--primary-txt, #fff);
  text-align: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.m-recruit-005__list-item-detail-desc {
  padding: 10px 0 0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.4;
}

.m-recruit-005__list-item-detail-more {
  position: relative;
  z-index: 1;
  display: block;
  width: 320px;
  max-width: 100%;
  margin: 20px auto 0;
  padding: 20px;
  border: 2px solid var(--primary-bg, #04a1af);
  background: #fff;
  font-weight: 900;
  color: var(--primary, #04a1af);
  text-align: center;
}

.m-recruit-005__list-item-detail-more::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: var(--primary, #04a1af);
  content: "";
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.m-recruit-005__list-item-detail-more:hover {
  color: var(--primary-txt, #fff);
}

.m-recruit-005__list-item-detail-more:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.m-recruit-005__list-item-detail-more-txt {
  position: relative;
  z-index: 1;
  margin: 0 10px 0 0;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-recruit-005__list-item-detail-more-icon {
  position: relative;
  z-index: 1;
}

.m-schedule-001 {
  position: relative;
  padding: 80px 20px;
}

@media screen and (max-width: 767px) {
  .m-schedule-001 {
    padding: 40px 20px;
  }
}

.m-schedule-001__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}

.m-schedule-001__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #eee;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-schedule-001__list-item {
  width: 100%;
  border: 1px solid #eee;
  text-align: left;
}

.m-schedule-001__list-item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  background: #eee;
}

@media screen and (max-width: 767px) {
  .m-schedule-001__list-item-inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.m-schedule-001__list-item-time {
  min-width: 140px;
  padding: 40px 20px;
  background: var(--primary-bg, #04a1af);
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .m-schedule-001__list-item-time {
    width: 100%;
    padding: 10px 20px;
  }
}

.m-schedule-001__list-item-time-txt {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-schedule-001__list-item-time-txt {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.m-schedule-001__list-item-content {
  width: calc(100% - 140px);
  padding: 40px 30px;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .m-schedule-001__list-item-content {
    width: 100%;
    padding: 20px;
  }
}

.m-schedule-001__list-item-ttl {
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-schedule-001__list-item-desc {
  padding: 14px 0;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-schedule-001__list-item-figure {
  padding: 14px 0;
}

.m-schedule-002 {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
}

@media screen and (max-width: 767px) {
  .m-schedule-002 {
    padding: 40px 20px;
  }
}

.m-schedule-002__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}

.m-schedule-002__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-schedule-002__list::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 2px;
  background: #adadad;
  content: "";
}

.m-schedule-002__list-item {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: left;
}

.m-schedule-002__list-item-inner {
  height: 100%;
  padding: 0 30px;
}

@media screen and (max-width: 767px) {
  .m-schedule-002__list-item-inner {
    padding: 0 0 0 30px;
  }
}

.m-schedule-002__list-item-time {
  position: relative;
  margin: 0 0 20px;
  padding: 10px 20px 10px 30px;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
}

.m-schedule-002__list-item-time::before {
  position: absolute;
  right: -30px;
  bottom: 0;
  left: -30px;
  display: block;
  height: 2px;
  background: #adadad;
  content: "";
}

.m-schedule-002__list-item-time::after {
  position: absolute;
  z-index: 2;
  bottom: -8px;
  left: -38px;
  display: block;
  width: 14px;
  height: 14px;
  border: 2px solid #111;
  border-radius: 14px;
  background: #fff;
  content: "";
}

.m-schedule-002__list-item-time-txt {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-schedule-002__list-item-time-txt {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.m-schedule-002__list-item-content {
  margin: 0 0 30px;
  padding: 30px;
  background: #eee;
}

.m-schedule-002__list-item-ttl {
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-schedule-002__list-item-desc {
  padding: 14px 0;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-schedule-002__list-item-figure {
  padding: 14px 0;
}

.m-schedule-003 {
  position: relative;
  padding: 80px 20px;
}

@media screen and (max-width: 767px) {
  .m-schedule-003 {
    padding: 40px 20px;
  }
}

.m-schedule-003__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}

.m-schedule-003__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: solid #adadad;
  border-width: 1px 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-schedule-003__list-item {
  position: relative;
  width: 100%;
  border: solid #adadad;
  border-width: 1px 0;
  text-align: left;
}

.m-schedule-003__list-item:nth-child(odd)::after {
  position: absolute;
  top: 2px;
  right: 0;
  bottom: 2px;
  left: 0;
  display: block;
  background: #eee;
  content: "";
}

.m-schedule-003__list-item-inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .m-schedule-003__list-item-inner {
    padding: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.m-schedule-003__list-item-time {
  min-width: 140px;
  padding: 30px;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  color: var(--primary, #04a1af);
}

@media screen and (max-width: 767px) {
  .m-schedule-003__list-item-time {
    padding: 0;
  }
}

.m-schedule-003__list-item-time-txt {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-schedule-003__list-item-time-txt {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.m-schedule-003__list-item-content {
  width: calc(100% - 140px);
  padding: 30px;
}

@media screen and (max-width: 767px) {
  .m-schedule-003__list-item-content {
    width: 100%;
    padding: 0;
  }
}

.m-schedule-003__list-item-ttl {
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-schedule-003__list-item-desc {
  padding: 14px 0;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-schedule-003__list-item-figure {
  padding: 14px 0;
}

.m-schedule-004 {
  position: relative;
  padding: 80px 20px;
}

@media screen and (max-width: 767px) {
  .m-schedule-004 {
    padding: 40px 20px;
  }
}

.m-schedule-004__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}

.m-schedule-004__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-schedule-004__list-item {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 0 20px;
  text-align: left;
}

.m-schedule-004__list-item:nth-child(odd) .m-schedule-004__list-item-content::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: var(--primary-bg, #04a1af);
  content: "";
  opacity: .2;
}

.m-schedule-004__list-item:last-child {
  margin: 0;
}

.m-schedule-004__list-item-inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .m-schedule-004__list-item-inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.m-schedule-004__list-item-figure {
  width: 300px;
  font-size: 0;
}

@media screen and (max-width: 767px) {
  .m-schedule-004__list-item-figure {
    width: 100%;
  }
}

.m-schedule-004__list-item-content {
  position: relative;
  width: calc(100% - 300px);
  padding: 30px;
}

@media screen and (max-width: 767px) {
  .m-schedule-004__list-item-content {
    width: 100%;
    padding: 20px;
  }
}

.m-schedule-004__list-item-time {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  color: var(--primary, #04a1af);
}

.m-schedule-004__list-item-time-txt {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-schedule-004__list-item-time-txt {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.m-schedule-004__list-item-ttl {
  position: relative;
  z-index: 1;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-schedule-004__list-item-desc {
  position: relative;
  z-index: 1;
  padding: 14px 0;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-schedule-005 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-schedule-005 {
    padding: 40px 0;
  }
}

.m-schedule-005__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}

.m-schedule-005__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-schedule-005__list-item {
  width: 100%;
  padding: 24px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-schedule-005__list-item {
    padding: 18px 24px;
  }
}

.m-schedule-005__list-item-inner {
  height: 100%;
  padding: 0 30px 30px;
  background: #eee;
}

@media screen and (max-width: 767px) {
  .m-schedule-005__list-item-inner {
    padding: 0 20px 20px;
  }
}

.m-schedule-005__list-item-time {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  margin: -20px 0 30px;
  padding: 10px;
  background: var(--primary-bg, #04a1af);
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  color: var(--primary-txt, #fff);
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-schedule-005__list-item-time {
    margin: -20px 0 20px;
  }
}

.m-schedule-005__list-item-time-icon {
  font-size: 25px;
  font-size: 2.5rem;
}

@media screen and (max-width: 767px) {
  .m-schedule-005__list-item-time-icon {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.m-schedule-005__list-item-time-txt {
  padding: 4px 0 0 10px;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-schedule-005__list-item-time-txt {
    padding: 2px 0 0 10px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.m-schedule-005__list-item-ttl {
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-schedule-005__list-item-desc {
  padding: 14px 0;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-schedule-005__list-item-figure {
  padding: 14px 0;
}

.m-slider-001__slide-img {
  background: no-repeat center;
  background-size: cover;
}

.m-slider-001__slide-img::before {
  display: block;
  padding: 32% 0 0;
  content: "";
}

@media screen and (max-width: 1024px) {
  .m-slider-001__slide-img::before {
    padding: 60% 0 0;
  }
}

.m-slider-001__pagination {
  padding: 20px 0;
  font-size: 0;
}

@media screen and (max-width: 767px) {
  .m-slider-001__pagination {
    padding: 10px 0;
  }
}

.m-slider-001__pagination .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  margin: 4px;
  border: 1px solid var(--primary, #04a1af);
  outline: none;
  background: #fff;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .m-slider-001__pagination .swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    border-width: 2px;
  }
}

.m-slider-001__pagination .swiper-pagination-bullet-active {
  background: var(--primary, #04a1af);
}

.m-slider-002 {
  max-width: 1440px;
  margin: 0 auto;
}

.m-slider-002__slide-img {
  background: no-repeat center;
  background-size: cover;
}

.m-slider-002__slide-img::before {
  display: block;
  padding: 32% 0 0;
  content: "";
}

@media screen and (max-width: 1024px) {
  .m-slider-002__slide-img::before {
    padding: 60% 0 0;
  }
}

.m-slider-002__pagination {
  padding: 20px 0;
  font-size: 0;
}

@media screen and (max-width: 767px) {
  .m-slider-002__pagination {
    padding: 10px 0;
  }
}

.m-slider-002__pagination .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  margin: 4px;
  border: 1px solid var(--primary, #04a1af);
  outline: none;
  background: #fff;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .m-slider-002__pagination .swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    border-width: 2px;
  }
}

.m-slider-002__pagination .swiper-pagination-bullet-active {
  background: var(--primary, #04a1af);
}

.m-welfare-001 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-welfare-001 {
    padding: 40px 0;
  }
}

.m-welfare-001__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}

.m-welfare-001__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-welfare-001__list-item {
  width: 33.33333%;
  padding: 12px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .m-welfare-001__list-item {
    width: 100%;
  }
}

.m-welfare-001__list-item-inner {
  height: 100%;
  padding: 20px;
  border: 1px solid #eee;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .m-welfare-001__list-item-inner {
    padding: 20px;
  }
}

.m-welfare-001__list-item-ttl {
  margin: 0 0 20px;
  font-weight: 900;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .m-welfare-001__list-item-ttl {
    margin: 0 0 10px;
  }
}

.m-welfare-001__list-item-ttl-num {
  display: inline-block;
  width: 60px;
  height: 60px;
  margin: 0 0 14px;
  border-radius: 50%;
  background: var(--primary-bg, #04a1af);
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 64px;
  color: var(--primary-txt, #fff);
  text-align: center;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-welfare-001__list-item-ttl-num {
    width: 40px;
    height: 40px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 44px;
  }
}

.m-welfare-001__list-item-ttl-txt {
  display: block;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.2;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-welfare-001__list-item-ttl-txt {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.m-welfare-001__list-item-desc {
  padding: 14px 0 0;
}

@media screen and (max-width: 767px) {
  .m-welfare-001__list-item-desc {
    padding: 10px 0 0;
  }
}

.m-welfare-001__desc {
  max-width: 880px;
  margin: 0 auto;
  padding: 20px 0 0;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-welfare-001__desc {
    padding: 10px 0 0;
  }
}

.m-welfare-001__desc-txt {
  padding: 20px 0 0;
}

@media screen and (max-width: 767px) {
  .m-welfare-001__desc-txt {
    padding: 10px 0 0;
  }
}

.m-work-001 {
  position: relative;
  padding: 80px 0 60px;
}

@media screen and (max-width: 767px) {
  .m-work-001 {
    padding: 40px 0;
  }
}

.m-work-001__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto 80px;
}

.m-work-001__detail {
  position: relative;
  z-index: 1;
  margin: -40px 0 0;
  padding: 0 40px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-work-001__detail {
    padding: 0 20px;
  }
}

.m-work-001__ttl-en {
  display: inline-block;
  margin: 0 0 10px;
  padding: 4px 20px 0;
  background: var(--primary-bg, #04a1af);
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 30px;
  font-size: 3rem;
  color: var(--primary-txt, #fff);
  letter-spacing: 4px;
  letter-spacing: .4rem;
}

@media screen and (max-width: 767px) {
  .m-work-001__ttl-en {
    padding: 10px 20px 4px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.5;
  }
}

.m-work-001__ttl-ja {
  display: inline-block;
  margin: 0 0 10px;
  padding: 2px 20px 0;
  background: var(--primary-bg, #04a1af);
  font-size: 18px;
  font-size: 1.8rem;
  color: var(--primary-txt, #fff);
  letter-spacing: 4px;
  letter-spacing: .4rem;
}

@media screen and (max-width: 767px) {
  .m-work-001__ttl-ja {
    padding: 6px 20px 4px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.m-work-001__desc-ttl {
  margin: 40px 0 30px;
  padding: 8px 20px;
  background: #eee;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .m-work-001__desc-ttl {
    margin: 30px 0 20px;
  }
}

.m-work-001__desc-txt {
  margin: 30px 0;
}

@media screen and (max-width: 767px) {
  .m-work-001__desc-txt {
    margin: 20px 0;
  }
}

.m-work-001__recommend {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 0;
  background: #eee;
}

.m-work-001__recommend-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 40px;
}

@media screen and (max-width: 1024px) {
  .m-work-001__recommend-list {
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .m-work-001__recommend-list {
    padding: 0 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.m-work-001__recommend-list-item {
  width: 33.33333%;
  padding: 10px;
}

@media screen and (max-width: 767px) {
  .m-work-001__recommend-list-item {
    width: 100%;
  }
}

.m-work-001__recommend-list-item-link-ttl {
  margin: -25px 0 0;
  padding: 0 10px;
  text-align: left;
}

.m-work-001__recommend-list-item-link-ttl-en {
  display: inline-block;
  margin: 0 0 10px;
  padding: 4px 10px 0;
  background: var(--primary-bg, #04a1af);
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  color: var(--primary-txt, #fff);
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

@media screen and (max-width: 767px) {
  .m-work-001__recommend-list-item-link-ttl-en {
    padding: 10px 10px 4px;
    line-height: 1.5;
  }
}

.m-work-001__recommend-list-item-link-ttl-ja {
  display: inline-block;
  margin: 0 0 10px;
  padding: 2px 20px 0;
  background: var(--primary-bg, #04a1af);
  font-size: 14px;
  font-size: 1.4rem;
  color: var(--primary-txt, #fff);
  letter-spacing: 4px;
  letter-spacing: .4rem;
}

@media screen and (max-width: 767px) {
  .m-work-001__recommend-list-item-link-ttl-ja {
    padding: 6px 20px 4px;
  }
}

.m-work-001__recommend-more {
  position: relative;
  z-index: 1;
  display: block;
  width: 320px;
  max-width: calc(100% - 40px);
  margin: 30px auto 0;
  padding: 20px;
  border: 2px solid var(--primary-bg, #04a1af);
  background: #fff;
  font-weight: 900;
  color: var(--primary, #04a1af);
  text-align: center;
}

.m-work-001__recommend-more::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: var(--primary, #04a1af);
  content: "";
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.m-work-001__recommend-more:hover {
  color: var(--primary-txt, #fff);
}

.m-work-001__recommend-more:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.m-work-001__recommend-more-txt {
  position: relative;
  z-index: 1;
  margin: 0 10px 0 0;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-work-001__recommend-more-icon {
  position: relative;
  z-index: 1;
}

.m-work-002 {
  position: relative;
  padding: 80px 0 60px;
}

@media screen and (max-width: 767px) {
  .m-work-002 {
    padding: 40px 0;
  }
}

.m-work-002__head {
  margin: 0 0 100px;
  background: var(--primary-bg, #04a1af);
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .m-work-002__head {
    margin: 0 0 40px;
  }
}

.m-work-002__head-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -ms-flex-align: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 40px 0;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
}

@media screen and (max-width: 767px) {
  .m-work-002__head-inner {
    padding: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.m-work-002__head-figure {
  width: 50%;
  font-size: 0;
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
}

@media screen and (max-width: 767px) {
  .m-work-002__head-figure {
    width: 100%;
    margin: 0 0 10px;
    -webkit-transform: none;
    transform: none;
  }
}

.m-work-002__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto 80px;
}

.m-work-002__detail {
  position: relative;
  z-index: 1;
  padding: 0 40px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-work-002__detail {
    padding: 0 20px;
  }
}

.m-work-002__figure {
  font-size: 0;
}

.m-work-002__ttl {
  width: 50%;
  padding: 0 0 40px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-work-002__ttl {
    width: 100%;
    padding: 0;
  }
}

.m-work-002__ttl-ja {
  display: block;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 4px;
  letter-spacing: .4rem;
}

@media screen and (max-width: 767px) {
  .m-work-002__ttl-ja {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.m-work-002__ttl-en {
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 4px;
  letter-spacing: .4rem;
}

@media screen and (max-width: 767px) {
  .m-work-002__ttl-en {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.m-work-002__desc-ttl {
  margin: 40px 0 30px;
  font-weight: 900;
  color: var(--primary, #04a1af);
}

@media screen and (max-width: 767px) {
  .m-work-002__desc-ttl {
    margin: 30px 0 20px;
  }
}

.m-work-002__desc-txt {
  margin: 30px 0;
}

@media screen and (max-width: 767px) {
  .m-work-002__desc-txt {
    margin: 20px 0;
  }
}

.m-work-002__recommend {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 0;
  background: #eee;
}

.m-work-002__recommend-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 40px;
}

@media screen and (max-width: 1024px) {
  .m-work-002__recommend-list {
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .m-work-002__recommend-list {
    padding: 0 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.m-work-002__recommend-list-item {
  width: 25%;
  padding: 10px;
}

@media screen and (max-width: 767px) {
  .m-work-002__recommend-list-item {
    width: 100%;
  }
}

.m-work-002__recommend-list-item-link-figure {
  font-size: 0;
}

.m-work-002__recommend-list-item-link-ttl {
  padding: 20px 20px 30px;
  background: #fff;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-work-002__recommend-list-item-link-ttl {
    padding: 20px;
  }
}

.m-work-002__recommend-list-item-link-ttl-ja {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-work-002__recommend-more {
  position: relative;
  z-index: 1;
  display: block;
  width: 320px;
  max-width: calc(100% - 40px);
  margin: 30px auto 0;
  padding: 20px;
  border: 2px solid var(--primary-bg, #04a1af);
  background: #fff;
  font-weight: 900;
  color: var(--primary, #04a1af);
  text-align: center;
}

.m-work-002__recommend-more::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: var(--primary, #04a1af);
  content: "";
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.m-work-002__recommend-more:hover {
  color: var(--primary-txt, #fff);
}

.m-work-002__recommend-more:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.m-work-002__recommend-more-txt {
  position: relative;
  z-index: 1;
  margin: 0 10px 0 0;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-work-002__recommend-more-icon {
  position: relative;
  z-index: 1;
}

.m-work-003 {
  position: relative;
  padding: 80px 0 20px;
}

@media screen and (max-width: 767px) {
  .m-work-003 {
    padding: 40px 0;
  }
}

.m-work-003__head {
  margin: 0 0 200px;
  background: #eee;
}

@media screen and (max-width: 767px) {
  .m-work-003__head {
    margin: 0 0 40px;
  }
}

.m-work-003__head-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 40px 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .m-work-003__head-inner {
    padding: 20px;
  }
}

.m-work-003__head-figure {
  width: 100%;
  margin: -100px 0 0;
  font-size: 0;
  -webkit-transform: translateY(140px);
  transform: translateY(140px);
}

@media screen and (max-width: 767px) {
  .m-work-003__head-figure {
    margin: 0 0 10px;
    -webkit-transform: none;
    transform: none;
  }
}

.m-work-003__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto 80px;
}

.m-work-003__detail {
  position: relative;
  z-index: 1;
  padding: 0 40px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-work-003__detail {
    padding: 0 20px;
  }
}

.m-work-003__figure {
  font-size: 0;
}

.m-work-003__ttl {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .m-work-003__ttl {
    margin: 0 0 20px;
  }
}

.m-work-003__ttl-ja {
  display: block;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 4px;
  letter-spacing: .4rem;
}

@media screen and (max-width: 767px) {
  .m-work-003__ttl-ja {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.m-work-003__ttl-en {
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

@media screen and (max-width: 767px) {
  .m-work-003__ttl-en {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.m-work-003__desc-ttl {
  margin: 40px 0 30px;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .m-work-003__desc-ttl {
    margin: 30px 0 20px;
  }
}

.m-work-003__desc-ttl-txt {
  padding: 0 0 2px;
  border-bottom: 1px solid var(--primary, #04a1af);
  color: var(--primary, #04a1af);
}

.m-work-003__desc-txt {
  margin: 30px 0;
}

@media screen and (max-width: 767px) {
  .m-work-003__desc-txt {
    margin: 20px 0;
  }
}

.m-work-003__recommend {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 20px;
}

@media screen and (max-width: 767px) {
  .m-work-003__recommend {
    padding: 60px 0 20px;
  }
}

.m-work-003__recommend::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  display: block;
  height: 240px;
  background: #eee;
  content: "";
}

.m-work-003__recommend-list {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

@media screen and (max-width: 1024px) {
  .m-work-003__recommend-list {
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .m-work-003__recommend-list {
    padding: 0 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.m-work-003__recommend-list-item {
  width: 33.33333%;
}

@media screen and (max-width: 767px) {
  .m-work-003__recommend-list-item {
    width: 100%;
  }
}

.m-work-003__recommend-list-item-link-figure {
  font-size: 0;
}

.m-work-003__recommend-list-item-link-ttl {
  padding: 20px 20px 30px;
}

@media screen and (max-width: 767px) {
  .m-work-003__recommend-list-item-link-ttl {
    padding: 20px;
  }
}

.m-work-003__recommend-list-item-link-ttl-ja {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-work-003__recommend-more {
  position: relative;
  z-index: 1;
  display: block;
  width: 320px;
  max-width: calc(100% - 40px);
  margin: 30px auto 0;
  padding: 20px;
  border: 2px solid var(--primary-bg, #04a1af);
  background: #fff;
  font-weight: 900;
  color: var(--primary, #04a1af);
  text-align: center;
}

.m-work-003__recommend-more::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: var(--primary, #04a1af);
  content: "";
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.m-work-003__recommend-more:hover {
  color: var(--primary-txt, #fff);
}

.m-work-003__recommend-more:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.m-work-003__recommend-more-txt {
  position: relative;
  z-index: 1;
  margin: 0 10px 0 0;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-work-003__recommend-more-icon {
  position: relative;
  z-index: 1;
}

.m-work-004 {
  position: relative;
  padding: 80px 20px 60px;
}

@media screen and (max-width: 767px) {
  .m-work-004 {
    padding: 40px 20px;
  }
}

.m-work-004__head-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -ms-flex-align: center;
  max-width: 1080px;
  margin: 0 auto;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-work-004__head-figure {
  width: 100%;
  font-size: 0;
}

@media screen and (max-width: 767px) {
  .m-work-004__head-figure {
    margin: 0 0 10px;
    -webkit-transform: none;
    transform: none;
  }
}

.m-work-004__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto 80px;
  padding: 60px;
  border: 1px solid #adadad;
}

@media screen and (max-width: 767px) {
  .m-work-004__inner {
    margin: 0 auto 40px;
    padding: 20px;
  }
}

.m-work-004__detail {
  position: relative;
  z-index: 1;
  text-align: left;
}

.m-work-004__figure {
  font-size: 0;
}

.m-work-004__ttl {
  width: 100%;
  margin: 0 0 30px;
}

@media screen and (max-width: 767px) {
  .m-work-004__ttl {
    margin: 0 0 20px;
  }
}

.m-work-004__ttl-ja {
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 4px;
  letter-spacing: .4rem;
}

.m-work-004__desc-ttl {
  margin: 40px 0 30px;
  padding: 0 0 10px;
  border-bottom: 1px solid #adadad;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .m-work-004__desc-ttl {
    margin: 30px 0 20px;
  }
}

.m-work-004__desc-txt {
  margin: 30px 0;
}

@media screen and (max-width: 767px) {
  .m-work-004__desc-txt {
    margin: 20px 0;
  }
}

.m-work-004__recommend {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 20px;
  background: #eee;
}

@media screen and (max-width: 767px) {
  .m-work-004__recommend {
    padding: 40px 20px 20px;
  }
}

.m-work-004__recommend-nav {
  max-width: 880px;
  margin: 0 auto 30px;
  text-align: left;
}

.m-work-004__recommend-nav-ttl {
  padding: 10px 20px;
  font-weight: 900;
}

.m-work-004__recommend-list {
  position: relative;
  z-index: 1;
  padding: 20px;
  border: 2px solid #adadad;
  background: #fff;
}

.m-work-004__recommend-list-item {
  border-bottom: 2px solid #adadad;
}

.m-work-004__recommend-list-item:last-child {
  border-bottom: 0;
}

.m-work-004__recommend-list-item-link {
  position: relative;
  display: block;
  padding: 15px 50px 15px 0;
}

.m-work-004__recommend-list-item-link-figure {
  font-size: 0;
}

.m-work-004__recommend-list-item-link-ttl-ja {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-work-004__recommend-list-item-link-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.m-work-004__recommend-more {
  position: relative;
  z-index: 1;
  display: block;
  width: 320px;
  max-width: 100%;
  margin: 30px auto 0;
  padding: 20px;
  border: 2px solid var(--primary-bg, #04a1af);
  background: #fff;
  font-weight: 900;
  color: var(--primary, #04a1af);
  text-align: center;
}

.m-work-004__recommend-more::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: var(--primary, #04a1af);
  content: "";
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.m-work-004__recommend-more:hover {
  color: var(--primary-txt, #fff);
}

.m-work-004__recommend-more:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.m-work-004__recommend-more-txt {
  position: relative;
  z-index: 1;
  margin: 0 10px 0 0;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-work-004__recommend-more-icon {
  position: relative;
  z-index: 1;
}

.m-work-005 {
  position: relative;
  padding: 80px 20px 60px;
}

@media screen and (max-width: 767px) {
  .m-work-005 {
    padding: 40px 0;
  }
}

.m-work-005__head {
  max-width: 1440px;
  margin: 0 auto;
  background: var(--primary-bg, #04a1af);
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .m-work-005__head {
    margin: 0 0 40px;
  }
}

.m-work-005__head-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
}

@media screen and (max-width: 767px) {
  .m-work-005__head-inner {
    padding: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.m-work-005__head-figure {
  width: 60%;
  background: no-repeat center / cover;
  font-size: 0;
}

@media screen and (max-width: 767px) {
  .m-work-005__head-figure {
    width: 100%;
    margin: 0 0 10px;
  }
}

.m-work-005__head-figure::before {
  display: none;
  padding: 60% 0 0;
  content: "";
}

@media screen and (max-width: 767px) {
  .m-work-005__head-figure::before {
    display: block;
  }
}

.m-work-005__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto 80px;
}

.m-work-005__detail {
  position: relative;
  z-index: 1;
  padding: 0 40px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-work-005__detail {
    padding: 0 20px;
  }
}

.m-work-005__figure {
  font-size: 0;
}

.m-work-005__ttl {
  width: 40%;
  padding: 40px 40px 100px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-work-005__ttl {
    width: 100%;
    padding: 0;
  }
}

.m-work-005__ttl-ja {
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 4px;
  letter-spacing: .4rem;
}

@media screen and (max-width: 767px) {
  .m-work-005__ttl-ja {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.m-work-005__ttl-en {
  display: block;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 28px;
  font-size: 2.8rem;
  letter-spacing: 4px;
  letter-spacing: .4rem;
}

@media screen and (max-width: 767px) {
  .m-work-005__ttl-en {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.m-work-005__desc-ttl {
  margin: 40px 0 30px;
  padding: 5px 20px;
  background: var(--primary-bg, #04a1af);
  font-weight: 900;
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .m-work-005__desc-ttl {
    margin: 30px 0 20px;
  }
}

.m-work-005__desc-txt {
  margin: 30px 0;
}

@media screen and (max-width: 767px) {
  .m-work-005__desc-txt {
    margin: 20px 0;
  }
}

.m-work-005__recommend {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 0;
  background: #eee;
}

.m-work-005__recommend-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 40px;
}

@media screen and (max-width: 1024px) {
  .m-work-005__recommend-list {
    padding: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .m-work-005__recommend-list {
    padding: 0 10px;
  }
}

.m-work-005__recommend-list-item {
  width: 25%;
  padding: 20px;
}

@media screen and (max-width: 1024px) {
  .m-work-005__recommend-list-item {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .m-work-005__recommend-list-item {
    width: 100%;
    padding: 10px;
  }
}

.m-work-005__recommend-list-item-link-figure {
  font-size: 0;
}

.m-work-005__recommend-list-item-link-ttl {
  padding: 20px 20px 40px;
  background: var(--primary, #04a1af);
  color: var(--primary-txt, #fff);
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-work-005__recommend-list-item-link-ttl {
    padding: 20px;
  }
}

.m-work-005__recommend-list-item-link-ttl-en {
  display: block;
  margin: 0 0 5px;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-weight: 900;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-work-005__recommend-list-item-link-ttl-ja {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-work-005__recommend-more {
  position: relative;
  z-index: 1;
  display: block;
  width: 320px;
  max-width: 100%;
  margin: 30px auto 0;
  padding: 20px;
  border: 2px solid var(--primary-bg, #04a1af);
  background: #fff;
  font-weight: 900;
  color: var(--primary, #04a1af);
  text-align: center;
}

.m-work-005__recommend-more::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: var(--primary, #04a1af);
  content: "";
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.m-work-005__recommend-more:hover {
  color: var(--primary-txt, #fff);
}

.m-work-005__recommend-more:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.m-work-005__recommend-more-txt {
  position: relative;
  z-index: 1;
  margin: 0 10px 0 0;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-work-005__recommend-more-icon {
  position: relative;
  z-index: 1;
}

.m-works-001 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-works-001 {
    padding: 40px 0;
  }
}

.m-works-001__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .m-works-001__inner {
    padding: 0 20px;
  }
}

.m-works-001__item {
  margin: 0 0 80px;
}

.m-works-001__item:last-child {
  margin: 0;
}

.m-works-001__detail {
  position: relative;
  z-index: 1;
  margin: -40px 0 0;
  padding: 0 40px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-works-001__detail {
    padding: 0 20px;
  }
}

.m-works-001__ttl-en {
  display: inline-block;
  margin: 0 0 10px;
  padding: 4px 20px 0;
  background: var(--primary-bg, #04a1af);
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 30px;
  font-size: 3rem;
  color: var(--primary-txt, #fff);
  letter-spacing: 4px;
  letter-spacing: .4rem;
}

@media screen and (max-width: 767px) {
  .m-works-001__ttl-en {
    padding: 10px 20px 4px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.5;
  }
}

.m-works-001__ttl-ja {
  display: inline-block;
  margin: 0 0 10px;
  padding: 2px 20px 0;
  background: var(--primary-bg, #04a1af);
  font-size: 18px;
  font-size: 1.8rem;
  color: var(--primary-txt, #fff);
  letter-spacing: 4px;
  letter-spacing: .4rem;
}

@media screen and (max-width: 767px) {
  .m-works-001__ttl-ja {
    padding: 6px 20px 4px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.m-works-001__desc-txt {
  padding: 20px 0;
}

.m-works-001__more {
  position: relative;
  z-index: 1;
  display: block;
  width: 320px;
  max-width: 100%;
  margin: 20px auto 0;
  padding: 20px;
  border: 2px solid var(--primary-bg, #04a1af);
  background: #fff;
  font-weight: 900;
  color: var(--primary, #04a1af);
  text-align: center;
}

.m-works-001__more::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: var(--primary, #04a1af);
  content: "";
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.m-works-001__more:hover {
  color: var(--primary-txt, #fff);
}

.m-works-001__more:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.m-works-001__more-txt {
  position: relative;
  z-index: 1;
  margin: 0 10px 0 0;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-works-001__more-icon {
  position: relative;
  z-index: 1;
}

.m-works-002 {
  position: relative;
  padding: 80px 0 40px;
}

@media screen and (max-width: 767px) {
  .m-works-002 {
    padding: 40px 0;
  }
}

.m-works-002__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}

.m-works-002__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
  .m-works-002__items {
    padding: 20px;
  }
}

.m-works-002__item {
  position: relative;
  display: block;
  width: 50%;
  padding: 20px;
}

@media screen and (max-width: 1024px) {
  .m-works-002__item {
    padding: 10px;
  }
}

@media screen and (max-width: 767px) {
  .m-works-002__item {
    width: 100%;
  }
}

.m-works-002__item:first-child {
  width: 100%;
}

.m-works-002__item:first-child .m-works-002__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  padding: 30% 0 0;
  -webkit-box-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 767px) {
  .m-works-002__item:first-child .m-works-002__item-inner {
    padding: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.m-works-002__item:first-child .m-works-002__figure {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .m-works-002__item:first-child .m-works-002__figure {
    position: static;
    width: 100%;
  }
}

.m-works-002__item:first-child .m-works-002__detail {
  width: 50%;
  background: var(--primary-bg, #04a1af);
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 1024px) {
  .m-works-002__item:first-child .m-works-002__detail {
    width: 70%;
  }
}

@media screen and (max-width: 767px) {
  .m-works-002__item:first-child .m-works-002__detail {
    width: 100%;
  }
}

.m-works-002__item-inner {
  position: relative;
  display: block;
}

.m-works-002__figure {
  background: no-repeat center / cover;
}

.m-works-002__figure::before {
  display: block;
  padding: 60% 0 0;
  content: "";
}

.m-works-002__detail {
  position: relative;
  z-index: 1;
  padding: 40px 50px;
  background: #eee;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-works-002__detail {
    padding: 20px;
  }
}

.m-works-002__ttl-ja {
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 4px;
  letter-spacing: .4rem;
}

.m-works-002__desc-txt {
  padding: 20px 0;
}

.m-works-002__more {
  position: relative;
  z-index: 1;
  display: block;
  text-align: right;
}

.m-works-002__more-txt {
  position: relative;
  z-index: 1;
  margin: 0 10px 0 0;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.m-works-002__more-icon {
  position: relative;
  z-index: 1;
}

.m-works-003 {
  position: relative;
  padding: 80px 0 40px;
}

@media screen and (max-width: 767px) {
  .m-works-003 {
    padding: 40px 0;
  }
}

.m-works-003__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .m-works-003__inner {
    padding: 0 20px;
  }
}

.m-works-003__content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 0 200px;
  background: #eee;
}

@media screen and (max-width: 767px) {
  .m-works-003__content {
    padding: 40px 20px;
  }
}

.m-works-003__content-ttl {
  margin: 0 0 40px;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 4px;
  letter-spacing: .4rem;
}

@media screen and (max-width: 767px) {
  .m-works-003__content-ttl {
    margin: 0 0 20px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.m-works-003__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -140px 0 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
  .m-works-003__items {
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .m-works-003__items {
    margin: -20px 0 0;
    padding: 0;
  }
}

.m-works-003__item {
  position: relative;
  display: block;
  width: 33.33333%;
  margin: 0 0 40px;
}

@media screen and (max-width: 767px) {
  .m-works-003__item {
    width: 50%;
  }
}

.m-works-003__item:hover .m-works-003__figure-more {
  opacity: 1;
}

.m-works-003__item-inner {
  position: relative;
  display: block;
}

.m-works-003__figure {
  position: relative;
  margin: 0 0 10px;
  background: no-repeat center / cover;
}

.m-works-003__figure::before {
  display: block;
  padding: 100% 0 0;
  content: "";
}

.m-works-003__figure-more {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  color: #fff;
  opacity: 0;
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

.m-works-003__figure-more::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: var(--primary, #04a1af);
  content: "";
  opacity: .7;
}

.m-works-003__figure-more-txt {
  position: relative;
  z-index: 1;
  margin: 0 10px 0 0;
  font-size: 18px;
  font-size: 1.8rem;
}

.m-works-003__figure-more-icon {
  position: relative;
  z-index: 1;
}

.m-works-003__detail {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .m-works-003__detail {
    padding: 0 10px;
  }
}

.m-works-003__ttl-ja {
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-works-003__ttl-ja {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.m-works-004 {
  position: relative;
  padding: 80px 20px 40px;
}

@media screen and (max-width: 767px) {
  .m-works-004 {
    padding: 40px 0 0;
  }
}

.m-works-004__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .m-works-004__inner {
    padding: 0 20px;
  }
}

.m-works-004__category {
  margin: 0 0 40px;
}

.m-works-004__ttl {
  padding: 10px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 900;
  text-align: left;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-works-004__figure {
  position: relative;
  margin: 0 0 20px;
  background: no-repeat center / cover;
}

.m-works-004__figure::before {
  display: block;
  padding: 20% 0 0;
  content: "";
}

.m-works-004__item {
  position: relative;
  display: block;
}

.m-works-004__item-inner {
  position: relative;
  display: block;
  padding: 20px 50px 20px 0;
  border-bottom: 2px solid #adadad;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-works-004__item-inner {
    padding: 10px 50px 10px 0;
  }
}

.m-works-004__detail-ttl {
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-works-004__detail-ttl {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.m-works-004__detail-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.m-works-005 {
  position: relative;
  padding: 80px 0 40px;
}

@media screen and (max-width: 767px) {
  .m-works-005 {
    padding: 40px 0 30px;
  }
}

.m-works-005__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .m-works-005__inner {
    padding: 0 20px;
  }
}

.m-works-005__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
  .m-works-005__items {
    padding: 0;
  }
}

.m-works-005__item {
  position: relative;
  display: block;
  width: 25%;
  margin: 0 0 40px;
  padding: 0 15px;
}

@media screen and (max-width: 1024px) {
  .m-works-005__item {
    width: 50%;
    margin: 0;
    padding: 4px;
  }
}

.m-works-005__item:hover .m-works-005__figure-more {
  opacity: 1;
}

.m-works-005__item-inner {
  position: relative;
  display: block;
}

.m-works-005__figure {
  position: relative;
  background: no-repeat center / cover;
}

.m-works-005__figure::before {
  display: block;
  padding: 100% 0 0;
  content: "";
}

.m-works-005__figure-more {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  color: #fff;
  opacity: 0;
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

.m-works-005__figure-more::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: #111;
  content: "";
  opacity: .7;
}

.m-works-005__figure-more-txt {
  position: relative;
  z-index: 1;
  margin: 0 10px 0 0;
  font-size: 18px;
  font-size: 1.8rem;
}

.m-works-005__figure-more-icon {
  position: relative;
  z-index: 1;
}

.m-works-005__detail {
  position: relative;
  z-index: 1;
  background: var(--primary-bg, #04a1af);
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .m-works-005__detail {
    padding: 0 10px;
  }
}

.m-works-005__ttl {
  padding: 20px 20px 40px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-works-005__ttl {
    padding: 20px 10px 30px;
  }
}

.m-works-005__ttl-en {
  display: block;
  margin: 0;
  font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-works-005__ttl-en {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.m-works-005__ttl-ja {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-works-005__ttl-ja {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.m-require-001 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-require-001 {
    padding: 40px 0;
  }
}

.m-require-001__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.m-require-001__detail {
  padding: 40px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-require-001__detail {
    padding: 14px 20px 20px;
  }
}

.m-require-001__detail-row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 10px;
}

@media screen and (max-width: 767px) {
  .m-require-001__detail-row {
    display: block;
    padding: 0;
  }
}

.m-require-001__detail-row:last-child {
  margin: 0;
}

.m-require-001__detail-ttl {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  width: 200px;
  padding: 20px;
  background: var(--primary-bg, #04a1af);
  font-weight: 900;
  color: var(--primary-txt, #fff);
  letter-spacing: 2px;
  letter-spacing: .2rem;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-require-001__detail-ttl {
    width: 100%;
    padding: 10px 20px;
  }
}

.m-require-001__detail-desc {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  width: calc(100% - 200px);
  padding: 20px;
  background: var(--sub-bg, #f2f2f2);
  line-height: 1.5;
  color: var(--sub-txt, #000);
  letter-spacing: 2px;
  letter-spacing: .2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .m-require-001__detail-desc {
    width: 100%;
    padding: 10px 20px;
  }
}

.m-require-001__detail-desc::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: var(--primary-bg, #04a1af);
  content: "";
  opacity: .3;
}

.m-require-001__detail-desc p {
  white-space: pre-line;
}

.m-require-001__detail-desc h1,
.m-require-001__detail-desc h2,
.m-require-001__detail-desc h3,
.m-require-001__detail-desc h4,
.m-require-001__detail-desc h5,
.m-require-001__detail-desc h6 {
  margin: 1em 0 .5em;
}

.m-require-001__detail-desc h1:first-child,
.m-require-001__detail-desc h2:first-child,
.m-require-001__detail-desc h3:first-child,
.m-require-001__detail-desc h4:first-child,
.m-require-001__detail-desc h5:first-child,
.m-require-001__detail-desc h6:first-child {
  margin: 0 0 .5em;
}

.m-require-001__detail-desc h1:last-child,
.m-require-001__detail-desc h2:last-child,
.m-require-001__detail-desc h3:last-child,
.m-require-001__detail-desc h4:last-child,
.m-require-001__detail-desc h5:last-child,
.m-require-001__detail-desc h6:last-child {
  margin: 1em 0 0;
}

.m-require-001__detail-desc h1 {
  font-size: 36px;
  font-size: 3.6rem;
}

.m-require-001__detail-desc h2 {
  font-size: 32px;
  font-size: 3.2rem;
}

.m-require-001__detail-desc h3 {
  font-size: 28px;
  font-size: 2.8rem;
}

.m-require-001__detail-desc h4 {
  font-size: 24px;
  font-size: 2.4rem;
}

.m-require-001__detail-desc h5 {
  font-size: 20px;
  font-size: 2rem;
}

.m-require-001__detail-desc h6 {
  font-size: 16px;
  font-size: 1.6rem;
}

.m-require-001__detail-desc strong,
.m-require-001__detail-desc b {
  font-weight: 900;
}

.m-require-001__detail-desc ul,
.m-require-001__detail-desc ol {
  margin: 1em 0;
  padding: 0 0 0 26px;
}

.m-require-001__detail-desc ul:first-child,
.m-require-001__detail-desc ol:first-child {
  margin: 0 0 1em;
}

.m-require-001__detail-desc ul:last-child,
.m-require-001__detail-desc ol:last-child {
  margin: 1em 0 0;
}

.m-require-001__detail-desc ul li:not(:last-child),
.m-require-001__detail-desc ol li:not(:last-child) {
  margin: 0 0 6px;
}

.m-require-001__detail-desc ul {
  list-style: disc;
}

.m-require-001__detail-desc ol {
  list-style: decimal;
}

.m-require-001__detail-flow {
  margin: 0 0 20px;
}

.m-require-001__detail-flow:last-child {
  margin: 0;
}

.m-require-001__detail-flow-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  margin: 0 0 4px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
}

.m-require-001__detail-flow-ttl-number {
  margin: 0 10px 0 0;
  padding: 4px 10px;
  border-radius: 50px;
  background: var(--primary-bg, #04a1af);
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .m-require-001__detail-flow-ttl-number {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.m-require-001__detail-flow-day {
  color: var(--primary, #04a1af);
}

.m-require-001__entry {
  padding: 40px;
}

@media screen and (max-width: 767px) {
  .m-require-001__entry {
    padding: 20px;
  }
}

.m-require-001__entry-btn {
  position: relative;
  display: block;
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 0;
  background: var(--primary-bg, #04a1af);
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .m-require-001__entry-btn {
    max-width: 80%;
    padding: 30px 0;
  }
}

.m-require-001__entry-btn::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: rgba(17, 17, 17, 0.2);
  content: "";
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.m-require-001__entry-btn:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.m-require-001__entry-btn-txt {
  position: relative;
  z-index: 1;
  padding: 0 10px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-require-002 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-require-002 {
    padding: 40px 0;
  }
}

.m-require-002__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.m-require-002__detail {
  padding: 40px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-require-002__detail {
    padding: 14px 20px 20px;
  }
}

.m-require-002__detail-row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-require-002__detail-row {
    display: block;
    padding: 15px;
  }
}

.m-require-002__detail-row::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: var(--primary-bg, #04a1af);
  content: "";
  opacity: .2;
}

.m-require-002__detail-row:nth-child(even)::before {
  display: none;
}

.m-require-002__detail-ttl {
  position: relative;
  z-index: 1;
  width: 200px;
  padding: 20px;
  line-height: 1.5;
  color: var(--primary, #04a1af);
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-require-002__detail-ttl {
    width: 100%;
    margin: 0 0 5px;
    padding: 0;
  }
}

.m-require-002__detail-desc {
  position: relative;
  z-index: 1;
  width: calc(100% - 200px);
  padding: 20px;
  line-height: 1.5;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-require-002__detail-desc {
    width: 100%;
    padding: 0;
  }
}

.m-require-002__detail-desc p {
  white-space: pre-line;
}

.m-require-002__detail-desc h1,
.m-require-002__detail-desc h2,
.m-require-002__detail-desc h3,
.m-require-002__detail-desc h4,
.m-require-002__detail-desc h5,
.m-require-002__detail-desc h6 {
  margin: 1em 0 .5em;
}

.m-require-002__detail-desc h1:first-child,
.m-require-002__detail-desc h2:first-child,
.m-require-002__detail-desc h3:first-child,
.m-require-002__detail-desc h4:first-child,
.m-require-002__detail-desc h5:first-child,
.m-require-002__detail-desc h6:first-child {
  margin: 0 0 .5em;
}

.m-require-002__detail-desc h1:last-child,
.m-require-002__detail-desc h2:last-child,
.m-require-002__detail-desc h3:last-child,
.m-require-002__detail-desc h4:last-child,
.m-require-002__detail-desc h5:last-child,
.m-require-002__detail-desc h6:last-child {
  margin: 1em 0 0;
}

.m-require-002__detail-desc h1 {
  font-size: 36px;
  font-size: 3.6rem;
}

.m-require-002__detail-desc h2 {
  font-size: 32px;
  font-size: 3.2rem;
}

.m-require-002__detail-desc h3 {
  font-size: 28px;
  font-size: 2.8rem;
}

.m-require-002__detail-desc h4 {
  font-size: 24px;
  font-size: 2.4rem;
}

.m-require-002__detail-desc h5 {
  font-size: 20px;
  font-size: 2rem;
}

.m-require-002__detail-desc h6 {
  font-size: 16px;
  font-size: 1.6rem;
}

.m-require-002__detail-desc strong,
.m-require-002__detail-desc b {
  font-weight: 900;
}

.m-require-002__detail-desc ul,
.m-require-002__detail-desc ol {
  margin: 1em 0;
  padding: 0 0 0 26px;
}

.m-require-002__detail-desc ul:first-child,
.m-require-002__detail-desc ol:first-child {
  margin: 0 0 1em;
}

.m-require-002__detail-desc ul:last-child,
.m-require-002__detail-desc ol:last-child {
  margin: 1em 0 0;
}

.m-require-002__detail-desc ul li:not(:last-child),
.m-require-002__detail-desc ol li:not(:last-child) {
  margin: 0 0 6px;
}

.m-require-002__detail-desc ul {
  list-style: disc;
}

.m-require-002__detail-desc ol {
  list-style: decimal;
}

.m-require-002__detail-flow {
  margin: 0 0 20px;
}

.m-require-002__detail-flow:last-child {
  margin: 0;
}

.m-require-002__detail-flow-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  margin: 0 0 4px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
}

.m-require-002__detail-flow-ttl-number {
  margin: 0 10px 0 0;
  padding: 4px 10px;
  border-radius: 50px;
  background: var(--primary-bg, #04a1af);
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .m-require-002__detail-flow-ttl-number {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.m-require-002__detail-flow-day {
  color: var(--primary, #04a1af);
}

.m-require-002__entry {
  padding: 40px;
}

@media screen and (max-width: 767px) {
  .m-require-002__entry {
    padding: 20px;
  }
}

.m-require-002__entry-btn {
  position: relative;
  display: block;
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 0;
  background: var(--primary-bg, #04a1af);
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .m-require-002__entry-btn {
    max-width: 80%;
    padding: 30px 0;
  }
}

.m-require-002__entry-btn::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: rgba(17, 17, 17, 0.2);
  content: "";
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.m-require-002__entry-btn:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.m-require-002__entry-btn-txt {
  position: relative;
  z-index: 1;
  padding: 0 10px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-require-003 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-require-003 {
    padding: 40px 0;
  }
}

.m-require-003__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.m-require-003__detail {
  padding: 40px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-require-003__detail {
    padding: 14px 20px 20px;
  }
}

.m-require-003__detail-row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  border-top: 1px solid #adadad;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .m-require-003__detail-row {
    display: block;
    padding: 15px;
  }
}

.m-require-003__detail-row:last-child {
  border-bottom: 1px solid #adadad;
}

.m-require-003__detail-ttl {
  position: relative;
  z-index: 1;
  width: 200px;
  padding: 20px;
  font-weight: 900;
  color: var(--primary, #04a1af);
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-require-003__detail-ttl {
    width: 100%;
    margin: 0 0 5px;
    padding: 0;
  }
}

.m-require-003__detail-desc {
  position: relative;
  z-index: 1;
  width: calc(100% - 200px);
  padding: 20px;
  line-height: 1.5;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-require-003__detail-desc {
    width: 100%;
    padding: 0;
  }
}

.m-require-003__detail-desc p {
  white-space: pre-line;
}

.m-require-003__detail-desc h1,
.m-require-003__detail-desc h2,
.m-require-003__detail-desc h3,
.m-require-003__detail-desc h4,
.m-require-003__detail-desc h5,
.m-require-003__detail-desc h6 {
  margin: 1em 0 .5em;
}

.m-require-003__detail-desc h1:first-child,
.m-require-003__detail-desc h2:first-child,
.m-require-003__detail-desc h3:first-child,
.m-require-003__detail-desc h4:first-child,
.m-require-003__detail-desc h5:first-child,
.m-require-003__detail-desc h6:first-child {
  margin: 0 0 .5em;
}

.m-require-003__detail-desc h1:last-child,
.m-require-003__detail-desc h2:last-child,
.m-require-003__detail-desc h3:last-child,
.m-require-003__detail-desc h4:last-child,
.m-require-003__detail-desc h5:last-child,
.m-require-003__detail-desc h6:last-child {
  margin: 1em 0 0;
}

.m-require-003__detail-desc h1 {
  font-size: 36px;
  font-size: 3.6rem;
}

.m-require-003__detail-desc h2 {
  font-size: 32px;
  font-size: 3.2rem;
}

.m-require-003__detail-desc h3 {
  font-size: 28px;
  font-size: 2.8rem;
}

.m-require-003__detail-desc h4 {
  font-size: 24px;
  font-size: 2.4rem;
}

.m-require-003__detail-desc h5 {
  font-size: 20px;
  font-size: 2rem;
}

.m-require-003__detail-desc h6 {
  font-size: 16px;
  font-size: 1.6rem;
}

.m-require-003__detail-desc strong,
.m-require-003__detail-desc b {
  font-weight: 900;
}

.m-require-003__detail-desc ul,
.m-require-003__detail-desc ol {
  margin: 1em 0;
  padding: 0 0 0 26px;
}

.m-require-003__detail-desc ul:first-child,
.m-require-003__detail-desc ol:first-child {
  margin: 0 0 1em;
}

.m-require-003__detail-desc ul:last-child,
.m-require-003__detail-desc ol:last-child {
  margin: 1em 0 0;
}

.m-require-003__detail-desc ul li:not(:last-child),
.m-require-003__detail-desc ol li:not(:last-child) {
  margin: 0 0 6px;
}

.m-require-003__detail-desc ul {
  list-style: disc;
}

.m-require-003__detail-desc ol {
  list-style: decimal;
}

.m-require-003__detail-flow {
  margin: 0 0 20px;
}

.m-require-003__detail-flow:last-child {
  margin: 0;
}

.m-require-003__detail-flow-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  margin: 0 0 4px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
}

.m-require-003__detail-flow-ttl-number {
  margin: 0 10px 0 0;
  padding: 4px 10px;
  border-radius: 50px;
  background: var(--primary-bg, #04a1af);
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .m-require-003__detail-flow-ttl-number {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.m-require-003__detail-flow-ttl-number _:-ms-fullscreen,
:root .m-require-003__detail-flow-ttl-number {
  padding: 6px 10px 1px;
}

.m-require-003__detail-flow-day {
  color: var(--primary, #04a1af);
}

.m-require-003__entry {
  padding: 40px;
}

@media screen and (max-width: 767px) {
  .m-require-003__entry {
    padding: 20px;
  }
}

.m-require-003__entry-btn {
  position: relative;
  display: block;
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 0;
  background: var(--primary-bg, #04a1af);
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .m-require-003__entry-btn {
    max-width: 80%;
    padding: 30px 0;
  }
}

.m-require-003__entry-btn::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: rgba(17, 17, 17, 0.2);
  content: "";
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.m-require-003__entry-btn:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.m-require-003__entry-btn-txt {
  position: relative;
  z-index: 1;
  padding: 0 10px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-require-003__entry-btn-icon {
  position: relative;
  z-index: 1;
}

.m-require-004 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-require-004 {
    padding: 40px 0;
  }
}

.m-require-004__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.m-require-004__detail {
  padding: 40px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-require-004__detail {
    padding: 14px 20px 20px;
  }
}

.m-require-004__detail-row {
  position: relative;
  border-top: 1px solid #adadad;
}

@media screen and (max-width: 767px) {
  .m-require-004__detail-row {
    display: block;
    padding: 15px;
  }
}

.m-require-004__detail-row:last-child {
  border-bottom: 1px solid #adadad;
}

.m-require-004__detail-ttl {
  position: relative;
  z-index: 1;
  padding: 20px 20px 0;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary, #04a1af);
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-require-004__detail-ttl {
    margin: 0 0 5px;
    padding: 0;
  }
}

.m-require-004__detail-desc {
  position: relative;
  z-index: 1;
  padding: 0 20px 20px;
  line-height: 1.5;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-require-004__detail-desc {
    padding: 0;
  }
}

.m-require-004__detail-desc p {
  white-space: pre-line;
}

.m-require-004__detail-desc h1,
.m-require-004__detail-desc h2,
.m-require-004__detail-desc h3,
.m-require-004__detail-desc h4,
.m-require-004__detail-desc h5,
.m-require-004__detail-desc h6 {
  margin: 1em 0 .5em;
}

.m-require-004__detail-desc h1:first-child,
.m-require-004__detail-desc h2:first-child,
.m-require-004__detail-desc h3:first-child,
.m-require-004__detail-desc h4:first-child,
.m-require-004__detail-desc h5:first-child,
.m-require-004__detail-desc h6:first-child {
  margin: 0 0 .5em;
}

.m-require-004__detail-desc h1:last-child,
.m-require-004__detail-desc h2:last-child,
.m-require-004__detail-desc h3:last-child,
.m-require-004__detail-desc h4:last-child,
.m-require-004__detail-desc h5:last-child,
.m-require-004__detail-desc h6:last-child {
  margin: 1em 0 0;
}

.m-require-004__detail-desc h1 {
  font-size: 36px;
  font-size: 3.6rem;
}

.m-require-004__detail-desc h2 {
  font-size: 32px;
  font-size: 3.2rem;
}

.m-require-004__detail-desc h3 {
  font-size: 28px;
  font-size: 2.8rem;
}

.m-require-004__detail-desc h4 {
  font-size: 24px;
  font-size: 2.4rem;
}

.m-require-004__detail-desc h5 {
  font-size: 20px;
  font-size: 2rem;
}

.m-require-004__detail-desc h6 {
  font-size: 16px;
  font-size: 1.6rem;
}

.m-require-004__detail-desc strong,
.m-require-004__detail-desc b {
  font-weight: 900;
}

.m-require-004__detail-desc ul,
.m-require-004__detail-desc ol {
  margin: 1em 0;
  padding: 0 0 0 26px;
}

.m-require-004__detail-desc ul:first-child,
.m-require-004__detail-desc ol:first-child {
  margin: 0 0 1em;
}

.m-require-004__detail-desc ul:last-child,
.m-require-004__detail-desc ol:last-child {
  margin: 1em 0 0;
}

.m-require-004__detail-desc ul li:not(:last-child),
.m-require-004__detail-desc ol li:not(:last-child) {
  margin: 0 0 6px;
}

.m-require-004__detail-desc ul {
  list-style: disc;
}

.m-require-004__detail-desc ol {
  list-style: decimal;
}

.m-require-004__detail-flow {
  margin: 0 0 20px;
}

.m-require-004__detail-flow:last-child {
  margin: 0;
}

.m-require-004__detail-flow-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  margin: 0 0 4px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
}

.m-require-004__detail-flow-ttl-number {
  margin: 0 10px 0 0;
  padding: 4px 10px;
  border-radius: 50px;
  background: var(--primary-bg, #04a1af);
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .m-require-004__detail-flow-ttl-number {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.m-require-004__detail-flow-ttl-number _:-ms-fullscreen,
:root .m-require-004__detail-flow-ttl-number {
  padding: 6px 10px 1px;
}

.m-require-004__detail-flow-day {
  color: var(--primary, #04a1af);
}

.m-require-004__entry {
  padding: 40px;
}

@media screen and (max-width: 767px) {
  .m-require-004__entry {
    padding: 20px;
  }
}

.m-require-004__entry-btn {
  position: relative;
  display: block;
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 0;
  background: var(--primary-bg, #04a1af);
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .m-require-004__entry-btn {
    max-width: 80%;
    padding: 30px 0;
  }
}

.m-require-004__entry-btn::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: rgba(17, 17, 17, 0.2);
  content: "";
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.m-require-004__entry-btn:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.m-require-004__entry-btn-txt {
  position: relative;
  z-index: 1;
  padding: 0 10px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-require-004__entry-btn-icon {
  position: relative;
  z-index: 1;
}

.m-require-005 {
  position: relative;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-require-005 {
    padding: 40px 0;
  }
}

.m-require-005__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.m-require-005__detail {
  padding: 40px;
}

@media screen and (max-width: 767px) {
  .m-require-005__detail {
    padding: 14px 20px 20px;
  }
}

.m-require-005__detail-row {
  position: relative;
  border-top: 1px solid #adadad;
}

@media screen and (max-width: 767px) {
  .m-require-005__detail-row {
    display: block;
    padding: 15px;
  }
}

.m-require-005__detail-row:last-child {
  border-bottom: 1px solid #adadad;
}

.m-require-005__detail-ttl {
  position: relative;
  z-index: 1;
  padding: 20px 20px 0;
  font-weight: 900;
  line-height: 1.5;
  color: var(--primary, #04a1af);
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-require-005__detail-ttl {
    margin: 0 0 5px;
    padding: 0;
  }
}

.m-require-005__detail-desc {
  position: relative;
  z-index: 1;
  padding: 0 20px 20px;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .m-require-005__detail-desc {
    padding: 0;
  }
}

.m-require-005__detail-desc p {
  white-space: pre-line;
}

.m-require-005__detail-desc h1,
.m-require-005__detail-desc h2,
.m-require-005__detail-desc h3,
.m-require-005__detail-desc h4,
.m-require-005__detail-desc h5,
.m-require-005__detail-desc h6 {
  margin: 1em 0 .5em;
}

.m-require-005__detail-desc h1:first-child,
.m-require-005__detail-desc h2:first-child,
.m-require-005__detail-desc h3:first-child,
.m-require-005__detail-desc h4:first-child,
.m-require-005__detail-desc h5:first-child,
.m-require-005__detail-desc h6:first-child {
  margin: 0 0 .5em;
}

.m-require-005__detail-desc h1:last-child,
.m-require-005__detail-desc h2:last-child,
.m-require-005__detail-desc h3:last-child,
.m-require-005__detail-desc h4:last-child,
.m-require-005__detail-desc h5:last-child,
.m-require-005__detail-desc h6:last-child {
  margin: 1em 0 0;
}

.m-require-005__detail-desc h1 {
  font-size: 36px;
  font-size: 3.6rem;
}

.m-require-005__detail-desc h2 {
  font-size: 32px;
  font-size: 3.2rem;
}

.m-require-005__detail-desc h3 {
  font-size: 28px;
  font-size: 2.8rem;
}

.m-require-005__detail-desc h4 {
  font-size: 24px;
  font-size: 2.4rem;
}

.m-require-005__detail-desc h5 {
  font-size: 20px;
  font-size: 2rem;
}

.m-require-005__detail-desc h6 {
  font-size: 16px;
  font-size: 1.6rem;
}

.m-require-005__detail-desc strong,
.m-require-005__detail-desc b {
  font-weight: 900;
}

.m-require-005__detail-desc ul,
.m-require-005__detail-desc ol {
  margin: 1em 0;
  padding: 0 0 0 26px;
}

.m-require-005__detail-desc ul:first-child,
.m-require-005__detail-desc ol:first-child {
  margin: 0 0 1em;
}

.m-require-005__detail-desc ul:last-child,
.m-require-005__detail-desc ol:last-child {
  margin: 1em 0 0;
}

.m-require-005__detail-desc ul li:not(:last-child),
.m-require-005__detail-desc ol li:not(:last-child) {
  margin: 0 0 6px;
}

.m-require-005__detail-desc ul {
  list-style: disc;
}

.m-require-005__detail-desc ol {
  list-style: decimal;
}

.m-require-005__detail-flow {
  margin: 0 0 20px;
}

.m-require-005__detail-flow:last-child {
  margin: 0;
}

.m-require-005__detail-flow-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  margin: 0 0 4px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

.m-require-005__detail-flow-ttl-number {
  margin: 0 10px 0 0;
  padding: 4px 10px;
  border-radius: 50px;
  background: var(--primary-bg, #04a1af);
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .m-require-005__detail-flow-ttl-number {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.m-require-005__detail-flow-day {
  color: var(--primary, #04a1af);
}

.m-require-005__entry {
  padding: 40px;
}

@media screen and (max-width: 767px) {
  .m-require-005__entry {
    padding: 20px;
  }
}

.m-require-005__entry-btn {
  position: relative;
  display: block;
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 0;
  background: var(--primary-bg, #04a1af);
  color: var(--primary-txt, #fff);
}

@media screen and (max-width: 767px) {
  .m-require-005__entry-btn {
    max-width: 80%;
    padding: 30px 0;
  }
}

.m-require-005__entry-btn::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: rgba(17, 17, 17, 0.2);
  content: "";
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.m-require-005__entry-btn:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.m-require-005__entry-btn-txt {
  position: relative;
  z-index: 1;
  padding: 0 10px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: .2rem;
}

.m-require-005__entry-btn-icon {
  position: relative;
  z-index: 1;
}


/* home */
.home main {
    min-height: calc(100vh - 175px);
}

.topmenu {
    max-width: 1280px;
    margin: 0 auto;
    padding: 110px 80px;
}





ul.topmenulist {
display: flex;
width: 100%;
justify-content: space-between;
flex-wrap: wrap;
margin-top: 50px;
}
ul.topmenulist li {
	width: 48%;

margin-bottom: 40px;
}

ul.topmenulist li a {
    font-size: 23px;
    font-size: 2.3rem;
    line-height: 1.56;
    display: block;
    color: #fff;
    text-align: center;
    padding: 70px 0;
background:#4eac77;
}

ul.topmenulist li:nth-child(2) a {
background:#abcd92;
}
ul.topmenulist li:nth-child(3) a {
background:#abcd92;
}

ul.topmenulist li a:hover {
	text-decoration: none;
	opacity: 0.8;
}
.home .m-footer-001 {
    background: #4eac77;
    color: #fff;
}

@media screen and (max-width: 767px) {
.home main {
    min-height: calc(100vh - 115px);
}
.topmenu {
        padding: 50px 15px;
    }
    html {
        margin-top: 0 !important;
    }

ul.topmenulist {
display: flex;
width: 100%;
justify-content: space-between;
flex-wrap: wrap;
}
ul.topmenulist li {
	width: 100%;

margin-bottom: 20px;
}

ul.topmenulist li a {
        font-size: 18px;
        font-size: 1.8rem;
        line-height: 1.66;
    display: block;
    color: #fff;
    text-align: center;
    padding: 40px 0;
background:#04a1af;
}
}


.m-modulegroup014-005__headline-ja {
    display: block;
    margin-top: 15px;
    padding-left: 160px;
    font-size: 23px;
    font-size: 2.3rem;
    line-height: 1.4;
    text-align: left;
}

.m-modulegroup014-005__headline-en {
    position: relative;
    display: block;
    padding-left: 160px;
    font-family: var(--font-en, "Josefin Sans", "Noto Sans JP", Arial, Helvetica, sans-serif);
    line-height: 1;
    letter-spacing: 0.1em;
    text-align: left;
}
.m-modulegroup014-005__headline {
    width: calc(50% + 130px);
    color: #4eac77;
}
@media screen and (max-width: 767px) {
    .m-modulegroup014-005__headline-en {
        padding-left: 60px;
    }
    .m-modulegroup014-005__headline-ja {
        margin-top: 10px;
        padding-left: 60px;
        font-size: 14px;
        font-size: 1.4rem;
    }
#hairdresser_f .m-modulegroup014-005__feature-item:nth-child(odd) {
background-color: #4eac77; 
}
#hairdresser_f .m-modulegroup014-005__feature-item:nth-child(even) {
background-color: #abcd92; 
}
	
ul.topmenulist li a {
    background: #4eac77;
}
ul.topmenulist li:nth-child(3) a {
    background: #4eac77;
}
ul.topmenulist li:nth-child(4) a {
    background: #abcd92;
}
.m-modulegroup014-005__headline {
    width: calc(50% + 130px);
    color: #4eac77;
}
}
