/* CSS Document */
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Common
  - Header
  - Footer
  - Content
# Content
  - Login page
  - Dashboard
  - Master
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> Reset
--------------------------------------------------------------*/
.flex {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.flex .col-md-1 {
  flex: 0 0 8.333333%;
  width: 8.333333%;
}
.flex .col-md-2 {
  flex: 0 0 16.666667%;
  width: 16.666667%;
}
.flex .col-md-3 {
  flex: 0 0 25%;
  width: 25%;
}
.flex .col-md-4 {
  flex: 0 0 33.333333%;
  width: 33.333333%;
}
.flex .col-md-6 {
  flex: 0 0 50%;
  width: 50%;
}
.flex .col-md-12 {
  flex: 0 0 100%;
  width: 100%;
}

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

@media screen and (max-width: 992px) {
  .flex .col-2 {
    flex: 0 0 16.666667%;
    width: 16.666667%;
  }
  .flex .col-3 {
    flex: 0 0 25%;
    width: 25%;
  }
  .flex .col-4 {
    flex: 0 0 33.333333%;
    width: 33.333333%;
  }
  .flex .col-6 {
    flex: 0 0 50%;
    width: 50%;
  }
  .flex .col-12 {
    flex: 0 0 100%;
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .flex .col-sm-1 {
    flex: 0 0 8.333333%;
    width: 8.333333%;
  }
  .flex .col-sm-2 {
    flex: 0 0 16.666667%;
    width: 16.666667%;
  }
  .flex .col-sm-3 {
    flex: 0 0 25%;
    width: 25%;
  }
  .flex .col-sm-4 {
    flex: 0 0 33.333333%;
    width: 33.333333%;
  }
  .flex .col-sm-6 {
    flex: 0 0 50%;
    width: 50%;
  }
  .flex .col-sm-12 {
    flex: 0 0 100%;
    width: 100%;
  }
}
/*--------------------------------------------------------------
>>> Common
--------------------------------------------------------------*/
* {
  box-sizing: border-box;
}
*:after, *:before {
  box-sizing: border-box;
}

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

html {
  height: 100%;
}
html body {
  position: relative;
  height: 100%;
  margin: 0;
  background-color: #FCFCFC !important;
}
html body .container {
  width: calc(100% - 3rem);
}
html body .container-narrow {
  width: calc(100% - 3rem);
  max-width: 768px;
  margin: 0 auto;
}
html body .container3 {
  width: 95% !important;
  max-width: 1280px;
  margin: 0 auto;
}

/* Header
--------------------------------------------- */
.header {
  position: relative;
  height: 64px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  background-color: #FFFFFF;
}
@media only screen and (max-width: 768px) {
  .header {
    height: 48px;
  }
}
.header-inner {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}
.header-inner.container {
  width: 100%;
}
.header .brand-logo {
  width: 116px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .header .brand-logo {
    width: 87px;
  }
}
.header .brand-logo img {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.header .nav {
  width: calc(100% - 116px);
  height: 64px;
  color: rgba(0, 0, 0, 0.87);
  box-shadow: none;
  background-color: #FFFFFF;
}
@media only screen and (max-width: 768px) {
  .header .nav {
    height: 48px;
  }
}
.header .nav-menu {
  display: none;
  height: 48px;
}
@media only screen and (max-width: 768px) {
  .header .nav-menu {
    display: block;
  }
}
.header .nav-menu .sidenav-trigger {
  display: block;
  float: none;
  width: 48px;
  height: 48px;
  margin: 0 0 0 auto;
  padding: 0 12px;
}
.header .nav-menu .material-icons {
  height: 48px;
  line-height: 48px;
}
.header .nav-menuItem {
  min-width: 160px;
}
.header .nav a {
  color: rgba(0, 0, 0, 0.87);
}
.header .nav .dropdown-content li .logout {
  width: 100%;
  height: 50px;
  padding: 7px 16px;
}
.header .nav .dropdown-content li .logout i {
  line-height: inherit;
}

.sidenav .dropdown-content li.divider {
  margin: 0;
}

/* Footer
--------------------------------------------- */
.footer {
  width: 100%;
  height: 41px;
  padding: 0;
  background-color: #26A69A;
}
.footer-copyright {
  padding: 10px 0;
}
.footer-copyright p {
  margin: 0;
  padding: 0;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
}
.footer-copyright a {
  color: #FFFFFF;
}

/*--------------------------------------------------------------
>>> Content
--------------------------------------------------------------*/
#mainContent {
  position: relative;
  min-height: calc(100% - 105px);
}
@media only screen and (max-width: 768px) {
  #mainContent {
    min-height: calc(100% - 89px);
  }
}

/* Page title
--------------------------------------------- */
.page-title {
  width: 100%;
  text-align: center;
}
.page-title h1 {
  position: relative;
  margin: 0;
  padding: 3.5rem 0;
  font-size: 24px;
}
@media only screen and (max-width: 768px) {
  .page-title h1 {
    padding: 2.5rem 0;
    font-size: 18px;
  }
}
.page-title h1:before {
  content: "";
  position: absolute;
  bottom: 2.5rem;
  left: calc(50% - 30px);
  width: 60px;
  height: 2px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.87);
}
@media only screen and (max-width: 768px) {
  .page-title h1:before {
    bottom: 1.5rem;
  }
}

