@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Gantari:wght@400;500;700&family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  color: inherit;
}

html {
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
}

body {
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

input,
button,
textarea,
select {
  resize: none;
  font: inherit;
  outline: none;
  padding: 4px 8px;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  color: inherit;
}

li {
  list-style-type: none;
  color: inherit;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover,
a:focus {
  opacity: 0.7;
}

button {
  display: inline-block;
  max-width: 100%;
  border: none;
  background-color: unset;
  cursor: pointer;
  transition: opacity 0.3s;
}

button:hover,
button:focus {
  opacity: 0.7;
}

html {
  scroll-behavior: smooth;
}

* {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  color: #1a1818;
  font-feature-settings: "palt";
}

body.open {
  overflow: hidden;
}

.is_sp {
  display: none;
}

.flex {
  display: flex;
}

.flex_col {
  flex-direction: column;
}

.flex_r {
  flex-direction: row-reverse;
}

.po_re {
  position: relative;
}

.po_ab {
  position: absolute;
}

.roboto {
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 768px) {
  .is_pc {
    display: none;
  }
  .is_sp {
    display: block;
  }
  .flex_sp_col {
    flex-direction: column;
  }
}
body {
  font-family: "Noto Sans Japanese", sans-serif;
  background: url(../img/pc-bg.png) no-repeat;
  background-size: 100%;
  background-position: top;
}

@media screen and (max-width: 768px) {
  body {
    background: url("../img/sp-bg.jpg") no-repeat;
  }
}
* {
  font-weight: 700;
  font-size: 1.1713030747vw;
}

@media screen and (max-width: 768px) {
  #g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: -120%;
    width: 100%;
    height: 100vh; /*ナビの高さ*/
    background: #fcfbf7;
    /*動き*/
    transition: all 0.6s;
  }
  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive {
    top: 0;
  }
  #g-nav-list {
    top: -120%;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
  }
  /*ナビゲーションの縦スクロール*/
  #g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    padding: 12.8vw 5.3333333333vw;
    width: 100%;
    height: 100vh; /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    top: 23.4666666667vw;
    border-radius: 10px;
    width: 89.3333333333vw;
    height: 119.4666666667vw; /*ナビの高さ*/
    /* background: #f7f2e9; */
    /*動き*/
    transition: all 0.6s;
  }
  /*ナビゲーション*/
  #g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    display: block;
  }
  /*リストのレイアウト設定*/
  #g-nav li {
    list-style: none;
    margin-bottom: 8.5333333333vw;
    line-height: 0;
  }
  #g-nav li a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    display: block;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    position: absolute;
    z-index: 9999; /*ボタンを最前面に*/
    top: calc((44 / 375) * 100vw);
    right: calc((20 / 375) * 100vw);
    cursor: pointer;
    width: 10.6666666667vw;
    height: 10.6666666667vw;
    background-color: #218CDD;
    transform: translateY(-50%);
  }
  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    height: 2px;
    border-radius: 2px;
    background-color: #fff;
    width: 5.3333333333vw;
  }
  .openbtn span:nth-of-type(1) {
    top: 4.2666666667vw;
  }
  .openbtn span:nth-of-type(2) {
    top: 5.8666666667vw;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 2.9333333333vw;
    left: 2.4vw;
    transform: translateY(1.6vw) rotate(-30deg);
    width: 5.3333333333vw;
  }
  .openbtn.active span:nth-of-type(2) {
    top: 6.1333333333vw;
    left: 2.4vw;
    transform: translateY(-1.6vw) rotate(30deg);
    width: 5.3333333333vw;
  }
}
.ac > li {
  /* margin-bottomにすると変な動きをするのでpaddingにする */
  padding-bottom: 6px;
  list-style: none;
}

.ac-label {
  cursor: pointer;
  position: relative;
}

.ac-content {
  display: none;
}

/* .ac-labelを親要素としてアイコン位置を絶対値で指定 */
.icon-wrap {
  transition: all 0.3s;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translatey(-50%);
  width: 38px;
  height: 38px;
  margin-right: 1.756954612vw;
  background: #f8c7e0;
  border-radius: 50%;
  border: #191919 solid 2px;
}

.ac-label:hover .icon-wrap {
  background: #fff;
}

/* .icon-wrapの中でプラスを中央に位置させるために.iconを親要素に設定 */
.icon {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}

/* プラスアイコン */
/* ２本の線を.icon-wrapの中央に並行に重ねる */
.icon:before,
.icon:after {
  position: absolute;
  content: "";
  display: block;
  transition: all 0.4s;
  background: #191919;
  left: 50%;
  top: 50%;
  width: calc((10 / 1366) * 100vw);
  height: 1px;
  transform: translate(-50%, -50%);
}

/* そのうち1本を縦にする */
.icon:before {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* プラスアイコンクリック後、マイナスにする */
.icon.open:before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.box_con05 {
  width: 70.2781844802vw;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .box_con05 {
    width: 95%;
  }
}
.box_con05 form {
  width: 100%;
}

.box_con05 form ul {
  width: 100%;
}

.box_con05 form ul li {
  position: relative;
  margin: 2.3426061493vw 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media only screen and (min-width: 769px) {
  .box_con05 form ul li {
    display: -webkit-flex;
    display: flex;
  }
}
@media print {
  .box_con05 form ul li {
    display: -webkit-flex;
    display: flex;
  }
}
.ie8 .box_con05 form ul li {
  display: -webkit-flex;
  display: flex;
}

.box_con05 form ul li .title {
  position: relative;
  width: 30%;
  font-weight: normal;
  position: relative;
}

@media only screen and (min-width: 769px) {
  .box_con05 form ul li .title {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
}
@media print {
  .box_con05 form ul li .title {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
}
.ie8 .box_con05 form ul li .title {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  .box_con05 form ul li .title {
    text-align: center;
    width: 100%;
    display: block;
    padding: 0.8em 0.2em;
  }
}
.box_con05 form ul li .title em {
  position: relative;
  z-index: 1;
}
.box_con05 form ul li .title em span {
  color: #e38585;
}

.box_con05 form ul li .box_det {
  width: 70%;
  position: relative;
  position: relative;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media only screen and (max-width: 768px) {
  .box_con05 form ul li .box_det {
    display: block;
    width: 100%;
    padding: 1.5em 0.5em;
  }
}
.radio-label {
  display: block;
}

input[type=radio] {
  display: none;
}

.radio-text:before {
  content: "";
  box-shadow: 0 4px 16px rgba(51, 51, 51, 0.08);
  display: inline-block;
  width: 1.9033674963vw;
  height: 1.9033674963vw;
  margin-right: 6px;
  border-width: 1px;
  border-style: solid;
  border-radius: 50%;
  padding: 0.439238653vw;
  background-clip: content-box;
}

input[type=radio]:not(:checked) + .radio-text:before {
  border-color: #72767b;
}

input[type=radio]:checked + .radio-text:before {
  border-color: #707070;
  background-color: #191919;
}

@media only screen and (max-width: 768px) {
  .box_con05 form ul li .box_det span {
    top: 1.75em;
    right: 1em;
  }
}
.box_con05 form ul li .box_br {
  display: block;
  margin-bottom: 1.1713030747vw;
  line-height: 0;
}
.box_con05 form ul li .box_br label {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.box_con05 form ul li select,
.box_con05 form ul li textarea,
.box_con05 form ul li .wide {
  box-shadow: 0 6px 16px rgba(51, 51, 51, 0.08);
  width: 100%;
  height: 72px;
  padding: 0.5em 5.5em 0.5em 2.4158125915vw;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: #b1b1b1 1px solid;
  font-weight: 500;
}

@media only screen and (max-width: 768px) {
  .box_con05 form ul li select,
  .box_con05 form ul li textarea,
  .box_con05 form ul li .wide {
    padding: 0.5em 4.5em 0.5em 5.3333333333vw;
  }
}
.box_con05 form ul li textarea {
  height: 180px;
  padding-top: 1.756954612vw;
}

/*プライバシーのデザインcss↓*/
.con_pri {
  max-width: 700px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .con_pri {
    width: 95%;
  }
}
.con_pri .box_pri {
  height: 300px;
  overflow-y: scroll;
  border: 1px solid #cdcdcd;
  background: #f7f7f7;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 20px;
  padding: 20px 55px;
}

@media only screen and (max-width: 768px) {
  .con_pri .box_pri {
    margin-top: 4%;
    padding: 3%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .con_pri .box_pri {
    padding: 4%;
  }
}
.con_pri .box_pri .box_tori {
  text-align: left;
  margin-top: 40px;
}

@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori {
    margin-top: 4%;
  }
}
.con_pri .box_pri .box_tori h4 {
  font-weight: normal;
  margin-bottom: 30px;
  font-size: 150%;
}

@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori h4 {
    margin-bottom: 4%;
  }
}
.con_pri .box_pri .box_tori .txt {
  padding: 0 20px;
}

@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori .txt {
    padding: 0;
  }
}
.con_pri .box_pri .box_num {
  margin-top: 30px;
}

@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_num {
    margin-top: 5%;
  }
}
.con_pri .box_pri .box_num h4 {
  font-weight: normal;
  font-size: 113%;
}

.con_pri .box_pri .box_num .txt {
  padding: 10px 0 0 20px;
}

@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_num .txt {
    padding: 3% 0 0 3%;
  }
}
.box_check {
  text-align: center;
  margin: 1em auto;
}

.box_check label {
  display: inline-block;
}

.btn {
  text-align: center;
}

.btn input {
  display: inline-block;
  background: #eee;
  padding: 0.5em 4em;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  border: none;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.btn input:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}

header {
  z-index: 9999;
  position: relative;
  border-radius: 60px;
  width: calc((1200 / 1366) * 100vw);
  margin: auto;
  padding: calc((30 / 1366) * 100vw) 0;
  display: flex;
}
header .header-icon {
  display: flex;
  align-items: center;
}
header .header-icon img {
  width: 11.2005856515vw;
}
header #g-nav-pc {
  margin-left: auto;
}
header #g-nav-pc #g-nav-list-pc ul {
  display: flex;
  gap: 2.9282576867vw;
  align-items: center;
}
header #g-nav-pc #g-nav-list-pc ul li a {
  font-size: 1.0980966325vw;
}
header #g-nav-pc #g-nav-list-pc ul li a span {
  font-size: 1.2445095168vw;
  font-family: "Gantari", sans-serif;
}
header #g-nav-pc #g-nav-list-pc ul .mail-icon {
  transition: all 0.3s;
}
header #g-nav-pc #g-nav-list-pc ul .mail-icon div {
  transition: all 0.3s;
  position: relative;
  width: 12.298682284vw;
  height: 3.2210834553vw;
  padding: 0 1.756954612vw;
  align-items: center;
  display: grid;
  background-color: #218CDD;
}
header #g-nav-pc #g-nav-list-pc ul .mail-icon a {
  color: #fff;
}
header #g-nav-pc #g-nav-list-pc ul .mail-icon div button {
  padding: 0;
  position: absolute;
  height: inherit;
  width: inherit;
}
header #g-nav-pc #g-nav-list-pc ul .mail-icon div button a {
  transition: all 0.3s;
  align-items: center;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}
