@charset "UTF-8";
/* margin,padding
--------------------------------------------------------------------*/
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
div,
p,
pre,
address,
blockquote,
ul,
ol,
dl,
dt,
dd,
form,
fieldset,
header,
nav,
footer,
figure,
section,
article {
  display: block;
}

/* font 
--------------------------------------------------------------------*/
html {
  overflow-y: scroll;
  height: 100%;
  font-size: 62.5%;
}

body {
  word-wrap: break-all;
  overflow-wrap: break-word;
}

address,
em {
  font-style: normal;
}

/* list 
--------------------------------------------------------------------*/
ul,
ol {
  list-style-type: none;
}

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

/* form
--------------------------------------------------------------------*/
input,
select,
textarea,
button {
  font-size: inherit;
  line-height: inherit;
}

button {
  cursor: pointer;
}

/* table
--------------------------------------------------------------------*/
table,
thead,
tbody,
tfoot,
tr,
th,
td,
caption,
col,
colgroup {
  text-align: inherit;
  line-height: inherit;
  font-size: 100%;
}

table {
  display: table;
}

thead {
  display: table-header-group;
}

tbody {
  display: table-row-group;
}

tfoot {
  display: table-footer-group;
}

tr {
  display: table-row;
}

th,
td {
  display: table-cell;
}

caption {
  display: table-caption;
}

col {
  display: table-column;
}

colgroup {
  display: table-column-group;
}

/* heading
--------------------------------------------------------------------*/
/** a **/
a {
  color: #000000;
  text-decoration: none;
}

@media screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/** table **/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/** figure **/
figure {
  line-height: 0;
}

figcaption {
  line-height: 1.6;
}

/* メイン
--------------------------------------------------------------------*/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 400;
  color: #000000;
  -webkit-text-size-adjust: 100%;
}

body,
body * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.inner {
  width: 1100px;
  max-width: 90%;
  margin: 0 auto;
}

.font-size-20 {
  font-size: 2rem;
}

.weight-700 {
  font-weight: 700;
}

.mb0 {
  margin-bottom: 0 !important;
}

.pcBl {
  display: block;
}
.pcIn {
  display: inline;
}

.spBl, .spIn {
  display: none;
}

@media screen and (max-width: 1024px) {
  body {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .pcBl, .pcIn {
    display: none;
  }
  .spBl {
    display: block;
  }
  .spIn {
    display: inline;
  }
  .overWrap {
    overflow-x: scroll;
  }
  .overWrap img {
    max-width: none;
  }
}
.note-flex {
  display: flex;
  -moz-column-gap: 0.25em;
       column-gap: 0.25em;
}
.note-flex .kome {
  flex-shrink: 0;
}

:root {
  --main-color-pink:#E95098;
  --main-color-blue:#5DC5EE;
  --sub-color-blue:#D9FBFF;
}/*# sourceMappingURL=common.css.map */