/*---base---*/

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 108px;
  scroll-behavior: smooth;
}

body {
  font-family: "游ゴシック体","Yu Gothic",YuGothic,"Noto Sans JP","Noto Sans Japanese","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  background: white;
}

a {
  display: block;
}

table,th,td {
	border-collapse: collapse;
}

p,ul {
  margin: 0;
}

img {
  width: 100%;
}

/*---header---*/ 

.header {
  width: 100%;
  position: fixed;
  background: #ff7198;
  z-index: 100;
  height: 96px;

  @media screen and (max-width: 639px) {
    height: 94px;
  }
}

.header__text {
  background-color: var(--light-blue);
  font-size: 12px;
  color: white;
  height: 34px;
  padding: 10px;

  @media screen and (max-width: 639px) {
    font-size: 11px;
  }
}

.header__link {
  position: relative;
  display: flex;

  @media screen and (min-width: 641px) {
    justify-content: space-between;
    align-items: center;
  }
}

.header__logo {
  width: 68%;
  margin: 0;

  @media screen and (min-width: 641px) {
    width: 300px;
  }

  a {
    img {
      width: 100%;
      margin: 0px 15px;

      @media screen and (min-width: 641px) {
        width: 400px;
        padding: 0 20px;
        margin: 5px 0 0;
      }
    }
  }
}


/*---gnavi---*/

.gnavi__wrap {
  display: none;

  @media screen and (min-width: 641px) {
    display: block;
    padding: 0 15px 0 0;
    margin: 20px 0 0;
  }
}

.gnavi__lists {
  display: flex;
  list-style: none;

  @media screen and (max-width: 639px) {
    width: 100%;
    display: block;
    list-style: none;
    margin: 0 0 15px;

    li {
      width: 100%;
      position: relative;
      
      a:link,a:visited,a:hover {
        color: black;
        text-decoration: none;
        font-weight: bold;
        font-size: 14px;
        display: block;
        padding: 15px;
        height: auto;
        border-bottom: 1px dashed #cacaca;
      }

      &::after {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 15px;
        background: url(/images/pet-buzz-festa/icon-arrow-right.webp);
        background-size: cover;
        width: 9px;
        height: 16px;
      }
    }
  }
}
.gnavi__list {
  position: relative;
  transition: all .3s;
  padding: 0 10px;
}
.gnavi__list:hover::before {
  background-color: #0071BB;
}
.gnavi__list a:link,
.gnavi__list a:visited,
.gnavi__list a:hover,
.gnavi__list p {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: white;
  font-size: 13px;
  font-weight: bold;
  transition: all .3s;
}

.gnavi__list a:hover,
.gnavi__list p:hover {
  color: white;
}

/*sp*/

.gnavi--sp {
  position: fixed;
  top: 94px;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  box-sizing: border-box;
  z-index: 5;
  height: 100%;
  overflow-y: scroll;
}

/* メニューが開いたとき */
.gnavi--sp.open {
  opacity: 1;
  pointer-events: auto;
}

/*---hamburger---*/

.hamburger {
  position: fixed;
  top: 20px;
  right: 0;
  width: 68px;
  height: 74px;
  cursor: pointer;
  z-index: 10; /* メニューより前に表示 */
  background: var(--blue);

  @media screen and (min-width: 641px) {
    top: 2px;
    display: none;
  }
}

.hamburger p,
.hamburger h2 {
  position: relative;
  top: 13px;
}

.hamburger__text {
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  color: white;
  margin-top: 10px;
}

.hamburger p span {
  display: block;
  height: 2px;
  width: 48%;
  background-color: white; /* ボタンの色 */
  margin: 6px auto;
  transition: 0.4s;
}


/* バツ印に変わるハンバーガーボタン */
.hamburger.active p span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active p span:nth-child(2) {
  opacity: 0; /* 真ん中の線を透明にする */
}

.hamburger.active p span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/*---main---*/
.main {
  background: #ffa0ba;
  padding: 108px 0 0;

  @media screen and (max-width: 639px) {
    padding: 95px 0 0;
  }
}

.main__inner {
  position: relative;
  width: 950px;
  
  margin: 0 auto;
  background: url(/images/pet-buzz-festa/main-pc.webp);
  background-size: cover;

  @media screen and (min-width: 640px) {
    height: 819px;
  }

  @media screen and (max-width: 639px) {
    background: url(/images/pet-buzz-festa/main-sp.webp) no-repeat;
    background-size: cover;
    width: 100%;
    padding-bottom: 135.7%;
  }
}

