@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
/*--------------------------
Tag Default
---------------------------*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.page-header {
  display: none !important;
}

#siteHeader {
  height: 85px;
}
#siteHeader::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
#siteHeader::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
}
#siteHeader .wrap .logo {
  margin: 10px 0 0 30px;
}

@media only screen and (max-width: 768px) {
 #content { padding: 0; }
  #siteHeader { height: 13.672vw; background:transparent; }
    #siteHeader .wrap .logo {margin: 0; }
}




/*--------------------------
Global
---------------------------*/
main {
  width: 100% !important;
  position: relative !important;
  font-size: 16px;
  font-family: "Noto Sans Japanese";
  font-weight: 400;
  color: #000;
  line-height: 1;
  padding: 0 !important;
  margin: 0 0 0 !important;
  background-color: #afd6d6;
  z-index: 1 !important;
  -webkit-text-size-adjust: 100%;
}

main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url(../images/bg01.webp);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 1920px auto;
  opacity: 0;
  will-change: opacity;
  transform: translateZ(0);
  animation: bgFadeIn 2.5s ease-out forwards;
}

@keyframes bgFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media screen and (min-width: 1921px) {
  main::before {
    background-size: 100% auto; 
    background-position: center calc(0px - ((100vw - 1920px) * 0.25)); 
  }
}

main section {
    margin: 0 auto;
    position: relative;
    z-index: 10;
    background: transparent;
}
#section01::before,
#section-pre02::before,
#section02::before,
#section03::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  z-index: 0;
  pointer-events: none;
}

#section01,
#section02,
#section03 {
  position: relative;
  z-index: 1;
  scroll-padding-top: 14.672vw; 
}

main section p {
  font-size: 14px;
  color: #000;
  line-height: 1.85;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}
img.double {
  zoom: 0.5;
}

.sp_none {
  display: block;
}
.pc_none {
  display: none;
}


.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
  @media only screen and (max-width: 1280px) {
    .container { min-width: 1024px; }
  }

.bg_wrap {
  position: relative;
  width: 100%;
  max-width: 1100px;
  padding: 0 0 115px;
  margin: 0 auto;
}
  @media only screen and (max-width: 1280px) {
    .bg_wrap { min-width: 1024px; }
  }


@media only screen and (max-width: 768px) {
  html, body { width: 100%; padding: 0; margin: 0; overflow-x: hidden; }
    body.scrolled header#siteHeader { background-color: rgba(255, 255, 255, 0.85); }
    main { font-size: 3.733vw; padding: 0 !important; margin: 0 !important; position: relative;   letter-spacing: -0.03em;}
      main::before { width: 100vw; height: auto; background-size: auto 65%; background-position: 80% -0.5%; padding: 0; margin: 0; z-index: 0; }
      main section { width: 100%; }
        main section p { font-size: 3.75vw; line-height: 1.73; letter-spacing: -0.6px; }
  .sp_none { display: none !important;   }
  .pc_none { display: block !important;   }
  .container { min-width: 100%; padding: 0 5.333vw; }
  .bg_wrap { min-width: 100%; padding: 0  2.667vw 6.836vw; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%); }
 }




/*--------------------------
animation
---------------------------*/
.animation {
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animation.active {
  opacity: 1;
}

.animated {
  opacity: 1;
  transform: translateY(0);
}


.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@keyframes fade {
  0%   { opacity: 0.2; }
  50%  { opacity: 1; }
  100% { opacity: 0.2; }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1) !important;
            transform: scale(1) !important;
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) !important;
            transform: scale(1) !important;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1) !important;
            transform: scale(1) !important;
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) !important;
            transform: scale(1) !important;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -5%, 0);
    transform: translate3d(0, -5%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -5%, 0);
    transform: translate3d(0, -5%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2.5%, 0, 0);
    transform: translate3d(-2.5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2.5%, 0, 0);
    transform: translate3d(-2.5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2.5%, 0, 0);
    transform: translate3d(2.5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2.5%, 0, 0);
    transform: translate3d(2.5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 5%, 0);
    transform: translate3d(0, 5%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 5%, 0);
    transform: translate3d(0, 5%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}


@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}


@keyframes arrowMove {
  0% {
    background-position: calc(100% - 10px) center;
  }
  50% {
    background-position: calc(100% - 0px) center;
  }
  100% {
    background-position: calc(100% - 10px) center;
  }
}

.fadeIn,
.fadeInRight,
.fadeInLeft,
.fadeInDown,
.fadeInUp,
.zoomIn {
  animation-duration: 1s;
  animation-fill-mode: both;
  opacity: 0;
}

.zoom-on-hover {
  display: inline-block;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease-in-out;
  will-change: transform;
}

.zoom-on-hover img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease-in-out;
}

.zoom-on-hover:hover img {
  transform: scale(1.05);
}

/* ▼ 囲みアニメーション */

/* 初期状態（非表示） */
.border-draw {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.border-draw::before,
.border-draw::after,
.border-draw span::before,
.border-draw span::after {
  content: "";
  position: absolute;
  background-color: #367b85;
  transition: all 0.4s ease;
  z-index: 1;
}

/* 上線：左→右 */
.border-draw::before {
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
}

/* 下線：右→左（正） */
.border-draw::after {
  bottom: 0;
  right: 0;
  height: 2px;
  width: 0;
}

/* 右線：上→下 */
.border-draw span::before {
  top: 0;
  right: 0;
  width: 2px;
  height: 0;
}

/* 左線：下→上 */
.border-draw span::after {
  bottom: 0;
  left: 0;
  width: 2px;
  height: 0;
}

/* hover時の描画 */
.border-draw:hover::before {
  width: 100%;
}

.border-draw:hover::after {
  width: 100%;
}

.border-draw:hover span::before {
  height: 100%;
}

.border-draw:hover span::after {
  height: 100%;
}


/*--------------------------
main_visual
---------------------------*/
#ineterview_dev01  #main_visual {
  width: 100%;
  height: auto;
  padding: 325px 0 0;
  overflow: hidden;
}
#main_visual .mv_wrap {
  position: relative;
  height: auto;
  overflow: hidden;
}
#main_visual .mv_wrap .h1-lead {
  margin-bottom:20px;
}
#main_visual .mv_wrap figure {
  width: 80%;
}

