@charset "utf-8";

@import url("https://cdn.jsdelivr.net/gh/jgthms/minireset.css@master/minireset.min.css");

:root {
  --base-font-color: #717171;
  --default-font: "Hiragino Sans", "Hiragino Kaku Gothic Pro", "游ゴシック", "游ゴシック体", YuGothic , "Yu Gothic", "ＭＳ ゴシック", "MS Gothic", sans-serif;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  min-width: 320px;
  color: var(--base-font-color);
  -webkit-font-smoothing: antialiased;
  font-family: var(--default-font);
  overflow-x: hidden;
}

img {
  width: 100%;
  height: auto;
}

button {
  all: initial;
}


input:-internal-autofill-selected  {
  background: #000000 !important;
}

/* hack to override autocomplete default style */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active,
input:-internal-autofill-selected,
input:-internal-autofill-selected:hover,
input:-internal-autofill-selected:focus,
input:-internal-autofill-previewed,
input:-internal-autofill-previewed:hover,
input:-internal-autofill-previewed:focus
textarea:-internal-autofill-selected,
textarea:-internal-autofill-selected:hover,
textarea:-internal-autofill-selected:focus,
textarea:-internal-autofill-previewed,
textarea:-internal-autofill-previewed:hover,
textarea:-internal-autofill-previewed:focus,
select:-internal-autofill-selected,
select:-internal-autofill-selected:hover,
select:-internal-autofill-selected:focus,
select:-internal-autofill-previewed,
select:-internal-autofill-previewed:hover,
select:-internal-autofill-previewed:focus {
  transition-delay: 3600s;
}

.nav-panel {
  margin-top: -25px;
}

.logo {
  width: 150px;
}
.logo a {
  display: block;
  font-size: 0;
}

.c-section {
  max-width: none;
  margin-left: 5.333%;
  margin-right: 5.333%;
}

.c-section-txt {
  margin-bottom: 2rem;
}

/* ------------------------------------------------
Utility
------------------------------------------------ */

.u-align-center {
  text-align: center;
}


/* ------------------------------------------------
Components
------------------------------------------------ */

/* Buttons */
.c-btn {
  cursor: pointer;
  text-decoration: none;
}

.c-btn,
.c-btn__body {
  width: 100%;
  height: 100%;
  display: block;
}

.c-btn__body {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-family: var(--default-font);
  color: #707fa8;
  border-radius: 25px;
  background: #ffffff;
}

button.c-btn:disabled .c-btn__body {
  cursor: not-allowed;
  background: rgb(255, 255, 255, .7);
}

form.form:valid button.c-btn:disabled .c-btn__body {
  cursor: pointer;
  background: #ffffff;
}

/* themes */
.c-btn.--pink-theme .c-btn__body  {
  color: #ffffff;
  font-weight: bold;
  background: #ff8ebb;
}

.c-btn.--red-theme .c-btn__body  {
  color: #ffffff;
  font-weight: bold;
  background: #ff3c3c;
}

/* Headings */
.c-head {
  font-size: 150%;
  font-weight: bold;
}

.c-head__wrap {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}


/* ------------------------------------------------
Not found
------------------------------------------------ */
.not-found-box {
  margin-top: 25px;
  padding: 5%;
}

.not-found-box > h4 {
  margin-bottom: 1rem;
  font-weight: bold;
  color: #ff8ebb;
}

.not-found-box .btn-link {
  width: 185px;
  height: 50px;
  margin-top: 30px;
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
}


/* ------------------------------------------------
States
------------------------------------------------ */

.is-hidden {
  display: none;
}

.text-danger {
  color: red;
}
