/* --------------------------------------------------------------------------------
 * web fonts
-------------------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css2?family=Sen:wght@400..800&display=swap");
/* ----------------------------------------------------------------------
 reset (exculding 'sup')
---------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

input, textarea {
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

img {
  vertical-align: middle;
}

/* ----------------------------------------------------------------------
 basic setting
---------------------------------------------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #3B3B3B;
  line-height: 1.5;
  /*
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  */
}

body * {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}

input, button, textarea, select {
  color: #3B3B3B;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}

textarea {
  vertical-align: top;
}

*:focus {
  outline: none;
}

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

a:hover {
  backface-visibility: hidden;
}

strong {
  font-weight: 700;
}

/* ----------------------------------------------------------------------
 common class
---------------------------------------------------------------------- */
@media only screen and (min-width: 751px) {
  .pc-non {
    display: none !important;
  }
}
@media only screen and (max-width: 750px) {
  .sp-non {
    display: none !important;
  }
}
.t-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

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

.tCenter {
  text-align: center;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.telLink {
  color: inherit;
  text-decoration: none;
}
@media only screen and (min-width: 751px) {
  .telLink {
    pointer-events: none;
  }
}

.wrapper {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .wrapper {
    width: auto;
  }
}

.hover-opacity {
  transition: 0.3s;
}
@media only screen and (min-width: 751px) {
  .hover-opacity {
    transition: opacity 0.3s;
  }
  .hover-opacity:hover {
    opacity: 0.7;
  }
}

.title-primary {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 48px;
}
@media only screen and (max-width: 750px) {
  .title-primary {
    font-size: 26px;
    margin-bottom: 40px;
  }
}

.title-secondary {
  font-size: 30px;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .title-secondary {
    font-size: 22px;
  }
}

.text-primary {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.border-dot {
  font-weight: bold;
  border-bottom: 3px dotted #FAE11D;
}

.btn-cv {
  display: inline-block;
  border-radius: 24px;
  box-shadow: 4px 6px 4px 0px rgba(76, 76, 76, 0.25);
}
@media only screen and (max-width: 750px) {
  .btn-cv {
    border-radius: 6.4vw;
  }
}

.color-blue {
  color: #0089CD;
}

/* ----------------------------------------------------------------------
 Button
---------------------------------------------------------------------- */
/* ----------------------------------------------------------------------
 Header
---------------------------------------------------------------------- */
.l-header {
  height: 80px;
}
@media only screen and (max-width: 750px) {
  .l-header {
    height: 72px;
  }
}
.l-header__inner {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 80px;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 120px;
  border-bottom: 3px solid #EDEDED;
}
@media only screen and (max-width: 750px) {
  .l-header__inner {
    height: 72px;
    padding: 0 16px 0 18px;
  }
}
.l-header .logo {
  width: 64px;
}
@media only screen and (max-width: 750px) {
  .l-header .logo {
    width: 48px;
  }
}
.l-headerNavi__list {
  display: flex;
  gap: 0 24px;
}
@media only screen and (max-width: 750px) {
  .l-headerNavi__list {
    gap: 0 8px;
  }
}
.l-headerNavi__list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 45px;
  border-radius: 50vh;
  color: #0089CD;
  border: 2px solid #0089CD;
  text-decoration: none;
}
.l-headerNavi__list a.blue {
  background-color: #0089CD;
  color: #fff;
}
.l-headerNavi__list a.yellow {
  background-color: #FAE11D;
  border-color: #FAE11D;
  color: inherit;
}
@media only screen and (max-width: 750px) {
  .l-headerNavi__list a {
    height: 40px;
    width: 98px;
    font-size: 12px;
  }
}

/* ----------------------------------------------------------------------
 Main
---------------------------------------------------------------------- */
.main {
  background-color: #0089CD;
}

.mv {
  background-color: #F9F9F9;
  height: 567px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 750px) {
  .mv {
    height: auto;
    padding-top: 60px;
  }
}
.mv__img {
  width: 1242px;
  position: absolute;
  bottom: 0;
  left: calc(50% - 600px);
}
@media only screen and (max-width: 750px) {
  .mv__img {
    width: 100%;
    position: static;
    padding: 0 16px;
  }
}

.cv {
  text-align: center;
  background: url(../img/bg_fv.png) no-repeat center center;
  padding: 0 16px;
}
.cv__balloon {
  display: inline-block;
  width: 534px;
  background: url(../img/line_balloon.png) no-repeat center bottom/contain;
  color: #fff;
  font-weight: bold;
  font-size: 50px;
}
@media only screen and (max-width: 750px) {
  .cv__balloon {
    width: 295px;
    font-size: 32px;
  }
}
.cv__balloon .large {
  font-size: 80px;
}
@media only screen and (max-width: 750px) {
  .cv__balloon .large {
    font-size: 56px;
  }
}
.cv__small {
  font-weight: bold;
  font-size: 44px;
  color: #fff;
}
@media only screen and (max-width: 750px) {
  .cv__small {
    font-size: 28px;
  }
}
.cv__small .large {
  font-size: 64px;
}
@media only screen and (max-width: 750px) {
  .cv__small .large {
    font-size: 28px;
  }
}
.cv__arrow img {
  width: 56px;
}
@media only screen and (max-width: 750px) {
  .cv__arrow img {
    width: 32px;
  }
}
.cv__large {
  font-size: 56px;
  font-weight: bold;
  color: #FAE11D;
}
@media only screen and (max-width: 750px) {
  .cv__large {
    font-size: 32px;
  }
}
.cv__large .large {
  font-size: 88px;
}
@media only screen and (max-width: 750px) {
  .cv__large .large {
    font-size: 56px;
  }
}

.example {
  margin-top: 120px;
  padding-top: 100px;
  @media screen and (max-width: 750px){
    margin-top: 80px;
    padding-top: 72px;
  }
}
.example__title {
  color: #fff;
}
.example__read {
  text-align: center;
  font-size: 28px;
  color: #fff;
  @media screen and (max-width: 750px){
    font-size: 16px;
  }
}
.exampleList {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  @media screen and (max-width: 750px){
    align-items: center;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }
}
.exampleList__item a {
  background-color: #FAE11D;
  border-color: #FAE11D;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 80px;
  border-radius: 50vh;
  font-size: 20px;
  font-weight: 500;
}

.select {
  padding-top: 150px;
}
@media only screen and (max-width: 750px) {
  .select {
    padding: 90px 16px 0;
  }
}
.select__inner {
  max-width: 1210px;
  background-color: #fff;
  border-radius: 24px;
  border: 5px solid #0089CD;
  text-align: center;
  padding: 60px 85px 100px;
  margin: 0 auto;
}
@media only screen and (max-width: 750px) {
  .select__inner {
    padding: 24px 10px 48px;
  }
}
.select__read {
  font-size: 32px;
  font-weight: 500;
  display: inline-block;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .select__read {
    font-size: 16px;
  }
}
.select__read:before {
  content: "";
  background: url(../img/line_left.svg) no-repeat center center/contain;
  width: 22px;
  height: 22px;
  position: absolute;
  top: 20px;
  left: -30px;
}
@media only screen and (max-width: 750px) {
  .select__read:before {
    width: 15px;
    height: 15px;
    top: 10px;
    left: -20px;
  }
}
.select__read:after {
  content: "";
  background: url(../img/line_right.svg) no-repeat center center/contain;
  width: 22px;
  height: 22px;
  position: absolute;
  top: 20px;
  right: -30px;
}
@media only screen and (max-width: 750px) {
  .select__read:after {
    width: 15px;
    height: 15px;
    top: 10px;
    right: -20px;
  }
}
.select__title {
  margin-bottom: 90px;
  font-size: 32px;
  font-weight: 500;
}
@media only screen and (max-width: 750px) {
  .select__title {
    margin-top: 0.5em;
    font-size: 20px;
    margin-bottom: 30px;
  }
}
.select__title .large {
  font-size: 48px;
}
@media only screen and (max-width: 750px) {
  .select__title .large {
    font-size: 26px;
  }
}
.select__table {
  position: relative;
}
.select__table table {
  width: 100%;
}
@media only screen and (max-width: 750px) {
  .select__table table {
    width: 800px;
  }
}
.select__table table thead {
  font-size: 40px;
  font-weight: bold;
}
@media only screen and (max-width: 750px) {
  .select__table table thead {
    font-size: 18px;
  }
}
.select__table table thead th {
  text-align: center;
  padding: 8px 0;
  border: 1px solid #908D8D;
}
.select__table table tbody {
  font-size: 18px;
  font-weight: bold;
  text-align: left;
}
.select__table table tbody td {
  padding: 10px 20px;
  border: 1px solid #908D8D;
  vertical-align: middle;
}
@media only screen and (max-width: 750px) {
  .select__table table tbody td {
    padding: 8px 10px;
    font-size: 12px;
  }
}
.select__table table .color-blue {
  color: #0089CD;
}
.select__table table .bg-blue {
  background-color: #0089CD;
  color: #fff;
}
.select__table table .empty {
  border-style: none;
  background-color: #fff;
}
@media only screen and (max-width: 750px) {
  .select__table tr > *:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
    width: 104px;
  }
  .select__table .scrollable {
    overflow: auto;
  }
}
.selectBottom {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 750px) {
  .selectBottom {
    margin-top: 30px;
  }
}
.selectBottom__img {
  width: 194px;
}
@media only screen and (max-width: 750px) {
  .selectBottom__img {
    width: 22%;
  }
}
.selectBottom__left {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  width: 475px;
}
@media only screen and (max-width: 750px) {
  .selectBottom__left {
    font-size: 15px;
    flex: 1;
  }
}
.select__btn {
  text-align: center;
}

.container {
  max-width: 1104px;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .container {
    padding: 0 16px;
  }
}

.reason {
  margin-top: 120px;
  padding-top: 100px;
}
@media only screen and (max-width: 750px) {
  .reason {
    margin-top: 80px;
    padding-top: 72px;
  }
}
@media only screen and (max-width: 750px) {
  .reason__title {
    margin-bottom: 6px;
  }
}
@media only screen and (max-width: 750px) {
  .reasonHeader {
    display: flex;
    align-items: flex-end;
  }
  .reasonHeader__left {
    flex: 1;
    padding-bottom: 30px;
  }
}
.reason__title {
  color: #fff;
}
.reason__read {
  text-align: center;
  font-size: 28px;
  color: #fff;
}
@media only screen and (max-width: 750px) {
  .reason__read {
    font-size: 16px;
  }
}
.reason .float {
  position: absolute;
  right: 0px;
  top: 66px;
  width: 264px;
}
@media only screen and (max-width: 750px) {
  .reason .float {
    position: static;
    width: 25%;
  }
}
.reasonList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 56px 0;
  margin-top: 120px;
}
@media only screen and (max-width: 750px) {
  .reasonList {
    flex-direction: column;
    gap: 40px 0;
    margin-top: 0;
  }
}
.reasonList__item {
  width: calc(50% - 28px);
  background-color: #fff;
  border-radius: 24px;
  padding: 40px 48px;
}
@media only screen and (max-width: 750px) {
  .reasonList__item {
    width: 100%;
    padding: 18px 16px;
  }
}
.reasonList__icon {
  text-align: center;
  margin-bottom: 48px;
}
@media only screen and (max-width: 750px) {
  .reasonList__icon {
    margin-bottom: 16px;
  }
}
.reasonList__title {
  height: 3em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .reasonList__title {
    font-size: 22px;
    height: auto;
  }
}
.reasonList__text {
  margin-top: 24px;
}
@media only screen and (max-width: 750px) {
  .reasonList__text {
    font-size: 12px;
    margin-top: 12px;
  }
}
.reason__btn {
  margin-top: 100px;
  text-align: center;
}

