@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Overpass:ital,wght@0,100..900;1,100..900&family=Shippori+Mincho&family=Shippori+Mincho+B1&display=swap");
:root {
  --black: #000000;
  --white: #ffffff;
  --main-color: #164f99;
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-serif: "Noto Serif JP", serif;
  --black-2: #333333;
  --blue-1: #8ed0ea;
  --blue-2: #164f994d;
  --blue-3: #c5d9ff;
  --gray: #848484;
  --gray-1: #f6f6f6;
  --gray-2: #d9d9d9;
  --gray-3: #f5f5f5;
  --gray-4: #ffffff80;
  --gray-5: #8aa7cc;
  --red: #c40000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

@media only screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    white-space: nowrap;
  }
}

body {
  font-family: var(--font-family-serif);
  color: var(--black-2);
  font-size: 16px;
}

#header {
  position: relative;
  width: calc(100% - 118px);
  background-color: var(--main-color);
}
@media only screen and (max-width: 767px) {
  #header {
    width: calc(100% - 81px);
  }
}
#header header {
  display: flex;
  align-items: center;
  justify-content: normal;
}
#header header .header-logo {
  max-width: 146px;
  margin: 0 31px 0 0;
}
@media only screen and (max-width: 767px) {
  #header header .header-logo {
    max-width: 70px;
  }
}
#header header .header-nav {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: normal;
  column-gap: 34px;
}
@media only screen and (max-width: 767px) {
  #header header .header-nav {
    display: none;
  }
}
#header header .header-nav li a {
  color: var(--white);
  text-decoration: none;
  line-height: 100%;
  font-weight: 700;
  font-family: var(--font-family-serif);
  letter-spacing: 0;
  position: relative;
}
#header header .header-nav li a::before {
  position: absolute;
  bottom: -7px;
  width: 0;
  height: 1px;
  content: "";
  background-color: var(--white);
  transition: all 0.3s ease;
}
#header header .header-nav li a:hover::before {
  width: 100%;
}
#header .header-banner {
  padding: 60px 0 96px 145px;
  display: flex;
  position: relative;
  flex-direction: column;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  #header .header-banner {
    padding: 15px 0 30px 0;
  }
}
#header .header-banner .left-content {
  width: fit-content;
  position: relative;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  #header .header-banner .left-content {
    padding: 0 0 0 36px;
  }
}
#header .header-banner .left-content .title {
  width: fit-content;
  font-family: var(--font-family-serif);
  color: var(--white);
  font-size: 50px;
  line-height: 68px;
  letter-spacing: 0.05em;
  white-space: nowrap;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #header .header-banner .left-content .title {
    white-space: normal;
    line-height: 58px;
    font-size: 46px;
  }
}
#header .header-banner .left-content .content {
  width: fit-content;
  margin: 12px 0 0;
  color: var(--white);
  font-weight: 700;
  line-height: 27px;
}
@media only screen and (max-width: 767px) {
  #header .header-banner .left-content .content {
    margin: 15px 0 0;
    white-space: nowrap;
  }
}
#header .header-banner .contact-container {
  position: relative;
  width: fit-content;
  margin: 59px 0 0;
}
@media only screen and (max-width: 767px) {
  #header .header-banner .contact-container {
    margin: 148px 0 0;
    width: calc(100% + 81px);
  }
}
#header .header-banner .contact-container .contact {
  display: block;
  color: var(--main-color);
  width: fit-content;
  text-decoration: none;
  line-height: 27px;
  font-weight: 700;
  font-family: var(--font-family-serif);
  background: var(--white) url("../upload/icon-email.svg") left 55px center no-repeat;
  padding: 25px 65px 26px 126px;
  background-size: 38px;
  border-radius: 10px;
  min-width: 274px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  #header .header-banner .contact-container .contact {
    margin: 0 auto;
    background-size: 40px;
  }
}
#header .header-banner .contact-container .contact:hover {
  background-color: var(--gray-4);
}
#header .header-banner .contact-container::after {
  content: "";
  max-width: 274px;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--blue-1);
  border-radius: 10px;
  top: 4px;
  right: calc(50% - 3px);
  transform: translateX(50%);
  z-index: 1;
}
#header .header-banner .right-content {
  position: absolute;
  right: 0;
  margin: 0;
  z-index: 2;
  bottom: 100px;
}
@media only screen and (max-width: 767px) {
  #header .header-banner .right-content {
    right: -70px;
    top: 155px;
  }
}
#header .header-banner .right-content img {
  height: 399px;
}
@media only screen and (max-width: 767px) {
  #header .header-banner .right-content img {
    height: 240px;
    width: 324px;
  }
}
#header .icon-sidebar {
  display: none;
}
@media only screen and (max-width: 767px) {
  #header .icon-sidebar {
    display: block;
    position: fixed;
    top: 19px;
    right: 21px;
    z-index: 30;
    border-top: 1px solid var(--main-color);
    width: 39px;
    padding: 9.5px 0;
  }
  #header .icon-sidebar::before {
    position: absolute;
    top: 9px;
    left: 0;
    height: 1px;
    content: "";
    width: 100%;
    background-color: var(--main-color);
  }
  #header .icon-sidebar::after {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    content: "";
    width: 100%;
    background-color: var(--main-color);
  }
}
#header .icon-sidebar-close {
  border-top: none;
}
#header .icon-sidebar-close::before {
  top: 50%;
  transform: rotate(25deg);
}
#header .icon-sidebar-close::after {
  bottom: 50%;
  transform: rotate(-25deg);
}
#header .sidebar-header {
  position: fixed;
  top: 0;
  left: 200%;
  padding: 74px 39px 35px 50px;
  background-color: var(--gray-3);
  width: 100%;
  z-index: 20;
  transition: left 0.3s ease;
}
#header .sidebar-header .sidebar-list {
  list-style: none;
}
#header .sidebar-header .sidebar-list .menu-item {
  margin: 0 0 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .sidebar-header .sidebar-list .menu-item a {
  font-size: 24px;
  text-decoration: none;
  font-weight: bold;
  color: var(--main-color);
  font-family: var(--font-family-serif);
  line-height: 29px;
}
#header .sidebar-header .sidebar-list .menu-item a:not(.icon) {
  position: relative;
}
#header .sidebar-header .sidebar-list .menu-item a:not(.icon)::before {
  position: absolute;
  bottom: -8px;
  width: 0;
  height: 1px;
  content: "";
  background-color: var(--main-color);
  transition: all 0.3s ease;
}
#header .sidebar-header .sidebar-list .menu-item a:not(.icon):hover::before {
  width: 100%;
}
#header .sidebar-header .sidebar-list .menu-item:last-of-type {
  margin: 0;
}
#header .sidebar-header.open {
  left: 0;
}
#header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white);
  clip-path: polygon(100% 0, 101% 100%, 68% 100%);
  z-index: 2;
  right: -1px;
  top: -10px;
  bottom: -1px;
}

