@charset "UTF-8";
/*
Theme Name: new_theme
Description:name
Version: 1.0
*/
/*変数設定用*/
.ttl {
  text-align: center;
  font-size: 6rem;
  font-weight: 900;
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .ttl {
    font-size: 4rem;
    margin-bottom: 15px;
  }
}

.ttl.w {
  color: #fff;
}

.ttl.b {
  color: #333;
}

.ttl span {
  font-weight: 500;
  display: block;
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  .ttl span {
    font-size: 1.4rem;
  }
}

.ttl_txt {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8em;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (max-width: 767px) {
  .ttl_txt {
    text-align: left;
    font-size: 1.4rem;
  }
}

.ttl_txt.w {
  color: #fff;
}

.ttl_txt.b {
  color: #333;
}

.arrow_btn {
  position: relative;
  padding: 15px;
  color: #fff;
  border-radius: 10px;
  background: #333;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .arrow_btn {
    font-size: 1.4rem;
  }
}

.arrow_btn:after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  background: url("./img/arrow.png");
  background-size: cover;
}

.top_conecpt {
  padding: 100px 0;
}

@media screen and (max-width: 767px) {
  .top_conecpt {
    padding: 50px 0;
  }
}

.top_conecpt .container {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .top_conecpt .container {
    display: block;
  }
}

.top_conecpt .fl {
  width: 50%;
  float: left;
  position: relative;
  height: 360px;
}

@media screen and (max-width: 767px) {
  .top_conecpt .fl {
    width: 100%;
    float: none;
    height: auto;
  }
}

.top_conecpt .fl:before {
  position: absolute;
  right: 0;
  top: 0;
  height: 360px;
  content: "";
  width: 50vw;
  background: url("./img/top_concept.png");
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .top_conecpt .fl:before {
    display: none;
  }
}

.top_conecpt .fr {
  width: 48%;
  float: right;
  margin-left: 2%;
}

@media screen and (max-width: 767px) {
  .top_conecpt .fr {
    width: 100%;
    float: none;
    margin-left: 0;
  }
}

.top_conecpt .fr h2 {
  color: #333;
  font-size: 6rem;
  font-weight: 900;
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .top_conecpt .fr h2 {
    font-size: 4rem;
    margin: 20px auto;
    line-height: 1;
  }
}

.top_conecpt .fr h3 {
  color: #333;
  font-size: 3.2rem;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .top_conecpt .fr h3 {
    font-size: 2rem;
  }
}

