@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700");
html, body, h1, h2, h3, h4, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-family: YakuHanJP_Narrow, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  font-size: 16px;
  font-size: 1.6rem;
  color: #232423;
  letter-spacing: 0.1em;
  background: url(../img/main_bg.jpg) repeat top center;
}

button, input, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  font-family: inherit;
  box-sizing: border-box;
}

img {
  line-height: 1;
  font-size: 0;
  vertical-align: top;
  height: auto;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: #333;
}

ul {
  list-style: none;
}

.inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.sub_inner {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}

.js-fadeIn {
  opacity: 0;
  visibility: hidden;
}

.js-popUp {
  transform: scale(0.9);
  opacity: 0;
  visibility: hidden;
}

.js-popUp > div {
  transform: scale(0.9);
  opacity: 0;
  visibility: hidden;
}

.logo {
  animation: logo 2.75s infinite;
}

@keyframes logo {
  0% {
    transform: translate(0px, 2px);
  }
  2.5% {
    transform: translate(0px, -2px);
  }
  5% {
    transform: translate(0px, 2px);
  }
  7.5% {
    transform: translate(0px, -2px);
  }
  10% {
    transform: translate(0px, 2px);
  }
  12.5% {
    transform: translate(0px, 0px);
  }
}
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #fff;
  background: url(../img/main_bg.jpg) repeat top center;
  text-align: center;
}

#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50vw;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 786px) {
  #splash_logo {
    width: 80vw;
  }
}
#splash_logo p {
  margin-bottom: 1em;
  font-size: 1.2vw;
}

