@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: none;
  font-style: normal;
  text-align: left;
  zoom: 1;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
table {
  border-collapse: collapse;
  font-family: inherit;
}
h1,h2,h3,h4,h5 {
  font-size: 100%;
  font-weight: normal;
  line-height: 1;
}
input,textarea,select {
  font-family: inherit;
  font-size: 16px;
}
input[type="button"],input[type="text"],input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
}
textarea {
  resize: none;
  -webkit-appearance: none;
  border-radius: 0;
}
th,td {
  border-collapse: collapse;
}
table th,table td {
  white-space: nowrap;
}
ul,ol {
  list-style-type: none;
}
img {
  vertical-align: text-bottom;
  vertical-align: -webkit-baseline-middle;
  max-width: 100%;
  height: auto;
  width :auto;
}
a {
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}
a:hover {
  opacity: 0.8;
  transition: opacity .3s ease-out 0s;
}

body.app-view header, body.app-view footer {
  display: none !important;
}
body.app-view .wrapper {
  padding-top: 0;
}

p {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-family: 'Noto Sans JP', sans-serif;
}

.pc_only {
  display: block !important;
}
.sp_only {
  display: none !important;
}

.bold {
  font-weight: bold;
}
.tc {
  text-align: center;
}
.m_text {
  font-size: 16px;
}
.l_text {
  font-size: 20px;
}
.t_color {
  color: #F08E35;
}

.wrapper {
  width: 100%;
  padding-top: 65px;
}

.inner {
  width: 1080px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  margin: 100px auto;
}

.kv {
  display: flex;
  justify-content: space-between;
  width: 978px;
}

.kv_detail {
  width: 571px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding-top: 60px;
}

.kv_logo {
  display: block;
  width: 353px;
}

.kv_label {
  font-size: 24px;
  font-weight: bold;
  background-color: #FFC008;
  border-radius: 30px;
  text-align: center;
  padding: 33px 42px;
  box-sizing: border-box;
}

.kv_phone {
  position: relative;
  display: block;
  width: 350px;
}

.point_badge_red {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  border-radius: 100px;
  background-color: #de4b18;
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
}

.phone_map_lists {
  display: flex;
  gap: 20px;
  width: 1080px;
  background-color: #F4F4F4;
  padding: 25px;
  border-radius: 20px;
  box-sizing: border-box;
}

.phone_map_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 330px;
  padding: 25px 30px 30px;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 20px;
}

.phone_map_bubble {
  position: relative;
  width: 287px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  border-radius: 20px;
  background-color: #FFC008;
  padding: 16px 0;
}
.phone_map_bubble::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -17px;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 17px solid #ffc008;
  border-bottom: 0;
}

.download {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.app_bubble {
  display: block;
  width: 650px;
}

.download_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.btn {
  display: block;
}

.app_store_badge {
  display: block;
  width: 270px;
}

.google_play_badge {
  display: block;
  width: 270px;
}

/*SP LAYOUT(~768)*/
@media screen and (max-width: 768px) {

  p {
    font-size: 3.3vw;
    line-height: 1.8;
  }

  .pc_only {
    display: none !important;
  }
  .sp_only {
    display: block !important;
  }

  .bold {
    font-weight: bold;
  }
  .tc {
    text-align: center;
  }
  .m_text {
    font-size: 3.2vw;
  }
  .l_text {
    font-size: 3.6vw;
  }
  .t_color {
    color: #F08E35;
  }

  .wrapper {
    width: 100%;
  }

  .inner {
    width: 90vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10vw;
    margin: 14vw auto;
  }

  .logo {
    display: block;
    width: 65vw;
  }

  .kv {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .kv_detail {
    width: 45vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4vw;
    padding-top: 0;
  }

  .kv_logo {
    display: none;
    width: auto;
  }

  .kv_label {
    font-size: 4vw;
    font-weight: bold;
    background-color: #FFC008;
    border-radius: 4vw;
    text-align: left;
    padding: 6vw 4vw;
    box-sizing: border-box;
  }

  .kv_phone {
    display: block;
    width: 42vw;
  }

  .point_badge_red {
    top: -5vw;
    right: -3vw;
    width: 15vw;
    height: 15vw;
    font-size: 2.8vw;
  }

  .phone_map_lists {
    display: flex;
    flex-direction: column;
    gap: 4vw;
    width: 100%;
    background-color: #F4F4F4;
    padding: 4vw;
    border-radius: 6vw;
    box-sizing: border-box;
  }

  .phone_map_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4vw;
    width: 100%;
    padding: 8vw 4vw;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 6vw;
  }

  .phone_map_bubble {
    position: relative;
    width: 66vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.6vw;
    font-weight: bold;
    line-height: 1.4;
    border-radius: 6vw;
    background-color: #FFC008;
    padding: 5vw 0;
  }
  .phone_map_bubble::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -4vw;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 2.7vw solid transparent;
    border-left: 2.7vw solid transparent;
    border-top: 4.2vw solid #ffc008;
    border-bottom: 0;
  }

  .download {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .app_bubble {
    display: block;
    width: 100vw;
  }

  .download_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4vw;
  }

  .btn {
    display: block;
  }

  .app_store_badge {
    display: block;
    width: 40vw;
  }

  .google_play_badge {
    display: block;
    width: 40vw;
  }

}