@charset "UTF-8";
html * {
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  font-size: 1.4rem;
  color: #333333;
  background: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  position: relative;
  word-break: break-all;
}

img {
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.center {
  text-align: center;
}

.xs-font {
  font-size: 10px;
}

.s-font {
  font-size: 13px;
}

.mb-0 {
  margin-bottom: 0;
}

.text-right {
  text-align: right;
}

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

.text-left {
  text-align: left;
}

.gap-2 {
  gap: 2px;
}

.header {
  width: 100%;
  height: 60px;
  background: #FFFFFF;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
}

.header-logo {
  width: 120px;
  margin-left: 10px;
}

.scroll-header {
  position: fixed;
  top: 0;
  z-index: 99;
}

.login-section {
  width: 100%;
  margin-top: 60px;
  padding: 15% 8%;
  font-size: 1.6em;
}

.login-wrapper {
  width: 100%;
}

.login-heading1 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-heading1 img {
  width: 70%;
}

.login-heading2 {
  color: #B17F9B;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin: 5% 0 12% 0;
}

.login-cont {
  display: flex;
  flex-direction: column;
}

.login-form1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10%;
}

.label-form1 {
  display: block;
  margin-bottom: 5%;
  max-width: 100%;
  width: 400px;
}
.label-form1 strong {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
}

.btn1 {
  padding: 8px 48px;
  border-radius: 5px;
  text-align: center;
  font-size: 16px;
}

.btn-green {
  color: #FFFFFF;
  background: #60A489;
}

.btn-red {
  color: #FFFFFF;
  background: #FF4747;
}

.btn-style1 {
  padding: 7px 26px;
}

.input-style1 {
  display: inline-block;
  background: #FFFFFF;
  border: 1px solid #707070;
  border-radius: 5px;
  padding: 8px;
  width: 100%;
  font-size: 16px;
}

.checkbox {
  width: auto;
}

.login-link1 {
  color: #57B1C4;
  font-size: 15px;
  text-decoration: underline;
  text-align: center;
}

.login-wrapper2 {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  padding: 6%;
}

.heading1 {
  background: #B17F9B;
  color: #FFFFFF;
  padding: 2%;
  font-size: 18px;
}

.texts1 {
  font-size: 15px;
}

.login-form2 {
  margin-top: 15px;
  width: 100%;
}
.login-form2 .button {
  margin-top: 3%;
  width: 100%;
}

.pass-reset-img {
  display: flex;
  justify-content: center;
  margin-top: 16%;
}
.pass-reset-img img {
  width: 50%;
}

.signin-heder-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header-box {
  display: flex;
}
.header-box .header-link {
  padding: 8px 0;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 9px;
  font-weight: bold;
  border-left: 1px solid #eee;
}
.header-box .header-link img {
  width: 20px;
  height: 20px;
  margin-bottom: 3px;
}

.num {
  position: relative;
}
.num[data-num="+99"]::after {
  width: 32px;
  border-radius: 999px;
}
.num:not([data-num="0"]):not([data-num=""]):not([data-num="+99"])::after {
  width: 16px;
  border-radius: 50%;
}
.num:not([data-num="0"]):not([data-num=""])::after {
  content: attr(data-num);
  position: absolute;
  top: 3px;
  right: 5px;
  background: #FF4747;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 10px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu {
  position: fixed;
  z-index: 99;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: flex-end;
  color: #FFFFFF;
  background: transparent;
  border: none;
  box-shadow: none;
  transition: all 0.5s;
}

.menu-inner {
  width: 300px;
  max-width: 80%;
  background: #DBBACD;
  box-shadow: -3px 3px 8px 1px rgba(0, 0, 0, 0.12);
}

.menu.showed {
  right: 0;
}
.menu.showed .menu-inner {
  overflow-y: scroll;
}
.menu.showed .menu-list {
  width: 100%;
  height: 100vh;
}

.menu-list li {
  width: 100%;
  padding: 4%;
  border-bottom: 1px solid #B17F9B;
}
.menu-list li a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-heading {
  background: #B17F9B;
  padding: 2% 4%;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (961px <= width) {
  .login-section {
    max-width: 1100px;
    padding: 6%;
    margin: 60px auto 0 auto;
  }
  .header-logo {
    width: 150px;
  }
  .login-heading1 img {
    width: 50%;
  }
  .login-heading2 {
    margin: 6% 0;
  }
  .login-form1 {
    margin-bottom: 6%;
  }
  .login-form1 .button {
    margin-top: 2%;
  }
  .label-form1 {
    margin-bottom: 3%;
  }
  .login-wrapper2 {
    max-width: 1100px;
    padding: 4%;
  }
  .heading1 {
    padding: 15px;
  }
  .heading1.section-heading {
    max-width: 1100px;
    margin: 100px auto 0;
  }
  .pc-login-cont {
    padding: 0 12%;
  }
  .pass-reset-img {
    margin-top: 6%;
  }
  .pass-reset-img img {
    width: 25%;
  }
  .menu-heading {
    padding: 3% 5%;
  }
  .menu {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: all 0.5s;
  }
  .menu.showed .menu-inner {
    overflow-y: hidden;
  }
  .menu-list li {
    padding: 5%;
  }
}
@media screen and (600px <= width < 961px) {
  .login-heading1 img {
    width: 45%;
  }
  .pass-reset-img {
    margin-top: 10%;
  }
  .pass-reset-img img {
    width: 25%;
  }
  .menu-list li {
    padding: 2.5%;
  }
}
.mypage-visual {
  width: 100%;
  height: auto;
  background: url(../../img/front/profile-bg.png) no-repeat top center;
  background-size: cover;
}

.mypage-visual-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}
.mypage-visual-inner .box1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mypage-visual-inner .box1 .img1 {
  width: 100px;
}
.mypage-visual-inner .box1 .btn-green {
  border-radius: 3px;
  font-size: 12px;
  padding: 5px 15px;
  margin-top: 10px;
}
.mypage-visual-inner .box1 .btn-green .fa-pen-to-square {
  margin-right: 3px;
}

