/* ------------------------
  reset
------------------------ */
html,
body {
  height: 100%;
}

:where(.un_wrapper) *,
:where(.un_wrapper) *::after,
:where(.un_wrapper) *::before {
  box-sizing: border-box;
}
:where(.un_wrapper) * {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
}
:where(.un_wrapper) pre,
:where(.un_wrapper) textarea {
  overflow: auto;
}
:where(.un_wrapper) template {
  display: none;
}
:where(.un_wrapper) details,
:where(.un_wrapper) main,
:where(.un_wrapper) summary {
  display: block;
}
:where(.un_wrapper) input[type=number] {
  width: auto;
}
:where(.un_wrapper) input[type=search] {
  -webkit-appearance: textfield;
}
:where(.un_wrapper) input[type=search]::-webkit-search-cancel-button,
:where(.un_wrapper) input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
:where(.un_wrapper) progress {
  display: inline-block;
}
:where(.un_wrapper) small {
  font-size: 75%;
}
:where(.un_wrapper) sub,
:where(.un_wrapper) sup {
  position: relative;
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
}
:where(.un_wrapper) sup {
  top: -0.5em;
}
:where(.un_wrapper) sub {
  bottom: -0.25em;
}
:where(.un_wrapper) textarea {
  resize: vertical;
}
:where(.un_wrapper) audio,
:where(.un_wrapper) canvas,
:where(.un_wrapper) iframe,
:where(.un_wrapper) img,
:where(.un_wrapper) svg,
:where(.un_wrapper) video {
  vertical-align: middle;
}
:where(.un_wrapper) audio:not([controls]) {
  display: none;
}
:where(.un_wrapper) img {
  border: 0;
  max-width: 100%;
  height: auto;
}
:where(.un_wrapper) button,
:where(.un_wrapper) input,
:where(.un_wrapper) select,
:where(.un_wrapper) textarea {
  min-height: 1.5em;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
}
:where(.un_wrapper) button {
  overflow: visible;
}
:where(.un_wrapper) button,
:where(.un_wrapper) select {
  text-transform: none;
}
:where(.un_wrapper) input {
  line-height: normal;
}
:where(.un_wrapper) button,
:where(.un_wrapper) html input[type=button],
:where(.un_wrapper) input[type=reset],
:where(.un_wrapper) input[type=submit] {
  border-style: none;
  cursor: pointer;
  background-color: transparent;

  -webkit-appearance: button;
}
:where(.un_wrapper) button[disabled],
:where(.un_wrapper) html input[disabled] {
  cursor: default;
}
:where(.un_wrapper) button::-moz-focus-inner,
:where(.un_wrapper) input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
:where(.un_wrapper) code,
:where(.un_wrapper) kbd,
:where(.un_wrapper) pre,
:where(.un_wrapper) samp {
  font-family: monospace;
}
:where(.un_wrapper) ol,
:where(.un_wrapper) ul {
  list-style: none;
}
:where(.un_wrapper) select {
     -moz-appearance: none;
  -webkit-appearance: none;
}
:where(.un_wrapper) table {
  border-spacing: 0;
  border-collapse: collapse;
}
:where(.un_wrapper) fieldset {
  border: 0;
}
:where(.un_wrapper) p + p {
  margin-top: 0;
}

:root {
  --color-white-01: #fff;
  --color-white-02: #f8f4f1;
  --color-white-03: #fdfbfb;
  --color-white-04: #f7f7f7;
  --color-black: #262626;
  --color-brown-01: #3d352a;
  --color-brown-02: #393e36;
  --color-brown-03: #52493c;
  --color-yellow-01: #f6d98a;
  --color-yellow-02: #fbebc1;
  --color-yellow-03: #f2c957;
  --color-orange-01: #f0ad86;
  --color-orange-02: #eb7f3f;
  --color-orange-03: #f0cdb6;
  --color-orange-04: #f59258;
  --color-blue-01: #adc9c9;
  --color-blue-02: #51a6a6;
  --color-blue-03: #bad9d9;
  --color-blue-04: #6aafaf;
  --color-green-01: #79ac1c;
  --color-gray-01: #bcbcbc;
  --color-gray-02: #f2f4f3;
  --w-bold: 600;
  --w-xl-bold: 700;
}

/* ------------------------
  Base Settings
------------------------ */
:where(.un_wrapper) {
  background-color: #fff;
  word-wrap: break-word;
  color: #333;
  font-family: "Hiragino Kaku Gothic ProN", sans-serif !important;
  line-height: 1.6875;

  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
:where(.un_wrapper) a {
  text-decoration: none;
  color: #00f;
}
:where(.un_wrapper) a:hover {
  text-decoration: none;
}
:where(.un_wrapper) a[href^="tel:"]:hover {
  color: #00f;
}
@media (min-width: 768px) {
  :where(.un_wrapper) a[href^="tel:"] {
    cursor: text;
    text-decoration: none;
  }
}

/* ------------------------
  utilities Classes
------------------------ */
.u-hidden {
  display: none !important;
  visibility: hidden;
}

@media (max-width: 767.98px) {
  .u-hidden-sm {
    display: none !important;
    visibility: hidden;
  }
}

.u-hidden-up-sm {
  display: none !important;
  visibility: hidden;
}

@media (max-width: 767.98px) {
  .u-hidden-down-sm {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .u-hidden-md {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 768px) {
  .u-hidden-up-md {
    display: none !important;
    visibility: hidden;
  }
}

@media (max-width: 1023.98px) {
  .u-hidden-down-md {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 1024px) {
  .u-hidden-lg {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 1024px) {
  .u-hidden-up-lg {
    display: none !important;
    visibility: hidden;
  }
}

.u-hidden-down-lg {
  display: none !important;
  visibility: hidden;
}

.u-visuallyhidden {
  overflow: hidden;
  clip: rect(0 0 0 0);
  position: absolute;
  margin: -1px;
  padding: 0;
  border: 0;
  width: 1px;
  height: 1px;
}

.u-visuallyhidden.focusable:active,
.u-visuallyhidden.focusable:focus {
  overflow: visible;
  clip: auto;
  position: static;
  margin: 0;
  width: auto;
  height: auto;
}

.u-invisible {
  visibility: hidden;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* ------------------------
  helper
------------------------ */
.hp_bg_yellow_01 {
  background-color: var(--color-yellow-01);
}

.hp_bg_yellow_02 {
  background-color: var(--color-yellow-02);
}

.hp_bg_orange_01 {
  background-color: var(--color-orange-01);
}

.hp_bg_orange_02 {
  background-color: var(--color-orange-02);
}

.hp_bg_orange_03 {
  background-color: var(--color-orange-03);
}

.hp_bg_blue_01 {
  background-color: var(--color-blue-01);
}

.hp_bg_blue_02 {
  background-color: var(--color-blue-02);
}

.hp_bg_blue_03 {
  background-color: var(--color-blue-03);
}

/*
* main.css
*
*/