/* Content area
--------------------------------------------- */
.content {
  margin: 0 0 3.5rem 0;
  padding: 3.5rem;
  border-radius: 15px;
  background-color: #FFFFFF;
}
@media only screen and (max-width: 768px) {
  .content {
    padding: 2.5rem 2rem;
  }
}
@media only screen and (max-width: 480px) {
  .content {
    padding: 2rem 1.5rem;
  }
}
.content-cards {
  width: 100%;
  margin: 0 0 3.5rem 0;
  border-radius: 15px;
}
.content-cards .card {
  padding: 3.5rem;
}
@media only screen and (max-width: 768px) {
  .content-cards .card {
    padding: 2.5rem 2rem;
  }
}
@media only screen and (max-width: 480px) {
  .content-cards .card {
    padding: 2rem 1.5rem;
  }
}
.content-cards .card-title {
  padding: 15px 5px;
  background-color: #F9F9F9;
}
.content .headline1 {
  font-size: 24px;
}
.content .headline2 {
  font-size: 18px;
  font-weight: bold;
}
.content .headline3 {
  font-size: 16px;
  font-weight: bold;
}
.content .table {
  margin-bottom: 2.5rem;
}
.content .display-none {
  display: none;
}
.content .search__box {
  margin-bottom: 2em;
  border: 1px solid #EEEEEE;
  border-radius: 10px;
  background-color: #F9F9F9;
}
.content .search__box .row {
  margin: 0;
}
.content .search__box .row .col {
  padding: 0;
}
.content .search__box .row span {
  margin-top: 10px;
}
.content .search__box .col-12 input {
  height: 3rem;
  margin: 0;
  padding: 5px;
  border: 1px solid #f2f2f2;
  border-radius: 2px;
  background-color: #FFFFFF;
  box-sizing: border-box;
}
.content .search__box .col-12 input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.87);
}
.content .search__box .col-12 input::placeholder {
  color: rgba(0, 0, 0, 0.87);
}
.content .search__box .col-md-3 {
  padding: 0 5px;
}
.content .search__title {
  padding: 1em 2em;
  background-color: #EEEEEE;
}
.content .search__title span {
  display: inline-block;
  margin-right: 10px;
}
.content .search__title.selected span {
  transform: rotate(90deg);
  transition: 0.2s;
}
.content .search__content {
  margin: 0;
  padding: 2em;
}
.content .search__content.closed {
  display: none;
}
.content .search__list {
  display: -moz-grid;
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: 60% 40%;
  gap: 10px;
}
.content .search__list #employ {
  grid-row: 2;
  grid-column: 2;
}
.content .search__list #keyword {
  grid-row: 2;
  grid-column: 1;
}
.content .search__btn {
  align-self: center;
  margin-top: 1em;
}
.content .table-responsive tbody .row-btn {
  text-align: center;
}

.content-box {
  justify-content: center;
  margin: 0 auto 2em;
}

/* Pagination
--------------------------------------------- */
.pagination {
  margin: 0 0 2rem 0;
  text-align: center;
}
.pagination li a {
  width: 30px;
  padding: 0;
}