.namebox1 {
  font-weight: bold;
  text-align: center;
  margin-top: 8px;
}
.namebox1 .text1 {
  font-size: 10px;
  letter-spacing: 0.01em;
}
.namebox1 .text2 {
  font-size: 18px;
}

.mypage-visual-bottom {
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  color: #FFFFFF;
  padding: 10px 0;
}
.mypage-visual-bottom .texts {
  text-align: center;
}

.main-wrapper {
  width: 100%;
  margin-top: 60px;
}

.wrapper1 {
  padding: 0 2%;
  margin: 20px auto 0 auto;
  width: 100%;
}

.mypage-section {
  margin-bottom: 6%;
}
.mypage-section .list1 {
  margin-bottom: 2%;
}

.wrapper-inner1 {
  padding: 4%;
}

.mypage-list-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 4%;
  font-size: 15px;
}

.list1 .item {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 10px;
  background: #FFFFFF;
  border-bottom: 1px solid #B17F9B;
}
.list1 .item .item-text {
  font-size: 13px;
  font-weight: bold;
}
.list1 .item.unread::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF4747;
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
}

.item-small1 {
  font-size: 12px;
  color: #aaaaaa;
  margin-top: 3px;
}

.btn-group1 {
  padding: 0 2%;
}

.btn-mypage {
  display: block;
  width: 100%;
  margin-top: 5px;
}
.client-add-submit {
  height: 80px;
}
.list2 {
  padding: 2%;
}
.list2 .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #60A489;
  border-radius: 5px;
  padding: 2%;
}
.list2 .item .leftbox {
  font-size: 12px;
  width: 90%;
  word-wrap: break-word;
}
.list2 .item .leftbox .text2 {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}
.list2 .item .leftbox .box1 {
  display: flex;
  align-items: center;
}
.list2 .item .leftbox .box1 .text1 {
  margin-left: 3px;
}
.list2 .item .leftbox .text3 {
  font-weight: bold;
  font-size: 15px;
  letter-spacing: normal;
}
.list2 .item .leftbox .box2 {
  line-height: 2;
}
.list2 .item .leftbox .box2 .text1 {
  font-size: 10px;
}
.list2 .item .leftbox.flex-box1 {
  display: flex;
}
.list2 .item .leftbox.flex-box1 .box1 {
  margin-right: 20px;
}
.list2 .item .fa-circle-chevron-right,
.list2 .item .fa-key,
.list2 .item .fa-circle-arrow-down {
  color: #60A489;
  font-size: 18px;
}
.list2 .item .icon-gray {
  color: #9B9B9B;
}
.list2 .item:not(:last-child) {
  margin-bottom: 5px;
}
.list2 .item-gray {
  border: 1px solid #727272;
}
.list2 .item.flex-box1 {
  justify-content: flex-start;
}
.list2 .item.flex-box1 .text1 {
  margin-left: 8px;
  font-weight: bold;
  font-size: 18px;
}
.list2 .item-lightgray {
  border: 1px solid #D6D6D6;
  color: #D6D6D6;
}
.list2 .item-purple {
  border: 1px solid #B17F9B;
  color: #B17F9B;
}

.list2.expenses .item {
	padding: 0;
	align-items: normal;
  }
  .list2.expenses .item .content {
	margin-left: 10px;
	width: calc(100% - 5em);
	padding: 5px 0;
  }
  .list2.expenses .item .content span {
	display: inline-block;
	margin-right: 10px;
}

