@charset "UTF-8";
/* ===================
 オリジナル
==================== */
/* ===================
 MIXIN
==================== */
/* ====================
design SIZE SET
==================== */
/* ====================
header height
==================== */
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDPGothic&display=swap");
.u-inview {
  -webkit-animation: none !important;
          animation: none !important;
}

.u-delay-02 {
  -webkit-animation-delay: 0.2s !important;
          animation-delay: 0.2s !important;
}
.u-delay-04 {
  -webkit-animation-delay: 0.4s !important;
          animation-delay: 0.4s !important;
}
.u-delay-05 {
  -webkit-animation-delay: 0.5s !important;
          animation-delay: 0.5s !important;
}
.u-delay-06 {
  -webkit-animation-delay: 0.6s !important;
          animation-delay: 0.6s !important;
}
.u-delay-08 {
  -webkit-animation-delay: 0.8s !important;
          animation-delay: 0.8s !important;
}
.u-delay-10 {
  -webkit-animation-delay: 1s !important;
          animation-delay: 1s !important;
}
.u-delay-12 {
  -webkit-animation-delay: 1.2s !important;
          animation-delay: 1.2s !important;
}
.u-delay-15 {
  -webkit-animation-delay: 1.5s !important;
          animation-delay: 1.5s !important;
}
.u-delay-20 {
  -webkit-animation-delay: 2s !important;
          animation-delay: 2s !important;
}

