@media screen and (max-width:768px) {
  .sp_none {
    display: none;
  }
}
@media screen and (min-width:769px) {
  .pc_none {
    display: none;
  }
}
/*----ヒーローイメージ-----*/
#creative-hero {
  text-align: center;
  position: relative;
  margin-bottom: 50px;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
}
#creative-hero .creative-hero-copy {
  position: absolute;
  display: block;
  text-align: center;
  color: #000;
  line-height: 0.8em;
  font-size: 6rem;
  font-family: 'Teko', sans-serif;
  top: 0;
  width: 100%;
  height: 90vw;
  max-height: 410px;
}
#creative-hero .creative-hero-copy img {
  position: absolute;
  max-width: 320px;
  width: 70%;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}
#creative-hero .creative-hero-txt h1 {
  margin: 0;
  font-weight: 700;
  font-size: 2.5em;
}
#creative-hero .creative-hero-txt p {
  margin: 0 2rem;
  font-weight: 500;
  color: #222;
}
#canvas-basic {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 400px;
  mix-blend-mode: overlay;
}
.canvas-wrapper {
  width: 90vw;
  height: 90vw;
  max-width: 410px;
  max-height: 410px;
  margin: 0 auto;
  background: url(../images/creative/hero_circle.png) no-repeat center center;
  background-size: contain;
}
/*----コンテンツ-----*/
/* モーダル全体(背景＋本体) */
.modal {
  visibility: hidden;
  overflow-y: auto;
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 220;
  opacity: 0;
}
.modal.active {
  visibility: visible;
  animation: animation-fadein 0.3s ease-in-out 0.3s 1 normal;
  animation-fill-mode: forwards;
}
@keyframes animation-fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes animation-fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* モーダル背景色 */
#modal-ikoma.modal {
  background-color: #9143C1;
}
#modal-enomoto.modal {
  background-color: #009FE8;
}
#modal-hattori.modal {
  background-color: #00B8AE;
}
#modal-maruyama.modal {
  background-color: #0000FF;
}
#modal-yamamoto.modal {
  background-color: #FF0000;
}
#modal-morimoto.modal {
  background-color: #006B3D;
}
#modal-iida.modal {
  background-color: #00E100;
}
#modal-urabe.modal {
  background-color: #FFC500;
}
/* モーダル中身 */
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  padding: 40px;
}
.modal-content .title {
  flex-basis: 100%;
  font-family: 'Teko', sans-serif;
  text-align: center;
  font-size: 3em;
}
.modal-content .face-box {
  position: relative;
}
.modal-content .cre-face {
  margin-bottom: 2em;
}
.modal-content .cre-sign {
  position: absolute;
  top: 278px;
  left: 0;
  opacity: 0;
}
@media screen and (max-width:769px) {
	.modal-content .cre-sign{
		top:inherit;
		bottom: 0;
	}
}

.modal.active .modal-content .cre-sign {
  animation: animation-slidein 0.3s ease-out 0.6s 1 normal;
  animation-fill-mode: forwards;
}
@keyframes animation-slidein {
  0% {
    opacity: 0;
	filter: blur(10px) brightness(200%);
  }
  100% {
    opacity: 1;
	filter: blur(0px) brightness(100%);
  }
}
.modal-content .cat-box p {
  font-family: 'Teko', sans-serif;
  color: #fff;
  font-size: 9rem;
  text-align: center;
}
.modal-content .h-box h2 {
  color: #fff;
  background: #000;
  text-align: center;
  width: 100%;
  margin-bottom: 0.5em;
  box-sizing: border-box;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2em;
  padding: 0.2em;
}
.modal-content .h-box p {
  font-size: 1em;
  margin-bottom: 2rem;
  font-weight: 500;
}
@media screen and (min-width:769px) {
  .modal-content .h-box {
    padding: 0 0 0 2rem;
  }
}
/* モーダルウィンドウ表示中に記事本体を固定 */
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}
/*モーダル開閉ボタン*/
.js-modal-open {
  display: block;
  width: 168px;
  height: 168px;
  /*background-blend-mode: multiply;*/
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 200px;
  transition: 0.2s ease-in-out;
  position: relative;
  transform: scale(1);
}
.js-modal-open.is-animated {
  z-index: 210;
  animation: animation-open 1.5s ease-in 0s 1 normal;
}
.js-modal-open.is-animated-close {
  z-index: 180;
  animation: animation-close 0.5s ease-in-out 0s 1 normal;
}
.js-modal-close:before {
  content: "×";
}
.js-modal-close{
    display: inline-block;
	margin: 1rem auto 8rem auto;
	font-weight: 500;
	padding: 0.5rem 3rem;
  	border-radius: 100em;
    text-decoration: none;
    color: #fff;
    outline: none;
    transition: all 0.4s ease-out;
	box-shadow: -2px -2px 5px rgba(255,255,255,0.5), 2px 2px 5px rgba(0,0,0,0.5);
	mix-blend-mode: soft-light;
}
.js-modal-close:hover{
    border-color:transparent;
    /*background: linear-gradient(270deg, #D6B4D5 0%, #8ADEFB 33%, #B5E3CB 66%, #FAEC7F 100%);
    background-size: 200% auto;
    background-position: center center; 
    box-shadow: 0 0px 10px rgb(250,250,250,0.4);*/
	opacity: 1;
		box-shadow: -5px -5px 8px rgba(255,255,255,0.5), 5px 5px 8px rgba(0,0,0,0.5);

}
.close-box{
	padding: 0;
	margin: 0;
}
.close-box .js-modal-close{
position: fixed;
    top: 4em;
    padding: 1em;
    line-height: 1em;
    margin: 0;
    right: 4em;
}