header #g-nav-pc #g-nav-list-pc ul .mail-icon div button a img {
  transition: all 0.3s;
  width: 1.4641288433vw;
  margin-right: 0.5856515373vw;
  /* filter: brightness(0); */
}

header #g-nav-pc #g-nav-list-pc ul .mail-icon:hover div:hover {
  opacity: unset;
  opacity: 0.7;
}
header #g-nav-pc #g-nav-list-pc ul .mail-icon:hover div a {
  opacity: unset;
}
header #g-nav-pc #g-nav-list-pc ul .mail-icon:hover div a img {
  filter: unset;
}

.back-text {
  position: absolute;
  z-index: -1;
  font-size: 23.4260614934vw;
  font-family: "Gantari", sans-serif;
  color: #f7f2e9;
  white-space: nowrap;
  top: 6.2957540264vw;
  left: -1.3909224012vw;
  letter-spacing: 0.4rem;
  line-height: 1.0774410774;
  height: 28.1112737921vw;
  align-items: center;
  display: flex;
  opacity: 0.4;
}

#top-kv .back-text {
  overflow: hidden;
  max-width: 100%;
}
#top-kv .kv-text {
  margin: calc((27 / 1366) * 100vw) auto;
  width: calc((690 / 1366) * 100vw);
}
#top-kv .kv-text h3 {
  font-size: calc((26 / 1366) * 100vw);
  text-align: center;
  letter-spacing: 0.12em;
  transform: translateX(7px);
  position: relative;
}
#top-kv .kv-text h3 span {
  font-family: "Gantari", sans-serif;
  font-size: calc((35 / 1366) * 100vw);
}
#top-kv .kv-text h3 span:nth-child(1) {
  padding-right: calc((8 / 1366) * 100vw);
}
#top-kv .kv-text h3 span:nth-child(3) {
  padding-left: calc((8 / 1366) * 100vw);
}
#top-kv .kv-text h3 .en {
  font-family: "Gantari", sans-serif;
  font-size: calc((26 / 1366) * 100vw);
}

#top-kv .kv-text h2 {
  text-align: center;
  font-size: calc((66 / 1366) * 100vw);
  line-height: 1.28;
  letter-spacing: 0.4rem;
}
#top-kv .kv-text h2 span {
  background-color: #DD002A;
  font-size: calc((66 / 1366) * 100vw);
  color: #fff;
  line-height: 1.28;
  display: inline-block;
  letter-spacing: 0.4rem;
}
#top-kv .kv-text p {
  text-align: center;
  font-size: calc((20 / 1366) * 100vw);
  margin-top: 1.1713030747vw;
}
#top-kv .kv-text ul {
  display: flex;
  justify-content: center;
  gap: 2.3%;
  width: calc((690 / 1366) * 100vw);
  margin: calc((38 / 1366) * 100vw) auto calc((88 / 1366) * 100vw);
}
#top-kv .kv-text ul li {
  text-align: center;
  background-color: #DD002A;
  width: 23.2%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  position: relative;
}
#top-kv .kv-text ul li p {
  color: #fff;
  font-size: calc((24 / 1366) * 100vw);
  margin-top: 1.4641288433vw;
}
#top-kv .kv-text ul li h1 {
  font-size: calc((92 / 1366) * 100vw);
  color: #FEFF49;
  position: absolute;
  transform: translateX(-50%);
  white-space: nowrap;
  line-height: 0.75;
  left: 56%;
}
#top-kv .kv-text ul li h1 span {
  font-size: calc((28 / 1366) * 100vw);
  color: #FEFF49;
}
#top-kv .kv-text ul li h2 {
  font-size: calc((34 / 1366) * 100vw);
  color: #FEFF49;
  letter-spacing: unset;
  line-height: 1.1;
}
#top-kv>img {
  position: absolute;
  width: calc((282 / 1366) * 100vw);
  top: calc((280 / 1366) * 100vw);
  right: calc((48 / 1366) * 100vw);
  z-index: -1;
  max-height: unset;
}
#top-kv .achievements-box{
  color: #fff;
  background-color: #DD002A;
  margin: 0 auto;
  width: calc((1080 / 1366) * 100vw);
  padding-top: calc((34 / 1366) * 100vw);
  padding-bottom: calc((47 / 1366) * 100vw);
}
#top-kv .achievements-box h3{
  font-size: calc((48 / 1366) * 100vw);
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: calc((26 / 1366) * 100vw);
}
#top-kv .achievements-box p{
  font-size: calc((20 / 1366) * 100vw);
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: calc((40 / 1366) * 100vw);
}
#top-kv .achievements-btn{
  transition: all 0.3s;
  background-color: #fff;
  position: relative;
  width: 31.0395314788vw;
  height: 5.8565153734vw;
  margin: 0 auto;
}
#top-kv .achievements-btn button{
  border-radius: 70px;
  height: inherit;
  width: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3.6603221083vw;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
#top-kv .achievements-btn .btn-g{
  height: inherit;
  width: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.6603221083vw;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  color: #DD002A;
}

#top-kv .achievements-btn div{
  background-color: #DD002A;
  position: absolute;
  width: 2.3426061493vw;
  height: 2.3426061493vw;
  border-radius: 50%;
  margin-right: 2.3426061493vw;
  justify-content: center;
  display: flex;
}
.content-title {
  text-align: center;
}
.content-title p {
  font-size: 1.317715959vw;
  color: #6ad680;
  font-family: "Gantari", sans-serif;
}
.content-title h2 {
  margin-top: 0.5856515373vw;
  font-size: calc((48 / 1366) * 100vw);
  letter-spacing: 0.3rem;
  line-height: 1.3em;
  color:  #fff;
}

.vtuber {
  font-family: "Gantari", sans-serif;
  font-size: calc((48 / 1366) * 100vw);
  letter-spacing: 0;
  color:  #fff;
}

#case-study {
  margin-top: 21.9619326501vw;
  position: relative;
}
#case-study .back-text {
  font-size: 11.7130307467vw;
  top: -5.8565153734vw;
  line-height: 1;
  height: 14.055636896vw;
  left: unset;
  right: -0.2196193265vw;
  letter-spacing: 0.2rem;
}

