@charset "utf-8";

/* CSS Document */
/*===================================================================
                      common.css
===================================================================*/
body {
  font-family: 'Noto Sans JP', sans-serif;
}

#wrap {
  overflow: hidden;
}

img {
  width: 100%;
}

.observe {
  opacity: 0;
}

.observe.on {
  transition-delay: 0.1s;
  transition-duration: 1.3s !important;
  opacity: 1 !important;
}

.delay0_75 {
  animation-delay: 0.5s !important;
}

.delay1 {
  transition-delay: 0.75s !important;
}

.delay1_25 {
  transition-delay: 1s !important;
}

.delay1_5 {
  transition-delay: 1.25s !important;
}

@media screen and (max-width:1000px) {
  .delay1_5 {
    transition-delay: 0.75s !important;
  }
}

.delay2 {
  transition-delay: 1.5s !important;
}

@media screen and (max-width:1000px) {
  .delay2 {
    transition-delay: 1s !important;
  }
}

@media screen and (min-width:769px) {
  .pc_none {
    display: none;
  }
}

@media screen and (max-width:768px) {
  .sp_none {
    display: none;
  }
}

/* header */
header {
  position: absolute;
  z-index: 500;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

@media screen and (max-width: 1000px) {
  header {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
  }
}

#head_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

@media screen and (max-width:1000px) {
  #head_container {
    padding: 0;
  }
}

#head_container ul {
  padding: 5px 20px;
}

#head_container ul li a {
  color: #FFF;
  font-size: 14px;
  font-weight: bold;
  font-family: "Inter", sans-serif;
  padding: 5px 18px;
  border-radius: 20px;
  background-color: #0054A6;
}

#head_container ul li a:hover {
  background-color: #FBFBFB;
  color: #0054A6;
}


#header_logo {
  width: 340px;
  padding: 0 20px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  position: relative;
  z-index: 1000;
  vertical-align: bottom;
}

@media screen and (max-width:1000px) {
  #header_logo {
    width: 220px;
    padding: 0 10px;
  }
}

#header_logo a {
  display: inline-block;
  width: 100%;
  vertical-align: bottom;
  padding: 15px 0;
}

@media screen and (max-width:1000px) {
  #head_container nav {
    width: 100%;
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 50;
    background-color: #606060;
    margin-top: 0;
    overflow-y: scroll;
    height: 100vh;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  }
}

@media screen and (max-width:1000px) {
  #head_container.open nav {
    left: 0;
  }
}

#head_container nav ul {
  display: flex;
}

@media screen and (max-width:1000px) {
  #head_container nav ul {
    display: block;
    padding: 80px 20px;
  }
}

#head_container nav ul li {
  padding: 0 40px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

@media screen and (max-width:1000px) {
  #head_container nav ul li {
    padding: 0;
    border-bottom: 1px solid rgba(166, 166, 166, 1.00);
  }
}

#head_container nav ul li li {
  padding: 0;
}

.fixed #head_container nav ul li {
  padding: 0 30px;
}

@media screen and (max-width:1000px) {
  .fixed #head_container nav ul li {
    padding: 0;
  }
}

#head_container nav ul li a {
  font-weight: bold;
  color: #FFF;
  font-size: 16px;
  position: relative;
}

@media screen and (max-width:1000px) {
  #head_container nav ul li a {
    display: inline-block;
    width: 100%;
    padding: 15px;
    font-size: 14px;
  }
}

@media screen and (max-width:1000px) {
  #head_container nav ul li a::before {
    content: "";
    position: absolute;
    left: 2px;
    bottom: 12px;
    top: 12px;
    width: 3px;
    background-color: #D91E1E;
    border-radius: 5px;
  }
}

@media screen and (max-width:1000px) {
  #head_container nav ul li li a::before {
    display: none;
  }
}

#head_container nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  height: 2px;
  background-color: #D91E1E;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

@media screen and (max-width:1000px) {
  #head_container nav ul li a::after {
    display: none;
  }
}

#head_container nav ul li a:hover::after {
  width: 100%;
}

/* モーダル */
/*モーダル本体の指定 + モーダル外側の背景の指定*/
@media only screen and (min-width: 1001px) {
  .modal-container {
    display: block;
  }
}

.modal-container {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 1);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  box-sizing: border-box;
  display: block;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

@media only screen and (max-width: 1000px) {
  .modal-container {
    position: relative;
    opacity: 1;
    top: auto;
    left: auto;
    height: auto;
    visibility: inherit;
    background-color: rgba(0, 0, 0, 0.3);
    transition: 0s;
    padding: 0;
    display: block;
  }
}

/*モーダル本体の擬似要素の指定*/
.modal-container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

@media only screen and (max-width: 1000px) {
  .modal-container:before {
    display: none;
  }
}

/*モーダル本体に「active」クラス付与した時のスタイル*/
.active .modal-container {
  opacity: 1;
  z-index: 101;
  visibility: visible;
  display: block;
}

