@charset "UTF-8";

/*CSSDocument*/


/* html body base
===============================================================*/


/*
html ----------------------------------------------------------*/

*{ margin:0px; padding:0px;}

body{
  color:#000000;
  margin:0;
  padding:0;
  background:#FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  text-align:center;
  font-size:100%;
  -webkit-text-size-adjust: none;
  position:relative;
  letter-spacing: 0.1em;
}

a:link,
a:visited,
a:hover,
a:active { color:#000;text-decoration:none;}

ul{ list-style:none;}

img {
  padding:0px;
  margin:0px;
  vertical-align:bottom;
  max-width: 100%;
  height: auto;
}
a {
  transition: all 0.5s ease-out;
}
a:hover {
  opacity:0.7;
}

/*
html ----------------------------------------------------------*/



/* body base
===============================================================*/

.l-wrap {
  padding: 100px 0 0 0;
}

.l-inner {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 40px;
}
.l-contents {
  padding: 100px 0;
}

@media screen and (max-width: 960px) {
  .l-wrap {
    padding: 80px 0 0 0;
  }
}
@media screen and (max-width: 768px) {
  .l-wrap {
    padding: 60px 0 0 0;
  }
  .l-inner {
    padding: 0 20px;
  }
  .l-contents {
    padding: 70px 0;
  }

}


.l-header {
  background: #000;
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
}
.l-headerWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  box-sizing: border-box;
  padding: 0 40px;
}
.l-headerLogo {
  max-width: 80px;
}
.l-headerContents {
  
}
.l-headerContentsInner {
  
}
.l-headerMenuBtn {
  display: none;
}
@media screen and (max-width: 960px) {
  .l-header {
  }
  .l-headerWrap {
    height: 80px;
    padding: 0 40px;
  }
  .l-headerLogo {
    max-width: 60px;
  }
  .l-headerContents {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    z-index: 10000;
    height: calc(100vh - 80px);
    background: rgba(0,0,0,0.9);
    display: none;
  }
  .l-headerContentsInner {
    
  }
  .l-headerMenuBtn {
    display : flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0px;
    right: 0px;
    background: none;
    height: 80px;
    width: 80px;
    cursor: pointer;
    z-index: 10000;
  }
  .l-headerMenuBtnInner,
  .l-headerMenuBtnInner span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }
  .l-headerMenuBtnInner {
    position: relative;
    width: 28px;
    height: 22px;
    background: none;
    border: none;
    appearance: none;
  }
  .l-headerMenuBtnInner span {
    position: absolute;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
  }
  .l-headerMenuBtnInner span:nth-of-type(1) {
    top: 0;
  }
  .l-headerMenuBtnInner span:nth-of-type(2) {
    top: 11px;
  }
  .l-headerMenuBtnInner span:nth-of-type(3) {
    bottom: 0;
  }
  .l-headerMenuBtn.is-open .l-headerMenuBtnInner span:nth-of-type(1) {
    transform: translateY(11px) rotate(-45deg);
  }
  .l-headerMenuBtn.is-open .l-headerMenuBtnInner span:nth-of-type(2) {
    opacity: 0;
  }
  .l-headerMenuBtn.is-open .l-headerMenuBtnInner span:nth-of-type(3) {
    transform: translateY(-11px) rotate(45deg);
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
  }
  .l-headerWrap {
    height: 60px;
    padding: 0 20px;
  }
  .l-headerLogo {
    max-width: 50px;
  }
  .l-headerContents {
    top: 60px;
    height: calc(100vh - 60px);
  }
  .l-headerContentsInner {
    
  }
  .l-headerMenuBtn {
    height: 60px;
    width: 60px;
  }
  .l-headerMenuBtnInner {
    width: 24px;
    height: 20px;
  }
  .l-headerMenuBtnInner span {
    height: 2px;
  }
  .l-headerMenuBtnInner span:nth-of-type(1) {
    top: 0;
  }
  .l-headerMenuBtnInner span:nth-of-type(2) {
    top: 9px;
  }
  .l-headerMenuBtnInner span:nth-of-type(3) {
    bottom: 0;
  }
  .l-headerMenuBtn.is-open .l-headerMenuBtnInner span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
  }
  .l-headerMenuBtn.is-open .l-headerMenuBtnInner span:nth-of-type(2) {
    opacity: 0;
  }
  .l-headerMenuBtn.is-open .l-headerMenuBtnInner span:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
    width: 100%;
  }
}