/*---button---*/

.button__area {
  position: relative;
  width: 450px;
  margin: 0 auto;

  @media screen and (max-width: 639px) {
    width: 280px;
    margin: 0 auto 10px;
  }

  &:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    background: url(/images/pet-buzz-festa/icon-arrow-right.webp);
    background-size: cover;
    width: 21px;
    height: 37px;

    @media screen and (max-width: 639px) {
      width: 13px;
      height: 23px;
      right: 13px;
    }
  }
}

.button__area--form-faq {
  width: 300px;
  margin: 0 auto 20px;

  @media screen and (max-width: 639px) {
    width: 100%;
  }
}

.button__area--main {
  display: none;

  @media screen and (min-width: 640px) {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
  }
}

.button__area--other {
  margin: 20px auto 0;
}

.button__area--under-main {
  display: none;

  @media screen and (max-width: 639px) {
    display: block;
    padding: 15px 0;
  }
}

a:link.button__pink,
a:visited.button__pink,
a:hover.button__pink {
  display: block;
  width: 100%;
  padding: 20px 0;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  background: #F94E9B;
  border: 3px solid #000000;
  color: white;
  box-shadow: 0 2px 9px 0 rgba(0,0,0,0.38);
  border-radius: 58.5px;

  @media screen and (max-width: 639px) {
    font-size: 18px;
    padding: 15px 0;
  }
}

a:hover.button__pink {
  background: #ff64aa;
}

a:link.button__orange,
a:visited.button__orange,
a:hover.button__orange {
  display: block;
  width: 100%;
  padding: 20px 0;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  background: #F9AB4E;
  border: 3px solid #000000;
  color: white;
  box-shadow: 0 2px 9px 0 rgba(0,0,0,0.38);
  border-radius: 58.5px;

  @media screen and (max-width: 639px) {
    font-size: 18px;
    padding: 15px 0;
  }
}

a:hover.button__orange {
  background: #FFB051;
}

a:link.button__insta,
a:visited.button__insta,
a:hover.button__insta {
  display: block;
  width: 100%;
  padding: 20px 0;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  background: black;
  border: 3px solid #000000;
  color: white;
  box-shadow: 0 2px 9px 0 rgba(0,0,0,0.38);
  border-radius: 58.5px;

  @media screen and (max-width: 639px) {
    padding: 15px 0;
    font-size: 16px;
  }
}

a:link.button__lottery,
a:visited.button__lottery,
a:hover.button__lottery {
  background: #FFFFFF;
  border-radius: 59px;
  font-size: 16px;
  color: #BA8F09;
  letter-spacing: 0;
  text-align:center;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 48px 12px 12px;

  @media screen and (max-width: 639px) {
    width: 100%;
  }

  &:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    background: url(/images/pet-buzz-festa/icon-arrow-lottery.webp);
    background-size: cover;
    width: 22px;
    height: 17.18px;
  }
}

a:link.button__form-faq,
a:visited.button__form-faq,
a:hover.button__form-faq,
a:link.button__return-top,
a:visited.button__return-top,
a:hover.button__return-top {
  background: #fff;
  border-radius: 59px;
  font-size: 16px;
  color: #000000;
  border: 1px solid #ea7cad;
  letter-spacing: 0;
  text-align:center;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 24px 12px 12px;

  @media screen and (max-width: 639px) {
    width: 100%;
  }

  &:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    background: url(/images/pet-buzz-festa/icon-arrow-faq.webp);
    background-size: cover;
    width: 22px;
    height: 17.18px;
  }
}

/*---contents---*/

.contents {
  padding: 70px 0;

  @media screen and (max-width: 639px) {
    padding: 30px 0;
  }
}

.contents--top {
  padding: 158px 0 70px;

  @media screen and (max-width: 639px) {
    padding: 120px 0 30px;
  }
}

.contents--photobooth {
  padding: 0 0 70px;

  @media screen and (max-width: 639px) {
    padding: 0 0 30px;
  }
}

.contents--prologue {
  background: url(/images/pet-buzz-festa/bg-prologue.webp);
  background-repeat: repeat;
}

.contents--program {
  background: url(/images/pet-buzz-festa/bg-program.webp);
  background-repeat: repeat;
}

.contents--lottery {
  background: #D09D02;
}