.top_conecpt .fr h3 span {
  background: linear-gradient(180deg, transparent 0%, transparent 70%, #ffde00 70%, #ffde00 100%);
}

.top_conecpt .fr .txt {
  font-size: 1.6rem;
  line-height: 1.8em;
  color: #333;
}

@media screen and (max-width: 767px) {
  .top_conecpt .fr .txt {
    font-size: 1.4rem;
  }
}

.top_service {
  padding: 100px 0;
  background: #333;
}

@media screen and (max-width: 767px) {
  .top_service {
    padding: 50px 0;
  }
}

.top_service .service_list {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
}

.top_service .service_list li {
  float: left;
  background: #fff;
  width: 30%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .top_service .service_list li {
    float: none;
    width: 100%;
  }
}

.top_service .service_list li:nth-child(2) {
  margin: 0 5%;
}

@media screen and (max-width: 767px) {
  .top_service .service_list li:nth-child(2) {
    float: none;
    width: 100%;
    margin: 20px 0;
  }
}

.top_service .service_list li .detail_wrap {
  padding: 20px 20px 100px;
}

@media screen and (max-width: 767px) {
  .top_service .service_list li .detail_wrap {
    padding: 20px;
  }
}

.top_service .service_list li .detail_wrap h3 {
  text-align: center;
  color: #333;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 20px;
  padding-bottom: 15px;
  position: relative;
}

.top_service .service_list li .detail_wrap h3:before {
  width: 50px;
  height: 2px;
  background: #333;
  bottom: 0;
  left: 50%;
  margin-left: -25px;
  content: "";
  position: absolute;
}

.top_service .service_list li .detail_wrap .txt {
  font-size: 1.6rem;
  line-height: 1.8em;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (max-width: 767px) {
  .top_service .service_list li .detail_wrap .txt {
    font-size: 1.4rem;
  }
}

.top_service .service_list li .arrow_btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: calc(100% - 40px);
}

@media screen and (max-width: 767px) {
  .top_service .service_list li .arrow_btn {
    position: relative;
    display: block;
    bottom: 0;
    left: 0;
    margin: 20px auto;
  }
}

.top_news {
  padding: 100px 0;
}

@media screen and (max-width: 767px) {
  .top_news {
    padding: 50px 0;
  }
}

.top_news .top_news_wrap {
  max-width: 800px;
  margin: 50px auto;
}

@media screen and (max-width: 767px) {
  .top_news .top_news_wrap {
    margin: 0 auto 30px;
  }
}

.top_news .top_news_wrap li {
  border-bottom: 1px solid #ccc;
}

.top_news .top_news_wrap li a {
  font-size: 1.6rem;
  display: block;
  padding: 20px 0;
}

@media screen and (max-width: 767px) {
  .top_news .top_news_wrap li a {
    font-size: 1.4rem;
  }
}

.top_news .top_news_wrap li .date {
  margin-right: 50px;
  float: left;
}

.top_news .top_news_wrap li .txt {
  float: left;
}

.top_news .arrow_btn {
  max-width: 450px;
  width: 100%;
  margin: auto;
  display: block;
}

.top_works {
  padding: 100px 0;
  background: url("./img/top_works_bg.png");
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 767px) {
  .top_works {
    padding: 50px 0;
  }
}

.top_works .works_slide {
  margin: 50px auto 80px;
}

@media screen and (max-width: 767px) {
  .top_works .works_slide {
    margin: 20px auto 80px;
  }
}

.top_works .works_slide .slick-dots {
  bottom: -40px;
}

.top_works .works_slide .thum {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.top_works .works_slide .thum img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: none;
}

.top_works .arrow_btn {
  max-width: 450px;
  width: 100%;
  margin: auto;
  display: block;
}

.top_works.white {
  background: #fff;
}

.top_faq {
  padding: 100px 0;
}

@media screen and (max-width: 767px) {
  .top_faq {
    padding: 50px 0;
  }
}

.top_faq .arrow_btn {
  max-width: 450px;
  width: 100%;
  margin: auto;
  display: block;
}

.faq {
  padding: 50px 0 100px;
}

@media screen and (max-width: 767px) {
  .faq {
    padding: 25px 0 50px;
  }
}

.faq_wrap {
  max-width: 800px;
  margin: 50px auto;
}

@media screen and (max-width: 767px) {
  .faq_wrap {
    margin: 50px auto;
    width: 95%;
  }
}

.faq_wrap dl {
  margin-bottom: 40px;
}

.faq_wrap dl:last-child {
  margin-bottom: 0;
}

.faq_wrap dl dt {
  padding-left: 30px;
  font-weight: 700;
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 10px;
  font-size: 1.8rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .faq_wrap dl dt {
    font-size: 1.6rem;
  }
}

.faq_wrap dl dt:before {
  position: absolute;
  left: 0;
  font-weight: 700;
  content: "Q";
  color: #00c6ff;
}

.faq_wrap dl dd {
  padding-left: 30px;
  font-weight: normal;
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .faq_wrap dl dd {
    font-size: 1.4rem;
  }
}

.faq_wrap dl dd:before {
  position: absolute;
  left: 0;
  font-size: 1.8rem;
  font-weight: 700;
  content: "A";
  color: #ff0036;
}

.foot_contact {
  padding: 100px 0;
  background: url("./img/foot_contact_bg.png");
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .foot_contact {
    padding: 50px 0;
  }
}

.foot_contact .txt {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8em;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  color: #fff;
  margin: 50px auto;
}

@media screen and (max-width: 767px) {
  .foot_contact .txt {
    margin: 25px auto;
    font-size: 1.4rem;
    text-align: left;
  }
}

.foot_contact .arrow_btn {
  max-width: 450px;
  background: #ffde00;
  color: #333;
  width: 100%;
  margin: auto;
  display: block;
}

.foot_contact .arrow_btn:after {
  background-image: url("./img/arrow_b.png");
}

.under_fv {
  background: url("./img/under_fv_bg.png");
  background-size: cover;
  padding: 100px 0;
}

@media screen and (max-width: 767px) {
  .under_fv {
    padding: 50px 0;
  }
}

.under_fv .eng_ttl {
  text-align: center;
}

.under_fv .eng_ttl span {
  font-size: 6rem;
  font-weight: 900;
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 30px;
  position: relative;
  border-bottom: 4px solid #0b8be5;
}

@media screen and (max-width: 767px) {
  .under_fv .eng_ttl span {
    font-size: 4rem;
    margin-bottom: 20px;
  }
}

.under_fv .jp_ttl {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .under_fv .jp_ttl {
    font-size: 1.4rem;
  }
}

.breadcrumbs {
  background: #333;
  padding: 25px 0;
  color: #fff;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .breadcrumbs {
    padding: 15px 0;
    font-size: 1.2rem;
  }
}