.l-gNav {
  
}
.l-gNavList {
  display: flex;
}
.l-gNavList li {
  
}
.l-gNavList li a {
  display: flex;
  align-items: center;
  height: 100px;
  color: #FFF;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  padding: 0 20px;
}

@media screen and (max-width: 960px) {
  .l-gNav {
  }
  .l-gNavList {
    display: block;
  }
  .l-gNavList li {
    border-bottom: #EEE 1px solid;
  }
  .l-gNavList li a {
    display: block;
    height: auto;
    font-size: 16px;
    padding: 15px 40px 15px 20px;
    text-align: left;
    position: relative;
  }
  .l-gNavList li a:before {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 10px;
    content: '';
    vertical-align: middle;
    box-sizing: border-box;
    width: 4px;
    height: 4px;
    border: 4px solid transparent;
    border-left: 6px solid #FFF;
    z-index: 10;
  }
}




.l-footer {
  border-top: #000 3px solid;
}
.l-footerWrap {
  padding: 100px 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: content-box;
}
.l-footerFrame {
  display: flex;
  justify-content: space-between;
}
.l-footerUpper {
}
.l-footerLower {
}
.l-footer__logo {
  max-width: 230px;
  text-align: left;
  margin-bottom: 30px;
}
.l-footer__adress {
  text-align: left;
  font-size: 16px;
  line-height: 1.67;
  font-weight: 500;
}
.l-footer__adress a {
  color: #000;
}
.l-footerMenuList {
  text-align: left;
  font-family: "Roboto", sans-serif;
}
.l-footerMenuList li:nth-of-type(n + 2) {
  margin-top: 10px;
}
.l-footerMenuList li a {
  position: relative;
  display: block;
  padding: 0 0 0 16px;
}
.l-footerMenuList li a:before {
  position: absolute;
  top: 3px;
  margin: auto;
  left: 0;
  content: '';
  vertical-align: middle;
  box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 6px solid #000;
  z-index: 10;
}

.l-footerCopy {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .l-footer {
    border-top: #000 2px solid;
  }
  .l-footerWrap {
    padding: 50px 20px 20px;
  }
  .l-footerFrame {
    display: block;
  }
  .l-footerUpper {
  }
  .l-footerLower {
    margin-top: 30px;
  }
  .l-footer__logo {
    max-width: 180px;
    text-align: left;
    margin: 0 auto 20px;
  }
  .l-footer__adress {
    font-size: 14px;
    line-height: 1.67;
  }
  .l-footerMenuList {
  }
  .l-footerMenuList li:nth-of-type(n + 2) {
    margin-top: 10px;
  }
  .l-footerMenuList li a {
    padding: 0 0 0 16px;
  }
  .l-footerMenuList li a:before {
    top: 3px;
    width: 4px;
    height: 4px;
    border: 4px solid transparent;
    border-left: 6px solid #000;
    z-index: 10;
  }

  .l-footerCopy {
    font-size: 10px;
    margin-top: 50px;
  }
}