.after {
  margin-top: 120px;
  padding-top: 100px;
}
@media only screen and (max-width: 750px) {
  .after {
    margin-top: 80px;
    padding-top: 72px;
  }
}
.after__title {
  color: #fff;
}
.afterList {
  display: flex;
  flex-direction: column;
  gap: 80px 0;
}
@media only screen and (max-width: 750px) {
  .afterList {
    gap: 40px 0;
    padding: 0 16px;
  }
}
.afterList__item {
  padding: 72px 72px 72px 120px;
  background-color: #fff;
  border-radius: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .afterList__item {
    flex-direction: column;
    padding: 72px 16px 16px;
    border-radius: 24px;
  }
}
.afterList__item:nth-child(2n-1) {
  flex-direction: row-reverse;
  padding: 72px 120px 72px 72px;
}
@media only screen and (max-width: 750px) {
  .afterList__item:nth-child(2n-1) {
    flex-direction: column;
    padding: 72px 16px 16px;
  }
}
.afterList__item:nth-child(2n-1) .afterList__num {
  left: auto;
  right: 16px;
}
@media only screen and (max-width: 750px) {
  .afterList__item:first-child {
    padding-top: 32px;
  }
}
.afterList__num {
  font-size: 88px;
  font-weight: 500;
  line-height: 1;
  font-family: "Sen", sans-serif;
  position: absolute;
  top: -36px;
  left: 16px;
  color: #FAE11D;
  text-shadow: -1px -1px 0 #0089CD, 1px -1px 0 #0089CD, -1px 1px 0 #0089CD, 1px 1px 0 #0089CD;
}
@media only screen and (max-width: 750px) {
  .afterList__num {
    font-size: 64px;
    top: -26px;
  }
}
.afterList__left {
  width: 622px;
}
@media only screen and (max-width: 750px) {
  .afterList__left {
    width: 100%;
    margin-top: 0px;
  }
}
.afterList__title {
  font-size: 30px;
  font-weight: 500;
  padding-bottom: 16px;
  border-bottom: 1px solid #D9D9D9;
  margin-bottom: 24px;
}
@media only screen and (max-width: 750px) {
  .afterList__title {
    font-size: 22px;
  }
}
.afterList__text + .afterList__text {
  margin-top: 24px;
}
.after__btn {
  text-align: center;
  margin-top: 100px;
  padding-top: 120px;
}
@media only screen and (max-width: 750px) {
  .after__btn {
    padding-top: 0;
    margin-top: 96px;
  }
}