.tag1 {
  background: #60A489;
  color: #FFFFFF;
  padding: 3px 6px;
  font-size: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.tag2 {
  background: #EFEFEF;
  padding: 3px 6px;
  border-radius: 3px;
  font-size: 13px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  letter-spacing: normal;
}

.tag {
  padding: 3px 6px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.tag-green {
  background: #60A489;
  color: #FFFFFF;
}

.tag-gray1 {
  background: #EFEFEF;
  color: #333333;
}

.tag-gray2 {
  background: #CBCBCB;
  color: #FFFFFF;
}

.tag-purple {
  background: #B17F9B;
  color: #FFFFFF;
}

.tag-red {
  background: #FF4747;
  color: #FFFFFF;
}

.tag-border1 {
  border: 1px solid #707070;
  border-radius: 3px;
  background: #FFFFFF;
}

@media screen and (961px <= width) {
  .main-wrapper {
    max-width: 100%;
    margin: 60px auto 0 auto;
  }
  .mypage-section {
    margin-bottom: 6%;
  }
  .pc-width {
    max-width: 1100px;
    margin: 0 auto;
  }
  .mypage-list-item a {
    padding: 2% 4%;
  }
  .list1 .item {
    padding: 10px;
  }
  .list1 .item .item-small1 {
    font-size: 12px;
  }
  .list1 .item.unread::after {
    top: 20px;
    right: 20px;
  }
  .list2 .item {
    padding: 12px 16px;
  }
  .list2 .item .leftbox .box1 .text1 {
    margin-left: 8px;
  }
  .list2 .item:not(:last-child) {
    margin-bottom: 10px;
  }
  .tag1,
  .tag2 {
    font-size: 12px;
  }
  .mypage-visual-bottom {
    padding-top: 1.5%;
    padding-bottom: 1.5%;
  }
}
.profile-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6%;
  margin: 0 auto;
}
.profile-box .labeling {
  display: block;
  background: url(../../img/front/input-img.png) no-repeat center;
  background-size: cover;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  cursor: pointer;
}

.prof-info-cont {
  margin-top: 10px;
  padding: 0 2%;
  font-size: 16px;
}
.prof-info-cont .notice1 {
  font-size: 4.1vw;
}

.prof-info-form {
  margin-top: 3%;
}

.prof-info-list {
  font-size: 16px;
}
.prof-info-list .item .text1 {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 4px;
}
.prof-info-list .item .text2 {
  font-size: 3vw;
  margin-bottom: 4px;
}
.prof-info-list .item .item-row {
  margin-bottom: 5px;
}
.prof-info-list .item:not(:last-child) {
  margin-bottom: 15px;
}
.prof-info-list .box1 {
  margin-top: 35px;
}
.prof-info-list .input-group {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
.prof-info-list .input-group label {
  display: flex;
  align-items: center;
  margin: 0 6px;
}
.prof-info-list .input-group label span {
  padding-left: 4px;
}
.prof-info-list .weekcheck {
  width: auto;
}
.prof-info-list .error-message{
	color: red;
	font-weight: normal;
}

.zipcode {
	width: 25vw;
	min-width: 120px;
}

.zipcodes span {
  margin: 0 5px;
}

.textarea1 {
  height: 18vh;
  font-size: 15px;
}

.prof-item-inner {
  font-size: 13px;
  margin-bottom: 10px;
}
.prof-item-inner .heading1 {
  padding: 2%;
  font-size: 13px;
}
.prof-item-inner .box {
  padding: 4%;
  background: #D6D6D6;
}
.prof-item-inner .box .input-group2 {
  margin-top: 10px;
}
.prof-item-inner .box .input-group2 span {
  font-size: 12px;
}
.prof-item-inner .box .input-group2 .upl-imgbox {
  width: 100%;
}
.prof-item-inner .box .input-group2 .upl-imgbox img {
  width: auto;
  border-radius: 10px;
}
.prof-item-inner .box .input-group2 .upl-box-inner {
  position: relative;
  margin-top: 20px;
}
.prof-item-inner .box .input-group2 .upl-box-inner img {
  width: 100%;
  height: auto;
}
.prof-item-inner .box .input-group2 .upl-box-inner .delete-btn1 {
  position: absolute;
  top: -10px;
  right: -10px;
}
.prof-item-inner .box .input-group2 .upl-box-inner .delete-btn1 img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}
.prof-item-inner .box .box2 {
  margin-top: 10px;
}

.prof-item-inner:last-child {
  margin-bottom: 0;
}

.btn-file {
  display: block;
  width: 100%;
  background: #DEFFF7;
  border: 1px solid #707070;
  border-radius: 5px;
  padding: 0.6rem 1.2rem;
  font-weight: bold;
  text-align: center;
}

@media screen and (961px <= width) {
  .profile-visual-inner .btn-group1 {
    padding: 3%;
  }
  .prof-info-cont {
    margin: 30px auto 20px auto;
  }
  .prof-info-cont .notice1 {
    font-size: 14px;
  }
  .prof-info-form {
    margin-top: 1%;
  }
  .prof-info-list .item .text1 {
    font-size: 15px;
  }
  .prof-info-list .input-group {
    margin-top: 15px;
  }
  .prof-info-list .input-group label {
    margin: 0 15px;
    font-size: 14px;
  }
  .prof-info-list .item .text2 {
    font-size: 14px;
  }
  .textarea1 {
    font-size: 16px;
  }
  .prof-item-inner .heading1 {
    padding: 1%;
    font-size: 14px;
  }
  .prof-item-inner .box {
    padding: 2%;
  }
}
@media screen and (600px <= width < 961px) {
  .prof-info-cont .notice1 {
    font-size: 2.5vw;
  }
  .prof-info-list .item .text1 {
    font-size: 15px;
  }
  .prof-info-list .item .text2 {
    font-size: 1.8vw;
  }
}
.btn-group2 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 2%;
}

.under-heading button {
  margin-top: 0;
  padding-right: 4%;
  padding-left: 4%;
}

.accordion-cont {
  padding: 0 2%;
}

.accordion-box {
  max-width: 100%;
  background-color: #F1F1F1;
  margin-bottom: 5px;
}
.accordion-box summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 8px 16px;
  background-color: #000000;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}
.accordion-box summary::-webkit-details-marker {
  display: none;
}
.accordion-box summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  content: "";
  transition: transform 0.3s;
}
.accordion-box .contents {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 4%;
  color: #333333;
}
.accordion-box .contents .btn-green {
  width: 100%;
  margin-top: 12px;
}

.accordion-box[open] summary::after {
  transform: rotate(225deg);
}
.accordion-box[open] .contents {
  transform: none;
  opacity: 1;
  transition: transform 0.5s, opacity 0.5s;
}

.accordion-list .item .input-group {
  display: block;
}
.accordion-list .item .input-group .heading {
  font-size: 15px;
  font-weight: 500;
}
.accordion-list .item .input-group .input-style1 {
  font-size: 15px;
}
.accordion-list .item .input-group .date-group {
  display: flex;
  align-items: center;
}
.accordion-list .item .input-group .date-group .input-style1 {
  width: auto;
}
.accordion-list .item .input-group .date-group span {
  margin: 0 10px;
  font-size: 15px;
}
.accordion-list .item .input-group .date-group label {
  display: flex;
  align-items: center;
}
.accordion-list .item .input-group .date-group label span {
  margin: 0 0 0 5px;
  font-size: 15px;
}
.accordion-list .item .input-group .date-group label:not(:last-child) {
  margin-right: 20px;
}
.accordion-list .item:not(:last-child) {
  margin-bottom: 12px;
}

