@charset "UTF-8";
/*----------------------------------------------------------------
reset
----------------------------------------------------------------*/
/*base*/
* {
  box-sizing: border-box;
}

body,
div,
figure,
pre,
p,
blockquote,
form,
fieldset,
input,
textarea,
select,
option,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
table,
th,
td,
tr,
embed,
object,
a,
img {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

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

/*font*/
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-style: normal;
  font-weight: normal;
}

/*others*/
table {
  border-spacing: 0;
}

* html table {
  border-collapse: collapse;
}

*:first-child + html table {
  border-collapse: collapse;
}

th,
td {
  vertical-align: middle;
  border-collapse: collapse;
}

table,
th,
td,
tr,
img {
  border: 0;
}

img {
  vertical-align: bottom;
}

q:before,
q:after {
  content: "";
}

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

strong,
em {
  font-style: normal;
  font-weight: inherit;
}

/* ------------------------------------------------------------------base*/
html {
  font: 62.5%/1.7 "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/*body*/
body {
  height: 100%;
  text-align: center;
  color: #000;
  word-break: break-all;
  font-size: 1.4rem;
  font-size: 14px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
}

figure {
  padding: 0;
  margin: 0;
}

svg:where(:not([fill])) {
  fill: currentColor;
}

/*link*/
a {
  color: #43bbe2;
  text-decoration: underline;
  transition: 0.2s;
}

a img {
  border-style: none;
}

a:visited {
  color: #1a83a5;
}

a:hover {
  color: #a1ddf1;
}

/*font-size*/
h1,
h2,
h3,
h4,
h5 {
  font-size: clamp(1.365rem, 1.82vw, 1.4rem);
  line-height: 1.4;
}

p {
  font-size: clamp(1.365rem, 1.82vw, 1.4rem);
  line-height: 1.6;
}

li,
dt,
dd {
  font-size: clamp(1.365rem, 1.82vw, 1.4rem);
  line-height: 1.6;
}

table th,
table td {
  font-size: clamp(1.365rem, 1.82vw, 1.4rem);
  line-height: 1.6;
}

/*=======================================
formリセット
=======================================*/
input[type=text],
input[type=tel],
input[type=password],
input[type=email],
input[type=number],
input[type=url] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  box-sizing: border-box;
  font-size: clamp(1.365rem, 1.82vw, 1.4rem);
  font-family: "Noto Sans JP";
  font-weight: 400;
}

select {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  box-sizing: border-box;
  color: #000;
  font-size: clamp(1.365rem, 1.82vw, 1.4rem);
}
select option {
  font-family: "Noto Sans JP";
  font-weight: 400;
}

select::-ms-expand {
  display: none;
}

button,
input[type=submit],
input[type=reset],
input[type=search],
input[type=date] {
  -webkit-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  box-sizing: border-box;
  font-size: clamp(1.365rem, 1.82vw, 1.4rem);
  font-family: "Noto Sans JP";
  font-weight: 400;
}

textarea {
  -webkit-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  box-sizing: border-box;
  font-size: clamp(1.365rem, 1.82vw, 1.4rem);
}