.works {
  margin-top: 120px;
  padding-top: 100px;
  padding-bottom: 300px;
}
@media only screen and (max-width: 750px) {
  .works {
    margin-top: 40px;
    padding-bottom: 200px;
    padding-top: 48px;
  }
}
.works__title {
  color: #fff;
}
.works__bottom {
  border-top: 1px solid #262626;
  border-bottom: 1px solid #262626;
  position: relative;
  padding: 40px 20px 60px;
  flex: 1;
}
@media only screen and (max-width: 750px) {
  .works__bottom {
    padding: 20px;
  }
}
.worksList {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 12px;
}
@media only screen and (max-width: 750px) {
  .worksList {
    display: block;
    position: relative;
    margin: 0;
    padding-bottom: 96px;
  }
  .worksList .prev {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 64px;
    height: 64px;
    background: url(../img/prev.svg) no-repeat center center/contain;
    z-index: 2;
  }
  .worksList .next {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 64px;
    height: 64px;
    background: url(../img/next.svg) no-repeat center center/contain;
    z-index: 2;
  }
  .worksList .slick-track {
    display: flex;
  }
  .worksList .slick-slide {
    float: none;
    height: auto !important;
  }
  .worksList .slick-slide > div {
    height: 100%;
  }
  .worksList .slick-dots {
    position: absolute;
    bottom: -4px;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .worksList .slick-dots li {
    margin: 0 4px;
  }
  .worksList .slick-dots li button {
    -webkit-appearance: none;
    width: 8px;
    height: 8px;
    padding: 0;
    border-style: none;
    background: #fff;
    border-radius: 50%;
    text-indent: -9999px;
  }
  .worksList .slick-dots li.slick-active button {
    background: #95CBEB;
  }
}
.worksList__item {
  width: calc(50% - 6px);
  background-color: #fff;
  border-radius: 64px;
  border: 2px solid #5F5E5E;
  padding: 72px 40px 80px;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 750px) {
  .worksList__item {
    display: flex !important;
    padding: 24px 10px 32px;
    width: 100%;
    border-radius: 24px;
    height: 100%;
  }
}
.worksList__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 -1em;
}
.worksList__title .ja {
  font-size: 30px;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .worksList__title .ja {
    font-size: 22px;
  }
}
.worksList__title .en {
  font-size: 16px;
  font-weight: 500;
  color: #FAE11D;
  font-family: "Sen", sans-serif;
}
@media only screen and (max-width: 750px) {
  .worksList__title .en {
    font-size: 15px;
  }
}
.worksList__price {
  text-align: center;
  font-size: 26px;
  font-weight: 500;
}
@media only screen and (max-width: 750px) {
  .worksList__price {
    font-size: 20px;
  }
}
.worksList__price .large {
  font-size: 44px;
}
@media only screen and (max-width: 750px) {
  .worksList__price .large {
    font-size: 40px;
  }
}
.worksList__list {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0 12px;
}
.worksList__list li {
  position: relative;
  padding-left: 36px;
}
@media only screen and (max-width: 750px) {
  .worksList__list li {
    font-size: 15px;
  }
}
.worksList__list li:before {
  content: "";
  background: url(../img/icon_check.svg) no-repeat center center/contain;
  width: 28px;
  height: 28px;
  display: inline-block;
  position: absolute;
  top: 0px;
  left: 0px;
}
.worksCaution {
  margin-top: 1em;
}
.worksCaution__title {
  font-size: 16px;
}
.worksCaution__text {
  font-size: 14px;
}
.works__btn {
  margin-top: 80px;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .works__btn {
    margin-top: 48px;
    padding: 0 32px;
  }
}
.works__btn a {
  display: inline-block;
  background-color: #0089CD;
  font-size: 24px;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  width: 412px;
  border-radius: 24px;
  padding: 22px 0;
}
@media only screen and (max-width: 750px) {
  .works__btn a {
    width: 100%;
    font-size: 20px;
  }
}