@media screen and (max-width: 992px) {
  .content .search__box {
    margin-bottom: 2em;
  }
  .content .search__title {
    padding: 1em;
    background-color: #EEEEEE;
  }
  .content .search__title span {
    display: inline-block;
    margin-right: 10px;
  }
  .content .search__title.selected span {
    transform: rotate(90deg);
    transition: 0.2s;
  }
  .content .search__content {
    margin: 0;
    padding: 1em;
  }
  .content .search__list {
    grid-template-rows: repeat(4, 1fr);
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .content .search__list #employ {
    grid-row: 3;
    grid-column: 1;
  }
  .content .search__list #keyword {
    grid-row: 4;
    grid-column: 1;
  }
}
/*--------------------------------------------------------------
>>> Login
--------------------------------------------------------------*/
.login {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: calc(100% - 105px);
}
@media only screen and (max-width: 768px) {
  .login {
    height: calc(100% - 89px);
  }
}
.login-inner {
  width: 100%;
  max-width: 480px;
  padding: 3.5rem;
  border-radius: 15px;
  background-color: #FFFFFF;
}
@media only screen and (max-width: 768px) {
  .login-inner {
    width: calc(100% - 3rem);
    padding: 2.5rem 2rem;
  }
}
@media only screen and (max-width: 480px) {
  .login-inner {
    padding: 2rem 1.5rem;
  }
}
.login-title {
  margin: 0 0 1.5rem 0;
  font-size: 24px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .login-title {
    font-size: 18px;
  }
}
.login-form input.form-control {
  height: 3.6rem;
  margin: 1rem 0 0 0;
  padding: 0.5rem 1rem;
  border-bottom: none;
  background-color: #F9F9F9;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .login-form input.form-control {
    height: 3.2rem;
  }
}
.login-form-btn button {
  display: block;
  width: 100%;
  height: 48px;
  margin-top: 1rem;
  font-size: 1rem;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 768px) {
  .login-form-btn button {
    height: 42px;
  }
}
.login-form-btn .forgot {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  text-align: left;
  -webkit-text-decoration-color: #039BE5;
          text-decoration-color: #039BE5;
}
.login-form-btn .forgot:hover {
  text-decoration: underline;
}
.login-form-btn .back {
  display: block;
  margin-top: 1rem;
  font-size: 1rem;
  text-align: center;
  -webkit-text-decoration-color: #039BE5;
          text-decoration-color: #039BE5;
}
.login-form-btn .back:hover {
  text-decoration: underline;
}
.login-form-error {
  min-height: 18px;
  color: #E35259;
  font-size: 12px;
}
.login-form-error p {
  margin: 1rem 0 0 0;
}

/*--------------------------------------------------------------
>>> Dashboard
--------------------------------------------------------------*/
.dashboard {
  position: relative;
  width: 100%;
  max-width: 1180px;
  min-height: calc(100% - 105px);
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .dashboard {
    min-height: calc(100% - 89px);
  }
}
.dashboard-inner {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  min-height: 100%;
}
.dashboard-inner form {
  align-self: flex-end;
  margin-bottom: 1.5rem;
}
.dashboard-inner #calendar {
  margin-top: 1.5rem;
}
.dashboard-btn {
  display: block;
  align-self: flex-start;
  margin: 0 0 0 auto;
}