.breadcrumbs a {
  color: #fff;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .breadcrumbs a {
    font-size: 1.2rem;
  }
}

.feature {
  padding: 100px 0;
  background: #eeeeee;
}

@media screen and (max-width: 767px) {
  .feature {
    padding: 50px 0;
  }
}

.feature_list01 {
  margin-top: 50px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .feature_list01 {
    margin-top: 30px;
    display: block;
  }
}

.feature_list01 .fl {
  width: 50%;
  float: left;
  position: relative;
  height: 360px;
}

@media screen and (max-width: 767px) {
  .feature_list01 .fl {
    width: 100%;
    float: none;
    height: 180px;
  }
}

.feature_list01 .fl:before {
  position: absolute;
  right: 0;
  top: 0;
  height: 360px;
  content: "";
  width: 50vw;
  background: url(./img/movie_01.png);
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .feature_list01 .fl:before {
    width: 100vw;
    height: 180px;
    right: -2.5%;
  }
}

.feature_list01 .fr {
  float: right;
  width: 50%;
  padding-left: 30px;
}

@media screen and (max-width: 767px) {
  .feature_list01 .fr {
    float: none;
    width: 100%;
    padding-left: 0;
  }
}

.feature_list01 .fr h3 {
  color: #333;
  font-size: 3.2rem;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .feature_list01 .fr h3 {
    font-size: 2.4rem;
    margin: 20px auto 10px;
  }
}

.feature_list01 .fr h3 .blue {
  color: #0b8be5;
}

.feature_list01 .fr h3 .maker {
  background: linear-gradient(180deg, transparent 0%, transparent 70%, #ffde00 70%, #ffde00 100%);
}

.feature_list01 .fr .txt {
  font-size: 1.6rem;
  line-height: 1.8em;
  color: #333;
}

@media screen and (max-width: 767px) {
  .feature_list01 .fr .txt {
    font-size: 1.4rem;
  }
}

.feature_list01.web_list .fl:before {
  background: url(./img/web_creation_01.jpeg);
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .feature_list01.web_list .fl:before {
    width: 100vw;
    height: 180px;
    right: -2.5%;
  }
}

.feature_list01.ad_list .fl:before {
  background: url(./img/advertisement_01.jpeg);
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .feature_list01.ad_list .fl:before {
    width: 100vw;
    height: 180px;
    right: -2.5%;
  }
}

.feature_list02 {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .feature_list02 {
    margin-top: 30px;
    display: block;
  }
}

.feature_list02 .fr {
  width: 50%;
  float: right;
  position: relative;
  height: 360px;
}

@media screen and (max-width: 767px) {
  .feature_list02 .fr {
    width: 100%;
    float: none;
    height: 180px;
  }
}

.feature_list02 .fr:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 360px;
  content: "";
  width: 50vw;
  background: url(./img/movie_02.png);
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .feature_list02 .fr:before {
    width: 100vw;
    height: 180px;
    left: -2.5%;
  }
}

.feature_list02 .fl {
  float: left;
  width: 50%;
  padding-right: 30px;
}

@media screen and (max-width: 767px) {
  .feature_list02 .fl {
    float: none;
    width: 100%;
    padding-right: 0;
  }
}

.feature_list02 .fl h3 {
  color: #333;
  font-size: 3.2rem;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .feature_list02 .fl h3 {
    font-size: 2.4rem;
    margin: 20px auto 10px;
  }
}

.feature_list02 .fl h3 .blue {
  color: #0b8be5;
}