#problem {
  position: relative;
  text-align: center;
  background-color: #FFEAEE;
  margin-top: calc((65 / 1366) * 100vw);
  padding: calc((56 / 1366) * 100vw) 0  calc((32 / 1366) * 100vw);
  position: relative;
}
#problem::after{
  content: "";
  position: absolute;
  width: 100%;
  border-style: solid;
  border-width: calc((66 / 1366) * 100vw) 50vw 0 50vw;
  border-color: #ffeaee transparent transparent transparent;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc((-65 / 1366) * 100vw);
  z-index: 1;
}
#problem .content-title h2{
  color: #191919;
}
#problem .content-title h2 .vtuber{
  color: #191919;
}
#problem .content-title p {
  font-size: 1.317715959vw;
}
#problem p {
  font-size: 1.4641288433vw;
}
#problem img {
  width: 53.7335285505vw;
  margin-top: 2.3426061493vw;
  margin-top:  calc((17 / 1366) * 100vw);
}
#problem .back-text {
  font-size: 11.7130307467vw;
  top: -5.8565153734vw;
  line-height: 1;
  height: 14.055636896vw;
  left: -0.8052708638vw;
  right: unset;
  letter-spacing: 0.2rem;
}
#problem ul {
  margin-top: 2.9282576867vw;
  margin-bottom:  calc((60 / 1366) * 100vw);
  display: flex;
  gap: 1.2445095168vw;
  justify-content: center;
}
#problem ul li {
  background-color: #DD002A;
  width: 13.17715959vw;
  height: 13.17715959vw;
  position: relative;
}
#problem ul li div {
  position: absolute;
  text-align: center;
  width: max-content;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
#problem ul li div p {
  font-size: calc((15 / 1366) * 100vw);
  margin-bottom: 0.2928257687vw;
  color: #fff;
}
#problem ul li div .under-line {
  text-align: center;
  font-size: calc((20 / 1366) * 100vw);
  background: linear-gradient(transparent 8%, #FEFF49 0%);
  display: inline;
  color: #191919;
}
#problem ul li div .under-line .vtuber {
  font-size: 1.4641288433vw;
  color: #191919;
}

#solution {
  position: relative;
  background-color: #DD002A;
  background-size: 20px 20px;
  padding-bottom: 5.8565153734vw;
}
#solution .back-text {
  font-size: 11.7130307467vw;
  line-height: 1;
  top: -3.2210834553vw;
  height: 14.055636896vw;
  left: unset;
  right: -0.8052708638vw;
  letter-spacing: 0.2rem;
  color: #c7f8d1;
  opacity: 0.3;
  z-index: 0;
  mix-blend-mode: multiply;
}
#solution .content-title {
  padding-top: calc((132 / 1366) * 100vw);
}
#solution .content-title p {
  color: #191919;
}
#solution ul {
  width: 70.2781844802vw;
  margin: auto;
  gap: 2.4158125915vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.9282576867vw;
  margin-top: calc((43 / 1366) * 100vw);

}
#solution ul li {
  background-color: #fff;
  width: 21.8155197657vw;
  height: 18.7408491947vw;
  text-align: center;
  position: relative;
}
#solution ul li div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
#solution ul li div p {
  width: max-content;
  font-size: calc((20 / 1366) * 100vw);
  line-height: 1.4em;
    transform: translateY(calc((5 / 1366) * 100vw));
}
#solution ul li div p span{
  color: #DD002A;
  font-size: calc((20 / 1366) * 100vw);
}
#solution ul li .solution01 {
  width: 7.6134699854vw;
}
#solution ul li .solution02 {
  width: 7.1742313324vw;
}
#solution ul li .solution03 {
  width: 6.9546120059vw;
}
#solution ul li .solution04 {
  width: 6.8814055637vw;
}
#solution ul li .solution05 {
  width: 7.027818448vw;
}
#solution .solution-content {
  box-shadow: 0 6px 16px rgba(51, 51, 51, 0.08);
  position: relative;
  height: 10.3221083455vw;
  width: 70.2781844802vw;
  margin: auto;
  background-color: #fff;
  margin-top: calc((50 / 1366) * 100vw);
}
#solution .solution-content div {
  position: absolute;
  border-radius: 12px;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  justify-content: center;
}
#solution .solution-content div h2 {
  display: flex;
  align-items: center;
  font-size: 1.4641288433vw;
  margin-right: 8.78477306vw;
}
#solution .solution-content div h2 img {
  width: 14.1288433382vw;
  margin-right: 0.5856515373vw;
}
#solution .solution-content div p span {
  font-size: 0.7320644217vw;
  color: #cccccc;
}

#flow {
  position: relative;
  padding-top: calc((80 / 1366) * 100vw);
  padding-bottom: calc((70 / 1366) * 100vw);
  background-color: #FAFAFA;
}
#flow .content-title h2{
  color: #191919;
}
#flow .back-text {
  font-size: 11.7130307467vw;
  top: -8.9311859444vw;
  line-height: 1;
  height: 14.055636896vw;
  left: -0.8052708638vw;
  right: unset;
  letter-spacing: 0.2rem;
}
#flow .flow-inner {
  background: #fff;
  width: 79.0629575403vw;
  margin: 0 auto calc((24 / 1366) * 100vw);
  padding: 4.6852122987vw 4.39238653vw 0;
}
#flow .flow-inner img {
  margin-top: 2.9282576867vw;
  margin-top: calc((48 / 1366) * 100vw);
}
#flow p {
  text-align: center;
  font-size: calc((24 / 1366) * 100vw);
  line-height: 1.7em;
}
#flow p .vtuber {
  font-size: 1.6105417277vw;
  color: #191919;
}

#point {
  position: relative;
  background: #DD002A;
  padding: 4.6852122987vw;
  text-align: center;
  background-size: 20px 20px;
  padding-bottom: calc((74 / 1366) * 100vw);
}
#point h1 {
  font-size: calc((40 / 1366) * 100vw);
  color: #fff;
}
#point ul {
  display: flex;
  gap: 2%;
  margin-top: calc((28 / 1366) * 100vw);
  justify-content: center;
}
#point ul li {
  box-shadow: 0 6px 16px rgba(51, 51, 51, 0.08);
  text-align: center;
  background-color: #fff;
  width: calc((240 / 1366) * 100vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  position: relative;
}
#point ul li p {
  color: #191919;
  font-size: calc((36 / 1366) * 100vw);
  margin-top: 2.196193265vw;
}
#point ul li h1 {
  font-size: calc((140 / 1366) * 100vw);
  color: #fa4b4b;
  position: absolute;
  transform: translateX(-50%);
  white-space: nowrap;
  line-height: 0.75;
  left: 53%;
}
#point ul li h1 span {
  font-size: calc((40 / 1366) * 100vw);
  color: #fa4b4b;
}
#point p {
  margin-top: calc((6 / 1366) * 100vw);
  font-size: calc((22 / 1366) * 100vw);
  color: #fff;
}
#point p span{
  font-size: calc((44 / 1366) * 100vw);
  background: linear-gradient(transparent 8%, #FEFF49 0%);
  color: #fa4b4b;
}

#voice {
  position: relative;
}
#voice .back-text {
  font-size: 11.7130307467vw;
  line-height: 1;
  top: -9.1508052709vw;
  height: 14.055636896vw;
  left: unset;
  right: -0.8052708638vw;
  letter-spacing: 0.2rem;
  opacity: 0.3;
  z-index: 0;
  mix-blend-mode: multiply;
}
#voice .content-title {
  margin-top: calc((75 / 1366) * 100vw);
}
#voice .content-title h2 {
  font-size: calc((48 / 1366) * 100vw);
  color: #191919;
  line-height: 1.2em;
}
#voice .content-title h2 .vtuber {
  font-size: calc((48 / 1366) * 100vw);
  color: #191919;
}

#voice ul {
  display: flex;
  justify-content: center;
  gap: 1.756954612vw;
  margin-top: 2.9282576867vw;
}
#voice ul li {
  background-color: #fff;
  padding: 1.756954612vw;
  width: 22.2547584187vw;
  height: 19.1068814056vw;
  border: solid 4px #DD002A;
}
#voice ul li .voice-item {
  display: flex;
  align-items: center;
  border-bottom: #dddddd solid 1px;
  padding-bottom: 1.1713030747vw;
  margin-bottom: 1.756954612vw;
}
#voice ul li .voice-item img {
  width: 4.2459736457vw;
  margin-right: 1.1713030747vw;
}
#voice ul li .voice-item div p {
  font-size: 0.878477306vw;
}
#voice ul li .voice-item div h2 {
  font-size: 1.317715959vw;
}
#voice ul li p {
  font-weight: 500;
  letter-spacing: 0.13rem;
  line-height: 1.8;
}