.project-list .item .tag.tag-red {
  margin-right: 3px;
  width: 44px;
}
.project-list .item .tag.tag-gray2 {
  margin-right: 3px;
}

.under-heading-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
}
.under-heading-box .under-heading-group .name {
  font-size: 18px;
  line-height: 2;
}

.tablelist1 {
  display: table;
  width: 100%;
  border-bottom: 1px solid #B17F9B;
	margin-bottom:10px;
}
.tablelist1 .ta-item {
  display: table-row;
}
.tablelist1 .ta-item .ta-ttl {
  border-top: 1px solid #B17F9B;
  font-size: 15px;
  color: #FFFFFF;
  background: #DBBACD;
  padding: 15px 7px;
  width: 110px;
  display: table-cell;
  vertical-align: middle;
}
.tablelist1 .ta-item .ta-para {
  border-top: 1px solid #B17F9B;
  font-size: 15px;
  padding: 15px 10px;
  display: table-cell;
  vertical-align: middle;
  width: calc(100% - 110px);
}
.tablelist1 .ta-item .ta-para .ta-inner-btn {
  width: 100%;
  margin-top: 10px;
  display: block;
}
.tablelist1 .ta-item .text1 {
  font-size: 14px;
  margin-top: 15px;
}
.tablelist1 .ta-item .ttl-style1 {
  font-size: 13px;
  padding: 8px;
  background: #B17F9B;
  text-align: center;
  font-weight: 400;
}
.tablelist1 .ta-item .para-style1 {
  background: #E9E9E9;
  width: 70%;
  padding: 8px;
}
.tablelist1 .ta-item .para-style1 input[type=date] {
  width: 100%;
  line-height: 1.37;
}
.tablelist1 .ta-item-style1 {
  border-top: 1px solid #707070;
}
.tablelist1 .item-inner .box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 20px;
}
.tablelist1 .tag-group {
  word-wrap: break-word;
}
.tablelist1 .tag-group .tag.tag-border1:last-child {
  margin-top: 5px;
}
.tablelist1 .last-ta-row {
  border-bottom: 1px solid #B17F9B;
}
.tablelist1 .border-none {
  border: none;
}

.border-none {
  border: none;
}

.btn-map {
  background: #FFFFFF;
  color: #B17F9B;
  font-size: 12px;
  box-shadow: 0px 2px 10px 1px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  padding: 4px 6px;
}
.btn-map .btn-in-img {
  width: 30px;
  height: auto;
  margin-right: 10px;
}
.btn-map .fa-arrow-right {
  margin-left: 15px;
}

.form-cont1 {
  width: 100%;
  padding: 0 2%;
  margin: 0 auto;
}

.list3 {
  margin-top: 12px;
  margin-bottom: 20px;
}
.list3 .item .ttl {
  font-size: 13px;
  padding: 1% 1% 1% 2%;
  background: #F5F5F5;
  border-left: 2px solid #B17F9B;
  font-weight: 500;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list3 .item .ttl.required:after {
  content: '必須';
  background: hsl(0, 100%, 64%);
  border-radius: 2px;
  color: #fff;
  margin-left: 5px;
  font-size: 12px;
  padding: 1px 8px;
}
.list3 .item .box1 {
  display: flex;
  align-items: center;
}
.list3 .item .box1 .s-text {
  display: inline-block;
  margin-left: 5px;
  font-size: 13px;
}
.list3 .item .box1 .label-group:not(:last-of-type) {
  margin-right: 10px;
}
.list3 .item .box1 .label-group input[type=checkbox] {
  width: auto;
}
.list3 .item .box1 .label-group .input-width {
  width: 70%;
  margin-left: 5px;
}
.list3 .item .box-under {
  margin-bottom: 5px;
}
.list3 .item .inner-space1 {
  padding: 0 1rem;
}
.list3 .item .input-style1 {
  font-size: 15px;
}
.list3 .item .box-inner {
  display: flex;
  align-items: center;
}
.list3 .item .box-inner:not(:last-child) {
  margin-bottom: 10px;
}
.list3 .item .s-ttl {
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 13px;
}
.list3 .item .box2 {
  display: flex;
  align-items: center;
}
.list3 .item .box2 .label-group:not(:last-child) {
  margin-right: 10px;
}
.list3 .item .box2 .input-style1 {
  width: auto;
}
.list3 .item .box2 .s-text {
  margin-left: 5px;
  font-weight: 400;
  font-size: 13px;
}
.list3 .item .box2.chk-contents-item.wrap { 
  flex-wrap: wrap;
}
.list3 .item .box2.chk-contents-item .box-scroll {
  width: 100%;
  overflow-x: scroll;
  margin-right: 15px;
}
.list3 .item .box2.chk-contents-item .box-scroll .box-scroll-inner {
  width: 150%;
  display: flex;
}
.list3 .item .box2.chk-contents-item .box-scroll .box-scroll-inner .card {
  width: 50%;
  flex-direction: column;
  flex-shrink: 0;
}
.list3 .item .box2.chk-contents-item .box-scroll .box-scroll-inner .card .input-style1 {
  width: 100%;
}
.list3 .item .text1 {
  font-size: 13px;
  word-wrap: break-word;
  margin-bottom: 15px;
}
.list3 .item .card {
  background: #D6D6D6;
  padding: 4%;
  margin: 2.5%;
  width: 100%;
  position: relative;
}
.list3 .item .card .card-img {
  width: 100%;
  height: 110px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.list3 .item .card .label-group {
  margin-top: 10px;
}
.list3 .item .card .label-group:nth-of-type(1) {
  margin-right: 0;
}
.list3 .item .card:not(:last-child) {
  margin-right: 10px;
}
.list3 .item .card-add {
  background: #D6D6D6;
  padding: 25vw 1.5vw;
  max-height: 35vh;
}
.list3 .item .card-add .fa-circle-plus {
  font-size: 20px;
  color: #AFAFAF;
}
.list3 .item .front-money-box .card-add {
  padding: 31vw 1.5vw;
  max-height: 50vh;
}
.list3 .item .text2 {
  font-size: 13px;
}
.list3 .item .checkbox {
  margin-right: 10px;
}
.list3 .item .right-space {
  margin-right: 8px;
}
.list3 .item .flex-box1 {
  display: flex;
  flex-wrap: wrap;
}
.list3 .item .flex-box1 .flex-box-inner {
  margin-bottom: 5px;
}
.list3 .item .box3 {
  display: flex;
  flex-wrap: wrap;
}
.list3 .item .upl-imgbox {
  width: 100%;
}
.list3 .item .upl-imgbox img {
  width: auto;
  border-radius: 10px;
}
.list3 .item .upl-box-inner {
  position: relative;
  margin-top: 10px;
  margin-bottom: 10px;
}
.list3 .item .upl-box-inner img {
  width: 100%;
  height: auto;
}
.list3 .item .upl-box-inner .delete-btn1 {
  position: absolute;
  top: -12px;
  right: -7px;
}
.list3 .item .upl-box-inner .delete-btn1 img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}
.list3 .item .chk-contents-item {
  margin-top: 15px;
}
.list3 .item:not(:last-child) {
  margin-bottom: 20px;
}
.list3 .label-group {
  display: flex;
  align-items: center;
}
.list3 .bottom-space {
  margin-bottom: 5px;
}
.list3 .item-group .label-group2 {
  display: flex;
}
.list3 .item-group .label-group2 input {
  margin-right: 8px;
}
.list3 .item-group .label-group2 .input2 {
  width: 65%;
}
.list3 .item-wrap {
  padding: 0 3%;
}
.list3 .label-group4 {
  display: flex;
  align-items: center;
}

.list3 .item .img-modal-block {
  display: flex;
  align-items: flex-start;
  overflow-x: auto;
  margin-bottom: 1rem;
}
.img-modal-inner {
  display: flex;
  padding-bottom: 1rem;
}
.img-modal-inner .modal-open-btn {
  min-width: 200px;
  width: calc(25% - 10px);
}
.img-modal-inner .modal-open-btn img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.img-modal-inner .modal-open-btn:not(:last-child) {
  margin-right: 20px;
}

.img-modal-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
}
.img-modal-wrapper .modal-overlay {
  background: rgba(0, 0, 0, 0.8);
  height: 100%;
  cursor: pointer;
}

