@charset "utf-8";
/*scroll*/
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb {
  background-color: rgb(26 26 26 / 50%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}
/* reset */
* {
  box-sizing: border-box;
}
body {
  min-width: 320px;
  margin: 0 auto;
  padding: 0;
  color: #1e1e1e;
  font-size: 16px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
}
a {
  color: #4d4399;
  text-decoration: underline;
}
:root {
  --padding: 1em;
  --margin_b: 1em;
  --gap: 0.5em;
}

#contents {
  width: 100%;
}
.container {
  padding: 1em 2.5vw;
  /* max-width: 1200px; */
  margin: 0 auto;
}

._card,
._flex._child-card > * {
  background: #fff;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4); */
  box-sizing: border-box;
  position: relative;
  display: block;
  cursor: pointer;
  width: 100%;
  border: 1px solid #e1e1e1;
  box-sizing: border-box;
}

._card h3,
._child-card h3 {
  margin: 0 0 0.5rem 0;
  font-weight: bold;
  font-size: 0.8em;
}

/*botton*/

.footer-nav-btn {
  background-color: #fff;
  font-size: 1em;
  padding: 1em 1em;
  margin: 0 0.5em;
  text-align: center;
  min-width: 12em;
  border: 1px solid #1e1e1e;
}

button[type="submit"],
#toConf {
  background-color: #ff7d00;
  color: #fff;
  font-size: 1em;
  padding: 1em 1em;
  margin: 0 0.5em;
  text-align: center;
  min-width: 12em;
}
button:hover {
  opacity: 0.6;
}
h2.h2 {
  font-size: 2.14em;
  margin-bottom: 0.5em;
}

h3.h3 {
  font-size: 2.14em;
  margin-bottom: 0.3em;
}
.h3 {
  font-size: 1.2em;
  margin: 1em 0;
  padding: 0.5em 0;
  border-bottom: 2px #1e1e1e solid;
}

h2.main-h2 {
  font-size: 1.2em;
  margin-bottom: 1em;
}

/*form------------------------*/
input:placeholder {
  color: #eee;
  font-size: 0.8em;
}
textarea {
  border: 1px solid #1e1e1e;
}
form.formrun {
  width: 100%;
}
input[type="text"] {
  border: 1px solid #555;
  padding: 0.3em;
  margin-bottom: 0.5em;
  font-size: 1.2em;
}
input.error,
select.error {
  background-color: #ffedf5;
}
span.error,
.error.formrun-system-show {
  color: #ff002a;
}
.form-groupe > section > div {
  display: flex;
  flex-flow: column; /* margin-bottom: .5em; */
  width: 100%;
  border-bottom: 1px solid #eee;
  padding: 0.6em 0;
  position: relative;
}
.form-groupe > section > div:nth-last-of-type(2) {
  border: none;
}
.form-groupe > section > div._flex {
  flex-flow: row;
  align-items: center;
}
.form-groupe > section > div label {
  margin: 0.5em;
}
.form-groupe ._flex > div {
  align-items: center;
  margin: 1em;
  display: inline-block;
}
.form-groupe {
  max-width: 100%;
  box-sizing: border-box;
  width: 500px;
}
.form-groupe p {
  font-size: 0.8em;
  margin-bottom: 1em;
}

._flex select {
  margin-left: 0.5em;
}
.formrun select,
input[type="number"] {
  padding: 0.5em;
  border: #555 1px solid;
  cursor: pointer;
  position: relative;
  max-width: 12em;
  /* display: inline-block; */
  margin-bottom: 0.5em;
}
.formrun .form-groupe-select:after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  border-left: 2px solid #555;
  border-bottom: 2px solid #555;
  transform: rotate(-45deg);
  position: absolute;
  top: 2.5em;
  right: 1em;
  z-index: 99;
}
/*Checkboxes styles*/
input[type="checkbox"] {
  display: none;
}
input[type="checkbox"] + label {
  display: block;
  position: relative;
  padding-left: 3em;
  margin-bottom: 2em;
  line-height: 1.8em;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

input[type="checkbox"] + label:last-child {
  margin-bottom: 0;
}

input[type="checkbox"] + label:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #555;
  position: absolute;
  left: 10px;
  top: 4px;
  opacity: 0.6;
  -webkit-transition: all 0.12s, border-color 0.08s;
  transition: all 0.12s, border-color 0.08s;
}

