@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP&family=Roboto:ital,wght@0,100..900;1,100..900&family=Sawarabi+Mincho&display=swap");
@keyframes loop_slide_right {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/*Google font helper*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

*::placeholder {
  color: rgba(56, 56, 55, 0.3);
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 10px;
  font-size: 62.5%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  scroll-padding-top: 80px;
}
@media screen and (max-width: 749px) {
  html {
    scroll-padding-top: 65px;
    scroll-padding-top: 17.3333333333vw;
  }
}

body {
  width: 100%;
  min-height: 100dvh;
  color: #181818;
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.04em;
  word-wrap: break-word;
  margin: 0px !important;
  background-color: #F5F6F7;
}
@media screen and (max-width: 749px) {
  body {
    width: 100%;
    min-width: 300px;
    font-size: 14px;
    font-size: 3.7333333333vw;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: inherit;
  font-weight: 400;
  font-display: optional;
}

main {
  display: block;
  width: 100%;
  min-height: 80vh;
  box-sizing: border-box;
}
@media screen and (max-width: 749px) {
  main {
    min-width: 300px;
    min-height: unset;
  }
}

header,
footer {
  width: 100%;
}
@media screen and (max-width: 749px) {
  header,
  footer {
    min-width: 300px;
  }
}

p,
div,
h1,
h2,
h3,
h4,
h5,
h6,
li,
dt,
dd,
th,
td,
address,
pre,
blockquote,
span {
  line-height: inherit;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.2s ease-in-out;
}
a:hover, a:focus {
  opacity: 0.7;
}

a[href^="tel:"] {
  cursor: default;
}
a[href^="tel:"]:hover {
  text-decoration: none;
}
@media (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

th,
td {
  text-align: left;
}

strong,
em,
b {
  font-weight: bold;
}

hr {
  border: none;
}

label,
input,
button,
textarea,
select {
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}

input::-ms-clear {
  visibility: hidden;
}

input::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

button {
  border: none;
  appearance: none;
  -webkit-appearance: none;
}

figure,
picture {
  margin: 0;
  padding: 0;
}

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

svg {
  max-width: 100%;
  height: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* ==================================================
	print
================================================== */
@media print {
  body {
    min-width: 1150px;
    transform: scale(0.9);
    transform-origin: 0 0;
    overflow-y: visible !important;
  }
  .js_fadein {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  @page {
    margin: 8mm;
    margin: 10mm 8mm 10mm 8mm;
  }
  [data-no-print] {
    display: none !important;
  }
}