@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

a[href^="tel:"] {
  cursor: default;
}

html {
  font-size: 10px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 62.5%;
}

body {
  width: 100%;
  min-width: 1000px;
  color: #333;
  background-color: #fff;
  font-size: 1.6rem;
  line-height: 2;
  font-family: "Zen Kaku Gothic New", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  word-wrap: break-word;
  margin-top: 0px;
  overflow-x: hidden;
  overflow-y: scroll;
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 768px) {
  body {
    width: 100%;
    min-width: 300px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 425px) {
  body {
    font-size: 14px;
    font-size: 3.7333333333vw;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Zen Kaku Gothic New", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  font-display: optional;
}

main {
  display: block;
  width: 100%;
  min-width: 1000px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  main {
    min-width: 300px;
  }
}

header,
footer {
  width: 100%;
  min-width: 1000px;
}
@media screen and (max-width: 768px) {
  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: #333;
  transition: all 0.2s ease;
}
a:hover, a:focus {
  text-decoration: none;
  opacity: 0.7;
}

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-size: 100%;
  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 img,
picture img {
  width: 100%;
  height: auto;
}

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;
  }
}