input[type="checkbox"]:checked + label:before {
  width: 10px;
  top: 0px;
  left: 10px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.form-groupe input[type="radio"] {
  position: absolute;
  opacity: 0;
}
.form-groupe input[type="radio"] + label:before {
  content: "";
  background: #f4f4f4;
  border-radius: 100%;
  border: 1px solid #b4b4b4;
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  position: relative;
  top: -0.2em;
  margin-right: 1em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}
.form-groupe input[type="radio"]:checked + label:before {
  background-color: #1e1e1e;
  /*   border:none; */
  box-shadow: inset 0 0 0 3px #fff;
}
.form-groupe input[type="radio"]:focus + label:before {
  outline: none;
  border-color: #1e1e1e;
}
.form-groupe input[type="radio"]:disabled + label:before {
  box-shadow: inset 0 0 0 4px #f4f4f4;
  border-color: #b4b4b4;
  background: #b4b4b4;
}
.form-groupe input[type="radio"] + label:empty:before {
  margin-right: 0;
}
.file-group input[type="file"] {
  /* display: none; */
  position: relative;
  /* border: 1px solid #1e1e1e; */
  padding: 0.5em 0em 0.5em 1em;
  /* width: 8.6em; */
}
input[type="file"]:before {
  /* content: "添付ファイル："; position: absolute;background: #fff;width: 8.3em;height: 1.6em;line-height: 1.5; font-size: .8em;  text-align: right; */
}
.file-group label {
  display: flex;
  font-size: 1em;
  /* width: 9.5em; */
  /* text-align: center; */
  /* border:solid 1px #1e1e1e; */
}
.file-group {
  margin-bottom: 0.5em;
  max-width: 100%;
}
select + .arrow {
  content: "";
  position: absolute;
  left: 10.5em;
  top: 3.4em;
  display: inline-block;
  width: 9px;
  height: 9px;
  border-bottom: 1px solid #1e1e1e;
  border-right: 1px solid #1e1e1e;
  transform: rotate(45deg);
  z-index: 999;
}

/*header*/

/* header-navi */
.header-logo > img {
  max-width: 250px;
}
.header-title {
  background-color: #e1e1e1;
  color: #1e1e1e;
  min-height: 66px;
  box-sizing: border-box;
  /* margin-bottom: .5em; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 5px solid #1e1e1e;
}

.center-contents {
  /* max-width: 1200px; */
  height: 66px;
  line-height: 66px;
  padding: 0px 4vw;
  display: flex;
  justify-content: space-between;
  margin: auto;
}

.title {
  display: inline-block;
  font-size: 1.2em;
}
.item-text {
  font-size: 0.8em;
  line-height: 1.2;
}

.item-subtitle {
  margin-bottom: 0.2em;
}

.white-box:before {
  content: "¥";
  font-size: 0.8em;
}
.white-box {
  /* color: #555; */
  /* background-color: #fff; */
  vertical-align: bottom;
  font-size: 1.5vw;
  padding: 0 0.5em;
  min-width: 100px;
  margin: 0px;
  display: block;
  line-height: 1.2;
  text-align: right;
  max-height: 40px;
}

.price-all {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  /* min-width: 22em; */
  font-size: 0.8em;
  margin-left: auto;
}

/* breadcrumbs */

.breadcrumb {
  display: flex;
  width: 100%;
  list-style: none;
}

.breadcrumb li {
  position: relative;

  display: block;
}

.breadcrumb li > * {
  display: inline-block;
  position: relative;
  padding: 1.2em 1em 1.2em 2.5em;
  background-color: #fff;
  border-color: #fff;
}

.breadcrumb li.check > * {
  color: #1e1e1e;
  background-color: #1e1e1e;
  border-color: #1e1e1e;
  color: #fff;
}

.breadcrumb li:first-of-type > * {
  padding-left: 1.6em;
}

.breadcrumb li:last-of-type > * {
  padding-right: 1.6em;
}

.breadcrumb li::after,
.breadcrumb li > *::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  content: "";
  height: 0;
  width: 0;
  border: 1.75em solid transparent;
  border-right-width: 0;
  border-left-width: 18px;
}

