html {
  font-size: 10px;
}

body,
td,
th,
input,
textarea {
  color: #393939;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}

body {
  overflow-wrap: break-word;
}

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

.img_ck {
  font-size: 0.1rem;
  line-height: 0;
}

/* clearfix (micro) */
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

/* For IE 6/7 only */
.clearfix {
  *zoom: 1;
}

a,
a:link,
a:visited,
a:active,
a:hover,
a:hover img {
  color: #393939;
  text-decoration: none;
}

* {
  margin: 0;
  padding: 0;
  word-break: break-word;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}

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

iframe {
  border: none;
}

ul,
ol,
li {
  list-style: none;
}

input,
select,
textarea,
button {
  outline: none;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
}

picture {
  display: block;
}

body.is-loading {
  overflow: hidden;
  background: #332e66;
}

body.is-loading #container {
  opacity: 0;
  visibility: hidden;
}

#container {
  -webkit-transition: opacity 0.4s ease-out;
  -moz-transition: opacity 0.4s ease-out;
  transition: opacity 0.4s ease-out;
}

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #332e66;
  -webkit-transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
  -moz-transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.page-loader__spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 255, 255, 0.15);
  border-top-color: #5dc2d0;
  -moz-border-radius: 50%;
       border-radius: 50%;
  -webkit-animation: pageLoaderSpin 0.9s linear infinite;
     -moz-animation: pageLoaderSpin 0.9s linear infinite;
          animation: pageLoaderSpin 0.9s linear infinite;
}

.page-loader__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

@-webkit-keyframes pageLoaderSpin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-moz-keyframes pageLoaderSpin {
  to {
    -moz-transform: rotate(360deg);
         transform: rotate(360deg);
  }
}

