@charset "UTF-8";
/* placeholder color */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700;900&display=swap");
/**********************************************************************************************

　common

**********************************************************************************************/
#site-wrpper {
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  overflow: hidden;
}
@media (min-width: 768px) {
  #site-wrpper {
    min-width: 1280px;
  }
}
@media (max-width: 767px) {
  #site-wrpper {
    font-size: 3.43vw;
  }
}

img[src$=".svg"] {
  width: 100%;
}

/* common */
img {
  max-width: 100%;
  height: auto;
}

.inner {
  max-width: 1520px;
  width: 94%;
  margin: auto;
  position: relative;
}
@media (max-width: 767px) {
  .inner {
    width: 92vw;
  }
}

main {
  display: block;
  position: relative;
}

@media (min-width: 768px) {
  .fadelink {
    transition: 0.4s opacity;
  }
  .fadelink:hover {
    opacity: 0.6;
  }
}

/* フェードイン */
.is-fadeIn {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 1s, transform 1s;
}
@media (min-width: 768px) {
  .is-fadeIn {
    transform: translate3d(0, 40px, 0);
  }
}

.is-fadeIn.is-scrollIn {
  opacity: 1;
  transform: translate(0, 0);
}

@media (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}
/**********************************************************************************************

　header

**********************************************************************************************/
header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  background: #fefefe;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0 40px;
}
@media (min-width: 768px) {
  header {
    min-width: 1280px;
  }
}
@media (max-width: 1380px) {
  header {
    padding: 0 0 0 20px;
  }
}
@media (max-width: 767px) {
  header {
    padding: 2vw 5vw;
  }
}

.head_logo {
  width: 220px;
  position: relative;
  z-index: 10000;
}
@media (max-width: 767px) {
  .head_logo {
    width: 35vw;
  }
}

@media (min-width: 768px) {
  .headNav {
    display: flex !important;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .headNav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fefefe;
    z-index: 100;
    padding: 25vw 0 10vw;
    overflow: auto;
    display: none;
  }
}

.headNav_list {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  margin: 0 100px 0 0;
}
@media (max-width: 1380px) {
  .headNav_list {
    margin: 0 40px 0 0;
  }
}
@media (max-width: 767px) {
  .headNav_list {
    display: block;
    margin: 0 0 12vw;
    text-align: center;
    font-size: 4vw;
  }
}
.headNav_list li {
  margin: 0 70px 0 0;
}
@media (max-width: 1380px) {
  .headNav_list li {
    margin: 0 40px 0 0;
  }
}
@media (max-width: 767px) {
  .headNav_list li {
    margin: 0 0 10vw;
  }
}

.contactBtn {
  font-size: 1.8rem;
  padding: 20px 45px;
  display: inline-block;
  color: #fefefe;
  background: #000;
}
@media (max-width: 767px) {
  .contactBtn {
    font-size: 3.43vw;
    padding: 2.6vw 4vw;
  }
}

.contactList {
  display: flex;
  font-size: 1.8rem;
  text-align: center;
}
@media (max-width: 767px) {
  .contactList {
    display: block;
    font-size: 3.43vw;
  }
}
@media (max-width: 767px) {
  .contactList li:not(:last-child) {
    margin: 0 0 5vw;
  }
}
.contactList a {
  display: block;
  width: 200px;
  padding: 33px 0;
}
@media (max-width: 767px) {
  .contactList a {
    width: 70vw;
    padding: 5vw;
    margin: auto;
  }
}
.contactList a.contact {
  background: #696969;
  color: #fefefe;
}
.contactList a.recruit {
  border-left: 1px solid #d8d8d8;
}
@media (max-width: 767px) {
  .contactList a.recruit {
    border: 1px solid #d8d8d8;
  }
}

.menuBtn,
.menuBtn span {
  display: inline-block;
  transition: all 0.4s;
  cursor: pointer;
  z-index: 1000;
}