/*===================================
original
===================================*/
@-webkit-keyframes animate-fadeLoop {
  0% {
    opacity: 0;
  }
  12.5% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  62.5% {
    opacity: 0;
  }
  87.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes animate-fadeLoop {
  0% {
    opacity: 0;
  }
  12.5% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  62.5% {
    opacity: 0;
  }
  87.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/*===================================
filter
===================================*/
.u-blur-in {
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-animation: animate-filter 1.2s 0.2s forwards;
          animation: animate-filter 1.2s 0.2s forwards;
}

@-webkit-keyframes animate-filter {
  to {
    opacity: 1;
    -webkit-filter: none;
            filter: none;
  }
}

@keyframes animate-filter {
  to {
    opacity: 1;
    -webkit-filter: none;
            filter: none;
  }
}
/*===================================
translate
===================================*/
.u-fade-in {
  opacity: 0;
  -webkit-animation: animate-translate 0.8s forwards;
          animation: animate-translate 0.8s forwards;
}
.u-fade-up {
  opacity: 0;
  -webkit-transform: translate(0, 25px);
          transform: translate(0, 25px);
  -webkit-animation: animate-translate 0.8s forwards;
          animation: animate-translate 0.8s forwards;
}
.u-fade-down {
  opacity: 0;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
  -webkit-animation: animate-translate 0.8s forwards;
          animation: animate-translate 0.8s forwards;
}
.u-fade-left {
  opacity: 0;
  -webkit-transform: translate(-50px, 0);
          transform: translate(-50px, 0);
  -webkit-animation: animate-translate 0.8s forwards;
          animation: animate-translate 0.8s forwards;
}
.u-fade-right {
  opacity: 0;
  -webkit-transform: translate(50px, 0);
          transform: translate(50px, 0);
  -webkit-animation: animate-translate 0.8s forwards;
          animation: animate-translate 0.8s forwards;
}

.u-zoom-in {
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: animate-translate 0.8s forwards;
          animation: animate-translate 0.8s forwards;
}

.u-role-in {
  opacity: 0;
  -webkit-transform: translate(-150px, 0) rotate(-360deg);
          transform: translate(-150px, 0) rotate(-360deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: animate-translate 1.3s forwards;
          animation: animate-translate 1.3s forwards;
}

@-webkit-keyframes animate-translate {
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes animate-translate {
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
/*===================================
mask
===================================*/
.u-mask-up {
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 33%, black 50%);
          mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
          mask-image: linear-gradient(to bottom, transparent 0%, transparent 33%, black 50%);
  -webkit-mask-size: 100% 300%;
          mask-size: 100% 300%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: top;
          mask-position: top;
  -webkit-animation: animate-maskUp 2s ease-out forwards;
          animation: animate-maskUp 2s ease-out forwards;
}
.u-mask-down {
  -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
  -webkit-mask-image: linear-gradient(to top, transparent 0%, transparent 33%, black 50%);
          mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
          mask-image: linear-gradient(to top, transparent 0%, transparent 33%, black 50%);
  -webkit-mask-size: 100% 300%;
          mask-size: 100% 300%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: bottom;
          mask-position: bottom;
  -webkit-animation: animate-maskDown 2s ease-out forwards;
          animation: animate-maskDown 2s ease-out forwards;
}
@media only screen and (max-width: 910px) {
  .u-mask-down-sp {
    -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
    -webkit-mask-image: linear-gradient(to top, transparent 0%, transparent 33%, black 50%);
            mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
            mask-image: linear-gradient(to top, transparent 0%, transparent 33%, black 50%);
    -webkit-mask-size: 100% 300%;
            mask-size: 100% 300%;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: bottom;
            mask-position: bottom;
    -webkit-animation: animate-maskDown 2s ease-out forwards;
            animation: animate-maskDown 2s ease-out forwards;
  }
}
.u-mask-left {
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
  -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 33%, black 50%);
          mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
          mask-image: linear-gradient(to right, transparent 0%, transparent 33%, black 50%);
  -webkit-mask-size: 300% 100%;
          mask-size: 300% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: left;
          mask-position: left;
  -webkit-animation: animate-maskLeft 2s ease-out forwards;
          animation: animate-maskLeft 2s ease-out forwards;
}
.u-mask-right {
  -webkit-mask-image: -webkit-gradient(linear, right top, left top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
  -webkit-mask-image: linear-gradient(to left, transparent 0%, transparent 33%, black 50%);
          mask-image: -webkit-gradient(linear, right top, left top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
          mask-image: linear-gradient(to left, transparent 0%, transparent 33%, black 50%);
  -webkit-mask-size: 300% 100%;
          mask-size: 300% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: right;
          mask-position: right;
  -webkit-animation: animate-maskRight 2s ease-out forwards;
          animation: animate-maskRight 2s ease-out forwards;
}

/* アニメーション定義 */
@-webkit-keyframes animate-maskUp {
  to {
    -webkit-mask-position: bottom;
            mask-position: bottom;
  }
}
@keyframes animate-maskUp {
  to {
    -webkit-mask-position: bottom;
            mask-position: bottom;
  }
}
@-webkit-keyframes animate-maskDown {
  to {
    -webkit-mask-position: top;
            mask-position: top;
  }
}
@keyframes animate-maskDown {
  to {
    -webkit-mask-position: top;
            mask-position: top;
  }
}
@-webkit-keyframes animate-maskLeft {
  to {
    -webkit-mask-position: right;
            mask-position: right;
  }
}
@keyframes animate-maskLeft {
  to {
    -webkit-mask-position: right;
            mask-position: right;
  }
}
@-webkit-keyframes animate-maskRight {
  to {
    -webkit-mask-position: left;
            mask-position: left;
  }
}
@keyframes animate-maskRight {
  to {
    -webkit-mask-position: left;
            mask-position: left;
  }
}
/*===================================
回転
===================================*/
.rotateX {
  -webkit-animation: animate-rotateX 8s forwards;
          animation: animate-rotateX 8s forwards;
}

.rotateXcenter {
  -webkit-animation: animate-rotateX 8s forwards;
          animation: animate-rotateX 8s forwards;
}

@-webkit-keyframes animate-rotateX {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes animate-rotateX {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes animate-rotateXcenter {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes animate-rotateXcenter {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
/*==================================================
スーッ
===================================*/
.slideIn {
  -webkit-animation: animate-slideIn 0.4s linear forwards;
          animation: animate-slideIn 0.4s linear forwards;
}

@-webkit-keyframes animate-slideIn {
  from {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
  to {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes animate-slideIn {
  from {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
  to {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
/*==================================================
滑らかに変形して出現
===================================*/
.smooth {
  -webkit-animation: animate-smooth 1s forwards;
          animation: animate-smooth 1s forwards;
  -webkit-transform-origin: left;
          transform-origin: left;
  opacity: 0;
}

@-webkit-keyframes animate-smooth {
  from {
    -webkit-transform: translate3d(0, 100%, 0) skewY(12deg);
            transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0) skewY(0);
            transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}

@keyframes animate-smooth {
  from {
    -webkit-transform: translate3d(0, 100%, 0) skewY(12deg);
            transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0) skewY(0);
            transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}
#contents {
  padding-bottom: 0;
}

#osakakogyo {
  font-family: YakuHanJP, "BIZ UDPGothic", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  overflow: hidden;
}
#osakakogyo section {
  padding: 0;
}
#osakakogyo .color-blue {
  color: #0471fd;
}
#osakakogyo .content__wrap {
  background: url(../../../resources/img/osakakogyo/back_content.png) no-repeat top center/cover;
}
#osakakogyo .content__over {
  background: url(../../../resources/img/osakakogyo/otl_bk_img.png) no-repeat top 360px center/100% auto, url(../../../resources/img/osakakogyo/otl_bk.png) no-repeat top center/cover;
}
#osakakogyo .nav {
  position: relative;
  margin-top: 25px;
  z-index: 5;
}
#osakakogyo .nav__title {
  width: 221px;
  margin: 0 auto;
}
#osakakogyo .nav__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  width: 700px;
  margin: 20px auto 0;
}
#osakakogyo .nav__button {
  display: block;
  width: 340px;
}
#osakakogyo .block {
  position: relative;
  width: 800px;
  margin: 70px auto 0;
}
#osakakogyo .block#taiken {
  z-index: 2;
}
#osakakogyo .block > * {
  position: relative;
}
#osakakogyo .block:nth-of-type(n+2) {
  margin-top: 120px;
}
#osakakogyo .block:last-of-type {
  padding-bottom: 150px;
}
#osakakogyo .block__back {
  position: absolute;
  left: -115px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
}
#osakakogyo .block__back--taiken {
  top: -205px;
  width: 1030px;
  height: 1232px;
  background-image: url(../../../resources/img/osakakogyo/back_taiken.png);
}
#osakakogyo .block__back--project {
  top: -225px;
  width: 1030px;
  height: 1232px;
  background-image: url(../../../resources/img/osakakogyo/back_project.png);
}
#osakakogyo .block__back--setsubi {
  top: -150px;
  width: 1030px;
  height: 1462px;
  background-image: url(../../../resources/img/osakakogyo/back_setsubi.png);
}
#osakakogyo .block__back--shushoku {
  bottom: 0;
  width: 1030px;
  height: 1440px;
  background-image: url(../../../resources/img/osakakogyo/back_shushoku.png);
}
#osakakogyo .block__title {
  text-align: center;
}
#osakakogyo .block__title img {
  width: auto;
  height: 75px;
}
#osakakogyo .block__lead {
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1.87;
  text-align: center;
  color: #fff;
  margin-top: 10px;
}
#osakakogyo .block__note {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 2.33;
  text-align: center;
  text-indent: -1em;
  color: #fff;
  padding-left: 1em;
}
#osakakogyo .block__bord {
  position: relative;
  margin-top: 10px;
}
#osakakogyo .block__movie {
  position: absolute;
  top: -20px;
  right: -27px;
  width: 156.5px;
  z-index: 1;
}
#osakakogyo .block-slide {
  margin-top: 25px;
}
#osakakogyo .block-slide__card {
  position: relative;
  padding: 15px 70px 30px;
  background: #fff;
  -webkit-box-shadow: 7px 5px 7px #5454f8;
          box-shadow: 7px 5px 7px #5454f8;
}
#osakakogyo .block-slide__title {
  text-align: center;
}
#osakakogyo .block-slide__title img {
  width: auto;
  height: 51px;
}
#osakakogyo .block-slide__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
#osakakogyo .block-slide__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 400px;
}
#osakakogyo .block-slide__body {
  font-size: 1rem;
  letter-spacing: 0em;
  line-height: 1.75;
}
#osakakogyo .block-slide__more {
  position: absolute;
  bottom: -23px;
  right: -50px;
  display: block;
  width: 245px;
}
#osakakogyo .block-slide .splide__track {
  overflow: visible;
}
#osakakogyo .block-slide .splide__arrow {
  width: 32px;
  height: 50px;
  background-color: none;
}
#osakakogyo .block-slide .splide__arrow svg {
  display: none;
}
#osakakogyo .block-slide .splide__arrow--prev {
  background: url(../../../resources/img/osakakogyo/slide_arrow_prev.svg) no-repeat center/contain;
}
#osakakogyo .block-slide .splide__arrow--next {
  background: url(../../../resources/img/osakakogyo/slide_arrow_next.svg) no-repeat center/contain;
}
#osakakogyo .block-links {
  margin-top: 50px;
}
#osakakogyo .block-links__title {
  width: 453px;
  margin: 0 auto;
}
#osakakogyo .block-links__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 25px;
  margin-top: 25px;
}
#osakakogyo .block-links__button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 220px;
  height: 40px;
  font-size: 1rem;
  letter-spacing: 0em;
  line-height: 1.75;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: #000;
  border-radius: 100vmax;
  border: 1px solid #000;
}
#osakakogyo .block-links__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  display: block;
  width: 13px;
  height: 13px;
  -webkit-mask-image: url(../../../resources/img/osakakogyo/button_arrow.svg);
          mask-image: url(../../../resources/img/osakakogyo/button_arrow.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#osakakogyo .block-links__button:hover {
  color: #000;
  background: #fff;
}
#osakakogyo .block-links__button:hover::after {
  background: #000;
  right: 7px;
}
#osakakogyo .over {
  padding: 60px 0 125px;
}
#osakakogyo .over__title {
  width: 902px;
  margin: 0 auto;
}
#osakakogyo .over__button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 400px;
  height: 50px;
  font-size: 1rem;
  letter-spacing: 0em;
  line-height: 1.75;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: #000;
  border-radius: 100vmax;
  margin: 20px auto 0;
  border: 1px solid #000;
}
#osakakogyo .over__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  width: 13px;
  height: 13px;
  -webkit-mask-image: url(../../../resources/img/osakakogyo/button_arrow.svg);
          mask-image: url(../../../resources/img/osakakogyo/button_arrow.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#osakakogyo .over__button:hover {
  color: #000;
  background: #fff;
}
#osakakogyo .over__button:hover::after {
  background: #000;
  right: 7px;
}
#osakakogyo .over__card {
  display: block;
  width: 800px;
}
#osakakogyo .over__card--01 {
  width: 699px;
  margin: 145px 0 0 auto;
}
#osakakogyo .over__card--02 {
  margin: 0 auto 0 50px;
}
#osakakogyo .over__card--03 {
  margin: 70px auto 0 175px;
}
#osakakogyo .over__image {
  position: relative;
  width: 270px;
  margin: 30px 105px -140px auto;
  z-index: 1;
}
#osakakogyo .over-more {
  margin-top: 460px;
}
#osakakogyo .over-more__title {
  font-size: 1.625rem;
  letter-spacing: 0em;
  line-height: 1.46;
  text-align: center;
  color: #048cec;
}
#osakakogyo .over-more__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px 30px;
  margin-top: 25px;
}
#osakakogyo .over-more__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 335px;
  height: 46px;
  font-size: 1rem;
  letter-spacing: 0em;
  line-height: 1.75;
  text-decoration: none;
  padding: 0 15px;
  color: #fff;
  background: #048cec;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#osakakogyo .over-more__button::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#osakakogyo .over-more__button:hover::after {
  -webkit-transform: translateX(3px) rotate(45deg);
          transform: translateX(3px) rotate(45deg);
}
#osakakogyo .splide__pagination__page.is-active {
  background: #0471fd;
}

