/* sr用CSS */
/* 共通 */
@font-face {
  font-family: "adobe-clean";
  src: url("../fonts/AdobeCleanRegular.ttf") format("truetype");
  src: url("../fonts/AdobeCleanRegular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "adobe-clean";
  src: url("../fonts/AdobeCleanBold.ttf") format("truetype");
  src: url("../fonts/AdobeCleanBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
* {
  font-family: "adobe-clean", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}
.inner {
  padding: 90px 0;
  max-width: 980px;
}
.inner.no-bottom {
  padding: 60px 0 0;
}
footer .inner {
  padding: 0;
}
main {
  overflow: hidden;
}
img {
  width: 100%;
}
a {
  text-decoration: none;
  cursor: pointer;
}
li {
  list-style: none;
}
.sr-default-title {
  text-align: center;
  margin-bottom: 4rem;
}
.sr-default-title .main-ttl {
  font-size: 3.2rem;
  letter-spacing: 3px;
  display: inline-block;
  position: relative;
  z-index: 0;
  line-height: 1;
  font-weight: 600;
}
.sr-default-title .main-ttl span.text-middle {
  font-size: 3.8rem;
}
.sr-default-title .main-ttl::before {
  content: "";
  z-index: -1;
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
}
.sr-default-title .main-ttl.position-center::before {
  left: 50%;
  transform: translateX(-50%);
}
.sr-default-title .main-ttl.position-left::before {
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
}
.sr-default-title .main-ttl.circle-blue::before {
  background: linear-gradient(0deg, #5EE0E5 0%, #32CCE0 100%);
}
.sr-default-title .main-ttl.circle-yellow::before {
  background: linear-gradient(0deg, #F8C800 0%, #FDE20D 100%);
}
.sr-default-title.center-main {
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 15px 0 40px;
}
.sr-default-title.center-main .main-ttl {
  font-size: 2rem;
}
.sr-default-title.center-main .main-ttl::before {
  top: -70px;
}
.sr-default-title.single {
  padding-bottom: 40px;
}
.sr-default-title.single .main-ttl {
  font-size: 2.5rem;
}
.sr-default-title.single .main-ttl::before {
  width: 120px;
  height: 120px;
  top: -40px;
}
.sr-default-title.sub-type .main-ttl {
  font-size: 2.6rem;
}
.sr-defalt-btn {
  text-align: center;
}
.sr-defalt-btn .normal-btn {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  display: inline-block;
  min-width: 250px;
  height: 55px;
  line-height: 55px;
  padding: 0 20px;
  font-size: 1rem;
  box-sizing: border-box;
  transition: 0.3s;
  letter-spacing: 1px;
  border-radius: 10px;
  position: relative;
  background-color: #32CCE0;
  color: #fff;
}

/* キービジュアル */
.sr-key-visual .kv-image {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 600px;
  background: url("../../assets/img/sr-kv.png") no-repeat center center;
  background-size: cover;
}
.sr-key-visual .kv-image .catch {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.sr-key-visual .kv-image .catch p.big-text {
  font-size: 2.8rem;
  color: #fff;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
  text-shadow:1px 1px 6px rgba(0, 0, 0, 0.5);
}
.sr-key-visual .kv-image .catch .text-logo {
  background-color: #fff;
  border-radius: 15px;
  width: fit-content;
  padding: 10px 80px;
  margin: auto;
}
.sr-key-visual .kv-image .catch .text-logo h1 {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
}
.sr-key-visual .kv-image .catch .text-logo h1 img {
  width: 100px;
}
.sr-key-visual .kv-image .catch .text-logo h1 p {
  font-size: 1.7rem;
  color: #707070;
}

/* section1 */
.sr-section-1 .sr-default-title .main-ttl {
  font-size: 2.8rem;
  line-height: 1.5;
}
.sr-section-1 .sr-default-title .main-ttl::before {
  width: 180px;
  height: 180px;
}
.sr-section-1 .description {
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 600;
  width: 90%;
  margin: auto;
  position: relative;
}
.sr-section-1 .description::after {
  content: "";
  z-index: -1;
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(0deg, #F8C800 0%, #FDE20D 100%);
  right: -20px;
  bottom: -30px;
}
.sr-section-1 .column-flex {
  display: flex;
  gap: 20px;
  margin-top: 50px;
}
.sr-section-1 .column-flex .item {
  width: calc((100% - 40px) / 3);
  background-color: #E9EBF2;
  border-radius: 20px;
  padding: 30px 20px 20px;
  text-align: center;
}
.sr-section-1 .column-flex .item h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
  width: fit-content;
  position: relative;
  z-index: 1;
  padding: 0 5px;
  line-height: 1.4;
}
.sr-section-1 .column-flex .item h3::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 15px;
  background-color: #FDE20D;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.sr-section-1 .column-flex .item img {
  width: 70%;
}

/* section2 */
.sr-section-2 {
  background-color: #E4F6FA;
}
.sr-section-2 .bg-title {
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}
.sr-section-2 .bg-title::before {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 30px solid #fff;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
}
.sr-section-2 .bg-title p {
  font-size: 1.8rem;
  font-weight: bold;
  color: #32CCE0;
  line-height: 1.6;
  letter-spacing: 0.1rem;
}
.sr-section-2 .middle-text {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  color: #CC1F00;
}
.sr-section-2 .column-flex {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}
.sr-section-2 .column-flex .item {
  width: calc((100% - 40px) / 3);
  background-color: #fff;
  border: 1px solid #32CCE0;
  border-radius: 20px;
  padding: 30px 10px 20px;
  text-align: center;
}
.sr-section-2 .column-flex .item h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
  width: fit-content;
  position: relative;
  z-index: 1;
  padding: 0 5px;
  line-height: 1.4;
}
.sr-section-2 .column-flex .item h3::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 15px;
  background-color: #32CCE0;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.sr-section-2 .column-flex .item img {
  width: 50%;
  margin-bottom: 10px;
}
.sr-section-2 .column-flex .item p {
  line-height: 1.8;
  text-align: left;
  font-size: 0.9rem;
  text-indent: -1rem;
  padding-left: 1rem;
}
/* section3 */
.sr-section-3 .column-flex {
  display: flex;
  gap: 30px;
}
.sr-section-3 .column-flex .item {
  position: relative;
  display: flex;
  flex-direction: column;
}
.sr-section-3 .column-flex .item::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #ddd;
  top: 0;
  left: -15px;
}
.sr-section-3 .column-flex .item:first-child::before {
  display: none;
}
.sr-section-3 .column-flex .item h3 {
  text-align: center;
}
.sr-section-3 .column-flex .item h3 span {
  color: #32CCE0;
  font-size: 1.3rem;
}
.sr-section-3 .column-flex .item .item-image {
  margin: 10px auto;
  width: 90%;
}
.sr-section-3 .column-flex .item p {
  flex-grow: 1;
  min-height: 120px;
}
.sr-section-3 .column-flex .item ul {
  flex-grow: 1;
}
.sr-section-3 .column-flex .item ul li {
  text-indent: -1rem;
  padding-left: 1rem;
}
/* section4 */
.sr-section-4 .table-wrap table {
  width: 100%;
  border-collapse: collapse;
}
.sr-section-4 .table-wrap table thead tr th {
  padding: 25px 20px;
  text-align: left;
}
.sr-section-4 .table-wrap table thead tr th:first-child {
  width: 20%;
  background-color: #F2F5F5;
}
.sr-section-4 .table-wrap table thead tr th:nth-child(2) {
  width: 40%;
  background-color: #F2F5F5;
}
.sr-section-4 .table-wrap table thead tr th:nth-child(3) {
  width: 40%;
  background-color: #32CCE0;
  color: #fff;
}
.sr-section-4 .table-wrap table tbody tr td {
  padding: 25px 20px;
  text-align: left;
  border-bottom: 1px solid #D8D8D8;
}
.sr-section-4 .table-wrap table tbody tr th{
  border-bottom: 1px solid #D8D8D8;
  text-align: left;
  padding: 25px 20px;
}
.sr-section-4 .table-wrap table tbody tr td:nth-child(3) {
  background-color: #E4F6FA;
}
/* section5 */
.sr-section-5 .column-flex {
  display: flex;
  gap: 40px;
}
.sr-section-5 .column-flex .item-left {
  width: 55%;
}
.sr-section-5 .column-flex .item-left .sr-default-title {
  margin-bottom: 2rem;
}
.sr-section-5 .column-flex .item-left .sr-default-title .main-ttl {
  font-size: 2rem;
  line-height: 1.8;
  text-align: left;
}
.sr-section-5 .column-flex .item-left .sr-default-title .main-ttl::before {
  width: 180px;
  height: 180px;
}
.sr-section-5 .column-flex .item-left .description {
  line-height: 1.8;
  font-size: 1.1rem;
  position: relative;
}
.sr-section-5 .column-flex .item-left .description::after {
  content: "";
  z-index: -1;
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(0deg, #F8C800 0%, #FDE20D 100%);
  right: -60px;
  bottom: -30px;
}
.sr-section-5 .column-flex .item-right {
  width: 45%;
}
/* section6 */
.sr-section-6 .table-wrap {
  margin-top: 60px;
}
.sr-section-6 .table-wrap h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.sr-section-6 .table-wrap table {
  width: 100%;
  border-collapse: collapse;
}
.sr-section-6 .table-wrap table tr th,
.sr-section-6 .table-wrap table tr td {
  padding: 25px 20px;
  text-align: left;
  border-bottom: 1px solid #D8D8D8;
}
.sr-section-6 .table-wrap table tr th {
  background-color: #E4F6FA;
  min-width: 270px;
  width: 20%;
}
.sr-section-6 .table-wrap table tr td {
  position: relative;
}
.sr-section-6 .table-wrap table tr td .price {
  position: absolute;
  right: 20px;
  bottom: 10px;
  font-size: 1.2rem;
  font-weight: 600;
}
.sr-section-6 .table-wrap table tr td .price span {
  font-size: 1.5rem;
}
.sr-section-6 .table-wrap table tr td .attention {
  display: block;
  font-size: 0.9rem;
}
.sr-section-6 .table-wrap table tr td .td-flex {
  display: flex;
  gap: 30px;
}
.sr-section-6 .table-wrap table tr td .td-flex div:first-child {
  min-width: 230px;
}
.sr-section-6 .table-wrap table tr td .td-flex div:nth-child(2) {
  font-size: 1.1rem;
  font-weight: 600;
}
.sr-section-6 .table-wrap table tr td .td-flex div:nth-child(3) {
  font-size: 1.1rem;
  font-weight: 600;
}
.sr-section-6 .table-wrap table tr td .td-flex div:nth-child(3) span {
  font-size: 1.4rem;
}
.sr-section-6 .notice {
  margin-top: 30px;
}
/* section7 */
.sr-section-7 {
  background-color: #E4F6FA;
}
.sr-section-7 h3 {
  font-size: 1.3rem;
  text-align: center;
  font-weight: 600;
}
.sr-section-7 .description {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  margin: 40px auto;
}
.sr-section-7 .company-info {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.sr-section-7 .company-info p {
  padding-left: 30px;
  position: relative;
  font-size: 1.3rem;
}
.sr-section-7 .company-info p::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #0275C2;
}
.sr-section-7 .company-info p::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #fff;
}
.sr-section-7 .map {
  width: 100%;
  margin-top: 50px;
}
.sr-section-7 .map iframe {
  width: 100%;
  height: 400px;
}

@media only screen and (max-width: 1080px) {
  .inner {
    width: 90%;
    padding: 70px 0;
  }
  .sr-default-title .main-ttl {
    font-size: 2.2rem;
  }
  .sr-default-title .main-ttl span.text-middle {
    font-size: 2.8rem;
  }
  .sr-default-title .main-ttl::before {
    width: 110px;
    height: 110px;
  }
  .sr-default-title .main-ttl.position-left::before {
    left: -40px;
  }
  /* キービジュアル */
  .sr-key-visual .kv-image {
    max-height: 500px;
  }
  .sr-key-visual .kv-image .catch p.big-text {
    font-size: 2.2rem;
  }
  .sr-key-visual .kv-image .catch .text-logo h1 p {
    font-size: 1.5rem;
  }
  /* section1 */
  .sr-section-1 .sr-default-title .main-ttl {
    font-size: 2rem;
  }
  .sr-section-1 .sr-default-title .main-ttl::before {
    width: 140px;
    height: 140px;
  }
  .sr-section-1 .description {
    font-size: 1.1rem;
    width: 100%;
  }
  .sr-section-1 .column-flex .item h3 {
    font-size: 1.3rem;
  }
  /* section2 */
  .sr-section-2 .bg-title p {
    font-size: 1.5rem;
  }
  .sr-section-2 .middle-text {
    font-size: 1.3rem;
  }
  .sr-section-2 .column-flex .item h3 {
    font-size: 1.3rem;
  }
  /* section3 */
  /* section4 */
  /* section5 */
  .sr-section-5 .column-flex .item-left .sr-default-title .main-ttl {
    font-size: 1.4rem;
  }
  .sr-section-5 .column-flex .item-left .sr-default-title .main-ttl::before {
    width: 140px;
    height: 140px;
  }
  .sr-section-5 .column-flex {
    gap: 20px;
  }
  .sr-section-5 .column-flex .item-left .description {
    font-size: 1rem;
  }
  /* section6 */
  .sr-section-6 .table-wrap table tr th, 
  .sr-section-6 .table-wrap table tr td {
    padding: 25px 0 45px 20px;
  }
  .sr-section-6 .table-wrap table tr td .td-flex div:first-child {
    min-width: unset;
  }
  .sr-section-6 .table-wrap table tr td .td-flex {
    gap: 20px;
  }
  .sr-section-6 .table-wrap table tr td .td-flex div:nth-child(2) {
    font-size: 1rem;
  }
  .sr-section-6 .table-wrap table tr td .td-flex div:nth-child(3) span {
    font-size: 1.2rem;
  }
  .sr-section-6 .table-wrap table tr td .price {
    right: 0;
  }
  /* section7 */
  .sr-section-7 .map iframe {
    height: 300px;
  }
}

@media only screen and (max-width: 767px) {
  .inner {
    width: 90%;
    padding: 60px 0 40px;
  }
  .sr-default-title {
    margin-bottom: 2.5rem;
  }
  .sr-default-title .main-ttl {
    font-size: 1.6rem;
  }
  .sr-default-title .main-ttl::before {
    width: 80px;
    height: 80px;
  }
  .sr-default-title .main-ttl span.text-middle {
    font-size: 1.9rem;
  }
  /* キービジュアル */
  .sr-key-visual .kv-image .catch {
    gap: 30px;
  }
  .sr-key-visual .kv-image .catch .text-logo h1 {
    gap: 0;
    flex-direction: column;
  }
  .sr-key-visual .kv-image .catch .text-logo {
    width: 100%;
    padding: 5px 30px;
    max-width: 360px;
  }
  .sr-key-visual .kv-image .catch .text-logo h1 p {
    font-size: 1.3rem;
  }
  .sr-key-visual .kv-image .catch p.big-text {
    font-size: 1.5rem;
  }
  .sr-key-visual .kv-image {
    background: url("../../assets/img/sr-kv-sp.png") no-repeat center center;
    background-size: cover;
    max-height: 450px;
  }
  /* section1 */
  .sr-section-1 .sr-default-title .main-ttl {
    font-size: 1.4rem;
  }
  .sr-section-1 .sr-default-title .main-ttl::before {
    width: 110px;
    height: 110px;
  }
  .sr-default-title .main-ttl.position-left::before {
    left: -30px;
  }
  .sr-section-1 .description {
    font-size: 1rem;
  }
  .sr-section-1 .description::after {
    width: 80px;
    height: 80px;
    right: -20px;
    bottom: -20px;
  }
  .sr-section-1 .column-flex {
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
  }
  .sr-section-1 .column-flex .item {
    width: calc((100% - 10px) / 2);
    padding: 20px 5px;
  }
  .sr-section-1 .column-flex .item h3 {
    font-size: 1.1rem;
  }
  /* section2 */
  .sr-section-2 .inner {
    padding: 40px 0;
  }
  .sr-section-2 .bg-title {
    padding: 15px 10px;
    margin-bottom: 35px;
  }
  .sr-section-2 .bg-title p {
    font-size: 1.1rem;
  }
  .sr-section-2 .bg-title::before {
    bottom: -30px;
    border-top: 20px solid #fff;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
  }
  .sr-section-2 .middle-text {
    font-size: 1.1rem;
  }
  .sr-section-2 .column-flex {
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  .sr-section-2 .column-flex .item {
    width: 100%;
    padding: 20px;
  }
  .sr-section-2 .column-flex .item img {
    width: 35%;
  }
  .sr-section-2 .column-flex .item h3 {
    font-size: 1.2rem;
  }
  /* section3 */
  .sr-section-3 .column-flex {
    flex-direction: column;
    gap: 50px;
  }
  .sr-section-3 .column-flex .item::before {
    width: 100%;
    height: 1px;
    top: -25px;
    left: 0;
  }
  .sr-section-3 .column-flex .item p {
    min-height: unset;
    margin-bottom: 20px;
    font-size: 0.9rem;
  }
  .sr-section-3 .column-flex .item ul {
    font-size: 0.9rem;
  }
  /* section4 */
  .sr-section-4 .table-wrap table thead tr th {
    padding: 20px 5px;
    font-size: 0.8rem;
  }
  .sr-section-4 .table-wrap table tbody tr th {
    padding: 20px 5px;
    font-size: 0.8rem;
  }
  .sr-section-4 .table-wrap table tbody tr td {
    padding: 20px 5px;
    font-size: 0.8rem;
  }
  /* section5 */
  .sr-section-5 .column-flex {
    flex-direction: column;
  }
  .sr-section-5 .column-flex .item-left {
    width: 100%;
  }
  .sr-section-5 .column-flex .item-right {
    width: 100%;
  }
  .sr-section-5 .column-flex .item-left .sr-default-title .main-ttl {
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
  }
  .sr-section-5 .column-flex .item-left .sr-default-title .main-ttl::before {
    width: 110px;
    height: 110px;
  }
  .sr-section-5 .column-flex .item-left .description {
    font-size: 0.9rem;
  }
  .sr-section-5 .column-flex .item-left .description::after {
    width: 90px;
    height: 90px;
    right: -30px;
    bottom: -30px;
  }
  /* section6 */
  .sr-section-6 .table-wrap {
    margin-top: 50px;
  }
  .sr-section-6 .table-wrap h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  .sr-section-6 .table-wrap table tr th, 
  .sr-section-6 .table-wrap table tr td {
    padding: 20px 0 45px 10px;
    font-size: 0.9rem;
    display: block;
    width: 100%;
  }
  .sr-section-6 .table-wrap table tr th {
    min-width: unset;
    padding: 15px;
  }
  .sr-section-6 .table-wrap table tr td {
    padding: 15px 10px 40px;
  }
  .sr-section-6 .table-wrap table tr td .price {
    font-size: 1rem;
  }
  .sr-section-6 .table-wrap table tr td .price span {
    font-size: 1.3rem;
  }
  .sr-section-6 .table-wrap table tr td .td-flex {
    gap: 10px;
  }
  .sr-section-6 .table-wrap table tr td .td-flex div:nth-child(2) {
    font-size: 0.9rem;
  }
  .sr-section-6 .table-wrap table tr td .td-flex div:nth-child(3) {
    font-size: 0.9rem;
  }
  .sr-section-6 .table-wrap table tr td .td-flex div:nth-child(3) span {
    font-size: 1.1rem;
  }
  .sr-section-6 .table-wrap.adjust table tr td {
    padding: 15px 10px;
  }
  /* section7 */
  .sr-section-7 h3 {
    font-size: 1rem;
  }
  .sr-section-7 .description {
    font-size: 0.9rem;
    text-align: left;
    margin: 30px auto;
  }
  .sr-section-7 .company-info p {
    font-size: 1rem;
    width: 100%;
  }
  .sr-section-7 .map {
    margin-top: 30px;
  }
  .sr-section-7 .map iframe {
    height: 250px;
  }
}

/*------------------------------------
お問い合わせ用CSS
------------------------------------*/
input[type=text],
input[type=password],
input[type=datetime],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color],
select,
textarea,
.field {
  display: block;
  width: 100%;
  height: 45px;
  margin-bottom: 0;
  padding: 0 12px;
  border: 0;
  border-radius: 3px;
  background-color: #eff1f5;
  box-shadow: none;
  color: #5c6b80;
  font-size: 1em;
  line-height: 45px;
  transition: background-color 0.24s ease-in-out;
}
textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em;
  padding: 0.5em;
  overflow: auto;
}
.inquiry {
  margin-bottom: 1.5rem;
  border-collapse: collapse;
  width: 100%;
}
.inquiry th {
  text-align: left;
  font-size: 14px;
  color: #444;
  padding-right: 5px;
  width: 30%;
  background: #fff;
  border: solid 1px #d7d7d7;
  border-right: ;
}
.inquiry td {
  font-size: 13px;
  border: solid 1px #d7d7d7;
  background: #fff;
}
.entry-content .inquiry tr,
.entry-content table {
  border: solid 1px #d7d7d7;
}
.haveto {
  font-size: 11px;
  padding: 7px 12px;
  background: #32CCE0;
  color: #fff;
  border-radius: 5px;
  margin-right: 10px;
  position: relative;
  bottom: 1px;
}
.any {
  font-size: 11px;
  padding: 7px 12px;
  background: #AABCD4;
  color: #fff;
  border-radius: 5px;
  margin-right: 10px;
  position: relative;
  bottom: 1px;
}
.verticallist .wpcf7-list-item {
  display: block;
}
#formbtn {
  display: block;
  padding: 20px;
  width: 300px;
  background: #32CCE0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 15px;
  margin: 30px auto 0;
  line-height: 1;
  transition: 0.4s;
  border: none;
}
#formbtn:hover {
  background: #32CCE0;
  color: #fff;
}
.inquiry th {
  font-weight: 700;
  text-transform: uppercase;
  padding: 20px 15px;
}
.inquiry td {
  border-top: 1px solid #ededed;
  padding: 20px 15px;
}
input,
select,
textarea {
  border: 1px solid #dfdfdf;
  letter-spacing: 1px;
  margin: 0;
  max-width: 100%;
  resize: none;
}
.husei label span {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.husei br {
  display: none;
}
.husei label img {
  max-width: 80px;
}
.husei input {
  max-width: 320px;
}

@media only screen and (max-width: 1080px) {

}

@media only screen and (max-width: 767px) {
  .inquiry td,
  .inquiry th {
    display: block !important;
    width: 100% !important;
    border-top: none !important;
    box-sizing: border-box !important;
  }
  .inquiry tr:first-child th {
    border-top: 1px solid #d7d7d7 !important;
  }
  .inquiry .any,
  .inquiry .haveto {
    font-size: 10px;
  }
}