.c-pageHead {
  background-color: #000;
  padding: 0;
  position: relative;
  text-align: left;
  box-sizing: border-box;
  background-image: url("../images/head01a.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.c-pageHead:before {
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  top :0;
  left: 0;
  position: absolute;
  z-index: 2;
  background: rgba(0,0,0,0.3);
}
.c-pageHeadInner {
  display : flex;
  align-items: center;
  padding: 40px 0px 40px;
  box-sizing: border-box;
  height: 250px;
  z-index: 10;
  position: relative;
}
.c-pageHeadFrame {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 40px;
}
.c-pageHead__title {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.1em;
  position: relative;
  padding: 0 0 0 0;
  color: #FFF;
  text-align: left;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .c-pageHead {
  }
  .c-pageHeadInner {
    padding: 40px 0px 40px;
    height: 150px;
  }
  .c-pageHeadFrame {
    padding: 0 20px;
  }
  .c-pageHead__title {
    font-size: 24px;
  }
}



.c-pankuzu {
  padding: 25px 40px 22px;
  background: #eee;
}
.c-pankuzuInner {
  max-width: 1200px;
  box-sizing: content-box;
  margin: 0 auto;
}
.c-pankuzuList {
  display : flex;
  flex-wrap: wrap;
}
.c-pankuzuList__item {
  font-size: 15px;
  line-height: 1.3;
  text-align: left;
  margin-right: 11px;
  margin-bottom: 4px;
  position: relative;
  font-weight: 500;
}
.c-pankuzuList__item + .c-pankuzuList__item {
  margin-left: 18px;
}
.c-pankuzuList__item:before {
  position: absolute;
  top: 9px;
  left: -19px;
  content: "";
  width: 10px;
  height: 1px;
  background: #000;
}
.c-pankuzuList__item:first-child:before {
  display: none;
}
.c-pankuzuList__item:last-child {
  margin-right: 0;
}
.c-pankuzuList__item a {
  display: inline-block;
  position: relative;
  color: #000;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .c-pankuzu {
    padding: 15px 20px 12px;
  }
  .c-pankuzuList__item {
    font-size: 12px;
    margin-right: 11px;
    margin-bottom: 4px;
  }
  .c-pankuzuList__item + .c-pankuzuList__item {
    margin-left: 18px;
  }
  .c-pankuzuList__item:before {
    top: 9px;
    left: -19px;
    width: 10px;
  }
  .c-pankuzuList__item a {
  }
}



.c-body {
  font-size: 16px;
  line-height: 1.875;
  text-align: left;
  font-weight: 500;
}
.c-body p {
  margin: 0 0 20px 0;
}
.c-body p strong {
}
.c-body p a {
  text-decoration: underline;
}
.c-body * + p {
  margin-top: 1.5em;
}
.c-body * + figcaption {
  margin-top: 1.5em;
}
.c-body * + figure {
  margin-top: 1.5em;
}
.c-body h2 {
  font-size: 30px;
  line-height: 1.4;
  text-align: left;
  border-bottom: #000 1px solid;
  padding: 0 0 15px 0;
  margin-bottom: 25px;
}
.c-body * + h2 {
  margin-top: 60px;
}
.c-body h3 {
  font-size: 26px;
  line-height: 1.5;
  text-align: left;
  margin-bottom: 22px;
  position: relative;
  padding: 7px 20px 8px 20px;
  background: #eee;
}
.c-body * + h3 {
  margin-top: 60px;
}
.c-body h2 + h3 {
  margin-top: 30px;
}
.c-body h4 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
  text-align: left;
  position: relative;
  padding: 0 0 2px 18px;
  border-left: #000 5px solid;
}
.c-body * + h4 {
  margin-top: 30px;
}
.c-body h2 + h4 {
  margin-top: 20px;
}
.c-body h3 + h4 {
  margin-top: 20px;
}
.c-body h5 {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  text-align: left;
}
.c-body h5 + * {
  margin-top: 10px;
}
.c-body * + h5 {
  margin-top: 20px;
}
.c-body ol {
  margin-left: 1.5em;
}
.c-body * + ol {
  margin-top: 1.5em;
}
@media screen and (max-width: 768px) {
  .c-body {
    font-size: 14px;
  }
  .c-body p {
    margin: 0 0 20px 0;
  }
  .c-body * + p {
    margin-top: 1.5em;
  }
  .c-body * + figcaption {
    margin-top: 1.5em;
  }
  .c-body * + figure {
    margin-top: 1.5em;
  }
  .c-body h2 {
    font-size: 22px;
    border-bottom: #000 1px solid;
    padding: 0 0 15px 0;
    margin-bottom: 25px;
  }
  .c-body * + h2 {
    margin-top: 60px;
  }
  .c-body h3 {
    font-size: 20px;
    margin-bottom: 22px;
    padding: 7px 15px 8px 15px;
  }
  .c-body * + h3 {
    margin-top: 40px;
  }
  .c-body h2 + h3 {
    margin-top: 30px;
  }
  .c-body h4 {
    font-size: 18px;
    padding: 0 0 2px 15px;
    border-left: #000 4px solid;
  }
  .c-body * + h4 {
    margin-top: 30px;
  }
  .c-body h2 + h4 {
    margin-top: 20px;
  }
  .c-body h3 + h4 {
    margin-top: 20px;
  }
  .c-body h5 {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    text-align: left;
  }
  .c-body h5 + * {
    margin-top: 10px;
  }
  .c-body * + h5 {
    margin-top: 20px;
  }
  .c-body h2 + p ,
  .c-body h3 + p ,
  .c-body h4 + p ,
  .c-body h5 + p {
    margin-top: 1em;
  }
  .c-body ol {
    margin-left: 1.5em;
  }
  .c-body * + ol {
    margin-top: 1.5em;
  }
}

