/*
* fontawesomeセット
* content:'\○○○';
* font: var(--fa-font-solid);
*/
/*=====================================
*
*header
*
=======================================*/
/*=====================================
*
*header
*
=======================================*/
header{
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 4;
  width: 100%;
  transition: .3s;
  height: 100px;
  border-bottom: 1px solid #fff;
}
header.active{
  border-bottom: 1px solid #efefef;
}
header .header_content::before {
  content: "";
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 60px;
  left: 0;
  background: rgb(0 0 0 / 50%);
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}
header.active .header_content::before {
  opacity: 1;
  visibility: visible;
}
.header_content{
  display: flex;
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
  padding: 0 40px;
  height: 100%;
  align-items: center;
}
.header_content .cta_box {
  width: auto;
  display: flex;
  justify-content: end;
  align-items: center;
  margin-left: 20px;
}
.header_content .cta_box .tel_box01 a {
  font-size: 18px;
  font-weight: bold;
  pointer-events: none;
  color: #000;
  display: flex;
  align-items: center;
  margin-right: 30px;
}
.header_content .cta_box .mail_box01 a {
  background: #013b82;
  font-size: 18px;
  border: 1px solid #013b82;
  position: relative;
  width: 250px;
  color: #fff;
  display: flex;
  height: 70px;
  justify-content: center;
  align-items: center;
  border-radius: 0px;
  transition: .3s;
  font-weight: bold;
  border-radius: 70px;
  gap: 10px;
}
.header_content .cta_box .mail_box01 a::before {
  content: "\f0e0";
  background-size: contain;
  margin-top: 3px;
  background-repeat: no-repeat;
  font-family: "Font Awesome 5 Free";
  font-size: 24px;
}
.header_content .cta_box .mail_box01 a:hover {
  background-color: #fff;
  color: #013b82;
}
.header_content .cta_box .mail_box01 a:hover::before{
  background-image: url(img/mail1_2.png);
}
.header_content .logo {
    display: block;
    text-align: left;
    width: 310px;
}
.header_content .logo a {
  height: 100%;
  text-align: left;
  display: block;
  transition: .3s;
}
.header_content .logo a:hover{
  opacity: .7;
}
.header_content .logo a img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
/* pc */
@media only screen and (min-width: 1025px) {
  .header_content .menu{
    width: 100%;
  }
  .header_content .menu .Gmenu{
    height: 100%;
    display: flex;
    justify-content: flex-end;
  }
  .header_content .menu ul li{
    position: relative;
  }
  .header_content .menu ul li a{
    font-size: 18px;
    color: #000;
    font-family: 'Noto Sans JP', sans-serif;
    display: flex;
    align-items: center;
    transition: .3s;
    justify-content: center;
    background: #fff;
    padding: 14px 20px 10px;
    font-weight: 700;
  }
  .header_content .menu ul li a:hover {
      color: #013b82;
  }
  .header__hamburger {
    display: none;
  }
  /*ドロップダウンメニュ*/
  li.menu-item-has-children{
    position: relative;
  }
  .Gmenu > li.menu-item-has-children > a::after {
    font-family: "Font Awesome 5 Free";
    content: "\f078";
    font-weight: bold;
    font-size: 12px;
    transition: .3s;
    margin-left: 5px;
  }
  li.menu-item-has-children.active a::after{
    transform: rotate(-180deg) ;
  }
  .Gmenu > li.menu-item-has-children:hover > a::after{
    transform: rotate(-180deg);
  }
  .header_content .menu .Gmenu > li > ul{
    position: absolute;
    background-color: #fff;
    width: 430px;
    display: flex;
    flex-direction: row;
    padding: 20px 20px 10px;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
  }
  .header_content .menu .Gmenu > li:hover > ul{
    visibility: visible;
    opacity: 1;
  }
  .header_content .menu .Gmenu > li > ul.active{
    display: flex;
  }
  .header_content .menu ul li ul li{
    width: 100%;
  }
  .header_content .menu .Gmenu > li > ul > li > a {
    border-bottom: 1px solid #c73527;
    pointer-events: none;
    font-size: 16px;
    justify-content: flex-start;
    padding: 0;
    width: fit-content;
    padding-bottom: 10px;
  }
  .header_content .menu .Gmenu > li > ul > li > ul {
    margin-top: 10px;
  }
  .header_content .menu .Gmenu > li > ul > li > ul > li > a {
    padding: 0;
    margin: 0px 0 10px;
    justify-content: flex-start;
  }
}
/*ドロップダウンメニュend sp*/
@media only screen and (max-width: 1024px) {
  body.active{
    height: 100%;
    overflow: hidden;
  }
  /*ドロップダウンメニュ*/
  li.menu-item-has-children > a::after{
    right: 20px;
    top: 20px;
    font-size: 16px;
    transition: .3s;
    position: absolute;
    pointer-events: none;
    display: none;
  }
  .header_content .menu ul li ul{
    position: relative;
    margin-top: 0;
  }
  .Gmenu > li.menu-item-has-children::before {
    position: absolute;
    top: 0;
    right: 0;
    background: #efefef;
    width: 60px;
    height: 64px;
    font-family: "Font Awesome 5 Free";
    content: "\f078";
    font-weight: bold;
    font-size: 12px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  /*ドロップダウンメニュend*/

  .sec09_content {
    padding: 0px !important;
  }
  .mv_area{
    margin-top: 60px !important;
  }
  .header_content .menu {
    position: fixed;
    right: 0px;
    top: 60px;
    width: 100%;
    background-color: rgb(0 163 175 / 95%);
    transition: ease .3s;
    overflow-y: scroll;
    opacity: 0;
    visibility: hidden;
    max-width: 300px;
    left: initial;
    transform: translate(100%, 0%);
    background: #fff;
    height: 100%;
    padding: 20px 30px 20px;
  }
  .header_content h1{
    width: 230px;
  }
  .header__hamburger {
    width: 30px;
    height: 100%;
    display: block;
  }
  .header_content .menu ul{
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 50px;
  }
  .header_content .menu ul li{
    width: 100%;
    position: relative;
  }
  .header_content .menu ul li a{
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0;
    font-size: 16px;
    border-bottom: 1px solid #efefef;
    color: #333;
    font-weight: 500;
  }
  .hamburger {
    background-color: transparent;
    border-color: transparent;
    z-index: 9999;
  }
  /* ハンバーガーメニューの線 */
  .hamburger span {
    width: 100%;
    height: 1px;
    background-color: #000;
    position: relative;
    transition: ease .3s; /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
    display: block;
  }
  .hamburger span:nth-child(1) {
    top: 0;
  }
  .hamburger span:nth-child(2) {
    margin: 8px 0;
  }
  .hamburger span:nth-child(3) {
    top: 0;
  }
  /* ハンバーガーメニュークリック後のスタイル */
  .menu.active {
    opacity: 1;
    visibility: visible;
    transform: translate(0%, 0%);
  }
  body.active .header{
    border-bottom: 1px solid #efefef;
  }
  .hamburger.active span:nth-child(1) {
    top: 5px;
    transform: rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    top: -13px;
    transform: rotate(-45deg);
  }
  .header_content {
    padding: 0 20px;
    height: 60px;
    align-items: center;
}
.header_content .cta_box.sp_tb{
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: 0px;
}
.header_content .cta_box .RequestCatalog01, .header_content .cta_box .mail_box01 {
  width: 50%;
  justify-content: center;
  display: flex;
}
.header_content .menu .Gmenu > li > ul {
  width: 100%;
  flex-direction: column;
  position: relative;
  border-bottom: 1px solid #cccccc;
  display: none;
  opacity: 0;
  height: 0;
  transition: .3s;
  padding: 0 20px;
  display: flex;
  transform: scaleY(0);
  transform-origin: center top;
}
.header_content .menu .Gmenu > li > ul.active {
  opacity: 1;
  height: 100%;
  padding: 20px 20px 10px;
  visibility: visible;
  transform: scaleY(1);
}
.header_content .menu .Gmenu > li > ul > li > ul > li > a {
  justify-content: flex-start;
  padding: 10px 0;
  margin: 0;
  font-size: 14px;
  border-bottom: 1px solid #ccc;
}
.header_content .menu .Gmenu > li > ul > li {
  margin-bottom: 20px;
}
.header_content .cta_box .tel_box01 {
  width: 100%;
  display: flex;
  justify-content: center;
}
.header_content .cta_box .RequestCatalog01, .header_content .cta_box .mail_box01 {
  width: 100%;
  justify-content: center;
  display: flex;
}
.header_content .cta_box .tel_box01 a {
  pointer-events: all;
  margin-bottom: 30px;
  margin-right: 0;
}
.header_content .cta_box .mail_box01 a {
  font-size: 14px;
  height: 60px;
}
.header_content .cta_box .mail_box01 a::before {
  margin-top: 1px;
  font-size: 20px;
}
}

/*=====================================
*
*mv_area
*
=======================================*/
.mv_area {
  background: #e0eeff;
  position: relative;
  height: 800px;
  margin-top: 100px;
  overflow: hidden;
}
.mv_area .img_box {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 72.95%;
  animation: mvimg .5s ease-out .3s;
}
@keyframes mvimg{
  0%{
    opacity: 0;
    transform: translate(0 , 10%);
  }
  /* 60%{
    opacity: 0;
  } */
  100%{
    opacity: 1;
    transform: translate(0 , 0%);
  }
}
.mv_area .mv_title_area {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  top: 74px;
  transform: translate(-50%, 0px);
  padding: 0 20px;
}
.mv_area .mv_title_area h1.title {
  color: #013b82;
  font-size: 80px;
  font-weight: bold;
  font-family: "M PLUS Rounded 1c", sans-serif;
  letter-spacing: .05em;
  line-height: 1.8;
}
.mv_area .mv_title_area h1.title span.blue span.inblue {
  border: 1px solid;
  border-radius: 10px;
  margin-right: 5px;
  line-height: 1.13;
  display: inline-block;
  padding: 0 3px;
  animation: inblue .3s ease-out .3s;
}
/* .mv_area .mv_title_area h1.title span.blue span.inblue:nth-of-type(1){
  animation-delay: .2s;
}
.mv_area .mv_title_area h1.title span.blue span.inblue:nth-of-type(2){
  animation-delay: .3s;
}
.mv_area .mv_title_area h1.title span.blue span.inblue:nth-of-type(3){
  animation-delay: .4s;
}
.mv_area .mv_title_area h1.title span.blue span.inblue:nth-of-type(4){
  animation-delay: .5s;
}
.mv_area .mv_title_area h1.title span.blue span.inblue:nth-of-type(5){
  animation-delay: .6s;
} */
@keyframes inblue{
  0%{
    transform: scale(1);
  }
  50%{
    transform: scale(1.2);
  }
  100%{
    transform: scale(1);
  }
}
.mv_area .mv_title_area h1.title span.yellow span.inyellow {
    border: 1px solid #f9bb00;
    border-radius: 10px;
    margin-right: 5px;
    line-height: 1.13;
    display: inline-block;
    padding: 0 3px;
    color: #fff;
    background: #f9bb00;
    animation: inyellow .3s ease-out .3s;
    animation-delay: .5s;
}
/* .mv_area .mv_title_area h1.title span.yellow span.inyellow:nth-of-type(1){
  animation-delay: .2s;
}
.mv_area .mv_title_area h1.title span.yellow span.inyellow:nth-of-type(2){
  animation-delay: .3s;
}
.mv_area .mv_title_area h1.title span.yellow span.inyellow:nth-of-type(3){
  animation-delay: 0.4s;
}
.mv_area .mv_title_area h1.title span.yellow span.inyellow:nth-of-type(4){
  animation-delay: 0.5s;
} */
@keyframes inyellow{
  0%{
    transform: scale(1);
  }
  50%{
    transform: scale(1.2);
  }
  100%{
    transform: scale(1);
  }
}
.mv_area .mv_title_area h1.title span.yellow span.inyellow.inque {
  position: relative;
}
.mv_area .mv_title_area h1.title span.yellow span.inyellow.inque::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translate(-50%, -100%);
  background-image: url(../images/parts01.png);
  width: 57px;
  height: 21px;
  background-repeat: no-repeat;
}
.mv_area .mv_title_area .mv_btn_area {
  position: relative;
  width: 300px;
  margin-top: 44px;
}
.mv_area .mv_title_area .mv_btn_area .comment {
  background: #fff;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: bold;
  color: #013b82;
  font-size: 20px;
  border-radius: 10px;
  position: relative;
  margin-bottom: 37px;
  /* animation: poyopoyo 2s ease-out ;
  opacity: 1;
  animation-delay: 0.5s; */
  animation: purine 1s linear ;
  transform-origin: center bottom;
  animation-delay: .3s;
}
/* @keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.85);
  }
} */
@keyframes purine {
  0% {
      /* 上から落ちてくる */
  }
  10% {
      /* 上から落ちてくる */
      transform: translateY(0);
  }
  15% {
      /* 落ちてきた衝撃で縦に少しつぶれる */
      transform: scale(1.1, 0.9);
      opacity: 1;
  }
  20% {
      /* 落ちてきた衝撃で縦にさらに少しつぶれる */
      transform: scale(1.1, 0.8);
  }
  30% {
      /* 縦につぶれながらもつぶれた反動で少し横に伸びる */
      transform: scale(1.15, 0.7);
  }
  45% {
      /* 縦につぶれた反動で横に伸びる */
      transform: scale(1.2, 0.5);
  }
  50% {
      /* つぶれた反動で一気に縦に伸びる */
      transform: scale(0.85, 1.15);
  }
  60% {
      /* 伸びた反動で縦につぶれる */
      transform: scale(1.1, 0.9);
  }
  70% {
      /* つぶれた反動で縦に少し伸びる */
      transform: scale(0.95, 1.08);
  }
  90% {
      /* 伸びた反動でほんの少し縦につぶれる */
      transform: scale(0.98, 1.02);
  }
  100% {
      /* 通常のサイズになる */
      transform: scale(1, 1);
      opacity: 1;
  }
}
.mv_area .mv_title_area .mv_btn_area .comment::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 17px solid #fff;
}
.mv_area .mv_title_area .mv_btn_area .mv_btn {
  position: relative;
}
.mv_area .mv_title_area .mv_btn_area .mv_btn a {
  position: relative;
  background: #013b82;
  border: 1px solid #013b82;
  width: 300px;
  height: 80px;
  display: flex;
  border-radius: 50px;
  color: #fff;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 20px;
  gap: 10px;
  transition: .3s;
}
.mv_area .mv_title_area .mv_btn_area .mv_btn a::before {
  content: "\f0e0";
  background-size: contain;
  margin-top: 3px;
  background-repeat: no-repeat;
  font-family: "Font Awesome 5 Free";
  font-size: 24px;
}
.mv_area .mv_title_area .mv_btn_area .mv_btn a:hover {
  background: #fff;
  color: #013b82;
}
.mv_area .scroll_box {
  bottom: 50px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0px);
  padding: 0 20px;
}
.mv_area .scroll_box .scroll {
  content: "";
  position: relative;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #fff;
  margin-bottom: 10px;
  animation: scroll_anime 2s ease-out .1s infinite;
}
.mv_area .scroll_box .scroll:nth-of-type(2) {
  animation-delay: .3s;
}
.mv_area .scroll_box .scroll:nth-of-type(3) {
  margin-bottom: 0px;
  animation-delay: .6s;
}
@keyframes scroll_anime{
  0%{
    opacity: 1;
  }
  50%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
.title_box01 {
  position: relative;
}
.title_box01 h2 {
    font-size: 50px;
    font-weight: bold;
    letter-spacing: .05em;
    text-align: center;
    font-family: "M PLUS Rounded 1c", sans-serif;
}
.title_box01 .redtext p {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: .05em;
  text-align: center;
  color: #cc0000;
  font-family: "M PLUS Rounded 1c", sans-serif;
  border-bottom: 3px solid;
  width: fit-content;
  margin: 0 auto;
}
.problem_sec {
  position: relative;
}
.problem_sec .problemTop_row {
    position: relative;
    height: 555px;
}
.problem_sec .problemTop_row .smoke {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
}
.problem_sec .problemTop_row .img_box {
    position: absolute;
    margin: 0 auto;
    margin-top: auto;
    width: 150px;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0px);
}
.problem_sec .problemTop_row .smoke:nth-of-type(1) {
    bottom: 10px;
    left: 0;
}
.problem_sec .problemTop_row .smoke p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    color: #013b82;
    font-weight: bold;
    font-size: 20px;
}
.problem_sec .problemTop_row .smoke img {
    position: relative;
}
.problem_sec .problemTop_row .smoke:nth-of-type(2) {
    left: 255px;
    top: 50%;
    transform: translate(0px, -50%);
}
.problem_sec .problemTop_row .smoke:nth-of-type(3) {
    left: 50%;
    top: 0;
    transform: translate(-50%, 0%);
}
.problem_sec .problemTop_row .smoke:nth-of-type(4) {
    right: 255px;
    top: 50%;
    transform: translate(0px, -50%);
}
.problem_sec .problemTop_row .smoke:nth-of-type(5) {
    bottom: 10px;
    right: 0;
}
.problem_sec .specific_row {
  background: #e0eeff;
  border-radius: 10px;
  position: relative;
}
.problem_sec .specific_row::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  background: #b8d8ff;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 10px;
}
.problem_sec .specific_row .in {
  position: relative;
  overflow: hidden;
  padding: 30px 30px 0px 0px;
}
.problem_sec .specific_row .in h2 {
  font-size: 50px;
  text-align: center;
  font-weight: bold;
  letter-spacing: .05em;
  font-family: "M PLUS Rounded 1c", sans-serif;
  margin-bottom: 30px;
  padding-left: 30px;
}
.problem_sec .specific_row .in .flex {
  display: flex;
  gap: 30px;
}
.problem_sec .specific_row .in .flex .img_col {
  margin-bottom: -3px;
  width: 28.5%;
}
.problem_sec .specific_row .in .flex .check_col {
  position: relative;
  width: calc(71.5% - 30px);
  margin-bottom: 30px;
}
.problem_sec .specific_row .in .flex .check_col ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.problem_sec .specific_row .in .flex .check_col ul li {
  background: #fff;
  border-radius: 10px;
  display: flex;
  padding: 13px 20px 13px 80px;
  position: relative;
  overflow: hidden;
}
.problem_sec .specific_row .in .flex .check_col ul li .img_box {
  background: #013b82;
  position: absolute;
  width: 60px;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.problem_sec .specific_row .in .flex .check_col ul li .img_box img {
  width: 30px;
  height: 27px;
}
.problem_sec .specific_row .in .flex .check_col ul li span {
  font-size: 20px;
  font-weight: bold;
  color: #013b82;
}
.problem_sec .no_row {
  margin: 0 auto;
  width: fit-content;
  max-width: 428px;
  margin-top: -20px;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.problem_sec .scroll_row {
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
.problem_sec .scroll_row .scroll {
  content: "";
  position: relative;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 20px solid #cc0000;
  margin-bottom: 20px;
}
.problem_sec .scroll_row .scroll:last-of-type{
  margin-bottom: 0px;
}
.solution_sec {
  background: #e0eeff;
  position: relative;
}
.solution_sec::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 150px solid transparent;
  border-right: 150px solid transparent;
  border-top: 80px solid #fff;
  margin-bottom: 20px;
  transform: translate(-50%, 0px);
}
.solution_sec .title {
  position: relative;
  margin-bottom: 70px;
}
.solution_sec .title h2 {
  background: #fff;
  width: fit-content;
  border-radius: 10px;
  margin: 0 auto;
  font-size: 50px;
  font-weight: bold;
  font-family: "M PLUS Rounded 1c", sans-serif;
  letter-spacing: .05em;
  color: #cc0000;
  padding: 0px 28px;
}
.solution_sec .title p {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  line-height: 2;
  margin-top: 20px;
}
.solution_sec .solution_row {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr 1fr;
}
.solution_sec .solution_row .solution_col {
  background: #fff;
  border-radius: 10px;
  border: 1px dashed #000;
  padding: 50px 20px 30px;
  position: relative;
}
.solution_sec .solution_row .solution_col .num {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: #f9bb00;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-size: 20px;
  font-weight: bold;
  font-family: "M PLUS Rounded 1c", sans-serif;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.solution_sec .solution_row .solution_col .img_box {
  max-width: 200px;
  margin: 0 auto;
  width: 100%;
}
.solution_sec .solution_row .solution_col h3 {
  font-size: 20px;
  font-weight: bold;
  color: #013b82;
  text-align: center;
  margin-top: 22px;
  margin-bottom: 18px;
}
.solution_sec .solution_row .solution_col p {
  font-size: 18px;
}
.survice_sec {
  background-image: url(../images/parts09.jpg);
  background-repeat: no-repeat;
  z-index: 0;
  position: relative;
  overflow: hidden;
}
.title_box02 {
  position: relative;
}
.title_box02 h2 {
  font-size: 50px;
  font-weight: bold;
  letter-spacing: .05em;
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
}
.title_box02 .img_box {
  margin: 0 auto;
  width: 57px;
}
.survice_sec .service_row {
  background: #fff;
  border: 1px dashed #000;
  border-radius: 10px;
  padding: 43px 50px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 80px;
  position: relative;
}
.survice_sec .service_row:last-of-type{
  margin-bottom: 0px;
}
.survice_sec .service_row .text_col .num_flex {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.survice_sec .service_row .text_col .num_flex .text {
  font-weight: bold;
  font-size: 18px;
  color: #013b82;
  font-family: "M PLUS Rounded 1c", sans-serif;
  letter-spacing: .05em;
  border-bottom: 1px solid;
  line-height: 1.4;
}
.survice_sec .service_row .text_col .num_flex .num {
  font-size: 40px;
  font-weight: bold;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #013b82;
  line-height: 1;
}
.survice_sec .service_row .text_col h3 {
  font-weight: bold;
  font-size: 26px;
  letter-spacing: .05em;
  font-family: "M PLUS Rounded 1c", sans-serif;
  margin-bottom: 20px;
}
.survice_sec .service_row .text_col h3 span.blue {
  color: #013b82;
}
.survice_sec .service_row .text_col p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}
.survice_sec .service_row::before {
  content: "";
  background: #e0eeff;
  width: 700px;
  height: 100%;
  position: absolute;
  left: 0;
  top: -30px;
  border-radius: 0px 10px 10px 0px;
  margin: 0 calc(50% - 50vw);
  z-index: -1;
}
.survice_sec .service_row.reverse::before {
  border-radius: 10px 0px 0px 10px;
  left: initial;
  right: 0;
}
.survice_sec .service_row .img_col {
  max-width: 450px;
}
.media_sec {
  position: relative;
}
.media_sec .media_row ul {
  display: grid;
  flex-wrap: wrap;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.media_sec .media_row p {
  line-height: 2;
  margin-top: 10px;
}
.cta_sec {
  background: repeating-linear-gradient(-45deg, #b7d7ff, #b7d7ff 3px, #ffffff 0, #ffffff 6px);
  position: relative;
}
.cta_sec .white_box {
  background: #fff;
  border-radius: 10px;
  padding: 50px 50px;
  position: relative;
}
.cta_sec .white_box h2 {
  text-align: center;
  font-size: 50px;
  font-weight: bold;
  font-family: "M PLUS Rounded 1c", sans-serif;
  letter-spacing: .05em;
  margin-bottom: 30px;
}
.cta_sec .white_box h2 .blue {
  color: #013b82;
}
.cta_sec .white_box .contact_btn {
  width: fit-content;
  margin: 0 auto;
}
.cta_sec .white_box .contact_btn a {
  background: #013b82;
  font-size: 18px;
  border: 1px solid #013b82;
  position: relative;
  width: 250px;
  color: #fff;
  display: flex;
  height: 70px;
  justify-content: center;
  align-items: center;
  border-radius: 0px;
  transition: .3s;
  font-weight: bold;
  border-radius: 70px;
  gap: 10px;
}
.cta_sec .white_box .contact_btn a:hover{
  background: #fff;
  border: 1px solid #013b82;
  color: #013b82;
}
.cta_sec .white_box .contact_btn a::before {
  content: "\f0e0";
  background-size: contain;
  margin-top: 3px;
  background-repeat: no-repeat;
  font-family: "Font Awesome 5 Free";
  font-size: 24px;
}
.cta_sec .white_box .tel_area {
  position: relative;
  background: #fff;
  border: 2px dashed #013b82;
  border-radius: 10px;
  padding: 50px 20px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 30px;
}
.cta_sec .white_box .tel_area h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 22px;
}
.cta_sec .white_box .tel_area .tel {
  margin-bottom: 24px;
}
.cta_sec .white_box .tel_area .tel a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 40px;
  font-weight: bold;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #013b82;
  line-height: 1;
  transition: .3s;
  pointer-events: none;
}
.cta_sec .white_box .tel_area .tel a:hover{
  opacity: .7;
}
.cta_sec .white_box .tel_area .tel a::before{
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/parts11_01.png);
  width: 50px;
  height: 50px;
  position: relative;
  display: block;
}
.cta_sec .white_box .tel_area p {
  font-size: 18px;
  font-weight: 500;
}
.cta_sec .white_box::before, .cta_sec .white_box::after {
  content: "";
  width: 20px;
  height: 20px;
  background: #f9bb00;
  position: absolute;
  border-radius: 50%;
}
.cta_sec .white_box::before {
  left: 20px;
  top: 20px;
}
.cta_sec .white_box::after {
  right: 20px;
  top: 20px;
}
.case_sec {
  position: relative;
}
.case_sec .case_row {
  position: relative;
  background: #e0eeff;
  border-radius: 10px;
  overflow: hidden;
  padding: 0px 50px 50px;
  margin-bottom: 50px;
}
.case_sec .case_row:last-of-type{
  margin-bottom: 0px;
}
.case_sec .case_row h3 {
  background: #013b82;
  text-align: center;
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  font-family: "M PLUS Rounded 1c", sans-serif;
  padding: 9px 20px;
  width: calc(100% + 100px);
  transform: translate(-50px, 0px);
  margin-bottom: 22px;
}
.case_sec .case_row .info_text p {
  font-size: 18px;
  font-weight: 500;
}
.case_sec .case_row .beforeafter_flex {
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 30px;
  position: relative;
}
.case_sec .case_row .beforeafter_flex .beforeafter_col {
  background: #fff;
  border-radius: 10px;
  border: 1px dashed #013b82;
  padding: 30px 20px;
}
.case_sec .case_row .info_text {
  margin-bottom: 24px;
}
.case_sec .case_row .beforeafter_flex .scroll_box {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 10px;
  top: 50%;
}
.case_sec .case_row .beforeafter_flex .beforeafter_col .img_box {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  margin-bottom: 22px;
}
.case_sec .case_row .beforeafter_flex .beforeafter_col h4 {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  font-family: "M PLUS Rounded 1c", sans-serif;
  letter-spacing: .05em;
  margin-bottom: 13px;
}
.case_sec .case_row .beforeafter_flex .beforeafter_col p {
  font-size: 18px;
  font-weight: 500;
}
.case_sec .case_row .beforeafter_flex .scroll_box .scroll {
  content: "";
  position: relative;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #fff;
  animation: scroll_anime02 2s ease-out .1s infinite;
}
.case_sec .case_row .beforeafter_flex .scroll_box .scroll:nth-of-type(2) {
  animation-delay: .3s;
}
@keyframes scroll_anime02{
  0%{
    opacity: 1;
  }
  50%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
/* .case_sec .case_row .beforeafter_flex .scroll_box .scroll:nth-of-type(1) {
  opacity: .7;
} */
.case_sec .case_row .beforeafter_flex .beforeafter_col:nth-of-type(3) {
  border: 1px dashed #f9bb00;
}
.case_sec .case_row .voice_area {
  position: relative;
}
.case_sec .case_row .voice_area .voice_flex {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.case_sec .case_row .voice_area .voice_flex h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}
.case_sec .case_row .voice_area p {
  font-size: 18px;
}
.accordion-container {
  width: 100%;
}
dl.accordion-list {
  background: #fff;
  border-radius: 10px;
  border: 2px solid #333;
}
.accordion-list:not(:first-child) {
  margin-top: 30px;
}
.accordion-title {
  cursor: pointer;
  font-size: 16px;
  padding: 30px 30px;
  position: relative;
}
.accordion-title:before {
  position: absolute;
  content: '';
  top: 50%;
  right: 39px;
  height: 1px;
  width: 11px;
  background: #fff;
  transform: rotate(90deg);
  transition: all .3s ease-in-out;
  z-index: 1;
}
.accordion-title:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 39px;
  height: 1px;
  width: 11px;
  background: #fff;
  transition: all .3s ease-in-out;
  z-index: 1;
}
.accordion-title.open:before {
  transform: rotate(180deg);
}
.accordion-title.open:after {
  opacity: 0;
}
.accordion-text {
  display: none;
  padding: 30px 30px;
  position: relative;
}
.accordion-text::before {
  content: "";
  position: absolute;
  top: 0;
  width: calc(100% - 60px);
  height: 1px;
  background: #d7e9ff;
  left: 30px;
}
.accordion-title .Q {
  color: #013b82;
  font-size: 30px;
  position: absolute;
  top: 18px;
  font-family: "M PLUS Rounded 1c";
  font-weight: 700;
}
.accordion-title p {
  padding: 0 30px 0px 50px;
  font-size: 18px;
  letter-spacing: .05em;
  font-weight: bold;
}
.accordion-text .A {
  color: #013b82;
  font-size: 30px;
  position: absolute;
  top: 22px;
  font-family: "M PLUS Rounded 1c";
  font-weight: 700;
}
.accordion-text p {
  padding: 0 0px 0px 50px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}
.accordion-title .en {
  background: #013b82;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translate(0px, -50%);
}
.contact_sec {
  background: #e0eeff;
}
.title_box02 p {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  margin-top: 25px;
}


.normalform {
    margin: 0 auto;
}
.normalform .cp_iptxt {
  border-bottom: 1px solid #fff;
  padding: 30px 0;
}
.normalform .cp_iptxt input:focus, .normalform .cp_iptxt textarea:focus {
  outline: #666666 1px solid;
}
.normalform .cp_iptxt textarea {
  width: 100%;
  border: 1px solid #efefef;
  font-size: 16px;
  resize: vertical;
  padding: 10px;
  border-radius: 3px;
  line-height: 1.7;
  padding: 16px 15px;
  margin-top: 10px;
}
.normalform .sub {
  text-align: center;
  margin-top: 50px;
}
.normalform .sub input{
  background: #013b82;
  color: #fff;
  border: none;
  padding: 23px 20px;
  width: 250px;
  font-size: 16px;
  transition: .3s;
  pointer-events: all;
  cursor: pointer;
  border-radius: 50px;
  transform: rotate(0.06deg);
  font-weight: bold;
  font-family: 'Noto Sans JP', sans-serif;
}
.normalform .sub input:hover{
  opacity: .7;
}
.normalform .cp_iptxt .text {
  font-size: 18px;
  display: flex;
  align-items: center;
  color: #333;
  margin-top: 10px;
  font-weight: 500;
}
.normalform .cp_iptxt .text span.required {
  background: #666666;
  padding: 2px 10px 3px;
  font-size: 12px;
  color: #fff;
  margin-left: 10px;
  display: block;
  width: fit-content;
  font-weight: 400;
}
.normalform .cp_iptxt .place input[type="text"] {
  width: 100%;
  font-size: 16px;
  padding: 16px 15px;
  border: none;
  border-radius: 3px;
}
.normalform .cp_iptxt .place select {
  width: 100%;
  padding: 10px 5px;
  font-size: 16px;
  cursor: pointer;
  border: 1px solid #efefef;
  border-radius: 3px;
}
.normalform .cp_iptxt .place input[type="email"] {
  width: 100%;
  padding: 16px 15px;
  font-size: 16px;
  border: none;
  border-radius: 3px;
}
.cp_iptxt02{
  margin-top: 50px;
  text-align: center;
}
.cp_iptxt02 span.mwform-checkbox-field-text {
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
}
.cp_iptxt02 input[type="checkbox"] {
  cursor: pointer;
  position: relative;
  width: 13px;
  height: 13px;
  border: none;
  vertical-align: -1px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 3px;
  background: #fff;
}
.cp_iptxt02 input[type="checkbox"]:checked::before{
  position: absolute;
  top: -1px;
  left: 4px;
  transform: rotate(50deg);
  width: 4px;
  height: 8px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  content: '';
}
.normalform .cp_iptxt .place input[type="radio"] {
  cursor: pointer;
}
.normalform .cp_iptxt .place span.mwform-radio-field-text {
  cursor: pointer;
}
.normalform .cp_iptxt:first-of-type {
  border-top: 1px solid #fff;
} 
.normalform .cp_iptxt.flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.normalform .cp_iptxt .place {
  width: 79.4%;
}
footer {
  padding-top: 100px;
}
footer .logo {
  width: 175px;
  margin: 0 auto;
  margin-bottom: 50px;
}
footer .info {
  text-align: center;
  font-size: 18px;
  line-height: 2;
  margin-bottom: 24px;
}
footer .info a {
  color: #333;
  pointer-events: none;
}
footer .sns_flex {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 42px;
}
footer .sns_flex .sns a {
  width: 50px;
  height: 50px;
  background: #013b82;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s;
}
footer .sns_flex .sns a:hover{
  opacity: .7;
}
footer .sns_flex .sns.facebook a::after{
  content: "";
  background-image: url(../images/parts14.png);
  width: 12px;
  height: 21px;
  position: relative;
  display: block;
}
footer .sns_flex .sns.mail a::after{
  content: "";
  background-image: url(../images/parts15.png);
  width: 21px;
  height: 16px;
  position: relative;
  display: block;
}
footer .footer_menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
footer .footer_menu ul li a {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  transition: .3s;
}
footer .footer_menu ul li a:hover{
  color: #013b82;
}
.copyright {
  background: #013b82;
  text-align: center;
  height: 50px;
  color: #fff;
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
footer .logo a {
  display: block;
  transition: .3s;
}
footer .logo a:hover{
  opacity: .7;
}
.problem_sec .specific_row .in .flex .img_col img {
  object-position: bottom;
  object-fit: contain;
  width: 100%;
  height: 100%;
}


.fadeswhich{
  transition: ease all .3s;
  opacity: 0;
  position: relative;
  bottom: -50px;
}
.fadeswhich.fadeIn {
  opacity: 1;
  bottom: 0px;
}
.fadeswhich02{
  opacity: 0;
}
.fadeswhich02.fadeIn{
  opacity: 1;
  animation: purine .7s linear ;
  transform-origin: center bottom;
}
@keyframes fadeswhich02 {
  0% {
      /* 上から落ちてくる */
  }
  10% {
      /* 上から落ちてくる */
      transform: translateY(0);
  }
  15% {
      /* 落ちてきた衝撃で縦に少しつぶれる */
      transform: scale(1.1, 0.9);
      opacity: 1;
  }
  20% {
      /* 落ちてきた衝撃で縦にさらに少しつぶれる */
      transform: scale(1.1, 0.8);
  }
  30% {
      /* 縦につぶれながらもつぶれた反動で少し横に伸びる */
      transform: scale(1.15, 0.7);
  }
  45% {
      /* 縦につぶれた反動で横に伸びる */
      transform: scale(1.2, 0.5);
  }
  50% {
      /* つぶれた反動で一気に縦に伸びる */
      transform: scale(0.85, 1.15);
  }
  60% {
      /* 伸びた反動で縦につぶれる */
      transform: scale(1.1, 0.9);
  }
  70% {
      /* つぶれた反動で縦に少し伸びる */
      transform: scale(0.95, 1.08);
  }
  90% {
      /* 伸びた反動でほんの少し縦につぶれる */
      transform: scale(0.98, 1.02);
  }
  100% {
      /* 通常のサイズになる */
      transform: scale(1, 1);
      opacity: 1;
  }
}
.mw_wp_form_complete {
  padding-top: 150px;
}
.case_sec .case_row .beforeafter_flex .beforeafter_col p span {
  color: #cc0000;
}
/*=====================================
*
*front
*
=======================================*/

/*=====================================
*section1
=======================================*/

/*=====================================
*section2
=======================================*/

/*=====================================
*section3
=======================================*/

/*=====================================
*section4
=======================================*/

/*=====================================
*section5
=======================================*/

/*=====================================
*section6
=======================================*/

/*=====================================
*section7
=======================================*/

/*=====================================
*section8
=======================================*/

/*=====================================
*section9
=======================================*/

/*=====================================
*section10
=======================================*/


/*=====================================
*
*single
*
=======================================*/

/*=====================================
*
*page
*
=======================================*/

/*=====================================
*
*archive
*
=======================================*/

/*=====================================
*
*breadcrumb
*
=======================================*/

/*=====================================
*
*toc
*
=======================================*/

/*=====================================
*
*footer
*
=======================================*/

/*=====================================
*
*sidenav
*
=======================================*/


/*=====================================
*
*page single arcive 他ページ
*
=======================================*/
/* ---------------------------他ページlast ---------------------------*/

/*=====================================
*
*pc&tablet&spのnone処理
*
=======================================*/
/*=====================================
*pcのみ
=======================================*/
@media screen and (min-width: 1025px){
  .pcnone{
    display: none;
  }
}
/*=====================================
*tablet用
=======================================*/
@media screen and (max-width: 1024px) and (min-width: 415px){
  .tabnone{
    display: none;
  }
}
/*=====================================
*sp用
=======================================*/
@media screen and (max-width:414px){
  .spnone{
    display: none;
  }
}

/*==========================================================================
*
*pcパソコン
*
============================================================================*/
@media only screen and (min-width: 1025px) and (max-width: 1300px) {
  .problem_sec .specific_row .in .flex .check_col ul li span {
    font-size: 15px;
}
.mv_area .img_box {
  width: 90%;
}
}
@media only screen and (min-width: 1025px) and (max-width: 1500px) {
  .mv_area {
    height: 720px;
}
}
@media only screen and (min-width: 1025px) and (max-width: 1200px) {
  .problem_sec .problemTop_row .smoke:nth-of-type(2) {
    left: 175px;
}
.problem_sec .problemTop_row .smoke:nth-of-type(4) {
  right: 175px;
}
.solution_sec .solution_row .solution_col h3 {
  font-size: 17px;
}
.solution_sec .solution_row .solution_col p {
  font-size: 16px;
}
}
@media only screen and (min-width: 768px){
  .wp-block-columns.is-style-default.is-layout-flex.wp-block-columns-is-layout-flex{
    flex-wrap: nowrap!important;
  }
}
/*==========================================================================
*
*tbタブレット
*
============================================================================*/
@media only screen and (max-width: 1300px) {
  .w126 {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .header_content .logo {
    width: 170px;
}
header {
  height: 60px;
}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .mv_area .mv_title_area h1.title {
    font-size: 70px;
}
.mv_area {
    height: 600px;
}
.mv_area .mv_title_area {
    top: 30px;
}
.mv_area .scroll_box {
    bottom: 20px;
}
.mv_area .mv_title_area .mv_btn_area {
    margin-top: 30px;
}
.problem_sec .problemTop_row .smoke:nth-of-type(2) {
  left: 15%;
}
.problem_sec .problemTop_row .smoke:nth-of-type(4) {
  right: 15%;
}
.problem_sec .problemTop_row .smoke {
  width: 200px;
}
.problem_sec .problemTop_row .smoke p {
  font-size: 16px;
}
.problem_sec .problemTop_row .img_box {
  width: 130px;
  left: 49%;
}
.problem_sec .problemTop_row {
  height: 500px;
}
.problem_sec .specific_row .in .flex .check_col ul li span {
  font-size: 15px;
}
.problem_sec .specific_row .in .flex .check_col ul li .img_box {
  width: 40px;
}
.problem_sec .specific_row .in .flex .check_col ul li .img_box img {
  width: 20px;
  height: 17px;
}
.problem_sec .specific_row .in .flex .check_col ul li {
  padding: 13px 20px 13px 60px;
}
.solution_sec .solution_row {
  gap: 20px;
}
.solution_sec .solution_row .solution_col h3 {
  font-size: 18px;
}
.solution_sec .solution_row .solution_col p {
  font-size: 15px;
}
.survice_sec .service_row .text_col h3 {
  font-size: 20px;
}
.survice_sec .service_row .text_col p {
  font-size: 16px;
}
.survice_sec .service_row {
  align-items: center;
  padding: 43px 40px;
}
.cta_sec .white_box h2 {
  font-size: 45px;
}
.case_sec .case_row {
  padding: 0px 20px 50px;
}
.normalform .cp_iptxt .place {
  width: 70%;
}
}
/* ---------------------------タブレットonlylast ---------------------------*/
/*==========================================================================
*
*sp
*
============================================================================*/
@media only screen and (max-width: 767px) {
  .problem_sec .problemTop_row .smoke:nth-of-type(2) {
    left: 0;
    top: 47%;
}
  .problem_sec .problemTop_row .smoke:nth-of-type(4) {
    right: 0;
    top: 47%;
}
.problem_sec .problemTop_row .smoke {
  width: 145px;
}
.problem_sec .problemTop_row .smoke p {
  font-size: 12px;
}
.mv_area .mv_title_area h1.title {
  font-size: 34px;
  line-height: 1.8;
  letter-spacing: 0;
}
.mv_area .mv_title_area h1.title span.yellow span.inyellow.inque::before {
  top: -5px;
  width: 22px;
  height: 8px;
  background-size: contain;
}
.mv_area .mv_title_area h1.title span.yellow span.inyellow {
  border-radius: 5px;
  margin-right: 3px;
}
.mv_area .mv_title_area h1.title span.blue span.inblue {
  border-radius: 5px;
  margin-right: 3px;
}
.mv_area {
  height: 380px;
}
.mv_area .mv_title_area {
  top: 20px;
}
.mv_area .mv_title_area .mv_btn_area {
  width: 180px;
  margin-top: 10px;
}
.mv_area .mv_title_area .mv_btn_area .comment {
  height: 40px;
  font-size: 12px;
  margin-bottom: 15px;
}
.mv_area .mv_title_area .mv_btn_area .comment::after {
  bottom: 1px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
}
.mv_area .mv_title_area .mv_btn_area .mv_btn a {
  width: 180px;
  height: 50px;
  font-size: 13px;
}
.mv_area .mv_title_area .mv_btn_area .mv_btn a::before {
  margin-top: 1px;
  font-size: 16px;
}
.mv_area .img_box {
  width: 95%;
}
.mv_area .scroll_box .scroll {
  left: 20px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 8px solid #fff;
}
.title_box01 .redtext p {
  font-size: 14px;
  border-bottom: 2px solid;
}
.title_box01 h2 {
  font-size: 22px;
}
.problem_sec .problemTop_row .img_box {
  width: 90px;
  left: 50%;
  z-index: -1;
}
.problem_sec .problemTop_row {
  height: 360px;
}
.problem_sec .problemTop_row .smoke:nth-of-type(1) {
  left: -15px;
}
.problem_sec .problemTop_row .smoke:nth-of-type(5) {
  right: -20px;
}
.problem_sec .specific_row .in h2 {
  font-size: 22px;
  padding-left: 0px;
  margin-bottom: -40px;
}
.problem_sec .specific_row .in {
  padding: 30px 20px 0px 20px;
}
.problem_sec .specific_row .in .flex {
  gap: 0px;
  flex-direction: column;
}
.problem_sec .specific_row .in .flex .img_col {
  width: 28%;
}
.problem_sec .specific_row .in .flex .check_col ul {
  flex-direction: column;
  gap: 10px;
}
.problem_sec .specific_row .in .flex .check_col ul li {
  padding: 13px 20px 13px 53px;
}
.problem_sec .specific_row .in .flex .check_col ul li .img_box {
  width: 40px;
}
.problem_sec .specific_row .in .flex .check_col ul li .img_box {
  width: 40px;
}
.problem_sec .specific_row .in .flex .check_col ul li span {
  font-size: 14px;
}
.problem_sec .specific_row .in .flex .check_col {
  width: 100%;
}
.problem_sec .specific_row .in .flex .check_col ul li .img_box img {
  width: 20px;
  height: 17px;
}
.problem_sec .no_row {
  max-width: 200px;
}
.solution_sec .title h2 {
  font-size: 22px;
}
.problem_sec .scroll_row .scroll {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #cc0000;
  margin-bottom: 10px;
}
.solution_sec::before {
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-top: 50px solid #fff;
}
.solution_sec .title p {
  font-size: 14px;
  text-align: left;
}
.solution_sec .solution_row {
  grid-template-columns: 1fr;
}
.solution_sec .solution_row .solution_col .num {
  width: 50px;
  height: 50px;
  font-size: 16px;
}
.solution_sec .solution_row .solution_col h3 {
  font-size: 16px;
}
.solution_sec .solution_row .solution_col p {
  font-size: 14px;
}
.title_box02 h2 {
  font-size: 22px;
}
.title_box02 .img_box {
  width: 40px;
}
.survice_sec .service_row::before {
  width: 90%;
  top: -20px;
}
.survice_sec .service_row {
  flex-direction: column-reverse;
  padding: 30px 20px;
  margin-bottom: 50px;
}
.survice_sec .service_row .text_col .num_flex .text {
  font-size: 14px;
}
.survice_sec .service_row .text_col .num_flex .num {
  font-size: 26px;
}
.survice_sec .service_row .text_col h3 {
  font-size: 18px;
}
.survice_sec .service_row .text_col p {
  font-size: 14px;
}
.survice_sec .service_row.reverse {
  flex-direction: column;
}
.survice_sec .service_row .text_col .num_flex {
  gap: 5px;
}
.media_sec .media_row ul {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.media_sec .media_row p {
  font-size: 14px;
}
.cta_sec .white_box h2 {
  font-size: 22px;
}
.cta_sec .white_box {
  padding: 50px 20px;
}
.cta_sec .white_box::before, .cta_sec .white_box::after {
  width: 15px;
  height: 15px;
}
.cta_sec .white_box .contact_btn a {
  font-size: 14px;
  height: 60px;
  gap: 5px;
}
.cta_sec .white_box .contact_btn a::before {
  font-size: 18px;
}
.cta_sec .white_box .tel_area h3 {
  font-size: 18px;
}
.cta_sec .white_box .tel_area .tel a {
  font-size: 24px;
  cursor: pointer;
  pointer-events: all;
}
.cta_sec .white_box .tel_area .tel a::before {
  width: 40px;
  height: 40px;
}
.cta_sec .white_box .tel_area p {
  font-size: 14px;
}
.cta_sec .white_box .tel_area {
  padding: 30px 20px;
}
.case_sec .case_row h3 {
  font-size: 20px;
}
.case_sec .case_row {
  padding: 0px 20px 30px;
  margin-bottom: 30px;
}
.case_sec .case_row .info_text p {
  font-size: 14px;
}
.case_sec .case_row .beforeafter_flex {
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
}
.case_sec .case_row .beforeafter_flex .beforeafter_col h4 {
  font-size: 16px;
}
.case_sec .case_row .beforeafter_flex .beforeafter_col p {
  font-size: 14px;
}
.case_sec .case_row .beforeafter_flex .beforeafter_col .img_box {
  width: 40px;
  height: 40px;
}
.case_sec .case_row .beforeafter_flex .scroll_box {
  flex-direction: column;
  gap: 10px;
  position: relative;
  justify-content: center;
  align-items: center;
}
.case_sec .case_row .beforeafter_flex .scroll_box .scroll {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
  border-bottom: initial;
}
.case_sec .case_row .voice_area .voice_flex h4 {
  font-size: 16px;
}
.case_sec .case_row .voice_area .voice_flex .img_box {
  width: 24px;
}
.case_sec .case_row .voice_area .voice_flex {
  gap: 5px;
  margin-bottom: 15px;
}
.case_sec .case_row .voice_area p {
  font-size: 14px;
}
.accordion-title p {
  font-size: 16px;
  padding: 0 30px 0px 40px;
}
.accordion-title {
  padding: 30px 30px 30px 20px;
}
.accordion-text {
  padding: 30px 20px 30px 20px;
}
.accordion-text p {
  font-size: 14px;
  padding: 0 0px 0px 40px;
}
.accordion-title .en {
  right: 20px;
}
.accordion-title:before {
  right: 29px;
}
.accordion-title:after {
  right: 29px;
}
.accordion-text::before {
  width: calc(100% - 40px);
  left: 20px;
}
.accordion-list:not(:first-child) {
  margin-top: 20px;
}
.accordion-text .A {
  top: 18px;
}
.title_box02 p {
  font-size: 14px;
  text-align: left;
}
.normalform .cp_iptxt.flex {
  flex-direction: column;
  gap: 10px;
}
.normalform .cp_iptxt {
  padding: 10px 0 20px;
}
.normalform .cp_iptxt .place {
  width: 100%;
}
.normalform .cp_iptxt .place.checklist_sp{
  display: flex;
  flex-direction: column;
}
.normalform .cp_iptxt .place.checklist_sp span{
  margin-left: 0 !important;
  font-size: 14px;
}
.normalform .cp_iptxt .text {
  font-size: 16px;
}
.cp_iptxt02 span.mwform-checkbox-field-text {
  font-size: 14px;
}
.cp_iptxt02 {
  text-align: left;
  text-indent: -1.4em;
  padding-left: 1.3em;
}
.normalform .sub input {
  padding: 18px 20px;
  font-size: 14px;
}
.normalform .cp_iptxt .place input[type="text"] {
  padding: 10px 10px;
}
.normalform .cp_iptxt .place input[type="email"] {
  padding: 10px 10px;
}
footer .logo {
  width: 150px;
  margin-bottom: 30px;
}
footer .info {
  font-size: 14px;
}
footer .sns_flex {
  margin-bottom: 30px;
}
footer .sns_flex .sns a {
  width: 40px;
  height: 40px;
}
footer .sns_flex .sns.facebook a::after {
  width: 10px;
  height: 19px;
}
footer .sns_flex .sns.mail a::after {
  width: 19px;
  height: 14px;
}
footer .footer_menu ul li a {
  font-size: 14px;
}
footer .footer_menu ul {
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
footer {
  padding-top: 60px;
}
.survice_sec .service_row .img_col {
  margin: 0 auto;
}
.media_sec .media_row ul li .img_box {
  text-align: center;
}

.problem_sec .title_box01{
  transition: ease all .5s;
  bottom: -50px;
  animation: nawtrad .5s forwards;
  animation-delay: 1s;
}
@keyframes nawtrad {
  0% {
    opacity: 0;
    bottom: -50px;
  }
  100% {
    opacity: 1;
    bottom: 0px;
  }
}
.problem_sec .problemTop_row {
  transition: ease all .5s;
  bottom: -50px;
  animation: nawtrad .5s forwards;
  animation-delay: 1.5s;
}
@keyframes nawtrad {
  0% {
    opacity: 0;
    bottom: -50px;
  }
  100% {
    opacity: 1;
    bottom: 0px;
  }
}
.mw_wp_form_complete p:not(:first-of-type){
  font-size: 14px;
  text-align: left;
}
/* ---------------------------携帯last ---------------------------*/
}



@media only screen and (min-width: 500px) and (max-width: 767px) {
  .problem_sec .problemTop_row .smoke:nth-of-type(2) {
      left: 14%;
  }
  .problem_sec .problemTop_row .smoke:nth-of-type(4) {
    right: 14%;
  }
}
@media only screen and (min-width: 500px) and (max-width: 570px) {
  .problem_sec .problemTop_row .img_box {
    width: 70px;
}
}