@media only screen and (max-width: 768px) {
  #ineterview_dev01 #main_visual { position: relative; width: 100%; height: 100svh;  padding-top: 0; }
  #ineterview_dev01 .mv_wrap { position: absolute; top: 55%; left: 50%; transform: translate(-50%, -50%); text-align: center; width: 100%; padding: 0;  }
       #ineterview_dev01 #main_visual figure { width: 100% !important; }
        #ineterview_dev01 #main_visual .h1-lead {margin-bottom: 5.333vw; }
         #ineterview_dev01#main_visual .h1-lead figure { width: 100% !important; }
}

/*--------------------------
section01
---------------------------*/
#section01 {
  display: block;
   position: relative;
  margin-top: 240px;
  padding: 120px 0;
  text-align: center;
}

/* タイトルwrap */
.s1_h1_wrap {
  position: relative;
  text-align: center;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto 90px;
}

/* h1本体 */
.s1_h1_wrap h1 {
  display: inline-block;
  position: relative;
  padding: 0 80px;
  border-left: 3px solid #367b85;
  border-right: 3px solid #367b85;
  background: transparent;
  z-index: 1;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.89;
  letter-spacing: .1em;
  color: #007d87;
}

.s1_h1_wrap h1::before,
.s1_h1_wrap h1::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc((1100px - 100%) / 2 ); 
  height: 3px;
  background-color: #367b85;
  transform: translateY(-50%);
}

.s1_h1_wrap h1::before {
  right: 100%;
  margin-right: 0;
}

.s1_h1_wrap h1::after {
  left: 100%;
  margin-left: 0;
}

.s1_h1_wrap figure {
  width: 320px;
}


#section01 .box_wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 90px;
}

#section01 .border_wrap ul {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end; 
  gap: 20px;
  padding: 55px;
  margin: 0 auto 90px;
  background-color: #d7eaeb;
}
.border_wrap {
  position: relative;
}

.border_wrap .ul-corner-tl,
.border_wrap .ul-corner-tr,
.border_wrap .ul-corner-bl,
.border_wrap .ul-corner-br {
  position: absolute;
  width: 0;
  height: 0;
}

.border_wrap .ul-corner-tl {
  top: 0;
  left: 0;
}
.border_wrap .ul-corner-tr {
  top: 0;
  right: 0;
}
.border_wrap .ul-corner-bl {
  bottom: 0;
  left: 0;
}
.border_wrap .ul-corner-br {
  bottom: 0;
  right: 0;
}

.border_wrap .ul-corner-tl::before,
.border_wrap .ul-corner-tr::before,
.border_wrap .ul-corner-bl::before,
.border_wrap .ul-corner-br::before,
.border_wrap .ul-corner-tl::after,
.border_wrap .ul-corner-tr::after,
.border_wrap .ul-corner-bl::after,
.border_wrap .ul-corner-br::after {
  content: "";
  position: absolute;
  background-color: #003953;
  z-index: 10;
}

.border_wrap .ul-corner-tl::before {
  top: 0;
  left: 0;
  width: 2px;
  height: 100px;
}
.border_wrap .ul-corner-tl::after {
  top: 0;
  left: 0;
  width: 100px;
  height: 2px;
}

.border_wrap .ul-corner-tr::before {
  top: 0;
  right: 0;
  width: 2px;
  height: 100px;
}
.border_wrap .ul-corner-tr::after {
  top: 0;
  right: 0;
  width: 100px;
  height: 2px;
}

.border_wrap .ul-corner-bl::before {
  bottom: 0;
  left: 0;
  width: 2px;
  height: 100px;
}
.border_wrap .ul-corner-bl::after {
  bottom: 0;
  left: 0;
  width: 100px;
  height: 2px;
}

.border_wrap .ul-corner-br::before {
  bottom: 0;
  right: 0;
  width: 2px;
  height: 100px;
}
.border_wrap .ul-corner-br::after {
  bottom: 0;
  right: 0;
  width: 100px;
  height: 2px;
}

#section01 .box_wrap p {
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.93;
}

@media only screen and (max-width: 768px) {
  #section01 {  margin-top: 0; padding: 10.667vw 0;  }
    .s1_h1_wrap {max-width: 94%; margin: 0 auto 60px; }
      .s1_h1_wrap h1 { width: 100%; padding: 0 4vw;   border-left: 3px solid #367b85; border-right: 3px solid #367b85; font-size: 4.199vw; line-height: 1.79; }
        .s1_h1_wrap h1::before,.s1_h1_wrap h1::after {  width: 4vw; height: 0.8vw; }
        .s1_h1_wrap figure {width: 95%; margin: 0 auto; }
    #section01 .box_wrap {max-width: 100%; margin: 0 2.667vw; }
      #section01 .border_wrap ul {  gap: 5.333vw; padding: 5.333vw; margin: 0 auto 40px; }
        .border_wrap .ul-corner-tl::before, .border_wrap .ul-corner-tr::before, .border_wrap .ul-corner-bl::before, .border_wrap .ul-corner-br::before { height: 8vw; }
        .border_wrap .ul-corner-tl::after, .border_wrap .ul-corner-tr::after, .border_wrap .ul-corner-bl::after, .border_wrap .ul-corner-br::after { width: 8vw; }
      #section01 .box_wrap p { padding: 0; font-size: 2.93vw !important; }
}


/*--------------------------
section02
---------------------------*/
#section02 {
  margin: 140px 0 0;
  padding: 30px;
}
#section02 figure {
  overflow: hidden;
}
#section02 figure a {
  display: block;
}
#section02 figure figcaption {
  display: none;
}
#section02 figure a:hover img {
  display: block;
}

@media only screen and (max-width: 768px) {
  #section02 { margin: 26.667vw 0 0; padding: 2.667vw 2.667vw 0; }
    #section02 figure  {text-align: center; }
    #section02 figure a  {position: relative; display: inline-block;}
      #section02 figure a figcaption { position: relative; display: block; font-weight: 700; line-height: 1; color: #367b85; padding: 3.2vw 0; font-size: 2.441vw;}
        #section02 figure a figcaption::after { content: ""; position: absolute; top: 50%; right: 1.067vw; transform: translateY(-50%); width: 16vw; height: 4.267vw; background-image: url("../images/link_arrow.webp"); background-size: contain; background-repeat: no-repeat; background-position: right center; filter: brightness(0) saturate(100%) invert(26%) sepia(40%) saturate(508%) hue-rotate(138deg) brightness(90%) contrast(97%); }
}