.img-modal-wrapper .modal-dl-btn {
  position: absolute;
  top: 10%;
  right: 15%;
  transform: translate(-15%, -10%);
  width: 35px;
  height: 35px;
  background-color: transparent;
  color: #fff;
  font-size: 2rem;
  border-radius: 10rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.img-modal-wrapper .modal-close-btn {
  position: absolute;
  top: 10%;
  right: 3%;
  transform: translate(-3%, -10%);
  width: 35px;
  height: 35px;
  background-color: transparent;
  color: #fff;
  font-size: 2rem;
  border-radius: 10rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.img-modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: auto;
}

.img-modal-content img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.modal-open-btn {
  cursor: pointer;
}

.delete-btn1 {
  position: absolute;
  top: -12px;
  right: -7px;
}
.delete-btn1 img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}

input[type=date] {
  width: auto;
  line-height: 1.37;
}

.input-time {
  width: 60px;
  text-align: end;
}

.select-box1 {
  position: relative;
}

.select-box1::after {
  content: "▼";
  position: absolute;
  top: 48%;
  right: 5px;
  transform: translateY(-50%);
  font-size: 8px;
  color: #333333;
}
.select-box1 .select-style1 {
  padding-right: 20px;
}

.input-group-box {
  margin-left: -1px;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: bold;
  color: #333;
  text-align: center;
  white-space: nowrap;
  background: #ECECEC;
  border: 1px solid #707070;
  border-radius: 5px;
}