.breadcrumb li::after {
  z-index: 1;
  -webkit-transform: translateX(4px);
  -moz-transform: translateX(4px);
  -ms-transform: translateX(4px);
  -o-transform: translateX(4px);
  transform: translateX(6px);
  border-left-color: #e1e1e1;
  transform: scale(1.2);
  margin-left: 2px;
}

.breadcrumb li > *::after {
  z-index: 2;
  border-left-color: inherit;
}

/*     .breadcrumb li:last-of-type::after,.breadcrumb li:last-of-type>*::after {
        display: none
    } */

/*main-----------------  */

.lp_link {
  text-align: right;
  /* display: inline-block; */
  /* max-width: 35%; */
  /* position: absolute; */
  /* right: 0; */
  padding: 0 2.5vw;
}
.main-errortext {
  border: 1px solid #eee;
  padding: 1em;
  margin: 1em 0;
  font-size: 0.8em;
}
.cantselect:before {
  content: "・";
  display: inline-block;
}

/* main left */
.main-left {
  min-width: 300px;
  max-width: 400px;
  margin-right: 2em;
}

/*sidenav*/
.side-nav {
  display: block;
  margin-right: 2em;
}

.side-nav li {
  padding: 0.8em;
  border: 1px solid #eee;
  cursor: pointer;
}

.side-nav li a {
  width: 100%;
  display: block;
}

.side-nav li span:before {
}

.side-nav li span:before {
  content: "";
  margin: 0 0.4em;
}
tr.view.active {
  border-top: #1e1e1e 2px solid;
  /* border-bottom: #1e1e1e 2px solid; */
}

/*----------------- side-navi */
.table-contents {
  overflow-y: scroll;
  max-height: 70vh;
}
.side-navi-2 {
  /* border-collapse: separate; */
  /* border-spacing: 0px 3px; */
  cursor: pointer;
  text-align: left;
}

.side-navi-2 > tbody > tr > th,
.side-navi-2 > tbody > tr.view.active > th {
  background-color: #ebebeb;
  border: 1px solid #e1e1e1; /* white-space: nowrap; */
  min-height: 50px;
  line-height: 1.3;
  width: 31%; /* text-align: center; */
  vertical-align: middle;
  padding: 0.5em 1em;
  font-size: 0.8em;
  height: 3.5em;
  border-bottom: 1px solid #f5f5f5;
}
.side-navi-2 > tbody > tr.active > th {
  background-color: #f5e5e5;
  border: 1px solid #e1e1e1;
}
.side-navi-2 > tbody > tr.item-select > th {
  background-color: #ebebeb;
  border: 1px solid #e1e1e1;
}
.side-navi-2 > tbody > tr > td,
.side-navi-2 > tbody > tr.view.active > td {
  background-color: #fff;
  padding: 0.5em 1em;
  font-size: 0.8em;
  line-height: 1.5em;
  padding: 1.3em 0.5em;
  width: 70%;
  border: 1px solid #e1e1e1;
  height: 4em;
}
.side-navi-2 > tbody > tr.active > td {
  background-color: #fff8f8;
}
.side-navi-2 > tbody > tr.active.item-select > td {
  background-color: #fff;
}

/* main right */
.main-right {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 5em;
}

/*item*/
.item input[type="radio"] {
  opacity: 0;
  position: absolute;
}

.item {
  cursor: pointer;
  display: flex;
  /* flex-grow: 0; */
  position: relative;
  margin-bottom: 3vw;
  /* min-width: 14em; */
  max-width: 260px;
}

