@keyframes sdl06 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@keyframes toprotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    transform: scale(0.96);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
html {
  font-size: 62.5%;
  height: 100%;
  overflow: auto;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  background-color: #FBFBFB;
}

body {
  color: #000;
  font-size: 1.6em;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
}

article, aside, figcaption, figure, footer, header, main, nav, section, picture {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  margin-top: 1.35em;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, dl, blockquote, table {
  margin: 0;
}

figure {
  margin: 0;
}

*:first-child {
  margin-top: 0;
}

ul, ol {
  list-style: none;
  padding-left: 0;
}

dd {
  margin-left: 0;
}

b, strong {
  font-weight: var(--bold);
}

em {
  font-style: normal;
}

small {
  font-size: inherit;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
  position: relative;
}

sup {
  top: -0.5em;
}

a {
  color: var(--base);
  background-color: transparent;
  text-decoration: none;
}
a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):hover {
  color: inherit;
}
a[tabindex] {
  outline: none;
}
a[href^="tel:"] {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

img {
  vertical-align: bottom;
  max-width: 100%;
  border: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  font-weight: normal;
  text-align: left;
}

hr {
  display: block;
  margin: 0;
  border: none;
}

a, button {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

br.is-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  br.is-sp {
    display: block;
  }
}

button {
  color: inherit;
  font: inherit;
  background: transparent;
  text-align: inherit;
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
  overflow: visible;
}
button:disabled, button[aria-disabled=true] {
  cursor: default;
}
*, *::before, *::after {
  box-sizing: border-box;
}

.l_header {
  max-width: 720px;
  padding: 80px 40px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l_header {
    padding: 40px 20px;
    max-width: 320px;
  }
}

.l_footer {
  margin: 0 auto;
  width: 100%;
  background-color: #eee;
  padding: 20px 0;
}
.l_footer .c_cr {
  font-size: 1.2rem;
  text-align: right;
}

.l_sec:not(:last-child) {
  margin-bottom: 40px;
}
.l_sec:last-child {
  margin-bottom: 20px;
}

.l_inner {
  max-width: 1120px;
  padding: 0 80px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l_inner {
    padding: 0 30px;
    max-width: 720px;
  }
}

.c_ttl {
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .c_ttl {
    font-size: 2.4rem;
    line-height: 1.75;
  }
}

.c_sttl {
  font-size: 2rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .c_sttl {
    font-size: 1.8rem;
    line-height: 1.75;
  }
}

.c_txt {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .c_txt {
    font-size: 1.4rem;
    line-height: 1.75;
  }
}

.c_btn_line {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 720px;
  margin: 40px auto;
  padding: 0 10px;
  text-align: center;
  font-size: 2rem;
  border: 4px solid #000;
  background-color: #06C755;
  color: #000;
  height: 80px;
  border-radius: 40px;
  font-weight: bold;
  transition: all 0.25s linear;
}
@media screen and (max-width: 767px) {
  .c_btn_line {
    font-size: 1.8rem;
    white-space: nowrap;
  }
}
.c_btn_line:hover {
  transition: all 0.25s linear;
  opacity: 0.6;
}

.c_cap {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .c_cap {
    font-size: 1.2rem;
  }
}

.c_cap_pj {
  text-align: right;
  margin-top: 40px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .c_cap_pj {
    font-size: 1.2rem;
  }
}
