@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
[v-cloak] {
  display: none;
}

#app {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

:root {
  --font-roboto: "Roboto", sans-serif;
  --font-noto: "Noto Sans JP", sans-serif;
  --font-oswald: "Oswald", sans-serif;
  --font-line: "LINE Seed JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --default-color: #323335;
  --blue: #083388;
  --thin-blue: #EFF9FF;
  --middle-blue: #76B5DA;
}

@media (max-width: 780px) {
  .pc-only {
    display: none !important;
  }
}
@media (min-width: 781px) {
  .sp-only {
    display: none !important;
  }
}
.inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 780px) {
  .H1kjc {
    padding: 0 !important;
  }
}
main {
  overflow: hidden;
}

._headerwrap {
  height: 74px;
  width: 100%;
}

.slideup {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slideup-active {
  opacity: 1;
  transform: translateY(0);
}

._header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 74px;
  z-index: 100;
}
._header .header-menu {
  display: flex;
  align-items: center;
}
._header .header-menu ul li {
  list-style: none;
}
._header .header-menu ul li a {
  color: #323335;
  font-size: 16px;
  padding: 20px;
  position: relative;
  text-decoration: none;
  display: inline-block;
}
._header .header-menu ul li a span {
  position: relative;
}
._header .header-menu ul li a span:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: #323335;
  left: 0;
  bottom: -2px;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
._header .header-menu ul li a span.active:before {
  opacity: 1;
}
._header .header-menu ul li a:hover span:before {
  opacity: 1;
}
._header .header-menu .menu-list {
  display: flex;
}
@media (max-width: 780px) {
  ._header .header-menu .menu-list {
    display: none;
  }
}
._header .header-menu .more {
  position: relative;
}
._header .header-menu .more .title {
  font-size: 16px;
  padding: 20px;
  padding-bottom: 28px;
  color: #323335;
  position: relative;
}
@media (max-width: 780px) {
  ._header .header-menu .more .title {
    display: none;
  }
}
._header .header-menu .more .title:after {
  content: "";
  position: absolute;
  right: 6px;
  top: calc(50% - 2px);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  border-color: #323335 transparent transparent transparent;
  transition: transform 0.3s ease;
}
._header .header-menu .more .title:hover {
  cursor: pointer;
}
._header .header-menu .more .title:hover:after {
  transform: translateY(-50%) rotate(-180deg);
}
._header .header-menu .more ul {
  position: absolute;
  right: 0;
  top: calc(100% + 36px);
  width: 250px;
  height: auto;
  background-color: #fff;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 10;
}
@media (max-width: 780px) {
  ._header .header-menu .more ul {
    box-sizing: border-box;
    position: fixed;
    top: 74px;
    right: 0;
    width: 100%;
    max-width: 455px;
    height: calc(100vh - 74px);
    background-color: #fff;
    z-index: 10;
    transform: translateY(0);
    margin-left: 0;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    overflow-y: scroll;
    transform: translateX(103%);
    transition: transform 0.1s ease;
  }
  ._header .header-menu .more ul.open {
    transform: translateX(0);
  }
}
._header .header-menu .more ul::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 20px;
  border-width: 0 8px 10px 8px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
  filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.08));
}
@media (max-width: 780px) {
  ._header .header-menu .more ul::before {
    display: none;
  }
}
._header .header-menu .more ul li a {
  padding: 10px;
}
@media (max-width: 780px) {
  ._header .header-menu .more ul li a {
    padding: 20px;
  }
}
@media (min-width: 781px) {
  ._header .header-menu .more ul.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}
._header .header-menu .spbtn {
  width: 20px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: transparent;
}
._header .header-menu .spbtn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #323335;
  position: relative;
  transition: background 0.3s;
}
._header .header-menu .spbtn span:before, ._header .header-menu .spbtn span:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #323335;
  left: 0;
  transition: transform 0.2s, top 0.2s, bottom 0.2s;
}
._header .header-menu .spbtn span:before {
  top: -8px;
}
._header .header-menu .spbtn span:after {
  bottom: -8px;
}
._header .header-menu .spbtn:hover {
  cursor: pointer;
}
._header .header-menu .spbtn.open span {
  background: transparent;
}
._header .header-menu .spbtn.open span:before {
  top: 0;
  transform: rotate(45deg);
}
._header .header-menu .spbtn.open span:after {
  bottom: 0;
  transform: rotate(-45deg);
}
@media (min-width: 781px) {
  ._header .header-menu .spbtn {
    display: none;
  }
}

