@charset "UTF-8";

*{
  box-sizing: border-box;
}
label{
  margin: 0;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}
body{
  position: relative;
  color: #171717;
  background: #fff;
  font-family: ヒラギノ角ゴ Pro,Hiragino Kaku Gothic Pro,メイリオ,Meiryo,sans-serif;
  margin: 0;
  overflow-x: hidden;
}
body.overflow-hidden{
  height: 100vh;
  overflow: hidden;
}
body.no-scroll{
  height: 100%;
  width: 100vw;
  position: fixed;
  overflow: hidden;
}
#app-root{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
input{
  -moz-appearance: none;
  -webkit-appearance: none;
}
.check_box label{
  margin: 0;
  padding: 0;
  font-weight: normal;
}
.check_box label span{
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 30px;
  height: 100%;
}
.check_box label span:before{
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  left: 3px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background-color: #ffffff;
  border: 2px solid #999999;
}
.check_box label input[type="checkbox"]:checked ~ span:before{
  background-color: rgb(74,86,124);
  border: 2px solid rgb(74,86,124);
}
.check_box label input[type="checkbox"]:checked ~ span:after{
  content: "";
  display: block;
  width: 14px;
  height: 9px;
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 5px;
  margin: auto 0;
  border-left: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

button.common_btn {
  height: 32px;
  border: none;
  border-radius: 5px;
}
button.common_btn, button.common_btn>div {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
button.common_btn:enabled {
  background-color: #d5daf3;
  color: #333;
  box-shadow: 0 3px 0 #6f80b9;
  margin-bottom: 3px;
}
button.common_btn.deep:enabled {
  border: none;
  background-color: #4a567c;
  color: #fff;
  box-shadow: 0 3px 0 #263358;
  padding: 0 10px;
}


/* //////////////////////////////////////////////////////////////////////////
   Foundation
////////////////////////////////////////////////////////////////////////// */
/* ==========================================================================
	 color
========================================================================== */
/* テキスト */
/* リンク */
/* borderCommon */
/* ==========================================================================
	 mixin
========================================================================== */
/* ==========================================================================
	 reset
========================================================================== */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  /* vertical-align: baseline; */
  background: transparent;
}
/* span{
  font-size: 14px;
}

body {
  line-height: 1;
} */

main, article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

em {
  font-style: normal;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

img {
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, select {
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input:focus, select:focus, textarea:focus {
  outline: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  outline: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

video {
  display: block;
}

/* ==========================================================================
	 base
========================================================================== */

a {
  color: #002f7c;
  text-decoration: none;
  word-break: break-all;
}

a:hover {
  text-decoration: underline;
}

[data-ua="sp"] {
  display: none;
}

[data-ua="pc"] {
  display: inherit;
}

@media (max-width: 480px) {
  [data-ua="sp"] {
    display: inherit;
  }
  [data-ua="pc"] {
    display: none !important;
  }
}