.contact {
  padding-top: 1px;
  padding-bottom: 120px;
  background-color: #FFFCFC;
}
@media only screen and (max-width: 750px) {
  .contact {
    padding: 1px 16px 80px;
  }
}
.contact__inner {
  max-width: 1104px;
  margin: -120px auto 0;
  background-color: #fff;
  border-radius: 30px;
  padding: 100px 20px;
}
@media only screen and (max-width: 750px) {
  .contact__inner {
    padding: 24px 10px;
  }
}
.contact__title {
  font-size: 38px;
  text-align: center;
  margin-bottom: 80px;
}
@media only screen and (max-width: 750px) {
  .contact__title {
    font-size: 32px;
    margin-bottom: 24px;
  }
}
.contactForm {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media only screen and (max-width: 750px) {
  .contactForm {
    gap: 12px;
  }
}
.contactForm__tag {
  font-size: 20px;
  font-weight: bold;
}
@media only screen and (max-width: 750px) {
  .contactForm__tag {
    font-size: 16px;
  }
}
.contactForm__tag .required {
  color: #d44629;
}
.contactForm__text {
  margin-top: 10px;
}
@media only screen and (max-width: 750px) {
  .contactForm__text {
    margin-top: 0;
  }
}
.contactForm__privacy {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
}
@media only screen and (max-width: 750px) {
  .contactForm__privacy {
    margin-top: 10px;
    font-size: 16px;
  }
}
.contactForm__btn {
  margin-top: 48px;
}
@media only screen and (max-width: 750px) {
  .contactForm__btn {
    margin-top: 32px;
  }
}

input[type=text].form-text,
input[type=email].form-text,
input[type=tel].form-text {
  width: 100%;
  height: 80px;
  border: 2px solid rgba(137, 174, 192, 0.64);
  background-color: rgba(146, 219, 255, 0.03);
  border-radius: 20px;
  font-size: 25px;
  font-weight: 500;
  padding: 0 1.5em;
  margin: 0;
}
input[type=text].form-text::-moz-placeholder, input[type=email].form-text::-moz-placeholder, input[type=tel].form-text::-moz-placeholder {
  color: #908E8E;
}
input[type=text].form-text::placeholder,
input[type=email].form-text::placeholder,
input[type=tel].form-text::placeholder {
  color: #908E8E;
}
@media only screen and (max-width: 750px) {
  input[type=text].form-text,
  input[type=email].form-text,
  input[type=tel].form-text {
    border-radius: 12px;
    font-size: 16px;
    width: 100%;
    height: 36px;
  }
}

textarea.form-textarea {
  width: 100%;
  height: 208px;
  border: 2px solid rgba(137, 174, 192, 0.64);
  background-color: rgba(146, 219, 255, 0.03);
  border-radius: 20px;
  font-size: 25px;
  font-weight: 500;
  padding: 0.6em 1.5em;
  margin: 0;
}
textarea.form-textarea::-moz-placeholder {
  color: #908E8E;
}
textarea.form-textarea::placeholder {
  color: #908E8E;
}
@media only screen and (max-width: 750px) {
  textarea.form-textarea {
    border-radius: 12px;
    font-size: 16px;
    width: 100%;
    height: 150px;
  }
}

.form-select {
  -webkit-appearance: none;
  border: 2px solid rgba(137, 174, 192, 0.64);
  background-color: rgba(146, 219, 255, 0.03);
  border-radius: 20px;
  font-size: 25px;
  font-weight: 500;
  padding: 0 1.5em;
  background: url(../img/arrow_select.svg) no-repeat center right 1em/20px;
  height: 80px;
  margin: 0;
}
@media only screen and (max-width: 750px) {
  .form-select {
    border-radius: 12px;
    font-size: 16px;
    width: 100%;
    height: 36px;
    background: url(../img/arrow_select.svg) no-repeat center right 0.6em/14px;
  }
}

.privacy-block {
  height: 200px;
  overflow: auto;
  padding: 1em;
  border: 2px solid rgba(137, 174, 192, 0.64);
  background-color: #fff;
}
@media only screen and (max-width: 750px) {
  .privacy-block {
    height: 150px;
  }
}
.privacy-block p + h2 {
  margin-top: 1em;
}
.privacy-block h3 {
  margin-top: 1em;
}
@media only screen and (max-width: 750px) {
  .privacy-block {
    font-size: 80%;
  }
}

.btn-send {
  -webkit-appearance: none;
  border-style: none;
  border-radius: 20px;
  background-color: #FAE11D;
  cursor: pointer;
  font-size: 30px;
  font-weight: bold;
  display: inline-block;
  width: 100%;
  padding: 20px 0;
}
@media only screen and (max-width: 750px) {
  .btn-send {
    border-radius: 12px;
    font-size: 16px;
    padding: 12px 0;
  }
}

.check-accept input {
  width: 20px;
  height: 20px;
  position: relative;
  top: 2px;
}

/* ----------------------------------------------------------------------
 Footer
---------------------------------------------------------------------- */
.footer .copyright {
  margin-top: 64px;
  background-color: #3B3B3B;
  color: #fff;
  text-align: center;
  font-size: 12px;
  padding: 27px 0;
}

.gotop {
  position: fixed;
  z-index: 10;
  right: 0px;
  bottom: 86px;
}
@media only screen and (max-width: 750px) {
  .gotop {
    width: 36px;
  }
}

.grecaptcha-badge {
  z-index: 10;
}