/*--------------------------
section03
---------------------------*/
#section03 {
  margin: 120px 0 0;
  padding: 70px 120px 45px;
  text-align: center;
}

#section03 h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 60px;
}
  #section03 h2 figure {
    width: 80%;
    margin: 0 auto;
  }

#section03 .txt_box {
  text-align: center;
  margin: 0 0 60px;
}

#section03 .txt_box p {
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.93;
}

#section03 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#section03 ul li {
  width: calc(50% - 25px);
  margin: 0 0 75px;
}

#section03 ul li dl.interview {
  border-top: solid 4px #367b85;
  color:  #367b85;
}

#section03 ul li dl.introduce {
  border-top: solid 4px #485ec6;
  color:  #485ec6;
}
  #section03 ul li dt {
      padding: 16px 0;
    text-align: left;
    font-size: 21px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
  }
  #section03 ul li dd figcaption {
     position: relative;
  transition: background-position 0.3s ease;
  background-position: calc(100% - 10px) center;
 margin-top: 6px;
    padding: 15px 0;
    background-image: url(../images/link_arrow.webp) ;
    background-repeat: no-repeat;
    background-size: 15%;
    background-position: calc(100% - 10px) center; 
    font-size: 14px;
    color: #fff;
  }
#section03 ul li dd a:hover figcaption {
  animation: bgShift 0.4s infinite alternate;
}

@keyframes bgShift {
  0% {
    background-position: calc(100% - 10px) center;
  }
  100% {
    background-position: calc(100% - 0px) center;
  }
}#section03 ul li dd figcaption:hover {
  animation: arrowMove 0.6s infinite linear;
}
    #section03 ul li dd a {
    display: block;
  }
    #section03 ul li dl.interview figcaption {
     background-color:  #73cfbe;
    }

    #section03 ul li dl.introduce figcaption {
      background-color:  #8591ee;
    }
    #section03 ul li dl figcaption.uc {
     background-image: none;
     background-color:  #919191 !important;
    }
      #section03 ul li dd figcaption.uc:hover {
        animation: never;
      }


#section03 ul li figure {
  display: inline-block;
  overflow: hidden;
}
#section03 ul li figure a {
  display: inline-block;
  overflow: hidden;
}
#section03 ul li figure a img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
  will-change: transform;
}

#section03 ul li figure a:hover img {
  transform: scale(1.1);
}

#section03 .caption_box {
  text-align: center;
}
#section03 .caption_box p {
  position: relative;
  display: inline-block;
  color: #000;
  padding: 0 0 0 16px;
}
@media only screen and (max-width: 768px) {
  #section03 { margin: 26.667vw 0 0; padding: 2.667vw 2.667vw 0; }
    #section03 h2 { margin: 8vw 21.333vw; }
      #section03 .txt_box p { font-size: 2.93vw !important;   }
      #section03 ul { padding: 0 2.667vw; flex-direction: column; }
        #section03 ul li { width: 100%;  margin: 0 0 14.667vw; }
          #section03 ul li dl.interview { border-top: solid 3px #367b85; }
          #section03 ul li dl.introduce { border-top: solid 3px #485ec6; }
            #section03 ul li dt { padding: 5.333vw 0; font-size: 3.711vw; letter-spacing: -0.05em; } 
              #section03 ul li dd figcaption { padding: 2.667vw 0; font-size: 2.441vw;  }
}



/*----------------------------------------------------------------------------
Collab-Talk
-----------------------------------------------------------------------------*/
.ineterview_dev01_collab-talk main::before {
  background-position: center -100px;
}

/*--------------------------
Collab-Talk main_visual
---------------------------*/
.ineterview_dev01_collab-talk main #main_visual {
  position: relative;
  padding: 155px 0 0;
}

.ineterview_dev01_collab-talk main #main_visual time {
  position: relative;
  display: block;
  margin: 20px 20px 0;
  font-size: 30px;
  font-weight: 400;
  color: #137d86;
  line-height: 3;
  text-shadow:
    0 0 1px  #fff,
    0 0 2px  #fff,
    0 0 3px  #fff,
    0 0 4px  #fff,
    0 0 5px  #fff,
    0 0 6px  #fff,
    0 0 8px  #fff,
    0 0 10px #fff,
    0 0 12px #fff,

    4px 0 12px #fff,
   -4px 0 12px #fff,
    6px 0 14px #fff,
   -6px 0 14px #fff,

    4px 4px 14px #fff,
   -4px 4px 14px #fff,
    4px -4px 14px #fff,
   -4px -4px 14px #fff;
}

@media only screen and (max-width: 768px) {
  .ineterview_dev01_collab-talk main::before { width: 100vw; height: 100%; background-size: 180%; background-repeat: no-repeat; background-position: -210px -30px; }
   .ineterview_dev01_collab-talk  #main_visual { height: auto; min-height: 50vh; }
     .ineterview_dev01_collab-talk .mv_wrap { position: absolute !important; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; width: 100%; padding: 0;  }
       .ineterview_dev01_collab-talk #main_visual figure { width: 80% !important; }
        .ineterview_dev01_collab-talk #main_visual .h1-lead {margin: 10.667vw 0 5.333vw; }
         .ineterview_dev01_collab-talk #main_visual .h1-lead figure { width: 25% !important; }
       .ineterview_dev01_collab-talk main #main_visual time { font-size: 4.267vw; font-weight: 400; text-align: left; }
 }

/*--------------------------
Collab-Talk section01
---------------------------*/
.ineterview_dev01_collab-talk main #section01 {
  margin-top: 90px;
  padding: 120px;
  text-align: left;
}
.ct-introduction {
  position: relative;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}
  .ct-introduction figure {
    width: 430px;
  }
  .ct-introduction .ct-flex01 {
    width: 370px;
    font-weight: 500;
  }
    .ct-introduction .ct-flex01 ul {
      margin-top: 1em;
    }
      .ct-introduction .ct-flex01 li {
        font-size: 12px;
            line-height: 1.85;
      }
  .ct-introduction .ct-flex01 sup {
    vertical-align: super;
    font-size: smaller
  }