.feature_list02 .fl h3 .maker {
  background: linear-gradient(180deg, transparent 0%, transparent 70%, #ffde00 70%, #ffde00 100%);
}

.feature_list02 .fl .txt {
  font-size: 1.6rem;
  line-height: 1.8em;
  color: #333;
}

@media screen and (max-width: 767px) {
  .feature_list02 .fl .txt {
    font-size: 1.4rem;
  }
}

.feature_list02.web_list .fr:before {
  background: url(./img/web_creation_02.jpeg);
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .feature_list02.web_list .fr:before {
    width: 100vw;
    height: 180px;
    right: -2.5%;
  }
}

.feature_list02.ad_list .fr:before {
  background: url(./img/advertisement_02.jpeg);
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .feature_list02.ad_list .fr:before {
    width: 100vw;
    height: 180px;
    right: -2.5%;
  }
}

.feature_list03 {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .feature_list03 {
    margin-top: 30px;
    display: block;
  }
}

.feature_list03 .fl {
  width: 50%;
  float: left;
  position: relative;
  height: 360px;
}

@media screen and (max-width: 767px) {
  .feature_list03 .fl {
    width: 100%;
    float: none;
    height: 180px;
  }
}

.feature_list03 .fl:before {
  position: absolute;
  right: 0;
  top: 0;
  height: 360px;
  content: "";
  width: 50vw;
  background: url(./img/movie_03.png);
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .feature_list03 .fl:before {
    width: 100vw;
    height: 180px;
    right: -2.5%;
  }
}

.feature_list03 .fr {
  float: right;
  width: 50%;
  padding-left: 30px;
}

@media screen and (max-width: 767px) {
  .feature_list03 .fr {
    float: none;
    width: 100%;
    padding-left: 0;
  }
}

.feature_list03 .fr h3 {
  color: #333;
  font-size: 3.2rem;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .feature_list03 .fr h3 {
    font-size: 2.4rem;
    margin: 20px auto 10px;
  }
}

.feature_list03 .fr h3 .blue {
  color: #0b8be5;
}

.feature_list03 .fr h3 .maker {
  background: linear-gradient(180deg, transparent 0%, transparent 70%, #ffde00 70%, #ffde00 100%);
}

.feature_list03 .fr .txt {
  font-size: 1.6rem;
  line-height: 1.8em;
  color: #333;
}

@media screen and (max-width: 767px) {
  .feature_list03 .fr .txt {
    font-size: 1.4rem;
  }
}

.feature_list03.web_list .fl:before {
  background: url(./img/web_creation_03.jpeg);
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .feature_list03.web_list .fl:before {
    width: 100vw;
    height: 180px;
    right: -2.5%;
  }
}

.feature_list03.ad_list .fl:before {
  background: url(./img/advertisement_03.jpeg);
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .feature_list03.ad_list .fl:before {
    width: 100vw;
    height: 180px;
    right: -2.5%;
  }
}

.feature_price {
  padding: 100px 0;
}

@media screen and (max-width: 767px) {
  .feature_price {
    padding: 50px 0;
  }
}

.plan_list_wrap {
  display: flex;
  flex-wrap: wrap;
}

.plan_list {
  float: left;
  width: 30%;
  position: relative;
  padding-bottom: 150px;
}

@media screen and (max-width: 767px) {
  .plan_list {
    float: none;
    width: 100%;
    padding-bottom: 0;
  }
}

.plan_list:nth-child(2) {
  margin: 0 5%;
}

@media screen and (max-width: 767px) {
  .plan_list:nth-child(2) {
    margin: 20px auto;
  }
}

.plan_list h3 {
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  color: #fff;
  font-size: 2.4rem;
  text-align: center;
  padding: 15px 0;
}

.plan_list .recommend {
  text-align: center;
  margin: 30px auto 20px;
}

.plan_list .recommend span {
  border-radius: 20px;
  background: #ffff00;
  color: #000;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
  padding: 3px 15px;
  font-size: 1.2rem;
}

.plan_list .recommend_txt {
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.8em;
  color: #333;
  margin-bottom: 30px;
}

.plan_list .txt {
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  padding: 30px 20px;
  line-height: 1.8em;
  color: #333;
  min-height: 140px;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .plan_list .txt {
    position: static;
  }
}

.plan_list .option_list li {
  padding: 10px 0;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
}

.plan_list .option_list li:nth-child(odd) {
  color: #fff;
}

.plan_list .option_list li:nth-child(even) {
  color: #000;
}

.plan_list:nth-child(1) {
  border: 4px solid #0b8be5;
}

.plan_list:nth-child(1) h3 {
  background: #0b8be5;
}

.plan_list:nth-child(1) .option_list li:nth-child(odd) {
  background: #0b8be5;
}

.plan_list:nth-child(2) {
  margin: 0 5%;
  border: 4px solid #0a46bf;
}

@media screen and (max-width: 767px) {
  .plan_list:nth-child(2) {
    margin: 20px auto;
  }
}

.plan_list:nth-child(2) h3 {
  background: #0a46bf;
}

.plan_list:nth-child(2) .option_list li:nth-child(odd) {
  background: #0a46bf;
}

.plan_list:nth-child(3) {
  border: 4px solid #000;
}

@media screen and (max-width: 767px) {
  .plan_list:nth-child(3) {
    margin: 20px auto;
  }
}

.plan_list:nth-child(3) h3 {
  background: #000;
}

.plan_list:nth-child(3) .option_list li:nth-child(odd) {
  background: #000;
}

.plan_list:nth-child(4) {
  border: 4px solid #666;
}

@media screen and (max-width: 767px) {
  .plan_list:nth-child(4) {
    margin: 20px auto;
  }
}

.plan_list:nth-child(4) h3 {
  background: #666;
}

.plan_list:nth-child(4) .option_list li:nth-child(odd) {
  background: #666;
}

.sample_movie {
  padding: 100px 0;
  background: #333;
}

@media screen and (max-width: 767px) {
  .sample_movie {
    padding: 50px 0;
  }
}

.sample_movie .tab-group {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.sample_movie .tab {
  flex-grow: 1;
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  padding: 20px;
  list-style: none;
  border: solid 1px #ffffff;
  text-align: center;
  cursor: pointer;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .sample_movie .tab {
    font-size: 1.4rem;
    padding: 20px 10px;
  }
}

.sample_movie .panel-group {
  border: solid 1px #ffffff;
  border-top: none;
  background: #eee;
}

.sample_movie .panel {
  display: none;
  padding-bottom: 50px;
  padding: 20px;
}

@media screen and (max-width: 767px) {
  .sample_movie .panel {
    padding: 20px 10px;
  }
}

.sample_movie .panel .txt {
  padding: 30px 0;
  font-size: 1.4rem;
  color: #000;
}

@media screen and (max-width: 767px) {
  .sample_movie .panel .txt {
    padding: 10px 0;
  }
}

.sample_movie .panel li.list {
  float: left;
  width: 24.25%;
  margin-right: 1%;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .sample_movie .panel li.list {
    width: 48%;
    margin: 0 1% 20px;
  }
}

.sample_movie .panel li.list:nth-child(4n) {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .sample_movie .panel li.list:nth-child(4n) {
    width: 48%;
    margin: 0 1% 20px;
  }
}

.sample_movie .panel li.list .thum {
  margin-bottom: 20px;
}

.sample_movie .panel li.list span {
  border: 1px solid #000;
  padding: 4px 10px;
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (max-width: 767px) {
  .sample_movie .panel li.list span {
    display: inline-block;
    margin-bottom: 10px;
  }
}

.sample_movie .tab.is-active {
  background: #ffffff;
  color: #333;
  transition: all 0.2s ease-out;
}

.sample_movie .panel.is-show {
  display: block;
}

.sample_movie .plan_list {
  width: 24.25%;
  margin-right: 1%;
}

@media screen and (max-width: 767px) {
  .sample_movie .plan_list {
    width: 100%;
    margin: 0 0 20px;
  }
}

.sample_movie .plan_list:nth-child(2) {
  margin-right: 1%;
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  .sample_movie .plan_list:nth-child(2) {
    width: 100%;
    margin: 0 0 20px;
  }
}

.sample_movie .plan_list:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .sample_movie .plan_list:last-child {
    width: 100%;
    margin: 0 0 20px;
  }
}

.company_profile {
  padding: 100px 0;
}

.company_profile table {
  width: 100%;
}

.company_profile table tr:nth-child(2n) {
  background: #f5f5f5;
}

.company_profile table tr th {
  font-size: 1.6rem;
  padding: 25px 15px 25px 45px;
  color: #000;
  vertical-align: top;
  line-height: 1.8em;
}

@media screen and (max-width: 767px) {
  .company_profile table tr th {
    display: block;
    width: 100%;
    padding: 20px 15px 0px 15px;
  }
}

.company_profile table tr td {
  font-size: 1.6rem;
  padding: 25px 45px;
  color: #000;
  line-height: 1.8em;
}

@media screen and (max-width: 767px) {
  .company_profile table tr td {
    display: block;
    width: 100%;
    padding: 10px 15px 20px 15px;
  }
}

.contact_cont {
  padding: 0 0 100px;
}

.contact_cont h2 {
  font-size: 3.2rem;
  color: #333;
  text-align: center;
  margin: 45px auto;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .contact_cont h2 {
    font-size: 2rem;
    margin: 25px auto;
  }
}

.contact_cont .complete_ttl {
  font-size: 2.4rem;
  margin: 115px auto 40px;
}

@media screen and (max-width: 767px) {
  .contact_cont .complete_ttl {
    margin: 50px auto 20px;
  }
}

.contact_cont .complete_txt {
  text-align: center;
  margin: 0 auto 75px;
}

@media screen and (max-width: 767px) {
  .contact_cont .complete_txt {
    margin: 0 auto 35px;
  }
}

.contact_cont .complete_txt p {
  max-width: 580px;
  font-size: 1.4rem;
  line-height: 1.8em;
  display: inline-block;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .contact_cont .complete_txt p {
    width: 95%;
  }
}

.contact_cont .bdt {
  padding: 50px 0;
  border-top: 1px solid #191919;
}

@media screen and (max-width: 767px) {
  .contact_cont .bdt {
    padding: 35px 0;
  }
}

.contact_cont .comp_btn {
  margin: auto;
  max-width: 380px;
  text-align: center;
  width: 100%;
  display: block;
  width: 100%;
  border: 1px solid #333;
  background: #333;
  padding: 20px;
  font-size: 1.6rem;
  position: relative;
  color: #fff;
  font-weight: 500;
  transition: 0.6s;
  background-image: url(./img/back_arrow.png);
  background-position: left 20px center;
  background-repeat: no-repeat;
}

.hissu_txt {
  margin: 40px auto;
  font-size: 1.6rem;
  font-weight: bold;
  color: #000;
}

@media screen and (max-width: 767px) {
  .hissu_txt {
    margin: 20px auto;
    font-size: 1.4rem;
  }
}

.hissu_txt span {
  color: #c60808;
}

@media screen and (max-width: 767px) {
  .hissu_txt span {
    display: block;
  }
}

.contact_wrap table {
  width: 100%;
  border: 1px solid #333;
}

.contact_wrap table tr:nth-child(2n) {
  background: #f5f5f5;
}

.contact_wrap table tr th {
  border-bottom: 1px solid #333;
  border-right: 1px solid #333;
  padding: 35px;
  color: #333;
  font-size: 1.6rem;
  font-weight: bold;
  width: 22%;
}

@media screen and (max-width: 767px) {
  .contact_wrap table tr th {
    padding: 15px;
    width: 100%;
    display: block;
    border-right: none;
  }
}

.contact_wrap table tr th span {
  color: #c60808;
  font-size: 1.4rem;
  padding-left: 10px;
}

.contact_wrap table tr td {
  padding: 30px;
  border-bottom: 1px solid #333;
  width: 78%;
  font-size: 1.6rem;
  color: #000;
}

@media screen and (max-width: 767px) {
  .contact_wrap table tr td {
    padding: 15px;
    width: 100%;
    display: block;
  }
}

.contact_wrap table tr td .error {
  color: #c60808;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.8em;
}

.contact_wrap table tr td input {
  font-size: 1.6rem;
  width: 100%;
  padding: 20px;
  border: 1px solid #333;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .contact_wrap table tr td input {
    padding: 10px;
  }
}

.contact_wrap table tr td textarea {
  min-height: 350px;
  width: 100%;
  padding: 15px;
  border: 1px solid #333;
  font-size: 16px !important;
}

.contact_wrap table tr td .attention {
  color: #000;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.8em;
  display: block;
}

.contact_wrap .horizontal-item {
  display: inline-block;
}

.contact_wrap input[type="checkbox"] {
  display: none;
}

.contact_wrap input[type="checkbox"] + span {
  display: inline-block;
  position: relative;
  margin-left: 10px;
  padding: 10px 20px;
  border-radius: 2px;
  color: #000;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1;
  margin-bottom: 15px;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .contact_wrap input[type="checkbox"] + span {
    font-size: 1.4rem;
  }
}

.contact_wrap input[type="checkbox"] + span:before {
  position: absolute;
  top: 50%;
  left: -10px;
  width: 15px;
  height: 15px;
  content: "";
  margin-top: -10px;
  border: 1px solid #191919;
  background: #fff;
}

.contact_wrap input[type="checkbox"]:checked + span::after {
  position: absolute;
  content: "";
  top: 50%;
  margin-top: -9px;
  left: -5px;
  width: 5px;
  height: 9px;
  border-right: 3px solid #333;
  border-bottom: 3px solid #333;
  transform: rotate(45deg);
}

.submit_wrap {
  display: flex;
  margin: 50px auto;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .submit_wrap {
    margin: 30px auto;
    display: block;
  }
}

input[type="submit"].send_btn {
  max-width: 380px;
  width: 100%;
  margin: 0 20px;
  display: block;
  width: 100%;
  border: 1px solid #333;
  background: #333;
  padding: 20px;
  font-size: 1.6rem;
  position: relative;
  color: #fff;
  font-weight: 500;
  transition: 0.6s;
}

@media screen and (max-width: 767px) {
  input[type="submit"].send_btn {
    width: 95%;
    margin: 0 auto 20px;
  }
}

input[type="submit"].back_btn {
  max-width: 380px;
  width: 100%;
  margin: 0 20px;
  display: block;
  width: 100%;
  border: 1px solid #333;
  background: #333;
  padding: 20px;
  font-size: 1.6rem;
  position: relative;
  color: #fff;
  font-weight: 500;
  transition: 0.6s;
}

@media screen and (max-width: 767px) {
  input[type="submit"].back_btn {
    width: 95%;
    margin: 0 auto 20px;
  }
}

.mw_wp_form_confirm .attention {
  display: none !important;
}

.news_wrap {
  padding: 50px 0 100px;
}

.news_wrap .inner {
  max-width: 840px;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .news_wrap .inner {
    width: 95%;
  }
}

.news_wrap .inner li {
  padding: 25px 0 15px;
  border-bottom: 1px solid #333;
}

.news_wrap .inner li .ttl_wrap {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.news_wrap .inner li .ttl_wrap .date {
  background: #333;
  color: #fff;
  padding: 6px 30px;
  font-size: 1.4rem;
  letter-spacing: 1px;
  display: inline-block;
  margin-right: 15px;
}

.news_wrap .inner li .ttl_wrap h3 {
  font-size: 1.4rem;
  color: #333;
  font-weight: bold;
}

.news_wrap .inner li .txt {
  font-size: 1.4rem;
  color: #333;
}

.news_wrap .detail_wrap {
  padding-bottom: 135px;
  border-bottom: 2px solid #333;
}

@media screen and (max-width: 767px) {
  .news_wrap .detail_wrap {
    padding-bottom: 50px;
  }
}

.news_wrap .detail_wrap .titl {
  font-size: 3rem;
  font-weight: bold;
  color: #000;
  padding-bottom: 20px;
}

.news_wrap .detail_wrap .titl span {
  float: right;
  font-size: 1.4rem;
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .news_wrap .detail_wrap .titl span {
    float: none;
    display: block;
    font-size: 1.2rem;
  }
}

.news_wrap .detail_wrap .thum {
  margin-bottom: 20px;
}

.news_wrap .detail_wrap h3 {
  font-size: 1.8rem;
  margin-top: 65px;
  margin-bottom: 30px;
  font-weight: bold;
}

.news_wrap .detail_wrap h4 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.news_wrap .detail_wrap p {
  font-size: 1.6rem;
  margin-bottom: 30px;
  line-height: 1.8em;
  color: #333;
}

.news_wrap .detail_wrap a {
  font-size: 1.4rem;
  color: #0b8be5;
  position: relative;
  padding: 5px 30px 5px 30px;
}

.news_wrap .detail_wrap a:before {
  position: absolute;
  width: 25px;
  height: 25px;
  background: #0b8be5;
  content: "";
  left: 0;
  top: 0;
}

.news_wrap .detail_wrap a:after {
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 8px;
  background: url(./img/arrow.png);
  background-size: contain;
  content: "";
  margin-top: -4px;
}

.news_wrap .pager-wrapper {
  position: relative;
  margin-top: 20px;
}

.news_wrap .pager-wrapper .pager-prev {
  position: absolute;
  left: 0;
}

.news_wrap .pager-wrapper .pager-prev a {
  padding-left: 15px;
  font-size: 1.4rem;
  color: #000;
}

.news_wrap .pager-wrapper .pager-prev a:before {
  position: absolute;
  content: "";
  border-top: 2px solid #333;
  border-left: 2px solid #333;
  width: 6px;
  height: 6px;
  left: 0;
  top: 50%;
  margin-top: -5px;
  transform: rotate(-45deg);
}

.news_wrap .pager-wrapper .pager-next {
  position: absolute;
  right: 0;
}

.news_wrap .pager-wrapper .pager-next a {
  padding-right: 15px;
  font-size: 1.4rem;
  color: #000;
}

.news_wrap .pager-wrapper .pager-next a:before {
  position: absolute;
  content: "";
  border-top: 2px solid #333;
  border-left: 2px solid #333;
  width: 6px;
  height: 6px;
  right: 0;
  top: 50%;
  margin-top: -5px;
  transform: rotate(-225deg);
}

.sitemap_wrap {
  padding: 100px 0;
}

@media screen and (max-width: 767px) {
  .sitemap_wrap {
    padding: 50px 0;
  }
}

.sitemap_wrap #sitemap_list li {
  border-bottom: #eee 1px solid;
}

.sitemap_wrap #sitemap_list li a {
  color: #333;
  display: block;
  padding: 15px 10px 15px 30px;
  font-size: 1.6rem;
  text-decoration: none;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  position: relative;
}

.sitemap_wrap #sitemap_list li a:before {
  position: absolute;
  top: 50%;
  margin-top: -5px;
  left: 0;
  width: 10px;
  height: 10px;
  background: #0b8be5;
  content: "";
}

