@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Roboto&family=Zen+Maru+Gothic:wght@500;700&family=Zen+Kaku+Gothic+New:wght@500;700&display=swap');

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/* - Reset
----------------------------------------------*/
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: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  box-sizing: content-box; /* Add the correct box sizing in Firefox. */
  height: 0; /* Add the correct box sizing in Firefox. */
  overflow: visible; /* Show the overflow in Edge and IE. */
}

img {
  border-style: none;
}

a {
  background-color: transparent;
}

/* - Reset form
----------------------------------------------*/
input,
select,
textarea,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0;
  border: none;
  outline: none;
  background: none;
  border-radius: 0;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none; /* Remove the style in Safari. */
}

input[type="submit"]:focus,
input[type="button"]:focus {
  outline-offset: -2px;
}

input[type="radio"],
input[type="checkbox"] {
  display: none;
}

input[type="radio"]:checked + label,
input[type="checkbox"]:checked + label {
  background: #ff0000;
}

textarea {
  resize: vertical;
  overflow: auto;
}

::-moz-selection,
::selection {
  background: #fff;
  text-shadow: none;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* - Links
----------------------------------------------*/
a {
  color: inherit;
}

a,
a:hover,
a:active {
  text-decoration: none;
  outline: 0;
}

:focus {
  outline: none;
}

/* - Box sizing
----------------------------------------------*/
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

/* - Typography
----------------------------------------------*/
html {
  font-family: "Zen Maru Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-style: normal;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  color: #000000;
}

small {
  font-size: 80%;
}

big {
  font-size: 120%;
}

b, strong {
  font-weight: bolder;
}

em, i {
  font-style: normal;
}

sup, sub {
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

blockquote {
  padding: 10px;
  background: lightgrey;
}

cite, dfn {
  font-style: italic;
}

abbr, acronym {
  background: lightgrey;
}

mark {
  background-color: lightpink;
  text-decoration: none;
}

ins {
  background-color: lightyellow;
  text-decoration: none;
}

del {
}

/* - Elements
----------------------------------------------*/
audio, canvas, iframe, img, svg, video {
  vertical-align: middle;
}

img,
svg {
  width: 100%;
  height: auto;
}

.autoImg {
  width: auto;
  max-width: 100%;
}

.js-tel {
  cursor: default;
}

/* - Inherit
----------------------------------------------*/
.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

/*---------- btn ----------*/
.btn {
  background: #e43168;
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 24px;
  padding: 23px 84px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.btn::before {
  content: "";
  background: url(../img/btn-dashed.png) 0 0 no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 5px;
  left: 5px;
}

.btn::after {
  content: '\f054';
  font-family: "Font Awesome 5 Free";
  font-size: 0.58em;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

.btn:hover {
  opacity: 0.8;
}

.btn:active {
  transform: translate(5px, 5px);
}

.btn:active::before {
  transform: translate(-5px, -5px);
}

@media screen and (max-width: 767px) {
  .btn {
    padding: 16px 44px;
    font-size: 16px;
  }
}