/* Colors */
:root {
  --color-primary: #f03c02;
}

/*********
	modal
**********/

/*モーダルを開くボタン*/
.modal-open{
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 50px;
  font-weight: bold;
  color: #fff;
  background: #000;
  margin: auto;
  cursor: pointer;
  z-index: 999;
  transform: translate(-50%,-50%);
}
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0,0,0,50%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
  opacity: 1;
  visibility: visible;
  z-index:999;
}
/*モーダル枠の指定*/
.modal-body{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 500px;
  width: 90%;
}
/*モーダルを閉じるボタンの指定*/
.modal-close{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -40px;
  right: -40px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
/*モーダル内のコンテンツの指定*/
.modal-content{
  background: #fff;
  text-align: left;
  padding: 30px;
  border-radius: 20px;
}
.l-modal_head__title {
  padding : 30px 20px;
}
.l-modal_head {
  text-align : center;
}
.l-modal_head__title {
  text-align : center;
}
.m-topSection {
  padding : 0;
  margin : 0;
  text-align : center;
}
.m-topSection .btn {
  padding : 20px;
  font-size : large;
}
.btn-blue {
  background-color: blue;
  color : white;
}
.btn-blue:hover {
  border : 1px solid blue;
}
.btn-orange {
  background-color : orange;
  color : white;
}
.btn-orange:hover {
  border : 1px solid orange;
}

/* text-color */
.orange {
  color:orange !important;
}

/* //////////////
/// templates ///
///////////////*/

/* recaptcha */
.grecaptcha-badge { visibility: hidden; }
.recaptcha_message {
  text-align : right;
  font-size : small;
  padding:5px;
  margin-right:20px;
  color : #ccc;
}
/* basic */
.m0{ margin: 0 !important;}
.m5{ margin: 5px !important;}
.m10{ margin: 10px !important;}
.m20{ margin: 20px !important; }
.m30{ margin: 30px !important; }
.p0{ padding: 0 !important; }
.p5{ padding: 5px !important; }
.p10{ padding: 10px !important; }
.p20{ padding: 20px !important; }
.p30{ padding: 30px !important; }
.p40{ padding: 40px !important; }
.p50{ padding: 50px !important; }
.pt0{ padding-top: 0 !important; }
.pb0{ padding-bottom: 0 !important; }
.pr0{ padding-right: 0 !important; }
.pl0{ padding-left: 0 !important; }
.pt10{ padding-top: 10px !important; }
.pb10{ padding-bottom: 10px !important; }
.pr10{ padding-right: 10px !important; }
.pl10{ padding-left: 10px !important; }
.pt20{ padding-top: 20px !important; }
.pb20{ padding-bottom: 20px !important; }
.pr20{ padding-right: 20px !important; }
.pl20{ padding-left: 20px !important; }
.mt0{ padding-top: 0 !important; }
.mb0{ margin-bottom: 0 !important; }
.mr0{ margin-right: 0 !important; }
.ml0{ margin-left: 0 !important; }
.mt5{ margin-top: 5px !important; }
.mb5{ margin-bottom: 5px !important; }
.mt10{ margin-top: 10px !important; }
.mb10{ margin-bottom: 10px !important; }
.mr10{ margin-right: 10px !important; }
.ml10{ margin-left: 10px !important; }
.mt20{ margin-top: 20px !important; }
.mb20{ margin-bottom: 20px !important; }
.mr20{ margin-right: 20px !important; }
.ml20{ margin-left: 20px !important; }
.mt30{ margin-top: 30px !important; }
.mb30{ margin-bottom: 30px !important; }
.mr30{ margin-right: 30px !important; }
.ml30{ margin-left: 30px !important; }

.center {
  text-align : center;
}
.flex {
  display : flex;
}
.flex_center {
  justify-content: center;
  align-items    : center;
}

.btn {
  border-radius : 5px !important;
}
.btn.btn-lg {
  font-size : 18px;
  padding : 10px 16px;
}
.block{
  display: block !important;
}
.bold{
  font-weight: bold;
}
.bold1{
  font-weight:100;
}
.bold3{
  font-weight:300;
}
.bold4{
  font-weight:400;
}
.bold5{
  font-weight:500;
}
.bold6{
  font-weight:600;
}
.bold7{
  font-weight:700;
}
.bold9{
  font-weight:900;
}
.xx-large{
  font-size: xx-large;
}
.x-large{
  font-size: x-large;
}
.large{
  font-size: large;
}
.small{
  font-size: small !important;
}
.x-small{
  font-size: x-small !important;
}
.inline-block {
  display : inline-block !important;
}
.thinSmall{
  font-size: small !important;
  color: #999 !important;
}
.top{
  vertical-align: top;
}
.bottom{
  vertical-align: bottom;
}
.pointer,
.cursor{
  cursor: pointer;
}
.ub {
  text-decoration: underline !important;
}
.border{
  border: 1px solid #ccc !important;
}
.pc_block {
  display:block;
  padding : 0 !important;
  margin : 0 !important;
}
.mobile_block {
  display:inline;
  padding : 0 !important;
  margin : 0 !important;
}
.no_deco {
  text-decoration: none;
}

@media all and (min-width:769px) {
  .mobile,
  .pc_hide { display: none !important; }
  .page-titles h1 span.sub_title{
    font-size: 16px;
  }
}
@media all and (max-width:768px) {
  .pc,.mobile_hide{ display: none !important; }
  .page-titles h1 span.sub_title{
    font-size: 12px;
  }
  .pc_block {
    display : inline;
  }
  .mobile_block {
    display : block;
  }
  .mobile_p_0{
    padding : 0 !important;
  }
  .mobile_small{
    font-size : small;
  }
}

.header-container-in.hlt-top-menu .logo-header,
.header-container-in.hlt-top-menu .logo-header img {
  max-height : 90px !important;
}

.link_in_site {
  text-align : right;
  padding    : 50px 20px 50px 20px;
}

.ta_r {
  text-align : right;
}
.ta_l {
  text-align : left;
}

/* マーカー*/
.marker_yellow{
  background: -webkit-linear-gradient(transparent 0%, #ffff66 0%);
  background: -o-linear-gradient(transparent 0%, #ffff66 0%);
  background: linear-gradient(transparent 0%, #ffff66 0%);
 }
.marker_green {
  background: -webkit-linear-gradient(transparent 0%, #6f6  0%);
  background: -o-linear-gradient(transparent 0%, #6f6  0%);
  background: linear-gradient(transparent 0%, #6f6  0%);
}
.marker_red {
  background: -webkit-linear-gradient(transparent 0%, #faf  0%);
  background: -o-linear-gradient(transparent 0%, #faf  0%);
  background: linear-gradient(transparent 0%, #faf  0%);
}

.marker_lime {
  background: -webkit-linear-gradient(transparent 60%, #66FFCC 60%);
  background: -o-linear-gradient(transparent 60%, #66FFCC 60%);
  background: linear-gradient(transparent 60%, #66FFCC 60%);
}
.marker_water {
  background: -webkit-linear-gradient(transparent 60%, #66ccff 60%);
  background: -o-linear-gradient(transparent 60%, #66ccff 60%);
  background: linear-gradient(transparent 60%, #66ccff 60%);
}
.marker_pink {
  background: -webkit-linear-gradient(transparent 60%, #ff66ff 60%);
  background: -o-linear-gradient(transparent 60%, #ff66ff 60%);
  background: linear-gradient(transparent 60%, #ff66ff 60%);
}

.fixed {
  position : fixed !important;

}

/* other orgs */
@media all and (max-width:768px) {
  .section-header h2 {
    font-size : 5vmin
  }
  .section-header h2:before, .section-header h2:after {
    width : 20px;
  }
}

.more_link_wrap a{
  text-align: right;
    padding: 20px;
    font-size: 20px;
    text-decoration: underline;
}

#header.fixed {
/*  background : rgba(30,30,30,0.8);*/
}

/* flex */
.flex_container {
  display : flex;
}
.flex_text_box {
  padding : 30px 20px;
}

@media all and (max-width:768px) {
  .flex_mobile_clear {
    display : block;
  }
}
@media all and (min-width:769px) {
  .pc_flex_container {
    display : flex;
  }
}


/* kantan */

.kantan-inquiry-wrap {
  max-width : 1280px;
}
.kantan-inquiry-wrap .section-h1 {
  background-color: green;
  color           : white;
  padding         : 10px 20px;
}
.kantan-inquiry-wrap .section-h2 {
  font-size: 30px !important;
  color : black;
  background: linear-gradient(transparent 70%, yellow 70%) !important;
  text-align : center;
  width : 80%;
  margin: 0 auto !important;
}
.kantan_tel {
  font-size : large;
  font-weight : bold;
  margin-left : 20px;
  text-align : center;
}
.kantan_tel .tel_number {
  color : red;
  font-size : 28px;
  margin-left : 10px;
}
.kantan_tel .kantan_tel_time {
  font-weight : normal;
}
.kantan-inquiry-wrap {
  background-color : white;
}

@media all and (max-width:1280px) {
  .kantan-inquiry-wrap .section-h2 {
    font-size: 28px !important;
  }
}
@media all and (max-width:768px) {
  .kantan-inquiry-wrap .section-h2 {
    font-size: 16px !important;
    background: linear-gradient(transparent 70%, yellow 70%) !important;
    width : 100%;
    margin-bottom : 20px !important;
  }
  .kantan-inquiry-wrap .kantan_tel div {
    font-size : 14px;
  }
  .kantan-inquiry-wrap,
  .kantan-inquiry-wrap #kslide1 {
    margin-bottom : 0;
    padding-bottom : 0;
  }
}

/* form */
form {
  text-align : center;
}
.kantan_tel {
  font-size : large;
  font-weight : bold;
  margin-left : 20px;
  text-align : center;
}
.kantan_tel .tel_number {
  color : red;
  font-size : 28px;
  margin-left : 10px;
}
.kantan_tel .kantan_tel_time {
  font-weight : normal;
}
.kantan-inquiry-wrap {
  background-color : white;
}
.has-danger input{
  border : 1px solid red !important;
}
.has-danger small.form-control-feedback {
  color : red;
  font-weight : bold;
}

@media all and (max-width:768px) {
  .kantan-inquiry-wrap .section-h2 {
    font-size: 16px !important;
    background: linear-gradient(transparent 70%, yellow 70%) !important;
    width : 100%;
    margin-bottom : 20px !important;
  }
  .kantan-inquiry-wrap .kantan_tel div {
    font-size : 14px;
  }
  .kantan-inquiry-wrap,
  .kantan-inquiry-wrap #kslide1 {
    margin-bottom : 0;
    padding-bottom : 0;
  }
}

.square_btn, input[type=submit], input[type=button] {
  padding: 11px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  width: 200px;
  transition: all .2s linear;
  background: #000;
  display: block;
  margin: 0 auto
}

a.square_btn {
  background: #565e62;
  box-shadow: 3px 3px 0 #000;
  border: 1px solid #565e62;
  text-decoration: none;
  color: #fff
}

input[type=submit].verification, input[type=button].wpcf7c-btn-back, a.square_btn.inquiry_btn {
  background: #f76b6b;
  box-shadow: 3px 3px 0 #e13d3d;
  border: 1px solid #f76b6b;
  cursor: pointer;
  display: inline-block;
  float: none;
  margin: 0 30px;
  -webkit-appearance: none;
  border-radius: 0;
  outline: none
}

a.square_btn.inquiry_btn {
  background: #dd0303;
  box-shadow: 3px 4px 0 #9d0000;
  border: 2px solid transparent;
  font-size: 18px
}

.square_btn.inquiry_btn {
  margin: 0
}

input[type=button]+input[type=submit] {
  display: inline-block;
  padding: 16px
}

input[type=submit].submit-btn.btn_ng:hover {
  box-shadow : none;
}
input[type=submit].submit-btn.btn_ng {
  background : #ccc;
  --bs-btn-color: #fff;
  --bs-btn-bg: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #5c636a;
  --bs-btn-hover-border-color: #565e64;
  --bs-btn-focus-shadow-rgb: 130, 138, 145;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #565e64;
  --bs-btn-active-border-color: #51585e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #6c757d;
  --bs-btn-disabled-border-color: #6c757
}
input[type=submit].submit-btn {
  background: #dd0303;
  box-shadow: 3px 3px 0 #b00000;
  border: 1px solid #dd0303;
  border-radius : 5px;
}
.square_btn.next-btn,
.square_btn.back-btn {
  border-radius : 5px;
}

a.square_btn:hover, input[type=submit]:hover, input[type=button].wpcf7c-btn-back:hover, a.square_btn.inquiry_btn:hover {
  box-shadow: 4px 4px 0 #fdb2b2;
  opacity: .7
}

a.square_btn:hover {
  box-shadow: 4px 4px 0 #999;
  color: #fff
}
a.square_btn[class$=-btn] {
  height: 48px;
  line-height: 25px;
  position: relative
}

#kantan .step_section{
  padding : 0 0 20px 0;
}

#kantan .form-wrap {
  width: 100%;
  overflow: hidden
}

#kantan .scroll-form {
  width: 200%;
  display: flex
}

#kantan .scroll-form #kslide2 {
  height: calc(200%/2);
  width: 100%;
  margin-top: -120px;
  padding-top: 130px
}

#kantan .scroll-form [id^=kslide] {
  height: calc(200%/2);
  width: 100%;
  margin-top: -120px;
  padding-top: 130px
}

#kantan .scroll-form [id^=kslide]:last-child {
  margin-bottom: 0
}

#kantan .scroll-form [id^=kslide] .form-list-item {
  margin: 0 0 0 .5em
}

#kslide1 .input_wrap label {
  padding: 2px 10px;
  background: #eee;
  margin: 2px 0;
  border-radius: 4px
}

#kslide1 .items label {
  min-width: 210px
}

#kslide1 .term label {
  min-width: 100px
}

.scroll-form_footer {
  margin: 20px 0 0
}

[class^=form-step] {
  display: inline-block;
  vertical-align: top;
  margin: 0 10px !important;
  height: 54px
}


a.square_btn[class$=-btn] .fa-angle-right {
  margin: auto;
  font-size: 21px;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  line-height: 46px
}

a.square_btn[class$=-btn] .fa-angle-left {
  margin: auto;
  font-size: 21px;
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  line-height: 46px
}

@media screen and (max-width:768px) {
  #kantan .scroll-form [id^=kslide] {
    margin-top: -100px;
    padding-top: 110px
  }
}
.formStep {
  z-index: 0
}

.formStep .stepWrap ul {
  text-align: center;
  font-size: 0;
  padding: 0;
  margin-bottom: 10px
}

.formStep .stepWrap li {
  display: inline-block;
  height: 50px;
  width: -webkit-calc(100%/3);
  width: calc(100%/3);
  text-align: center;
  position: relative;
  max-width: 150px;
  vertical-align: middle;
  border-radius: 0;
  line-height: 25px
}

.formStep .stepWrap li.now_progress.error {
  background: #ff5050;
  background: linear-gradient(90deg, #d90000 0%, #ff5050 100%)
}

.formStep .stepWrap li:before {
  content: "";
  position: absolute;
  top: 12px;
  z-index: 0;
  height: 3px;
  bottom: 0;
  margin: 0;
  background: #eee4e4;
  width: 100%;
  left: 50%;
  right: 50%
}

.formStep .stepWrap li em {
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  width: 25px;
  height: 25px;
  display: inline-block;
  border-radius: 0;
  border: 1px solid #eee4e4;
  line-height: 25px;
  position: relative;
  background: #eee4e4;
  vertical-align: middle
}

.formStep .stepWrap li.now_progress em {
  background: #e80505;
  color: #fff;
  border: 1px solid #e80505
}

.formStep .stepWrap li span {
  font-size: 11px;
  display: block;
  line-height: 20px;
  position: relative;
  top: 5px;
  color: #797979
}

.formStep .stepWrap li.completed:before {
  content: "";
  background: #e80505
}

.formStep .stepWrap li.completed em {
  color: #fff;
  background: #e80505;
  border: 1px solid #e80505
}

.formStep .stepWrap li.completed em:after {
  content: "\f00c";
  position: absolute;
  text-align: center;
  font-family: "Font Awesome 5 Free";
  background: #e80505;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  left: 0;
  right: 0
}

.formStep .stepWrap li:last-child {
  margin: 0
}

.formStep .stepWrap li:last-child:before {
  content: none
}

form table {
  margin-bottom: 20px;
  max-width: 100%;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0
}
form table th {
  background-color: #f5f6f7;
}

form table tr:nth-of-type(2n+1) {
  background-color: #fafbfc
}

form table th, table td {
  border: 1px solid #eee;
  padding: 6px
}
form table th {
  text-align : center;
}
form table td {
  text-align: left;
}

form th {
  width: 200px;
  font-size: 14px;
  text-align: left;
  padding: 10px 15px
}

form .term, form .items, form .pname {
  max-width: 200px
}

form .example {
  font-size: 11px;
  color: #999;
  display: block
}

form .form-list-item.example {
  margin: 2px 0 2px 20px
}

form label {
  display: block
}

form .required, form .optional {
  display: table-cell;
  vertical-align: middle;
  width: 60px
}

form .required span, form .optional span {
  background: #eee;
  padding: 0 4px;
  border-radius: 0;
  font-size: 13px;
  color: #fff;
  text-align: center;
  width: 40px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

form .required span {
  background: #e16f6f
}

form .optional span {
  background: #9faec6
}

textarea {
  resize: vertical
}

.kantan-inquiry-wrap table textarea {
    min-height: 50px;
    height: 5em
}
.wpcf7 input[type=url],.wpcf7 input[type=email],.wpcf7 input[type=tel] {
    direction: ltr
}
.search-edit,input[type=text],input[type=password],input[type=date],input[type=datetime],input[type=email],input[type=number],input[type=search],input[type=tel],input[type=time],input[type=url],textarea,select {
    padding: 11px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 18px;
    width: 100%
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #f03c02;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #1bac91;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}
/* end faq */

/* company */
table.company-profile th, table.gallery-profile th {
    width: 150px;
}
.company-td ul li {
    display: inline-block;
    min-width: 250px;
    font-size: 16px;
}
.table_company th {
  text-align : center;
}
.table_company th, .table_company td {
  border : 0;
  background-color : white;
}
/* end company */
/* start location */
/*
 location
 */
tr.location_names, .location_names td {
  border-bottom: 0px;
}
tr.location_imgs, .location_imgs td {
  border-top: 0px;
}
.location_wrap {
  display    : flex;
  align-items: center;
  margin-left: 20px;
}
.location_msg {
  display : flex;
}
.location_img {
  display    : flex;
}
tr.location_imgs td {
  vertical-align: middle;
}
tr.location_imgs div.location-imgs-inner div {
  text-align : center;
}
tr.location_imgs div.location-imgs div.location-imgs-inner img {
  max-height : 250px;
  max-width  : 250px;
}
@media all and (max-width:768px) {
  .location_wrap {
    display    : block;
    margin-left: 5px;
  }
  .location_msg {
    display : block;
  }
  .location_img {
    display    : block;
    margin-left: 0px;
    max-width  : 100%;
  }
}
/* end location */
/* start contact */
/* toiawase */
#toiawase_wrap {
  padding: 10px;
}
#toiawase_wrap article{
  margin-bottom : 30px;
}
#toiawase_wrap .toiawase_title {
  font-size   : x-large;
  font-weight : bold;
}
#toiawase_wrap p {
  padding : 0;
  margin-bottom :5px;
}
#toiawase_wrap .toiawase_tel {
  display          : inline-block;
  font-weight      : bold;
  padding          : 10px 40px;
  margin           : 10px 20px;
  background-color : #fffff0;
  border-right     : 1px solid #ccc;
  border-bottom    : 1px solid #ccc;
}
#toiawase_wrap .toiawase_tel .tel {
  font-size : 40px;
}
@media all and (max-width:768px) {
  #toiawase_wrap .toiawase_tel .tel {
    font-size : 32px;
  }
}
/* end contact */

/* toiawase form  start*/
.easy_contact_table input {
  border-radius : 5px !important;
}
@media screen and (min-width: 769px) {
  .easy_contact_table {
    width      :60%;
    margin-left: 100px;
  }
}
@media screen and (min-width: 1024px) {
    .kantan-inquiry-wrap .table-wrap.easy_contact_step1,
    .kantan-inquiry-wrap .table-wrap.easy_contact_step2 {
        background:url('https://www.azukari.jp/leaving/assets/img/webp/bg_kantan_mitsumori.webp') #fff right no-repeat !important;
        background-origin: content-box !important
    }
}
@media all and (max-width:768px) {
  form .term, form .items, form .pname {
    max-width: 100%;
  }
   table.toiawase_form_table th,
   table.toiawase_form_table td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
   table.toiawase_form_table th p{
    margin-bottom : 0;
  }
  table.toiawase_form_table td.required,
  table.toiawase_form_table td.optional {
    display : none;
    }
  table.toiawase_form_table tr:nth-child(1) td.required + td input,
  table.toiawase_form_table tr:nth-child(2) td.required + td input,
  table.toiawase_form_table tr:nth-child(3) td.required + td input {
    width : 80%;
    display : inline;
    margin-left : 40px;
  }
  table.toiawase_form_table tr:nth-child(4) td.required + td input {
    margin-left : 24px;
  }
  table.toiawase_form_table tr:nth-child(1) td.required + td p span.input_wrap::before,
  table.toiawase_form_table tr:nth-child(2) td.required + td p span.input_wrap::before,
  table.toiawase_form_table tr:nth-child(3) td.required + td p span.input_wrap::before,
  table.toiawase_form_table tr:nth-child(4) td.required + td p span.input_wrap::before {
    content   : "必須";
    position  : relative;
    top       : 30px;
    left      : 0;
    background: red;
    color : white;
    opacity   : 0.8;
    padding : 2px;
    z-index   : 1;
  }
 }
/* toiawase form  end*/

/* start fixed tel num */
/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/


#footer_fixed_tel {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 65px;
  bottom: 15px;
  z-index: 99999;
  background: white;
  border : 2px solid var(--color-primary);
  width: 240px;
  height: 65px;
  border-radius: 4px;
  transition: all 0.4s;
  text-align : center;
  padding-top : 6px;
}
#footer_fixed_tel i {
  font-size : 20px !important;
}
#footer_fixed_tel span {
  margin-left : 5px;
  color : var(--color-primary) !important;
  font-weight : bold;
}

#footer_fixed_tel i {
  font-size: 24px;
  line-height: 0;
}
#footer_fixed_tel i::before {
  color: var(--color-primary) !important;
 }

#footer_fixed_tel.active {
  visibility: visible;
  opacity: 1;
}
/* end fixed tel num */


/* common parts */
.title_bar{
  text-align:center;
    color: #576965;/*文字色*/
    font-size: 20px;
    padding: 30px 20px 15px;/*文字回りの余白（上 左右 下）*/
    display: block;
    position: relative;
  font-size : 32px;
  font-weight : bold;
  padding : 30px 0px;
  margin : 20px 0px 50px 0;
}
.title_bar:before {
    content: '';
    background: #f03c02;/*背景色*/
    width: calc(100% + 3px);
    height: calc(100% + 3px);
    position: absolute;
    top: 0px;
    left: 6px;
    z-index: -1;
    transform: rotate(1.5deg);/*背景影部の回転*/
}

.title_bar:after {
    content: '';
    background: #fff;/*背景色（白）*/
    border: 3px solid #f03c02;/*背景白部の囲み線（太さ 実線 色*/
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: -5px;
    z-index: -1;
    transform: rotate(-.5deg);/*背景白部の回転*/
}