#question {
  position: relative;
  margin-top: calc((76 / 1366) * 100vw);
  padding-bottom: calc((70 / 1366) * 100vw);
}
#question .content-title h2{
  color: #191919;
}
#question .back-text {
  font-size: 11.7130307467vw;
  top: -5.9297218155vw;
  line-height: 1;
  height: 14.055636896vw;
  left: -0.8052708638vw;
  right: unset;
  letter-spacing: 0.01rem;
}
#question .content-title {
  margin-bottom: 4.6852122987vw;
  margin-bottom: calc((43 / 1366) * 100vw);
}
#question .ac-label {
  margin: auto;
  margin-top: 1.756954612vw;
  width: 70.2781844802vw;
  background-color: #fff;
  height: 5.8565153734vw;
  display: grid;
  align-items: center;
  padding: 0 1% 0 2%;
  margin-bottom: 0.5856515373vw;
  border: solid 4px #DD002A;
}
#question .icon-wrap{
  background-color: #DD002A;
  border: none;
  width: calc((47 / 1366) * 100vw);
  height: calc((47 / 1366) * 100vw);
}
#question .icon:before, #question .icon:after {
  background-color: #fff;
  height: 2px;
}
#question .ac-label .question-item {
  display: flex;
  align-items: center;
  gap: 1.1713030747vw;
  line-height: 1;
}
#question .ac-label .question-item .q-text {
  font-size: 1.9033674963vw;
  color: #DD002A;
}
#question .ac-content {
  width: 70.2781844802vw;
  box-shadow: 0 4px 16px rgba(51, 51, 51, 0.08);
  background-color: #f7f2e9;
  margin: auto;
  height: auto;
  padding: 1.756954612vw 2.3426061493vw 1.756954612vw 3.513909224vw;
  border-radius: 12px;
}
#question .ac-content .p-faq__bodyinner {
  display: flex;
}
#question .ac-content .p-faq__bodyinner p {
  line-height: 2;
  letter-spacing: 0.15rem;
}
#question .ac-content .p-faq__bodyinner .q-text {
  font-size: 1.9033674963vw;
  color: #191919;
  margin-right: 1.317715959vw;
  line-height: 1;
}

#contact {
  position: relative;
  background-color: #218CDD;
  padding-bottom: 5.8565153734vw;
}
#contact .back-text {
  font-size: 11.7130307467vw;
  line-height: 1;
  top: -3.1478770132vw;
  height: 14.055636896vw;
  left: unset;
  right: -0.8052708638vw;
  letter-spacing: 0.2rem;
  opacity: 0.3;
  z-index: 0;
  mix-blend-mode: multiply;
}
#contact .content-title {
  padding-top: calc((60 / 1366) * 100vw);
}
#contact .content-title p {
  color: #191919;
}
#contact .contact-item {
  box-shadow: 0 4px 16px rgba(51, 51, 51, 0.08);
  width: 70.2781844802vw;
  margin: auto;
  background-color: #fff;
  border-radius: 12px;
  padding: 2.3426061493vw 2.9282576867vw 2.9282576867vw;
  margin-top: calc((45 / 1366) * 100vw);
}
#contact .contact-item p {
  text-align: center;
}
#contact .contact-item .contact-btn {
  display: flex;
  justify-content: space-between;
  margin-top: 1.756954612vw;
}
#contact .contact-item .contact-btn div {
  transition: all 0.3s;
  background-color: #fff;
  position: relative;
  width: 31.0395314788vw;
  height: 5.8565153734vw;
}
#contact .contact-item .contact-btn div:first-child {
  background-color: #218CDD;
}
#contact .contact-item .contact-btn div:last-child {
  border: solid 4px #218CDD;
}
#contact .contact-item .contact-btn div:last-child a{
color: #218CDD;
}
#contact .contact-item .contact-btn div:first-child a {
  color: #fff;
}
#contact .contact-item .contact-btn div .btn-p {
  height: inherit;
  width: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3.6603221083vw;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
#contact .contact-item .contact-btn div .btn-p a {
  width: inherit;
  height: inherit;
  border-radius: 70px;
  align-items: center;
  display: flex;
  justify-content: center;
}
#contact .contact-item .contact-btn div .btn-p div {
  background-color: #fff;
  position: absolute;
  width: 2.3426061493vw;
  height: 2.3426061493vw;
  border-radius: 50%;
  margin-right: 2.3426061493vw;
  justify-content: center;
  display: flex;
}
#contact .contact-item .contact-btn div .btn-g {
  border-radius: 70px;
  height: inherit;
  width: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3.6603221083vw;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
#contact .contact-item .contact-btn div .btn-g a {
  width: inherit;
  height: inherit;
  border-radius: 70px;
  align-items: center;
  display: flex;
  justify-content: center;
}
#contact .contact-item .contact-btn div .btn-g div {
  background-color: #218CDD;
  position: absolute;
  width: 2.3426061493vw;
  height: 2.3426061493vw;
  border-radius: 50%;
  margin-right: 2.3426061493vw;
  justify-content: center;
  display: flex;
}
#contact .contact-item .contact-btn div:last-child:hover {
  /* background: #c7f8d1; */
  opacity: 0.7;
}
#contact .contact-item .contact-btn div:hover {
  /* opacity: unset; */
  opacity: 0.7;
}
#contact .contact-item .contact-btn div:hover .btn-p div {
  background: #fff;
}
#contact .contact-item .contact-btn .btn-p:hover {
  opacity: unset;
}
#contact .contact-item .contact-btn .btn-p a:hover {
  opacity: unset;
}
#contact .contact-item .contact-btn .btn-p div:hover {
  background: #fff;
}
#contact .contact-item .contact-btn .btn-g:hover {
  opacity: unset;
}
#contact .contact-item .contact-btn .btn-g a:hover {
  opacity: unset;
}
#contact .btn-b {
  display: flex;
  gap: 3.513909224vw;
  justify-content: center;
  align-items: center;
  margin-top: 2.3426061493vw;
  margin-bottom: 5.8565153734vw;
  color: #fff;
}
#contact .btn-b a {
  display: flex;
  align-items: center;
}
#contact .btn-b a div {
  display: flex;
  justify-content: center;
  width: 2.3426061493vw;
  height: 2.3426061493vw;
  border-radius: 50%;
  margin-left: 1.1713030747vw;
  margin-left: 1.1713030747vw;
    background-color: #fff;
}
/* #contact .btn-b a div img {
  filter: invert(1);
} */
#contact p {
  text-align: center;
  color: #fff;
}
#contact .box_con05 {
  margin-top: 2.3426061493vw;
}
#contact .box_con05 form .formTable li .title {
  width: 11.7130307467vw;
}
#contact .box_con05 form .formTable li .title em {
  font-style: unset;
  color: #fff;
}
#contact .box_con05 form .formTable li .box_det {
  width: 58.5651537335vw;
}
#contact label{
  color: #fff;
}
#contact .radio-text{
  background-color: #fff;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  width: 1.9033674963vw;
  height: 1.9033674963vw;
  margin-right: 6px;
}
#contact .up-text {
  text-align: unset;
  padding-top: 0;
  align-items: unset;
}
#contact input[type=checkbox] {
  box-shadow: 0 4px 16px rgba(51, 51, 51, 0.08);
  width: 2.3426061493vw;
  height: 2.3426061493vw;
  margin: 0 0.878477306vw 0 0;
}
#contact .box_check label {
  display: inline-flex;
  align-items: center;
}
#contact .check a {
  text-decoration: underline;
}
#contact .confirmation {
  transition: all 0.3s;
  position: relative;
  width: 31.0395314788vw;
  height: 5.8565153734vw;
  border: solid 2px #fff;
  margin: auto;
  margin-top: 4.6852122987vw;
}
#contact .confirmation a{
  color: #fff;
}
#contact .box_check .check{
  color: #fff;
}

#contact .confirmation .btn-p {
  width: 100%;
  height: inherit;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5.1244509517vw;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
#contact .confirmation .btn-p div {
  background-color: #fff;
  width: 2.3426061493vw;
  height: 2.3426061493vw;
  border-radius: 50%;
  justify-content: center;
  display: flex;
  margin-right: 2.3426061493vw;
}
#contact .confirmation:hover {
  opacity: unset;
  border: none;
  background-color: #fff;
}
#contact .confirmation:hover a{
  color: #218CDD;
}
#contact .confirmation:hover .btn-p div{
  background-color: #218CDD;
}
#contact .confirmation:hover .btn-g div {
  background: #fff;
}
.confirmation img.default {
  display: block;
}
.confirmation img.hover {
  display: none;
}
.confirmation:hover img.default {
  display: none;
}
.confirmation:hover img.hover {
  display: block;
}

#contact .btn-p:hover {
  opacity: unset;
}
#contact .btn-p a:hover {
  opacity: unset;
}
#contact .btn-p div:hover {
  background: #fff;
}
#contact textarea::placeholder {
  color: #cccccc;
}
#contact input::placeholder {
  color: #cccccc;
}
#contact img {
  width: 1.0248901903vw;
  object-fit: contain;
}

footer {
  background: #fdfcf8;
}
footer .footer-inner {
  width: 87.8477306003vw;
  margin: auto;
  padding-top: 4.6852122987vw;
  padding-bottom: 2.9282576867vw;
}
footer .footer-inner p {
  font-weight: 500;
  font-size: 0.9516837482vw;
}
footer .footer-inner img {
  width: 11.2005856515vw;
  margin-bottom: 1.756954612vw;
}
footer .footer-inner h2 {
  margin-top: 1.1713030747vw;
  margin-bottom: 0.439238653vw;
  font-size: 0.9516837482vw;
}
footer .footer-inner h2 .vtuber {
  font-size: 1.0248901903vw;
  color: #191919;
}
footer .footer-inner .footer-text {
  font-family: "Gantari", sans-serif;
  margin-top: 1.0248901903vw;
  display: flex;
  justify-content: space-between;
}
footer .footer-inner .footer-text a {
  font-size: 1.0248901903vw;
  font-weight: 500;
}
footer .footer-inner .footer-text p {
  font-size: 0.8052708638vw;
}

