/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

[v-cloak] {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

body {
  background-color: #bde6fa;
  color: #194ba0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

main {
  max-width: 1000px;
  margin: auto;
}

header.sign-in {
  background-color: #194ba0;
  color: white;
  height: 13em;
  width: 100%;
  background-image: url(/img/icon/backlogo.png);
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
}

header.sign-in2 {
  background-color: #194ba0;
  color: white;
  height: 1em;
  width: 100%;
  position: relative;
  z-index: 0;
}

header.sign-in2:before,
header.sign-in2:after {
  content: "";
  position: absolute;
  top: -200%;
  height: 0;
  border-style: solid;
  border-color: transparent transparent #bde6fa transparent;
  border-width: 25px 20px 25px 20px;
  z-index: -1;
}

header.sign-in2:before {
  right: 20%;
  width: 50%;
}

header.sign-in2:after {
  right: 20%;
  width: 50%;
}

header a {
  color: white;
}

header.pc {
  padding: 1em;
  text-align: center;
}

header.pc ul {
  margin: 0;
}

header.pc ul li {
  display: inline;
  padding: 0 2em;
}

header.pc ul li:nth-child(2) {
  border-left: none;
}

header.pc ul li + li {
  border-left: 1px solid #ffffff;
}

header.pc ul li a {
  text-decoration: none;
  padding: 0.5em;
}

.pure-form select {
  padding-top: 0.3em;
  padding-bottom: 0.3em;
}

.customer-sign-in {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 1em;
  font-size: 1em;
  text-align: center;
  color: #194ba0;
}

.sigin-in-form {
  min-width: none;
}

.container {
  grid-template-columns: 1fr 600px 1fr;
}

.form-label {
  font-weight: 700;
  margin-bottom: 1em;
}

.full-width {
  width: 100%;
}

.bottom-border {
  border-bottom: #194ba0;
  border-bottom-style: solid;
  padding-bottom: 0;
}

ul.customer-links {
  list-style-type: square;
}

ul.customer-links > li {
  width: fit-content;
  margin: auto;
}

ul.customer-links > li > a {
  color: #1c1d1d;
  text-decoration: none;
}

th {
  text-align: center;
}

td {
  height: 1.5em;
}

.button_to {
  margin: -2em;
}
.white-box {
  background-color: white;
  border: gray solid 1px;
  color: #1c1d1d;
}

.blue-button {
  padding: 0.3em;
  padding-left: 2em;
  padding-right: 2em;
  background-color: #194ba0;
  color: white;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  cursor: pointer;
}

.menu-container-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 60px;
  row-gap: 60px;
  padding: 15px;
  margin-top: 5em;
}

.menu-container-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 60px;
  row-gap: 60px;
  padding: 15px;
  margin-top: 5em;
}

.customer-menu-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 10px;
  row-gap: 30px;
  padding: 15px;
}

.customer-menu-wide-col {
  grid-column: span 6;
}

.customer-menu-slim-col {
  grid-column: span 2;
}

.acc {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cs-1 {
  grid-column: span 1;
}

.cs-2 {
  grid-column: span 2;
}

.cs-3 {
  grid-column: span 3;
}

.cs-4 {
  grid-column: span 4;
}

.cs-5 {
  grid-column: span 5;
}

.cs-6 {
  grid-column: span 6;
}

.cs-7 {
  grid-column: span 7;
}

.cs-8 {
  grid-column: span 8;
}

.cp-6 {
  grid-column: 6;
}

.main-color {
  color: #194ba0;
}

.main-link {
  color: #194ba0;
  text-decoration: none;
}

.history-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 10px;
  row-gap: 30px;
  padding: 15px;
}

.form-container {
  display: grid;
  column-gap: 1em;
  row-gap: 1em;
  padding: 10px;
  margin: auto;
  margin-top: -2em;
}

.history {
  display: grid;
}

