@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
/* 数値計算関連の関数を使うために必要 (math.divなど)*/
body {
  color: #555555;
}

body {
  font-family: "Noto Sans JP", serif;
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}
@media screen and (min-width: 780px) {
  .pc-only {
    display: block;
  }
}

/*モバイルのみ表示*/
@media screen and (min-width: 780px) {
  .sp-only {
    display: none;
  }
}

/*画像の縦横比設定*/
img {
  width: 100%;
  height: auto;
  display: block;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
}

/* マウスホバーがあるデバイスでのアニメーション（タッチデバイス除く） */
@media (any-hover: hover) {
  a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  a:hover {
    opacity: 0.8;
  }
}
/* PC時tel無効*/
@media screen and (min-width: 780px) {
  a[href*="tel:"] {
    cursor: default;
    pointer-events: none;
    text-decoration: none;
  }
}
/* 数値計算関連の関数を使うために必要 (math.divなど)*/
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 780px) {
  html {
    font-size: 1.4545454545vw;
  }
}
@media (min-width: 1100px) {
  html {
    font-size: 16px;
  }
}

main {
  overflow: hidden;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core html defaults */
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* summary のデフォルトの三角を非表示にする */
summary {
  list-style: none;
  /* デフォルトのリストスタイルを無効化 */
}

/* Safari では list-style が効かない場合があるので、疑似要素で対応 */
summary::-webkit-details-marker {
  display: none;
}

.inner {
  width: 100%;
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .inner {
    max-width: 1150px;
    padding-inline: 25px;
  }
}

.fv {
  background: #FFFBD2;
  padding-top: 3.5625rem;
}
@media screen and (min-width: 780px) {
  .fv {
    padding-top: 4.3125rem;
  }
}

.fv__title {
  margin-inline: auto;
}

.fv__title-text {
  color: #FFF;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .fv__title-text {
    font-size: 2.1875rem;
    line-height: 1.0571428571;
    letter-spacing: 0.075rem;
  }
}

.fv__title-mask {
  position: relative;
  background: #333333;
  -webkit-transform: skewX(145deg);
          transform: skewX(145deg);
  /*傾斜をつける*/
  padding: 0.3125rem 1.25rem;
  max-width: 28.125rem;
}
@media screen and (min-width: 780px) {
  .fv__title-mask {
    max-width: 44.375rem;
    padding: 0.625rem 1.25rem;
  }
}

.fv__title-mask .fv__title-text {
  display: block;
  -webkit-transform: skewX(-145deg);
          transform: skewX(-145deg);
  /*テキストのみ傾斜を戻す*/
}

.fv__title-text--highlight {
  color: #FFEB00;
}

.fv__logo {
  width: 14.25rem;
  margin-inline: auto;
  margin-top: -10%;
}
@media screen and (min-width: 780px) {
  .fv__logo {
    margin-top: 1.1875rem;
    width: 27.4375rem;
  }
}

.fv__heading {
  font-size: 1.25rem;
  line-height: 2.2;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .fv__heading {
    font-size: 2.25rem;
    line-height: 1.2222222222;
    padding-top: 0.625rem;
  }
}

.fv__main-images {
  max-width: 100%;
  margin-top: 1.875rem;
}
@media screen and (min-width: 780px) {
  .fv__main-images {
    position: relative;
    margin-top: 1.75rem;
    max-width: 24.375rem;
    margin-inline: auto;
  }
}

@media screen and (min-width: 780px) {
  .fv__text-images__unit {
    position: absolute;
  }
}

@media screen and (min-width: 780px) {
  .fv__text-images__item01 {
    width: 9.5625rem;
    top: 8.875rem;
    left: -20.625rem;
  }
}

@media screen and (min-width: 780px) {
  .fv__text-images__item02 {
    width: 7.125rem;
    top: 18.5rem;
    left: -11.625rem;
  }
}

@media screen and (min-width: 780px) {
  .fv__text-images__item03 {
    width: 9.5625rem;
    top: 22.6875rem;
    left: -22.1875rem;
  }
}

@media screen and (min-width: 780px) {
  .fv__text-images__item04 {
    width: 10.6875rem;
    top: 9.3125rem;
    right: -21rem;
  }
}

@media screen and (min-width: 780px) {
  .fv__text-images__item05 {
    width: 7.125rem;
    top: 17.9375rem;
    right: -10.125rem;
  }
}

@media screen and (min-width: 780px) {
  .fv__text-images__item06 {
    width: 9.5625rem;
    top: 22.8125rem;
    right: -22.1875rem;
  }
}

.fv__btn {
  max-width: 21.875rem;
  padding: 1.0625rem 4.125rem;
  margin-top: 1.0625rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .fv__btn {
    padding: 1.0625rem 4.125rem 1.0625rem 6.25rem;
    margin-top: 1.75rem;
  }
}

.fv__btn-text {
  font-size: 1.25rem;
  margin-right: 0.6875rem;
  letter-spacing: 0.125rem;
}

.fv__btn-arrow {
  width: 1.25rem;
  height: 1.25rem;
}

.bg-decoration {
  position: relative;
  z-index: 0;
}

.bg-decoration__illust {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  content: "";
}

.bg-decoration__illust01 {
  background-image: url(../../img/emocli/bg_illust01.svg);
  width: 6.6875rem;
  height: 7.125rem;
  left: 0;
  top: 0;
}
@media screen and (min-width: 780px) {
  .bg-decoration__illust01 {
    width: 26.875rem;
    height: 32.625rem;
  }
}

.bg-decoration__illust02 {
  background-image: url(../../img/emocli/bg_illust02.svg);
  width: 9.375rem;
  height: 9.8125rem;
  right: 0;
  top: 0;
}
@media screen and (min-width: 780px) {
  .bg-decoration__illust02 {
    width: 40.25rem;
    height: 41.625rem;
  }
}

.bg-decoration__illust03 {
  background-image: url(../../img/emocli/bg_illust03.svg);
  width: 9.5rem;
  height: 9.1875rem;
  left: 0;
  top: 0;
}
@media screen and (min-width: 780px) {
  .bg-decoration__illust03 {
    width: 24.375rem;
    height: 23.5625rem;
    top: -20%;
    left: -15%;
  }
}

.bg-decoration__illust04 {
  background-image: url(../../img/emocli/bg_illust04.svg);
  width: 8.5rem;
  height: 6.4375rem;
  right: 0;
  top: 0;
}
@media screen and (min-width: 780px) {
  .bg-decoration__illust04 {
    width: 18.3125rem;
    height: 13.9375rem;
    top: -11%;
    right: -6%;
  }
}

.bg-decoration__illust05 {
  background-image: url(../../img/emocli/bg_illust05.svg);
  width: 6.1875rem;
  height: 6.1875rem;
  right: 0;
  bottom: 14%;
}
@media screen and (min-width: 780px) {
  .bg-decoration__illust05 {
    top: 62%;
    right: 2.0625rem;
  }
}

.bg-decoration__illust06 {
  background-image: url(../../img/emocli/bg_illust05.svg);
  width: 3.0625rem;
  height: 3.0625rem;
  right: 10%;
  bottom: 7%;
}
@media screen and (min-width: 780px) {
  .bg-decoration__illust06 {
    bottom: 3.5rem;
    right: 10.75rem;
  }
}

.bg-decoration__illust07 {
  background-image: url(../../img/emocli/bg_illust05.svg);
  width: 7.5625rem;
  height: 7.5625rem;
  left: -10%;
  top: 0;
}
@media screen and (min-width: 780px) {
  .bg-decoration__illust07 {
    width: 12rem;
    height: 12rem;
    top: -5rem;
    left: 2.875rem;
  }
}