@media only screen and (max-width: 768px) {
  * {
    font-size: 4.2666666667vw;
  }
  header {
    margin-top: calc((24 / 375) * 100vw);
    width: 90%;
  }
  header .header-icon img {
    width: 31.7333333333vw;
  }
  header #g-nav #g-nav-list ul {
    display: block;
  }
  header #g-nav #g-nav-list ul li a {
    font-size: 4.2666666667vw;
  }
  header #g-nav #g-nav-list ul li a span {
    font-size: 4.8vw;
  }
  #g-nav .mail-icon {
    width: 78.6666666667vw;
    height: 17.0666666667vw;
    margin-top: 10.6666666667vw;
    align-items: center;
    display: grid;
    justify-content: center;
    background-color: #218CDD;
  }
  #g-nav .mail-icon a {
    align-items: center;
    display: flex;
    color: #fff
  }
  #g-nav .mail-icon a img {
    width: 5.3333333333vw;
    margin-right: 1.0666666667vw;
  }
  .content-title {
    text-align: center;
  }
  .content-title p {
    font-size: 3.7333333333vw;
    color: #6ad680;
    font-family: "Gantari", sans-serif;
  }
  .content-title h2 {
    font-size: 5.8666666667vw;
    margin-top: 2.4vw;
    letter-spacing: 0.02rem;
  }
  .vtuber {
    font-family: "Gantari", sans-serif;
    font-size: 6.4vw;
    letter-spacing: 0;
  }
  #top-kv {
    padding: 0 5.3333333333vw;
  }
  #top-kv .back-text {
    top: 11.7333333333vw;
    height: 46.9333333333vw;
    font-size: 38.9333333333vw;
    line-height: 1.0735294118;
  }
  #top-kv .kv-text {
    margin: calc((36 / 375) * 100vw) auto calc((83 / 375) * 100vw);
    width: 100%;
  }
  #top-kv .kv-text h3 {
    font-size: calc((18 / 375) * 100vw);
    margin-bottom: calc((5 / 375) * 100vw);
  }
  #top-kv .kv-text h3 .en {
    font-size: calc((18 / 375) * 100vw);
  }
  #top-kv .kv-text h3 span {
    font-size: 4.5333333333vw;
  }
  #top-kv .kv-text h2 {
    font-size: calc((42 / 375) * 100vw);
    letter-spacing: 0.2rem;
  }
  #top-kv .kv-text h2 span {
    font-size: calc((42 / 375) * 100vw);
  }
  #top-kv .kv-text p {
    font-size: calc((14 / 375) * 100vw);
    margin-top: calc((26 / 375) * 100vw);
    line-height: 1.7em;
    letter-spacing: 0.1em;
  }
  #top-kv .kv-text ul {
    gap: 2.4vw;
    margin-top: 6.4vw;
  }
  #top-kv .kv-text ul li {
    width: 28.2666666667vw;
    height: 28.2666666667vw;
  }
  #top-kv .kv-text ul li p {
    font-size: 3.4666666667vw;
    margin-top: 4.5333333333vw;
  }
  #top-kv .kv-text ul li h1 {
    font-size: 15.4666666667vw;
  }
  #top-kv .kv-text ul li h1 span {
    font-size: 4vw;
  }
  #top-kv .kv-text ul li h2 {
    font-size: 5.3333333333vw;
  }
  #top-kv img {
    position: unset;
    width: 89.3333333333vw;
    margin-top: 8.5333333333vw;
    display: none;
  }
  #top-kv .achievements-box {
    width: 100%;
    padding-top: calc((29 / 375) * 100vw);
    padding-bottom:  calc((48 / 375) * 100vw);
  }
  #top-kv .achievements-box h3{
    font-size: calc((32 / 375) * 100vw);
    margin-bottom: calc((14 / 375) * 100vw);
  }
  #top-kv .achievements-box p{
    font-size: calc((16 / 375) * 100vw);
    line-height: 1.9em;
    margin-bottom:  calc((24 / 375) * 100vw);
  }
  #top-kv .achievements-btn{
    width: 88%;
    height: calc((64 / 375) * 100vw);
  }
  #top-kv .achievements-btn button{
    width: 88%;
  }
  #top-kv .achievements-btn div{
    width: calc((25 / 375) * 100vw);
    height: calc((25 / 375) * 100vw);
    margin-right: -10px;
  }
  #case-study {
    padding: 0 5.3333333333vw;
    margin-top: 19.4666666667vw;
    position: relative;
  }
  #case-study .back-text {
    font-size: 21.3333333333vw;
    top: -13.0666666667vw;
    line-height: 1;
    height: 25.6vw;
    left: -29.3333333333vw;
    right: unset;
    letter-spacing: 0.2rem;
  }
  #problem {
    padding: 0 5.3333333333vw;
    position: relative;
    margin-top: calc((65 / 375) * 100vw);
    text-align: center;
    padding-top: calc((23 / 375) * 100vw);
    padding-bottom: calc((60 / 375) * 100vw);
  }
  #problem .content-title h2 {
    font-size: calc((32 / 375) * 100vw);
    line-height: 1.43em;
  }
  #problem .content-title h2 .vtuber{
    font-size: calc((32 / 375) * 100vw);
  }
  #problem .content-title p {
    font-size: 3.7333333333vw;
  }
  #problem p {
    font-size: calc((20 / 375) * 100vw);
    line-height: 1.56em;
    letter-spacing: 0.07em;
  }
  #problem img {
    width: 89%;
    margin-top: calc((21 / 375) * 100vw);
    margin: auto;
  }
  #problem .back-text {
    font-size: 21.3333333333vw;
    top: -12.8vw;
    line-height: 1;
    height: 25.6vw;
    left: -0.8052708638vw;
    right: unset;
    letter-spacing: 0.2rem;
  }
  #problem ul {
    margin-top: calc((34 / 375) * 100vw);
    margin-bottom: calc((41 / 375) * 100vw);
    gap: 2.9333333333vw;
    flex-wrap: wrap;
  }
  #problem ul li {
    width: 43.2vw;
    height: 43.2vw;
  }
  #problem ul li div p {
    font-size: 3.4666666667vw;
    margin-bottom: 0.5333333333vw;
  }
  #problem ul li div .under-line {
    font-size: 4.2666666667vw;
  }
  #problem ul li div .under-line .vtuber {
    font-size: 4.8vw;
  }
  #problem::after{
    border-width: calc((45 / 375) * 100vw) 50vw 0 50vw;
    bottom: calc((-45 / 375) * 100vw);
  }
  #solution {
    padding: 0 5.3333333333vw;
    margin-top: 0;
    padding-bottom: 14.9333333333vw;
    padding-bottom: calc((64 / 375) * 100vw);
  }
  #solution .content-title h2{
    font-size: calc((32 / 375) * 100vw);
    line-height: 1.43em;
    letter-spacing: 0.08em;
  }
  #solution .content-title h2 .vtuber{
    font-size: calc((39 / 375) * 100vw);
  }
  #solution .back-text {
    font-size: 21.3333333333vw;
    top: -5.8666666667vw;
    height: 25.6vw;
    left: unset;
    right: -1.6vw;
  }
  #solution .content-title {
    padding-top: calc((60 / 375) * 100vw);
  }
  #solution ul {
    width: 100%;
    gap: 4vw;
    margin-top: calc((31 / 375) * 100vw);
  }
  #solution ul li {
    width: 42.6666666667vw;
    height: 51.7333333333vw;
  }
  #solution ul li div p {
    width: 37.3333333333vw;
    margin-top: 3.2vw;
    font-size: 3.7333333333vw;
  }
  #solution ul li div p span{
    font-size: 3.7333333333vw;
  }
  #solution ul li .solution01 {
    width: 18.6666666667vw;
  }
  #solution ul li .solution02 {
    width: 17.8666666667vw;
  }
  #solution ul li .solution03 {
    width: 18.1333333333vw;
  }
  #solution ul li .solution04 {
    width: 18.1333333333vw;
  }
  #solution ul li .solution05 {
    width: 18.9333333333vw;
  }
  #solution .solution-content {
    height: 56vw;
    width: 78.6666666667vw;
    margin-top: calc((74 / 375) * 100vw);
  }
  #solution .solution-content div {
    padding: 0 5.3333333333vw;
    display: block;
  }
  #solution .solution-content div h2 {
    font-size: 4.2666666667vw;
    margin-right: 0;
    justify-content: center;
    margin-top: calc((20 / 375) * 100vw);
  }
  #solution .solution-content div h2 img {
    width: 43.7333333333vw;
    margin-right: 1.0666666667vw;
  }
  #solution .solution-content div p {
    margin-top: calc((13 / 375) * 100vw);
    line-height: 1.8em;
    letter-spacing: 0.15rem;
  }
  #solution .solution-content div p span {
    font-size: 2.6666666667vw;
  }
  #flow {
    padding: calc((64 / 375) * 100vw) 5.3333333333vw;
    padding-bottom: calc((75 / 375) * 100vw);
    
  }
  #flow .content-title h2{
    font-size: calc((32 / 375) * 100vw);
    line-height: 1.5em;
  }
  #flow .back-text {
    font-size: 21.3333333333vw;
    top: -22.6666666667vw;
    height: 25.6vw;
    left: -1.6vw;
  }
  #flow .flow-inner {
    width: 100%;
    margin-top: 0;
    padding: calc((43 / 375) * 100vw) 5.3333333333vw 0;
    margin-bottom: calc((29 / 375) * 100vw);
  }
  #flow .flow-inner img {
    margin-top: 10.6666666667vw;
  }
  #flow p {
    font-size: calc((20 / 375) * 100vw);
    line-height: 1.55em;
  }
  #flow p .vtuber {
    font-size: 5.8666666667vw;
  }
  #point {
    padding: calc((39 / 375) * 100vw) 0 calc((44 / 375) * 100vw);
  }
  #point h1 {
    font-size: calc((32 / 375) * 100vw);
  }
  #point ul {
    gap: 4.2666666667vw;
    margin-top: 6.4vw;
  }
  #point ul li {
    width: 42.6666666667vw;
    height: 42.6666666667vw;
    border-radius: 50%;
  }
  #point ul li p {
    font-size: calc((20 / 375) * 100vw);
    margin-top: calc((22 / 375) * 100vw);
  }
  #point ul li h1 {
    font-size: calc((90 / 375) * 100vw);
    margin-top: calc((9 / 375) * 100vw);
  }
  #point ul li h1 span {
    font-size: calc((28 / 375) * 100vw);
  }
  #point p {
    margin-top: calc((36 / 375) * 100vw);
    font-size: calc((20 / 375) * 100vw);
  }
  #point p span{
    font-size: calc((32 / 375) * 100vw);
  }
  #voice {
    padding: 0 5.3333333333vw;
  }
  #voice .content-title h2{
    font-size: calc((32 / 375) * 100vw);
    line-height: 1.45em;
  }
  #voice .content-title h2 .vtuber{
    font-size: calc((40 / 375) * 100vw);
  }
  #voice .back-text {
    font-size: 21.3333333333vw;
    line-height: 1;
    top: -23.2vw;
    height: 25.6vw;
    right: -1.6vw;
  }
  #voice .content-title {
    margin-top: 17.3333333333vw;
    margin-top: calc((70 / 375) * 100vw);
  }
  #voice ul {
    display: block;
    margin-top: 10.6666666667vw;
    margin-top: calc((35 / 375) * 100vw);
  }
  #voice ul li {
    padding: 6.4vw;
    width: 78.6666666667vw;
    height: 100%;
    margin: auto;
    margin-bottom: 6.4vw;
  }
  #voice ul li .voice-item {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: unset;
    position: relative;
  }
  #voice ul li .voice-item img {
    width: 15.4666666667vw;
    margin-right: 4.2666666667vw;
  }
  #voice ul li .voice-item div p {
    font-size: 3.2vw;
    color: #191919;
    font-size: calc((12 / 375) * 100vw);
    display: block;
    border: none;
    margin-top: 0;
    padding-top: 0;
  }
  #voice ul li .voice-item div h2 {
    font-size: 4.8vw;
  }
  #voice ul li .voice-item .icon-wrap {
    position: absolute;
    right: 0;
    width: 38px;
    height: 38px;
    background: #DD002A;
    border-radius: 50%;
    top: unset;
    transform: unset;
    margin-right: 0;
    border: none;
  }
  #voice ul li p {
    letter-spacing: 0;
    display: none;
    border-top: #dddddd solid 1px;
    padding-top: 4.2666666667vw;
    margin-top: 6.4vw;
  }
  #voice .icon:before, #voice .icon:after{
    background-color: #fff;
    width: calc((10 / 375) * 100vw);
    height: 2px;
  }
  #question {
    padding: 0 5.3333333333vw;
    margin-top: calc((72 / 375) * 100vw);
    padding-bottom: 27.2vw;
  }
  #question .content-title h2{
    font-size: calc((32 / 375) * 100vw);
  }
  #question .back-text {
    font-size: 21.3333333333vw;
    top: -12.8vw;
    height: 25.6vw;
    left: -0.8vw;
    letter-spacing: 0.1rem;
  }
  #question .content-title {
    margin-bottom: 10.6666666667vw;
    margin-bottom: calc((38 / 375) * 100vw);
  }
  #question .ac-label {
    margin-top: 6.4vw;
    width: 100%;
    height: 17.0666666667vw;
    padding: 0 5.3333333333vw 0 5.3333333333vw;
    margin-bottom: 2.1333333333vw;
    transition: all 0.3s;
  }
  #question .ac-label .question-item {
    display: flex;
    align-items: center;
    gap: 2.1333333333vw;
    line-height: 1;
  }
  #question .ac-label .question-item p:last-child{
    width: 80%;
    font-size: calc((15 / 375) * 100vw);
  }
  #question .ac-label .question-item .q-text {
    font-size: calc((26 / 375) * 100vw);
    color: #DD002A;
  }
  #question .icon-wrap{
    width: calc((30 / 375) * 100vw);
    height: calc((30 / 375) * 100vw);
    margin-right: 11px;
  }
  #question .icon:before, #question .icon:after{
    width: calc((10 / 375) * 100vw);
  }
  #question .ac-content {
    width: 100%;
    padding: 6.4vw 5.3333333333vw 6.4vw 5.3333333333vw;
  }
  #question .ac-content .p-faq__bodyinner .q-text {
    font-size: 6.9333333333vw;
    margin-right: 3.7333333333vw;
  }
  #contact {
    padding: 0 5.3333333333vw;
    padding-bottom: 14.9333333333vw;
  }
  #contact .contact-item p{
    color: #191919;
  }
  #contact .content-title h2{
    font-size: calc((32 / 375) * 100vw);
    letter-spacing: 0.1em;
  }
  #contact .back-text {
    font-size: 21.3333333333vw;
    top: -5.8666666667vw;
    height: 25.6vw;
    right: -0.8vw;
    letter-spacing: 0.1rem;
  }
  #contact .content-title {
    padding-top: calc((49 / 375) * 100vw);
  }
  #contact .contact-item {
    width: 100%;
    margin-top: calc((44 / 375) * 100vw);
    padding: calc((26 / 375) * 100vw) 0 calc((14 / 375) * 100vw);
  }
  #contact .contact-item .contact-btn {
    display: block;
    width: 88%;
    margin: calc((17 / 375) * 100vw) auto;
  }
  #contact .contact-item .contact-btn div {
    width: 100%;
    height: 17.666667vw;
    margin-bottom: calc((13 / 375) * 100vw);
  }
  #contact .contact-item .contact-btn div .btn-p {
    gap: 5.8666666667vw;
  }
  #contact .contact-item .contact-btn div .btn-p div {
    width: 6.4vw;
    height: 6.4vw;
  }
  #contact .contact-item .contact-btn div .btn-g {
    gap: 5.8666666667vw;
  }
  #contact .contact-item .contact-btn div .btn-g div {
    width: 6.4vw;
    height: 6.4vw;
  }
  #contact .contact-item .contact-btn div:last-child {
    margin-bottom: 0;
  }
  #contact .btn-b {
    display: block;
    margin: auto;
    width: 69%;
    margin-top: calc((24 / 375) * 100vw);
    margin-bottom: calc((58 / 375) * 100vw);
  }
  #contact .btn-b a {
    margin-bottom: 4.2666666667vw;
  }
  #contact .btn-b a div {
    width: 8.5333333333vw;
    height: 8.5333333333vw;
    margin-left: auto;
  }
  #contact .btn-b a div img {
    width: 3.7333333333vw;
  }
  #contact .box_con05 {
    width: 100%;
    margin-top: 10.6666666667vw;
  }
  #contact .box_con05 form .formTable .mt0 {
    margin-top: 0;
  }
  #contact .box_con05 form .formTable li {
    margin-top: 10.6666666667vw;
  }
  #contact .box_con05 form .formTable li .box_br {
    margin-top: 4.2666666667vw;
  }
  #contact .box_con05 form .formTable li .box_br .radio-text:before {
    width: 6.9333333333vw;
    height: 6.9333333333vw;
    padding: 1.6vw;
    margin-right: 2.6666666667vw;
  }
  #contact .box_con05 form .formTable li .title {
    padding: 0;
    width: 100%;
    text-align: unset;
  }
  #contact .box_con05 form .formTable li .box_det {
    width: 100%;
    padding: 0;
    margin-top: 3.2vw;
  }
  #contact .box_check {
    margin-top: 13.3333333333vw;
  }
  #contact input[type=checkbox] {
    width: 8vw;
    height: 8vw;
    margin: 0 2.6666666667vw 0 0;
  }
  #contact .confirmation {
    width: 78.6666666667vw;
    height: 19.2vw;
    margin-top: 17.3333333333vw;
  }
  #contact .confirmation .btn-p {
    gap: 12.2666666667vw;
  }
  #contact .confirmation .btn-p div {
    width: 6.4vw;
    height: 6.4vw;
  }
  #contact textarea::placeholder {
    color: #cccccc;
  }
  #contact input::placeholder {
    color: #cccccc;
  }
  #contact img {
    width: 2.6666666667vw;
    object-fit: contain;
  }
  #contact .radio-text{
    width: 6.9333333333vw;
    height: 6.9333333333vw;
  }
  footer .footer-inner {
    width: 100%;
    padding: 17.0666666667vw 5.3333333333vw;
  }
  footer .footer-inner p {
    font-size: 3.4666666667vw;
  }
  footer .footer-inner img {
    width: 40.8vw;
    margin-bottom: 6.4vw;
  }
  footer .footer-inner h2 {
    margin-top: 4.2666666667vw;
    margin-bottom: 1.6vw;
    font-size: 3.4666666667vw;
  }
  footer .footer-inner h2 .vtuber {
    font-size: 3.7333333333vw;
    color: #191919;
  }
  footer .footer-inner .footer-text {
    margin-top: 3.7333333333vw;
    display: block;
  }
  footer .footer-inner .footer-text p {
    font-size: 3.7333333333vw;
  }
  footer .footer-inner .footer-text p:last-child {
    margin-top: 13.3333333333vw;
    font-size: 2.9333333333vw;
  }
  footer .footer-inner .footer-text a{
    font-size: calc((14 / 375) * 100vw);
  }
}
#case-study .swiper--wrapper {
  /* wrapperのサイズを調整 */
  width: 100%;
  height: 300px;
}
#case-study .swiper-slide {
  /* スライドのサイズを調整、中身のテキスト配置調整、背景色 */
  color: #ffffff;
  width: 100% !important;
  height: 100%;
  text-align: center;
  line-height: 300px;
}
#case-study .swiper-slide img {
  width: 58.5651537335vw;
}
#case-study iframe {
  position: relative;
  left: 0 !important;
}
#case-study .swiper {
  box-shadow: 0 6px 16px rgba(51, 51, 51, 0.08);
  margin-top: 2.9282576867vw;
  width: 58.5651537335vw;
  height: 35.1390922401vw;
}
#case-study .swiper-button-next {
  width: 7.027818448vw;
  height: 7.027818448vw;
  right: 10.4685212299vw;
  top: 58%;
  display: block;
}
#case-study .swiper-button-next div {
  background-color: #dddddd;
  width: 7.027818448vw;
  height: 7.027818448vw;
  border-radius: 50%;
  border: unset;
  justify-content: center;
  display: flex;
}
#case-study .swiper-button-next div img {
  width: 1.6105417277vw;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