@keyframes pageLoaderSpin {
  to {
    -webkit-transform: rotate(360deg);
       -moz-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
div,
p,
ul,
ol,
li,
dl,
dt,
dd,
figure,
img,
nav {
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 769px), print {
  .show_sp {
    display: none !important;
  }
  .container {
    min-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
  }
  .row {
    width: 100%;
    max-width: 1172px;
    margin: 0 auto;
  }
  a[href^="tel"] {
    pointer-events: none;
    text-decoration: none;
    opacity: 1 !important;
    cursor: default !important;
  }
  a {
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
  }
  a:hover {
    opacity: 0.7;
  }
  /*======= COMMON =========*/
  .floating-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 24px;
    padding: 24px;
    background-color: #51576E66;
    -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
    transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -moz-transition: transform 0.3s ease-out, opacity 0.3s ease-out, -moz-transform 0.3s ease-out;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out, -webkit-transform 0.3s ease-out, -moz-transform 0.3s ease-out;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  .floating-buttons.js-hidden {
    -webkit-transform: translateY(100%);
       -moz-transform: translateY(100%);
        -ms-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
  }
  .floating-button {
    width: 500px;
    min-height: 56px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -moz-border-radius: 100px;
         border-radius: 100px;
    gap: 8px;
    position: relative;
    z-index: 2;
  }
  .floating-button:before {
    content: "";
    width: -webkit-calc(100% - 6px);
    width: -moz-calc(100% - 6px);
    width: calc(100% - 6px);
    height: -webkit-calc(100% - 6px);
    height: -moz-calc(100% - 6px);
    height: calc(100% - 6px);
    background: #ffffff;
    position: absolute;
    top: 3px;
    left: 3px;
    -moz-border-radius: 100px;
         border-radius: 100px;
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
    opacity: 0;
  }
  .floating-button:nth-child(1) {
    background: -webkit-gradient(linear, left top, right top, from(#E0407E), to(#FF9294));
    background: -webkit-linear-gradient(left, #E0407E 0%, #FF9294 100%);
    background: -moz- oldlinear-gradient(left, #E0407E 0%, #FF9294 100%);
    background: linear-gradient(90deg, #E0407E 0%, #FF9294 100%);
  }
  .floating-button:nth-child(1):hover {
    opacity: 1;
  }
  .floating-button:nth-child(1):hover:before {
    opacity: 1;
  }
  .floating-button:nth-child(1):hover .floating-button-text {
    background: -webkit-gradient(linear, left top, right top, from(#E0407E), to(#FF9294));
    background: -webkit-linear-gradient(left, #E0407E 0%, #FF9294 100%);
    background: -moz- oldlinear-gradient(left, #E0407E 0%, #FF9294 100%);
    background: linear-gradient(90deg, #E0407E 0%, #FF9294 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .floating-button:nth-child(1):hover .floating-button-arrow img {
    display: none;
  }
  .floating-button:nth-child(1):hover .floating-button-arrow img._hov {
    display: block;
  }
  .floating-button:nth-child(2) {
    background: -webkit-gradient(linear, left top, right top, from(#4F64EC), to(#8574D7));
    background: -webkit-linear-gradient(left, #4F64EC 0%, #8574D7 100%);
    background: -moz- oldlinear-gradient(left, #4F64EC 0%, #8574D7 100%);
    background: linear-gradient(90deg, #4F64EC 0%, #8574D7 100%);
  }
  .floating-button:nth-child(2):hover {
    opacity: 1;
  }
  .floating-button:nth-child(2):hover:before {
    opacity: 1;
  }
  .floating-button:nth-child(2):hover .floating-button-text {
    background: -webkit-gradient(linear, left top, right top, from(#4F64EC), to(#8574D7));
    background: -webkit-linear-gradient(left, #4F64EC 0%, #8574D7 100%);
    background: -moz- oldlinear-gradient(left, #4F64EC 0%, #8574D7 100%);
    background: linear-gradient(90deg, #4F64EC 0%, #8574D7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .floating-button:nth-child(2):hover .floating-button-arrow img {
    display: none;
  }
  .floating-button:nth-child(2):hover .floating-button-arrow img._hov {
    display: block;
  }
  .floating-button-icon {
    position: relative;
    z-index: 2;
  }
  .floating-button-icon img {
    width: 52px;
    height: auto;
  }
  .floating-button-text {
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    z-index: 2;
  }
  .floating-button-arrow {
    position: relative;
    display: block;
    line-height: 0;
  }
  .floating-button-arrow img {
    width: 10px;
  }
  .floating-button-arrow img._hov {
    display: none;
  }
  .footer {
    background: #E7EDFF;
    padding: 139px 0 151px;
    text-align: center;
  }
  .footer-logo {
    margin-bottom: 37px;
  }
  .footer-logo img {
    width: 300px;
    height: auto;
  }
  .footer-company {
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 48px;
  }
  .footer-links {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 32px;
    margin-bottom: 46px;
  }
  .footer-link {
    font-size: 1.6rem;
    line-height: 1.1;
    font-weight: 500;
    color: #393939;
    text-decoration: underline !important;
  }
  .footer-link:hover {
    text-decoration: none !important;
  }
  .footer-copy {
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 500;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 4.10256vw;
    line-height: 1.5;
  }
  .container {
    overflow: hidden;
    min-width: 320px;
  }
  .show_pc {
    display: none !important;
  }
  .row {
    padding-left: 5.12821vw;
    padding-right: 5.12821vw;
  }
  a[href^="tel"] {
    text-decoration: none;
  }
  /*======= COMMON =========*/
  .banner img {
    width: 100%;
    height: auto;
  }
  .floating-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.05128vw;
    padding: 4.10256vw 2.05128vw;
    background-color: #51576E66;
    -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
    transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -moz-transition: transform 0.3s ease-out, opacity 0.3s ease-out, -moz-transform 0.3s ease-out;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out, -webkit-transform 0.3s ease-out, -moz-transform 0.3s ease-out;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  .floating-buttons.js-hidden {
    -webkit-transform: translateY(100%);
       -moz-transform: translateY(100%);
        -ms-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
  }
  .floating-button {
    -webkit-box-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
    min-height: 14.35897vw;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -moz-border-radius: 25.64103vw;
         border-radius: 25.64103vw;
    gap: 2.05128vw;
    position: relative;
  }
  .floating-button:nth-child(1) {
    background: -webkit-gradient(linear, left top, right top, from(#E0407E), to(#FF9294));
    background: -webkit-linear-gradient(left, #E0407E 0%, #FF9294 100%);
    background: -moz- oldlinear-gradient(left, #E0407E 0%, #FF9294 100%);
    background: linear-gradient(90deg, #E0407E 0%, #FF9294 100%);
  }
  .floating-button:nth-child(2) {
    background: -webkit-gradient(linear, left top, right top, from(#4F64EC), to(#8574D7));
    background: -webkit-linear-gradient(left, #4F64EC 0%, #8574D7 100%);
    background: -moz- oldlinear-gradient(left, #4F64EC 0%, #8574D7 100%);
    background: linear-gradient(90deg, #4F64EC 0%, #8574D7 100%);
  }
  .floating-button-text {
    font-size: 3.33333vw;
    line-height: 1;
    font-weight: 600;
    color: #ffffff;
  }
  .floating-button-arrow {
    position: relative;
    display: block;
    line-height: 0;
  }
  .floating-button-arrow img {
    width: 2.5641vw;
  }
  .floating-button-arrow img._hov {
    display: none;
  }
  .footer {
    background: #E7EDFF;
    padding: 24.61538vw 0 25.64103vw;
    text-align: center;
  }
  .footer-logo {
    margin-bottom: 9.74359vw;
  }
  .footer-logo img {
    width: 48.71795vw;
    height: auto;
  }
  .footer-company {
    font-size: 4.10256vw;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 12.82051vw;
  }
  .footer-links {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8.20513vw;
    margin-bottom: 11.79487vw;
  }
  .footer-link {
    font-size: 4.10256vw;
    line-height: 1.1;
    font-weight: 500;
    color: #393939;
    text-decoration: underline !important;
  }
  .footer-copy {
    font-size: 2.05128vw;
    line-height: 1;
    font-weight: 500;
  }
}