.item:hover {
  opacity: 0.8;
}

.item.disable:hover {
  background-color: transparent;
}

.item.disable {
  opacity: 1;
  cursor: default;
  cursor: default;
}
li.item.disable label:after {
  content: "選択できません";
  display: block;
  position: absolute;
  font-weight: bold;
  color: #333;
  background: #ccc;
  padding: 50px 0;
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0.8;
  text-align: center;
}
.item.disable ._card {
  box-shadow: none;
  cursor: default;
}

.item-inner {
  padding: 0.8em;
  /* border-top: 1px solid #eee; */
  /* margin-top: 1em; */
}

.item img {
  width: 100%;
  height: auto;
  /* min-height: 185px; */
  min-width: 100%;
}

.item-price {
  margin-top: 0.5em;
  font-weight: bold;
}

.item.selected ._card {
  border: none;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.8);
}
.beforehtml {
  margin-bottom: 1em;
}

/*----------------- main end */

/*確認画面-----------------  */
.conf_none {
  display: none;
}

#sendConf .table-contents {
  overflow-y: visible;
  display: table;
  width: 100%;
  /* margin: 0; */
  /* padding: 0; */
}
#sendConf .side-navi-2 {
  /* border-collapse:unset; */
  border-spacing: 0px 3px;
  cursor: default;
  display: block;
}

#sendConf .side-navi-2 > tbody > tr.item-select > th {
  /* background-color: #fff; */
  /* border:1px solid #eee; */
}

#sendConf .side-navi-2 > tbody > tr > td {
  background-color: #fff;
  border: 1px solid #eee;
}
#sendConf .side-navi-2 > tbody > tr.item-select > td {
  background-color: #fff;
}
.price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5em;
}
.price .price-all-text {
  padding-left: 1em;
}
/*お客様情報確認画面*/
section.conf .form-groupe > div {
  display: flex;
  align-items: center;
  padding: 0.5em;
  border-bottom: 1px solid #eee;
  /* height: 2.5em; */
  font-size: 0.9em;
}

section.conf .form-groupe div label {
  margin-right: 2em;
  /* padding: .2em; */
  width: 10em;
  max-width: 100%;
}

/* footer------------------------- */
.main {
  margin-bottom: 10vh;
  display: grid;
  grid-template-columns: 400px 1fr;
  padding-bottom: 2em;
}

.fixed-footer {
  box-sizing: border-box;
  background-color: #1e1e1e;
  width: 100%;
  /* height: 8vh; */
  position: fixed;
  display: flex;
  bottom: 0;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.footer-nav {
}
.footer-btn-clear {
  margin-right: 10em;
}
.footer-nav > .footer-nav-btn {
  background-color: #fff;
  border: 1px solid #1e1e1e;
  color: #1e1e1e;
  font-size: 1em;
  padding: 0.7em 1em;
  text-align: center;
  min-width: 8em;
}
#toInput:disabled {
  opacity: 0.3;
}
.footer-nav-btn > a {
  text-decoration: none;
  color: #1e1e1e;
}