/*画面遷移アニメーション*/
.splashbg {
  display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg {
  display: block;
  content: "";
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleX(0);
  background-color: #3BD2FF;
  animation-name: PageAnime;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes PageAnime {
  0% {
    transform-origin: right;
    transform: scaleX(0);
  }
  50% {
    transform-origin: right;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: left;
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#wrapper {
  opacity: 0; /*はじめは透過0に*/
  overflow: hidden;
}

/*bodyにappearクラスがついたら出現*/
body.appear #wrapper {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.no-scroll {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.pc {
  display: block !important;
}
@media screen and (max-width: 786px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: block !important;
}
@media screen and (min-width: 787px) {
  .sp {
    display: none !important;
  }
}

.main_btn_style a {
  display: inline-block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 18px 0;
  position: relative;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 1px solid transparent;
  background: #ffd200;
  color: #232423;
  overflow: hidden;
  z-index: 1;
}
.main_btn_style a:before {
  content: "";
  width: 200%;
  height: 200%;
  position: absolute;
  right: 125%;
  top: -50%;
  bottom: 0;
  background-color: #232423;
  transform: skewX(-45deg) scale(1, 1);
  transition: 0.3s;
  z-index: 0;
}
.main_btn_style a:hover {
  border: 1px solid #232423;
  cursor: pointer;
  color: #fff;
  background: #fff;
}
.main_btn_style a:hover:before {
  right: -50%;
}
.main_btn_style a:hover:after {
  background: url(../img/ico_arrow01_w.svg) no-repeat;
}
.main_btn_style a:after {
  position: absolute;
  right: 10px;
  top: 40%;
  content: "";
  width: 32px;
  height: 18px;
  display: inline-block;
  background: url(../img/ico_arrow01_b.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.main_btn_style a span {
  text-transform: uppercase;
  position: relative;
  letter-spacing: 0.1em;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 700;
  z-index: 2;
}

.sub_btn_style a {
  display: inline-block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 18px 0;
  position: relative;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 1px solid transparent;
  background: #ffd200;
  color: #232423;
  overflow: hidden;
  z-index: 1;
}
.sub_btn_style a:before {
  content: "";
  width: 200%;
  height: 200%;
  position: absolute;
  right: 125%;
  top: -50%;
  bottom: 0;
  background-color: #ffe04f;
  transform: skewX(-45deg) scale(1, 1);
  transition: 0.3s;
  z-index: 0;
}
.sub_btn_style a:hover {
  border: 1px solid #ffe04f;
  cursor: pointer;
  color: #232423;
  background: #ffe04f;
}
.sub_btn_style a:hover:before {
  right: -50%;
}
.sub_btn_style a:hover:after {
  background: url(../img/ico_arrow01_b.svg) no-repeat;
}
.sub_btn_style a:after {
  position: absolute;
  right: 10px;
  top: 40%;
  content: "";
  width: 32px;
  height: 18px;
  display: inline-block;
  background: url(../img/ico_arrow01_b.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.sub_btn_style a span {
  text-transform: uppercase;
  position: relative;
  letter-spacing: 0.1em;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 700;
  z-index: 2;
}

.menu-btn,
#js__nav {
  display: none;
}

.header {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
}
.header .main_nav ul {
  padding: 20px 20px 0 0;
  display: flex;
}
.header .main_nav ul li {
  margin-right: 60px;
  font-size: 14px;
  font-size: 1.4rem;
}
.header .main_nav ul li:last-child {
  margin-right: 0;
}
.header .main_nav ul li a {
  color: #232423;
  font-size: 120%;
  text-decoration: none;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 50%, #232423 50%);
  background-position: 0 0;
  background-size: auto 200%;
  transition: 0.3s;
}
.header .main_nav ul li a:hover {
  background-position: 0 100%;
  color: #fff;
}
.header .logo {
  margin-right: auto;
  text-align: center;
  padding: 20px 0 0 20px;
}
.header .logo p {
  margin-bottom: 14px;
}
.header .logo a img:hover {
  opacity: 0.7;
}
.header .logo img {
  width: 200px;
  height: 69px;
}

.footer {
  margin-bottom: 120px;
}
.footer .logo {
  text-align: center;
}
.footer .logo a img:hover {
  opacity: 0.7;
}
.footer .logo p {
  margin-bottom: 14px;
}
.footer .logo img {
  width: 200px;
  height: 69px;
}
.footer .bt {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 0 40px;
}
.footer .bt a {
  display: inline-block;
  position: relative;
  text-decoration: none;
}
.footer .bt a:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #232423;
  transition: all 0.3s ease 0s;
}
.footer .bt a:hover {
  cursor: pointer;
}
.footer .bt a:hover:after {
  width: 100%;
}

.contents__wrapper {
  position: relative;
}
.contents__wrapper .main_ttl {
  margin-bottom: 65px;
  font-weight: 700;
  font-size: 42px;
  font-size: 4.2rem;
  text-align: center;
  line-height: 1.5;
}
.contents__wrapper .main_ttl:after {
  content: "";
  position: relative;
  height: 18px;
  width: 218px;
  background: url(../img/ico_line_b.svg) no-repeat;
  background-size: 218px 18px;
  margin: 30px auto 0;
  display: block;
}
.contents__wrapper .main_content {
  margin-bottom: 120px;
}
.contents__wrapper .main_content .kv .box {
  width: 42.5%;
  margin-top: 60px;
  padding-left: 4%;
}
.contents__wrapper .main_content .kv .box .text .cat {
  position: relative;
  padding-left: 97px;
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 700;
}
.contents__wrapper .main_content .kv .box .text .cat:before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: #232423;
  width: 80px;
  height: 4px;
}
.contents__wrapper .main_content .kv .box .text h1 {
  margin: 40px 0 100px;
  animation: fadeIn 0.3s ease 0.5s 1 normal backwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.contents__wrapper .worry_block {
  margin-bottom: 120px;
}
.contents__wrapper .worry_block .box {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.contents__wrapper .worry_block .box .list {
  margin-right: 40px;
  margin-bottom: 20px;
  width: calc(33% - 26px);
}
.contents__wrapper .worry_block .box .list:nth-child(3n) {
  margin-right: 0;
}
.contents__wrapper .worry_block .head_cat {
  width: 44.1%;
  margin: 0 auto;
}
.contents__wrapper .worry_block .head_cat:before {
  content: "";
  position: relative;
  height: 100px;
  width: 65px;
  background: url(../img/ico_arrow_bt_b.svg) no-repeat;
  background-size: 65px 100px;
  margin: 0 auto 30px;
  display: block;
}
.contents__wrapper .solution_block {
  margin-bottom: 120px;
}
.contents__wrapper .solution_block .list {
  display: flex;
  align-items: center;
}
.contents__wrapper .solution_block .list .text {
  width: 50%;
  padding: 0 40px;
}
.contents__wrapper .solution_block .list .text .head {
  font-family: "Roboto", sans-serif;
  margin-bottom: 44px;
  font-weight: 700;
  font-size: 52px;
  font-size: 5.2rem;
  text-decoration: underline;
  color: #898989;
}
.contents__wrapper .solution_block .list .text h2 {
  margin-bottom: 54px;
  font-weight: 700;
  font-size: 52px;
  font-size: 5.2rem;
  line-height: 1.5;
}
.contents__wrapper .solution_block .list .text .detail {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.8;
}
.contents__wrapper .solution_block .list .video {
  width: 50%;
  overflow: hidden;
}
.contents__wrapper .solution_block .list .video video {
  display: block;
  width: 100%;
  height: auto;
}
.contents__wrapper .solution_block .img_r {
  flex-direction: row-reverse;
}
.contents__wrapper .merit_block {
  margin-bottom: 120px;
  width: 100%;
  background: url(../img/merit_bg_pc.jpg) no-repeat top center #000000;
  background-size: cover;
  padding: 120px 0 80px;
}
.contents__wrapper .merit_block .main_ttl {
  color: #fff;
}
.contents__wrapper .merit_block .main_ttl:after {
  content: "";
  position: relative;
  height: 18px;
  width: 218px;
  background: url(../img/ico_line_w.svg) no-repeat;
  background-size: 218px 18px;
  margin: 30px auto 0;
  display: block;
}
.contents__wrapper .merit_block .box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.contents__wrapper .merit_block .box ul li {
  margin-right: 40px;
  margin-bottom: 40px;
  width: calc(33% - 26px);
  background: #fff;
  padding: 34px 20px;
}
.contents__wrapper .merit_block .box ul li:nth-child(3n) {
  margin-right: 0;
}
.contents__wrapper .merit_block .box ul li h3 {
  margin-bottom: 26px;
  font-weight: 700;
  font-size: 32px;
  font-size: 3.2rem;
  text-align: center;
}
.contents__wrapper .merit_block .box ul li .area .img {
  margin-bottom: 28px;
}
.contents__wrapper .merit_block .box ul li .area p {
  line-height: 1.8;
}
.contents__wrapper .works_block {
  margin-bottom: 80px;
}
.contents__wrapper .works_block .cat {
  margin-bottom: 54px;
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.8;
}
.contents__wrapper .works_block .box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.contents__wrapper .works_block .box ul li {
  margin-right: 40px;
  margin-bottom: 40px;
  width: calc(33% - 26px);
  background: #fff;
}
.contents__wrapper .works_block .box ul li:nth-child(3n) {
  margin-right: 0;
}
.contents__wrapper .works_block .box ul li .video a {
  display: block;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  height: auto;
}
.contents__wrapper .works_block .box ul li .video a:after {
  content: "";
  display: block;
  background: url(../img/ico_mv.svg) no-repeat;
  background-size: contain;
  width: 72px;
  height: 72px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.8;
}
.contents__wrapper .works_block .box ul li .video a img {
  transition: 1s all;
}
.contents__wrapper .works_block .box ul li .video a img:hover {
  transform: scale(1.2, 1.2);
  transition: 1s all;
}
.contents__wrapper .works_block .box ul li .text_area {
  padding-bottom: 40px;
}
.contents__wrapper .works_block .box ul li .text_area h3 {
  margin-bottom: 16px;
  padding: 26px 18px 0;
  font-weight: 700;
  font-size: 22px;
  font-size: 2.2rem;
}
.contents__wrapper .works_block .box ul li .text_area .ttl {
  padding: 0 18px 26px;
  font-weight: 700;
}
.contents__wrapper .works_block .box ul li .text_area .detail {
  background: #f5f5f5;
  padding: 16px 18px;
}
.contents__wrapper .works_block .box ul li .img {
  margin-bottom: 28px;
}
.contents__wrapper .works_block .box ul li p {
  line-height: 1.8;
}
.contents__wrapper .price_block {
  margin-bottom: 120px;
}
.contents__wrapper .price_block .field {
  background: url(../img/price_bg.jpg) repeat top center;
  padding: 80px 30px 40px;
}
.contents__wrapper .price_block .field .service {
  margin-bottom: 36px;
  display: flex;
}
.contents__wrapper .price_block .field .service .block {
  width: 50%;
  padding: 50px 0;
  text-align: center;
}
.contents__wrapper .price_block .field .service .block .ttl {
  margin-bottom: 34px;
  font-weight: 700;
  font-size: 40px;
  font-size: 4rem;
}
.contents__wrapper .price_block .field .service .block .text01 {
  font-weight: 700;
  font-size: 64px;
  font-size: 6.4rem;
}
.contents__wrapper .price_block .field .service .block .text01 span {
  font-weight: 700;
  font-size: 36px;
  font-size: 3.6rem;
}
.contents__wrapper .price_block .field .service .block .text02 {
  font-weight: 700;
  font-size: 59px;
  font-size: 5.9rem;
}
.contents__wrapper .price_block .field .service .block:first-child {
  border-right: 2px solid #242424;
}
.contents__wrapper .price_block .field .supplement {
  margin-bottom: 54px;
  text-align: center;
  line-height: 1.8;
}
.contents__wrapper .price_block .field .price_main {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 65px;
  background: #353535;
  padding: 50px 10px;
  text-align: center;
}
.contents__wrapper .price_block .field .price_main p {
  font-weight: 700;
  font-size: 100px;
  font-size: 10rem;
  color: #ffd200;
}
.contents__wrapper .price_block .field .price_main p .point01 {
  margin-right: 16px;
  font-weight: 700;
  font-size: 40px;
  font-size: 4rem;
  color: #fff;
}
.contents__wrapper .price_block .field .price_main p .point02 {
  font-weight: 700;
  font-size: 62px;
  font-size: 6.2rem;
  color: #ffd200;
}
.contents__wrapper .price_block .field .option .ttl {
  text-align: center;
}
.contents__wrapper .price_block .field .option .ttl h3 {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 700;
  font-size: 32px;
  font-size: 3.2rem;
}
.contents__wrapper .price_block .field .option .ttl h3:before, .contents__wrapper .price_block .field .option .ttl h3:after {
  content: "";
  width: 14.2%;
  height: 3px;
  background-color: #252525;
}
.contents__wrapper .price_block .field .option .ttl h3:before {
  margin-right: 26px;
}
.contents__wrapper .price_block .field .option .ttl h3:after {
  margin-left: 26px;
}
.contents__wrapper .price_block .field .option ul {
  display: flex;
  flex-wrap: wrap;
}
.contents__wrapper .price_block .field .option ul li {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  width: 50%;
  text-align: left;
}
.contents__wrapper .price_block .field .option ul li .img img {
  width: 140px;
  height: 140px;
}
.contents__wrapper .price_block .field .option ul li .text {
  margin-left: 30px;
}
.contents__wrapper .price_block .field .option ul li .text h4 {
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 28px;
  font-size: 2.8rem;
}
.contents__wrapper .price_block .field .option ul li .text p {
  line-height: 1.8;
}
.contents__wrapper .price_block .field .option ul li .text p span {
  font-size: 14px;
  font-size: 1.4rem;
}
.contents__wrapper .flow_block {
  margin-bottom: 120px;
  width: 100%;
  background: url(../img/frow_bg_pc.jpg) no-repeat top center #fff;
  background-size: cover;
  padding: 120px 0;
}
.contents__wrapper .flow_block ul li {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
}
.contents__wrapper .flow_block ul li .img {
  width: 26%;
  position: relative;
  padding: 0 30px;
}
.contents__wrapper .flow_block ul li .img img {
  width: 360px;
  height: auto;
}
.contents__wrapper .flow_block ul li .img .ico {
  position: absolute;
  top: 20px;
  left: 0;
}
.contents__wrapper .flow_block ul li .img .ico img {
  width: 177px;
}
.contents__wrapper .flow_block ul li .text {
  width: 74%;
}
.contents__wrapper .flow_block ul li .text h4 {
  margin-bottom: 26px;
  font-weight: 700;
  font-size: 32px;
  font-size: 3.2rem;
}
.contents__wrapper .flow_block ul li .text p {
  line-height: 1.8;
}
.contents__wrapper .flow_block ul li:last-child {
  margin-bottom: 0;
}
.contents__wrapper .qa_block {
  margin-bottom: 120px;
}
.contents__wrapper .qa_block ul {
  border-top: 1px solid #252525;
}
.contents__wrapper .qa_block ul li {
  padding: 30px 0;
  border-bottom: 1px solid #252525;
}
.contents__wrapper .qa_block ul li div {
  display: flex;
  align-items: center;
  width: 100%;
}
.contents__wrapper .qa_block ul li div img {
  width: 34px;
  height: 34px;
}
.contents__wrapper .qa_block ul li div p {
  padding-left: 14px;
  line-height: 1.8;
}
.contents__wrapper .qa_block ul li div p span {
  font-size: 14px;
  font-size: 1.4rem;
}
.contents__wrapper .qa_block ul li .q {
  margin-bottom: 20px;
}
.contents__wrapper .qa_block ul li .q p {
  font-weight: 700;
}
.contents__wrapper .qa_block ul li .q p span {
  font-weight: 700;
}
.contents__wrapper .cp_block {
  width: 100%;
  background: url(../img/cp_bg_pc.jpg) no-repeat top center #000000;
  background-size: cover;
  text-align: center;
  padding: 120px 0;
}
.contents__wrapper .cp_block .ttl {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 52px;
  font-size: 5.2rem;
  color: #fff;
  line-height: 1.8;
}
.contents__wrapper .cp_block .cat {
  margin: 0 auto 40px;
  width: 28.5%;
}
.contents__wrapper .cp_block span {
  color: #fff;
}
.contents__wrapper .contact_block {
  margin-bottom: 120px;
}
.contents__wrapper .contact_block .head {
  background: #353535;
  padding: 60px;
  color: #fff;
  text-align: center;
}
.contents__wrapper .contact_block .head h3 {
  margin-bottom: 36px;
  font-weight: 700;
  font-size: 42px;
  font-size: 4.2rem;
  line-height: 1.5;
}
.contents__wrapper .contact_block .head p {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.8;
}
.contents__wrapper .contact_block .area {
  width: 100%;
  display: flex;
}
.contents__wrapper .contact_block .area .block {
  width: 50%;
  padding: 80px 0;
  text-align: center;
  color: #fff;
}
.contents__wrapper .contact_block .area .block h4 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-weight: 700;
  font-size: 32px;
  font-size: 3.2rem;
}
.contents__wrapper .contact_block .area .block h4:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  content: "";
  height: 1px;
  width: 35%;
  background: #7a7a7a;
  display: block;
}
.contents__wrapper .contact_block .area .bg01 {
  background: #201c1d;
}
.contents__wrapper .contact_block .area .bg02 {
  background: #252525;
}
.contents__wrapper .contact_block .area .point {
  margin-bottom: 36px;
}
.contents__wrapper .contact_block .area .tel a {
  font-weight: 700;
  font-size: 64px;
  font-size: 6.4rem;
  color: #fff;
}

/* max 768px
--------------------------------------------------*/
@media screen and (max-width: 786px) {
  .header {
    margin-bottom: 20px;
    position: relative;
    display: block;
    padding: 0;
  }
  .header .main_nav {
    display: none;
  }
  .header .logo {
    padding: 20px 0 0 0;
  }
  .header .logo p {
    margin-bottom: 4px;
    font-size: 9px;
    font-size: 0.9rem;
  }
  .header .logo img {
    width: 150px;
    height: 51px;
  }
  .footer {
    margin-bottom: 60px;
  }
  .footer .logo {
    margin-bottom: 30px;
  }
  .footer .logo p {
    margin-bottom: 6px;
    font-size: 8px;
    font-size: 0.8rem;
  }
  .footer .logo img {
    width: 150px;
    height: 51px;
  }
  .footer .bt {
    display: block;
    font-size: 10px;
    font-size: 1rem;
    padding: 0 20px;
    text-align: center;
  }
  .footer .link {
    margin-bottom: 30px;
  }
  .main_btn_style {
    margin-top: 60px;
    text-align: center;
  }
  .main_btn_style a {
    max-width: 89.3%;
    padding: 17px 0;
  }
  .main_btn_style a:before {
    display: none;
  }
  .main_btn_style a:hover {
    border: 1px solid #ffe04f;
    cursor: pointer;
    color: #232423;
    background: #ffe04f;
  }
  .main_btn_style a:hover:after {
    background: url(../img/ico_arrow01_b.svg) no-repeat;
  }
  .main_btn_style a:after {
    width: 27px;
    height: 25px;
  }
  .main_btn_style a span {
    font-size: 18px;
    font-size: 1.8rem;
  }
  /* menu
  --------------------------------------------------*/
  #js__nav {
    display: block;
  }
  .menu {
    position: fixed;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #232423;
    transition: all 0.5s;
    visibility: hidden;
    opacity: 0;
    z-index: 2;
  }
  .menu ul {
    vertical-align: middle;
  }
  .menu ul li {
    width: 300px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
  }
  .open_logo {
    opacity: 0;
  }
  .side-open .open_logo {
    padding: 25px 0 40px;
    text-align: center;
    opacity: 1;
    transition: opacity 1s ease 0.3s;
  }
  .side-open .open_logo p {
    margin-bottom: 4px;
    font-size: 9px;
    font-size: 0.9rem;
    color: #fff;
  }
  .side-open .open_logo img {
    width: 150px;
    height: 51px;
  }
  .side-open .menu {
    margin-bottom: 60px;
    transition: all 0.5s;
    visibility: visible;
    opacity: 1;
  }
  .side-open .menu li {
    margin-bottom: 50px;
    opacity: 1;
  }
  .side-open .menu li a {
    display: block;
    font-size: 18px;
    color: #f5f5f5;
    transition: all 0.5s;
    text-decoration: none;
    font-weight: 700;
  }
  .side-open .menu li a:hover {
    color: #999;
  }
  .side-open .menu li:last-child {
    margin-bottom: 0;
  }
  .side-open .menu .logo {
    transition: opacity 1s ease 0.3s;
  }
  .side-open .menu li:nth-child(1) {
    transition: opacity 1s ease 0.5s;
  }
  .side-open .menu li:nth-child(2) {
    transition: opacity 1s ease 0.6s;
  }
  .side-open .menu li:nth-child(3) {
    transition: opacity 1s ease 0.7s;
  }
  .side-open .menu li:nth-child(4) {
    transition: opacity 1s ease 0.8s;
  }
  .side-open .menu li:nth-child(5) {
    transition: opacity 1s ease 0.9s;
  }
  /* --------------------------------------------------- menu-btn */
  .menu-btn {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 3;
  }
  .menu-btn span {
    background: url(../img/ico_menu.svg) no-repeat center top;
    width: 30px;
    height: 25px;
    display: block;
  }
  .side-open .menu-btn span {
    background: url(../img/cross.svg) no-repeat center top;
    width: 25px;
    height: 25px;
    display: block;
  }
  .contents__wrapper .main_ttl {
    margin-bottom: 30px;
    font-size: 23px;
    font-size: 2.3rem;
  }
  .contents__wrapper .main_ttl:after {
    content: "";
    position: relative;
    height: 11px;
    width: 123px;
    background-size: 123px 11px;
    margin: 15px auto 0;
  }
  .contents__wrapper .main_content {
    background: #3BD2FF;
    margin-bottom: 60px;
    padding-bottom: 60px;
  }
  .contents__wrapper .main_content video {
    display: block;
    width: 100%;
    height: auto;
  }
  .contents__wrapper .main_content .kv .box {
    width: 100%;
    padding: 0;
  }
  .contents__wrapper .main_content .kv .box .text {
    width: 100%;
    margin: 26px 0 auto;
    padding: 0 20px;
  }
  .contents__wrapper .main_content .kv .box .text .cat {
    position: relative;
    padding-left: 50px;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .contents__wrapper .main_content .kv .box .text .cat:before {
    width: 40px;
    height: 2px;
  }
  .contents__wrapper .main_content .kv .box .text h1 {
    margin: 20px 0 30px;
  }
  .contents__wrapper .main_content .kv .box .text .main_btn_style {
    margin-top: 0;
    text-align: center;
  }
  .contents__wrapper .worry_block {
    margin-bottom: 60px;
  }
  .contents__wrapper .worry_block .box {
    margin-bottom: 20px;
  }
  .contents__wrapper .worry_block .box .list {
    margin-right: 13px;
    margin-bottom: 12px;
    width: calc(50% - 7px);
  }
  .contents__wrapper .worry_block .box .list:nth-child(2n) {
    margin-right: 0;
  }
  .contents__wrapper .worry_block .box .list:nth-child(3n) {
    margin-right: 13px;
  }
  .contents__wrapper .worry_block .box .list:last-child {
    margin-right: 0;
  }
  .contents__wrapper .worry_block .head_cat {
    width: 70%;
  }
  .contents__wrapper .worry_block .head_cat:before {
    height: 43px;
    width: 28px;
    background-size: 28px 43px;
    margin: 0 auto 15px;
    display: block;
  }
  .contents__wrapper .solution_block {
    margin-bottom: 27px;
  }
  .contents__wrapper .solution_block .list {
    margin-bottom: 27px;
    display: block;
  }
  .contents__wrapper .solution_block .list .text {
    margin-top: 30px;
    width: 100%;
    padding: 0 20px;
  }
  .contents__wrapper .solution_block .list .text .head {
    margin-bottom: 16px;
    font-size: 26px;
    font-size: 2.6rem;
  }
  .contents__wrapper .solution_block .list .text h2 {
    margin-bottom: 27px;
    font-size: 28px;
    font-size: 2.8rem;
  }
  .contents__wrapper .solution_block .list .text .detail {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .contents__wrapper .solution_block .list .video {
    width: 100%;
  }
  .contents__wrapper .solution_block .list:last-child {
    margin-bottom: 0;
  }
  .contents__wrapper .merit_block {
    margin-bottom: 60px;
    background: url(../img/merit_bg_sp.jpg) no-repeat top center #000000;
    padding: 30px 0;
  }
  .contents__wrapper .merit_block .inner {
    padding: 0 20px;
  }
  .contents__wrapper .merit_block .main_ttl {
    margin-bottom: 30px;
    font-size: 23px;
    font-size: 2.3rem;
  }
  .contents__wrapper .merit_block .main_ttl:after {
    content: "";
    position: relative;
    height: 11px;
    width: 123px;
    background-size: 123px 11px;
    margin: 15px auto 0;
  }
  .contents__wrapper .merit_block .box ul {
    display: block;
  }
  .contents__wrapper .merit_block .box ul li {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
    padding: 15px;
  }
  .contents__wrapper .merit_block .box ul li h3 {
    margin-bottom: 13px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .contents__wrapper .merit_block .box ul li .area {
    display: flex;
  }
  .contents__wrapper .merit_block .box ul li .area .img {
    margin-right: 15px;
    margin-bottom: 0;
  }
  .contents__wrapper .merit_block .box ul li .area p {
    font-size: 10px;
    font-size: 1rem;
  }
  .contents__wrapper .works_block {
    margin-bottom: 60px;
  }
  .contents__wrapper .works_block .inner {
    padding: 0 20px;
  }
  .contents__wrapper .works_block .cat {
    margin-bottom: 32px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .contents__wrapper .works_block .box ul {
    display: block;
  }
  .contents__wrapper .works_block .box ul li {
    width: 100%;
    display: flex;
    align-items: center;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .contents__wrapper .works_block .box ul li .video {
    max-width: 50%;
  }
  .contents__wrapper .works_block .box ul li .video a:after {
    width: 32px;
    height: 32px;
  }
  .contents__wrapper .works_block .box ul li .text_area {
    max-width: 50%;
    padding-bottom: 0;
  }
  .contents__wrapper .works_block .box ul li .text_area h3 {
    margin-bottom: 8px;
    padding: 0 18px 0;
    font-size: 11px;
    font-size: 1.1rem;
  }
  .contents__wrapper .works_block .box ul li .text_area .ttl {
    padding: 0 15px 0;
    font-size: 9px;
    font-size: 0.9rem;
  }
  .contents__wrapper .works_block .box ul li .text_area .detail {
    display: none;
  }
  .contents__wrapper .works_block .box ul li .img {
    margin-bottom: 28px;
  }
  .contents__wrapper .works_block .box ul li p {
    line-height: 1.8;
  }
  .contents__wrapper .price_block {
    margin-bottom: 60px;
  }
  .contents__wrapper .price_block .inner {
    padding: 0 20px;
  }
  .contents__wrapper .price_block .field {
    padding: 43px 15px;
  }
  .contents__wrapper .price_block .field .service {
    margin-bottom: 0;
    display: block;
  }
  .contents__wrapper .price_block .field .service .block {
    width: 100%;
    padding: 0 0 30px;
  }
  .contents__wrapper .price_block .field .service .block .ttl {
    margin-bottom: 15px;
    font-size: 24px;
    font-size: 2.4rem;
  }
  .contents__wrapper .price_block .field .service .block .text01 {
    font-size: 40px;
    font-size: 4rem;
  }
  .contents__wrapper .price_block .field .service .block .text01 span {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .contents__wrapper .price_block .field .service .block .text02 {
    font-size: 30px;
    font-size: 3rem;
  }
  .contents__wrapper .price_block .field .service .block:first-child {
    margin-bottom: 15px;
    border-right: none;
    border-bottom: 2px solid #242424;
  }
  .contents__wrapper .price_block .field .supplement {
    margin-bottom: 27px;
    font-size: 12px;
    font-size: 1.2rem;
    text-align: left;
  }
  .contents__wrapper .price_block .field .price_main {
    margin: 0 auto 30px;
    padding: 20px 10px;
  }
  .contents__wrapper .price_block .field .price_main p {
    font-size: 59px;
    font-size: 5.9rem;
  }
  .contents__wrapper .price_block .field .price_main p .point01 {
    margin-right: 13px;
    font-size: 23px;
    font-size: 2.3rem;
  }
  .contents__wrapper .price_block .field .price_main p .point02 {
    font-size: 35px;
    font-size: 3.5rem;
  }
  .contents__wrapper .price_block .field .option .ttl h3 {
    margin-bottom: 20px;
    font-size: 19px;
    font-size: 1.9rem;
  }
  .contents__wrapper .price_block .field .option .ttl h3:before, .contents__wrapper .price_block .field .option .ttl h3:after {
    width: 20.8%;
    height: 2px;
  }
  .contents__wrapper .price_block .field .option .ttl h3:before {
    margin-right: 12px;
  }
  .contents__wrapper .price_block .field .option .ttl h3:after {
    margin-left: 12px;
  }
  .contents__wrapper .price_block .field .option ul {
    display: block;
  }
  .contents__wrapper .price_block .field .option ul li {
    margin-bottom: 17px;
    width: 100%;
  }
  .contents__wrapper .price_block .field .option ul li .img {
    width: 17%;
  }
  .contents__wrapper .price_block .field .option ul li .img img {
    width: 70px;
    height: auto;
  }
  .contents__wrapper .price_block .field .option ul li .text {
    width: 83%;
    margin-left: 15px;
  }
  .contents__wrapper .price_block .field .option ul li .text h4 {
    margin-bottom: 10px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .contents__wrapper .price_block .field .option ul li .text p {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .contents__wrapper .price_block .field .option ul li .text p span {
    font-size: 10px;
    font-size: 1rem;
  }
  .contents__wrapper .flow_block {
    margin-bottom: 60px;
    background: url(../img/frow_bg_sp.jpg) no-repeat top center #fff;
    padding: 60px 0;
  }
  .contents__wrapper .flow_block .inner {
    padding: 0 20px;
  }
  .contents__wrapper .flow_block ul li {
    margin-bottom: 20px;
  }
  .contents__wrapper .flow_block ul li .img {
    position: relative;
    padding: 0;
    width: 35%;
  }
  .contents__wrapper .flow_block ul li .img img {
    width: 100%;
  }
  .contents__wrapper .flow_block ul li .img .ico {
    position: absolute;
    top: 10px;
    left: -10px;
  }
  .contents__wrapper .flow_block ul li .img .ico img {
    width: 62px;
  }
  .contents__wrapper .flow_block ul li .text {
    margin-left: 15px;
    width: 65%;
  }
  .contents__wrapper .flow_block ul li .text h4 {
    margin-bottom: 10px;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .contents__wrapper .flow_block ul li .text p {
    font-size: 10px;
    font-size: 1rem;
  }
  .contents__wrapper .qa_block {
    margin-bottom: 60px;
  }
  .contents__wrapper .qa_block ul li {
    padding: 20px;
  }
  .contents__wrapper .qa_block ul li div img {
    width: 26px;
    height: 26px;
  }
  .contents__wrapper .qa_block ul li div p {
    padding-left: 8px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .contents__wrapper .qa_block ul li div p span {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .contents__wrapper .cp_block {
    background: url(../img/cp_bg_sp.jpg) no-repeat top center #000000;
    padding: 60px 0;
  }
  .contents__wrapper .cp_block .ttl {
    padding: 0 20px;
    margin-bottom: 35px;
    font-size: 28px;
    font-size: 2.8rem;
  }
  .contents__wrapper .cp_block .cat {
    padding: 0 20px;
    margin: 0 auto 40px;
    width: 100%;
  }
  .contents__wrapper .cp_block span {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .contents__wrapper .contact_block {
    margin-bottom: 60px;
  }
  .contents__wrapper .contact_block .head {
    padding: 40px 0 20px;
  }
  .contents__wrapper .contact_block .head h3 {
    margin-bottom: 32px;
    font-size: 24px;
    font-size: 2.4rem;
  }
  .contents__wrapper .contact_block .head p {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .contents__wrapper .contact_block .area {
    display: block;
    padding: 0 20px 40px;
    background: #353535;
  }
  .contents__wrapper .contact_block .area .block {
    width: 100%;
    padding: 30px 20px;
  }
  .contents__wrapper .contact_block .area .block h4 {
    margin-bottom: 15px;
    padding-bottom: 15px;
    font-size: 19px;
    font-size: 1.9rem;
  }
  .contents__wrapper .contact_block .area .block h4:before {
    width: 68%;
  }
  .contents__wrapper .contact_block .area .bg01 {
    margin-bottom: 15px;
  }
  .contents__wrapper .contact_block .area .point {
    margin-bottom: 15px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .contents__wrapper .contact_block .area .tel a {
    font-size: 32px;
    font-size: 3.2rem;
  }
}
/* 768px-1190
------------------------------ */
@media screen and (min-width: 768px) and (max-width: 1190px) {
  .header .main_nav ul li {
    margin-right: 20px;
  }
  .header .main_nav ul li a {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .contents__wrapper main .box .text .cat {
    padding-left: 64px;
    font-size: 28px;
    font-size: 2.8rem;
  }
  .contents__wrapper main .box .text .cat:before {
    width: 50px;
  }
  .contents__wrapper main .box .text h1 {
    margin: 20px 0 50px;
  }
  .contents__wrapper main .video {
    width: 40%;
    overflow: hidden;
  }
  .contents__wrapper .solution_block .list .text {
    padding: 0 30px;
  }
  .contents__wrapper .solution_block .list .text .head {
    margin-bottom: 32px;
    font-size: 42px;
    font-size: 4.2rem;
  }
  .contents__wrapper .solution_block .list .text h2 {
    margin-bottom: 32px;
    font-size: 38px;
    font-size: 3.8rem;
  }
  .contents__wrapper .solution_block .list .text .detail {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .contents__wrapper .merit_block .inner {
    padding: 0 20px;
  }
  .contents__wrapper .merit_block .box ul li {
    margin-right: 20px;
    margin-bottom: 20px;
    width: calc(33% - 12px);
    background: #fff;
    padding: 24px 15px;
  }
  .contents__wrapper .merit_block .box ul li h3 {
    margin-bottom: 20px;
    font-size: 26px;
    font-size: 2.6rem;
  }
  .contents__wrapper .merit_block .box ul li .area .img {
    margin-bottom: 20px;
  }
  .contents__wrapper .merit_block .box ul li .area p {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .contents__wrapper .works_block .inner {
    padding: 0 20px;
  }
  .contents__wrapper .works_block .cat {
    margin-bottom: 36px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .contents__wrapper .works_block .box ul li {
    margin-right: 20px;
    margin-bottom: 20px;
    width: calc(33% - 12px);
    background: #fff;
  }
  .contents__wrapper .works_block .box ul li .text_area {
    padding-bottom: 20px;
  }
  .contents__wrapper .works_block .box ul li .text_area h3 {
    margin-bottom: 16px;
    padding: 26px 18px 0;
    font-weight: 700;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .contents__wrapper .flow_block ul li {
    margin-bottom: 20px;
  }
  .contents__wrapper .flow_block ul li .img {
    width: 30%;
    padding: 0 20px;
  }
  .contents__wrapper .flow_block ul li .img .ico {
    top: 10px;
    left: 0;
  }
  .contents__wrapper .flow_block ul li .img .ico img {
    width: 120px;
  }
  .contents__wrapper .flow_block ul li .text {
    width: 70%;
  }
  .contents__wrapper .flow_block ul li .text h4 {
    font-size: 26px;
    font-size: 2.6rem;
  }
  .contents__wrapper .qa_block .q,
  .contents__wrapper .qa_block .a {
    padding: 0 20px;
  }
  .contents__wrapper .cp_block .ttl {
    font-size: 32px;
    font-size: 3.2rem;
  }
  .contents__wrapper .cp_block .cat {
    margin: 0 auto 20px;
    width: 50%;
  }
  .contents__wrapper .contact_block .head h3 {
    margin-bottom: 26px;
    font-size: 32px;
    font-size: 3.2rem;
  }
  .contents__wrapper .contact_block .head p {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .contents__wrapper .contact_block .area .block {
    width: 50%;
    padding: 60px 20px;
  }
  .contents__wrapper .contact_block .area .block h4 {
    font-size: 26px;
    font-size: 2.6rem;
  }
  .contents__wrapper .contact_block .area .point {
    margin-bottom: 26px;
  }
  .contents__wrapper .contact_block .area .tel a {
    font-size: 48px;
    font-size: 4.8rem;
  }
}
/* max 768px
--------------------------------------------------*/
@media screen and (min-width: 786px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
  .kv {
    height: 100vh;
    display: flex;
    align-items: center;
  }
  .videos {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
  }
  .videos::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
  }
  .videos video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
}/*# sourceMappingURL=style.css.map */