@charset "UTF-8";
/* Elements  */
:root {
  scroll-padding: 100px;
  scroll-behavior: auto;
  --main-color: #339ecc;
  --blue: #339ecc;
  --orange: #ffab20;
  --pink: #f57ba1;
  --green: #7ac02d;
  --purple: #ae84d8;
  --bg-gray: #f1f1f1;
  --header-yellow: #fbf9f4;
  --btn-blue: #005fa3;
  --border-gray: #e0e0e0;
  --footer-black01: #666;
  --footer-black02: #333;
  --gray-exlight: #f1f1f1;
  --gray-light: #e0e0e0;
  --gray-dark: #999;
  --gray-text: #666;
  --orange-dark: #e16720;
  --orange-light: #fcdec4;
  --green-dark: #396516;
  --green-light: #d3ddc9;
  --blue-dark: #19607a;
  --blue-light: #cddee4;
}

/* Elements  */
body {
  position: relative;
  background-color: var(--main-color);
  color: #666;
  font-family: "Noto Sans JP", "Open Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", Meiryo, "メイリオ", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  padding-top: 40px;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  body {
    padding-top: 0px;
  }
}
body.is-fixed {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  word-break: break-all;
  transition: 0.1s;
}

:where(a:visited) {
  text-decoration: none;
  word-break: break-all;
  color: inherit;
}

a:hover {
  text-decoration: none;
  opacity: 0.7;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 1090px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

p {
  margin: 0;
}

sup {
  vertical-align: text-top;
  font-size: 0.8em;
}

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

iframe {
  max-width: 100%;
  vertical-align: bottom;
}

ul {
  list-style-type: disc;
  margin: 0;
  padding: 0 0 0 20px;
  box-sizing: border-box;
}

ol {
  margin: 0;
  padding: 0 0 0 20px;
  box-sizing: border-box;
}

nav ul {
  list-style: none;
}

table {
  border-collapse: collapse;
}

em {
  font-style: normal;
  font-weight: bold;
}

:where(h1),
:where(h2),
:where(h3),
:where(h4),
:where(h5),
:where(h6) {
  font-size: 16px;
  font-weight: 400;
}

/* フォームリセット
   text,email,tel,submitのリセット
--------------------------- */
:where(input[type=text]),
:where(input[type=email]),
:where(input[type=tel]),
:where(input[type=password]),
:where(input[type=submit]) {
  padding: 0;
  border-radius: 0;
  outline: none;
  background: none;
  box-shadow: none;
  appearance: none;
  /* 枠線を付けておく */
  border: 1px solid rgb(1, 1, 1);
}

input[type=file] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  box-shadow: none;
  appearance: none;
}

:where(input[type=submit]):hover {
  opacity: 0.7;
}

:where(button) {
  padding: 0;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
  /* 枠線を付けておく */
  border: 1px solid rgb(1, 1, 1);
}

:where(input[type=text]),
:where(input[type=email]),
:where(input[type=tel]),
:where(input[type=password]) {
  max-width: 100%;
  height: 40px;
  padding: 6px 10px;
  box-sizing: border-box;
  background-color: var(--gray-light);
  color: #666;
  border: none;
}
@media screen and (max-width: 767px) {
  :where(input[type=text]),
  :where(input[type=email]),
  :where(input[type=tel]),
  :where(input[type=password]) {
    box-shadow: inset 2px 2px 1px rgba(0, 0, 0, 0.2);
  }
}
:where(input[type=text])::placeholder,
:where(input[type=email])::placeholder,
:where(input[type=tel])::placeholder,
:where(input[type=password])::placeholder {
  color: var(--gray-dark);
}

:where(textarea) {
  width: 100%;
  padding: 6px 10px;
  border-radius: 0;
  outline: none;
  background: none;
  box-shadow: none;
  appearance: none;
  border: none;
  background-color: var(--gray-light);
  color: #666;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  :where(textarea) {
    box-shadow: inset 2px 2px 1px rgba(0, 0, 0, 0.2);
  }
}
:where(textarea)::placeholder {
  color: var(--gray-dark);
}

.u-select-wrap {
  display: inline-block;
  position: relative;
  max-width: 100%;
  height: 40px;
  line-height: 1;
}
.u-select-wrap::before {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  right: 10px;
  width: 8px;
  height: 8px;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  pointer-events: none;
  background-color: #000;
}

:where(select) {
  max-width: 100%;
  height: 40px;
  padding: 6px 10px;
  border: none;
  background-color: var(--gray-light);
  color: #666;
  outline: none;
  appearance: none;
  font-size: 16px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  :where(select) {
    box-shadow: inset 2px 2px 1px rgba(0, 0, 0, 0.2);
  }
}
:where(select) option {
  background-color: var(--gray-light);
  color: #666;
  line-height: 1;
}