@media screen and (min-width: 782px) {
	.p-pageLower.is-news .wp-block-group {

	}
	.p-pageLower.is-news .wp-block-columns .wp-block-column:nth-of-type(1) {
		flex-basis: 260px !important;
	}
	.p-pageLower.is-news .wp-block-columns .wp-block-column:nth-of-type(2) {
		flex-basis: calc(100% - 290px) !important;
	}
}





.c-form {
  border-top: 1px solid #000;
}
.c-formItem {
  display: flex;
}
.c-formItemHead {
  font-size: 16px;
  line-height: 1.75;
  width: 250px;
  padding: 23px 21px 20px 20px;
  box-sizing: border-box;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  border-left: 1px solid #000;
  background: #f0f0f1;
}
.c-formItemHeadInner {
  position: relative;
  text-align: left;
  padding: 0 54px 0 0;
  font-weight: bold;
}
.c-formItemHeadInner.is-required:before {
  width: 36px;
  height: 20px;
  font-size: 10px;
  line-height: 1;
  position: absolute;
  margin: auto;
  top: 2px;
  bottom: 0;
  right: 0;
  display : flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 0 0 1px 0;
  font-weight: bold;
  content: '必須';
  background: #d63435;
  border: #d63435 1px solid;
  color: #FFF;
}
.c-formItemContent {
  padding: 15px 20px 15px 20px;
  font-size: 16px;
  line-height: 1.75;
  width: calc(100% - 250px);
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  box-sizing: border-box;
}
.c-formItemContentInner {
  
}
.c-formItemContentName {
  display : flex;
  align-items: center;
}
.c-formItemContentName__input {
  width: calc(50% - 10px);
  max-width: 300px;
}
.c-formItemContentName__input + .c-formItemContentName__input {
  margin-left: 20px;
}