.menuBtn {
  width: 8vw;
  height: 4.5vw;
  position: relative;
}
.menuBtn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
}
.menuBtn span:nth-of-type(1) {
  top: 0;
}
.menuBtn span:nth-of-type(2) {
  top: calc(50% - 1px);
}
.menuBtn span:nth-of-type(3) {
  bottom: 0;
}
.menuBtn.active span:nth-of-type(1) {
  transform: translateY(2vw) rotate(-45deg);
}
.menuBtn.active span:nth-of-type(2) {
  opacity: 0;
}
.menuBtn.active span:nth-of-type(3) {
  transform: translateY(-2.2vw) rotate(45deg);
}

.stop {
  overflow: hidden;
  height: 100%;
}

/**********************************************************************************************

　footer

**********************************************************************************************/
footer {
  background: #000;
  padding: 90px 0 40px;
  color: #fefefe;
}
@media (max-width: 767px) {
  footer {
    padding: 12vw 0 5vw;
  }
}
footer .inner {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 1500px) {
  footer .inner {
    max-width: 1420px;
    padding: 0 50px;
  }
}
@media (max-width: 767px) {
  footer .inner {
    display: block;
  }
}

.foot_logo {
  width: 250px;
}
@media (max-width: 767px) {
  .foot_logo {
    width: 52vw;
    margin: 0 0 8vw;
  }
}

.footNav {
  display: flex;
}
@media (max-width: 767px) {
  .footNav {
    display: block;
    text-align: center;
  }
}

.footNav_list {
  font-size: 1.8rem;
  border-left: 1px solid #fefefe;
  padding: 0 0 0 30px;
  margin: 0 100px 0 0;
}
@media (max-width: 767px) {
  .footNav_list {
    margin: 0 0 15vw;
    text-align: left;
    font-size: 3.43vw;
    padding: 0 0 0 5vw;
  }
}
.footNav_list li:not(:last-child) {
  margin: 0 0 35px;
}
@media (max-width: 767px) {
  .footNav_list li:not(:last-child) {
    margin: 0 0 1.5em;
  }
}

.footNav_contentList li:not(:last-child) {
  margin: 0 0 40px;
}
@media (max-width: 767px) {
  .footNav_contentList li:not(:last-child) {
    margin: 0 0 7vw;
  }
}

.footBtn {
  font-size: 1.8rem;
  padding: 20px 45px;
  display: block;
  width: 300px;
  text-align: center;
  color: #fefefe;
  background: none;
}
@media (max-width: 767px) {
  .footBtn {
    font-size: 3.43vw;
    width: 70vw;
    padding: 5vw 15vw;
    margin: auto;
  }
}
.footBtn.-recruit {
  border: 1px solid #fefefe;
}
.footBtn.-contact {
  background: #fefefe;
  color: #333;
}

.copyright {
  margin: 210px 0 0;
  display: block;
  text-align: center;
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .copyright {
    margin: 20vw 0 0;
    font-size: 3.2vw;
  }
}

/**********************************************************************************************

　main

**********************************************************************************************/
/*---------------------------------------------
common
---------------------------------------------*/
.pagetop {
  display: block;
  position: fixed;
  width: 80px;
  bottom: 20px;
  right: 30px;
  z-index: 1000;
}
@media (max-width: 767px) {
  .pagetop {
    bottom: 8vw;
    right: 2.6vw;
    width: 9.6vw;
  }
}

.linkBtn {
  display: block;
  width: 600px;
  text-align: center;
  font-size: 2.4rem;
  padding: 30px;
  border: 2px solid #000;
}
@media (max-width: 767px) {
  .linkBtn {
    width: 75vw;
    font-size: 4vw;
    padding: 5vw;
  }
}

.sec_tit {
  margin: 0 auto 230px;
  position: relative;
}
@media (max-width: 767px) {
  .sec_tit {
    margin: 0 auto 18vw;
  }
}
.sec_tit::after {
  content: "";
  display: block;
  width: 2px;
  height: 100px;
  background: #000;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 30px);
}
@media (max-width: 767px) {
  .sec_tit::after {
    height: 10vw;
    top: calc(100% + 3vw);
  }
}

.sec_txt {
  text-align: center;
  margin: 0 0 90px;
  line-height: 2;
}
@media (max-width: 767px) {
  .sec_txt {
    margin: 0 0 8vw;
  }
}

.indentTxt {
  padding-left: 1em;
  text-indent: -1em;
}