@media only screen and (max-width: 768px) {
  .ineterview_dev01_collab-talk main #section01 { margin-top: 5.333vw; padding: 8vw; }
.ct-introduction { display: block; }
  .ct-introduction figure { width: 100%; margin-bottom: 5.333vw; }
  .ct-introduction .ct-flex01 { width: 100%; }
    .ct-introduction .ct-flex01 li { font-size: 2.5vw; line-height: 1.73; letter-spacing: -0.6px; }
}

/*--------------------------
Collab-Talk section_pre02
---------------------------*/
.ineterview_dev01_collab-talk main #section-pre02 {
    width: 100%;
    position: relative;
    margin: 120px auto;
    padding: 0;
}

.ineterview_dev01_collab-talk main #section-pre02 .wrap {
    width: 100%;
    padding: 70px 50px;
    text-align: center;
}
.ineterview_dev01_collab-talk main #section-pre02 h2 {
    text-align: center;
    font-size: 35px;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin: 0 0 55px;
    position: relative;
    z-index: 10;
}
.ineterview_dev01_collab-talk main #section-pre02 ul {
    width: 800px;
    display: flex;
    justify-content: center;
    flex-flow: column;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}
.ineterview_dev01_collab-talk main #section-pre02 li {
    position: relative;
    border: 1px solid #000;
    margin: 0 8px 17px;
}
.ineterview_dev01_collab-talk main #section-pre02 li a span {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 25px 48px;
    z-index: 10;
    display: flex;
    align-items: center;
}

.ineterview_dev01_collab-talk main #section-pre02 li a span:before {
    background: #000;
    opacity: 1;
    content: "";
    width: 43px;
    height: 1px;
    position: absolute;
    right: 0;
    top: 50%;
    transition: 0.3s;
    transition-delay: 0.05s;
}
.ineterview_dev01_collab-talk main #section-pre02 li a i {
    width: 100%;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.1em;
    color: #000;
    transition: color 0.3s;
}
           .ineterview_dev01_collab-talk main #section-pre02 li:hover a  i {
              color: #ccc;
            }

.ineterview_dev01_collab-talk main #section-pre02 li a:before, #anchor_nav li a:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

@media only screen and (max-width: 768px) {
  .ineterview_dev01_collab-talk main #section-pre02 { width: 100%; margin: 90px 0 0 auto; padding: 0 2.667vw; }
    .ineterview_dev01_collab-talk main #section-pre02  .wrap { padding: 9.766vw 7px; }
    .ineterview_dev01_collab-talk main #section-pre02  h2 { font-size: 5.859vw; margin: 0 0 6.836vw;  }
    .ineterview_dev01_collab-talk main #section-pre02  ul { width: 100%;  }
      .ineterview_dev01_collab-talk main #section-pre02 li a i  { font-size: 3.75vw; letter-spacing: -0.8px; }
 }


/*--------------------------
Collab-Talk section02
---------------------------*/
.ineterview_dev01_collab-talk main #section02 {
  padding: 30px 60px 0;
}
  .ineterview_dev01_collab-talk main #section02 a {
    text-decoration: underline; }
      .ineterview_dev01_collab-talk main #section02 a:hover {
      text-decoration: none; }

/* detail */
.ineterview_dev01_collab-talk main .entrybody .wrap { width: 990px; margin: auto;     padding: 30px 77px 140px;    text-align: center;}
.ineterview_dev01_collab-talk main .entrybody .wrap figure { width: 640px; margin: 0 0 0 120px; padding: 30px 0; }
  .ineterview_dev01_collab-talk main .entrybody .wrap figure img { width:430px; margin: 0 auto;}
    .ineterview_dev01_collab-talk main .entrybody .wrap figure.size_middle .dev01_youtube { position: relative; padding-top: 56.25%;}
      .ineterview_dev01_collab-talk main .entrybody .wrap figure.size_middle  .dev01_youtube iframe { width: 100%;  height: 100%; position: absolute; top: 0; left: 0;}