.bg-decoration__illust08 {
  background-image: url(../../img/emocli/bg_illust11.svg);
  width: 11.125rem;
  height: 7.6875rem;
  right: -10%;
  top: -30%;
}
@media screen and (min-width: 780px) {
  .bg-decoration__illust08 {
    width: 17.0625rem;
    height: 11.875rem;
    top: -8.75rem;
    right: 0;
  }
}

.bg-decoration__illust09 {
  background-image: url(../../img/emocli/bg_illust07.svg);
  width: 10rem;
  height: 10.375rem;
  left: 0;
  bottom: 0;
}
@media screen and (min-width: 780px) {
  .bg-decoration__illust09 {
    left: -1.1875rem;
    bottom: 1.25rem;
  }
}

.bg-decoration__illust10 {
  background-image: url(../../img/emocli/bg_illust08.svg);
  width: 8.625rem;
  height: 6.875rem;
  top: -15%;
  right: -10%;
}
@media screen and (min-width: 780px) {
  .bg-decoration__illust10 {
    width: 18.0625rem;
    height: 14.4375rem;
    top: -45%;
    right: -0.875rem;
  }
}

.bg-decoration__illust11 {
  background-image: url(../../img/emocli/bg_illust09.svg);
  width: 13.75rem;
  height: 14.4375rem;
  bottom: -35%;
  left: -7%;
}
@media screen and (min-width: 780px) {
  .bg-decoration__illust11 {
    width: 19.75rem;
    height: 20.75rem;
    bottom: -35%;
    left: -7%;
  }
}

.bg-decoration__illust12 {
  background-image: url(../../img/emocli/bg_illust05.svg);
  width: 8.25rem;
  height: 8.25rem;
  right: 0;
  top: 0;
}
@media screen and (min-width: 780px) {
  .bg-decoration__illust12 {
    right: 83px;
    top: 91px;
  }
}

.bg-decoration__illust13 {
  background-image: url(../../img/emocli/bg_illust10.svg);
  width: 8rem;
  height: 9.5625rem;
  left: -10%;
  top: 24%;
}
@media screen and (min-width: 780px) {
  .bg-decoration__illust13 {
    left: 5.125rem;
    top: 34rem;
  }
}

.bg-decoration__illust14 {
  background-image: url(../../img/emocli/bg_illust05.svg);
  width: 3.5rem;
  height: 3.5rem;
  top: 59%;
  right: 10%;
}
@media screen and (min-width: 780px) {
  .bg-decoration__illust14 {
    top: 61%;
    left: 42%;
    right: 0;
  }
}

.bg-decoration__illust15 {
  background-image: url(../../img/emocli/bg_illust05.svg);
  width: 4.6875rem;
  height: 4.6875rem;
  bottom: 10%;
  left: 0;
}
@media screen and (min-width: 780px) {
  .bg-decoration__illust15 {
    bottom: 10.3125rem;
    left: 4.5rem;
  }
}

.bg-decoration__illust16 {
  background-image: url(../../img/emocli/bg_illust05.svg);
  width: 6.375rem;
  height: 6.375rem;
  bottom: 2.75rem;
  right: 5.5625rem;
}
@media screen and (min-width: 780px) {
  .bg-decoration__illust16 {
    bottom: 2.9375rem;
    right: 5.5625rem;
  }
}

.bg-decoration__illust17 {
  background-image: url(../../img/emocli/bg_illust12.svg);
  width: 6.9375rem;
  height: 8.625rem;
  left: 0;
  top: 0;
}
@media screen and (min-width: 780px) {
  .bg-decoration__illust17 {
    width: 12.9375rem;
    height: 16rem;
    left: 0;
    top: 0;
  }
}

.bg-decoration__illust18 {
  background-image: url(../../img/emocli/bg_illust11.svg);
  width: 6.9375rem;
  height: 8.625rem;
  z-index: 2;
  right: 0;
  top: 2.4375rem;
}
@media screen and (min-width: 780px) {
  .bg-decoration__illust18 {
    width: 10.0625rem;
    height: 7rem;
    right: 8.75rem;
    top: 2.4375rem;
  }
}

.bg-decoration__illust19 {
  background-image: url(../../img/emocli/bg_illust13.svg);
  width: 6.9375rem;
  height: 8.625rem;
  bottom: -0.625rem;
  left: 0;
}
@media screen and (min-width: 780px) {
  .bg-decoration__illust19 {
    width: 12.9375rem;
    height: 9.875rem;
    bottom: 2.75rem;
    left: 5rem;
  }
}

.bg-decoration__illust20 {
  background-image: url(../../img/emocli/bg_illust14.svg);
  width: 6.5625rem;
  height: 8.875rem;
  right: 0;
  bottom: 0;
}
@media screen and (min-width: 780px) {
  .bg-decoration__illust20 {
    width: 11.4375rem;
    height: 15.5625rem;
  }
}

.bg-decoration__illust21 {
  background-image: url(../../img/emocli/bg_illust15.svg);
  width: 4.5625rem;
  height: 4.5625rem;
  top: 3.125rem;
  left: 0.625rem;
}
@media screen and (min-width: 780px) {
  .bg-decoration__illust21 {
    width: 6.4375rem;
    height: 6.4375rem;
    top: 9rem;
    left: 4.9375rem;
  }
}

.bg-decoration__illust22 {
  background-image: url(../../img/emocli/bg_illust06.svg);
  width: 6.4375rem;
  height: 4.5rem;
  top: 0.625rem;
  right: 0.9375rem;
}
@media screen and (min-width: 780px) {
  .bg-decoration__illust22 {
    width: 10.0625rem;
    height: 7rem;
    top: 10rem;
    right: 4.6875rem;
  }
}

.bg-decoration__illust23 {
  background-image: url(../../img/emocli/bg_illust16.svg);
  width: 13.1875rem;
  height: 13.875rem;
  top: 45.5625rem;
  left: -4.375rem;
}
@media screen and (min-width: 780px) {
  .bg-decoration__illust23 {
    width: 23.125rem;
    height: 22.8125rem;
    top: 67%;
    left: -6.25rem;
  }
}

.bg-decoration__illust24 {
  background-image: url(../../img/emocli/bg_illust17.svg);
  width: 7.0625rem;
  height: 7rem;
  bottom: 1.625rem;
  right: -0.625rem;
  z-index: 1;
}
@media screen and (min-width: 780px) {
  .bg-decoration__illust24 {
    width: 16.25rem;
    height: 16rem;
    bottom: 6.625rem;
    right: -3.75rem;
  }
}

.decos {
  position: relative;
}

.decos__unit {
  position: absolute;
  -webkit-transform: skewX(-145deg);
          transform: skewX(-145deg);
}

.decos__deco-01 {
  width: 1.75rem;
  top: 1.875rem;
}
@media screen and (min-width: 780px) {
  .decos__deco-01 {
    width: 4.0625rem;
    bottom: -11.25rem;
    left: -7.375rem;
    top: auto;
  }
}

.decos__deco-02 {
  width: 1.75rem;
  top: -0.625rem;
  left: -0.625rem;
}
@media screen and (min-width: 780px) {
  .decos__deco-02 {
    width: 4.0625rem;
    top: 1.875rem;
    left: -11.4375rem;
  }
}

.decos__deco-03 {
  width: 1.75rem;
  top: -2.1875rem;
  left: 1.25rem;
}
@media screen and (min-width: 780px) {
  .decos__deco-03 {
    width: 3.75rem;
    top: 6.25rem;
    left: -2.9375rem;
  }
}