#footer footer {
  background-color: var(--main-color);
}
#footer footer .footer-container {
  padding: 0 100px;
  display: flex;
  align-items: start;
  justify-content: normal;
}
@media only screen and (max-width: 767px) {
  #footer footer .footer-container {
    flex-direction: column;
    padding: 0;
    align-items: center;
  }
}
#footer footer .footer-container .footer-logo {
  max-width: 146px;
}
@media only screen and (max-width: 767px) {
  #footer footer .footer-container .footer-logo {
    max-width: 89px;
  }
}
#footer footer .footer-container .footer-nav {
  list-style: none;
  padding: 34px 0 0 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 34px;
}
@media only screen and (max-width: 767px) {
  #footer footer .footer-container .footer-nav {
    padding: 42px 68px 0;
    gap: 34px 32px;
    display: none;
  }
}
#footer footer .footer-container .footer-nav li a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-family-serif);
  line-height: 100%;
  letter-spacing: 0;
  font-weight: 700;
  position: relative;
}
#footer footer .footer-container .footer-nav li a::before {
  position: absolute;
  bottom: -7px;
  width: 0;
  height: 1px;
  content: "";
  background-color: var(--white);
  transition: all 0.3s ease;
}
#footer footer .footer-container .footer-nav li a:hover::before {
  width: 100%;
}
#footer footer .footer-container .footer-nav-mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  #footer footer .footer-container .footer-nav-mobile {
    display: block;
    margin: 42px 0 0;
  }
}
#footer footer .footer-container .footer-nav-mobile .footer-container {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  column-gap: 34px;
  margin: 0 0 32px;
}
#footer footer .footer-container .footer-nav-mobile .footer-container:last-of-type {
  margin: 0;
}
#footer footer .footer-container .footer-nav-mobile .footer-container li a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-family-serif);
  line-height: 100%;
  letter-spacing: 0;
  font-weight: 700;
  position: relative;
}
#footer footer .footer-container .footer-nav-mobile .footer-container li a::before {
  position: absolute;
  bottom: -7px;
  width: 0;
  height: 1px;
  content: "";
  background-color: var(--white);
  transition: all 0.3s ease;
}
#footer footer .footer-container .footer-nav-mobile .footer-container li a:hover::before {
  width: 100%;
}
#footer footer .copyright {
  text-align: center;
  padding: 181px 0 19px;
  color: var(--white);
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}
@media only screen and (max-width: 767px) {
  #footer footer .copyright {
    padding: 83px 0 19px;
  }
}