.commentTxt {
  font-weight: 500;
  font-size: 1.6rem;
  margin: 25px 0 0;
  line-height: 1.75;
}
@media (max-width: 767px) {
  .commentTxt {
    font-size: 3vw;
    margin: 3vw 0 0;
  }
}

/*---------------------------------------------
kv
---------------------------------------------*/
.kv {
  position: relative;
}
@media (max-width: 767px) {
  .kv {
    background: url("../img/kv_bg.png") repeat-x center bottom;
    background-size: auto 100%;
    padding: 50vw 0 60vw;
  }
}
@media (min-width: 768px) {
  .kv .inner {
    max-width: 100%;
    max-height: 100%;
    height: 100vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .kv .inner {
    position: static;
  }
}

.kv_img img {
  width: 100%;
}

.kv_content {
  color: #fefefe;
}
@media (max-width: 767px) {
  .kv_content {
    text-align: center;
  }
}

.kv_copy {
  font-size: 5rem;
  margin: 0 0 50px;
  letter-spacing: 0.2em;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .kv_copy {
    font-size: 6vw;
    line-height: 1.5;
    margin: 0 0 4vw;
  }
}

.kv_txt {
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .kv_txt {
    font-size: 3.43vw;
  }
}

.kv_monit {
  position: absolute;
  right: 50px;
  bottom: 40px;
  width: 180px;
}
@media (max-width: 767px) {
  .kv_monit {
    width: 25vw;
    bottom: 27vw;
    right: 3vw;
  }
}

.scroll {
  display: block;
  position: absolute;
  left: 50%;
  bottom: -50px;
  width: 20px;
}
@media (max-width: 767px) {
  .scroll {
    width: 2vw;
    bottom: 29vw;
  }
}

/*---------------------------------------------
mission
---------------------------------------------*/
.sec-mission {
  padding: 430px 0;
}
@media (max-width: 767px) {
  .sec-mission {
    padding: 16vw 0;
  }
}
.sec-mission .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .sec-mission .inner {
    display: block;
    text-align: center;
  }
}
.sec-mission .sec_tit {
  width: 232px;
}
@media (min-width: 768px) {
  .sec-mission .sec_tit {
    margin: 0 0 170px;
  }
}
@media (max-width: 767px) {
  .sec-mission .sec_tit {
    width: 30vw;
  }
}
@media (min-width: 768px) {
  .sec-mission .sec_tit::after {
    transform: none;
    left: 0;
  }
}

.mission_txt {
  line-height: 2;
}

.mission_img {
  width: 56%;
  flex-shrink: 0;
  margin: 0 0 0 40px;
}
@media (max-width: 767px) {
  .mission_img {
    width: 100%;
    margin: 8vw 0 0;
  }
}

/*---------------------------------------------
service
---------------------------------------------*/
.sec-service {
  background: rgba(62, 133, 187, 0.05);
  padding: 340px 0;
}
@media (max-width: 767px) {
  .sec-service {
    padding: 16vw 0;
  }
}
.sec-service .sec_tit {
  width: 224px;
}
@media (max-width: 767px) {
  .sec-service .sec_tit {
    width: 29.8vw;
  }
}
.sec-service .linkBtn {
  margin: 80px auto 0;
}
@media (max-width: 767px) {
  .sec-service .linkBtn {
    margin: 10vw auto 0;
  }
}

.service_monit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 240px;
}
@media (max-width: 767px) {
  .service_monit {
    display: block;
    margin: 0 0 18vw;
  }
}

.service_monit_img {
  width: 46%;
  flex-shrink: 0;
  margin: 0 0 0 40px;
}
@media (max-width: 767px) {
  .service_monit_img {
    width: 80vw;
    margin: 0 auto;
  }
}

.service_monit_logo {
  width: 350px;
  margin: 0 0 30px;
}
@media (max-width: 767px) {
  .service_monit_logo {
    width: 40vw;
    margin: 0 0 4vw;
  }
}

.service_monit_tit {
  font-size: 3.2rem;
  margin: 0 0 30px;
}
@media (max-width: 767px) {
  .service_monit_tit {
    font-size: 5.3vw;
    margin: 0;
  }
}

.service_monit_txt {
  line-height: 2;
}
@media (max-width: 767px) {
  .service_monit_txt {
    line-height: 1.75;
  }
}