.c-formItemContentNameKana {
  display : -webkit-box;
  display : -webkit-flex;
  display : -ms-flexbox;
  display : flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.c-formItemContentNameKana__tag {
  text-align: left;
}
.c-formItemContentNameKana__tag.is-sei {
  width: 44px;
}
.c-formItemContentNameKana__tag.is-mei {
  width: 64px;
  box-sizing: border-box;
  padding-left: 20px;
}
.c-formItemContentNameKana__input {
  width: calc(50% - 45px);
  max-width: 300px;
}



.c-form input[type=text] ,
.c-form input[type=email] ,
.c-form input[type=tel] {
  width: 100%;
  box-sizing: border-box;
  height: 45px;
  border: #CCC 1px solid;
  padding: 5px 10px;
  outline: none;
  font-size: 18px;
  display: block;
}
.c-form input[type=text]:read-only {
  height: 45px;
  border: none;
  padding: 5px 0;
  color: #303030;
}
.c-form textarea {
  width: 100%;
  box-sizing: border-box;
  height: 250px;
  border: #CCC 1px solid;
  padding: 15px 10px;
  outline: none;
  font-size: 16px;
  line-height: 1.75;
}
.c-formItemContent__txt {
  text-align: left;
  margin-bottom: 12px;
}
.c-formItemContent__txt a {
  color: #178cff;
  text-decoration: underline;
  margin-right: 5px;
}
.c-formItemContent__txt a[target="_blank"]:after {
  content: '';
  display: inline-block;
  background: url("../images/common/icon-blank.png") no-repeat center center;
  background-size: 15px;
  width: 15px;
  height: 15px;
  margin-left: 5px;
}
.c-formItemContent__check {
  text-align: left;
}
.c-form__check {
  display: inline-block;
  cursor: pointer;
  text-align: left;
}
.c-form__check .wpcf7-list-item {
  margin-right: 20px;
}
.c-form__check label {
  cursor: pointer;
}
.c-form__check label > input {
  display: none;
}
.c-form__check label > span {
  display: inline-block;
  position: relative;
  font-size: 16px;
  line-height: 1.7;
  padding: 7px 0 7px 36px;
  font-weight: 500;
}
.c-form__check label > span:before ,
.c-form__check label > span:after {
  content: '';
  position: absolute;
  margin: auto;
  top: 2px;
  bottom: 0;
}
.c-form__check label > span:before {
  left: 0;
  border: #CCC 1px solid;
  width: 22px;
  height: 22px;
  box-sizing: border-box;
  background: #FFF;
}
.c-form__check label > span:after {
  left: 8px;
  width: 4px;
  height: 9px;
  border-right: #FFF 2px solid;
  border-bottom: #FFF 2px solid;
  opacity: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  bottom: 3px;
}
.c-form__check label > input:checked + span:after {
  opacity: 1;
}
.c-form__check label > input:checked + span:before {
  border-color: #d63435;
  background: #d63435;
}
.c-form__check.is-required {
  padding-right: 45px;
  position: relative;
}
.c-form__check.is-required:before {
  width: 36px;
  height: 20px;
  font-size: 10px;
  line-height: 1;
  position: absolute;
  margin: auto;
  top: 2px;
  bottom: 0;
  right: 0;
  display : -webkit-box;
  display : -webkit-flex;
  display : -ms-flexbox;
  display : flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  box-sizing: border-box;
  padding: 0 0 1px 0;
  font-weight: bold;
  content: '必須';
  background: #c31212;
  border: #c31212 1px solid;
  color: #FFF;
}

.c-formSubmit {
  margin-top: 60px;
}
.c-formSubmit input[type="submit"] {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  display : flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  line-height: 1.3;
  color: #FFF;
  background: #000;
  font-weight: bold;
  height: 60px;
  padding: 5px 36px 7px;
  box-sizing: border-box;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  cursor: pointer;
}
.c-formItemContentZip input[type=text] {
  max-width: 300px;
}

.c-formSelect {
  position: relative;
  display: block;
}
.c-formSelect:before {
position: absolute;
  top: 9px;
  right: 15px;
  bottom: 0;
  margin: auto;
  content: '';
  vertical-align: middle;
  box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-top: 7px solid #504f4f;
  z-index: 15;
}
.c-formSelect select {
  -webkit-appearance:none;
  border: #CCC 1px solid;
  height: 45px;
  width: 100%;
  box-sizing: border-box;
  display: block;
  padding: 5px 10px;
  line-height: 30px;
  outline: none;
  background: #FFF;
  cursor: pointer;
  font-size: 16px;
}
.c-formSelect select::-ms-expand {
    display: none;
}

.c-formAgree {
  margin-top: 40px;
}
.c-formAgreeCheck {
  margin-bottom: 25px;
}
.c-formAgree__txt {
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
}
.c-formAgree__txt a {
  color: #000;
  text-decoration: underline;
}

.c-formAgreeDoc {
  font-size: 16px;
  line-height: 1.875;
  text-align: left;
  border: #ccc 1px solid;
  margin-top: 50px;
}
.c-formAgreeDoc__title {
  background: #DDD;
  text-align: center;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
}
.c-formAgreeDocInner {
  padding: 30px 40px;
}
.c-formAgreeDoc .c-formAgreeCheck {
  text-align: center;
  margin-bottom: 0;
  margin-top: 30px;
}

.c-formItemContentFiles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  height: 40px;
}
.c-formItemContentFiles + .c-formItemContentFiles {
  margin-top: 7px;
}
.c-formItemContentFiles input[type="file"] {
  display: none;
}
.c-formItemContentFiles label {
  border: none;
  height: 40px;
  width: 140px;
  box-sizing: border-box;
  padding: 5px 10px;
  line-height: 1.3;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #FFF;
  cursor: pointer;
  transition: all 0.5s ease-out;
  margin-right: 15px;
  border-radius: 5px;
  font-weight: 500;
}
.c-formItemContentFiles label:hover {
  opacity: 0.7;
}
.c-formItemContentFiles__txt {
  font-size: 16px;
  line-height: 1.4;
}