#homePage .news-container {
  margin: 28px 0 0;
  padding: 0 0 0 145px;
  display: flex;
}
@media only screen and (max-width: 767px) {
  #homePage .news-container {
    padding: 7px 0 0 22px;
    margin: 0;
    flex-direction: column;
  }
}
#homePage .news-container .title {
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font-family-serif);
  color: var(--main-color);
  margin: 0 25px 0 0;
}
#homePage .news-container .new-item {
  display: flex;
  align-items: center;
  justify-content: normal;
}
@media only screen and (max-width: 767px) {
  #homePage .news-container .new-item {
    margin: 7px 0 0;
  }
}
#homePage .news-container .new-item .date {
  font-weight: 700;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0;
  margin: 0 13px 0 0;
}
#homePage .news-container .new-item .content {
  font-size: 15px;
  line-height: 24px;
}
#homePage .introduction {
  padding: 73px 0 0;
}
@media only screen and (max-width: 767px) {
  #homePage .introduction {
    padding: 60px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  #homePage .introduction .title-common {
    margin: 0 0 13px;
  }
}
#homePage .introduction .banner {
  display: flex;
  align-items: center;
  justify-content: normal;
  padding: 0 9.9166666667% 0 0;
}
@media only screen and (max-width: 767px) {
  #homePage .introduction .banner {
    flex-direction: column;
    padding: 0;
  }
}
#homePage .introduction .banner .main-banner {
  position: relative;
  max-width: 702px;
  width: 702px;
}
@media only screen and (max-width: 767px) {
  #homePage .introduction .banner .main-banner {
    width: 100%;
  }
}
#homePage .introduction .banner .main-banner img {
  height: 400px;
}
@media only screen and (max-width: 767px) {
  #homePage .introduction .banner .main-banner img {
    height: 188px;
    width: 100%;
  }
}
#homePage .introduction .banner .main-banner::before {
  content: "";
  background: var(--blue-2);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