@media only screen and (min-width: 911px) {
  #osakakogyo .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 910px) {
  #contents {
    padding: 0;
  }
  #osakakogyo .pc {
    display: none !important;
  }
  #osakakogyo .content__wrap {
    background: #323c82;
  }
  #osakakogyo .content__over {
    background: url(../../../resources/img/osakakogyo/otl_bk_img_sp.png) no-repeat top 165px center/100% auto, url(../../../resources/img/osakakogyo/otl_bk.png) no-repeat top center/cover;
  }
  #osakakogyo .nav {
    margin-top: 25px;
    z-index: 5;
  }
  #osakakogyo .nav__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    width: 255px;
    margin: 20px auto 0;
  }
  #osakakogyo .nav__button {
    width: 255px;
  }
  #osakakogyo .block {
    width: 90%;
    margin: 70px auto 0;
  }
  #osakakogyo .block#taiken {
    z-index: 2;
  }
  #osakakogyo .block > * {
    position: relative;
  }
  #osakakogyo .block:nth-of-type(n+2) {
    margin-top: 120px;
  }
  #osakakogyo .block:last-of-type {
    padding-bottom: 80px;
  }
  #osakakogyo .block__back {
    position: absolute;
    left: 0;
    background-size: 100% 100%;
  }
  #osakakogyo .block__back--taiken {
    top: calc(-190 / 750 * 100vw);
    left: calc(-50 / 750 * 100vw);
    width: 102vw;
    height: 500px;
  }
  #osakakogyo .block__back--project {
    top: calc(-190 / 750 * 100vw);
    left: calc(-50 / 750 * 100vw);
    width: 102vw;
    height: 500px;
  }
  #osakakogyo .block__back--setsubi {
    top: calc(-190 / 750 * 100vw);
    left: calc(-50 / 750 * 100vw);
    width: 102vw;
    height: 500px;
  }
  #osakakogyo .block__back--shushoku {
    top: calc(-300 / 750 * 100vw);
    left: calc(-50 / 750 * 100vw);
    width: 102vw;
    height: 500px;
  }
  #osakakogyo .block__title {
    text-align: center;
  }
  #osakakogyo .block__title img {
    width: auto;
    height: 40px;
  }
  #osakakogyo .block__lead {
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    line-height: 1.46;
    text-align: left;
  }
  #osakakogyo .block__note {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    line-height: 1.58;
  }
  #osakakogyo .block__movie {
    top: -20px;
    right: -15px;
    width: 80px;
    z-index: 1;
  }
  #osakakogyo .block-slide {
    margin-top: 25px;
  }
  #osakakogyo .block-slide__card {
    position: relative;
    padding: 15px 15px 30px;
    background: #fff;
    -webkit-box-shadow: 3px 2px 3px #5454f8;
            box-shadow: 3px 2px 3px #5454f8;
  }
  #osakakogyo .block-slide__title {
    text-align: center;
  }
  #osakakogyo .block-slide__title img {
    width: 100%;
    height: auto;
  }
  #osakakogyo .block-slide__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    margin-top: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 40px;
  }
  #osakakogyo .block-slide__image {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 100%;
  }
  #osakakogyo .block-slide__body {
    font-size: 1rem;
    letter-spacing: 0em;
    line-height: 1.75;
  }
  #osakakogyo .block-slide__more {
    position: absolute;
    bottom: 30px;
    right: 20px;
    display: block;
    width: 185px;
  }
  #osakakogyo .block-slide .splide__track {
    overflow: visible;
  }
  #osakakogyo .block-slide .splide__arrow {
    width: 16px;
    height: 25px;
    background-color: none;
  }
  #osakakogyo .block-slide .splide__arrow svg {
    display: none;
  }
  #osakakogyo .block-slide .splide__arrow--prev {
    background: url(../../../resources/img/osakakogyo/slide_arrow_prev.svg) no-repeat center/contain;
    left: -10px;
  }
  #osakakogyo .block-slide .splide__arrow--next {
    background: url(../../../resources/img/osakakogyo/slide_arrow_next.svg) no-repeat center/contain;
    right: -10px;
  }
  #osakakogyo .block-links {
    margin-top: 50px;
  }
  #osakakogyo .block-links__title {
    width: 90%;
    margin: 0 auto;
  }
  #osakakogyo .block-links__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
  }
  #osakakogyo .block-links__button {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 160px;
    height: 40px;
    font-size: 0.875rem;
    letter-spacing: 0em;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    background: #000;
    border-radius: 100vmax;
  }
  #osakakogyo .block-links__button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    display: block;
    width: 13px;
    height: 13px;
    background: url(../../../resources/img/osakakogyo/button_arrow.svg) no-repeat center/contain;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  #osakakogyo .block-links__button:hover::after {
    right: 7px;
  }
  #osakakogyo .over {
    padding: 60px 0 70px;
  }
  #osakakogyo .over__title {
    width: 90%;
    margin: 0 auto;
  }
  #osakakogyo .over__button {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 200px;
    height: 55px;
    font-size: 0.875rem;
    letter-spacing: 0em;
    line-height: 1.21;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: #000;
    border-radius: 100vmax;
    margin: 20px auto 0;
  }
  #osakakogyo .over__button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    display: block;
    width: 13px;
    height: 13px;
    background: url(../../../resources/img/osakakogyo/button_arrow.svg) no-repeat center/contain;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  #osakakogyo .over__button:hover::after {
    right: 17px;
  }
  #osakakogyo .over__card {
    display: block;
    width: 90%;
    margin: 30px auto 0;
  }
  #osakakogyo .over__card--01 {
    margin: 50px auto 0;
  }
  #osakakogyo .over__image {
    display: none;
  }
  #osakakogyo .over-more {
    margin-top: 230px;
  }
  #osakakogyo .over-more__title {
    font-size: 1.125rem;
    letter-spacing: 0em;
    line-height: 1.33;
    text-align: center;
    color: #048cec;
  }
  #osakakogyo .over-more__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5px;
    margin-top: 15px;
  }
  #osakakogyo .over-more__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 335px;
    height: 46px;
    font-size: 1rem;
    letter-spacing: 0em;
    line-height: 1.75;
    text-decoration: none;
    padding: 0 15px;
    color: #fff;
    background: #048cec;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    font-weight: bold;
    position: relative;
  }
  #osakakogyo .over-more__button::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 0.3em;
    height: 0.3em;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}