.privacy_wrap {
  padding: 100px 0;
}

.privacy_wrap h3 {
  font-size: 2.4rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  padding-bottom: 5px;
  margin-bottom: 30px;
  position: relative;
  color: #333;
}

.privacy_wrap h3:before {
  width: 100px;
  height: 2px;
  content: '';
  background: #0b8be5;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}

.privacy_wrap p {
  font-size: 1.6rem;
  line-height: 1.8em;
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 50px;
}

.works_wrap {
  padding: 100px 0;
}

@media screen and (max-width: 767px) {
  .works_wrap {
    padding: 50px 0;
  }
}

.works_wrap li {
  float: left;
  width: 24.25%;
  margin-right: 1%;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .works_wrap li {
    float: left;
    width: 48%;
    margin: 0 1% 20px;
  }
}

.works_wrap li:nth-child(4n) {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .works_wrap li:nth-child(4n) {
    margin: 0 1% 20px;
  }
}

.works_wrap li h3 {
  font-size: 1.6rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.works_wrap li .thum {
  margin-bottom: 20px;
}

.works_wrap li .thum a {
  position: relative;
  height: 240px;
  overflow: hidden;
  width: 100%;
  display: block;
}

@media screen and (max-width: 767px) {
  .works_wrap li .thum a {
    height: 120px;
  }
}

.works_wrap li .thum a img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: none;
}

.category a {
  border: 1px solid #000;
  padding: 4px 10px;
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
  margin-right: 10px;
}

@media screen and (max-width: 767px) {
  .category a {
    display: inline-block;
    margin-bottom: 10px;
  }
}

.web_creations {
  padding: 100px 0;
  background: #333;
}

@media screen and (max-width: 767px) {
  .web_creations {
    padding: 50px 0;
  }
}

.web_creations ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}

