* {
  padding: 0;
  margin: 0;
}

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

html {
  width: 100%;
  font-size: 62.5%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  width: 100%;
  color: #000;
  font-weight: 400;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  scroll-behavior: smooth;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
@media only screen and (max-width: 1440px) {
  body {
    font-size: 1.1111111111vw;
  }
}
@media only screen and (max-width: 750px) {
  body {
    font-size: 4vw;
  }
}

li {
  list-style-type: none;
}

th {
  font-weight: inherit;
}

address {
  font-style: inherit;
}

fieldset {
  min-width: 0;
  padding: 0;
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

h1 {
  margin: 0;
}

cite,
dfn,
em,
i,
var {
  font-style: inherit;
}

small {
  font-size: inherit;
}

ul {
  text-decoration: none;
}

a {
  color: currentColor;
  text-decoration: none;
  -webkit-transition: 0.25s ease-out;
  transition: 0.25s ease-out;
}
a:hover {
  opacity: 0.7;
}
@media (max-width: 750) {
  a[href*="tel:"] {
    text-decoration: none;
    pointer-events: none;
    cursor: default;
  }
}

button,
input,
select,
textarea {
  padding: 0;
  border: 0;
}

button:not(:disabled):not([aria-disabled=true]) {
  cursor: pointer;
}

[data-whatinput=mouse] *:focus,
[data-whatinput=touch] *:focus {
  outline: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.sp-only {
  display: none !important;
}
@media only screen and (max-width: 750px) {
  .sp-only {
    display: block !important;
  }
}

@media only screen and (max-width: 750px) {
  .pc-only {
    display: none !important;
  }
}

.cmn-text__color {
  color: #a00f71;
}

@-webkit-keyframes fade-top {
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fade-top {
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}