/*--------------------------------------------------------------
>>> Report
--------------------------------------------------------------*/
.report-header {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 3.5rem;
}
@media only screen and (max-width: 768px) {
  .report-header {
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
  }
}
.report-header-item {
  width: calc(50% - 3rem);
  border-bottom: 1px solid #EEEEEE;
}
@media only screen and (max-width: 768px) {
  .report-header-item {
    width: 100%;
  }
}
.report-header-item p {
  font-size: 1.15rem;
  letter-spacing: 0.1em;
}
.report-meta {
  margin-bottom: 3.5rem;
}
@media only screen and (max-width: 768px) {
  .report-meta {
    margin-bottom: 2.5rem;
  }
}
.report-meta-inner {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: nowrap;
  padding: 1.5rem 60px;
  background-color: #F9F9F9;
}
@media only screen and (max-width: 768px) {
  .report-meta-inner {
    flex-wrap: wrap;
    padding: 1.5rem;
  }
}
.report-meta-inner .input-field {
  width: 32%;
  margin: 0 !important;
}
@media only screen and (max-width: 768px) {
  .report-meta-inner .input-field {
    width: 100%;
    margin: 0.5rem 0 0 0 !important;
    text-align: left;
  }
}
.report-meta-inner .input-field p {
  margin: 0 !important;
}
.report-meta-memo {
  margin: 0 !important;
  font-size: 0.9rem;
  text-align: right;
}
.report-meta-memo a {
  text-decoration: underline;
}
.report-form {
  margin-bottom: 3.5rem;
}
@media only screen and (max-width: 768px) {
  .report-form {
    margin-bottom: 2.5rem;
  }
}
.report-form-author {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  gap: 0 30px;
}
@media only screen and (max-width: 768px) {
  .report-form-author {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 15px 0;
  }
}
.report-form-author .select-field {
  width: 100%;
}
.report-form-author .input-field {
  width: 100%;
  margin-top: 18px !important;
  margin-bottom: 0 !important;
}
.report-form-author .input-field input {
  margin-top: 4px;
  margin-bottom: 0;
}
.report-form-document {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
@media only screen and (max-width: 768px) {
  .report-form-document {
    flex-wrap: wrap;
  }
}
.report-form-document .file-field {
  width: calc(42% - 30px);
}
@media only screen and (max-width: 768px) {
  .report-form-document .file-field {
    width: 100%;
  }
}
.report-form-document .input-field {
  width: 58%;
}
@media only screen and (max-width: 768px) {
  .report-form-document .input-field {
    width: 100%;
  }
}
.report-form .input-field input {
  padding-right: 10px;
  padding-left: 10px;
  background-color: #F9F9F9;
  box-sizing: border-box;
}
.report-form .input-field input:disabled {
  color: rgba(0, 0, 0, 0.87) !important;
}
.report-form .input-field textarea {
  min-height: 4.8rem;
  margin-top: 1rem;
  padding-right: 10px;
  padding-left: 10px;
  background-color: #F9F9F9;
  box-sizing: border-box;
}
.report-form .select-field .browser-default {
  background-color: #F9F9F9;
}
.report-form .select-field .input-field {
  margin-top: 8px;
}
.report-form .file-field.input-field {
  margin-bottom: 0 !important;
}
.report-form #free-box,
.report-form #time-box,
.report-form #pic-box,
.report-form #data-box {
  margin-bottom: 2.5rem;
}
.report-list thead {
  background-color: #F9F9F9;
}
@media only screen and (max-width: 768px) {
  .report-list thead {
    display: none;
  }
}
.report-list thead th {
  border: 1px solid #FFFFFF;
}
.report-list thead .w10 {
  width: 10%;
}
.report-list thead .w30 {
  width: 30%;
}
.report-list thead .w40 {
  width: 40%;
}
@media only screen and (max-width: 768px) {
  .report-list tbody td {
    display: block;
    width: 100%;
    padding: 10px 5px;
  }
  .report-list tbody td:before {
    content: attr(data-title);
  }
}
@media only screen and (max-width: 768px) {
  .report-list tbody .row-title {
    padding: 15px 5px;
    background-color: #F9F9F9;
  }
}
.report-list tbody .report-btn {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .report-list tbody .report-btn {
    text-align: right;
  }
}
@media only screen and (max-width: 768px) {
  .report-table thead th {
    display: none;
  }
}
.report-table tbody .flex {
  flex-wrap: wrap;
  width: 100%;
}
.report-table tbody .flex .row {
  margin-bottom: 0;
}
.report-table tbody .flex .row .col {
  padding: 0;
}
.report-table tbody .flex .row .s5 input[type=time]::-webkit-calendar-picker-indicator {
  background: none;
}
.report-table tbody .flex .row .s2 {
  margin-top: 15px;
  text-align: center;
}
.report-table tbody .js-time-picker {
  cursor: pointer;
}
.report-table tbody .deleteItem {
  margin-top: 8px;
  border: none;
  background: transparent;
}
.report-table tbody .deleteItem i {
  font-weight: bold;
}
.report-table .show-table td {
  white-space: pre-wrap;
}
.report-images {
  width: 100%;
  margin: 1em 0;
  line-height: 1;
}
.report-images img {
  max-width: 100%;
  height: auto;
}
.report-document {
  margin-bottom: 0.5em;
  padding: 1em 1em;
  background-color: #F9F9F9;
}
.report-document a {
  color: #039BE5;
  text-decoration: underline;
}
.report-document a:hover {
  opacity: 0.85;
  filter: opacity(0.85);
}
.report-footer {
  margin-top: 2.5rem;
  text-align: right;
}
.report-submit {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  margin-top: 2.5rem;
}
.report-link {
  margin-bottom: 3.5rem;
  text-align: center;
}
.report-link .btn-flat {
  text-decoration: underline;
}
.report-paging {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.5rem;
}
@media only screen and (max-width: 768px) {
  .report-paging {
    margin-bottom: 2.5rem;
  }
}
.report-paging-item {
  width: 50%;
}
.report-paging-item.next {
  text-align: right;
}
.report .headline2 .material-icons {
  padding-right: 4px;
  vertical-align: -5px;
}
.report .headline3 .material-icons {
  padding-right: 4px;
  vertical-align: -5px;
}
.report .report-type-block {
  display: block;
}
.report .report-type-none {
  display: none;
}
.report .report-text {
  white-space: pre-wrap;
}
.report .report-image-list li {
  padding: 0.5em 1em;
  background-color: #F9F9F9;
}
.report .report-image-list li button {
  margin-left: 2em;
}