/*swiper*/
.swiper .swiper-pagination {
  position: relative;
}
.swiper .swiper-pagination.swiper-pagination-bullets {
  padding: 20px 0 !important;
}
.swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: #323335;
  width: 10px;
  height: 10px;
}
.swiper._white .swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
}

.posiab {
  position: relative;
}

.swiper-button-next,
.swiper-button-prev {
  box-sizing: border-box;
  width: calc((100vw - 940px) / 2) !important;
  height: 100% !important;
  top: 0 !important;
  display: flex;
  align-items: center;
  min-width: 46px;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 28px !important;
  font-weight: bold;
  color: #323335;
  top: 50%;
  transform: translateY(-50%);
}
.swiper-button-next._scorporate:after,
.swiper-button-prev._scorporate:after {
  transform: translateY(calc(-50% - 60px));
}
.swiper-button-next._white:after,
.swiper-button-prev._white:after {
  color: #fff;
}

.swiper-button-next {
  right: 0px;
}

.swiper-button-prev {
  left: 0px;
}

.googlemap {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 870px) {
  .googlemap {
    flex-direction: column;
  }
}
@media (max-width: 531px) {
  .googlemap {
    gap: 3.7664783427vw;
    margin-top: 5.6497175141vw;
  }
}
@media (max-width: 531px) {
  .googlemap._mb50 {
    margin-bottom: 50px;
  }
}
.googlemap a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 80%;
  width: 100%;
  height: 50px;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  background-color: rgba(250, 190, 0, 0.95);
  font-size: 16px;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 1.2;
}
@media (max-width: 531px) {
  .googlemap a {
    font-size: 3.7664783427vw;
    height: 9.4161958569vw;
    line-height: 1;
    max-width: 90%;
  }
}
.googlemap a .fs {
  font-size: 13px;
}
@media (max-width: 531px) {
  .googlemap a .fs {
    font-size: 2.6365348399vw;
  }
}
.googlemap a:hover {
  background-color: #fabe00;
}

._top .css-1sxfiya {
  min-height: 600px;
  height: calc(50vh - 0px);
}
@media (max-width: 800px) {
  ._top .css-1sxfiya {
    min-height: 633px;
  }
}
@media (max-width: 500px) {
  ._top .css-1sxfiya {
    min-height: auto !important;
    height: auto;
  }
}
@media (max-width: 800px) {
  ._top .css-1sxfiya .dHl2A {
    min-height: 30vh;
  }
}
@media (max-width: 500px) {
  ._top .css-1sxfiya .dHl2A {
    min-height: 80vw;
    height: 83vw;
  }
}
@media (max-width: 500px) {
  ._top .css-1sxfiya .tly1t {
    padding: 0 2vw 12vw !important;
  }
  ._top .css-1sxfiya .tly1t .sTtmz {
    padding: 4vw !important;
  }
}
._top ._pb40 {
  padding-bottom: 40px !important;
}

@media (max-width: 468px) {
  #f5vw {
    font-size: 5vw !important;
  }
}
.mimoza {
  background-color: #fff462;
}

#font-mintyou h2,
#font-mintyou h3,
#font-mintyou p {
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "Hiragino Mincho Pro", "MS PMincho", "Times New Roman", serif !important;
  font-weight: bold;
}

.top-news {
  max-width: 1100px;
  margin: 60px auto;
}
@media (max-width: 780px) {
  .top-news {
    margin: 40px auto;
  }
}
.top-news .article-list {
  margin-bottom: 20px;
}

