@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

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

a img {
  border: none;
}

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

/****************************************
 	mixin								*
*****************************************/
/****************************************
 	基本設定								*
*****************************************/
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Noto Sans JP', sans-serif ,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Lucida Grande",Verdana,"ＭＳ Ｐゴシック",sans-serif;
  color: #000000;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
}
body::-webkit-scrollbar {
  display: none;
}

input, select, textarea, button, option {
  font-family: 'Noto Sans JP', sans-serif ,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Lucida Grande",Verdana,"ＭＳ Ｐゴシック",sans-serif;
  color: #000000;
  font-size: 1rem;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: #000000;
}

input[type="submit"] {
  -webkit-appearance: none;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  min-width: 100vw;
  box-sizing: border-box;
}
@media screen and (max-width: 414px) {
  main {
    padding: 1rem;
  }
}
main .card {
  width: 400px;
  background: #E9AEB0;
  padding: 2rem;
  border-radius: 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 414px) {
  main .card {
    width: 100%;
  }
}
main .card h1 {
  font-size: 3rem;
  text-align: center;
}
main .card .error {
  background: #da4f49;
  color: #ffffff;
  padding: 1rem;
}
main .card .explanation {
  font-size: 0.9rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: center;
  line-height: 1.5rem;
}
main .card .input_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
main .card .input_wrap label {
  white-space: nowrap;
  padding-right: 1rem;
}
main .card .input_wrap .unit_wrap {
  display: flex;
  align-items: end;
}
main .card .input_wrap .unit_wrap input {
  width: 100%;
}
main .card .input_wrap .unit_wrap .unit {
  min-width: 20px;
}
main .card .input_wrap select, main .card .input_wrap .unit_wrap {
  width: 100%;
}
main .card .input_wrap .button {
  padding: .5rem;
  width: 100%;
  font-size: 1.5rem;
  background: #EC727D;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  box-shadow: 0 1px 2px #8b8b8b;
}
main .card .table_wrap {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
main .card .table_wrap table tbody tr th, main .card .table_wrap table tbody tr td {
  padding: 1rem;
}
main .card .spacer {
  width: 2rem;
}
main .flex_wrap {
  display: flex;
}
main .flex_wrap img.logo {
  width: 150px;
}
main .flex_wrap .corp_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 414px) {
  main .flex_wrap .corp_wrap p {
    font-size: .8rem;
  }
}
main .flex_wrap .corp_wrap .name {
  font-size: 1.8rem;
  padding: 1rem 0;
}
@media screen and (max-width: 414px) {
  main .flex_wrap .corp_wrap .name {
    font-size: 1.5rem;
  }
}

input[type='text'],
input[type='url'],
input[type='tel'],
input[type='email'],
input[type='number'],
input[type='password'],
input[type='file'],
textarea,
select,
.textarea[contenteditable="true"] {
  border: 1px solid #e2e8f0;
  border-radius: 0.4rem;
  font-size: 1em;
  padding: .8rem;
  box-sizing: border-box;
}
input[type='text']:invalid,
input[type='url']:invalid,
input[type='tel']:invalid,
input[type='email']:invalid,
input[type='number']:invalid,
input[type='password']:invalid,
input[type='file']:invalid,
textarea:invalid,
select:invalid,
.textarea[contenteditable="true"]:invalid {
  border-color: #da4f49;
}
input[type='text']:focus,
input[type='url']:focus,
input[type='tel']:focus,
input[type='email']:focus,
input[type='number']:focus,
input[type='password']:focus,
input[type='file']:focus,
textarea:focus,
select:focus,
.textarea[contenteditable="true"]:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem var(--main-rgba4);
}
input[type='text']:disabled,
input[type='url']:disabled,
input[type='tel']:disabled,
input[type='email']:disabled,
input[type='number']:disabled,
input[type='password']:disabled,
input[type='file']:disabled,
textarea:disabled,
select:disabled,
.textarea[contenteditable="true"]:disabled {
  color: #e3e3e3;
  pointer-events: none;
}
input[type='text']::placeholder,
input[type='url']::placeholder,
input[type='tel']::placeholder,
input[type='email']::placeholder,
input[type='number']::placeholder,
input[type='password']::placeholder,
input[type='file']::placeholder,
textarea::placeholder,
select::placeholder,
.textarea[contenteditable="true"]::placeholder {
  color: #bbb;
}

@media screen and (max-width: 414px) {
  input[type='text'],
  input[type='url'],
  input[type='tel'],
  input[type='email'],
  input[type='number'],
  input[type='password'],
  input[type='file'] {
    width: 100%;
  }
}
textarea {
  height: 100px;
}

.textarea[contenteditable="true"] {
  min-height: 100px;
  color: #696969;
  background: #fff;
}
.textarea[contenteditable="true"]:empty:before {
  color: #adadad;
  content: attr(placeholder);
  pointer-events: none;
  display: block;
  /* For Firefox */
}
.textarea[contenteditable="true"] .emoji {
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0 .1rem;
  vertical-align: text-bottom;
}
.textarea[contenteditable="true"] .emoji img {
  width: 100%;
  height: 100%;
  display: inline;
}
.textarea[contenteditable="true"] .emoji + .emoji {
  margin-left: 0;
}

.col1 {
  width: 8.33333% !important;
}
@media screen and (max-width: 414px) {
  .col1 {
    width: 100% !important;
  }
}

.col2 {
  width: 16.66667% !important;
}
@media screen and (max-width: 414px) {
  .col2 {
    width: 100% !important;
  }
}

.col3 {
  width: 25% !important;
}
@media screen and (max-width: 414px) {
  .col3 {
    width: 100% !important;
  }
}

.col4 {
  width: 33.33333% !important;
}
@media screen and (max-width: 414px) {
  .col4 {
    width: 100% !important;
  }
}

.col5 {
  width: 41.66667% !important;
}
@media screen and (max-width: 414px) {
  .col5 {
    width: 100% !important;
  }
}

.col6 {
  width: 50% !important;
}
@media screen and (max-width: 414px) {
  .col6 {
    width: 100% !important;
  }
}

.col7 {
  width: 58.33333% !important;
}
@media screen and (max-width: 414px) {
  .col7 {
    width: 100% !important;
  }
}

.col8 {
  width: 66.66667% !important;
}
@media screen and (max-width: 414px) {
  .col8 {
    width: 100% !important;
  }
}

.col9 {
  width: 75% !important;
}
@media screen and (max-width: 414px) {
  .col9 {
    width: 100% !important;
  }
}

.col10 {
  width: 83.33333% !important;
}
@media screen and (max-width: 414px) {
  .col10 {
    width: 100% !important;
  }
}

.col11 {
  width: 91.66667% !important;
}
@media screen and (max-width: 414px) {
  .col11 {
    width: 100% !important;
  }
}

.col12 {
  width: 100% !important;
}
@media screen and (max-width: 414px) {
  .col12 {
    width: 100% !important;
  }
}

.tl {
  text-align: left;
}

.tr {
  text-align: right;
}

.tc {
  text-align: center;
}

.inline-flex {
  display: inline-flex;
}

.flex {
  display: flex;
}

.j-left {
  justify-content: left;
}

.j-center {
  justify-content: center;
}

.j-right {
  justify-content: right;
}

.j-between {
  justify-content: space-between;
}

.j-around {
  justify-content: space-around;
}

.a-start {
  align-items: flex-start;
}

.a-center {
  align-items: center;
}

.a-end {
  align-items: flex-end;
}