/*モーダル枠の指定*/
.modal-body {
  position: absolute;
  width: 95%;
  max-width: 1400px;
  text-align: left;
  padding: 15px;
  box-sizing: border-box;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 1000px) {
  .modal-body {
    position: relative;
    top: auto;
    left: auto;
    -ms-transform: none;
    -webkit-transform: none;
    transform: 0s;
    margin: 0 auto;
    padding: 0;
  }
}

/*モーダルを閉じるボタンの指定は今回は使わない*/
.modal-close {
  display: none;
}



.menu-trigger {
  display: none;
}

@media screen and (max-width:1000px) {
  .menu-trigger {
    display: inline-block;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 80%;
    left: -50px;
    vertical-align: middle;
    cursor: pointer;
    z-index: 10000;
    transform: translateX(0);
    background-color: #0054A6;
    border-radius: 4px 0 0 4px;
  }

}

.menu-trigger::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  height: 38px;
  width: 38px;
  background-image: url("../images/top/kyari_w.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}


#menu-back {
  display: none;
  pointer-events: none;
}

@media screen and (max-width:1000px) {
  #menu-back {
    display: block;
    opacity: 0;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 8000;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  }

  .open #menu-back {
    pointer-events: all;
    opacity: 1;
  }
}

#head_container .header_service_list {
  display: flex;
  padding: 0;
  margin: 0;
  justify-content: space-between;
}

@media screen and (max-width:1000px) {
  #head_container .header_service_list {
    display: block;
  }
}

#head_container .header_service_list li {
  width: 30%;
  transition: all 0s ease;
  -webkit-transition: all 0s ease;
  -moz-transition: all 0s ease;
  -o-transition: all 0s ease;
}

@media screen and (max-width:1000px) {
  #head_container .header_service_list li {
    width: 100%;
  }
}

@media screen and (max-width:1000px) {
  #head_container .header_service_list li:last-child {
    border: none;
  }
}

#head_container .header_service_list li a {
  transform: none;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  border-radius: 25px;
  height: 100%;
  vertical-align: bottom;
  background-color: #FFF;

}

@media screen and (max-width:1000px) {
  #head_container .header_service_list li a {
    width: 100%;
    box-shadow: 0px 0px 15px 0px rgba(255, 255, 255, 0);
    border-radius: 0;
  }
}

.fixed #head_container .modal-body li {
  padding: 0;
  margin: 0;
}

#head_container .header_service_list .web a h3 {
  color: #0DB1CB;
}

#head_container .header_service_list .editolial a h3 {
  color: #3FB82E;
}

#head_container .header_service_list .movie a h3 {
  color: #EB9534;
}

#head_container .header_service_list .web a {
  border: 4px solid #0DB1CB;
}

@media only screen and (max-width: 1000px) {
  #head_container .header_service_list .web a {
    background-color: rgba(0, 0, 0, 0);
    border: none;
  }
}

#head_container .header_service_list .editolial a {
  border: 4px solid #3FB82E;
}

@media only screen and (max-width: 1000px) {
  #head_container .header_service_list .editolial a {
    background-color: rgba(0, 0, 0, 0);
    border: none;
  }
}

#head_container .header_service_list .movie a {
  border: 4px solid #EB9534;
}

@media only screen and (max-width: 1000px) {
  #head_container .header_service_list .movie a {
    background-color: rgba(0, 0, 0, 0);
    border: none;
  }
}

#head_container .service_image {
  width: 100%;
  height: 260px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width:1000px) {
  #head_container .service_image {
    height: auto;
    border-radius: 0;
  }
}

#head_container .service_image::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  bottom: -30px;
  right: -30px;
  z-index: 2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.1;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

@media screen and (max-width:1000px) {
  #head_container .service_image::before {
    display: none;
  }
}

#head_container a:hover .service_image::before {
  transform: scale(1.2);
}

#head_container .web .service_image::before {
  background-image: url("../images/service_web/web_img.png");
}

#head_container .movie .service_image::before {
  background-image: url("../images/service_movie/movie_img.png");
}

#head_container .editolial .service_image::before {
  background-image: url("../images/service_editolial/zasi.png");
  top: -15px;
  left: -15px;
  bottom: -15px;
  right: -15px;
}


#head_container .service_image h3 {
  color: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: 8px;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 45px;
  text-align: center;
  width: 100%;
  line-height: 1.0;
  font-weight: bold;
  z-index: 3;
}

@media screen and (max-width:1000px) {
  #head_container .service_image h3 {
    color: #FFF;
    top: auto;
    left: auto;
    transform: none;
    position: relative;
    font-size: 14px;
    text-align: left;
  }
}

#head_container .service_image h3 span {
  font-size: 16px;
  color: #868686;
}

@media screen and (max-width:1000px) {
  #head_container .service_image h3 span {
    display: none;
  }
}

/* footer */
footer {
  width: 100%;
  background-color: #FBFBFB;
}

#footer_logo {
  width: 250px;
  display: block;
  padding: 65px 0;
  margin: 0 auto 10px;
}

@media screen and (max-width:1000px) {
  #footer_logo {
    width: 210px;
  }
}

#footer_logo figure {
  width: 100%;
}