.article-lists {
  margin: 40px 0 50px;
}
.article-lists .article-tags {
  margin-bottom: 40px;
}
@media (max-width: 780px) {
  .article-lists .article-tags {
    margin-bottom: 20px;
  }
}
.article-lists .article-tags .tag {
  display: inline-block;
  font-size: 14px;
  padding: 5px 14px;
  border-radius: 4px;
  background-color: var(--thin-blue);
  color: var(--default-color);
  margin: 0 10px 10px;
  opacity: 0.8;
  transition: all 0.3s;
}
@media (max-width: 780px) {
  .article-lists .article-tags .tag {
    margin: 0 3px 6px;
  }
}
.article-lists .article-tags .tag._active {
  opacity: 1;
  color: #fff;
  background-color: var(--middle-blue);
}
.article-lists .article-tags .tag:hover {
  cursor: pointer;
  opacity: 1;
}
.article-lists .article-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
.article-lists .article-pagination-wrapper {
  position: relative;
}
.article-lists .article-pagination-wrapper .nums {
  margin-left: 0;
}
.article-lists .article-pagination-wrapper .nums .num {
  display: inline-block;
  margin: 0 10px;
  list-style-type: none;
}
@media (max-width: 780px) {
  .article-lists .article-pagination-wrapper .nums .num {
    margin: 0 4px;
  }
}
.article-lists .article-pagination-wrapper .nums .num a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: var(--default-color);
  border-radius: 10px;
  text-decoration: none;
  width: 50px;
  height: 50px;
  background-color: var(--thin-blue);
  transition: all 0.3s;
  border: solid 3px var(--thin-blue);
}
@media (max-width: 780px) {
  .article-lists .article-pagination-wrapper .nums .num a {
    width: 35px;
    height: 35px;
  }
}
.article-lists .article-pagination-wrapper .nums .num a:hover {
  opacity: 0.7;
  border-color: var(--middle-blue);
}
.article-lists .article-pagination-wrapper .nums .num._active a {
  background-color: var(--middle-blue);
  color: #fff;
  border-color: var(--middle-blue);
}
.article-lists .article-pagination-wrapper .nums .num._active a:hover {
  opacity: 1;
  cursor: default;
}
.article-lists .article-pagination-wrapper .prev,
.article-lists .article-pagination-wrapper .next {
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.article-lists .article-pagination-wrapper .prev:hover,
.article-lists .article-pagination-wrapper .next:hover {
  cursor: pointer;
}
.article-lists .article-pagination-wrapper .prev:before,
.article-lists .article-pagination-wrapper .next:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-bottom: solid 3px var(--default-color);
  border-right: solid 3px var(--default-color);
  transform-origin: center center;
}
.article-lists .article-pagination-wrapper .prev {
  left: -40px;
  opacity: 0.5;
}
.article-lists .article-pagination-wrapper .prev:hover {
  cursor: default;
}
.article-lists .article-pagination-wrapper .prev:before {
  transform: rotate(135deg);
}
.article-lists .article-pagination-wrapper .next {
  right: -40px;
}
.article-lists .article-pagination-wrapper .next:before {
  transform: rotate(-45deg);
}

.article-list {
  margin-left: 0 !important;
}
.article-list-item {
  list-style-type: none;
  border-bottom: solid 3px #eee;
}
.article-list-item a {
  text-decoration: none;
  display: flex;
  align-items: center;
  opacity: 1;
  transition: opacity 0.3s;
  color: var(--default-color);
  padding: 20px 5px;
}
@media (max-width: 780px) {
  .article-list-item a {
    flex-direction: column;
    padding: 15px 0;
  }
}
.article-list-item a:hover {
  opacity: 0.7;
}
.article-list-item a ._data {
  display: flex;
  align-items: center;
  width: 250px;
}
@media (max-width: 780px) {
  .article-list-item a ._data {
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 10px;
    font-size: 14px;
  }
}
.article-list-item a ._data .date {
  width: 100px;
  margin-right: 10px;
  font-weight: bold;
}
@media (max-width: 780px) {
  .article-list-item a ._data .date {
    width: 80px;
  }
}
.article-list-item a ._data .tag {
  font-size: 15px;
  background-color: var(--thin-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  min-width: 90px;
  padding: 3px 5px;
  height: 25px;
  border-radius: 5px;
  font-weight: bold;
}
@media (max-width: 780px) {
  .article-list-item a ._data .tag {
    font-size: 13px;
    height: 20px;
  }
}
.article-list-item a ._txt {
  width: calc(100% - 250px);
  padding-left: 10px;
  font-weight: bold;
}
@media (max-width: 780px) {
  .article-list-item a ._txt {
    width: 100%;
    padding-left: 0;
    font-size: 14px !important;
    font-weight: normal;
  }
}

#article-details .pankuzu {
  margin: 20px 0 80px;
}
#article-details .pankuzu ul {
  margin-left: 0;
}
#article-details .pankuzu ul li {
  display: inline-block;
  color: #323335;
  font-size: 14px !important;
  margin-right: 20px;
}
#article-details .pankuzu ul li a {
  text-decoration: underline;
  color: #ccc;
  transition: color 0.2s;
  position: relative;
}
#article-details .pankuzu ul li a:hover {
  color: #323335;
}
#article-details .pankuzu ul li a:after {
  position: absolute;
  content: ">";
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}
#article-details .article {
  color: var(--default-color);
}
#article-details .article-title {
  font-size: 40px !important;
  font-weight: bold;
}
@media (max-width: 780px) {
  #article-details .article-title {
    font-size: 28px !important;
  }
}
#article-details .article-data {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0 50px;
}
@media (max-width: 780px) {
  #article-details .article-data {
    margin: 20px 0 40px;
  }
}
#article-details .article-data .tag span {
  font-size: 16px;
  padding: 5px 14px;
  border-radius: 4px;
  background-color: #eff9ff;
}
@media (max-width: 780px) {
  #article-details .article-data .tag span {
    font-size: 14px;
  }
}
#article-details .article-data .date span {
  font-size: 18px;
}
@media (max-width: 780px) {
  #article-details .article-data .date span {
    font-size: 14px;
  }
}
#article-details .article-content .thumb {
  margin-bottom: 40px;
}
#article-details .article-content .thumb img {
  width: 100%;
}
#article-details .article-content p {
  font-size: 16px !important;
  margin-bottom: 1.5em;
  line-height: 1.8;
  font-weight: normal;
}
#article-details .article-content p a {
  text-decoration: underline;
  color: #57a4e3;
}
#article-details .article-content .back-list {
  margin: 80px 0;
}
#article-details .article-content .back-list-link {
  text-decoration: none;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 350px;
  height: 60px;
  border-radius: 60px !important;
  color: var(--blue);
  background-color: #fff;
  border: solid 1px var(--blue);
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s;
}
@media (max-width: 780px) {
  #article-details .article-content .back-list-link {
    max-width: 350px;
    width: 100%;
  }
}
#article-details .article-content .back-list-link:hover {
  opacity: 0.8;
}