.none-r-radius {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.none-l-radius {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-style1.input-time {
  line-height: 1.54;
}

@media screen and (961px <= width) {
  .under-heading-box {
    max-width: 1100px;
    width: 100%;
    padding: 20px 0;
  }
  .form-cont1 {
    padding: 0;
  }
  .list3 {
    padding: 2% 0;
    margin: 0 auto 20px auto;
  }
  .list3 .item .card-add {
    padding: 13.8vw 1.5vw;
    max-height: 100%;
  }
  .list3 .item .card-add .fa-circle-plus {
    font-size: 20px;
  }
  .list3 .item .card {
    width: calc(40% - 30px);
  }
  .list3 .item .card .card-img {
    width: 100%;
    height: 280px;
  }
  .list3 .item .inner-space1 {
    padding: 0 2.2rem;
  }
  .list3 .item .front-money-box .card-add {
    padding: 15vw 1.5vw;
    max-height: 100%;
  }
  .list3 .item .box1 .box-scroll .box-scroll-inner {
    width: 130%;
  }
  .list3 .item .upl-box-inner {
    margin-bottom: 10px;
  }
  .list3 .item .upl-box-inner img {
    width: 60%;
    margin: 0 auto;
    position: relative;
  }
  .list3 .item .upl-box-inner .delete-btn1 {
    position: absolute;
    top: -12px;
    right: 210px;
  }
  .delete-btn1 img {
    width: 35px;
    height: 35px;
  }
  .pc-form1 .pc-width {
    padding: 0;
  }
  .pj-list-content .btn-group2.pc-width {
    padding-left: 4%;
    padding-right: 4%;
  }
  .img-modal-inner {
    width: 50%;
  }
  .img-modal-content img {
    width: 60%;
  }
  .img-modal-wrapper .modal-dl-btn {
    top: 10%;
    right: 5%;
    transform: translate(-5%, -10%);
    font-size: 2.3rem;
  }
  .img-modal-wrapper .modal-close-btn {
    top: 10%;
    right: 1%;
    transform: translate(-1%, -10%);
    font-size: 2.3rem;
  }
}
@media screen and (600px <= width < 961px) {
  .form-cont1 {
    padding: 0 3%;
  }
  .list3 .item .card-add {
    padding: 20vw 2vw;
    max-height: 100%;
  }
  .list3 .item .card-add .fa-circle-plus {
    font-size: 20px;
  }
  .list3 .item .card {
    width: calc(40% - 30px);
  }
  .list3 .item .card .card-img {
    width: 100%;
    height: 160px;
  }
  .list3 .item .card:not(:last-child) {
    margin-right: 20px;
  }
  .list3 .item .front-money-box .card-add {
    padding: 23vw 1.5vw;
    max-height: 100%;
  }
  .delete-btn1 {
    right: -15px;
  }
  .delete-btn1 img {
    width: 35px;
    height: 35px;
  }
  .btn-group2 {
    padding: 3% 2%;
  }
  .pj-list-content .btn-group2.pc-width {
    padding-left: 4%;
    padding-right: 4%;
  }
  .img-modal-wrapper .modal-dl-btn {
    top: 10%;
    right: 7%;
    transform: translate(-7%, -10%);
    font-size: 2.3rem;
  }
  .img-modal-wrapper .modal-close-btn {
    top: 10%;
    right: 1%;
    transform: translate(-1%, -10%);
    font-size: 2.3rem;
  }
}
.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  height: auto !important;
  line-height: 1.5;
  width: 100%;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
}
.select2-container .select2-search--inline .select2-search__field {
  margin-top: 7px;
  margin-left: 8px;
  font-size: 15px;
}

.select2-container--default .select2-selection--single {
  background: #FFFFFF;
  border: 1px solid #707070;
  border-radius: 5px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #333333;
  font-size: 15px;
  line-height: 36px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 36px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #333333 transparent transparent transparent;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
  height: 36px;
  color: #333333;
}
.select2-container--default .select2-selection--multiple {
  background: #FFFFFF;
  border: 1px solid #707070 !important;
  border-radius: 5px;
  height: 36.5px;
  cursor: pointer;
  position: relative;
}
.select2-container--default .select2-selection--multiple .select2-selection__clear {
  height: 36px;
  color: #333333;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 8px;
  padding-right: 5px;
}

.fs-regular {
  font-size: 15px;
}

.notice2 {
  margin: 20px auto;
  font-size: 15px;
}

.btn-darkgray {
  font-size: 18px;
  color: #FFFFFF;
  background: #707070;
  padding: 8px 48px;
  border-radius: 5px;
  text-align: center;
}

.list4 .item {
  font-size: 15px;
}
.list4 .item .ttl {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 3px;
}
.list4 .item .text1 {
  font-size: 13px;
  margin-bottom: 5px;
}
.list4 .item .box1 {
  display: flex;
  align-items: center;
}
.list4 .item .label-group {
  display: flex;
  align-items: center;
}
.list4 .item .right-space {
  margin-right: 8px;
}
.list4 .item:not(:last-child) {
  margin-bottom: 16px;
}

input:disabled,
select:disabled,
textarea:disabled {
  border: 1px solid #707070;
  background: #D6D6D6;
  color: #333333;
  opacity: 1;
}

.end-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 2% 2% 0 2%;
}
.end-box button {
  padding: 8px 16px;
}

.handover-img {
  border-radius: 10px;
}

@media screen and (961px <= width) {
  .end-box {
    padding: 2% 0 0 0;
  }
  .handover-section {
    padding: 2% 0;
  }
  .pc-wrapper1 {
    padding: 0;
  }
  .handover-img {
    max-width: 70%;
    margin: 0 auto;
  }
  .tablelist1 .ta-item .para-style1 {
    width: 90%;
  }
}
@media screen and (600px <= width < 961px) {
  .handover-section {
    padding: 3% 0;
  }
  .tablelist1 .ta-item .para-style1 {
    width: 620px;
    max-width: 100%;
  }
}
.under-heading-txtbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 35px auto;
}
.under-heading-txtbox .text1 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}
.under-heading-txtbox .text2 {
  font-size: 15px;
}

.handover-section2 {
  padding-bottom: 4%;
}

.btn-width {
  width: 100%;
  display: block;
}

.input-width {
  width: 100px;
}

input[type=text]::-moz-placeholder, textarea::-moz-placeholder {
  color: #D6D6D6;
}

input[type=text]::placeholder,
textarea::placeholder {
  color: #D6D6D6;
}

.list-space1 {
  margin-bottom: 20px;
}

.space2 {
  margin-top: 3%;
}