.contents--venue {
  background: #ECF1E9;
}

.contents--faq {
  background: #F6F6F6;
}

.contents__inner {
  width: 830px;
  margin: 0 auto;
  text-align: center;

  @media screen and (max-width: 639px) {
    width: 90%;
  }
}

.contents__inner--prologue {
  background: white;
  border: 4px solid #EA7CAD;
  box-shadow: 0 2px 9px 0 rgba(0,0,0,0.38);
  border-radius: 10px;
  padding: 50px;

  @media screen and (max-width: 639px) {
    padding: 18px;
    border: 3px solid #EA7CAD;
  }
}

.contents__inner--program {
  background: white;
  border: 4px solid #66B2C0;
  box-shadow: 0 2px 9px 0 rgba(0,0,0,0.38);
  border-radius: 10px;
  padding: 50px 30px;

  @media screen and (max-width: 639px) {
    padding: 18px;
  }
}
/*---prologue---*/

.prologue__text {
  font-size: 18px;
  color: black;
  font-weight: bold;
  line-height: 1.6;
  padding: 0 0 20px;

  @media screen and (max-width: 639px) {
    font-size: 14px;
  }
}

.prologue__insta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 30px;

  @media screen and (max-width: 639px) {
    display: block;
    margin: 0 0 15px;
  }
}

.prologue__insta-button {
  position: relative;
  width: 300px;
  margin: 0 15px 0 0;

  @media screen and (max-width: 639px) {
    margin: 0 auto;
  }

  &:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 38px;
    background: url(/images/icon-insta.webp);
    background-size: cover;
    width: 40px;
    height: 40px;

    @media screen and (max-width: 639px) {
      width: 34px;
      height: 34px;
      left: 44px;
    }

  }
}

.prologue__insta-illust {
  width: 190px;

  @media screen and (max-width: 639px) {
    width: 120px;
    margin: 20px auto;
  }
}

/*title*/

.title {
  width: 503px;
  height: 109px;
  margin: 0 auto 40px;

  @media screen and (max-width: 639px) {
    width: 100%;
    height: auto;
    margin: 0 auto 15px;
  }
}

.title--present {
  width: 680px;
  height: 214px;

  @media screen and (max-width: 639px) {
    width: 100%;
    height: auto;
  }
}

.title--lottery {
  width: 835px;
  height: 135px;

  @media screen and (max-width: 639px) {
    width: 100%;
    height: auto;
  }
}

.title--photobooth {
  width: 1007px;
  height: 269px;
  margin: 0 auto;

  @media screen and (max-width: 639px) {
    width: 100%;
    height: auto;
  }
}

.title--venue {
  width: 732px;
  height: 286px;

  @media screen and (max-width: 639px) {
    width: 100%;
    height: auto;
  }
}

.title__subtitle {
  font-size: 25px;
  text-align: left;
  padding: 30px 0 20px;

  @media screen and (max-width: 639px) {
    font-size: 20px;
  }
}

/*---requirements---*/

.requirements__heading {
  color: white;
  background: #EA7CAD;
  font-size: 24px;
  font-weight: bold;
  padding: 15px 0;

  @media screen and (max-width: 639px) {
    font-size: 16px;
    padding: 10px 0;
  }
}

.requirements__body {
  background: #FFECF5;
  text-align: left;
  padding: 15px 10px 15px 120px;
  margin: 0 0 30px;

  @media screen and (max-width: 639px) {
    padding: 10px;
    margin: 0 0 15px;
  }

  p {
    color: black;
    font-size: 16px;
    line-height: 1.6;

    @media screen and (max-width: 639px) {
      font-size: 14px;
      padding: 0 0 8px;
    }

    &:before {
      content: "・";
    }
  }
}

/*---text---*/

.text {
  color: black;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 20px;

  @media screen and (max-width: 639px) {
    font-size: 14px;
  }
}

.text--lottery {
  color: white;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 20px;

  @media screen and (max-width: 639px) {
    font-size: 14px;
  }
}

/*---present---*/

.present__list {
  display: flex;
  justify-content: space-between;
  list-style: none;

  @media screen and (max-width: 639px) {
    display: block;
    width: 90%;
    margin: 0 auto;
  }

  li {
    width: 194px;

    @media screen and (max-width: 639px) {
      width: 100%;
    }
  }
}

.present__images {
  width: 194px;
  height: 194px;
  margin: 0 0 20px;

  @media screen and (max-width: 639px) {
    width: 100%;
    height: auto;
    margin: 0 0 12px;
  }
}