.service_more_tit {
  width: 360px;
  margin: 0 auto 120px;
}
@media (max-width: 767px) {
  .service_more_tit {
    width: 48vw;
    margin: 0 auto 8vw;
  }
}

.service_moreList {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .service_moreList {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.service_moreList li {
  width: 13.1%;
  text-align: center;
}
@media (max-width: 767px) {
  .service_moreList li {
    width: 40%;
    margin-bottom: 8vw;
  }
  .service_moreList li:nth-child(even) {
    margin-left: 7vw;
  }
}

.service_moreList_img {
  margin: 0 0 20px;
}
.service_moreList_img img {
  width: 100%;
}

/*---------------------------------------------
company
---------------------------------------------*/
.sec-company {
  background: rgba(252, 164, 0, 0.05);
  padding: 360px 0 0;
}
@media (max-width: 767px) {
  .sec-company {
    padding: 16vw 0 0;
  }
}
.sec-company .sec_tit {
  width: 299px;
}
@media (max-width: 767px) {
  .sec-company .sec_tit {
    width: 40vw;
  }
}

.company_table {
  max-width: 1200px;
  margin: 0 auto 100px;
  width: 100%;
}
@media (max-width: 767px) {
  .company_table {
    margin: 0 0 10vw;
  }
}
.company_table tr:not(:last-child) {
  border-bottom: 1px solid #000;
}
.company_table th {
  padding: 35px 40px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .company_table th {
    padding: 4vw 4vw;
  }
}
.company_table td {
  padding: 35px 40px 35px 110px;
}
@media (max-width: 767px) {
  .company_table td {
    padding: 4vw 4vw;
  }
}

.googlemap {
  width: 79%;
  height: 700px;
  margin: auto;
}
@media (max-width: 767px) {
  .googlemap {
    height: 60vw;
  }
}
.googlemap iframe {
  width: 100%;
  height: 100%;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

/*---------------------------------------------
member
---------------------------------------------*/
.sec-member {
  background: rgba(252, 164, 0, 0.05);
  padding: 360px 0 274px;
}
@media (max-width: 767px) {
  .sec-member {
    padding: 16vw 0 0;
  }
}
.sec-member .sec_tit {
  width: 299px;
  margin-bottom: 160px;
}
@media (max-width: 767px) {
  .sec-member .sec_tit {
    width: 40vw;
    margin-bottom: 70px;
  }
}

.member-area-detail {
  text-align: center;
}
@media (max-width: 767px) {
  .member-area-detail {
    margin-top: 100px;
  }
}

.member-individual {
  margin: 100px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 79%;
}
@media (max-width: 767px) {
  .member-individual {
    margin: 50px auto 0;
  }
}

.member-individual li {
  width: 380px;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .member-individual li {
    margin: 0px auto 50px;
  }
}


.member-detail {
  background: white;
  padding: 60px 15px;
  font-family: sans-serif !important;
}

.member-position {
  font-size: 20px;
}
@media (max-width: 767px) {
  .member-position {
    font-size: 4vw;
  }
}

.member-name {
  font-size: 25px;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .member-name {
    font-size: 4.5vw;
  }
}

.member-explain {
  margin-top: 20px;
  font-weight: 100;
  font-size: inherit;
  color: #333333;
}

/*---------------------------------------------
news
---------------------------------------------*/
.sec-news {
  background: rgba(223, 51, 79, 0.05);
  padding: 340px 0;
}
@media (max-width: 767px) {
  .sec-news {
    padding: 16vw 0;
  }
}
.sec-news .sec_tit {
  width: 162px;
}
@media (min-width: 768px) {
  .sec-news .sec_tit {
    margin: 0 0 170px;
  }
  .sec-news .sec_tit::after {
    transform: none;
    left: 0;
  }
}
@media (max-width: 767px) {
  .sec-news .sec_tit {
    width: 21.6vw;
  }
}

.newsList li {
  display: flex;
  padding: 40px 60px;
  align-items: flex-start;
  border-bottom: 2px solid #000;
}
@media (max-width: 767px) {
  .newsList li {
    flex-wrap: wrap;
    padding: 5vw;
  }
}

.newsList_time {
  flex-shrink: 0;
  margin: 0 50px 0 0;
}
@media (max-width: 767px) {
  .newsList_time {
    margin: 0 6vw 0 0;
  }
}

.newsList_category_news {
  flex-shrink: 0;
  width: 155px;
  text-align: center;
  padding: 5px 18px;
  background: #000;
  color: #fefefe;
  font-size: 1.6rem;
  margin: 0 65px 0 0;
}
@media (max-width: 767px) {
  .newsList_category_news {
    font-size: 3.2vw;
    padding: 1vw 3vw;
    margin: 0;
  }
}

.newsList_category_press {
  flex-shrink: 0;
  width: 155px;
  text-align: center;
  padding: 5px 18px;
  background: #cc3366;
  color: #fefefe;
  font-size: 1.6rem;
  margin: 0 65px 0 0;
}
@media (max-width: 767px) {
  .newsList_category_press {
    font-size: 3.2vw;
    padding: 1vw 3vw;
    margin: 0;
  }
}

.newsList_tit {
  font-weight: normal;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .newsList_tit {
    width: 100%;
    margin: 3vw 0 0;
  }
}

.newsList_tit span::after {
  content: "";
  top: 50px;
  width: 9px;
  height: 9px;
  border-top: 2px solid;
  border-right: 2px solid;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  right: 18px;
}

.newsList_target {
  transition:
    padding-top 300ms,
    line-height 300ms,
    opacity 200ms;
}

.newsList_target.is-hidden {
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 0;
  pointer-events: none;
  height: 0;
}

.newsButton {
  position: relative;
  border: 2px solid #000;
  padding: 2.2rem 8.2rem 2.2rem 7.5rem;;
  display: block;
  font-weight: bold;
  font-size: 2.1rem;
  margin: 60px auto 0;
  background-color: transparent;
}
.newsButton::after,
.newsButton::before {
  content: "";
  position: absolute;
  right: 3.4rem;
  top: 2.85rem;
  width: 2px;
  height: 0.9em;
  background-color: #000;
  transition: all 0.3s;
}
.newsButton::after {
  transform: rotate(90deg);
}

/* open クラスが切り替わる（クリック時）アニメーション */
.newsButton.open::before {
  transform: rotate(90deg);
}
.newsButton.open::after {
  transform: rotate(90deg);
  opacity: 0;
}

/*---------------------------------------------
recruit
---------------------------------------------*/
.sec-recruit {
  background: url("../img/recruit_bg.jpg") no-repeat center center;
  background-size: cover;
  padding: 240px 0;
}
@media (max-width: 767px) {
  .sec-recruit {
    padding: 16vw 0;
  }
}
.sec-recruit .sec_tit {
  width: 204px;
}
@media (max-width: 767px) {
  .sec-recruit .sec_tit {
    width: 27.2vw;
  }
}
.sec-recruit .sec_tit::after {
  background: #fefefe;
}
.sec-recruit .linkBtn {
  width: 391px;
  padding: 10px 30px;
  border-color: #fefefe;
  color: #fefefe;
  margin: 90px auto 0;
}
@media (max-width: 767px) {
  .sec-recruit .linkBtn {
    margin: 12vw auto 0;
    width: 75vw;
    font-size: 4vw;
    padding: 1vw 5vw;
  }
}

.recruit_box {
  text-align: center;
  color: #fefefe;
}

.recruit_tit {
  font-size: 3.2rem;
  margin: 0 0 40px;
}
@media (max-width: 767px) {
  .recruit_tit {
    font-size: 5.3vw;
    margin: 0 0 5vw;
  }
}

.recruit_txt {
  line-height: 2;
}

/*---------------------------------------------
contact
---------------------------------------------*/
.sec-contact {
  padding: 400px 0 500px;
}
@media (max-width: 767px) {
  .sec-contact {
    padding: 16vw 0 24vw;
  }
}
.sec-contact .sec_tit {
  width: 235px;
}
@media (max-width: 767px) {
  .sec-contact .sec_tit {
    width: 31.3vw;
  }
}

.contact_list {
  display: flex;
  justify-content: space-between;
  max-width: 1320px;
  margin: 0 auto 310px;
  position: relative;
}
@media (max-width: 767px) {
  .contact_list {
    margin: 0 auto 34vw;
    width: 75vw;
    display: block;
  }
}
.contact_list::after {
  content: "";
  display: block;
  width: 2px;
  height: 100px;
  background: #000;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 100px);
}
@media (max-width: 767px) {
  .contact_list::after {
    height: 16vw;
    top: calc(100% + 8vw);
  }
}
.contact_list li {
  width: 46%;
}
@media (max-width: 767px) {
  .contact_list li {
    width: 100%;
  }
  .contact_list li:not(:last-child) {
    margin: 0 0 6vw;
  }
}
.contact_list a {
  border: 2px solid #000;
  height: 100%;
  width: 100%;
  display: block;
  text-align: center;
  padding: 35px 30px 30px;
}
@media (max-width: 767px) {
  .contact_list a {
    padding: 5vw 0;
  }
}

.contactList_icon {
  width: 70px;
  margin: 0 auto 15px;
}
@media (max-width: 767px) {
  .contactList_icon {
    width: 15vw;
    margin: 0 auto;
  }
}

.contactList_tel {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .contactList_tel {
    font-size: 3vw;
  }
}

.contactTable {
  max-width: 1240px;
  width: 100%;
  margin: auto;
}
.contactTable th {
  width: 10%;
  padding: 10px 130px 0 0;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .contactTable th {
    padding: 0 0 3vw;
  }
}
.contactTable td {
  padding: 0 0 40px;
}
@media (max-width: 767px) {
  .contactTable td {
    padding: 0 0 8vw;
  }
}
@media (max-width: 767px) {
  .contactTable th,
  .contactTable td {
    display: block;
    width: 100%;
  }
}
.contactTable .radio,
.contactTable .checkbox {
  display: none;
}
.contactTable label {
  position: relative;
  padding: 0 0 0 30px;
  cursor: pointer;
  display: inline-block;
}
@media (max-width: 767px) {
  .contactTable label {
    padding: 0 0 0 4.2vw;
  }
}
.contactTable label:not(:last-child) {
  margin: 0 0 0.5em;
}
.contactTable .checkbox + span::before,
.contactTable .radio + span::before,
.contactTable span::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100%;
  transition: all 0.2s;
}
.contactTable .checkbox + span::before,
.contactTable .radio + span::before {
  left: 0;
  width: 18px;
  height: 18px;
  background: #fefefe;
  /* ラジオボタンの元の色の指定*/
  border: 1px solid #000;
}
@media (max-width: 767px) {
  .contactTable .checkbox + span::before,
  .contactTable .radio + span::before {
    width: 3.2vw;
    height: 3.2vw;
  }
}
.contactTable .checkbox + span::after,
.contactTable .radio + span::after {
  opacity: 0;
  left: 4px;
  width: 12px;
  height: 12px;
  background: #cbcbcb;
  transform: scale(2) translateY(-50%);
}
@media (max-width: 767px) {
  .contactTable .checkbox + span::after,
  .contactTable .radio + span::after {
    left: 0.7vw;
    width: 2vw;
    height: 2vw;
  }
}
.contactTable .checkbox:checked + span::after,
.contactTable .radio:checked + span::after {
  opacity: 1;
  transform: scale(1) translateY(-50%);
}

.inpTxt {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  width: 100%;
  background: #e6e6e6;
  padding: 15px;
  box-sizing: border-box;
}

.required {
  display: flex;
  align-items: center;
}
.required::after {
  content: "\5FC5\9808";
  background: #aa0707;
  font-size: 1.4rem;
  display: inline-block;
  padding: 0 5px 1px;
  margin: 0 0 0 10px;
  color: #fefefe;
}

.submitBtn {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
  margin: 60px auto 0;
  background: none;
  color: black;
}
@media (max-width: 767px) {
  .submitBtn {
    margin: 8vw auto 0;
  }
}

.contact_checkList li:not(:last-child) {
  margin: 0 0 10px;
}
@media (max-width: 767px) {
  .contact_checkList li:not(:last-child) {
    margin: 0 0 2vw;
  }
}

.formErrorContent {
  color: #aa0707;
  margin: 0.5em 0 0;
}