@keyframes animation-open {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(100);
  }
}
@keyframes animation-close {
  0% {
    transform: scale(100);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes animation-fadein-80 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0.8;
  }
}
.js-modal-open.is-animated > img {
  animation: animation-fadeout 0.1s ease-in-out 0s 1 normal;
  animation-fill-mode: forwards;
}
.js-modal-open.is-animated > span {
  animation: animation-fadeout 0.1s ease-in-out 0s 1 normal;
  animation-fill-mode: forwards;
}
.js-modal-open.is-animated-close > img {
  opacity: 0;
  animation: animation-fadein 0.3s ease-in-out 0.5s 1 normal;
  animation-fill-mode: forwards;
}
.js-modal-open.is-animated-close > span {
  opacity: 0;
  animation: animation-fadein-80 0.3s ease-in-out 0s 1 normal;
  animation-fill-mode: forwards;
}
.js-modal-open > span {
  position: absolute;
  font-family: 'Teko', sans-serif;
  color: #fff;
  display: block;
  margin: 0 auto;
  font-size: 40px;
  width: 100%;
  text-align: center;
  top: 50%;
  bottom: 50%;
  line-height: 0;
  opacity: 0.8;
  transition: 1s;
}
.js-modal-open.cre-iida > span {
  top: calc(50% - 0.8em);
  line-height: 0.8em;
}
.js-modal-open:hover {
  filter: brightness(120%);
  opacity: 1;
}
.js-modal-open:hover > span {
  opacity: 1;
}
.js-modal-open:after {
  content: "＋MORE";
  font-family: 'Teko', sans-serif;
  position: absolute;
  color: #fff;
  display: block;
  margin: 0 auto;
  font-size: 1em;
  width: 100%;
  text-align: center;
  bottom: 1em;
  line-height: 0;
}
.js-modal-open.is-animated:after {
  animation: animation-fadeout 0.1s ease-in-out 0s 1 normal;
  animation-fill-mode: forwards;
}
.js-modal-open > img {
  mix-blend-mode: multiply;
}
.js-modal-open.cre-ikoma {
  background-color: #9143C1;
}
.js-modal-open.cre-enomoto {
  background-color: #009FE8;
}
.js-modal-open.cre-hattori {
  background-color: #00B8AE;
}
.js-modal-open.cre-maruyama {
  background-color: #0000FF;
}
.js-modal-open.cre-yamamoto {
  background-color: #FF0000;
}
.js-modal-open.cre-morimoto {
  background-color: #006B3D;
}
.js-modal-open.cre-iida {
  background-color: #00E100;
}
.js-modal-open.cre-urabe {
  background-color: #FFC500;
}
.creative-modal {
  margin-bottom: 8em;
}
.creative-menu, .modal-content > .grid-center {
  max-width: 960px;
  margin: 2em auto;
}
.modal-content a {
  color: #fff;
}
.creative-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.creative-menu > h2 {
  flex-basis: 100%;
  font-family: 'Teko', sans-serif;
  text-align: center;
  font-size: 45px;
}
.creative-menu > a {
  margin: 0.5em;
}

#modal-maruyama p,
#modal-maruyama figcaption,
#modal-yamamoto p,
#modal-yamamoto figcaption{
	color:#fff;
}

/*スライダー*/
.slider {
  margin: 0 auto;
  width: 100%;
}
.slider figure{
  height: auto;
  width: 100%;
	margin: 0;
	padding: 0;
}
.slider li {
  text-align: center;
}
@media screen and (max-width: 560px) {
  .iframe-responsive {
    position: relative;
    width: 100%;
    padding: calc(315 / 560 * 100%) 0 0;
  }
  .iframe-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.slick-prev, .slick-next{
	border-right:4px solid #fff !important;
	border-bottom:4px solid #fff !important;
	border-radius: 2px !important;
}
.slick-prev{
transform: rotate(133deg) !important;
}
.slick-next{
	transform: rotate(-45deg) !important;
}
.slider figcaption{
	margin-top: 1em;
}
.slider figcaption a{
	margin-top: 1em;
}
.slider figcaption a:after{
	content:"\025B8";
}

/*採用導線*/
.creative-recruitment {
  background: linear-gradient(62.376705976571316deg, rgba(214, 180, 213, 255) 0%, rgba(138, 222, 251, 255) 21.13715261220932%, rgba(181, 227, 203, 255) 58.73360633850098%, rgba(250, 236, 127, 255) 100%);
  padding: 3em 0;
  margin-top: 8em;
  text-align: center;
}
.creative-recruitment h2 {
  font-family: 'Teko', sans-serif;
  font-size: 45px;
  line-height: 0.5;
}
.creative-recruitment p {
  text-align: center;
  font-size: 12px;
}