.ineterview_dev01_collab-talk main  main p.note, .ineterview_dev01_collab-talk main  main span.note { font-size: 14px; }
.ineterview_dev01_collab-talk main  main .entry-header .header-bottom h1 { font-size: 28px; }
.ineterview_dev01_collab-talk main .entrybody .wrap h2 { font-size: 28px; font-weight: bold; display: inline-block; line-height: 1.5; position: relative; padding: 0 0 20px; letter-spacing: 0.1em;
    margin: 40px 0 54px; transform: rotate(0.05deg);}
  .ineterview_dev01_collab-talk main .entrybody .wrap h2:before { content: ""; width: 472px; height: 3px; background: #137d86; position: absolute; left: 50%; bottom: 0; margin-left: -236px; }.ineterview_dev01_collab-talk main .entrybody .wrap figure + h3 { margin-top: 20px; }
.ineterview_dev01_collab-talk main .entrybody .wrap h3 { position: relative; margin-bottom: 33px; transform: rotate(0.05deg); padding: 0 0 0 120px; font-size: 20px; line-height: 1.6; letter-spacing: 0.1em; font-weight: 700; text-align: left;}
  .ineterview_dev01_collab-talk main .entrybody .wrap h3::before { content: ""; width: 70px; height: 1px; background: #000; position: absolute; left: 0; top: 16px; }
  .ineterview_dev01_collab-talk main .entrybody .wrap h3.h3_first { margin-top: 3em;}
.ineterview_dev01_collab-talk main .entrybody {   position: relative; font-size: 16px; line-height: 2.5;}
.ineterview_dev01_collab-talk main .entrybody .wrap p { text-align: left; font-weight: 400; line-height: 1.93; letter-spacing: 0.1em; transform: rotate(0.05deg); font-size: 16px;}
  .ineterview_dev01_collab-talk main .entrybody .wrap p + h2, .ineterview_dev01_collab-talk main .entrybody .wrap figure + h2, .ineterview_dev01_collab-talk main .entrybody .wrap h3 + h2 {  margin-top: 4em;  } 
 .ineterview_dev01_collab-talk main .entrybody .wrap p + h3 {  margin-top: 3em;  }
  .ineterview_dev01_collab-talk main .entrybody .wrap h3 + p { margin-top: 3em; }
  .ineterview_dev01_collab-talk main .entrybody .wrap p + p { margin-top: 2em; }
    .ineterview_dev01_collab-talk main .entrybody .wrap p:not(.name) { position: relative; padding: 0 0 0 120px;  }
      .ineterview_dev01_collab-talk main .entrybody .wrap span.name { position: absolute; left: 0; top: 0; transform: rotate(0.05deg); font-weight: 500; }
.ineterview_dev01_collab-talk main .entrybody .wrap span.name span { background-color: #137d86; width: 70px; line-height: 1; display: inline-block; padding: 8px 6px; text-align: center; font-weight: 500; font-size: 14px; color: #fff;}
    .ineterview_dev01_collab-talk main .entrybody .wrap p.caption { width: 640px; margin:  -30px  auto 60px; padding: 0 10px; font-size: 16px; font-weight: 400; text-align: left; }
    .ineterview_dev01_collab-talk main .entrybody .wrap p.caption_center { width: 640px; margin:  -.5em  auto 60px; padding: 0 10px; font-size: 16px; font-weight: 400; text-align: center; }
    .ineterview_dev01_collab-talk main .entrybody .wrap sup { vertical-align: super; font-size: 10px;}
    .ineterview_dev01_collab-talk main .entrybody .wrap .annotation { display: inline-block; margin-top: 1em;  font-size: 14px; font-weight: normal; }


@media (max-width: 768px) {
  .ineterview_dev01_collab-talk main #section02 { padding: 0 5.333vw 0; }
    .ineterview_dev01_collab-talk main .entrybody .wrap { width: 100%; margin: auto; padding: 0 0 21.333vw; text-align: center; }
.ineterview_dev01_collab-talk main .entrybody .wrap figure { width: 100%; margin: 0; padding: 5.333vw 0; }
  .ineterview_dev01_collab-talk main .entrybody .wrap figure img { width:100%; }
    .ineterview_dev01_collab-talk main main p.note,     .ineterview_dev01_collab-talk main main span.note { font-size: 2.5vw; }
    .ineterview_dev01_collab-talk main main .entry-header .header-bottom h1 { font-size: 5.625vw; letter-spacing: -0.213vw;}
    .ineterview_dev01_collab-talk main .entrybody .wrap h2 { font-size: 4.199vw; line-height: 1.5; position: relative; padding: 0 0 2.344vw; margin: 12.695vw 0 10.742vw; font-weight: 700; }
      .ineterview_dev01_collab-talk main .entrybody .wrap h2:before { width: 74.512vw; height: 0.586vw; margin-left: -37.207vw; }
    .ineterview_dev01_collab-talk main .entrybody .wrap h3 {font-size: 3.906vw; font-weight: 500; line-height: 1.63; letter-spacing: 0.1em; text-align: left; padding: 0; position: relative; margin-bottom: 3.906vw;}
      .ineterview_dev01_collab-talk main .entrybody .wrap h3::before { display: none;}
      .ineterview_dev01_collab-talk main .entrybody .wrap h3.h3_first { margin-top: 0;}
    .ineterview_dev01_collab-talk main .entrybody { padding: 0 0 ; font-size: 3.75vw; }
    .ineterview_dev01_collab-talk main .entrybody .wrap p { font-size: 3.223vw;
        line-height: 1.73;}
    .ineterview_dev01_collab-talk main .entrybody .wrap span.name { position: relative; display: block; font-size: 2.539vw; margin-bottom: 1.465vw; }
.ineterview_dev01_collab-talk main .entrybody .wrap span.name span { font-size: 2.539vw; }
    .ineterview_dev01_collab-talk main .entrybody .wrap p:not(.name) {  padding: 0;  }
    .ineterview_dev01_collab-talk main .entrybody .wrap p.caption { width: 100%; margin:  -2em  auto 3em; padding: 0 5.333vw; font-size: 3.4375vw; font-weight: normal;}
    .ineterview_dev01_collab-talk main .entrybody .wrap p.caption_center {  width: 100%; margin:  .5em  auto 3em; padding: 0 5.333vw; font-size: 3.4375vw; font-weight: normal; }
    .ineterview_dev01_collab-talk main .entrybody .wrap sup { font-size: 2.5vw;}
    .ineterview_dev01_collab-talk main .entrybody .wrap .annotation { font-size: 3.4375vw; font-weight: normal;}
}



/*----------------------------------------------------------------------------
Interview
-----------------------------------------------------------------------------*/

.ineterview_dev01_collab-talk main #main_visual .mv_wrap figure {
  width: 60%;
}


/*--------------------------
Interview main_visual
---------------------------*/
.ineterview_dev01_collab-talk main.dev01_interview .txt_title {
  margin: -20px 0 0;
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: #137d86;
  line-height: 3;
  text-shadow:
    0 0 1px  #fff,
    0 0 2px  #fff,
    0 0 3px  #fff,
    0 0 4px  #fff,
    0 0 5px  #fff,
    0 0 6px  #fff,
    0 0 8px  #fff,
    0 0 10px #fff,
    0 0 12px #fff,

    4px 0 12px #fff,
   -4px 0 12px #fff,
    6px 0 14px #fff,
   -6px 0 14px #fff,

    4px 4px 14px #fff,
   -4px 4px 14px #fff,
    4px -4px 14px #fff,
   -4px -4px 14px #fff;
}

@media only screen and (max-width: 768px) {
  .ineterview_dev01_collab-talk main.dev01_interview #main_visual .mv_wrap .interview-h1-lead { width: 90% !important; margin: 120px 0 0 2.667vw;     }
  .ineterview_dev01_collab-talk main.dev01_interview .txt_title { font-size: 7.467vw; text-align: left; margin: 8px 16px 0;}
}

/*--------------------------
Interview section01
---------------------------*/
.ineterview_dev01_collab-talk main.dev01_interview #section01 {
    width: 100%;
    position: relative;
    margin: 120px auto;
    padding: 0;
}

.ineterview_dev01_collab-talk main.dev01_interview #section01 .wrap {
    width: 100%;
    padding: 70px 50px;
    text-align: center;
}
.ineterview_dev01_collab-talk main.dev01_interview #section01 h2 {
    text-align: center;
    font-size: 35px;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin: 0 0 55px;
    position: relative;
    z-index: 10;
}
.ineterview_dev01_collab-talk main.dev01_interview #section01 ul {
    width: 800px;
    display: flex;
    justify-content: center;
    flex-flow: column;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}