.decos__deco-04 {
  width: 1.75rem;
  top: -2.1875rem;
  right: 1.875rem;
}
@media screen and (min-width: 780px) {
  .decos__deco-04 {
    width: 3.4375rem;
    top: 8.125rem;
    right: -7.625rem;
  }
}

.decos__deco-05 {
  width: 1.75rem;
  top: -1.25rem;
  right: -1.5625rem;
}
@media screen and (min-width: 780px) {
  .decos__deco-05 {
    width: 3.125rem;
    top: 3.125rem;
    right: -10.8125rem;
  }
}

.decos__deco-06 {
  width: 1.75rem;
  top: 1.875rem;
  right: -1.5625rem;
}
@media screen and (min-width: 780px) {
  .decos__deco-06 {
    width: 2.75rem;
    top: 9.8125rem;
    right: -18.125rem;
  }
}

.btn {
  cursor: pointer;
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}

.btn {
  border: 0.25rem solid #555555;
  border-radius: 3.75rem;
  color: #555555;
  display: block;
  font-weight: bold;
  text-align: center;
  background: #FFEB00;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn:hover {
  background: #FFF;
  opacity: 1;
}

.about {
  background: #FFFBD2;
  padding-top: 5.625rem;
}
@media screen and (min-width: 780px) {
  .about {
    padding-top: 8rem;
  }
}

.about__title {
  padding-top: 0.8125rem;
  padding-bottom: 2.5rem;
}

.about__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 780px) {
  .about__column {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.5rem;
    max-width: 61.125rem;
    margin-inline: auto;
  }
}

.about__unit:not(:first-child) {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 780px) {
  .about__unit:not(:first-child) {
    margin-top: 0;
  }
}

.about__image {
  aspect-ratio: 310/300;
  max-width: 19.375rem;
  width: 100%;
}

.about__image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.about__content {
  padding-top: 2.75rem;
}

.about__text {
  font-size: 1rem;
  line-height: 1.625;
  font-weight: 700;
  text-align: center;
  color: #333333;
}
@media screen and (min-width: 780px) {
  .about__text {
    font-size: 1.4375rem;
  }
}

.about__text--highlight {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #08B1A6;
  padding-top: 0.1875rem;
}
@media screen and (min-width: 780px) {
  .about__text--highlight {
    font-size: 2.1875rem;
  }
}

.section-title {
  position: relative;
  background-image: url(../../img/emocli/section-title_sp.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
  max-width: 21.8125rem;
  height: auto;
  aspect-ratio: 349/82;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .section-title {
    background-image: url(../../img/emocli/section-title.svg);
    aspect-ratio: 664/97;
    max-width: 41.5rem;
  }
}

.section-title__text {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.075rem;
  color: #333333;
  display: block;
}
@media screen and (min-width: 780px) {
  .section-title__text {
    font-size: 2.0625rem;
  }
}

.policy {
  background: #FFFBD2;
  padding-top: 5.625rem;
  padding-bottom: 4rem;
}
@media screen and (min-width: 780px) {
  .policy {
    padding-top: 4.4375rem;
  }
}

.policy__title {
  padding-top: 0.3125rem;
  padding-bottom: 2.625rem;
}

.policy__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 780px) {
  .policy__column {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.5rem;
    margin-top: 0.3125rem;
  }
}

.policy__unit:not(:first-child) {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 780px) {
  .policy__unit:not(:first-child) {
    margin-top: 0;
  }
}

.policy__image {
  aspect-ratio: 310/300;
  max-width: 19.375rem;
  width: 100%;
}

.policy__image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.policy__content {
  padding-top: 1.5625rem;
}
@media screen and (min-width: 780px) {
  .policy__content {
    padding-top: 2.8125rem;
  }
}

.policy__text {
  font-size: 1rem;
  line-height: 1.5625;
  font-weight: 700;
  text-align: center;
  color: #333333;
}
@media screen and (min-width: 780px) {
  .policy__text {
    font-size: 1.4375rem;
  }
}

.policy__text--highlight {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #08B1A6;
}
@media screen and (min-width: 780px) {
  .policy__text--highlight {
    font-size: 2.1875rem;
  }
}

.movie {
  margin-top: 4.375rem;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 780px) {
  .movie {
    margin-bottom: 3.875rem;
  }
}

.movie__heading {
  font-size: 1.875rem;
  font-weight: 700;
  color: #08B1A6;
  text-align: center;
  letter-spacing: 0.16875rem;
}

.movie__heading-image {
  aspect-ratio: 252/70;
  max-width: 15.75rem;
  width: 100%;
  margin-inline: auto;
  padding-top: 0.625rem;
  display: block;
}

.movie__heading-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.movie__container {
  position: relative;
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 390/235;
  max-width: 37.5rem;
  margin-top: 3.3125rem;
}
@media screen and (min-width: 780px) {
  .movie__container {
    max-width: 68.75rem;
    aspect-ratio: 1100/664;
    margin-top: 2.5rem;
  }
}

#youtube {
  width: 100%;
  height: 100%;
}

.movie__cover {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
}

.movie__cover:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../images/movie_start-icon2x.png);
  background-size: 5rem;
  background-position: center center;
  background-repeat: no-repeat;
}

.movie__container iframe {
  width: 100%;
}

.movie__cover.hidden {
  display: none;
}

.survey {
  background: #08B1A6;
  padding-top: 2.3125rem;
  padding-bottom: 2.3125rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 780px) {
  .survey {
    padding-top: 3.125rem;
    padding-bottom: 3.5625rem;
  }
}

.survey__text {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: #FFF;
}
@media screen and (min-width: 780px) {
  .survey__text {
    font-size: 1.375rem;
    letter-spacing: 0.1375rem;
    font-weight: 700;
    margin-left: -1.6875rem;
  }
}