.qr-cont .box {
  width: 100%;
  padding: 4%;
  margin: 0 auto;
  text-align: center;
}
.qr-cont .box .qr-img {
  width: 55%;
  max-width: 80%;
  margin: 0 auto;
}
.qr-cont .box .heading {
  font-size: 22px;
}
.qr-cont .box ol {
  width: 50%;
  margin: 15px auto 0 auto;
  text-align: left;
}
.qr-cont .box ol li {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.border-bottom {
  border-bottom: 1px solid #707070;
}

@media screen and (961px <= width) {
  .qr-cont .box {
    padding: 2%;
  }
  .qr-cont .box .qr-img {
    width: 18%;
    max-width: 25%;
  }
  .qr-cont .box .heading {
    max-width: 1100px;
    text-align: center;
    margin: 0 auto;
  }
  .qr-cont .box ol {
    width: 12%;
    max-width: 1100px;
    margin-top: 20px;
  }
}
@media screen and (600px <= width < 961px) {
  .qr-cont .box {
    padding: 2%;
  }
  .qr-cont .box .qr-img {
    width: 35%;
    max-width: 45%;
  }
  .qr-cont .box ol {
    width: 25%;
  }
}
.space3 {
  margin-bottom: 15px;
}

.circle {
  background: #FFFFFF;
  padding: 7%;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.circle .text1 {
  font-size: 12px;
}
.circle .text2 {
  font-size: 26px;
  font-weight: bold;
}

.tag5 {
  padding: 3px 6px;
  background: #CBCBCB;
  color: #FFFFFF;
  font-size: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.88);
  padding: 2%;
  z-index: 100;
  overflow: auto;
  display: none;
  box-sizing: border-box;
}

.modal-wrapper::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 500px;
  width: 90%;
}

.modal-content {
  background: #FFFFFF;
  border-radius: 10px;
  text-align: left;
  padding: 8%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translate(0, 20%);
}

.modal-form1 > label {
	display: block;
	margin-bottom: 10px;
  }
  .modal-form1 .file-upload-label {
	display: block;
	background: #eee;
	text-align: center;
	font-weight: bold;
	padding: 10px;
	border: 1px solid #ccc;
	color: #999;
	border-radius: 5px;
  }
  .modal-form1 .file-upload-label span {
	font-size: 12px;
  }
  .modal-form1 .file-upload-label input[type=file] {
	display: none;
  }
  .modal-form1 .upload-images {
	margin-top: 10px;
	display: flex;
	flex-wrap: wrap;
  }
  .modal-form1 .upload-images .upload-image {
	padding: 5px;
	position: relative;
  }
  .modal-form1 .upload-images .upload-image img {
	width: 130px;
	height: 130px;
	-o-object-fit: cover;
	   object-fit: cover;
  }
  .modal-form1 .upload-images .upload-image .btn-close {
	position: absolute;
	right: 5px;
	top: 5px;
	width: 25px;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: red;
	cursor: pointer;
  }

.modal-form1 .label-group .heading {
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 3px;
}