.ineterview_dev01_collab-talk main.dev01_interview #section01 li {
    position: relative;
    border: 1px solid #000;
    margin: 0 8px 17px;
}
.ineterview_dev01_collab-talk main.dev01_interview #section01 li a span {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 25px 48px;
    z-index: 10;
    display: flex
;
    align-items: center;
}
.ineterview_dev01_collab-talk main.dev01_interview #section01 li a span:before {
    background: #000;
    opacity: 1;
    content: "";
    width: 43px;
    height: 1px;
    position: absolute;
    right: 0;
    top: 50%;
    transition: 0.3s;
    transition-delay: 0.05s;
}
.ineterview_dev01_collab-talk main.dev01_interview #section01 li a i {
    width: 100%;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.1em;
    color: #000;
    transition: color 0.3s;
}
.ineterview_dev01_collab-talk main.dev01_interview #section01 li a:before, #anchor_nav li a:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

@media only screen and (max-width: 768px) {
  .ineterview_dev01_collab-talk main.dev01_interview #section01 { width: 100%; margin: 0 auto; padding: 0 2.667vw; }
    .ineterview_dev01_collab-talk main.dev01_interview #section01  .wrap { padding: 9.766vw 7px; }
    .ineterview_dev01_collab-talk main.dev01_interview #section01  h2 { font-size: 5.859vw; margin: 0 0 6.836vw;  }
    .ineterview_dev01_collab-talk main.dev01_interview #section01  ul { width: 100%;  }
      .ineterview_dev01_collab-talk main.dev01_interview #section01 li a i  { font-size: 3.75vw; letter-spacing: -0.8px; }
 }


/*--------------------------
Interview section02
---------------------------*/
.ineterview_dev01_collab-talk main.dev01_interview .entrybody .wrap h3 {
    font-weight: 500;
}
.ineterview_dev01_collab-talk main.dev01_interview .entrybody .wrap h2:before {
    background: #18c36d;
}
.ineterview_dev01_collab-talk main.dev01_interview .entrybody .wrap span.name span { background-color: #18c36d; }
.ineterview_dev01_collab-talk main .entrybody .wrap video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9; 
  object-fit: contain; 
  display: block;
  max-width: 100%;
}