#case-study .swiper-button-next p {
  display: none;
}
#case-study .swiper-button-next:hover div {
  background-color: #f8c7e0;
  border: solid 2px #191919;
}
#case-study .swiper-button-next:hover div img {
  filter: unset;
}
#case-study .swiper-button-next:hover p {
  display: block;
  position: absolute;
  color: #f8c7e0;
  top: -1.9765739385vw;
  left: 50%;
  transform: translateX(-50%);
}
#case-study .swiper-button-prev {
  width: 7.027818448vw;
  height: 7.027818448vw;
  left: 10.4685212299vw;
  display: block;
  top: 58%;
}
#case-study .swiper-button-prev div {
  background-color: #dddddd;
  width: 7.027818448vw;
  height: 7.027818448vw;
  border-radius: 50%;
  border: unset;
  justify-content: center;
  display: flex;
}
#case-study .swiper-button-prev div img {
  width: 1.6105417277vw;
  object-fit: contain;
  transform: scale(-1, 1);
  filter: brightness(0) invert(1);
}
#case-study .swiper-button-prev p {
  display: none;
}
#case-study .swiper-button-prev:hover div {
  background-color: #f8c7e0;
  border: solid 2px #191919;
}
#case-study .swiper-button-prev:hover div img {
  filter: unset;
}
#case-study .swiper-button-prev:hover p {
  display: block;
  position: absolute;
  color: #f8c7e0;
  top: -1.9765739385vw;
  left: 50%;
  transform: translateX(-50%);
}
#case-study .swiper-button-prev::after {
  display: none;
}
#case-study .swiper-button-next::after {
  display: none;
}
#case-study .swiper-pagination {
  bottom: unset;
  margin-top: 2.196193265vw;
  line-height: 0;
}
#case-study .swiper-pagination-bullet {
  background-color: #f8c7e0;
}