#privacy-policy {
  font-weight: normal;
}
#privacy-policy p {
  font-size: 15px !important;
  margin-bottom: 2em;
}
#privacy-policy ul {
  margin: 1em 0 1em 2em;
  font-size: 15px !important;
}
#privacy-policy ul li {
  font-size: 15px !important;
}
#privacy-policy .bold {
  display: block;
  font-weight: bold;
  font-size: 16px;
}

.bkimg_rimutore {
  background-image: url(../images/b84a27f4-8979-4719-9d3d-173fdf039a23.avif);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
}

._show {
  display: block !important;
}

._hide {
  display: none !important;
}

.contact__form-title {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fcb900;
  color: #fff;
  font-weight: bold;
  padding: 60px;
  font-size: 48px;
}
@media (max-width: 1280px) {
  .contact__form-title {
    font-size: 36px;
    padding: 60px 10px;
  }
}
@media (max-width: 780px) {
  .contact__form-title {
    font-size: 28px;
  }
}

.contact__form {
  max-width: 1340px;
  margin: 0 auto;
  padding: 40px 40px 100px;
}
@media (max-width: 780px) {
  .contact__form {
    padding: 40 20px 90px;
  }
}
.contact__form-inner .error-message {
  display: none;
}
.contact__form-inner .item {
  display: flex;
  border-bottom: solid 1px #CDCDCD;
}
@media (max-width: 910px) {
  .contact__form-inner .item {
    flex-direction: column;
  }
}
.contact__form-inner .item__label {
  width: 485px;
  padding: 40px 55px 40px 0;
  font-size: 20px;
}
@media (max-width: 1440px) {
  .contact__form-inner .item__label {
    width: 300px;
  }
}
@media (max-width: 910px) {
  .contact__form-inner .item__label {
    width: 100%;
    padding: 10px 0 5px;
    font-size: 16px;
  }
}
.contact__form-inner .item__label label {
  display: block;
  width: 100%;
  height: 85px;
  display: flex;
  align-items: center;
  font-weight: bold;
}
@media (max-width: 780px) {
  .contact__form-inner .item__label label {
    height: 40px;
  }
}
.contact__form-inner .item__label label.required {
  position: relative;
}
.contact__form-inner .item__label label.required:after {
  position: absolute;
  content: "必須";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  background-color: #F39B01;
  width: 60px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
@media (max-width: 780px) {
  .contact__form-inner .item__label label.required:after {
    font-size: 14px;
    width: 50px;
    height: 30px;
  }
}
.contact__form-inner .item__input {
  width: calc(100% - 485px);
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1440px) {
  .contact__form-inner .item__input {
    width: calc(100% - 300px);
  }
}
@media (max-width: 910px) {
  .contact__form-inner .item__input {
    width: 100%;
    padding: 0 0 30px;
  }
}
.contact__form-inner .item__input input,
.contact__form-inner .item__input select,
.contact__form-inner .item__input textarea {
  font-size: 20px;
  box-sizing: border-box;
  width: 100%;
  height: 85px;
  background-color: #F5F5F2;
  border-radius: 10px;
  border: none;
  padding: 0 30px;
}
@media (max-width: 780px) {
  .contact__form-inner .item__input input,
  .contact__form-inner .item__input select,
  .contact__form-inner .item__input textarea {
    height: 70px;
    font-size: 16px;
  }
}
.contact__form-inner .item__input .select-wrap {
  position: relative;
}
.contact__form-inner .item__input .select-wrap ._arrow {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: #323232;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.contact__form-inner .item__input select {
  -webkit-appearance: none;
  appearance: none;
}
.contact__form-inner .item__input textarea {
  font-size: 20px;
  padding: 30px;
  min-height: 12em;
}
@media (max-width: 780px) {
  .contact__form-inner .item__input textarea {
    min-height: 12em;
    font-size: 16px;
  }
}
.contact__form-inner .item__input ._entered {
  display: none;
  color: #414141;
}
.contact__form-inner .item__input ._error {
  background-color: #ffe6ea;
}
.contact__form-inner .item__input ._cation {
  display: none;
  color: #ff6c6c;
}
.contact__form-inner .agree {
  margin: 70px 0 20px;
  display: flex;
  justify-content: center;
}
.contact__form-inner .agree .check._error {
  background-color: #ffe6ea;
}
@media (max-width: 910px) {
  .contact__form-inner .agree {
    margin: 40px 0 20px;
  }
}
.contact__form-inner .agree input[type=checkbox] {
  display: none;
}
.contact__form-inner .agree input[type=checkbox]:checked + label:after {
  display: block;
}
.contact__form-inner .agree label {
  position: relative;
  font-size: 18px;
  line-height: 1;
}
.contact__form-inner .agree label:before, .contact__form-inner .agree label:after {
  position: absolute;
  content: "";
}
.contact__form-inner .agree label:before, .contact__form-inner .agree label:after {
  width: 25px;
  height: 25px;
  border: solid 1px #CDCDCD;
  border-radius: 5px;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
}
.contact__form-inner .agree label:after {
  border: none;
  border-radius: 0;
  display: none;
  background-image: url(../images/check.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 95%;
}
.contact__form-inner .agree label a {
  color: #F39B01;
}
.contact__form-inner .contact-btn {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #000;
  max-width: 400px;
  width: 100%;
  height: 60px;
  border-radius: 60px;
  margin: 0 auto;
  background-color: #fff;
  position: relative;
  transition: all 0.2s ease;
  opacity: 0.7;
}
.contact__form-inner .contact-btn:before, .contact__form-inner .contact-btn:after {
  position: absolute;
  content: "";
  width: 30px;
  height: 1px;
  background-color: #000;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.contact__form-inner .contact-btn:after {
  width: 15px;
  transform: translateY(-50%) rotate(35deg);
  transform-origin: calc(100% - 1px) 50%;
}
.contact__form-inner .contact-btn:hover {
  cursor: pointer;
  opacity: 1;
}
.contact__form-inner .contact-btn._gray {
  background-color: #F5F5F2;
  border: none;
}
.contact__form-inner .contact-btn._gray:before, .contact__form-inner .contact-btn._gray:after {
  display: none;
}
.contact__form-inner .btn-list {
  display: none;
}
.contact__form-inner .btn-list ._gray {
  margin-top: 10px;
}

.thanks {
  margin: 100px auto;
}
.thanks h2 {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.53;
  margin-bottom: 2em;
  text-align: center;
  padding: 0;
}
@media (max-width: 780px) {
  .thanks h2 {
    font-size: 18px;
  }
}
.thanks p {
  padding: 0 10px;
  text-align: center;
  font-size: 16px;
  line-height: 2;
}
@media (max-width: 780px) {
  .thanks p {
    font-size: 15px;
  }
}
.thanks .rebtn {
  padding: 0 30px;
  margin-top: 50px;
}
.thanks .rebtn a {
  max-width: 400px;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-weight: bold;
  font-size: 16px;
  border: solid 1px #CDCDCD;
  margin: 0 auto;
  text-decoration: none;
  color: #000;
}

/*# sourceMappingURL=add.css.map */
