@charset "UTF-8";
/*-------------------------------------
00 additional reset
--------------------------------------*/
button {
	background: none;
	border: none;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
/*-------------------------------------
00 setup break point 640
--------------------------------------*/

/* html{

} */
*, *::before, *::after{
box-sizing: border-box;
}
body {
	color: #000;
  font-family: Arial, "ヒラギノ角ゴ Pro", Hiragino Kaku Gothic Pro, "メイリオ", Meiryo, Osaka, " ＭＳ Ｐゴシック", MS PGothic, "sans-serif";
  background: #e2f4ff;
  overflow-x: hidden;
}
img {
  max-width: 100%;
}
a {
  text-decoration: none;
}

/* a:link {

} */
/* a:hover,
a:active,
a:focus {
  color: #;
} */
p {
  line-height: 1.75;
}

/*-------------------------------------
00 layout
--------------------------------------*/
.catch, .brand,.brand2, .kv, .catch2, .footer {
  width: 100%;
}
.discount, .renew, .feature, .flow, .works, .faq, .company, .cta {
  width: 100%;
  padding: 50px 20px;
}
.discount_inner, .catch_inner, .brand_inner, .brand_inner2, .kv_inner, .catch2_inner, .renew_inner, .feature_inner, .flow_inner, .works_inner, .faq_inner, .company_inner, .cta_inner, .footer_inner {
  width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.bg_blue{
  background-color: #0c6ac4;
}
.bg_gray{
  background-color: #e6e6e6;
}
.wrap{
	width: 100%;
}
/*-------------------------------------
header
--------------------------------------*/
.catch {
  background: #40a3de;
}
.catch_inner {
  height: 20px;
  color: #fff;
  font-size: 10px;
  font-size: .625rem;
  text-align: left;
  display: flex;
  align-items: center;
}
.brand {
  background: #fff;
  height: 60px;
  display: flex;
  align-items: center;
}
.brand_inner {
  text-align: left;
}
.brand_inner > img {
  width: 245px;
  height: auto;
}

/*--
2020.8.21 header パターン追加
--*/
.brand2 {
  background: #fff;
  height: 60px;
  display: flex;
  align-items: center;
}
.brand_inner2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* text-align: left; */
}
.brand_inner2 img.brand_logo {
  width: 245px;
  height: auto;
}
.brand_inner2 img.brand_tel {
  width: 305px;
  height: auto;
  margin-top: 3px;
}


.kv {
  background: url(../img/01_fv_bg.jpg) no-repeat center top;
  height: 530px;
  background-size: cover;
}
.kv_inner {
  display: flex;
  align-items: flex-start;
}
.kv .main, .kv .main img {
  width: 723px;
}
.main {
  padding-top: 10px;
}
/*---- form ----*/
.t_form {
  background: rgba(255, 255, 255, .8);
  margin-top: 12px;
  padding: 15px 40px;
  width: 376px;

}
/* .t_form input,
.t_form button,
.t_form textarea { */
    /* デフォルトスタイルをリセット */
    /* -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}*/
.t_form input {   /* フォーカス時のアウトラインを消す */
outline: 0;
}
.t_form > h2 {
  font-family: "新ゴ B" , "メイリオ" , Meiryo , "ヒラギノ角ゴPro" , "Hiragino Kaku Gothic Pro" , "ＭＳ Ｐゴシック" , sans-serif;
  font-size: 25px;
  font-size: 1.563rem;
  margin-bottom: 10px;
  padding-bottom: 0;
}
.form_contents {
  text-align: left;
}
.form_item {
  display: flex;
  flex-direction: column;
  margin-top: 5px;
}

.t_form_label {
  font-weight: bold;
  margin-bottom: 2px;
  margin-top: 3px;

}
.t_form_input {
  border: 1px solid #b3b3b3;
  padding: 3px 5px 2px;
  border-radius: 3px;
  font-size: 15px;
}


.t_form_input::placeholder {
  font-size: 16px;
  color: #999;
  line-height: 1;
}
.form_item_radio {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  align-items: flex-start;

}
.t_form_radio{
  border-radius: 5px;
}
.form_item_radio label {
  line-height: 1.5;
}
.label_required {
  background: #ff6400;
  color: #fff;
  font-size: 12px;
  display: inline-block;
  padding: 3px 3px 2px;
  margin-left: 5px;
  border-radius: 3px;
  font-weight: normal;
}
.label_optional {
  background: #808080;
  color: #fff;
  font-size: 12px;
  display: inline-block;
  padding: 3px 3px 2px;
  margin-left: 5px;
  border-radius: 3px;
  font-weight: normal;
}

button.t_form_btn {
  cursor: pointer;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 50px;
  font-weight: 600;
  color: #fff;
  background: #E95E00;
  line-height: 50px;
  font-size: 16px;
  margin-top: 5px;
  position: relative;
  overflow: hidden;
}
button.t_form_btn::before {
  position: absolute;
  background-color: #fff;
  content: "";
  width: 30px;
  height: 100%;
  left: 0;
  opacity: 0;
  top: -180px;
  transform: rotate(45deg);
  animation: shine 3s ease-in-out infinite;
}
@keyframes shine {
  0% {
      transform: scale(0) rotate(45deg);
      opacity: 0;
  }
  80% {
      transform: scale(0) rotate(45deg);
      opacity: 0.5;
  }
  81% {
      transform: scale(4) rotate(45deg);
      opacity: 1;
  }
  100% {
      transform: scale(50) rotate(45deg);
      opacity: 0;
  }
}
.label_free {
  color: #E95E00;
  background:#fff;
  padding: 2px 5px;
  line-height: 1;
  margin-right: 5px;
  font-size: 14px;
}





.t_form_catch {
  text-align: center;
  font-weight: bold;
  margin-bottom: -2px;
  margin-top: 5px;
}
/*-------------- form EFO用 -----------------*/
.t_form_label .ok_span {
	display: none;
	margin-left: 12px;
	padding: 3px 5px 2px;
	font-size: 12px;
	color: white;
	background: red;
	border-radius: 4px;
}
.t_form_label  .ok_span.ok {
	display: inline-block;
}
.form_item.radio {
	flex-direction: row;
}
.form_item.radio .t_form_label {
	width: 105px;
}
.form_item.radio .t_form_label .ok_span {
	display: none;
	margin-left: 0;
}
.form_item.radio .t_form_label .ok_span.ok {
	display: inline-block;
}
/*-------------------------------*/
  /*入力する箇所を赤色で枠囲みし、イフェクトを入れる*/


  .t_form input.focusBox {
    background-color: #ffdddd;
    border: 1px #ff3344 solid;
    animation: focusItem 1.2s linear infinite;
}
.t_form .t_form_radio.focusBox {
  background-color: #ffdddd;
  border: 1px #ff3344 solid;
  animation: focusItem 1.2s linear infinite;
}


@keyframes focusItem {
    0% { box-shadow: 0 0 0 1px #f34, 0 0 0 1px #fff, 0 0 0 2px #FF5E28}
    100% {box-shadow: 0 0 0 1px #f34, 0 0 0 8px rgba(255, 255, 255, 0), 0 0 0 10px rgba(100, 37, 16, 0) }
}
@-moz-keyframes focusItem {
    0% {box-shadow: 0 0 0 1px #f34, 0 0 0 1px #fff, 0 0 0 2px #FF5E28}
    100% {box-shadow: 0 0 0 1px #f34, 0 0 0 8px rgba(255, 255, 255, 0), 0 0 0 10px rgba(100, 37, 16, 0) }
}

@-webkit-keyframes focusItem {
    0% {box-shadow: 0 0 0 1px #f34, 0 0 0 1px #fff, 0 0 0 2px #FF5E28}
    100% {box-shadow: 0 0 0 1px #f34, 0 0 0 8px rgba(255, 255, 255, 0), 0 0 0 10px rgba(100, 37, 16, 0)}
}

@-o-keyframes focusItem {
    0% {box-shadow: 0 0 0 1px #f34, 0 0 0 1px #fff, 0 0 0 2px #FF5E28}
    100% {box-shadow: 0 0 0 1px #f34, 0 0 0 8px rgba(255, 255, 255, 0), 0 0 0 10px rgba(100, 37, 16, 0)}
}


/*---- catch ----*/

.catch2 {
  padding: 14px 8px 9px;
  background: #182987;
  min-height: 50px;
  /* display: flex;
  align-items: center; */
}
.catch2_inner {
  text-align: left;
  color: #fff;
  font-family: "新ゴ B" , "メイリオ" , Meiryo , "ヒラギノ角ゴPro" , "Hiragino Kaku Gothic Pro" , "ＭＳ Ｐゴシック" , sans-serif;
  font-size: 28px;
  font-weight: 600;
}

/*-------------------------------------
discount
--------------------------------------*/

.discount_title{
  font-size: 3.125rem;
  line-height: 1.3;
  font-family: "新ゴ B" , "メイリオ" , Meiryo , "ヒラギノ角ゴPro" , "Hiragino Kaku Gothic Pro" , "ＭＳ Ｐゴシック" , sans-serif;
  padding-bottom: 0;
  margin-bottom: .7em;
}
.marker {
  background-image: linear-gradient(to top, rgba(252,238,33,.6) 30%, transparent 30%);
  display: inline-block;
  padding-bottom: 0;
  margin-bottom: 0;
  background-position: left 0 bottom 10px;
}
.red {
  color: #e50012;
}
.w22 {
  width: 22%;
}
.w26 {
  width: 26%;
}
.discount_table {
  width:1000px;
  margin: 0 auto;
  color: #fff;
  border: 1px solid #ccc;
}
.discount_table th{
  background: #f2f2f2;
  font-size: 20px;
  color: #000;
  /* height: 71px; */
  vertical-align: middle;
  text-align: left;
  padding: 22px;
    border: 1px solid #ccc;
	white-space: nowrap;

}
.discount_table td{
  border: 1px solid #ccc;
  vertical-align: middle;
  padding: 20px;
  font-size: 20px;
  font-family: "ヒラギノ角ゴ Pro", Hiragino Kaku Gothic Pro, "メイリオ", Meiryo, Osaka, " ＭＳ Ｐゴシック", MS PGothic, "sans-serif";
  line-height: 1.3;
	white-space: nowrap;
}
.discount_table td img{
  max-width: 100%;
}
.discount_table td span.bigger{
  font-size: 1.25em;
}
.discount_table td span.smaller{
  font-size: .75em;
}
.disc_percent {
  background: #fffccc;
  color: #ed1c24;
  font-size: 20px;
  font-weight: bold;
}
.red1{
  color: #f15a24;
}
.red2{
  color: #ef3b24;
}
.red3{
  color: #ed1c24;
}
.discount_table td.disc_percent span {
  font-size: 2em;
}
.bg_blue1 {
  background-color: #2495ce;
}
.bg_blue2 {
  background-color: #0e81c1;
}
.bg_blue3 {
  background-color: #0c6ac4;
}
.bg_blue4 {
  background-color: #044a9e;
}
.fwb img{

}

/*-------------------------------------
renew
--------------------------------------*/
.renew_inner {
  padding: 30px 50px 0;
}
.renew_title {
  margin-bottom: 40px;
}
.renew_box_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.renew_box {
  width: 47%;
  background: #fff;
  border-radius: 4px;
  margin-bottom: 100px;
  position: relative;
}
.renew_icon {
  position: absolute;
  width: 69px;
  height: 69px;
  top: 2px;
  left: 0px;
}
.renew_box_title {
  height: 74px;
  color: #fff;
  font-family: "新ゴ B" , "メイリオ" , Meiryo , "ヒラギノ角ゴPro" , "Hiragino Kaku Gothic Pro" , "ＭＳ Ｐゴシック" , sans-serif;
  font-size: 30px;
  background: #5372b7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 55px;
}
.renew_box_txt {
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.renew_box_txt > p {
  text-align: left;
  padding: 22px 30px 0;
}
.renew_price_wrap{
  display: flex;
  justify-content: space-between;
  width: 350px;
  margin: 20px auto 20px;
}
.renew_price_box{
  width: 49%;
}
.renew_price_ttl{
  padding: 9px;
  color:#fff;
  background-color: #1c295c;
  text-align: center;
  font-size: 20px;
}
.renew_price_txt{
  padding: 20px 10px;
  color:#1c295c;
  background-color: #e4f2ff;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
}
.renew_price_unit{
  font-size: 18px;
  padding:0 3px;
  font-weight: normal;
}
.renew_price_ttl.renew_other{
  background-color: #777777;
}
.renew_price_txt.renew_other{
  color:#777777;
  background-color: #f6f6f6;
}
.renew_success{
  color:#fcee05;
  background-color: #b20000;
  width: 260px;
  height: 80px;
  font-size: 20px;
  line-height: 80px;
  position: relative;
  bottom:30px;
  left: 50%;
  transform: translateX(-50%);
}
.renew_success::after{
  content: '';
  position: absolute;
  top: 0;
  right: -14px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 0 40px 14px;
  border-color: transparent transparent transparent#b20000;
}



/* .renew_success {
  margin: 0 10px 10px;
} */

/*-------------------------------------
company
--------------------------------------*/
.feature_title {
  margin-bottom: 30px;
}
.feature_img {
  width: 830px;
  margin: 0 auto 20px;
}
.feature_box {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #40a3de;
  padding-top: 20px;
  padding-bottom: 20px;
}
.feature_box:last-child {
border-bottom: none;
}
.feature_no {
  width: 77px;
  height: 77px;
}
.feature_box > p {
  width: 704px;
  font-size: 21px;
  padding-right: 1em;
  padding-left: 1em;
  text-align: left;
}
.feature_box > figure {
  width: 310px;

}
.with_border {
  border: 5px solid #fff;
}

/*-------------------------------------
cta
--------------------------------------*/
.cta {
  background: #182987;
  padding-top: 15px;
  padding-bottom: 15px;
  height: 290px;
}
.cta_inner {
  display: flex;
}
.cta_txt {
  width: 408px;
  height: 260px;
}
.cta_btn_wrap {
  width: 692px;
}
.cta_btn_wrap > p {
  font-size: 30px;
  color: #fff;
  text-align: center;
  font-weight: bold;
}
/*-------------------------------------
2020.8.21 cta パターン追加
--------------------------------------*/
.cta2 {
  background: #fff0e4;
  padding-top: 50px;
  padding-bottom: 30px;
  text-align: center;
}
.cta_inner2 {
  width: 1000px;
  margin: 0 auto;
}

.cta2 .cta_catch {
  font-size: 30px;
  color: #333;
  text-align: center;
  font-weight: bold;
	color:#fd5e37;
	margin-top: 10px;
}
.cta2 .cta_btn_wrap2 {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items:center;
  padding-top: 0px;
}
.cta2 .cta_btn_wrap2 .cta_btn2 {
  width: 39.7%;
}
.cta2 .cta_btn_wrap2 .cta_btn2:hover {
  opacity: .6;
}
.cta2 .cta_btn_wrap2 img {
  width: 100%;
  height: auto;
}
.cta2 .cta_btn_wrap2 .cta_tell {
  width: 55.9%;
}
.cta2 .cta_btn_wrap2 .cta_tell img {

}
/*2022.08.29追加*/
.btn_line .arw img{
	max-width: 100%;
}
.btn_line a .btn_tx{
	padding-top: 20px;
	animation: bounce 3s ease-in-out infinite;
	text-align: center;
	line-height: 1.25;
	padding-left: 40px;
}
.btn_line a .btn_tx .smaller{
	font-style: 28px;
}
@keyframes bounce {
	0% { transform: scale(1);}
	20% { transform: scale(1);}
 30% { transform: scale(1.1);}
 40% { transform: scale(1); }
100% { transform: scale(1); }
}


.btn_line_inner .btn_sign {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	color: #fff;
	width: 82px;
	height: 140px;
	border-radius: 20px 0 0 20px;
	background: #78D61A;
	text-align: center;
	font-size: 32px;
	letter-spacing: .5em;
	padding-top: 0.5em;
	top: 0;
	left: 0;
	vertical-align: middle;
	z-index: 0;
	font-weight: bold;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
.smaller {
	font-size: .8em;
}
.btn_tel {
width: 100%;
padding: 0 54px;
margin-bottom: 60px;
position: relative;
}

.btn_tel a{
	display: block;
	border-radius: 20px;
	width: 100%;
	height: 120px;
	background: #249AE3;
	color: #fff;
	font-size: 40px;
	text-align: center;
	font-weight: bold;
	box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
	position: relative;
	padding: 0;
	padding-left: 82px;
}

.btn_tel a .arw {
	position: absolute;
	width: 38px;
	height: 41px;
	left: 140px;
	top: 50%;
	transform: translateY(-50%);
}

.btn_tel .arw img{
	max-width: 100%;
}
.btn_tel a .btn_tx{
	text-align: center;
	line-height: 1.25;
	display: inline-block;
	padding-top: 38px;
}
.btn_tel a .btn_tx .smaller{
	font-size: 24px;
}

.btn_tel .btn_sign {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	color: #fff;
	width: 82px;
	height: 120px;
	border-radius: 20px 0 0 20px;
	background: #34C9C9;
	text-align: center;
	font-size: 28px;
	letter-spacing: .5em;
	padding-top: 0.5em;
	top: 0;
	left: 0;
	vertical-align: middle;
	z-index: 0;
	font-weight: bold;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

.btn_mail {
	width: 100%;
	padding: 0 54px;
	margin-bottom: 40px;
	position: relative;

}
.btn_mail a{
	display: block;
	border-radius: 20px;
	width: 100%;
	height: 120px;
	background: #FC612D;
	color: #fff;
	font-size: 40px;
	/* display: flex;
	justify-content: center;
	align-items: center; */
	text-align: center;
	font-weight: bold;
	box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
	position: relative;
	padding: 0;
padding-left: 82px;
}
.btn_mail .btn_sign {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	color: #fff;
	width: 82px;
	height: 120px;
	border-radius: 20px 0 0 20px;
	background: #FD952D;
	text-align: center;
	font-size: 28px;
	letter-spacing: .5em;
	padding-top: 0.5em;
	top: 0;
	left: 0;
	vertical-align: middle;
	z-index: 0;
	font-weight: bold;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
.btn_mail a .arw {
	position: absolute;
	width: 46px;
	height: 33px;
	left: 130px;
	top: 50%;
	transform: translateY(-50%);
}

.btn_mail a .btn_tx{
	text-align: center;
	line-height: 1.25;
	display: inline-block;
	padding-top: 38px;
}
.btn_mail a .btn_tx .smaller{
	font-size: 24px;
}

/*-------------------------------------
flow
--------------------------------------*/
.flow_title {
  margin-bottom: 30px;
}
.flow_box_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flow_box {
  width: 520px;
  background: #fff;
  padding: 11px;
  margin-bottom: 40px;
}
.flow_images {
  width: 498px;
  height: 238px;
}
.flow_box_title {
  font-size: 26px;
  font-family: "新ゴ B" , "メイリオ" , Meiryo , "ヒラギノ角ゴPro" , "Hiragino Kaku Gothic Pro" , "ＭＳ Ｐゴシック" , sans-serif;
  font-weight: bold;
  position: relative;
  margin-top: 11px;
  height: 57px;
  line-height: 57px;
}
.flow_box_title .flow_box_number {
  width: 105px;
  height: 57px;
  position: absolute;
  top: 0;
  left: -11px;
}
.flow_box > p {
  padding: 15px 10px;
  text-align: left;
}
/*-------------------------------------
works
--------------------------------------*/
.works {
  padding-bottom: 60px;
}
.works_title {
  background-color: #00003f;
  background-image: url(../img/05_works_ttl_left.svg), url(../img/05_works_ttl_right.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: left 50px bottom -11px, right 50px bottom -11px;
  height: 60px;
  border-radius: 30px;
  width: 1100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  margin-top: 20px;
}
.works_title > img {
  width: 384px;
  height: 38px;
}
.works_wrap {
  width: 1100px;
  margin-right: auto;
  margin-left: auto;
}
.works_wrap:first-of-type{
  padding-bottom: 47px;
}
.works_subttl{
  background-color: #5372b7;
  font-size: 22px;
  color: #fff;
  height: 103px;
  width: 100%;
  border-radius: 10px 10px 0 0;
  text-align: left;
  padding: 20px;
}
.works_subttl_icon{
  vertical-align: middle;
}
.works_subttl_strong{
  font-size: 28px;
}
.works_box{
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  padding: 30px;
}

.works_box_img{
  margin-bottom: 30px;
}
.works_box_txt{
  text-align: left;
  font-size: 24px;
  line-height: 36px;
}
.works_box_strong{
  background-image: linear-gradient(to top, rgba(252,238,33,.6) 30%, transparent 30%);
  font-weight: bold;
}
.kanto img{
	max-width: 100%;
}


/*
.summary {
  font-size: 20px;
  margin-bottom: 20px;
}
 .works_wrap .work_box {
  width: 49%;
  margin-bottom: 12px;

}

.work_box figcaption {
  margin-top: 12px;
  line-height: 1.5;
  text-align: left;
  font-size: 24px;
  font-weight: bold;
} */




/*-------------------------------------
faq
--------------------------------------*/
.faq_title {
  background-color: #182987;
  background-image: url(../img/05_works_ttl_left.svg), url(../img/05_works_ttl_right.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: left 50px bottom -11px, right 50px bottom -11px;
  height: 60px;
  border-radius: 30px;
  width: 1100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;

}
.faq_title > img {
  width: 271px;
  height: 40px;
}
.faq_box {
  background: #fff;
  border-radius: 14px;
  padding: 10px 15px;
  margin-bottom: 20px;

}
.faq_box > h2 {
  font-size: 26px;
  color: #182987;
  border-bottom: 4px dotted #e6e6e6;
  min-height: 90px;
  padding: 6px 0 6px 103px;
  display: flex;
  align-items: center;
  position: relative;
  line-height: 1.3;
}
.faq_box > h2::before {
  position: absolute;
  content: '';
  background: url(../img/06_faq_q.svg);
  width: 97px;
  height: 81px;
  top: 0;
  left: 0;
}
.faq_box > p {
  font-size: 24px;
  line-height: 1.5;
  padding: 10px 0 6px 160px;
  text-align: left;
  position: relative;
  min-height: 96px;
  display: flex;
  align-items: center;
  position: relative;
}
.faq_box > p::before {
  position: absolute;
  content: '';
  background: url(../img/06_faq_a.svg);
  width: 97px;
  height: 81px;
  top: 10px;
  left: 55px;
}

/*-------------------------------------
company
--------------------------------------*/
.company_inner {
  width: 780px;
}
.company_title, .company_table {
  width: 100%;

}
.company_title {
  background: #000;
  color: #fff;
  font-size: 21px;
  font-weight: bold;
  margin: 20px auto 5px;
  padding: 4px;
}
.company_table th,
.company_table td {
  font-size: 17px;
  background-color: #fff;
  padding: .5em .8em;
  border: 1px solid #0c6ac4;
}
.company_table th {
  width: 15%;
  font-weight: normal;

}

.company_table td {
  width: 85%;
  text-align: left;
  line-height: 1.75;
}
/*-------------------------------------
footer
--------------------------------------*/
.footer_inner {
  color: #fff;
  font-size: 14px;
  padding: 20px 10px;
}

.footer.with_float {
  padding-bottom: 90px;
}

@media screen and (max-width: 640px) {       /*スマホでの指定*/
  .footer.with_float {
    padding-bottom: 56px;
  }
}
/*-------------------------------------
form.html
--------------------------------------*/
/*---- form ----*/

.p_form {
  width: 100%;
  padding: 60px 30px;
}
.p_form_inner {
  width: 800px;/*764px;*/
  margin: 0 auto;
}
.p_form_title {
  width: 275px;
  margin: 0 auto 50px;
}

/* .p_form_contents {
  text-align: left;
} */
.p_form_item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 30px;
  min-height: 50px;
}
.p_form_item > label,
.p_form_item > .p_form_label {
  display: flex;
  width: 289px;/*253px;*/
  font-size: 20px;
  height: 50px;
  justify-content: flex-end;
  align-items: flex-end;
  border-bottom: 2px solid #89dcff;
  padding-bottom: 13px;
  padding-right: 10px;
}
.p_form_item > input,
.p_form_item > textarea {
  width: 500px;
  padding: 15px;
  font-size: 20px;
}
.p_radio_wrap {
  width: 500px;
  display: flex;
  align-items: center;
}
.p_radio_wrap > label {
  margin-right: 1em;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.p_form input[type=radio] {
  width: 30px;
  height: 30px;
  vertical-align: middle;
  margin-bottom: 4px;
}

.p_form_item > input::placeholder,
.p_form_item > textarea::placeholder {
  font-size: 20px;
}
.p_form_label {
  font-weight: bold;
  margin-bottom: 2px;
  margin-top: 3px;
  display: flex;
  align-items: center;
}
.p_form_input {
  border: 1px solid #b3b3b3;
  padding: 6px 5px 4px;
  border-radius: 3px;
}
.p_form_input::placeholder,
.p_form_textarea::placeholder {
  font-size: 16px;
  color: #999;
  line-height: 1;
}
.p_form_textarea::placeholder {
  line-height: 1;
}

.p_form_textarea {
  border: 1px solid #b3b3b3;
  padding: 6px 5px 4px;
  border-radius: 3px;
  height: 140px;
  line-height: 1.5;
}
.p_form .label_required {
  background: #ff6400;
  color: #fff;
  font-size: 15px;
  display: inline-block;
  padding: 3px 3px 2px;
  margin-left: 10px;
  border-radius: 3px;
  font-weight: normal;
}
.p_form .label_optional {
  background: #808080;
  color: #fff;
  font-size: 15px;
  display: inline-block;
  padding: 3px 3px 2px;
  margin-left: 10px;
  border-radius: 3px;
  font-weight: normal;
}
/* button.p_form_btn {
  width: 349px;
  height: 100px;
  cursor: pointer;
  background: #0c6ac4;
  border: 5px solid #fff;
  margin: 0;
  padding: 0;
  box-shadow: 0 0 8px rgba(5, 154, 229, .81);
  color: #fff;
  font-size: 35px;
  font-family: "新ゴ B" , "メイリオ" , Meiryo , "ヒラギノ角ゴPro" , "Hiragino Kaku Gothic Pro" , "ＭＳ Ｐゴシック" , sans-serif;
  border-radius: 30px;
  text-shadow: 0 0 6px rgba(4, 26, 104, .8);
} */

.p_form_btn {
  display: block;
  margin: 50px auto 30px;
}
.p_form_btn:hover {
  cursor: pointer;
  opacity: .7;
}

/*-------------- form EFO用 -----------------*/
/* .p_form_item > .p_form_label {
	width: 273px;
} */
.p_form_item > input,
.p_form_item > .p_radio_wrap,
.p_form_item > textarea {
	width: 480px;
}
.p_radio_wrap > label {
	margin-right: 10px;
}
.p_form_label .ok_span {
	display: none;
	margin-left: 12px;
	padding: 3px 5px 2px;
	font-size: 15px;
	color: white;
	background: red;
	border-radius: 4px;
}
.p_form_label .ok_span.ok {
	display: inline-block;
}

.p_form_item.radio .p_form_label .ok_span {
	display: none;
	margin-left: 12px;
}
.p_form_item.radio .p_form_label .ok_span.ok {
	display: inline-block;
}
@media screen and (max-width: 640px) {       /*スマホでの指定*/
  .p_form_label .ok_span {
    font-size: 13px;
  }
}
/*-------------------------------------
float menu
--------------------------------------*/
body {
  position: relative;
}
#floatmenu {
  width: 100%;
  min-width: 1100px;
  background: rgba(29,29,53,.85);
  height: 93.5px;
  position: fixed;
  bottom: 0;
  bottom: -90px;
  z-index: 999;
}
.floatmenu .float_inner {
  width: 1064px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.floatmenu .float_left, .floatmenu .float_right {
  width: 50%;
}
.floatmenu .float_left {

  font-size: 25px;
  font-family: "メイリオ" , Meiryo , "ヒラギノ角ゴPro" , "Hiragino Kaku Gothic Pro" , "ＭＳ Ｐゴシック" , sans-serif;
  color: #fff;
  padding: 15px 100px 0 77px;
  text-align: center;
  position: relative;
  height: 90px;
}

.floatmenu .float_left:before {
  position: absolute;
  content: '';
  background-image: url(../img/10_float_man.svg);
  width: 50px;
  height: 66px;
  left: 0;
  bottom: 0;
}
.floatmenu .float_left:after {
  position: absolute;
  content: '';
  background-image: url(../img/10_float_arw.svg);
  width: 67px;
  height: 24px;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.floatmenu .float_left img {
  width: 210px;

}
.floatmenu .float_left p {
  line-height: 1;
}
.floatmenu .float_right {
  text-align: right;

}
.floatmenu .float_right img {
  height: 81px;
margin-top: 4px;
}
.floatmenu .float_right a {
  opacity: 1;
}
.floatmenu .float_right a:hover {
  opacity: .8;
}


#floatmenu2 {
  width: 186px;
  height: 84px;
  position: fixed;
  bottom: 0;
  right: 0;
  bottom: -84px;
  z-index: 999;
  text-align: center;
  padding: 0;
  margin: 0;
}
.floatmenu2 a{
  margin: 0;
  padding: 0;
}
.floatmenu2 img {
  width: 186px;
  height: 84px;
}

.floatmenu3 .float_inner {
  width: 1064px;
  margin: 0 auto;
  display: flex;
  align-items: center;
	justify-content: space-around;
	line-height: 30px;
	/*line-height: 93.5px;*/
}
.floatmenu3 .float_inner .cta_catch{
	color: #fff;
	text-align: center;
}
.floatmenu3 .float_left{
}
.floatmenu3 .float_right img,
.floatmenu3 .float_left img {
  height: 73px;
}
.floatmenu3 .float_right a {
  opacity: 1;
}
.floatmenu3 .float_right a:hover {
  opacity: .8;
}

.footer_bnr img{
	height: 80px;
}
/*フッターボタン*/
.floating_btn {
    width: 400px;
}
.floating_btn a {
    display: block;
    border-radius: 10px;
    width: 404px;
    height: 60px;
    background: #fc612d;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    text-align: center;
    padding-left: calc(41px + 20px);
    padding-top: 3px;
}
.floating_btn {
	width: 400px;
	padding-bottom: 10px;

}
.floating_btn a{
	display: block;
	border-radius: 10px;
	width: 404px;
	height: 60px;
	background: #fc612d;
	color: #fff;
	font-size: 18px;
	/* display: flex;
	justify-content: center;
	align-items: center; */
	font-weight: bold;
	position: relative;
	text-align: center;
	padding-left: calc(41px + 20px);
	padding-top: 3px;
}
.floating_btn a .muryo{
	position: absolute;
	display: flex;
	border-radius: 10px 0 0 10px;
	background: #fd952d;
	color: #fff;
	width: 38px;
	height: 60px;
	top: 0; left: 0;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-align: center;
	font-size: 14px;
	letter-spacing: 5px;
	vertical-align: middle;
	padding: 5px 0 0;
	justify-content: center;
	align-items: center;
}
.floating_btn a .hd {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 200px;
	height: 24px;
	border-radius: 12px;
	color: #fc612d;
	background: #fff;
	border: 2px solid #fc612d;
	text-align: center;
	font-size: 14px;
	line-height: 1;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	margin-left: 20px;
	z-index: 1;
	font-weight: bold;
}
.floating_btn a .btn_tx{
	display: inline-block;
	padding-top: 17px;
	line-height: 1.3;
	position: relative;
	text-align: center;
	font-size: 22px;
}
.floating_btn a .btn_tx .smaller {
	font-size: 12px;
}
.floating_btn a .btn_tx:before {
	position: absolute;
	content: '';
	display: inline-block;
	width: 80px;
	height: 30px;
	background: url(../img/mail.png) left center no-repeat;
	background-size: cover;
	vertical-align: middle;
	/* margin-right: 10px; */
	left: -80px;
	top: 30%;
	/* transform: translateY(-0px); */
}


/*-------------------------------------
common parts
--------------------------------------*/
.smaller {
  font-size: .8em;
}
.larger {
  font-size: 1.2em;
}
.tac {
  text-align: center;
}
.fwb {
  font-weight: bold;
}
.mt10 {
  margin-top: 10px;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
#footer_nav ul{
	text-align: center
}
#footer_nav ul li{
	display: inline;
	border-left: 1px solid #fff;
	padding: 0 10px;
}
#footer_nav ul li:last-child{
	border-right: 1px solid #fff;
}
#footer_nav ul li a{
	color: #fff;
}
#footer_nav ul li a:hover{
	text-decoration: underline;
	opacity: 0.6;
}

.policy_link{
	text-align: center;
	font-size: 13px;
	margin-top: 0.7em;
	position: relative;
}
.policy_link a{
	color: #474747;
	text-decoration: underline;
}
.policy_link a::after{
	position: absolute;
  content: '';
  display: inline-block;
  background: url(../img/external-link.svg) center center no-repeat;
	background-size: contain;
	width: 16px;
	height: 16px;
	top: -1px;
	right: 15%;
	margin-left: 5px;
	padding: 20px 5px 0;
}
button.t_form_btn {
    cursor: pointer;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 45px;
    font-weight: 700;
    color: #fff;
    line-height: 45px;
    background: transparent;
    font-size: 15px;
    border: none;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.t_form .tac {
    text-align: center;
    margin-top: 15px;
    background: #fc612d;
    border-radius: 10px;
    box-shadow: 0 0 8px rgb(0 0 0 / 15%);
    position: relative;
}
.t_form .tac .muryo {
    position: absolute;
    display: flex;
    border-radius: 10px 0 0 10px;
    background: #fd952d;
    color: #fff;
    width: 38px;
    height: 45px;
    top: 0;
    left: 0;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-align: center;
    font-size: 12px;
    letter-spacing: 5px;
    vertical-align: middle;
    padding: 5px 0 0;
    justify-content: center;
    align-items: center;
}
.footer_privacy{
	text-align: center;
}
.footer_privacy a {
    position: relative;
		text-decoration: underline;
}
.footer_privacy a {
    color:#fff;
		font-size: 0.8em;
}
.footer_privacy a::after {
    position: absolute;
    content: '';
    display: inline-block;
    background: url(../img/external-link_2.svg) center center no-repeat;
    background-size: contain;
    width: 16px;
    height: 16px;
    top: -1px;
    right: -18px;
    margin-left: 5px;
    padding: 20px 5px 0;
}

/*-------------------------------------
responsive
--------------------------------------*/
@media screen and (min-width: 641px) {       /*PCの指定*/
  .pc_only {
    display: block;
  }
  .pc_only_inline {
    display: inline-block;
  }
  .sp_only {
    display: none;
  }
  }

@media screen and (max-width: 640px) {       /*スマホでの指定*/
.pc_only {
  display: none;
}
.pc_only_inline {
  display: none;
}
.sp_only {
  display: block;
}
/*-------------------------------------
00 layout sp
--------------------------------------*/
.discount, .renew, .feature, .flow, .works, .faq, .company, .cta, .cta2 {
  padding: 16px 8px;
}
.catch_inner, .brand_inner, .kv_inner, .catch2_inner, .discount_inner, .renew_inner, .feature_inner, .flow_inner, .works_inner, .faq_inner, .company_inner, .cta_inner, .cta_inner2, .footer_inner {
  width: 100%;
}

/*-------------------------------------
header sp
--------------------------------------*/
.catch_inner {
  height: auto;
  padding: 4px 8px;
  line-height: 1.1;
  font-size: 12px;
}
.brand {
  padding: 6px 8px 4px;
  height: 28px;
}
.brand_inner > img {
  width: auto;
  height: 20px;
}
.brand2 {
  /* padding: 4px 8px; */
  height: 50px;
}
.brand_inner2 img.brand_logo {
  margin: 4px 8px;
  width: auto;
  height: 20px;
}
/* .brand_inner2 .sp_only a {
  background-color: #0c6ac4;
  color: #fff;
  display: block;
} */

.brand_inner2 .sp_only a.sp_tel_wrap{
  width: 140px;
  height: 50px;
  background: #0c6ac4;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  padding: 12px 0;
}
.brand_inner2 .sp_only .sp_tel_icon {
  font-size: 20px;
  width: 50px;
  text-align: center;
}
.brand_inner2 .sp_only .sp_tel_txt {
  width: 90px;
  font-size: 12px;
  line-height: 1.1;
  padding-left: 7px;
  border-left: 1px solid #8CA3D5;
}


.kv {
  height: auto;
  /* background-position: left 30% top 20%; */
}
.kv_inner {
  flex-direction: column;
}
.kv .main, .kv .main img {
  width: 100%;
  text-align: center;
}
.kv .main {
  padding: 20px 8px 4px;
  min-height: 0%;
}
/*---- form sp ----*/
.t_form {
  width: calc(100% - 20px);
  margin: 10px;
  padding: 16px 8px 8px;
}
.t_form > h2 {
  font-size: 22px;
}
.form_item_radio {
  flex-direction: column;
}
/* .t_form_radio {
  display: flex;
} */
.t_form_radio label {
  line-height: 30px;
}
.t_form_input::placeholder {
  font-size: 14px;
  line-height: 1.2;
}
button.t_form_btn {
  max-width: 322px;
  margin: 0 auto;
}
/*---- catch sp ----*/

.catch2 {
  height: auto;
padding: 16px;

}
.catch2_inner {
  font-size: 20px;
  line-height: 1.3;
}
/*-------------------------------------
discount sp
--------------------------------------*/

.discount_title{
  font-size: 24px;
}

.discount_table {
  width: 500px;
  margin-bottom: 15px;
}
.scroll {
  overflow: auto;/*tableをスクロールさせる*/
white-space: nowrap;
}
.scroll::-webkit-scrollbar{/*tableにスクロールバーを追加*/
  height: 10px;
  }
  .scroll::-webkit-scrollbar-track{/*tableにスクロールバーを追加*/
  background: #F1F1F1;
  }
  .scroll::-webkit-scrollbar-thumb {/*tableにスクロールバーを追加*/
  background: #BCBCBC;
  }

.discount_table th{
  font-size: 16px;
  padding: 8px;
}
.discount_table td{
  padding: 8px;
  font-size: 16px;
}
.discount_table td span{
  font-size: 1.5em;
}
.disc_percent {
  font-size: 16px;
}
.disc_percent span {
  font-size: 1.5em;
}
.bg_blue1 {
  background-color: #0e81c1;
}
.bg_blue2 {
  background-color: #0c6ac4;
}
.bg_blue3 {
  background-color: #124aa6;
}
/*-------------------------------------
renew sp
--------------------------------------*/
.renew_inner {
  padding: 8px;
}
.renew_title {
  margin-bottom: 20px;
}
.renew_box {
  width: 100%;
  margin-bottom: 10px;

}
.renew_box_title {
  font-size: 20px;
  line-height: 1.3;
}
.renew_box_txt {
  height: auto;
  position: unset;
}
.renew_box_txt > p {
  padding: 16px 16px 0;
}

.renew_price_wrap{
  width: 90%;
  margin-top: 0;
  margin-bottom: 40px;
}
.renew_price_box{}
.renew_price_ttl{
   font-size: 16px;
}
.renew_price_txt{
  padding: 15px;
  font-size: 20px;
}
.renew_price_unit{
  font-size: 14px;
}
.renew_price_ttl.renew_other{}
.renew_price_txt.renew_other{}
.renew_success{}
.renew_success::after{}


/*-------------------------------------
feature sp
--------------------------------------*/
.feature_title {
  margin-bottom: 16px;
}
.feature_img {

  width: calc(100% - 16px);
  margin: 0 auto 20px;
}
.feature_box {
  flex-direction: column;
}
.feature_no {
  width: 44px;
  height: 44px;
}
.feature_box > p {
  width: 100%;
  font-size: 18px;
  padding: 1em;
}
.feature_box > figure {
  width: 100%;
  min-height: 0%;
}

/*-------------------------------------
cta sp
--------------------------------------*/
.cta2 .cta_catch {
  font-size: 1rem;;
}
.cta_btn_sp_2col{
  width: 100%;
	font-size: 18px;
}
.cta_btn_sp_2col > div {
  width: 100%;
  /*display: block;*/
}
.cta_btn_sp_2col > div:not(:first-child) {
  margin-top: 10px;
}
.btn_mail,.btn_tel{
	padding: 0 10px;
}
.btn_tx{
	font-size:25px;
}
.btn_mail .btn_sign{
	height: 80px;
	padding:0;
	padding-top: 10px;
	padding-left: 5px;
	font-size: 20px;
}
.btn_mail a{
	height: 80px;
}
.btn_mail a .btn_tx{
	padding-top: 0 !important;
	line-height: 80px;
	vertical-align: middle;
	}

.btn_tel .btn_sign{
	height: 80px;
	padding-top: 10px;
	padding-left: 5px;
	font-size: 20px;
}
.btn_tel a{
	height: 80px;
}
.btn_tel a .btn_tx{
	padding-top: 0;
	line-height: 80px;
}

.btn_mail a .btn_tx:before{
	position: absolute;
	content: '';
	/*display: inline-block;*/
	width: 15%;
	height: 50%;
	background: url(../img/mail.png) left center no-repeat;
	background-size: cover;
	vertical-align: middle;
	left: 20%;
	top: 25%;
	/* margin-right: 10px; */
}
.btn_tel a .btn_tx:before{
	position: absolute;
	content: '';
	/*display: inline-block;*/
	width: 10%;
	height: 80%;
	background: url(../img/sp_tel_icon.png) left center no-repeat;
	background-size: contain;
	vertical-align: middle;
	top: 10%;
	left: 24%;

	/* margin-right: 10px; */
}
.cta_btn_sp_line,
.cta_btn_sp_tel,
.cta_btn_sp_mail{
  max-width: 377px;
  width: 100%;
  height: 50px;
  border-radius: 3px;
  padding-left:50px;
  display: block;
  color: #fff;
  text-align: center;
  position: relative;
  padding-top: 12px;

}
.cta_btn_sp_line::before,
.cta_btn_sp_tel::before,
.cta_btn_sp_mail::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-radius: 3px 0 0 3px;
}
/*.cta_btn_sp_line::before{
  background:url(../img/icon_line.svg) no-repeat center center #00b900;
  background-size: 70%;
}
.cta_btn_sp_tel::before{
  background:url(../img/icon_tel.svg) no-repeat center center #2275BF;
}
.cta_btn_sp_mail::before{
  background:url(../img/icon_mail.svg) no-repeat center center #E95E00;
}
.cta_btn_sp_line{
  background-color:#24bf17;
}
.cta_btn_sp_tel{
  background-color:#188CDE;
}
.cta_btn_sp_mail{
  background-color: #F29117;
}
.cta_btn_sp_ttl{
  font-family: "ヒラギノ角ゴ Pro", Hiragino Kaku Gothic Pro, "メイリオ", Meiryo, Osaka, " ＭＳ Ｐゴシック", MS PGothic, "sans-serif";
  font-weight: 600;
  display: inline-block;
  font-size: 22px;
  line-height: 26px;
  color: #fff;
}
.cta_btn_sp_ttl_sub{
  font-family: "ヒラギノ角ゴ Pro", Hiragino Kaku Gothic Pro, "メイリオ", Meiryo, Osaka, " ＭＳ Ｐゴシック", MS PGothic, "sans-serif";
  font-weight: 600;
  display: inline-block;
  font-size: 18px;
  line-height: 22px;
  color: #fff;
}
.cta_btn_sp_info{
  font-size: 13px;
  line-height: 17px;
  color: #fff;
}*/
.btn_mail .btn_sign{
	width: 50px;
	}
	.btn_tel .btn_sign{
		width: 50px;
	}
	.cta2{
		padding-top:50px !important;
	}
	.btn_mail{
		/*display:inline-block;*/
position:relative;
overflow:hidden;
}

/*.btn_mail:after {
content:"";
height:100%;
width:30px;
position:absolute;
top:-180px;
left:0;
background-color: #fff;
opacity:0;
-webkit-transform: rotate(45deg);
-webkit-animation: reflection 3s ease-in-out infinite;
}*/


@keyframes reflection {
0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}


/* LINEボタンのアニメーション */
.cta_btn_sp_line .cta_btn_sp_ttl {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.cta_btn_sp_line{
  position: relative;
  overflow: hidden;
}
.cta_btn_sp_line::after {
  position: absolute;
  background-color: #fff;
  content: "";
  width: 30px;
  height: 100%;
  left: 0;
  opacity: 0;
  top: -180px;
  transform: rotate(45deg);
  animation: shine 3s ease-in-out infinite;
}
.cta_btn_sp_line .cta_btn_sp_ttl_sub{
  animation: textanime2 3s infinite;
}
.cta_btn_sp_anime {
  animation: textanime1 3s infinite;
}
@keyframes textanime1 {
  0% {
    transform: scale(1);
  }
 15% {
    transform: scale(1.2);
  }
  25% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes textanime2 {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.2);
  }
  55% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

/*-------------------------------------
flow sp
--------------------------------------*/
.flow_title {
  margin-bottom: 16px;
}
.flow_box {
  width: 100%;
  margin-bottom: 16px;
}
.flow_box:last-child {
margin-bottom: 0;
}
.flow_images {
  width: 100%;
  height: auto;
}
.flow_box_title {
  font-size: 21px;
  height: 40px;
  line-height: 40px;
  text-align: left;
  padding-left: 50px;
}
.flow_box_title .flow_box_number {
  width: 60px;
  height: auto;
  left: -23px;
}
.flow_box > p {
  padding: 10px;
}
/*-------------------------------------
works sp
--------------------------------------*/
.works {
  padding-bottom: 16px;
}
.works_title {
  width: 100%;
  background-position: left -150px bottom -11px, right -150px bottom -11px;
  overflow: hidden;
  margin-bottom: 16px;
  margin-top: 0px;
}
/* .summary {
  font-size: 16px;
} */
.works_title > img {
  width: auto;
  height: 22px;
}
.works_wrap {
  width: 100%;
}

.works_wrap:first-of-type{
  padding-bottom: 25px;
}
.works_subttl{
  background-color: #5372b7;
  font-size: 16px;
  line-height: 50px;
  color: #fff;
  height: 60px;
  width: 100%;
  border-radius: 10px 10px 0 0;
  text-align: left;
  padding: 5px 15px;
}
.works_subttl_icon{
  vertical-align: middle;
  width: 50px;
  height: auto;
}
.works_subttl_strong{
  font-size: 20px;
}
.works_box{
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  padding: 10px;
}

.works_box_img{
  margin-bottom: 10px;
}
.works_box_txt{
  text-align: left;
  font-size: 16px;
  line-height: 26px;
}
.works_box_strong{
  font-weight: bold;
}


/*-------------------------------------
faq sp
--------------------------------------*/
.faq_title {
  width: 100%;
  background-position: left -150px bottom -11px, right -150px bottom -11px;
  overflow: hidden;
  margin-bottom: 16px;
  margin-top: 0px;
}
.faq_title > img {
  width: auto;
  height: 22px;
}
.faq_box > h2 {
  font-size: 18px;
  min-height: 90px;
padding-left: 70px;
text-align: left;
}
.faq_box > h2::before {
  top: 14px;
  width: 60px;
  height: 50px;
}
.faq_box > p {
  font-size: 16px;
  padding-left: 70px;
  min-height: 90px;
}
.faq_box > p::before {
  width: 60px;
  height: 50px;
  top: 16px;
  left: 0;
}

/*-------------------------------------
company sp
--------------------------------------*/
.company_inner {
  width: 100%;
}
.company_table th {
  width: 43px;
  padding: 8px 13px;
  vertical-align: middle;
}
.company_table td {
  width: calc(100% - 43px);
}
/*-------------------------------------
form.html sp
--------------------------------------*/
.p_form {
  padding: 16px 8px;
}
.p_form_inner {
  width: 100%;
}
.p_form_title {
  width: 220px;
  margin: 0 auto 20px;
}
.p_form_item {
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 16px;
  height: auto;
}
.p_form_item > label,
.p_form_item > .p_form_label {
  width: 100%;
  font-size: 18px;
  height: auto;
  justify-content: flex-start;
  align-items: center;
  border-bottom: none;
  padding-bottom: 8px;
  padding-right: 10px;
}
.p_form_item > input,
.p_form_item > textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
}
.p_radio_wrap {
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.p_radio_wrap > label {
  font-size: 16px;
}
.p_form_item > input::placeholder,
.p_form_item > textarea::placeholder {
  font-size: 16px;
}
.p_form .label_required {
  font-size: 13px;
}
.p_form .label_optional {
  font-size: 13px;
}
.p_form_btn {
  display: block;
  margin: 20px auto 30px;
}
.p_form_btn:hover {
  opacity: .7;
  cursor: pointer;
}

/*-------------------------------------
floatmenu sp
--------------------------------------*/
#floatmenu2.floatmenu4 {
  width: 100%;
  background: rgba(29, 29, 53, .85);
  height: 60px;
  position: fixed;
  bottom: 0;
  right: 0;
  bottom: -60px;
  z-index: 999;
  text-align: center;
  padding: 5px 0 0;
  margin: 0;
}

.floatmenu4 .cta_btn_sp_2col_ft{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.floatmenu4 .cta_btn_sp_2col_ft > div {
  width: 48%;
  max-height: 50px;
}

.cta_btn_sp_2col_ft div:first-child{
  margin-right: 10px;
  margin-bottom: 0;
}

.cta_btn_sp_tel_ft,
.cta_btn_sp_mail_ft{
  max-width: 194px;
  width: 100%;
  height: 50px;
  border-radius: 3px;
  padding-left:34px;
  display: block;
  color: #fff;
  text-align: center;
  position: relative;
}
.cta_btn_sp_tel_ft::before,
.cta_btn_sp_mail_ft::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 50px;
  border-radius: 3px 0 0 3px;
}
.cta_btn_sp_tel_ft::before{
  background:url(../img/icon_tel_ft.svg) no-repeat center center #2275BF;
}
.cta_btn_sp_mail_ft::before{
  background:url(../img/icon_mail_ft.svg) no-repeat center center #E95E00;
}
.cta_btn_sp_tel_ft{
  background-color:#188CDE;
  padding-top: 7px;
}
.cta_btn_sp_mail_ft{
  background-color: #F29117;
  padding-top: 7px;
}
.cta_btn_sp_ttl_ft{
  font-family: "ヒラギノ角ゴ Pro", Hiragino Kaku Gothic Pro, "メイリオ", Meiryo, Osaka, " ＭＳ Ｐゴシック", MS PGothic, "sans-serif";
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}
.cta_btn_sp_ttl_sub_ft{
  font-family: "ヒラギノ角ゴ Pro", Hiragino Kaku Gothic Pro, "メイリオ", Meiryo, Osaka, " ＭＳ Ｐゴシック", MS PGothic, "sans-serif";
  font-weight: 600;
  font-size: 12px;
  line-height: 17px;
  color: #fff;
}
.cta_btn_sp_info_ft{
  font-size: 10px;
  line-height: 15px;
  color: #fff;
}
	.sp_flex{
		display: flex;
		justify-content: space-between;
	}
	.sp_flex_left img{
		width:30%;
	}
	.sp_flex_right img{

	}
	.cta_footer_btn img{
		height: 50px;
		width: auto;
	}
	.cta_btn_sp_2col_ft{
		justify-content: space-between;
	}
	.policy_link a::after{
		right: 20%;
	}
}


@media screen and (max-width: 320px) {       /*320pxのスマホでの指定*/
  .cta2 .cta_btn_sp_tel img {
    width: 100%;
    height: auto;
  }
}