.survey__btn {
  margin-top: 1.0625rem;
  margin-inline: auto;
  max-width: 20.9375rem;
}
@media screen and (min-width: 780px) {
  .survey__btn {
    margin-top: 1.75rem;
    max-width: 36.875rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.survey__btn-text {
  font-size: 1.5625rem;
  font-weight: 700;
  padding: 0.9375rem 2.8125rem;
}
@media screen and (min-width: 780px) {
  .survey__btn-text {
    padding: 1.25rem 0 1.25rem 3.3125rem;
    letter-spacing: 0.125rem;
    margin: auto;
  }
}

.survey__btn-arrow {
  width: 1.875rem;
  height: 1.875rem;
}
@media screen and (min-width: 780px) {
  .survey__btn-arrow {
    margin-right: 1.25rem;
  }
}

.data-dl {
  margin-top: 3.875rem;
  margin-bottom: 3.875rem;
}
@media screen and (min-width: 780px) {
  .data-dl {
    margin-top: 5.5rem;
    margin-bottom: 5.5rem;
  }
}

.data-dl__content {
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
  border-radius: 1.5625rem;
  -webkit-box-shadow: 0 0 1.25rem rgba(8, 177, 166, 0.8);
          box-shadow: 0 0 1.25rem rgba(8, 177, 166, 0.8);
  background: #FFF;
}
@media screen and (min-width: 780px) {
  .data-dl__content {
    padding-top: 3.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6.25rem;
  }
}

.data-dl__text-wrapper {
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .data-dl__text-wrapper {
    font-size: 1.375rem;
  }
}

.data-dl__headline {
  font-size: 1.125rem;
  color: #333333;
}
@media screen and (min-width: 780px) {
  .data-dl__headline {
    font-size: 1.375rem;
    letter-spacing: 0.125rem;
    margin-left: -1.0625rem;
  }
}

.data-dl__description {
  font-size: 2.375rem;
  position: relative;
}
@media screen and (min-width: 780px) {
  .data-dl__description {
    font-size: 2.5rem;
    margin-left: -1.25rem;
    margin-top: 0.625rem;
    line-height: 3.125rem;
  }
}

.data-dl__description-image {
  aspect-ratio: 286/12;
  max-width: 17.875rem;
  width: 100%;
  margin-inline: auto;
}

.data-dl__description-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.data-dl__text--highlight {
  color: #08B1A6;
}

.data-dl__btn {
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 12.5rem;
  height: 12.5rem;
  background: #08B1A6;
  color: #FFF;
  text-decoration: none;
  text-align: center;
  margin-top: 3rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .data-dl__btn {
    margin-top: 0;
    margin-inline: 0;
  }
}

.data-dl__btn-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFEB00;
}

.data-dl__btn-icon {
  padding-top: 0.3125rem;
  width: 2.5rem;
  height: 2.5rem;
}

.reviews {
  background: #FFFBD2;
  position: relative;
  padding-bottom: 3.3125rem;
  padding-top: 3.75rem;
}
@media screen and (min-width: 780px) {
  .reviews {
    padding-bottom: 4.5625rem;
    padding-top: initial;
  }
}

.reviews__title {
  position: relative;
  top: -1.875rem;
  padding-top: 0.625rem;
}
@media screen and (min-width: 780px) {
  .reviews__title {
    top: 1.5625rem;
    padding-top: 0.375rem;
    padding-bottom: 2.5rem;
  }
}

.reviews__image {
  margin-top: 3.125rem;
  aspect-ratio: 390/118;
  width: 100%;
}
@media screen and (min-width: 780px) {
  .reviews__image {
    aspect-ratio: 1101/329;
  }
}

.reviews__image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.reviews__container {
  margin-top: 3.125rem;
}
@media screen and (min-width: 780px) {
  .reviews__container {
    margin-top: 4.375rem;
  }
}

.reviews__item {
  background: #FFF;
  border-radius: 1.5625rem;
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}
@media screen and (min-width: 780px) {
  .reviews__item {
    padding-top: 2.875rem;
    padding-bottom: 2.5rem;
  }
}

.reviews__item:not(:first-child) {
  margin-top: 3.125rem;
}
@media screen and (min-width: 780px) {
  .reviews__item:not(:first-child) {
    margin-top: 3.875rem;
  }
}

@media screen and (min-width: 780px) {
  .reviews__item:last-child {
    margin-top: 5.4375rem;
  }
}

.reviews__text-content {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media screen and (min-width: 780px) {
  .reviews__text-content {
    padding-left: 3.125rem;
    padding-right: 0;
  }
}

.reviews__item-title {
  background: #08B1A6;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #FFF;
  padding: 0.375rem 1.25rem 0.375rem 0.75rem;
  margin-right: 0.625rem;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.5384615385;
  border-radius: 0 0.625rem 0.625rem 0;
}
@media screen and (min-width: 780px) {
  .reviews__item-title {
    padding-right: 4.375rem;
    width: 29.875rem;
    padding: 0.375rem 1.25rem 0.375rem 1.75rem;
    letter-spacing: 0.1875rem;
  }
}

.reviews__achievement {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6666666667;
  padding-top: 1.25rem;
}
@media screen and (min-width: 780px) {
  .reviews__achievement {
    font-size: 1.375rem;
    width: 26.75rem;
  }
}

.reviews__description {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03125rem;
}
@media screen and (min-width: 780px) {
  .reviews__description {
    padding-top: 0.5625rem;
    padding-right: 0.5625rem;
  }
}

@media screen and (min-width: 780px) {
  .reviews__item-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1.25rem 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.reviews__comment {
  border: 0.0625rem solid #08B1A6;
  border-radius: 0.3125rem;
  padding: 0.8125rem 1.875rem 1rem 1.875rem;
  margin-top: 2.5rem;
  margin-right: 0.9375rem;
  margin-left: 0.9375rem;
}
@media screen and (min-width: 780px) {
  .reviews__comment {
    padding: 1.375rem 1.5rem 1.625rem 1.5rem;
    margin-top: 3.125rem;
    max-width: 60.375rem;
    margin-inline: auto;
  }
}

.reviews__comment-title {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.0125rem;
  color: #08B1A6;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .reviews__comment-title {
    text-align: left;
  }
}

@media screen and (min-width: 780px) {
  .reviews__comment-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 0.75rem;
  }
}

.reviews__comment-author-image {
  aspect-ratio: 153/153;
  max-width: 9.5625rem;
  width: 100%;
  margin-inline: auto;
  margin-top: 1.6875rem;
}
@media screen and (min-width: 780px) {
  .reviews__comment-author-image {
    aspect-ratio: 110/110;
    max-width: 6.875rem;
    margin-inline: 0;
    margin-top: initial;
  }
}

.reviews__comment-author-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.reviews__comment-text {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03125rem;
  padding-top: 1.75rem;
}
@media screen and (min-width: 780px) {
  .reviews__comment-text {
    padding-top: 0;
  }
}

.reviews__mockup-image {
  padding-top: 1.75rem;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}
@media screen and (min-width: 780px) {
  .reviews__mockup-image {
    padding-top: initial;
    padding-left: initial;
    padding-right: 3.125rem;
  }
}

.reason {
  background-image: url(../../img/emocli/reason_background2x.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 1.5625rem;
  padding-bottom: 7.3125rem;
}
@media screen and (min-width: 780px) {
  .reason {
    padding-top: 7.5rem;
    padding-bottom: 8.75rem;
  }
}

.reason__title {
  padding-top: 0.3125rem;
  padding-bottom: 2.5rem;
}

.reason__heading {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4285714286;
  letter-spacing: 0.03125rem;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .reason__heading {
    font-size: 2.5rem;
    line-height: 1;
    text-align: left;
    letter-spacing: 0.125rem;
    margin-top: 1.875rem;
  }
}

.reason__title--highlight {
  color: #08B1A6;
}

.reason__item {
  margin-top: 1.25rem;
}
@media screen and (min-width: 780px) {
  .reason__item {
    margin-top: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3.125rem;
    max-width: 57.5rem;
    margin-inline: auto;
  }
}

@media screen and (min-width: 780px) {
  .reason__text-content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 32.5rem;
  }
}

.reason__description {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.03125rem;
  padding-top: 0.6875rem;
}
@media screen and (min-width: 780px) {
  .reason__description {
    font-size: 0.9375rem;
    letter-spacing: 0.0375rem;
    padding-top: 1.375rem;
    line-height: 1.875rem;
  }
}

.reason__image {
  aspect-ratio: 310/295;
  width: 100%;
  padding-top: 2rem;
}
@media screen and (min-width: 780px) {
  .reason__image {
    aspect-ratio: 357/340;
    padding-top: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: right;
    max-width: 22.3125rem;
  }
}

.reason__item:nth-child(odd) .reason__image {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  /* 画像をテキストよりも前に配置 */
  text-align: left;
  /* 画像を左側に配置 */
}

@media screen and (min-width: 780px) {
  .reason__item:nth-child(odd) .reason__text-content {
    margin-left: 1.25rem;
  }
}

.contact {
  background: rgba(233, 234, 226, 0.5);
  z-index: inherit;
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 780px) {
  .contact {
    padding-top: 5.9375rem;
    padding-bottom: 3.75rem;
  }
}

.contact__content {
  border-radius: 1.5625rem;
  -webkit-box-shadow: 0 0.25rem 1.125rem 0.1875rem rgba(165, 165, 154, 0.1);
          box-shadow: 0 0.25rem 1.125rem 0.1875rem rgba(165, 165, 154, 0.1);
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
  background: rgba(255, 255, 255, 0.62);
  max-width: 56.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .contact__content {
    padding-top: 4.5rem;
  }
}

.contact__text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03125rem;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .contact__text {
    font-size: 1.625rem;
    line-height: 2.375rem;
    letter-spacing: 0.0625rem;
  }
}