.history > .date {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.history > .code {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.history > .price {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

.history > .name {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
}

@media screen and (min-width: 768px) {
  .form-error-col {
    grid-column: span 2;
  }

  .form-container {
    max-width: 600px;
    grid-template-columns: 1fr 2fr;
  }

  .customer-menu-container {
    column-gap: 40px;
    row-gap: 30px;
    padding-top: 100px;
  }

  .customer-menu-wide-col {
    grid-column: span 3;
  }

  .right-col {
    grid-column: 2;
  }

  .form-button {
    grid-column: 2;
    grid-row: span 2;
  }

  .customer-menu-button {
    text-align: center;
    line-height: 2em;
  }

  .customer-menu-container-1-2 {
    column-gap: 100px;
    row-gap: 60px;
    padding: 80px;
  }

  .history > .date {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .history > .code {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
  }

  .history > .price {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
  }

  .history > .name {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .invoice-table {
    min-width: 700px;
  }
}

tbody {
  background-color: white;
}

.main-button {
  font-size: 1.5em;
  padding: 0.5em;
  display: block;
  color: #194ba0;
  background-color: white;
  border-radius: 10px;
  border: none;
  filter: drop-shadow(5px 5px 5px #029efe);
  text-decoration: none;
  cursor: pointer;
}

.w-8 {
  width: 8em;
}

.customer-menu-button {
  font-size: 1.5em;
  padding: 0.5em;
  display: block;
  color: #194ba0;
  background-color: white;
  border-radius: 10px;
  border: none;
  filter: drop-shadow(5px 5px 5px #029efe);
  text-decoration: none;
}

.button-icon {
  height: 2em;
}

.login-button {
  font-size: 1.5em;
  padding: 1.5em;
  width: 100%;
  color: #194ba0;
  background-color: white;
  border-radius: 10px;
  border: none;
  filter: drop-shadow(5px 5px 5px #029efe);
}

form {
  padding: 2em;
}

.content {
  padding: 1em;
}

.ta-c {
  text-align: center;
}

.ta-l {
  text-align: left;
}

.ta-l > p {
  padding-left: 1em;
}

.ta-r {
  text-align: right;
}

.ta-r > p {
  padding-right: 1em;
}

.mb-1 {
  margin-bottom: 1em;
}

.mb-2 {
  margin-bottom: 2em;
}

.lh-2 {
  line-height: 2em;
}

input[type="checkbox"] {
  transform: scale(1.5);
}

.xl-button {
  min-width: 300px;
}

.button-wide {
  font-size: 150%;
  width: 80%;
  margin: 1em;
}

.ticket-wrapper {
  margin: auto;
  max-width: 380px;
}

.in-banner {
  margin-top: 2em;
  margin-bottom: 2em;
}

.in-banner > p {
  margin-top: -1em;
}

.last-banner {
  margin-top: -0.3em;
}

#qr-wrapper {
  margin: 1em;
}

#qr {
  width: 100%;
}

.p-0 {
  padding: 0em;
}

.p-2 {
  padding: 2em;
}

.ma {
  margin: auto;
}

.mt-1 {
  margin-top: 1em;
}

.mt-4 {
  margin-top: 4em;
}

.mt-n1 {
  margin-top: -1em;
}

.ml-1 {
  margin-left: 1em;
}

.price-th {
  width: 100px;
}

.button-th {
  width: 140px;
}

.dialog {
  position: fixed;
  top: 3em;
  left: 3em;
  right: 3em;
  bottom: 3em;
}

.mhw-80per {
  max-height: 80%;
  max-width: 80%;
}

.message-dialog > ul {
  margin: 0;
}

.message-dialog > ul > li {
  margin-left: -1em;
}

.field_with_errors {
  display: inline-block;
  border: solid 1px red;
}

.notice,
.success,
.warning,
.error,
.validation {
  border: 1px solid;
  margin: 1em;
  padding: 1em;
  background-repeat: no-repeat;
  background-position: 10px center;
}

.notice {
  color: #00529b;
  background-color: #bde5f8;
}
.success {
  color: #4f8a10;
  background-color: #dff2bf;
}
.warning {
  color: #9f6000;
  background-color: #feefb3;
}
.error {
  color: #d8000c;
  background-color: #ffbaba;
}
.validation {
  color: #d63301;
  background-color: #ffccba;
}

.button-cancel {
  margin-left: 1em;
  background: rgb(202, 60, 60);
  color: white;
}

.price-field {
  width: 80px;
}

.hide-spin::-webkit-inner-spin-button,
.hide-spin::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
  appearance: none;
}

.area {
  margin: 1em;
  font-size: large;
}

.prefectures {
  display: inline;
  color: #194ba0;
  font-size: small;
}

.image-file-field {
  display: none;
}

.left-banner {
  width: 95px;
  height: 450px;
}

.top-banner {
  width: 190px;
  height: 70px;
}

.right-banner {
  width: 95px;
  height: 450px;
}

.bottom-banner {
  width: 380px;
  height: 90px;
}

header {
  background: #194ba0;
}

#logo {
  padding: 0.25em;
  font-size: 2em;
}

.histories .history {
  padding: 0.5em;
}

.histories .history:not(:last-child) {
  border-bottom-style: solid;
  border-bottom: solid;
  margin-bottom: 1em;
}

.fs-2 {
  font-size: 2em;
}

.full-button {
  font-size: 1.5em;
  padding: 0.5em;
  display: block;
  color: #194ba0;
  background-color: white;
  border-radius: 10px;
  border: none;
  filter: drop-shadow(5px 5px 5px #029efe);
  text-decoration: none;
  text-align: center;
  line-height: 2em;
  height: 100%;
  width: 100%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
