<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@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 {
	background: rgba(0,0,0,.2);
	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;
}
/*--------------------------------------------------

	MESSAGE

--------------------------------------------------*/
/*--------------COMMON----------------------------*/
.remodal {
	position: relative;
	transform: translate3d(0, 0, 0);
	max-width: 1060px;
	margin: 0 auto;
	border: 8px solid #ED6E00;
	background: #fff;
	text-align: center;
}
.remodal .container {margin-bottom: calc(0px + 50 * ((100vw - 320px) / 1600));}
.remodal .flexbox:nth-child(even) {flex-direction: row-reverse;}
.remodal .flexbox figure {width: 50%;}
.remodal .flexbox .content {
	width: 50%;
	padding: calc(20px + 10 * ((100vw - 320px) / 1600));
	outline-offset: -10px;
	font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.remodal .flexbox .content h3 {
	position: relative;
	margin-bottom: calc(25px + 5 * ((100vw - 320px) / 1600));
    overflow: hidden;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: .06em;
}
.remodal .flexbox .content h3::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
}
.remodal .flexbox .content h3 span {
	position: relative;
	padding-right: 1rem;
	line-height: 1.6;
}
.remodal .flexbox .content p {font-size: 1.5rem;letter-spacing: .06em;line-height: 1.7;}
.remodal button {
	position: relative;
	width: 100%;
	padding: 1rem 0;
	border: 6px solid #ED6E00;
    background: #fff;
	font-style: normal;
	font-weight: 700;
	font-size: 2rem;
	font-family: century-gothic, sans-serif;
    text-align: center;
	letter-spacing: .04em;
	transition: .3s;
}
.remodal button:hover {background: #ED6E00;color: #fff;}
/*---------------------------
	MESSAGE
---------------------------*/
.message {padding: calc(20px + 30 * ((100vw - 320px) / 1600));}
.message .mainbox {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: calc(20px + 30 * ((100vw - 320px) / 1600));
}
.message .mainbox figure {position: relative;width: 30%;}
.message .mainbox .content {width: 67%;}
.message .mainbox .content h2 {
	margin-bottom: 3rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #211816;
	font-size: 1.4rem;
}
.message .mainbox .content h2 span {
	display: block;
	margin-bottom: 1.5rem;
	font-weight: 500;
	font-size: calc(20px + 6 * ((100vw - 320px) / 1600));;
	line-height: 1.4;
	letter-spacing: 0.12em;
}
.message .mainbox .content p {letter-spacing: .11em;}
.message .flexbox .content {outline: 1px solid #211816;background: linear-gradient(#FF9F02 30%, #FFEE3C);}
.message .flexbox .content h3::before {background: #211816;}
.message .flexbox .content h3 span {background: #FF9F02;}
/*---------------------------
	INTERVIEW
---------------------------*/
.interview {padding: 80px 50px;}
.interview .flexbox .content {
	padding: 40px 30px 30px;
	outline: 1px solid #6A6A6A;
	background: #211816;
	color: #fff;
}
.interview .flexbox .content h2 {margin-bottom: 20px;font-size: 1.3rem;text-align: right;}
.interview .flexbox .content h2 span {
	display: block;
	margin-bottom: 15px;
	font-weight: 700;
	font-size: 1.85em;
	line-height: 1.4;
}
.interview .flexbox .content h3::before {background: #fff;}
.interview .flexbox .content h3 span {background: #211816;}
@media only screen and ( max-width : 767px ) {
	.remodal .flexbox figure {order: 1;width: 100%;}
	.remodal .flexbox .content {order: 2;width: 100%;margin-bottom: 25px;}
	.remodal .flexbox .content h3 {padding-bottom: 25px;}
	.remodal .flexbox .content h3::before {
		top: inherit;
		left: inherit;
		width: 750px;
		bottom: 0;
	}
	.message .mainbox figure {width: 50%;margin: 0 auto;}
	.message .mainbox .content {width: 100%;}
	.interview {padding: 20px;}
	.interview .flexbox .content h2 {text-align: center;}
	.interview .flexbox .content h2 span {text-align: center;}
}
@media only screen and ( max-width : 500px ) {
	.remodal {border-width: 4px;padding: 35px 5px 5px;}
	.remodal button {padding: 5px;}
}</pre></body></html>