.present__name {
  font-size: 20px;
  font-weight: bold;
  padding: 0 0 15px;

  @media screen and (max-width: 639px) {
    font-size: 16px;
    padding: 0 0 7px;
  }
}

.present__info {
  font-size: 14px;
  line-height: 1.6;
  padding: 0 0 25px;
}

/*---lottery---*/

.lottery {
  width: 764px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  margin: 0 0 30px;

  @media screen and (max-width: 639px) {
    width: 100%;
    display: block;
    margin: 0 0 20px;
  }
}

.lottery__images {
  width: 291px;
  margin: 0 60px 0 0;

  @media screen and (max-width: 639px) {
    width: 100%;
    margin: 0 0 15px;
  }
}

.lottery__info {
  color: white;
  text-align: left;
}

.lottery__name {
  font-weight: bold;
  font-size: 20px;

  @media screen and (max-width: 639px) {
    font-size: 16px;
    text-align: center;
  }
}

.lottery__price {
  font-weight: bold;
  font-size: 100px;
  line-height: 1;

  @media screen and (max-width: 639px) {
    font-size: 84px;
    text-align: center;
  }

  span {
    font-size: 50px;

    @media screen and (max-width: 639px) {
      font-size: 36px;
    }
  }
}

.lottery__requirements {
  width: 416px;
  border: 1px solid white;
  margin: 15px 0 0;

  @media screen and (max-width: 639px) {
    width: 100%;
    margin: 15px 0 0;
  }
}

.lottery__requirements-heading {
  display: inline-block;
  background: white;
  color: #D7A60D;
  font-weight: bold;
  padding: 5px;

  @media screen and (max-width: 639px) {
    font-size: 14px;
  }
}

.lottery__requirements-body {
  font-size: 18px;
  padding: 15px;

  @media screen and (max-width: 639px) {
    font-size: 14px;
  }
}

.lottery__button-area {
  display: flex;
  justify-content: center;

  @media screen and (max-width: 639px) {
    display: block;
  }
}

.lottery__faq {
  margin: 0 12px 0 0;

  @media screen and (max-width: 639px) {
    margin: 0 0 10px;
  }
}

.lottery__faq,.lottery__accommodation {
  position: relative;
}

.lottery__slider {
  padding: 50px 0 0;

  @media screen and (max-width: 639px) {
    padding: 30px 0 0;
  }
}

/*---hotel---*/

.hotel__list-title {
  color: white;
  font-size: 18px;
  padding: 20px 0 15px;
}

.hotel__list {
  color: white;

  li {
    line-height: 1.5;
    text-align: left;
    font-size: 14px;

    span {
      font-size: 12px;
    }
  }

  @media screen and (max-width: 639px) {
    padding: 0 0 20px;
  }
}

/*---photobooth---*/

.photobooth {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFABAE;
  border-radius: 22px;
  padding: 50px;
  margin: 40px 0 0;

  @media screen and (max-width: 639px) {
    display: block;
    padding: 15px;
    margin: 20px 0 0;
  }
}

.photobooth__left {
  width: 494px;
  margin: 0 20px 0 0;

  @media screen and (max-width: 639px) {
    width: 100%;
    margin: 0;
  }
}

.photobooth__right {
  width: 334px;

  @media screen and (max-width: 639px) {
    width: 100%;
    margin: 0;
  }
}

/*---program---*/

.timetable {
  list-style: none;
  padding: 0 0 30px;

  li {
    font-size: 18px;
    font-weight: bold;
    padding: 0 0 15px;

    @media screen and (max-width: 639px) {
      font-size: 14px;
      padding: 0 0 10px;
    }
  }
}

.program__info {
  color: #66B2C0;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  padding: 0 0 20px;

  @media screen and (max-width: 639px) {
    font-size: 16px;
  }
}

.program__contents {
  display: flex;
  justify-content: space-between;

  @media screen and (max-width: 639px) {
    display: block;
  }
}

.program__item {
  width: 352px;

  @media screen and (max-width: 639px) {
    width: 100%;
  }
}

.program__item-heading {
  background: #66B2C0;
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 10px 0;

  @media screen and (max-width: 639px) {
    font-size: 16px;
  }
}

.program__item-body {
  color: black;
  font-size: 14px;
  text-align: left;
  padding: 15px 0;
}

/*---exhibitors---*/