@media only screen and (max-width: 768px) {
  #case-study .swiper {
    margin-top: 10.6666666667vw;
    width: 100%;
    height: 81.3333333333vw;
  }
  #case-study .swiper img {
    width: 100%;
  }
  #case-study .swiper-button-prev {
    width: 8.5333333333vw;
    height: 8.5333333333vw;
    left: 5.3333333333vw;
    top: unset;
    bottom: 42.6666666667vw;
  }
  #case-study .swiper-button-prev div {
    width: 8.5333333333vw;
    height: 8.5333333333vw;
  }
  #case-study .swiper-button-prev div img {
    width: 1.6105417277vw;
  }
  #case-study .swiper-button-prev:hover p {
    display: none;
  }
  #case-study .swiper-button-next {
    width: 8.5333333333vw;
    height: 8.5333333333vw;
    right: 5.3333333333vw;
    top: unset;
    bottom: 42.6666666667vw;
  }
  #case-study .swiper-button-next div {
    width: 8.5333333333vw;
    height: 8.5333333333vw;
  }
  #case-study .swiper-button-next div img {
    width: 1.6105417277vw;
  }
  #case-study .swiper-button-next:hover p {
    display: none;
  }
}
.transparent {
  position: fixed;
  z-index: 800;
  bottom: 0;
  right: 0;
  width: 24.8901903367vw;
  padding: 2.3% 2.35% 1.3%;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(3px);
  transition: all 0.3s;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(51, 51, 51, 0.08);
}
.transparent h2 {
  color: #fff;
  background-color: #218CDD;
  padding: 4.5%;
  font-size: calc((16 / 1366) * 100vw);
  text-align: center;
}
.transparent .top-paper-btn-pc {
  display: block;
  margin-top: 12px;
  color: #218CDD;
  background-color: #fff;
  border: #218CDD;
  padding: 4.5%;
  font-size: calc((16 / 1366) * 100vw);
  text-align: center;
}
.transparent h2:hover {
  opacity: 0.7;
}
.transparent .contact-btn {
  display: flex;
  justify-content: space-between;
  /* margin-top: 0.878477306vw; */
}
.transparent .contact-btn div {
  transition: all 0.3s;
  position: relative;
  width: 10.2489019034vw;
  height: 3.6603221083vw;
}
.transparent .contact-btn div button {
  width: inherit;
  height: 100%;
  border-radius: 50px;
  padding: 0;
}

.transparent .contact-btn div button a {
  width: inherit;
  height: inherit;
  border-radius: 70px;
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  font-size: calc((14 / 1366) * 100vw);
}
.transparent .contact-btn div button a::before{
  position: absolute;
  content: "";
  bottom: calc((15 / 1366) * 100vw);
  left: 50%;
  transform: translateX(-50%);
  width: 56%;
  height: 1px;
  background-color: #191919;
  display: block;
}
.transparent .contact-btn div:hover button a::before{
  opacity: 0.7;
}
.transparent .contact-btn div button img{
  width: calc((15 / 1366) * 100vw);
  margin-left: calc((6 / 1366) * 100vw);
}
@media only screen and (max-width: 768px){
  .transparent .contact-btn div button a {
    color: #ffff;
    font-size: calc((15 / 375) * 100vw);
  }
  .transparent .contact-btn div button a::before{
    display: none;
  }
}
.transparent .contact-btn div button a:hover {
  opacity: unset;
}
.transparent .contact-btn div button:hover {
  opacity: unset;
}
.transparent .contact-btn div:hover {
  opacity: 0.7;
}
.transparent .arrow-btn {
  display: flex;
  align-items: center;
  text-decoration: underline;
  justify-content: center;
}
.transparent .arrow-btn img {
  width: 1.4641288433vw;
}