/*  pagetop_nav */
.button {
  position: fixed;
  display: block;
  width: 200px;
  height: 2.2em;
  left:calc(50% - 100px);
  bottom: 20px;
  padding-bottom:.5em;
  border-radius: 20px 20px 20px 20px;
  background: #f0f0f0;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  z-index: 30;
}
/*クラスが付与されると表示する*/
.active {
  opacity: 0.9;
  visibility: visible;
}
/*このクラスが付与されると表示する*/
.absolute{
  position: absolute;
  background: #fff;
  left:calc(50% - 100px);
  bottom: 760px;
  transition: opacity 0.3s;
}
  .collab-talk.button.absolute{
  position: absolute;
  background: #fff;
  left:calc(50% - 100px);
  bottom: 440px;
  transition: opacity 0.3s;
  }
  .button:hover { opacity: 0.6; }
  .button p {
      display: block;
      width: 200px;
      height: 3em;
      opacity: 1;
  }
  .button i {
    display: block;
    width: 1px;
    height: 16px;
    position: absolute;
    top: 0;
    left: 100px;
    overflow: hidden;
  }
  .button span {
    display: block;
    position: absolute;
    width: 200px;
    left:50%;
    bottom: 0;
    margin-left:-100px;
    font-family: "din-2014-narrow", sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.8;
    white-space: nowrap;
  }
    .button  i:before, .button  i:after {
      content: "";
      width: 100%;
      height: 100%;
      background: #000;
      position: absolute;
      left: 0;
      top: 0;
  }
    .button  i:after {
      opacity: 0;
    }
    .button:hover i:before {
      animation: hoverupout 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards; }
    .button:hover i:after {
      animation: hoverupin 0.7s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

@media only screen and (max-width: 768px) {
.ineterview_dev01_collab-talk main.dev01_interview #section02 {padding-bottom: 0;}
  .button { bottom: 10.667vw; font-size: 3.5vw;}
    .button span { font-size: 2.93vw; }
    .collab-talk.button.absolute  { bottom: 77vw;}
.absolute {  bottom: 60vw;}
.interview-btn.button.active.absolute {  bottom: 150vw;}
}

/*--------------------------
sec-jobs
---------------------------*/
  .ineterview_dev01_collab-talk main.dev01_interview section.sec-jobs {
    position: relative;
    width: 1100px;
    min-height: 14em;
    margin: 70px auto 0;
    background: #fff;
    z-index: 1;
}
  .ineterview_dev01_collab-talk main.dev01_interview section.sec-jobs .wrap {
    width: 100%;
    position: relative;
    padding: 40px 50px 30px;
}
  .ineterview_dev01_collab-talk main.dev01_interview section.sec-jobs .wrap h2 {
    font-size: 20px;
    font-weight: 500;
    background: #efefef;
    padding: 13px 27px;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}
  .ineterview_dev01_collab-talk main.dev01_interview section.sec-jobs .wrap ul li {
    font-size: 16px;
    font-weight: 500;
    padding: 0 20px;
    position: relative;
    line-height: 1.93;
}
  .ineterview_dev01_collab-talk main.dev01_interview section.sec-jobs .wrap ul li a:hover {
    text-decoration: underline; }
  .ineterview_dev01_collab-talk main.dev01_interview section.sec-jobs .wrap ul li:before {
    content: "・";
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 0;
}
  .ineterview_dev01_collab-talk main.dev01_interview section.sec-jobs .wrap .outside a::after {
    content: "";
    display: inline-block;
    width: 19.2px;
    height: 12px;
    margin-left: 10px;
    background: url(/images/common/icon-blank.png) center center no-repeat;
    background-size: contain;
    vertical-align: -1px;
    transition: transform 0.3s;
}
  .ineterview_dev01_collab-talk main.dev01_interview section .wrap .notes .note {
    margin-top: 1em;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #9f9f9f;
    text-align: right;
}

@media only screen and (max-width: 768px) {
  .ineterview_dev01_collab-talk main.dev01_interview section.sec-jobs {position:relative; width: 100%; margin: 8.789vw auto 0; padding: 0; }
    .ineterview_dev01_collab-talk main.dev01_interview section.sec-jobs .wrap { width: 100%; padding: 9.766vw 18px; }
      .ineterview_dev01_collab-talk main.dev01_interview section.sec-jobs .wrap h2 { font-size: 4.375vw; padding: 2.246vw 4.883vw; margin-bottom: 2.93vw; }
      .ineterview_dev01_collab-talk main.dev01_interview section.sec-jobs .wrap ul li { font-size: 3.75vw; font-weight: 500; padding: 0 0 0 3.75vw; line-height: 1.93; }
        .ineterview_dev01_collab-talk main.dev01_interview section.sec-jobs .wrap ul li:before { font-size: 3.75vw; }
      .ineterview_dev01_collab-talk main.dev01_interview section.sec-jobs .wrap .outside a::after { margin-left: 1.067vw; }
      .ineterview_dev01_collab-talk main.dev01_interview section .wrap .notes .note  { margin-top: 2em; font-size: 3.4375vw; text-align: center; letter-spacing: 0.16vw; }
}


/*--------------------------
section-return
---------------------------*/
  .ineterview_dev01_collab-talk main section.section-return { 
    position: relative;
    width: 1100px;
    margin: 80px auto 0;
    padding: 0;
    z-index: 10;
}
  .ineterview_dev01_collab-talk main section.section-return nav.pager {
      position: relative;
      display: flex;
      justify-content: center;
      width: 100%;
      margin: 0 auto; 
    }

        .ineterview_dev01_collab-talk main section.section-return nav.pager ul {
        display: flex;
        position: relative;
        margin: 0 auto; }

          .ineterview_dev01_collab-talk main section.section-return nav.pager ul li a,   .ineterview_dev01_collab-talk main section.section-return nav.pager ul li span {
          font-size: 22px;
          font-family: "din-2014-narrow", sans-serif;
          font-weight: 400;
          width: 28px;
          height: 28px;
          display: block;
          text-align: center;
          padding: 3px 0 0;
          margin: 0 5px; }

          .ineterview_dev01_collab-talk main section.section-return nav.pager ul li span.current_page {
          background: #fff; 
           }
          .ineterview_dev01_collab-talk main section.section-return nav.pager ul li a.link_before, .ineterview_dev01_collab-talk main section.section-return nav.pager ul li a.link_next {
          font-family: "din-2014-narrow", sans-serif;
          font-weight: 400;
          font-size: 13px;
          letter-spacing: 0.4em;
          width: 70px;
          padding: 7px 0 0 5px;
          position: absolute;
          top: 0;
          margin: 0; }
        .ineterview_dev01_collab-talk main section.section-return nav.pager ul li a.link_before {
          left: -110px; }
        .ineterview_dev01_collab-talk main section.section-return nav.pager ul li a.link_next {
          right: -110px; }
        .ineterview_dev01_collab-talk main section.section-return nav.pager ul li a.archive {
          width: auto;
          font-size: 15px;
          letter-spacing: 0.5em;
          text-align: center;
          margin: 0;
          padding: 6px 4px 6px 15px; }
        .ineterview_dev01_collab-talk main section.section-return nav.pager ul li a {
          transition: background 0.3s; }
          .ineterview_dev01_collab-talk main section.section-return nav.pager ul li a:hover {
            background: #fff; }
          .ineterview_dev01_collab-talk main section.section-return nav.pager ul li.center-blank {
            width: 17em; }

@media only screen and (max-width: 768px) {
.ineterview_dev01_collab-talk main section.section-return { position: relative; width: 100%; margin: 60px auto 0; }
  .ineterview_dev01_collab-talk main section.section-return nav.pager { display: flex; justify-content: center; width: 100%; margin: 15.625vw auto; }
   .ineterview_dev01_collab-talk main section.section-return nav.pager ul { display: flex; position: relative; margin: 0 auto; }
      .ineterview_dev01_collab-talk main section.section-return nav.pager ul li a.link_before,   .ineterview_dev01_collab-talk main section.section-return  nav.pager ul li a.link_next { font-size: 2.539vw; width: 11.719vw; padding: 0.684vw 0 0 0.488vw; }
      .ineterview_dev01_collab-talk main section.section-return nav.pager ul li a.link_before { left: -19.531vw; }
    .ineterview_dev01_collab-talk main section.section-return nav.pager ul li.center-blank { width: 41.945vw; padding: 0.684vw 0 0 0.488vw; }      
.ineterview_dev01_collab-talk main section.section-return nav.pager ul li a.link_next { right: -19.531vw;}
}

/*--------------------------
NAV
---------------------------*/
.btn-base {
    width: 500px;
    height: 60px;
    display: block;
    margin: 30px auto 0;
    background: #000;
    position: relative;
    overflow: hidden;
    bottom: 0;
}
.btn-base span:before, .btn-base span:after {
    top: 30px;
}

@media only screen and (max-width: 768px) {
    .btn-base { width: 90%; height: 14.035vw; margin: 8.789vw auto 0; font-size: 3.5vw; ;}
      .btn-base span { padding: 3.418vw 0 0 40px; }
    .btn-base span:before, .btn-base span:after { width: 5.742vw; }
      .btn-base span:after { top: 5.176vw; }
 }

/*--------------------------
section_copyright
---------------------------*/
#section_copyright {
  margin: 90px 0 0;
}
#section_copyright .container .copy_box p {
  font-size: 10px !important;
  text-align: center;
}

@media only screen and (max-width: 768px) {
    #section_copyright {margin: 10.254vw 0 90px; }
      #section_copyright .container .copy_box p { font-size: 1.953vw; font-weight: 500; line-height: 1; text-align: center; }
}


/*--------------------------
Modal Window
---------------------------*/
/* モーダル全体 */
.modaal-container {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  padding: 0;
  border-radius: 8px;
  position: relative;
  text-align: left;
}

/* iframe */
.modaal-container iframe,
.modaal-content-container iframe {
  width: 100% !important;
  height: 80vh !important;
  max-height: 90vh !important;
}

/* カスタム見た目付き標準×ボタン */
.modaal-close {
  position: absolute;
  top: -74px;
  right: -20px;
  width: 80px;
  height: 80px;
  z-index: 99999;
  cursor: pointer;
  pointer-events: auto;
  border-radius: 50%;
  transition: all 1s;
}