.exhibitors__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;

  li {
    width: 196px;
    margin: 0 0 15px;

    @media screen and (max-width: 639px) {
      width: 48%;
    }
  }
}

/*---outline---*/

.outline {
  width: 100%; 

  tr {
    border-bottom: 1px dashed #cacaca;

    th {
      width: 200px;
      font-weight: bold;
      text-align: right;
      font-size: 18px;
      vertical-align: top;
      padding: 15px 30px 15px 0;

      @media screen and (max-width: 639px) {
        display: block;
        width: 100%;
        text-align: left;
        font-size: 14px;
        padding: 10px 0 5px;
      }
    }

    td {
      width: 500px;
      text-align: left;
      font-size: 18px;
      vertical-align: top;
      line-height: 1.5;
      padding: 15px;

      @media screen and (max-width: 639px) {
        display: block;
        width: 100%;
        font-size: 14px;
        padding: 0 0 10px;
      }
    }
  }
}

.map {
  margin: 30px auto;
  width: 100%;
  position: relative;
}

.map iframe {
  width: 100%;
  height: 50vh;
}

.map img {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 129px;
  height: 120px;

  @media screen and (max-width: 639px) {
    right: -12px;
    width: 110px;
    height: 98px;
  }
}

/*---faq---*/

.faq__list {
  list-style: none;

  li {
    position: relative;
    background: #f1f1f1;
    padding: 15px;
    border-radius: 8px;
    margin: 0 0 10px;
  }
}

.faq__question {
  font-weight: bold;
  font-size: 14px;
  color: black;
  text-align: left;

  span {
    display: inline-block;
    font-weight: bold;
    color: black;
    border: 1px solid black;
    width: 33px;
    height: 33px;
    border-radius: 33px;
    line-height: 33px;
    text-align: center;
    margin: 0 10px 0 0;
  }
}

.faq__answer {
  display: flex;
  align-items: center;
  position: relative;
  background: white;
  padding: 15px;
  margin: 15px 0 0;

  span {
    display: inline-block;
    font-weight: bold;
    color: #ffa0ba;
    border: 1px solid #ffa0ba;
    width: 33px;
    height: 33px;
    border-radius: 33px;
    line-height: 33px;
    text-align: center;
    margin: 0 10px 0 0;
  }

  p {
    text-align: left;
    font-size: 14px;
    line-height: 1.6;

    a {
      display: inline;
    }
  }
}

/*---footer---*/

.footer {
  background: #ffa0ba;
  padding: 20px;
}

.footer__link-area {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffc0d1;
  padding: 20px 0 0;
  margin: 20px 0 0;
}

.footer__link-list {
  display: flex;
  list-style: none;

  a:link,a:visited,a:hover {
    display: block;
    font-size: 14px;
    color: white;
    text-decoration: none;
    padding: 10px 20px;

    @media screen and (max-width: 639px) {
      font-size: 12px;
      padding: 5px;
    }
  }
}

.footer__tyl-logo {
  width: 81px;
  margin: 0 auto;

  a img {
    width: 81px;
    height: 40px;
  }
}

.footer__insta {
  a img {
    width: 56px;
    height: 56px;
  }
}

/*---br---*/

.display-pc {
  display: block;

  @media screen and (max-width: 639px) {
    display: none;
  }
}

.display-sp {
  display: none;

  @media screen and (max-width: 639px) {
    display: block;
  }
}

.display-pc--inline {
  display: inline-block;

  @media screen and (max-width: 639px) {
    display: none;
  }
}

.display-sp--inline {
  display: none;

  @media screen and (max-width: 639px) {
    display: inline-block;
  }
}

.note {
  font-size: 12px;
  line-height: 1.4;
}

/*---contact---*/

.contact {
  padding: 50px 0;
}

.contact__tab {
  display: flex;
  overflow: hidden;
}

.contact__tab-links {
  width: 49%;
}

.contact__tab-links+.contact__tab-links {
  margin-left: auto;
}

.contact__tab a {
  color: #fff;
  padding: 10px 15px;
  cursor: pointer;
  border: none;
  text-align: left;
  transition: 0.3s;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  line-height: 24px;
  text-align: center;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: #c9c9c9;
}
.contact__tab a:hover {
  background-color: #eee;
}
.contact__tab .contact__tab-active {
  background-color: #ffa0ba;
  font-weight: bold;
}

.contact__inner {
  background: #ffe7ee;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 30px;
}