.c-formItemContentFilesItem:nth-of-type(n + 2) {
  display: none;
  margin-top: 5px;
}
.c-formItemContentFilesAdd {
  
}

@media screen and (max-width: 768px) {
  .c-form {
  }
  .c-formItem {
    display: block;
  }
  .c-formItemHead {
    font-size: 16px;
    width: 100%;
    padding: 10px 15px 10px 15px;
    border-bottom: none;
    text-align: left;
  }
  .c-formItemHeadInner {
    padding: 0 54px 0 0;
    display: inline-block;
  }
  .c-formItemContent {
    padding: 15px 15px 15px 15px;
    font-size: 16px;
    width: 100%;
    border-left: 1px solid #000;
  }
  .c-formItemContentInner {
  }
  .c-formItemContentName {
    display : flex;
    align-items: center;
  }
  .c-formItemContentName__input {
    width: calc(50% - 5px);
  }
  .c-formItemContentName__input + .c-formItemContentName__input {
    margin-left: 10px;
  }



  .c-form input[type=text] ,
  .c-form input[type=email] ,
  .c-form input[type=tel] {
    height: 40px;
    font-size: 16px;
  }
  .c-form input[type=text]:read-only {
    height: 40px;
  }
  .c-form textarea {
    height: 200px;
    padding: 15px 10px;
    font-size: 16px;
    line-height: 1.75;
  }
  .c-formItemContent__txt {
    margin-bottom: 12px;
  }
  .c-formItemContent__check {
  }
  .c-form__check {
  }
  .c-form__check .wpcf7-list-item {
    margin-right: 20px;
  }
  .c-form__check label {
  }
  .c-form__check label > input {
  }
  .c-form__check label > span {
    font-size: 15px;
    line-height: 1.7;
    padding: 7px 0 7px 36px;
  }
  .c-form__check label > span:before ,
  .c-form__check label > span:after {
    top: 2px;
  }
  .c-form__check label > span:before {
    width: 22px;
    height: 22px;
  }
  .c-form__check label > span:after {
    left: 8px;
    width: 4px;
    height: 9px;
    border-right: #FFF 2px solid;
    border-bottom: #FFF 2px solid;
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    bottom: 3px;
  }
  .c-form__check label > input:checked + span:after {
    opacity: 1;
  }
  .c-form__check label > input:checked + span:before {
    border-color: #d63435;
    background: #d63435;
  }

  .c-formSubmit {
    margin-top: 40px;
  }
  .c-formSubmit input[type="submit"] {
    max-width: 260px;
    font-size: 18px;
    line-height: 1.3;
    height: 50px;
    padding: 5px 36px 7px;
  }
  .c-formItemContentZip input[type=text] {
    max-width: 300px;
  }


  .c-formAgree {
    margin-top: 40px;
  }
  .c-formAgreeCheck {
    margin-bottom: 25px;
  }
  .c-formAgree__txt {
    font-size: 13px;
    text-align: left;
  }
  .c-formAgree__txt a {
  }

  .c-formAgreeDoc {
    font-size: 16px;
    line-height: 1.875;
    text-align: left;
    border: #ccc 1px solid;
    margin-top: 50px;
  }
  .c-formAgreeDoc__title {
    background: #DDD;
    text-align: center;
    padding: 10px 20px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
  }
  .c-formAgreeDocInner {
    padding: 30px 40px;
  }
  .c-formAgreeDoc .c-formAgreeCheck {
    text-align: center;
    margin-bottom: 0;
    margin-top: 30px;
  }

  .c-formItemContentFiles {
    height: 40px;
  }
  .c-formItemContentFiles + .c-formItemContentFiles {
    margin-top: 7px;
  }
  .c-formItemContentFiles label {
    height: 40px;
    width: 110px;
    padding: 5px 10px;
    line-height: 1.3;
    font-size: 12px;
    margin-right: 12px;
    letter-spacing: 0;
  }
  .c-formItemContentFiles__txt {
    font-size: 14px;
    line-height: 1.4;
  }

  .c-formItemContentFilesItem:nth-of-type(n + 2) {
    display: none;
    margin-top: 5px;
  }
  .c-formItemContentFilesAdd {

  }
}