.modaal-close::before,
.modaal-close::after {
  display: block;
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 60px;
  background: #fff;
  transition: background 0.2s ease-in-out;
}

.modaal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modaal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modaal-close:hover {
  transform: rotate(360deg);
  background: none;
  opacity: 0.6;
}

.modaal-close:focus::before,
.modaal-close:focus::after,
.modaal-close:hover::before,
.modaal-close:hover::after {
  background: #fff;
}
@media only screen and (max-width: 768px) {
  .modaal-inner-wrapper {padding-top: 13.333vw; }
  .modaal-close { top: -11.733vw; right: 0; width: 10.667vw; height: 10.667vw; }
    .modaal-close::before,.modaal-close::after { height: 10.667vw; }
   s.modaal-content-container { padding: 5.333vw; }
}

/*--------------------------
Modal inline
---------------------------*/
.m-container {
  width: 100%;
  padding: 40px 60px 20px; 
}
.m-section01 {
  margin-bottom: 30px;
}
  .m-section01 h1 {
    border-top: 6px solid #3a66cb;
    background: #f7f7fb;
    font-size: 21px;
    font-weight: 900;
    color: #3a66cb;
    margin-bottom: 30px;
    padding: 20px;
  }
    .m-content-box {
      display: flex;
      gap: 30px;
      overflow: auto;
    }

    .m-text-area {
      flex: 1;
      font-size: 14px;
      line-height: 1.6;
    }
    .m-text-area p {
      text-indent: 1em;
      letter-spacing: -0.1px;
    }
      .m-text-area p:nth-child(n+2) {
        margin-top: 1em;
      }
    .m-image-area {
      width: 40%;
    }
      .m-image-area img {
        width: 100%;
        border-radius: 4px;
      }
.m-job-links {
  width: 90%;
  margin: 0 auto 16px;
  padding: 30px;
  background: #eef0fa; 
}
  .m-job-links h2 {
    margin-bottom: 40px;
    font-size: 18px;
    font-weight: 900;
    color: #3a66cb;
    text-align: center;
  }
  .m-job-links ul {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
    gap: 15px;
  }
    .m-job-links ul li {
      position: relative;
      width: calc(50% - 7.5px);
      background: #fff;
      line-height: 1.93;
      text-align: left;
    }
      .m-job-links ul li a {
        position: relative;
        display: block;
        font-size: 16px;
        font-weight: 700;
        color: #333;
        padding: 8px 15px;
        -webkit-transition: all 0.3s ease-in-out 0s;
        transition: all 0.3s ease-in-out 0s;
          z-index: 1;
       }
        .m-job-links ul li a::before {
          position: absolute;
          content: "";
          right: 0;
          bottom: 0;
          border-right: 20px solid #a0afe3;
          border-top: 20px solid transparent;
          -webkit-transition: all 0.3s ease-in-out 0s;
          transition: all 0.3s ease-in-out 0s;
        }
        .m-job-links ul li a::after {
          position: absolute;
          content: "";
          width: 0;
          height: 100%;
          top: 0;
          left: 0;
          background: #a0afe3;
          -webkit-transition: all 0.3s ease-in-out 0s;
          transition: all 0.3s ease-in-out 0s;
          z-index: -1;
         }
         .m-job-links ul li a:hover {
          color: #fff;
         }
           .m-job-links ul li a:hover::before {
             border-right: 20px solid #fff;
            } 
           .m-job-links ul li a:hover::after {
             width: 100%;
           }
        .m-job-links ul li a span {
          font-size: 14px;
          font-weight: 400;
        }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated.fadeInUp {
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.animated.fadeInRight {
  animation: fadeInRight 0.8s ease-out forwards;
}

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

.animated.fadeIn {
  animation: fadeIn 0.8s ease-out forwards;
}

section.m-footer-logo {
  margin: 0;
  border-bottom: 5px solid #3a66cb;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.5;
  color: #c8d0f0;
  text-align: right;
}


@media only screen and (max-width: 768px) {
  .m-container { padding: 2.667vw 0;  }
    .m-section01 {margin-bottom: 10.667vw; }
      .m-section01 h1 { border-top: 4px solid #3a66cb; font-size: 3.711vw; margin-bottom: 5.333vw; padding: 4.267vw;   }
  .m-content-box { display: block; }
    .m-text-area { width: 100%; margin-bottom: 5.333vw; font-size: 3.223vw; line-height: 1.73; }
    .m-image-area { width: 100%; }
  .m-job-links { width: 100%;  padding: 8vw 2.667vw 2.667vw; }
    .m-job-links h2 { margin-bottom: 8vw; font-size: 4.199vw;  }
    .m-job-links ul { display: block; }
      .m-job-links ul li {  width: 100%; margin-bottom: 5.333vw;}
        .m-job-links ul li a { font-size: 3.223vw; padding: 2.133vw 4vw; }
        .m-job-links ul li a span { font-size: 2.667vw; font-weight: 400; }
  section.m-footer-logo { border-bottom: 3px solid #3a66cb; font-size: 6.4vw; }

}


/*--------------------------
2511
---------------------------*/
.btn-base {
  width: 270px;
  height: 44px;
  background: #000;
  display: block;
  position: relative;
  overflow: hidden; }
  .btn-base:before, .btn-base:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0; }
  .btn-base:before {
    background: #000; }
  .btn-base:after {
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.47, 0, 0.745, 0.715); }
  .btn-base span {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 13px 0 0 93px;
    z-index: 10; }
    .btn-base span:before, .btn-base span:after {
      content: "";
      width: 43px;
      height: 1px;
      position: absolute;
      left: 0;
      top: 21px;
      transition: opacity 0.4s; }
    .btn-base span:before {
      background: #fff;
      opacity: 1; }
    .btn-base span:after {
      background: #000;
      opacity: 0; }
  .btn-base i {
    font-size: 15px;
    color: #fff;
    font-family: "din-2014-narrow", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.1em;
    transition-delay: 0.2s;
    transition: color 0.3s; }
  .btn-base:hover:after {
    transform: translateX(0); }
  .btn-base:hover span, .btn-base:hover i {
    color: #000; }
    .btn-base:hover span:before, .btn-base:hover i:before {
      opacity: 0; }
    .btn-base:hover span:after, .btn-base:hover i:after {
      opacity: 1; }