/* sp ---------------------------------------------------------*/
/*  ---------------------------------------------------------*/
/*  ---------------------------------------------------------*/
@media screen and (max-width: 780px) {
  .lp_link {
    text-align: left;
    display: inline-block;
    width: 100%;
    position: relative;
    font-size: 0.8em;
  }

  .container {
    padding: 0.3em 2vw;
    max-width: 100%;
    margin: 0 auto;
    /* justify-content: center; */
  }
  .header-innder {
    padding: 0;
    height: 2.3em;
  }
  h3.h3 {
    font-size: 1.2em;
  }
  #breadcrumbs .before-item::before {
    border-width: 0;
  }
  /* header-navi */
  header.header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
  }
  .header-logo img {
    max-width: 150px;
  }
  .selectListButton {
    /* height: 2em; */
    /* line-height: 2em; */
    background-color: #4d4399;
    color: #fff;
    padding: 0.5em 1em;
  }
  /*breadcrumb*/
  .breadcrumb li {
    font-size: 0.7em;
  }
  .breadcrumb li::after,
  .breadcrumb li > *::after {
    border-left-width: 10px;
  }

  /*main*/
  .center-contents {
    line-height: 1.7em;
    padding: 0px 3vw;
    align-items: center;
  }
  .item-inner {
    padding: 0.5em;
  }
  .title {
    font-size: 3vw;
    max-width: 50%;
    line-height: 1.3em;
  }
  .price-all {
    display: flex;
    font-size: 0.8em;
    padding-top: 0.5em;
  }
  .price-all-price {
    /* display:block; */
    /* padding-top: .3em; */
  }
  span._text-large.white-box {
    font-size: 1.5em;
    min-width: 100px;
  }

  /* maincontents */

  h2.h2 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
  }
  .main {
    display: block;
  }
  .main-nav {
    width: 90%;
    margin: auto;
  }

  table.side-navi-2 {
    width: 100%;
    padding: 1em;
    /* z-index: 999999; */
  }
  .main-right {
    width: 100%;
  }
  .main-left {
    width: 100%;
    /*     visibility: hidden; */
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    left: -100%;
    transition: 0.3s all ease-in;
  }
  .title {
    display: inline-block;
    font-size: 0.5em;
  }

  /*leftnav*/
  .main-left.open {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    display: block;
    transition: 0.3s all ease-in;
  }
  .main-left .main-nav-bg {
    width: 100%;
    height: 100vh;
    opacity: 0.6;
    background-color: #000;
    transition: 0.3s all ease-in;
    visibility: hidden;
    position: absolute;
    top: 0;
    z-index: -1;
  }
  .main-left.open .main-nav-bg {
    visibility: visible;
    display: block;
  }

  .main-nav-bg {
  }
  button.main-nav-close {
    position: absolute;
    right: 1em;
    top: 1em;
  }
  .table-contents {
    overflow-y: scroll;
    margin-right: 0;
    margin-top: 3em;
    max-height: 80vh;
  }
  .main-item-list {
    margin-top: 1em;
  }
  ul#mainSelects {
    width: 100%;
  }
  .item {
    width: 50%;
  }
  ._card {
    height: 100%;
  }

  /*form*/
  .formrun label {
    /* display: block; */
    margin-bottom: 0.2em;
    font-size: 0.9em;
  }

  input[type="text"] {
    width: 100%;
    margin-bottom: 1em;
  }

  form.formrun {
    margin-top: 1em;
  }
  button#sendConfComp {
    font-size: 1em;
    padding: 1em 1em;
    margin: 2em 0;
    text-align: center;
    min-width: 12em;
  }
  /* footer */
  .footer-nav {
    margin-right: 0;
    display: flex;
  }
  .footer-btn-clear {
    margin-right: 1em;
  }
  .footer-nav > .footer-nav-btn {
    font-size: 0.8em;
    padding: -0.5em 6vw;
    margin: 0 2vw;
    min-width: auto;
  }
  .footer-nav-btn {
    background-color: #fff;
    font-size: 1em;
    padding: 0.7em 0.8em;
    margin: 0 0.5em;
    text-align: center;
    min-width: auto;
    width: auto;
    /* border: 1px solid #e1e1e1; */
  }
}

._pc {
  display: block;
}
._sp {
  display: none;
}
@media (max-width: 980px) {
  ._sp {
    display: block;
  }
  ._pc {
    display: none;
  }
}
._none {
  display: none;
}

/*IE対応*/
@media all and (-ms-high-contrast: none) {
  main {
    min-width: 1204px;
  }
  .main-right {
    max-width: 60%;
  }
  .item {
    margin-right: 10px;
    width: 260px;
  }
  .main-errortext,
  ._card h3,
  ._child-card h3,
  ._text-small,
  ._read-text {
    font-size: 1em;
  }
  input:-ms-input-placeholder {
    color: #ccc;
  }
}