.contact__btn {
  margin-top: 3.125rem;
  margin-inline: auto;
  max-width: 20.625rem;
}
@media screen and (min-width: 780px) {
  .contact__btn {
    margin-top: 3rem;
    max-width: 36.875rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.contact__btn-text {
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1.25rem 0.5rem 1.25rem 1.875rem;
}
@media screen and (min-width: 780px) {
  .contact__btn-text {
    padding: 1.25rem 0 0.9375rem 3.125rem;
    margin: auto;
    font-size: 1.5625rem;
    letter-spacing: 0.125rem;
  }
}

.contact__btn-arrow {
  width: 1.875rem;
  height: 1.875rem;
}
@media screen and (min-width: 780px) {
  .contact__btn-arrow {
    margin-right: 1.25rem;
  }
}

.contact__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* margin-inline: auto; */
  margin-top: 1.875rem;
}
@media screen and (min-width: 780px) {
  .contact__info {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 1.1875rem;
  }
}

.contact__tel,
.contact__mail {
  text-decoration: none;
  color: #555555;
  margin-inline: auto;
  font-size: 1.125rem;
  font-weight: 400;
}
@media screen and (min-width: 780px) {
  .contact__tel,
  .contact__mail {
    width: 50%;
    text-align: center;
  }
}

@media screen and (min-width: 780px) {
  .contact__tel {
    font-size: 1.875rem;
  }
}

@media screen and (min-width: 780px) {
  .contact__mail {
    font-size: 1.75rem;
  }
}

.contact__tel-icon,
.contact__mail-icon {
  width: 2.9375rem;
  height: 2.9375rem;
  margin-inline: auto;
  margin-bottom: 0.3125rem;
}

.contact__separator {
  width: 80%;
  height: 0.0625rem;
  background-color: #C6C6C6;
  margin-inline: auto;
  margin-top: 2.875rem;
}
@media screen and (min-width: 780px) {
  .contact__separator {
    width: 50rem;
  }
}

.contact__info-separator {
  width: 6.25rem;
  height: 0.0625rem;
  background-color: #C6C6C6;
  margin: 1.25rem 0;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .contact__info-separator {
    width: 0.0625rem;
    height: 7.25rem;
    margin: 0 0;
  }
}

/* 料金プラン全体 */
.price {
  background: #FFFCDD;
  padding-top: 4.6875rem;
  padding-bottom: 4.5rem;
}
@media screen and (min-width: 780px) {
  .price {
    padding-top: 8.5625rem;
  }
}

.price__title {
  padding-top: 0.3125rem;
  padding-bottom: 2.5rem;
}

.price__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 780px) {
  .price__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2.5rem 1fr 2.5rem 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
  }
}

/* 各プランカード */
.price__item {
  background-color: #FFF;
  border-radius: 0.9375rem;
  border: 0.1875rem solid #FB80B1;
  padding: 1.875rem 0.625rem 3rem 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  position: relative;
  margin-top: 4.75rem;
  width: calc(100vw - 1.25rem);
  max-width: 21.25rem;
}
@media screen and (min-width: 780px) {
  .price__item {
    width: 100%;
  }
}