#homePage .introduction .banner .main-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white);
  clip-path: polygon(100% 0, 103% 103%, 65% 101%);
  z-index: 2;
  right: -1px;
  bottom: -1px;
}
@media only screen and (max-width: 767px) {
  #homePage .introduction .banner .main-banner::after {
    display: none;
  }
}
#homePage .introduction .banner .text {
  position: relative;
  z-index: 3;
  margin: 0 0 0 -5px;
  flex: 1;
  max-width: 384px;
}
@media only screen and (max-width: 767px) {
  #homePage .introduction .banner .text {
    text-align: center;
    margin: 19px 0 0;
    padding: 0 22px;
  }
}
#homePage .introduction .banner .text h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 50px;
  font-family: var(--font-family-serif);
  letter-spacing: 0;
  margin: 0 0 16px;
}
#homePage .introduction .banner .text .content {
  font-weight: 500;
  line-height: 27px;
}
@media only screen and (max-width: 767px) {
  #homePage .introduction .banner .text .content {
    text-align: left;
  }
}
#homePage .introduction .list-introductions {
  margin: 44px 0 0;
  padding: 0 8.3333333333vw;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 47px;
}
@media only screen and (max-width: 767px) {
  #homePage .introduction .list-introductions {
    padding: 0;
    margin: 28px 0 0;
    column-gap: 0;
    row-gap: 40px;
    flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  #homePage .introduction .list-introductions .introduction-item {
    width: 100%;
  }
}
#homePage .introduction .list-introductions .introduction-item img {
  max-width: 189px;
  margin: 0 auto;
}
#homePage .introduction .list-introductions .introduction-item .item-title {
  text-align: center;
  line-height: 50px;
  font-size: 25px;
  margin: -5px 0 4px;
  font-weight: 700;
  font-family: var(--font-family-serif);
}
#homePage .introduction .list-introductions .introduction-item p {
  line-height: 27px;
  font-weight: 500;
  text-align: center;
}
#homePage .introduction-business {
  padding: 98px 0 0;
}
@media only screen and (max-width: 767px) {
  #homePage .introduction-business {
    padding: 108px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  #homePage .introduction-business .title-common {
    margin: 0 0 32px;
  }
}
#homePage .introduction-business .list-business {
  padding: 0 8.3333333333vw;
  display: flex;
  justify-content: space-between;
  column-gap: 46px;
}
@media only screen and (max-width: 767px) {
  #homePage .introduction-business .list-business {
    padding: 0 22px;
    flex-direction: column;
    row-gap: 46px;
  }
}
#homePage .introduction-business .list-business .business-item {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: normal;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  #homePage .introduction-business .list-business .business-item {
    width: 100%;
  }
}
#homePage .introduction-business .list-business .business-item img {
  height: 272px;
  max-width: 477px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #homePage .introduction-business .list-business .business-item img {
    height: 219px;
    max-width: unset;
  }
}
@media only screen and (max-width: 767px) {
  #homePage .introduction-business .list-business .business-item:nth-child(2) img {
    height: 272px;
  }
}
#homePage .introduction-business .list-business .business-item h2 {
  font-size: 25px;
  line-height: 50px;
  font-weight: 700;
  font-family: var(--font-family-serif);
  text-align: center;
  margin: 10px 0 0;
}
#homePage .introduction-business .list-business .business-item p {
  line-height: 27px;
  font-weight: 500;
}
#homePage .member-container {
  padding: 109px 0 0;
}
@media only screen and (max-width: 767px) {
  #homePage .member-container {
    padding: 107px 0 0;
  }
}
#homePage .member-container .title-common {
  margin: 0 0 67px;
}
@media only screen and (max-width: 767px) {
  #homePage .member-container .title-common {
    margin: 0 0 33px;
  }
}
#homePage .member-container .member-list {
  display: grid;
  grid-template-columns: repeat(2, 355px);
  justify-content: center;
  gap: 85px 173px;
}
@media only screen and (max-width: 767px) {
  #homePage .member-container .member-list {
    padding: 0 22px;
    gap: 50px;
    grid-template-columns: repeat(1, 1fr);
  }
}
#homePage .member-container .member-list .member-item .subtitle {
  font-size: 20px;
  line-height: 16px;
  font-weight: 700;
  font-family: var(--font-family-serif);
  color: var(--main-color);
  width: calc(100% - 5px);
}
@media only screen and (max-width: 767px) {
  #homePage .member-container .member-list .member-item .subtitle {
    width: 100%;
  }
}
#homePage .member-container .member-list .member-item .title {
  font-size: 25px;
  line-height: 50px;
  font-family: var(--font-family-serif);
  border-bottom: 2px solid var(--main-color);
  width: calc(100% - 5px);
}
@media only screen and (max-width: 767px) {
  #homePage .member-container .member-list .member-item .title {
    width: 100%;
  }
}
#homePage .member-container .member-list .member-item .main-content {
  margin: 18px 0 0;
  line-height: 27px;
  font-weight: 500;
}
#homePage .member-container .member-list .member-item .main-content ul {
  padding-left: 20px;
}
#homePage .member-container .member-list .member-item .main-content ul li::marker {
  color: var(--main-color);
}
#homePage .member-container .member-list .member-item .main-content .list-hidden {
  display: none;
}
#homePage .member-container .member-list .member-item .main-content .text-show {
  margin: 27px 0 0 auto;
  width: fit-content;
  cursor: pointer;
  line-height: 16px;
  font-weight: 700;
  color: var(--gray);
}
#homePage .member-container .member-list .member-item .main-content .text-show-open {
  margin: 27px 0 27px auto;
}
#homePage .history-container {
  margin: 120px 0 0;
  padding: 0 8.3333333333vw;
}
@media only screen and (max-width: 767px) {
  #homePage .history-container {
    padding: 0 22px;
    margin: 92px 0 0;
  }
}
#homePage .history-container .box-content {
  background-color: var(--gray-1);
  padding: 45px 56px 40px 71px;
}
@media only screen and (max-width: 767px) {
  #homePage .history-container .box-content {
    padding: 34px 37px 46px 38px;
  }
}
#homePage .history-container .box-content .title-common {
  margin: 0 0 40px;
}
#homePage .history-container .box-content p {
  font-weight: 500;
  line-height: 27px;
}
#homePage .information-company {
  padding: 120px 0 0;
}
@media only screen and (max-width: 767px) {
  #homePage .information-company {
    padding: 73px 0 0;
  }
}
#homePage .information-company .title-common {
  margin: 0 0 33px;
}
@media only screen and (max-width: 767px) {
  #homePage .information-company .title-common {
    margin: 0 0 26px;
  }
}
#homePage .information-company .main-container {
  padding: 0 6.3333333333vw 0 8.3333333333vw;
  display: flex;
  column-gap: 76px;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  #homePage .information-company .main-container {
    padding: 0 22px;
    flex-direction: column;
    row-gap: 32px;
    justify-content: unset;
  }
}
#homePage .information-company .main-container .image {
  width: 440px;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  #homePage .information-company .main-container .image {
    max-width: unset;
    width: 100%;
  }
}
#homePage .information-company .main-container .image img {
  height: 259px;
}
@media only screen and (max-width: 767px) {
  #homePage .information-company .main-container .image img {
    height: 226px;
    width: 100%;
  }
}
#homePage .information-company .main-container .main-content .info-item {
  display: flex;
  align-items: start;
  justify-content: normal;
  margin: 0 0 25px;
}
#homePage .information-company .main-container .main-content .info-item:last-of-type {
  margin: 0;
}
#homePage .information-company .main-container .main-content .info-item .label {
  font-family: var(--font-family-serif);
  color: var(--main-color);
  font-weight: 700;
  min-width: 64px;
  margin: 0 25px 0 0;
}
#homePage .information-company .main-container .main-content .info-item .info {
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
}
#homePage .contact-container {
  margin: 109px 0 0;
  padding: 76px 280px 0;
  background: var(--gray-1);
}
@media only screen and (max-width: 767px) {
  #homePage .contact-container {
    margin: 73px 0 0;
    padding: 31px 22px 0;
  }
}
#homePage .contact-container .title-common {
  margin: 0 0 35px;
}
@media only screen and (max-width: 767px) {
  #homePage .contact-container .title-common {
    font-size: 28px;
  }
}
#homePage .contact-container .title-success {
  display: none;
  font-weight: 700;
  font-size: 28px;
  color: var(--main-color);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #homePage .contact-container .title-success {
    padding: 0 16px;
  }
}
#homePage .contact-container .subcontent {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #homePage .contact-container .subcontent {
    max-width: 254px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 24px;
  }
  #homePage .contact-container .subcontent p:nth-child(2) {
    max-width: 230px;
    margin: 0 auto;
  }
}
#homePage .contact-container .box-note {
  margin: 25px 0 38px;
  background: var(--white);
  padding: 17px 0 17px 36px;
}
@media only screen and (max-width: 767px) {
  #homePage .contact-container .box-note {
    padding: 17px 21px 17px 36px;
    margin: 25px 0 32px;
    border-radius: 4px;
  }
}
#homePage .contact-container .box-note ul {
  font-size: 13px;
  line-height: 22px;
  border-radius: 4px;
}
#homePage .contact-container .wpcf7 form p {
  padding: 0 0 32px;
}
#homePage .contact-container .wpcf7 form p label {
  font-size: 16px;
  font-weight: bold;
  font-family: var(--font-family-serif);
  line-height: 100%;
}
#homePage .contact-container .wpcf7 form p label .required {
  color: var(--red);
}
#homePage .contact-container .wpcf7 form p .wpcf7-form-control-wrap .input-full,
#homePage .contact-container .wpcf7 form p .wpcf7-form-control-wrap .input-half {
  height: 41px;
  border: 1px solid var(--gray-2);
  outline: none;
  font-size: 15px;
  font-family: var(--font-family-serif);
  border-radius: 4px;
  margin: 7px 0 0;
  padding: 0 10px;
}
#homePage .contact-container .wpcf7 form p .wpcf7-form-control-wrap .input-full {
  width: 100%;
}
#homePage .contact-container .wpcf7 form p .wpcf7-form-control-wrap textarea {
  height: 122px !important;
  resize: none;
}
#homePage .contact-container .wpcf7 form p .wpcf7-form-control-wrap .radio-button {
  margin: 13px 0 43px;
  display: flex;
  align-items: center;
  justify-content: normal;
  gap: 5px 13px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  #homePage .contact-container .wpcf7 form p .wpcf7-form-control-wrap .radio-button {
    margin: 17px 0 0;
    flex-direction: column;
    align-items: start;
    gap: 0;
  }
}
#homePage .contact-container .wpcf7 form p .wpcf7-form-control-wrap .radio-button .wpcf7-list-item {
  margin: 0;
}
#homePage .contact-container .wpcf7 form p .wpcf7-form-control-wrap .radio-button .wpcf7-list-item label {
  font-family: var(--font-family-serif);
  font-size: 15px;
  font-weight: normal;
  line-height: 31px;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 9px;
}
#homePage .contact-container .wpcf7 form p .wpcf7-form-control-wrap .radio-button .wpcf7-list-item label input[type=radio] {
  height: 18px;
  appearance: none;
  width: 18px;
  border: 1px solid var(--gray-2);
  border-radius: 100%;
  padding: 0;
  background: var(--white);
}
#homePage .contact-container .wpcf7 form p .wpcf7-form-control-wrap .radio-button .wpcf7-list-item label input[type=radio]:checked {
  appearance: none;
  border: 1px solid var(--gray-2);
  border-radius: 100%;
  padding: 0;
  position: relative;
}
#homePage .contact-container .wpcf7 form p .wpcf7-form-control-wrap .radio-button .wpcf7-list-item label input[type=radio]:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: var(--gray);
  border-radius: 50%;
}
#homePage .contact-container .wpcf7 form p .wpcf7-form-control-wrap .wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
  white-space: pre;
}
@media only screen and (max-width: 767px) {
  #homePage .contact-container .wpcf7 form p .wpcf7-form-control-wrap .wpcf7-checkbox .wpcf7-list-item {
    white-space: normal;
  }
}
#homePage .contact-container .wpcf7 form p .wpcf7-form-control-wrap .wpcf7-checkbox .wpcf7-list-item label {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  #homePage .contact-container .wpcf7 form p .wpcf7-form-control-wrap .wpcf7-checkbox .wpcf7-list-item label {
    align-items: normal;
  }
}
#homePage .contact-container .wpcf7 form p .wpcf7-form-control-wrap .wpcf7-checkbox .wpcf7-list-item label input[type=checkbox] {
  appearance: none;
  width: 15px;
  height: 15px;
  border: 1px solid var(--gray);
  border-radius: 1px;
  background-color: var(--white);
  cursor: pointer;
  position: relative;
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  #homePage .contact-container .wpcf7 form p .wpcf7-form-control-wrap .wpcf7-checkbox .wpcf7-list-item label input[type=checkbox] {
    margin: 6px 0 0;
  }
}
#homePage .contact-container .wpcf7 form p .wpcf7-form-control-wrap .wpcf7-checkbox .wpcf7-list-item label input[type=checkbox]::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 4px;
  width: 4px;
  height: 8px;
  border: 1px solid var(--main-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.1s;
}
#homePage .contact-container .wpcf7 form p .wpcf7-form-control-wrap .wpcf7-checkbox .wpcf7-list-item label input[type=checkbox]:checked::after {
  opacity: 1;
}
#homePage .contact-container .wpcf7 form p .wpcf7-form-control-wrap .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: var(--main-color);
  font-family: var(--font-family-serif);
}
@media only screen and (max-width: 767px) {
  #homePage .contact-container .wpcf7 form p .wpcf7-form-control-wrap .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label {
    flex: 1;
    margin: 0 0 0 13px;
  }
}
#homePage .contact-container .wpcf7 form p .wpcf7-spinner {
  display: none;
}
#homePage .contact-container .wpcf7 form p .wpcf7-submit {
  margin: 0 auto;
  cursor: pointer;
  color: var(--white);
  font-weight: bold;
  width: 271px;
  height: 74px;
  font-size: 16px;
  line-height: 27px;
  border: none;
  background: var(--gray);
  border-radius: 10px;
  position: relative;
  z-index: 2;
  font-family: var(--font-family-serif);
}
#homePage .contact-container .wpcf7 form p .wpcf7-submit:hover {
  background: var(--main-color);
}
#homePage .contact-container .wpcf7 form .wpcf7-response-output {
  display: none;
}
#homePage .contact-container .wpcf7 form p:has(.label-group) {
  padding: 0;
}
#homePage .contact-container .wpcf7 form .group-input p {
  display: flex;
  gap: 17px;
}
@media only screen and (max-width: 767px) {
  #homePage .contact-container .wpcf7 form .group-input p {
    gap: 11px;
  }
}
#homePage .contact-container .wpcf7 form .group-input p .wpcf7-form-control-wrap {
  width: 50%;
}
#homePage .contact-container .wpcf7 form p:has(.wpcf7-form-control-wrap[data-name=checkbox-667]) {
  position: relative;
  min-height: 37px;
  padding: 0 0 13px;
}
@media only screen and (max-width: 767px) {
  #homePage .contact-container .wpcf7 form p:has(.wpcf7-form-control-wrap[data-name=checkbox-667]) {
    margin: 0 0 35px;
  }
}
#homePage .contact-container .wpcf7 form p:has(.wpcf7-form-control-wrap[data-name=checkbox-667]) .wpcf7-form-control-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  #homePage .contact-container .wpcf7 form p:has(.wpcf7-form-control-wrap[data-name=checkbox-667]) .wpcf7-form-control-wrap {
    position: unset;
    transform: unset;
  }
}
#homePage .contact-container .wpcf7 form p:has(.wpcf7-form-control-wrap):has(.wpcf7-not-valid) {
  min-height: 60px;
}
#homePage .contact-container .wpcf7 form p:has(.wpcf7-submit) {
  display: flex;
  margin: 0 auto;
  width: fit-content;
  position: relative;
}
#homePage .contact-container .wpcf7 form p:has(.wpcf7-submit)::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 74px;
  background-color: var(--blue-3);
  border-radius: 10px;
  top: 4px;
  left: 3px;
  z-index: 1;
}
#homePage .contact-container .wpcf7 .sent p {
  display: none !important;
}
#homePage .contact-container .mail-notification {
  display: none;
  max-width: 607px;
  margin: 91px auto 0;
  text-align: center;
  font-size: 15px;
  border: none;
  padding: 0;
  letter-spacing: 0;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  #homePage .contact-container .mail-notification {
    margin: 20px auto 0;
    white-space: normal;
  }
}
#homePage .contact-container .text-note {
  font-size: 15px;
  display: none;
  margin: 0 auto;
  padding: 29px 0 76px;
  line-height: 27px;
  color: var(--red);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #homePage .contact-container .text-note {
    padding: 20px 20px 71px;
  }
}
#homePage .contact-success {
  padding: 76px 275px 0;
}
@media only screen and (max-width: 767px) {
  #homePage .contact-success {
    padding: 32px 24px 0;
  }
}

.title-common {
  text-align: center;
  font-size: 30px;
  line-height: 100%;
  font-weight: 700;
  font-family: var(--font-family-serif);
  color: var(--main-color);
  margin: 0 0 14px;
}
@media only screen and (max-width: 767px) {
  .title-common {
    line-height: 43px;
  }
}