@media only screen and (max-width: 768px) {
  .transparent.is_sp {
    width: 100%;
    height: 65px;
    padding: 3px 32px;
    border-radius: 0;
    background-color: #218CDD;
  }
  .transparent.is_sp div {
    width: 82.6330532213vw;
    height: 13.3333333333vw;
  }
}
#contact-page {
  background: unset;
  background: #fdfcf8;
}
#contact-page main {
  background: #fff;
  margin-top: 2.9282576867vw;
}
#contact-page main .main-inner {
  width: 70.2781844802vw;
  margin: auto;
  padding: 5.8565153734vw 0;
}
#contact-page main .main-inner h1 {
  font-size: 2.196193265vw;
  text-align: center;
}
#contact-page main .main-inner ul {
  margin-top: 5.8565153734vw;
}
#contact-page main .main-inner ul li {
  display: flex;
  gap: 4.6852122987vw;
  margin-bottom: 3.513909224vw;
}
#contact-page main .main-inner ul li h2 {
  width: 14.6412884334vw;
}
#contact-page main .main-inner ul li h2 span {
  color: #e38585;
}
#contact-page main .main-inner ul li p {
  font-weight: 500;
}
#contact-page .contact-btn {
  display: flex;
  gap: 2.3426061493vw;
  justify-content: center;
  margin-top: 5.8565153734vw;
}
#contact-page .contact-btn div {
  transition: all 0.3s;
  background-color: #fff;
  position: relative;
  width: 31.0395314788vw;
  height: 5.8565153734vw;
  border: solid 2px #218CDD;
}
#contact-page .contact-btn div .btn-p {
  padding: 0;
  height: inherit;
  width: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
#contact-page .contact-btn div .btn-p a {
  width: inherit;
  height: inherit;
  align-items: center;
  display: flex;
  justify-content: center;
  color: #218CDD
}
#contact-page .contact-btn div .btn-p div {
  margin-left: 2.3426061493vw;
  background-color: #218CDD;
  position: absolute;
  width: 2.3426061493vw;
  height: 2.3426061493vw;
  border-radius: 50%;
  margin-right: 6.3689604685vw;
  justify-content: center;
  display: flex;
}
#contact-page .contact-btn div .btn-p div img {
  transform: scale(-1, 1);
  width: 1.0248901903vw;
  object-fit: contain;
}
#contact-page .contact-btn div .end-p {
  margin-left: 0;
  justify-content: end;
  height: 100%;
}
#contact-page .contact-btn div .end-p div {
  margin-right: 2.3426061493vw;
  margin-left: 6.3689604685vw;
}
#contact-page .contact-btn div .end-p div img {
  transform: unset;
  width: 1.0248901903vw;
  object-fit: contain;
}
#contact-page .contact-btn div:hover {
  opacity: unset;
  background-color: #218CDD;
  border-radius: 0;
  border: none;
}
#contact-page .contact-btn div:hover .btn-p div {
  background: #fff;
}
#contact-page .contact-btn div:hover .btn-p a {
  color: #fff;
}
#contact-page .contact-btn div:hover .btn-g div {
  background: #fff;
}
#contact-page .contact-btn div img.default {
  display: block;
}
#contact-page .contact-btn div img.hover {
  display: none;
}
#contact-page .contact-btn div:hover img.default {
  display: none;
}
#contact-page .contact-btn div:hover img.hover {
  display: block;
}
#contact-page .contact-btn .btn-p:hover {
  opacity: unset;
}
#contact-page .contact-btn .btn-p a:hover {
  opacity: unset;
}
#contact-page .contact-btn .btn-p div:hover {
  background: #fff;
}

@media only screen and (max-width: 768px) {
  #contact-page main {
    margin-top: 8.5333333333vw;
  }
  #contact-page main .main-inner {
    width: 100%;
    padding: 12.8vw 5.3333333333vw 14.9333333333vw;
    margin: unset;
  }
  #contact-page main .main-inner h1 {
    font-size: 5.8666666667vw;
  }
  #contact-page main .main-inner ul {
    margin-top: 10.6666666667vw;
  }
  #contact-page main .main-inner ul li {
    display: block;
  }
  #contact-page main .main-inner ul li h2 {
    width: auto;
    margin-bottom: 3.2vw;
  }
  #contact-page main .main-inner ul li p {
    margin-bottom: 12.8vw;
  }
  #contact-page .contact-btn {
    display: block;
    margin-top: 17.0666666667vw;
  }
  #contact-page .contact-btn div {
    width: 78.6666666667vw;
    height: 19.2vw;
    margin: auto;
    margin-bottom: 6.4vw;
  }
  #contact-page .contact-btn div .btn-p {
    margin-left: 0;
  }
  #contact-page .contact-btn div .btn-p div {
    margin: unset;
    width: 6.4vw;
    height: 6.4vw;
    margin-bottom: 0;
    margin-left: 4.2666666667vw;
    margin-right: 15.4666666667vw;
  }
  #contact-page .contact-btn div .btn-p div img {
    width: 2.6666666667vw;
  }
  #contact-page .contact-btn div .end-p {
    padding-right: 2.3426061493vw;
    margin-left: 0;
    justify-content: end;
  }
  #contact-page .contact-btn div .end-p div {
    margin-right: 4.2666666667vw;
    margin-left: 11.2vw;
  }
  #contact-page .contact-btn div .end-p div img {
    transform: unset;
    width: 2.6666666667vw;
  }
  #contact-page .contact-btn .mb0 {
    margin-bottom: 0;
  }
}
#contact-end {
  background: unset;
  background: #fdfcf8;
}
#contact-end main {
  background: #fff;
  margin-top: 2.9282576867vw;
}
#contact-end main .main-inner {
  width: 70.2781844802vw;
  margin: auto;
  padding: 8.1991215227vw 0;
}
#contact-end main .main-inner h1 {
  font-size: 2.196193265vw;
  text-align: center;
}
#contact-end .contact-btn {
  display: flex;
  gap: 2.3426061493vw;
  justify-content: center;
  margin-top: 5.8565153734vw;
}
#contact-end .contact-btn div {
  box-shadow: 0 4px 16px rgba(51, 51, 51, 0.08);
  transition: all 0.3s;
  background-color: #fff;
  position: relative;
  width: 31.0395314788vw;
  height: 5.8565153734vw;
  border: solid 2px #218CDD;
}
#contact-end .contact-btn div .btn-p {
  height: inherit;
  border-radius: 70px;
  padding: 0;
  width: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
#contact-end .contact-btn div .btn-p a {
  width: inherit;
  height: inherit;
  border-radius: 70px;
  align-items: center;
  display: flex;
  justify-content: center;
  color: #218CDD;
}
#contact-end .contact-btn div .btn-p div {
  margin-left: 2.3426061493vw;
  background-color: #218CDD;
  position: absolute;
  width: 2.3426061493vw;
  height: 2.3426061493vw;
  border-radius: 50%;
  margin-right: 7.6134699854vw;
  justify-content: center;
  display: flex;
}
#contact-end .contact-btn div .btn-p div img {
  transform: scale(-1, 1);
  width: 1.0248901903vw;
  object-fit: contain;
}
#contact-end .contact-btn div:hover {
  opacity: unset;
  background: #218CDD;
}
#contact-end .contact-btn div:hover .btn-p a{
  color: #fff;
}
#contact-end .contact-btn div img.default {
  display: block;
}
#contact-end .contact-btn div img.hover {
  display: none;
}
#contact-end .contact-btn div:hover img.default {
  display: none;
}
#contact-end .contact-btn div:hover img.hover {
  display: block;
}
#contact-end .contact-btn div:hover .btn-p div {
  background: #fff;
}
#contact-end .contact-btn .btn-p:hover {
  opacity: unset;
}
#contact-end .contact-btn .btn-p a:hover {
  opacity: unset;
}
#contact-end .contact-btn .btn-p div:hover {
  background: #fff;
}

@media only screen and (max-width: 768px) {
  #contact-end main {
    margin-top: 8.5333333333vw;
  }
  #contact-end main .main-inner {
    width: 100%;
    padding: 12.8vw 5.3333333333vw 14.9333333333vw;
    margin: unset;
  }
  #contact-end main .main-inner h1 {
    font-size: 5.8666666667vw;
  }
  #contact-end main .main-inner ul {
    margin-top: 10.6666666667vw;
  }
  #contact-end main .main-inner ul li {
    display: block;
  }
  #contact-end main .main-inner ul li h2 {
    width: auto;
    margin-bottom: 3.2vw;
  }
  #contact-end main .main-inner ul li p {
    margin-bottom: 12.8vw;
  }
  #contact-end main .main-inner .contact-btn {
    display: block;
    margin-top: 8.5333333333vw;
  }
  #contact-end main .main-inner .contact-btn div {
    width: 78.6666666667vw;
    height: 19.2vw;
    margin: auto;
    margin-bottom: 6.4vw;
  }
  #contact-end main .main-inner .contact-btn div .btn-p {
    margin-left: 0;
  }
  #contact-end main .main-inner .contact-btn div .btn-p div {
    margin: unset;
    width: 6.4vw;
    height: 6.4vw;
    margin-bottom: 0;
    margin-left: 4.2666666667vw;
    margin-right: 19.2vw;
  }
  #contact-end main .main-inner .contact-btn div .btn-p div img {
    width: 2.6666666667vw;
  }
  #contact-end main .main-inner .contact-btn .mb0 {
    margin-bottom: 0;
  }
}
.is-hidden {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}

.error {
  font-size: 16px;
  color: red;
}/*# sourceMappingURL=style.css.map */