/* プラン名の枠 */
.price__plan-head {
  width: 18.75rem;
  min-height: 4.6875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #FB80B1;
  border-radius: 0.9375rem;
  padding: 0.3125rem 0;
  color: #FFF;
  position: absolute;
  top: -2.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* プラン名 */
.price__plan {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.03125rem;
}

/* サブテキスト */
.price__sub-plan {
  font-size: 1rem;
  color: #FFF;
}

/* 価格 */
.price__cost {
  font-size: 2.625rem;
  font-weight: bold;
  color: #FB80B1;
  margin-top: 2.1875rem;
}

/* 万円のみ文字を小さく */
.price__unit {
  font-size: 1.75rem;
}

/* 特徴リスト */
.price__detail-list {
  padding: 1.0625rem 0 0 0;
  text-align: left;
  width: 100%;
}

.price__detail-item {
  font-size: 1rem;
  padding: 0.625rem 0 0 1.3125rem;
  border-bottom: 0.0625rem dashed #bebebe;
  position: relative;
  text-indent: -1.375rem;
  letter-spacing: 0.0625rem;
}

.price__detail-item:nth-child(n+2) {
  padding: 1.375rem 0 0 1.5625rem;
}

.price__detail-item::before {
  content: "";
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  background-color: #FB80B1;
  border-radius: 50%;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* 色をプランごとに変更 */
/* 見出しの色 */
.price__item--minimum .price__plan-head {
  background: #FB80B1;
}

.price__item--basic .price__plan-head {
  background: #FF9500;
  border: 0.1875rem solid #FF9500;
}

.price__item--premium .price__plan-head {
  background: #08B1A6;
}

/* 枠の色 */
.price__item--minimum {
  border: 0.1875rem solid #FB80B1;
}

.price__item--basic {
  border: 0.1875rem solid #FF9500;
}

.price__item--premium {
  border: 0.1875rem solid #08B1A6;
}

/* 料金の背景色 */
.price__cost--minimum {
  background: #FFEDF4;
  color: #FB80B1;
}

.price__cost--basic {
  background: #FFEED6;
  color: #FF9500;
}

.price__cost--premium {
  background: #DCF3F2;
  color: #08B1A6;
}

/* 料金の背景色 */
.price__unit--minimum {
  color: #FB80B1;
}

.price__unit--basic {
  color: #FF9500;
}

.price__unit--premium {
  color: #08B1A6;
}

/* リスト横の丸の色 */
.price__detail-item--minimum::before {
  background-color: #FB80B1;
}

.price__detail-item--basic::before {
  background-color: #FF9500;
}

.price__detail-item--premium::before {
  background-color: #08B1A6;
}

/* SEOサポートプラン */
.price__support {
  margin-top: 3.75rem;
  width: calc(100vw - 1.25rem);
  max-width: 21.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .price__support {
    margin-right: initial;
    padding-right: initial;
    display: block;
    overflow-x: initial;
    margin-inline: initial;
    max-width: 100%;
  }
}

.price__support-item {
  width: 100%;
  background-color: #FFF;
  border-radius: 0.9375rem;
  border: 0.1875rem solid #FB80B1;
  padding: 0.8125rem 1.875rem 0.625rem 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  position: relative;
  margin-top: 5.625rem;
}
@media screen and (min-width: 780px) {
  .price__support-item {
    max-width: 68.8125rem;
  }
}

.price__support-head {
  max-width: 18.75rem;
  width: 100%;
  height: 4.6875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #FB80B1;
  border-radius: 0.9375rem;
  padding: 0.3125rem 0;
  color: #FFF;
  position: absolute;
  top: -2.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 780px) {
  .price__support-head {
    left: 3%;
    -webkit-transform: translateX(-3%);
            transform: translateX(-3%);
  }
}

.price__support-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 780px) {
  .price__support-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.price__support-info {
  width: 17.5rem;
  margin-top: 0.875rem;
}
@media screen and (min-width: 780px) {
  .price__support-info {
    margin-right: 7.75rem;
  }
}

.price__support-name {
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
}

.price__support-sub-name {
  font-size: 1rem;
  letter-spacing: 0.10625rem;
}

.price__support-cost {
  font-size: 1.6875rem;
  padding: 0.625rem;
  font-weight: bold;
  color: #FB80B1;
  margin-top: 1.375rem;
  background: #FFEDF4;
}

.price__support-detail-list {
  padding: 0.75rem 0 0 0;
  text-align: left;
  width: 100%;
}

.price__effect {
  margin-top: 3.125rem;
}
@media screen and (min-width: 780px) {
  .price__effect {
    margin-top: 0;
  }
}

.price__effect-heading {
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.0125rem;
  padding-left: 1.25rem;
  margin-top: -0.4375rem;
}

.price__support-image {
  aspect-ratio: 527/321;
  max-width: 32.9375rem;
  width: 100%;
}

.price__support-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.services {
  margin: 3.75rem 0;
}
@media screen and (min-width: 780px) {
  .services {
    margin-top: 15.4375rem;
    padding-bottom: 1.25rem;
  }
}

.services__title {
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  position: relative;
  letter-spacing: 1.2px;
}
@media screen and (min-width: 780px) {
  .services__title {
    font-size: 1.625rem;
  }
}

.services__title::before,
.services__title::after {
  position: absolute;
  content: "";
  background: url(../../img/emocli/dot-line2x.png);
  width: 17.5rem;
  height: 0.25rem;
  background-size: contain;
  background-repeat: no-repeat;
}

.services__title::before {
  top: -50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 780px) {
  .services__title::before {
    margin-right: 2.375rem;
    left: 0;
    top: 50%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.services__title::after {
  bottom: -50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 780px) {
  .services__title::after {
    margin-left: 2.375rem;
    right: 0;
    left: initial;
    top: 50%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.services__list {
  margin: 5rem 0;
  gap: 1.875rem;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .services__list {
    gap: 1.875rem;
    margin: 2.5rem 0;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.services__item {
  max-width: 7.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
}

.services__image {
  width: 5.875rem;
  height: 5.875rem;
}
@media screen and (min-width: 780px) {
  .services__image {
    width: 7.5rem;
    height: 7.5rem;
  }
}

.services__text {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.875;
  letter-spacing: 0.0125rem;
  padding-top: 0.9375rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (min-width: 780px) {
  .services__text {
    font-size: 1.125rem;
    line-height: 1.5625rem;
    padding-top: 1.375rem;
    padding-top: 0.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    letter-spacing: 0.08125rem;
  }
}

.flow {
  background: rgba(214, 240, 224, 0.4);
  position: relative;
  padding-bottom: 3rem;
}

.flow__title {
  position: relative;
  top: -2.375rem;
  padding-top: 0.5rem;
  padding-bottom: 2.5rem;
}

.flow__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: visible;
  /* スクロール時にカットされないようにする */
  margin-right: calc((100vw - 100%) / 2 * -1);
}
@media screen and (min-width: 780px) {
  .flow__steps {
    margin-right: initial;
    margin-top: 1.25rem;
  }
}

.flow__steps-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  position: relative;
  max-width: 68.8125rem;
}
@media screen and (min-width: 780px) {
  .flow__steps-wrapper {
    overflow-x: visible;
    /* PC時は横スクロール解除 */
    -ms-scroll-snap-type: none;
        scroll-snap-type: none;
    min-width: initial;
  }
}

/* 背景の黄色いバー */
.flow__steps-wrapper::before {
  content: "";
  position: absolute;
  top: 10rem;
  left: 0;
  width: 68.8125rem;
  height: 2.6875rem;
  background-color: #FFFCD2;
  z-index: -1;
}

.flow__steps-wrapper:nth-child(2) {
  margin-top: 4.375rem;
}

.flow__step {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 90%;
  max-width: 18.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 780px) {
  .flow__step {
    -ms-flex-negative: 1;
        flex-shrink: 1;
    /* 縮小しない */
  }
}

.flow__step:not(:last-child) {
  margin-right: 6.25rem;
}

.flow__step:nth-child(1) .flow__step-image::after,
.flow__step:nth-child(3) .flow__step-image::before {
  content: "";
  width: 1.5625rem;
  height: 1.25rem;
  background-image: url(../../img/emocli/step_arrow2x.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 76%;
}

.flow__step:nth-child(1) .flow__step-image::after {
  left: 170%;
}

.flow__step:nth-child(3) .flow__step-image::before {
  left: -90%;
}

.flow__step-number {
  background: #08B1A6;
  width: 6.875rem;
  text-align: center;
  margin-inline: auto;
  border-radius: 6.25rem;
  color: #FFF;
  font-size: 1rem;
  font-weight: bold;
}

.flow__step-heading {
  font-size: 1.5625rem;
  text-align: center;
  padding-top: 0.375rem;
  font-weight: bold;
  line-height: 1.6;
  min-height: 2.5rem;
  margin-bottom: 0.625rem;
}

.flow__step-image {
  aspect-ratio: 154/128;
  max-width: 9.625rem;
  width: 100%;
  margin-inline: auto;
  position: relative;
}

.flow__step-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.flow__step-description {
  padding-top: 0.6875rem;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.04375rem;
  line-height: 2;
}

/* スクロールバーの装飾 */
.flow__steps-wrapper::-webkit-scrollbar {
  height: 0.875rem;
  /* スクロールバーの高さ */
}

.flow__steps-wrapper::-webkit-scrollbar-thumb {
  background: #d2b48c;
  /* ツマミの色 */
  border-radius: 0.4375rem;
  /* ツマミ両端の丸み */
}

.flow__steps-wrapper::-webkit-scrollbar-track {
  background: #f5deb3;
  /* トラックの色 */
  border-radius: 0.4375rem;
  /* トラック両端の丸み */
}

.faq {
  padding-top: 5.5rem;
  padding-bottom: 8.0625rem;
}

.faq__title {
  padding-top: 0.375rem;
  padding-bottom: 2.5rem;
}

.faq__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
  max-width: 62.5rem;
  margin-inline: auto;
}

.faq__item {
  margin-top: 1.25rem;
  cursor: pointer;
}
@media screen and (min-width: 780px) {
  .faq__item {
    margin-top: 1.875rem;
  }
}

.faq__item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.25rem 1.375rem 1.25rem 1.375rem;
  background: #FFFBD2;
  border-radius: 0.9375rem;
}
@media screen and (min-width: 780px) {
  .faq__item-head {
    padding: 1.6875rem 2.625rem 1.875rem 2.625rem;
  }
}

.faq__item-content {
  display: none;
  padding: 0.9375rem 2.125rem 1.9375rem 2.5rem;
  background: #FFFBD2;
  border-radius: 0 0 0.9375rem 0.9375rem;
}
@media screen and (min-width: 780px) {
  .faq__item-content {
    padding: 0 2.125rem 1.9375rem 2.5rem;
  }
}

.faq__item-text,
.faq__item-content-text {
  position: relative;
  font-size: 0.875rem;
  line-height: 1.6428571429;
}
@media screen and (min-width: 780px) {
  .faq__item-text,
  .faq__item-content-text {
    font-size: 1rem;
    padding-left: 2.5rem;
  }
}

.faq__item-text {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.7647058824;
  padding-left: 50px;
  padding-right: 0.625rem;
}
@media screen and (min-width: 780px) {
  .faq__item-text {
    padding-left: 2.5rem;
    padding-right: 7.5rem;
    letter-spacing: 0.125rem;
  }
}

.faq__item-content-text {
  background: #FFF;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
  padding: 0.875rem;
  border-radius: 0.9375rem;
}
@media screen and (min-width: 780px) {
  .faq__item-content-text {
    padding: 0.875rem 10.625rem 0.9375rem 0.875rem;
  }
}

.faq__item-text::before {
  background-image: url(../../img/emocli/q-icon.svg);
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.875rem;
  height: 2rem;
  left: 0;
  top: 0;
}
@media screen and (min-width: 780px) {
  .faq__item-text::before {
    top: initial;
  }
}

.faq__item-icon {
  width: 1.25rem;
  height: 0.75rem;
  max-width: 100%;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

/* 開いた時に答えの要素の角をなくす */
.faq__item.is-open .faq__item-head {
  border-radius: 0.9375rem 0.9375rem 0 0;
}

/* 開いた時の矢印の動き*/
.faq__item.is-open:not([data-accordion-before-close]) .faq__item-icon {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}


.footer {
  background-color: #08B1A6;
  color: #fff;
  padding-top: 3.375rem;
  padding-bottom: 0.9375rem;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 780px) {
  .footer {
    padding-top: 5.25rem;
    padding-bottom: 5.1875rem;
    margin-bottom: 2.875rem;
  }
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /* スマホでは縦並び */
}
@media screen and (min-width: 780px) {
  .footer__upper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    /* PCでは横並び */
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-right: 1.625rem;
    padding-left: 1.875rem;
  }
}

.footer__map {
  width: 100%;
  max-width: 31.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .footer__map {
    max-width: 39.4375rem;
    margin-top: -0.25rem;
    margin-inline: initial;
  }
}

iframe {
  width: 100%;
  aspect-ratio: 359/220;
  border-radius: 0.625rem;
}
@media screen and (min-width: 780px) {
  iframe {
    aspect-ratio: 631/220;
  }
}

.footer__info {
  text-align: center;
  max-width: 21rem;
  margin-inline: auto;
  margin-top: 3.125rem;
}
@media screen and (min-width: 780px) {
  .footer__info {
    margin-top: 0.5rem;
    margin-inline: initial;
  }
}

.footer__logo {
  max-width: 17.75rem;
  width: 100%;
}

.footer__description {
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.0125rem;
  padding-top: 0.5rem;
}

.footer__name {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.0125rem;
  text-align: left;
  padding-top: 1.5rem;
}

.footer__address {
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.0125rem;
  padding-top: 0.4375rem;
}

.footer__lower {
  text-align: center;
  margin-top: 3.75rem;
  max-width: 21rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .footer__lower {
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 2.5rem;
    padding-right: 1.625rem;
    padding-left: 1.625rem;
  }
}

.footer__site-map {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.875rem 1fr 1.875rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
}
@media screen and (min-width: 780px) {
  .footer__site-map {
    gap: 4.375rem;
    max-width: 26.375rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-left: -1.25rem;
  }
}

.footer__site-map__item {
  text-align: left;
}

.footer__site-map__item:nth-child(n+2) {
  padding-top: 1.0625rem;
}

.footer__site-map__link {
  color: #FFF;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.00625rem;
}
@media screen and (min-width: 780px) {
  .footer__site-map__link {
    font-size: 0.9375rem;
  }
}

.footer__contact-button {
  margin-top: 3.125rem;
}
@media screen and (min-width: 780px) {
  .footer__contact-button {
    margin-top: initial;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.footer__contact-button-link {
  display: inline-block;
  background-color: #FFF;
  font-weight: 500;
  color: #08B1A6;
  padding: 0.5625rem 1.1875rem;
  border-radius: 0.125rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 780px) {
  .footer__contact-button-link {
    font-size: 0.9375rem;
    padding: 0.6875rem 1.625rem;
    margin-top: initial;
  }
}

.footer__copyright {
  font-size: 0.8125rem;
  text-align: center;
  font-weight: 400;
  padding-top: 3.3125rem;
  letter-spacing: 0.0125rem;
}
@media screen and (min-width: 780px) {
  .footer__copyright {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: auto;
    padding-right: 10.625rem;
  }
}

.screen-reader-response {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.wpcf7-response-output{
text-align: center;
}

/* パンくず */
.breadcrumb {
overflow-x: auto;
padding: 20px 0 40px 0;
white-space: nowrap;
background-color: rgba(233, 234, 226, 0.5);
}
.breadcrumb a{
color: #555555;
}
@media (max-width: 999px) {
.breadcrumb {
    padding:20px 0
}
}

.breadcrumb .inner {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex
}

.breadcrumb .inner>span:not(:last-child) {
margin-right: 40px;
position: relative
}

.breadcrumb .inner>span:not(:last-child)::before {
-webkit-transform: translateY(-50%);
background: url(../../img/common/dot.svg) no-repeat top center/19px 4px;
content: "";
height: 4px;
position: absolute;
right: -30px;
top: 50%;
transform: translateY(-50%);
width: 19px
}

.breadcrumb .inner>span>a {
-webkit-transition: 0.3s;
transition: 0.3s
}

.breadcrumb .inner>span>a:hover {
opacity: .7
}

.breadcrumb+.contactForm.section {
margin-top: 0;
padding-top: 60px
}

@media (max-width: 999px) {
.breadcrumb+.contactForm.section {
    padding-bottom:60px
}
}

@media (min-width: 1000px) {
.breadcrumb+.contactForm.section .form {
    margin-top:50px
}
}

@media (max-width: 999px) {
.breadcrumb+.contactForm.section .form {
    margin-top:0
}
}

.breadcrumb+section,.breadcrumb+.section {
padding-top: 0
}

@media (max-width: 999px) {
.breadcrumb+section,.breadcrumb+.section {
    padding-top:40px
}
}


/* コンタクトフォーム */

.contact-form {
  background: rgba(233, 234, 226, 0.5);
  z-index: inherit;
  position: relative;
  padding-top: 5.5625rem;
  padding-bottom: 5.5625rem;
}

.contact-form__title {
  padding-top: 0.8125rem;
  padding-bottom: 2.5rem;
  position: relative;
  top: -1.875rem;
}

.contact-form__head {
  font-size: 1.5625rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.0625rem;
  margin-top: 0.375rem;
}

.contact-form__description {
  margin-top: 2.3125rem;
  max-width: 59.125rem;
  margin-inline: auto;
}

.form__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media print,screen and (max-width: 768px) {
  .form__item {
      -ms-flex-direction:column;
      -webkit-box-direction: normal;
      -webkit-box-orient: vertical;
      -webkit-flex-direction: column;
      flex-direction: column
  }

}

.form__item:not(:last-child) {
  margin-bottom: 22px
}

@media print,screen and (max-width: 768px) {
  .form__item:not(:last-child) {
      margin-bottom:25px
  }
}

.form__item.is-check {
  position: relative;
  text-align: center;
  margin-top: 46px;
}
.form__item.is-check
.form__item.is-check a{
  color: #555555;

}

@media print,screen and (max-width: 768px) {
  .form__item.is-check {
    margin-top: 32px;
  }
}

@media print,screen and (max-width: 768px) {
  .form__item.is-check {
      font-size:1.2rem;
      line-height: 1.4;
	  font-size:12px;
  }
}

.form__item .required {
  color: #FFEB00;
  background-color: #08B1A6;
  border-radius: 5px;
  padding: 3px 7px;
  margin-left: 10px;
  font-size: 12px;
  white-space: nowrap;
}

@media print,screen and (max-width: 768px) {
  .form__item .required {
    padding: 3px 14px;
  }
}

.form__item.is-check input[type=checkbox] {
  display: none;
  height: 18px;
  margin-right: 20px;
  width: 18px
}

.form__item.is-check input[type=checkbox]+span {
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 34px;
  position: relative;
  text-align: left;
  top: -4px
}

@media print,screen and (max-width: 768px) {
  .form__item.is-check input[type=checkbox]+span {
      padding:0 0 0 45px
  }
}

.form__item.is-check input[type=checkbox]+span::before {
  -webkit-transform: translateY(-50%);
  background: #D9D9D9;
  border-radius: 2px;
  content: "";
  display: block;
  height: 24px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 26px
}

@media print,screen and (max-width: 768px) {
  .form__item.is-check input[type=checkbox]+span::before {
      height:20px;
      width: 20px
  }
}

.form__item.is-check input[type=checkbox]+span::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: 0.3s ease-out;
  border-bottom: 4px solid #555;
  border-left: 4px solid #555;
  content: "";
  display: block;
  height: 10px;
  left: 1px;
  margin-top: -2px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: 0.3s ease-out;
  width: 18px
}

@media print,screen and (max-width: 768px) {
  .form__item.is-check input[type=checkbox]+span::after {
      border-bottom:3px solid #555;
      border-left: 3px solid #555;
      height: 8px;
      left: 2px;
      line-height: 1.5;
      margin-top: -2px;
      width: 16px
  }
}

.form__item.is-check input[type=checkbox]:checked+span::after {
  opacity: 1
}
.wpcf7-form-control-wrap{
  display: flex;
  flex-direction: column;
}
.form__item.is-check .wpcf7-form-control-wrap{
  display: ruby;
}


.wpcf7-not-valid-tip{
  color: red;
}
@media print,screen and (max-width: 768px) {
  .form__item.is-check .wpcf7-form-control-wrap {
      display:inline-block;
      max-width: 26px
  }
}

.form__item.is-check .wpcf7-list-item {
  margin: 0
}

.form__item.is-check .wpcf7-not-valid-tip {
  position: absolute;
  white-space: nowrap;
  bottom: -35px;
  left:50%;
  transform: translateX(-50%);

}

.form__item.is-select .form__input {
  position: relative;
}
.form__input a{
  color: #555555;
}

.form__item.is-select .form__input::after {
  -webkit-transform: translateY(-50%);
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 7px 7.5px 0 7.5px;
  content: "";
  height: 0;
  margin: auto;
  pointer-events: none;
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 0
}

@media print,screen and (max-width: 768px) {
  .form__item.is-select .form__input::after {
      right:10px
  }
}

.form__item.is-submit {
  margin-top: 50px
}

.form__label {
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.4
}

@media print,screen and (min-width: 769px) {
  .form__label {
    justify-content: space-between;
      padding-right: 3%;
      width: 30%
  }
}


@media print,screen and (min-width: 769px) {
  .form__label.is-hidden {
      visibility:hidden
  }
}

@media print,screen and (max-width: 768px) {
  .form__label.is-hidden {
      display:none
  }
}

@media print,screen and (max-width: 768px) {
  .form__label {
      margin:0 0 6px 0
  }
}

.form__input.is-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex
}

@media print,screen and (max-width: 768px) {
  .form__input.is-flex>span {
      width:calc(50% - 5px)
  }

  .form__input.is-flex>span:not(:last-child) {
      margin-right: 10px
  }
}

@media print,screen and (min-width: 769px) {
  .form__input.is-flex input {
      margin-right:10px;
      max-width: 264px
  }
}

@media print,screen and (min-width: 769px) {
  .form__input {
      -ms-flex:1 1 0%;
      -webkit-box-flex: 1;
      -webkit-flex: 1 1 0%;
      flex: 1 1 0%
  }
  .form__item--mail .form__input{
    width: 41%;
    flex: initial;
  }
  .form__item--tel .form__input input{
    width: 41%;
  }
}

@media print,screen and (max-width: 768px) {
  .form__input {
      width:100%
  }
}

.form__input input,.form__input select,.form__input textarea {
  -webkit-box-shadow: none;
  background: #F1F1F1;
  border: 1px solid #E2E2E2;
  border-radius: 10px;
  box-shadow: none;
  font-family: inherit
}

.form__input input::-webkit-input-placeholder,.form__input select::-webkit-input-placeholder,.form__input textarea::-webkit-input-placeholder {
  color: #888
}

.form__input input::-moz-placeholder,.form__input select::-moz-placeholder,.form__input textarea::-moz-placeholder {
  color: #888
}

.form__input input:-ms-input-placeholder,.form__input select:-ms-input-placeholder,.form__input textarea:-ms-input-placeholder {
  color: #888
}

.form__input input::-ms-input-placeholder,.form__input select::-ms-input-placeholder,.form__input textarea::-ms-input-placeholder {
  color: #888
}

.form__input input::placeholder,.form__input select::placeholder,.form__input textarea::placeholder {
  color: #888
}

@media print,screen and (max-width: 768px) {
  .form__input input,.form__input select,.form__input textarea {
  }
}

.form__input input,.form__input textarea,.form__input select {
  padding: 15px;
  width: 100%
}

@media print,screen and (max-width: 768px) {
  .form__input input,.form__input textarea,.form__input select {
      padding:8px
  }
}

.form__input select {
  font-family: inherit;
  font-weight: 500
}

.form__input textarea {
  height: 240px
}

.form__submit {
  max-width: 500px;
  padding: 0;
  position: relative;
  margin-inline: auto;
}

.form__submit .wpcf7-spinner {
  position: absolute;
  left: 50%;
  bottom: -50px;
  margin: 0!important;
  transform: translateX(-50%)
}

.form__submit input[type=submit] {
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  align-items: center;
  background: transparent;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-family: inherit;
  font-weight: 500;
  height: 100%;
  justify-content: center;
  font-size: 1.8rem;
  background: #08B1A6;
  color: #fff;
  cursor: pointer;
  padding: 1.2rem 0;
  transition: .3s;
  border-radius: 100px;
}

.form__submit input[type=submit]:hover {
  opacity: .6
}

@media print,screen and (max-width: 768px) {
  .form__submit {
      margin-left:auto;
      margin-right: auto
  }

  .form__submit input[type=submit] {
      font-size: 1.4rem
  }
}

.form__submit input[type=submit]:hover,.form__submit input[type=submit]:focus {
  outline: none
}

@media screen and (min-width: 780px) {
  .contact-form__description {
    margin-top: 2.125rem;
  }
}

.contact-form__list-item {
  font-size: 0.75rem;
  line-height: 1.6666666667;
  font-weight: 400;
  letter-spacing: 0.05rem;
  position: relative;
  text-indent: -0.75rem;
}
@media screen and (min-width: 780px) {
  .contact-form__list-item {
    font-size: 0.9375rem;
    line-height: 1.6875rem;
    padding-top: 0.125rem;
  }
}

.contact-form__list-item::before {
  content: "";
  display: inline-block;
  width: 0.625rem;
  height: 0.625rem;
  background-color: #08B1A6;
  border-radius: 50%;
  margin-right: 0.25rem;
  vertical-align: middle;
}

.contact-form__container {
  position: relative;
  z-index: 1;
  padding: 36px;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.3882352941);
  -webkit-box-shadow: 0 0.25rem 1.125rem 0.1875rem rgba(165, 165, 154, 0.1);
          box-shadow: 0 0.25rem 1.125rem 0.1875rem rgba(165, 165, 154, 0.1);
  border-radius: 1.25rem;
  max-width: 60rem;
  margin-top: 2.6875rem;
}
@media screen and (min-width: 780px) {
  .contact-form__container {
    margin-top: 1.4375rem;
    width: 60rem;
  }
}

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