.search-box {
  margin-bottom: 3.5rem;
}
@media only screen and (max-width: 768px) {
  .search-box {
    margin-bottom: 2.5rem;
  }
}
.search-box li {
  list-style-type: none;
}
.search-box .collapsible-header {
  background-color: #F9F9F9;
}
.search-contentBox {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
@media only screen and (max-width: 768px) {
  .search-contentBox {
    flex-wrap: wrap;
  }
}
.search-list {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 30px;
  width: calc(90% - 30px);
}
@media only screen and (max-width: 768px) {
  .search-list {
    grid-template-columns: 1fr;
    width: 100%;
  }
}
.search-list #keyword {
  grid-column: 1/4;
  grid-row: 2/3;
}
@media only screen and (max-width: 768px) {
  .search-list #keyword {
    grid-column: auto;
    grid-row: auto;
  }
}
.search-btn {
  width: 10%;
}
@media only screen and (max-width: 768px) {
  .search-btn {
    width: 100%;
  }
}
.search-btn .btn {
  width: 100%;
}
.search-btn .resetBtn {
  margin-top: 1.5rem;
}

/*--------------------------------------------------------------
>>> master
--------------------------------------------------------------*/
.master-list thead {
  background-color: #F9F9F9;
}
@media only screen and (max-width: 768px) {
  .master-list thead {
    display: none;
  }
}
.master-list thead th {
  border: 1px solid #FFFFFF;
}
.master-list thead .w5 {
  width: 5%;
}
.master-list thead .w10 {
  width: 10%;
}
.master-list thead .w15 {
  width: 15%;
}
.master-list thead .w20 {
  width: 20%;
}
.master-list thead .w25 {
  width: 25%;
}
.master-list thead .w30 {
  width: 30%;
}
.master-list thead .w35 {
  width: 35%;
}
@media only screen and (max-width: 768px) {
  .master-list tbody td {
    display: block;
    width: 100%;
    padding: 10px 5px;
  }
  .master-list tbody td:before {
    content: attr(data-title);
  }
}
@media only screen and (max-width: 768px) {
  .master-list tbody .row-title {
    padding: 15px 5px;
    background-color: #F9F9F9;
  }
}
@media only screen and (max-width: 768px) {
  .master-list tbody .half {
    display: inline-block;
    width: 50%;
  }
}
.master-meta {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
.master-meta-add {
  justify-self: flex-start;
}
.master-meta-trash {
  justify-self: flex-end;
}
.master-meta-delete {
  justify-self: center;
}
.master-submit {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  margin-top: 2.5rem;
}
.master-link {
  margin-bottom: 3.5rem;
  text-align: center;
}
.master-link .btn-flat {
  text-decoration: underline;
}
.master-form .input-field input {
  padding-right: 10px;
  padding-left: 10px;
  background-color: #F9F9F9;
  box-sizing: border-box;
}
.master-form .select-field .browser-default {
  background-color: #F9F9F9;
}
.master-form .select-field .input-field {
  margin-top: 8px;
}

/*--------------------------------------------------------------
>>> setting
--------------------------------------------------------------*/
.setting-list {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 30px;
  margin-bottom: 3.5rem;
}
@media only screen and (max-width: 768px) {
  .setting-list {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .setting-list {
    grid-template-columns: 1fr;
  }
}
.setting-listItem {
  width: 100%;
  margin: 0;
  padding: 1.5rem;
  border: 1px solid #EEEEEE;
  border-radius: 15px;
}
.setting-listItem dt {
  width: 100%;
}
.setting-listItem dt img {
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.setting-listItem dd {
  width: 100%;
  margin: 0;
}
.setting-listItem dd .btn {
  width: 100%;
}
/*# sourceMappingURL=style.css.map */