@charset "utf-8";
/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}
/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
}
.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes;
}
.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes;
}
/* Default theme styles of the modal dialog */
.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

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

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

/* Vertical align of the modal dialog */

.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */

/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
  font: inherit;

  display: inline-block;
  overflow: visible;

  min-width: 110px;
  margin: 0;
  padding: 12px 0;

  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;

  border: 0;
  outline: 0;
}

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

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

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

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

/* Remove inner padding and border in Firefox 4+ for the button tag. */

.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal_close::-moz-focus-inner {
  padding: 0;

  border: 0;
}

/* Keyframes
   ========================================================================== */

@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);

    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;

    opacity: 1;

    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);

    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;

    opacity: 1;

    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);

    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);

    opacity: 0;

    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);

    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);

    opacity: 0;

    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
	background: #2b2e38;
}
.lt-ie9 .remodal {
	width: 700px;
}
html.remodal-is-locked {
	overflow: hidden;
	-ms-touch-action: none;
	touch-action: none;
}
/* Anti FOUC */
.remodal,
[data-remodal-id] {
	display: none;
}
/* Necessary styles of the overlay */
.remodal-overlay {
	position: fixed;
	z-index: 9999;
	top: -5000px;
	right: -5000px;
	bottom: -5000px;
	left: -5000px;
	display: none;
}
/* Necessary styles of the wrapper */
.remodal-wrapper {
	position: fixed;
	z-index: 10000;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
	overflow: auto;
	text-align: center;
	padding: 80px 20px;
	-webkit-overflow-scrolling: touch;
}
.remodal-wrapper:after {
	display: inline-block;
	height: 100%;
	margin-left: -0.05em;
	content: "";
}
/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.remodal-is-initialized {
	/* Disable Anti-FOUC */
	display: inline-block;
}
/*--------------------------------------------------

	MODAL

--------------------------------------------------*/
/*---------------------------
	COMMON
---------------------------*/
.remodal {
  display: inline-block;
	position: relative;
	transform: translate3d(0, 0, 0);
  width: 90%;
	max-width: 1000px;
	margin: 0 auto;
  border-radius: clamp(30px, calc(30px + 30 * ((100vw - 375px) / 1545)), 60px);
	background: #fff;
	text-align: center;
}
.remodal .cancel {
  position: absolute;
  top: -2em;
  right: -2em;
  width: clamp(60px, calc(60px + 40 * ((100vw - 375px) / 1545)), 100px);
  height: clamp(60px, calc(60px + 40 * ((100vw - 375px) / 1545)), 100px);
  border: none;
  border-radius: 50%;
  background: #111;
  transition: .3s;
}
.remodal .cancel:hover {background: #F30100;color: #111;}
.remodal .cancel::before,
.remodal .cancel::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 60%;
  height: .3em;
  background: #F30100;
  transition: .3s;
}
.remodal .cancel::before {transform: translate(-50%, -50%) rotate(45deg);}
.remodal .cancel::after {transform: translate(-50%, -50%) rotate(-45deg);}
.remodal .cancel:hover::before,
.remodal .cancel:hover::after {background: #fff;}
/*---------------------------
	interview
---------------------------*/
.remodal.interview .block {
  padding-bottom: clamp(40px, calc(40px + 30 * ((100vw - 375px) / 1545)), 70px);
  overflow: hidden;
  border-radius: clamp(30px, calc(30px + 30 * ((100vw - 375px) / 1545)), 60px);
}
.remodal.interview .block .main_container {position: relative;padding: 9% 2vw 9% 0;overflow: hidden;}
.remodal.interview .block .main_container .img_wrap {
  position: absolute;
  top: 39%;
  left: -6.5%;
  transform: translateY(-50%);
  width: 55%;
}
.remodal.interview .block .main_container .img_wrap .circle img {animation: rotation 30s linear infinite;}
@keyframes rotation {
	0% {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}
}
.remodal.interview .block .main_container .img_wrap figure {position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);width: 75%;}
.remodal.interview .block .main_container .txt_wrap {width: 53%;margin-left: auto;text-align: center;}
.remodal.interview .block .main_container .txt_wrap .content {
  display: inline-block;
  margin-bottom: clamp(30px, calc(30px + 20 * ((100vw - 375px) / 1545)), 50px);
}
.remodal.interview .block .main_container .txt_wrap .content dl {margin-bottom: 5%;padding-bottom: 3%;border-bottom: 1px solid #111;}
.remodal.interview .block .main_container .txt_wrap .content dl dt {
  font-size: clamp(15px, calc(15px + 5 * ((100vw - 375px) / 1545)), 20px);
  letter-spacing: .1em;
}
.remodal.interview .block .main_container .txt_wrap .content dl dd {
  font-size: clamp(32px, calc(32px + 8 * ((100vw - 375px) / 1545)), 40px);
  letter-spacing: .1em;}
.remodal.interview .block .main_container .txt_wrap .content p {
  font-weight: 500;
  font-size: clamp(15px, calc(15px + 5 * ((100vw - 375px) / 1545)), 20px);
  letter-spacing: .1em;
}
.remodal.interview .block .main_container .txt_wrap .speech_bubble {
  position: relative;
  padding: clamp(20px, calc(20px + 10 * ((100vw - 375px) / 1545)), 30px) clamp(20px, calc(20px + 20 * ((100vw - 375px) / 1545)), 40px);
  border: 1px solid #707070;
  border-radius: 3em;
  background: #F30100;
  text-align: center;
}
.remodal.interview .block .main_container .txt_wrap .speech_bubble::before,
.remodal.interview .block .main_container .txt_wrap .speech_bubble::after {
  content: '';
  position: absolute;
  right: 99.9%;
  bottom: 50%;
  transform: translateY(50%);
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
.remodal.interview .block .main_container .txt_wrap .speech_bubble::before {
  background: #707070;
  height: calc(tan(60deg) * 27px / 2);
  width: 51px;
}
.remodal.interview .block .main_container .txt_wrap .speech_bubble::after {
  background: #F30100;
  height: calc(tan(60deg) * 25px / 2);
  width: 50px;
}
.remodal.interview .block .main_container .txt_wrap .speech_bubble h2 {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  font-size: clamp(16px, calc(16px + 8 * ((100vw - 375px) / 1545)), 24px);
  line-height: 1.6;
  letter-spacing: .026em;
}
.remodal.interview .block ol {margin: 0 3vw 0 5vw;}
.remodal.interview .block ol li {
  position: relative;
  filter: drop-shadow(0 0 1px #F30100);
  margin-bottom: clamp(40px, calc(40px + 30 * ((100vw - 375px) / 1545)), 70px);
}
.remodal.interview .block ol li p.num {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  color: #F30100;
  font-weight: 900;
  font-size: clamp(20px, calc(20px + 18 * ((100vw - 375px) / 1545)), 38px);
}
.remodal.interview .block ol li p.num::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  width: 250%;
  height: 250%;
  background: url(../img/front/interview/img_jagged.svg) no-repeat center / 100%;
}
.remodal.interview .block ol li .wrap {
  position: relative;
  z-index: 1;
  padding: clamp(15px, calc(15px + 5 * ((100vw - 375px) / 1545)), 20px) clamp(20px, calc(20px + 20 * ((100vw - 375px) / 1545)), 40px);
  border-radius: clamp(40px, calc(40px + 40 * ((100vw - 375px) / 1545)), 80px);
  background: #F5F5F5;
}
.remodal.interview .block ol li .wrap h3 {
  margin-bottom: clamp(10px, calc(10px + 5 * ((100vw - 375px) / 1545)), 15px);
  color: #F30100;
  font-weight: 500;
  font-size: clamp(15px, calc(15px + 2 * ((100vw - 375px) / 1545)), 17px);
}
.remodal.interview .block ol li .wrap .content p {font-weight: 300;}
.remodal.interview .block ul {
  position: relative;
  margin-bottom: clamp(40px, calc(40px + 30 * ((100vw - 375px) / 1545)), 70px);
}
.remodal.interview .block ul::before {
  content: '';
  position: absolute;
  bottom: -60%;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(../img/front/interview/txt_LEDAX.svg) no-repeat 50% 0 / 100%;
}
.remodal.interview .block ul li {
  width: 43%;
  border: 1px solid #F30100;
  border-radius: clamp(40px, calc(40px + 50 * ((100vw - 375px) / 1545)), 90px);
  overflow: hidden;
}
.remodal.interview .block ul li:nth-child(1) {border-top-left-radius: 0;border-bottom-left-radius: 0;}
.remodal.interview .block ul li:nth-child(2) {border-top-right-radius: 0;border-bottom-right-radius: 0;}
.remodal.interview .block ul li img {
  height: clamp(200px, calc(200px + 90 * ((100vw - 375px) / 1545)), 290px);
  object-fit: cover;
}
.remodal.interview .block .message_container {
  flex-direction: row-reverse;
  align-items: flex-start;
  position: relative;
  width: 90%;
  gap: 3%;
  margin: 12% 0 0 auto;
}
.remodal.interview .block .message_container figure {
  position: relative;
  z-index: -1;
  width: 40%;
  border: 1px solid #F30100;
  border-radius: clamp(40px, calc(40px + 50 * ((100vw - 375px) / 1545)), 90px) 0 0 clamp(40px, calc(40px + 50 * ((100vw - 375px) / 1545)), 90px);
  overflow: hidden;
}
.remodal.interview .block .message_container figure img {
  height: clamp(240px, calc(240px + 50 * ((100vw - 375px) / 1545)), 290px);
  object-fit: cover;
}
.remodal.interview .block .message_container .wrap {position: relative;width: 55%;margin-left: auto;}
.remodal.interview .block .message_container .wrap .ttl {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  width: 38%;
}
.remodal.interview .block .message_container .wrap .circle {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  z-index: -2;
  width: 55.5%;
}
.remodal.interview .block .message_container .wrap .content {
  position: relative;
  z-index: -1;
  padding: clamp(30px, calc(30px + 20 * ((100vw - 375px) / 1545)), 50px) 15%;
  border: 1px solid #707070;
  border-radius: clamp(40px, calc(40px + 60 * ((100vw - 375px) / 1545)), 100px);
  background: #F30100;
}
.remodal.interview .block .message_container .wrap .content::before,
.remodal.interview .block .message_container .wrap .content::after {
  content: '';
  position: absolute;
  bottom: 50%;
  left: 99.9%;
  transform: translateY(50%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.remodal.interview .block .message_container .wrap .content::before {
  background: #707070;
  height: calc(tan(60deg) * 27px / 2);
  width: 51px;
}
.remodal.interview .block .message_container .wrap .content::after {
  background: #F30100;
  height: calc(tan(60deg) * 25px / 2);
  width: 50px;
}
.remodal.interview .block .message_container .wrap .content p {color: #fff;font-weight: 500;letter-spacing: .015em;}
@media only screen and ( max-width : 767px ) {
  .remodal.interview .block .main_container {padding: 9% 2vw 9%;}
  .remodal.interview .block .main_container .img_wrap {left: 50%;transform: translate(-50%, -50%);width: 100%;}
  .remodal.interview .block .main_container .txt_wrap {width: 100%;margin-top: 10%;}
  .remodal.interview .block .main_container .txt_wrap .speech_bubble::before,
  .remodal.interview .block .main_container .txt_wrap .speech_bubble::after {
    right: 50%;
    bottom: 99.9%;
    transform: translate(50%, 0);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
  }
  .remodal.interview .block .main_container .txt_wrap .speech_bubble::before {width: 31px;}
  .remodal.interview .block .main_container .txt_wrap .speech_bubble::after {width: 30px;}
  .remodal.interview .block .message_container {width: 100%;margin: 0;}
  .remodal.interview .block .message_container figure {
    z-index: -2;
    width: 90%;
    margin: 0 auto;
    border-radius: clamp(40px, calc(40px + 50 * ((100vw - 375px) / 1545)), 90px);
  }
  .remodal.interview .block .message_container .wrap {width: 90%;margin: 5% auto 0;}
  .remodal.interview .block .message_container .wrap .ttl {top: -25%;left: 9%;width: 30%;max-width: 145px;}
  .remodal.interview .block .message_container .wrap .circle {top: -25%;left: 9%;width: 41.5%;max-width: 185px;}
  .remodal.interview .block .message_container .wrap .content {padding: 30px clamp(20px, calc(20px + 20 * ((100vw - 375px) / 1545)), 40px) clamp(15px, calc(15px + 5 * ((100vw - 375px) / 1545)), 20px);}
  .remodal.interview .block .message_container .wrap .content::before,
  .remodal.interview .block .message_container .wrap .content::after {
    left: 50%;
    bottom: 99.9%;
    transform: translate(-50%, 0);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
  }
  .remodal.interview .block .message_container .wrap .content::before {width: 31px;}
  .remodal.interview .block .message_container .wrap .content::after {width: 30px;}
}