.modal-form1 .label-group.input-price {
  width: 100%;
  display: block;
  display: flex;
}
.modal-form1 .modal-label-group {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.modal-form1 .modal-label-group .labels1 {
  display: flex;
  align-items: center;
}
.modal-form1 .modal-label-group .labels1 input {
  width: auto;
  margin-right: 5px;
}
.modal-form1 .modal-label-group .labels1 span {
  font-size: 15px;
}
.modal-form1 .modal-label-group .labels1:first-child {
  margin-right: 15px;
}
.modal-form1 input[type=date] {
  width: 100%;
  font-size: 18px;
  font-weight: bold;
}

.modal-btn-group {
  width: 100%;
  margin-top: 20px;
}

*[data-toggle=modal] {
	cursor: pointer;
}

/* 
  .modal-btn-group button:first-child {

  下記の「.modal-btn-group a {」では、フロント画面のモーダルの機能を実装する時、リンクからボタンに置き換わるので、デザイン崩れが発生する可能性があります。
  デザイン崩れが発生した場合は、上記の「.modal-btn-group button:first-child {」に置き換えてください。
*/
.modal-btn-group a,
.modal-btn-group .mb
{
  margin-bottom: 8px;
}

@media screen and (961px <= width) {
  .space3 {
    margin-bottom: 30px;
  }
}
@media screen and (600px <= width < 961px) {
  .space3 {
    margin-bottom: 25px;
  }
}
.btn-gray {
  background: #E6E6E6;
  border: 1px solid #707070;
  color: #333333;
}

.form-trialapp .input-width {
  width: 60px;
}
.form-trialapp .input-width2 {
  width: 100px;
}
.form-trialapp .input-width3 {
  width: 80%;
}
.form-trialapp .zipcodes .s-text {
  display: inline-block;
  font-size: 15px;
  margin-right: 3px;
}
.form-trialapp .zipcodes span {
  font-size: 15px;
}
.form-trialapp .zipcodes .zipcode {
  width: 22vw;
}
.form-trialapp .zipcodes.flex-box {
  margin-bottom: 12px;
}
.form-trialapp .btn-gray {
  font-size: 13px;
  padding: 7px 10px;
  margin-left: 10px;
}
.form-trialapp .flex-box {
  margin-bottom: 8px;
}
.form-trialapp .mb-0 {
  margin-bottom: 0;
}
.form-trialapp .s-text2 {
  margin-left: 2px;
}
.form-trialapp .label-group2 {
  display: inline-flex;
  align-items: center;
}
.form-trialapp .label-group2 input[type=date] {
  width: 100%;
  line-height: 1.37;
}
.form-trialapp .item-inner-space {
  margin-right: 10px;
}
.form-trialapp .item-inner-bottom {
  margin-bottom: 8px;
}
.form-trialapp .label-group3 {
  display: flex;
  align-items: center;
  margin-top: 8px;
}
.form-trialapp .label-group3 input[name=tr-radio3-t2] {
  width: 280px;
  margin-left: 5px;
}

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

.flex-space-between {
  justify-content: space-between;
}

.flex-space-center {
  justify-content: center;
}

.wrapper2 {
  margin-top: 50px;
}

.heading2 {
  font-size: 30px;
  font-weight: bold;
}

.w-auto {
  width: auto;
}

.w-max {
  width: 100%;
}

.sp-label-width {
  width: 100%;
}
.sp-label-width .select-box1 {
  width: 40%;
}

.section-inner-wrapper {
  padding: 6%;
}

.num-block {
  color: #60A489;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.num-block .heading {
  font-size: 13px;
}
.num-block .texts {
  font-size: 40px;
  font-weight: bold;
}
.num-block .texts small {
  margin-left: 5px;
  font-size: 20px;
}
.upl-img-box .btn-del .del-img {
	width: 60%;
}
.front-image-layout {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}
.select-image-list.front-image-layout {
  margin-top: 16px;
}
.front-image-layout img {
  width: 200px;
}
.front-image-layout .upl-img-box .btn-del .del-img {
  width: 28px;
  height: 28px;
}
.front-image-layout .select-image-item,
.front-image-layout .select-image-list-item {
  position: relative;
}
.select-image.front-image-layout .btn-del,
.select-image-list.front-image-layout .btn-del {
  position: absolute;
  background: none;
  top: -15px;
  right: -15px;
}
.list3 .item-ddi .label-group2 {
  display: block;
}
.list3 .item-ddi .label-group3 {
  width: 100%;
  display: block;
  margin-top: auto;
}
.list3 .item-ddi .label-group3 input[type=text] {
  margin-top: 3px;
  width: 100%;
}

.form-trialapp .label-group-style2 {
  width: 100%;
}
.form-trialapp .label-group-style1 .input-style1 {
  width: auto;
  margin-left: 10px;
}
.form-trialapp .label-group-style1 span {
  width: 60px;
  margin-left: 5px;
}
.form-trialapp .label-group-style2 input[data-desired=first] {
  width: auto;
  margin-bottom: 8px;
}
.form-trialapp .label-group-style2 .select-box1 {
  width: 68%;
}
.form-trialapp .label-group-style2 span {
  padding-left: 5px;
  padding-right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
[type="submit"][disabled] {
  background-color: #aaaaaa;
}

@media screen and (961px <= width) {
  .section-inner-wrapper {
    padding: 30px;
  }
  .space-right {
    padding-right: 10%;
  }
  .pc-pb {
    padding-bottom: 4%;
  }
  .form-trialapp .input-width3 {
    width: 93%;
  }
  .pc-block {
    display: block;
  }
  .pc-label-width {
    width: 25.3%;
  }
  .pc-label-width .select-box1 {
    width: 65%;
  }
  .form-trialapp .label-group-style2 input[data-desired=first] {
    margin-right: 10px;
  }
  .form-trialapp .label-group-style2 .select-box1 {
    width: 22%;
  }
}
@media screen and (600px <= width < 961px) {
  .section-inner-wrapper {
    padding: 3%;
  }
  .space-right {
    padding-right: 10%;
  }
  .form-trialapp .input-width3 {
    width: 90%;
  }
}
.label-group.before-text::before {
  content: attr(data-text);
  background: #ECECEC;
  color: #333;
  font-size: 13px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 1rem;
  border-radius: 5px 0 0 5px;
  border: 1px solid #707070;
  white-space: nowrap;
  border-right: none;
  text-align: center;
  line-height: 1.6;
}

.label-group.after-text::after {
  content: attr(data-text);
  background: #ECECEC;
  color: #333;
  font-size: 13px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 1rem;
  border-radius: 0 5px 5px 0;
  border: 1px solid #707070;
  white-space: nowrap;
  border-left: none;
  text-align: center;
  line-height: 1.6;
}

.handover-section {
  padding-bottom: 2%;
}

.margin-bottom {
	margin-bottom: 30px;
}
.client-name-wrap,
.input-style1.client_name {
	width: 50%;
}
.client-name-wrap:not(:last-child),
.input-style1.client_name:not(:last-child) {
	margin-right: 10px;
}
.MunicipalPlanItem:not(:first-child) > .label-group2.item-inner-space {
  padding-top: 10px;
}
.client-name-group {
  display: flex;
  flex-direction: row;
}
.modal-btn-group button:first-child {
  margin-bottom: 8px;
}

@media screen and (width < 961px) {
	.client-name-wrap,
	.input-style1.client_name {
		width: 100%;
	}
	.input-style1.client_name:not(:last-child) {
		margin-right: 0;
		margin-bottom: 0.5rem;
	}
}


/* ************************** エラーメッセージ */
.error-message{
	color: red;
	font-weight: normal;
}
/* ************************ //エラーメッセージ */

.other-text:not(:empty)::before{
	content:'：';
	margin-right:0.2rem;
}

/* select2の縦幅調整 shu takahashi */
.select2-container--default .select2-selection--single {
  height: calc(2.25rem + 2px);
}

.ajax-loading,
.btn-ajax-loading[disabled]{
	user-select: none;
	background-color:#aaa;
}
.ajax-loading .ajax-loader::before,
.btn-ajax-loading[disabled]::before{
	content: "\f1ce";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	-webkit-animation: fa-spin 2s linear infinite;
	animation: fa-spin 2s linear infinite;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	margin-right:2px;
}
.item-notification[data-url=""]:not(.unread){
	cursor:auto;
}

.advance_payment_img{
  margin: 0 auto 20px auto;
  width: 50%;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.advance_payment_img div{
  font-size: 20px;
}

.input-server-error{
	color:red;
	margin:0.1em 0;
  font-size: 13px;
}
.input-server-error::before{
	font-family: 'Font Awesome 5 free';
	font-weight: 600;
	content: "\f071";
	margin-right:0.2em;
}

/* 複数のフラッシュメッセージがある場合DOMが重なって
表示されるため、position: relativeを設定しています */
.message-wrapper .message{
	position: relative;
}

[type="date"], [type="datetime-local"]{
  -webkit-appearance: none;
  appearance: none;
  -moz-appearance: none;
  font-size: 16px;
  padding: 8px;
  height: 40.5px;
  width: 100%;
  min-width: 110px;  
}

.qualification-item .ta-item .ta-ttl {
  width: 20%;
}