.web_creations li {
  width: 30%;
  margin: 0 0 40px;
  float: left;
}

@media screen and (max-width: 767px) {
  .web_creations li {
    width: 100%;
    margin: 0 0 20px;
    float: none;
  }
}

.web_creations li:nth-child(3n+2) {
  margin: 0 5% 40px;
}

@media screen and (max-width: 767px) {
  .web_creations li:nth-child(3n+2) {
    margin: 0 0 20px;
  }
}

.web_creations li h3 {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  margin: 20px auto 10px;
}

.web_creations li .txt {
  font-size: 1.4rem;
  line-height: 1.8em;
  color: #fff;
}

.web_price .plan_list {
  padding-bottom: 0px;
  background: #fff;
}

.web_price .plan_list h3 {
  font-size: 2rem;
}

.web_price .plan_list .recommend_txt {
  min-height: 50px;
}

.web_price .plan_list .price {
  color: #0b8be5;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 900;
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 30px;
}

.web_price .plan_list .price span {
  display: block;
  font-weight: 300;
  font-size: 1.2rem;
  color: #333;
}

.web_price.ad {
  background: #fff;
}

.ad_list {
  padding: 0 30px 20px;
}

.ad_list li {
  margin-left: 20px;
  margin-bottom: 10px;
  position: relative;
  font-size: 1.4rem;
  color: #333;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  list-style-type: circle;
}

.ad_list li:nth-child(1) {
  font-weight: 900;
  margin-left: 0px;
  list-style-type: none;
}