.contact__title {
  font-size: 24px;
  padding: 0 0 20px;

  @media screen and (max-width: 639px) {
    font-size: 20px;
  }
}

.contact__agree {
  text-align: center;

  .wpcf7-form-control-wrap {
    position: relative;

    .wpcf7-list-item {
      display: inline-block;
      margin: 0;

      label {
        position: relative;
        display: inline-flex;
        align-items: center;
        cursor: pointer;
        padding-left: 28px;
        margin: 20px 0 0 0;

        input[type=checkbox] {
          position: absolute;
          opacity: 0;
          width: 0;
          height: 0;
        }

        .wpcf7-list-item-label {
          position: relative;

          &:before {
            content: "";
            position: absolute;
            left: -28px;
            top: 50%;
            width: 18px;
            height: 18px;
            margin-top: -9px;
            box-sizing: border-box;
            border: 2px solid #c7d3e4;
            border-radius: 4px;
            background: #fafafa;
            transition: border-color 0.15s ease, background-color 0.15s ease;
          }

          &:after {
            cotntent: "";
          }
          a {
            display: inline;
          }
        }
      }
    }
  }

  @media screen and (max-width: 639px) {
    font-size: 13px;
  }
}

.contact__agree .wpcf7-checkbox input[type=checkbox]:focus + .wpcf7-list-item-label::before,
.contact__agree .wpcf7-acceptance input[type=checkbox]:focus + .wpcf7-list-item-label::before {
  border-color: #007aff;
}

.contact__agree .wpcf7-checkbox input[type=checkbox]:checked + .wpcf7-list-item-label::before,
.contact__agree .wpcf7-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  border-color: #007aff;
  background: #007aff;
}

.contact__agree .wpcf7-checkbox input[type=checkbox]:checked + .wpcf7-list-item-label::after,
.contact__agree .wpcf7-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: -22px;
  top: 50%;
  width: 6px;
  height: 10px;
  margin-top: -7px;
  border-right: 2px solid #fafafa;
  border-bottom: 2px solid #fafafa;
  transform: rotate(45deg);
}

/*---form---*/

.form {
  width: 750px;
  margin: 0 auto;
  text-align: left;

  @media screen and (max-width: 639px) {
    width: 100%;
  }
}

.form__label {
  padding: 0 0 15px;
}

.form__heading {
  font-size: 18px;
  font-weight: bold;
  padding: 0 0 8px;

  .form__required {
    background: #ff5f5f;
    color: white;
    font-size: 14px;
    padding: 4px 6px;
    border-radius: 5px;
    font-weight: normal;
  }

  @media screen and (max-width: 639px) {
    font-size: 15px;
  }
}

.form__input {
  width: 100%;
  font-size: 18px;
  border-radius: 5px;
  border: 1px solid #8a8a8a;
  padding: 15px;

  @media screen and (max-width: 639px) {
    font-size: 16px;
  }
}

.form__submit {
  display: block;
  width: 300px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  margin: 20px auto;
  height: 60px;
  text-align:center;
  border: none;
  background-size: 300% 100%;
  border-radius: 50px;
  moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  background-image: linear-gradient(
    to right,
    #eb3941,
    #f15e64,
    #e14e53,
    #e2373f
  );
  box-shadow: 0 5px 15px rgba(242, 97, 103, 0.4);

  @media screen and (max-width: 639px) {
    width: 100%;
  }
}

.form__submit:hover {
  background-position: 100% 0;
  moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.form__submit:focus {
  outline: none;
}

.form .wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 14px;
  font-weight: normal;
  display: block;
  margin-top: 10px;

  @media screen and (max-width: 639px) {
    font-size: 12px;
  }
}

.form .wpcf7-response-output {
  padding: 10px;
  font-size: 14px;
  line-height: 1.4;
}

.form__label--radio {
  border: none;
}

.form__label--radio .wpcf7-list-item {
  display: block;
  margin: 0;
}

.form__label--radio label {
  display: flex;
  align-items: center;
  gap: 0 .5em;
  position: relative;
  width: 100%;
  padding: 15px;
  margin: 0 0 8px;
  border: 1px solid #ffa0ba;
  border-radius: 3px;
  background-color: white;
  cursor: pointer;
  font-size: 15px;
}

.form__label--radio label:has(:checked) {
  background-color: #ffa0ba;
  color: #fff;
  font-weight: bold;
}
