@charset "UTF-8";
:root {
  --maincolor: #000066;
  --lightcolor: #E0F4FF;
  --yellowcolor: #fcb900;
  --lightyellowcolor: #FFF3C3;
}

.greybox {
  background: #f1f1f1;
  padding: 25px;
}

.flex_row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
.flex_end {
  justify-content: flex-end;
}

.inner_title {
  font-size: 1.8rem;
}

.arrow_right {
  display: inline-block;
  padding-right: 20px;
  position: relative;
}
.arrow_right::after {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  
  position: absolute;
  top: calc(50% - 0.27rem);
  right: 5px;
}

.nowrap {
  white-space: nowrap;
}


header {
  width: 100%;
  height: 120px;
  background: #fff;
}


.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;

  max-width: 1200px;
  min-width: 1000px;
  margin: auto;

  line-height: 1;
  padding: 66px 20px 20px;
}

.header_inner h1 a {
  transition: 0.3s;
}
.header_inner h1 a:hover {
  opacity: 0.7;
}

.header_inner span {
  display: inline-block;
  padding: 0 0 5px 15px;
  
  color: var(--maincolor);
  font-size: 20px;
  font-weight: bold;
}

.btn_logout {
  display: inline-block;
  padding: 9px 20px 12px;
  border-radius: 5px;

  color: #fff !important;
  background: #777;
  text-decoration: none;

  transition: 0.3s;
}
.btn_logout:hover {
  opacity: 0.7;
}


.inner {
  max-width: 1200px;
  min-width: 1000px;
  padding: 0 20px;
  margin: auto;
}


.page_title {
  background: #000066;
}
.page_title .inner {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0 10px;
}

.page_title h2 {
  color: #fff;
  font-size: 30px;
  padding: 28px 0;
  margin-right: auto;
}
.page_title_btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page_title_btn a {
  display: block;
  color: #fff;
  padding: 15px 30px;
  background: #376ba1;
  border-radius: 5px;
  
  transition: 0.3s;
}
.page_title_btn a span {
  display: inline-block;
  
  position: relative;
}
.page_title_btn.arrow_prev a span {
  padding-left: 25px;
}
.page_title_btn.arrow_prev a span::before {
  content: "";
  display: block;
  
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  
  position: absolute;
  left: 0;
  top: 9px;
  transform: rotate(-135deg);
}
.page_title_btn.arrow_next a span {
  padding-right: 25px;
}
.page_title_btn.arrow_next a span::before {
  content: "";
  display: block;
  
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  
  position: absolute;
  right: 0;
  top: 9px;
  transform: rotate(45deg);
}
.page_title_btn a:hover {
  background: #245485;
}

.btn_cart a {
  color: #fff;
  background: #e39f0c;
}
.btn_cart a:hover {
  background: #a47208;
}


.page_linkset {
  margin-bottom: 20px;
}

.return_list {
  margin: 30px 0;
}

.return_list ul {
  display: flex;
  gap: 10px;
}

.left_btn {
  display: block;
  padding: 8px 25px 11px;
  background: var(--maincolor);
  border-radius: 5px;

  color: #fff !important;
  transition: 0.3s;
}

.left_btn span {
  display: inline-block;
  padding-left: 20px;
  
  position: relative;
}
.left_btn span::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  
  position: absolute;
  left: 0;
  top: 8px;
  transform: rotate(-45deg);
}
.left_btn:hover {
  opacity: 0.7;
}

.others_link_wrap {
  margin: 30px 0;
  text-align: right;
  
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
.others_link {
  display: inline-block;
  padding-right: 24px;
  position: relative;
}
.others_link::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #111;
  border-right: 2px solid #111;
  
  position: absolute;
  right: 5px;
  top: 8px;
  transform: rotate(45deg);
}
.others_link:hover {
  text-decoration: underline;
}


.change_header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  
  padding: 10px;
  background: #f5f5f5;
  
  margin: 30px 0;
}
.change_header ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 7px;
}
.change_header p {
  font-size: 1.4rem;
  margin-right: 30px;
}
.change_header ul a {
  display: block;
  padding: 2px 11px;
  background: #006;
  border: 2px solid #006;
  border-radius: 5px;
  
  color: #fff;
  font-size: 1.4rem;
  
  transition: 0.3s;
}
.change_header ul a:hover {
  opacity: 0.7;
}
.change_active a {
  border: 2px solid #006;
  background: #fff !important;
  color: #006 !important;
}

.main {
  font-size: 1.6rem;
}

.form_chart {
  display: flex;
  justify-content: space-between;
  padding: 0;
  
  margin-bottom: 50px;
}
.form_chart li {
  width: 21.7%;
  height: 70px;
  background: #eee;
  background-image: url("../images/chartarrow_grey.svg");
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 19px;
  
  font-size: 1.4rem;
  
  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
}
.form_chart li:first-child {
  background-image: none;
  padding-left: 0;
}
.form_chart li.active {
  color: #fff;
  background: #006;
  background-image: url("../images/chartarrow_grey.svg");
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 21px;

  margin-left: 0;
}
.form_chart li.active + li {
  background-image: url("../images/chartarrow_blue.svg");
  background-repeat: no-repeat;
  background-position: left center;
}

.form_chart li:first-child.active {
  background-image: none;
  padding-left: 0;
}
.form_chart span {
  text-indent: -1.4rem;
  margin-left: 1.4rem;
}


.lead {
  font-size: 1.6rem;
  text-align: center;
  margin: 60px 0;
}

.txt {
  font-size: 1.6rem;
  margin-bottom: 2em;
}

.form_box {
  margin-top: 30px;
  background: #F7F7F7;
  padding: 60px 0;
}

.error_box {
  padding: 20px;
  background: #e45454;
  border-radius: 5px;
  
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 20px;
  position: relative;
}

.header_error {
  margin-bottom: 30px;
}

.inner_box {
  margin: 0 200px;
}

.input_box .error_box {
  position: relative;
  z-index: 2;
}

.input_box .error_box::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: #e45454;
  transform: rotate(45deg);
  
  position: absolute;
  left: 30px;
  bottom: -10px;
}

.input_title {
  font-size: 1.8rem;
}

.must {
  display: inline-block;
  margin-left: 1em;
  
  padding: 2px 10px;
  background: #db0000;
  
  color: #fff;
  font-size: 1.4rem;
}
.optional {
  display: inline-block;
  margin-left: 1em;
  
  padding: 2px 10px;
  border: 1px solid #111;
  background: #fff;
  
  font-size: 1.4rem;
}

.attention {
  margin-top: 10px;
  display: inline-block;
  
  font-size: 1.6rem;
  color: #000066 !important;
  text-decoration: none;
}
.attention:hover {
  text-decoration: underline;
}

.input_box {
  margin-bottom: 40px;
}

/* inputs */
label {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 20px;
  
  cursor: pointer;
}
label small {
  font-size: 1.3rem;
}

input {
  width: 100%;
  font-size: 1.8rem;
  padding: 8px 12px;
  
  background: #F7F7F7;
  border: 1px solid #ccc;
  border-radius: 5px;
}
input.large_box {
  padding: 20px;
}
input.disabled_select {
  background: #f9f9f9 !important;
}
input.disabled_select::placeholder {
  color: #979797 !important;
}

input[type=radio], .radio_label {
  width: auto;
  display: inline-block !important;
}

input[type=file] {
  display: none;
}
 
label.input_file {
  display: inline-block;
  
  width: auto;
  padding: 10px 35px 11px 55px;
  border-radius: 5px;
  background: var(--maincolor);

  color: #fff;
  font-size: 1.6rem;
  
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}
label.input_file:hover {
  opacity: 0.7;
}
label.input_file::before {
  content: "";
  display: block;
  width: 14px;
  height: 2px;
  background: #fff;
  
  position: absolute;
  left: 30px;
  top: 22px;
}
label.input_file::after {
  content: "";
  display: block;
  width: 2px;
  height: 14px;
  background: #fff;
  
  position: absolute;
  left: 36px;
  top: 16px;
}

.input_filename {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  /* text-decoration: underline; 南雲削除 */
}
.input_filename a { /* 南雲追加 */
  color: var(--maincolor);
  text-decoration: underline; 
}
.input_filename a:hover {
  color: var(--yellowcolor);
}
.input_filename span { /* 南雲追加 */
  color: #383838;
}

.filenale {
  color: var(--maincolor);
}
.filenale a {
  text-decoration: none;
}
.filenale a:hover {
  color: var(--yellowcolor);
  text-decoration: underline;
}

.label_btn_wrap {
  margin-bottom: 0;
}

.label_btn_wrap .label_btn {
  display: inline-block;
  width: auto;
  padding: 10px 35px;
  border-radius: 5px;
  background: var(--maincolor);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}
.label_btn_wrap .label_btn:hover {
  opacity: 0.7;
}

textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.input_box input {
  background: #fff;
  margin-bottom: 5px;
}

.inner_box hr {
  margin-bottom: 40px;
}

.input_inline {
  display: inline-block;
  margin: 0 10px;
  
  width: 250px;
}

#auto-fill {
  padding: 10px 15px 9px;
  border-radius: 5px;
  width: 150px;
  color: #fff;
  background: var(--maincolor);
  border: none;
  
  cursor: pointer;
  
  transition: 0.3s;
}
#auto-fill:hover {
  opacity: 0.7;
}

.adress_zipcode {
  margin-bottom: 30px;
}

.radio_box {
  margin-top: 10px;
}
.radio_box input[type=radio], .radio_box label {
  width: auto;
  display: inline-block;
}
.radio_box label {
  font-size: 1.6rem;
  cursor: pointer;
  margin-right: 1em;
}
.radio_box input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 1em;
  height: 1em;
  border: 2px solid #666;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  margin-right: 0.2em;
  cursor: pointer;
  outline: none;
}
.radio_box input[type=radio]:checked::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  background-color: #000066;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.check_box {
  margin-top: 10px;
}
.check_box input[type=checkbox], .check_box label {
  display: inline-block;
  margin-right: 5px;
}
.check_box input[type=checkbox] {
  margin-top: -3px;
}

.check_box label {
  font-size: 1.6rem;
  cursor: pointer;
  margin-right: 1em;
}




.agreement_box {
  line-height: 1.8;
  border: solid 1px #006;
  padding: 50px;
  background: #fff;
  
  margin-bottom: 50px;
}
.agreement_box a {
  color: #FF0000;
  font-weight: bold;
  margin-bottom: 50px;
  text-decoration: underline;
}
.agreement_box a:hover {
  text-decoration: none;
}

.agreement_checkbox {
  text-align: center;
}

.agreement_checkbox label {
  text-align: left;
  margin-top: 20px;
}

.custom_checkbox_label {
  width: 100%;
  
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.checkbox_text {
  position: relative;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1.6;
}

.custom_checkbox {
  display: inline-block;
  
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  
  width: 26px;
  height: 26px;
  border: 1px solid #CDD6DD;
  border-radius: 4px;
  
  cursor: pointer;
  
  position: relative;
  background-color: #fff;
  vertical-align: middle;
  transition: border-color 0.2s, background-image 0.2s;
}
.custom_checkbox:checked {
  border-color: #000066;
  background-image: url(../images/icon_check.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
}



.submit_box {
  display: flex;
  justify-content: center;
}

.submit {
  width: 100%;
  max-width: 300px;
  text-align: center;
}
.submit_button {
  display: inline-block;
  color: #fff;
  font-size: 2.0rem;
  
  cursor: pointer;
  
  width: 100%;
  max-width: 300px;
  
  background-color: #000066;
  padding: 20px 0;
  border-radius: 5px;
  
  position: relative;
  transition: .3s;
}
.submit_button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #0000b1;
  width: 100%;
  height: 100%;
  
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.submit_button:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.submit_button span {
  position: relative;
}
input[type="submit"] {
  display: none;
}
a.submit_button:hover {
  color: #fff !important;
}


.btn_back {
  margin-right: auto;
}
.btn_back .submit_button {
  background: #ccc;
}
.btn_back .submit_button::before {
  background-color: #9c9c9c !important;
}


.btn_pickup {
  padding: 10px 30px;
  border-radius: 5px;
  width: 80px;
  color: #fff;
  background: var(--maincolor);
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}



/* マイページ */
.mypage_wrap {
  display: flex;
  justify-content: space-between;
  gap: 0 45px;
}

.mypage_box {
  width: 100%;
  border: 1px solid var(--maincolor);
}

.mypage_head {
  font-size: 24px;
  padding: 15px 30px;
  background: #EEEEEE;
}

.mypage_inner {
  padding: 20px 30px;
  font-size: 2.0rem;
}

.mypage_inner_ul > li {
  border-bottom: 1px solid #ccc;
}
.mypage_inner_ul > li:last-child {
  border-bottom: 0;
}

.mypage_inner_a {
  display: block;
  color: var(--maincolor) !important;
  font-size: 2.0rem;
  text-decoration: none;
  padding: 15px 0;
  
  position: relative;
}
.mypage_inner_a::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--maincolor);
  border-right: 2px solid var(--maincolor);
  transform: rotate(45deg);
  
  position: absolute;
  right: 15px;
  top: 26px;
  transition: 0.3s;
}

.mypage_inner_a:hover {
  text-decoration: underline;
}

.mypage_inner_a:hover::after {
  right: 6px;
}

.mypage_inner_parent {
  padding: 15px 0;
  border-bottom: 1px solid #ccc;
}

.mypage_inner_child {
  padding: 0 80px 0 25px;
}

.mypage_inner_child_head {
  display: block;
  color: var(--maincolor) !important;
  font-size: 2.0rem;
  text-decoration: none;
  padding: 15px 0;
  
}
.mypage_inner_child_head span {
  padding-right: 15px;
  position: relative;
}

.mypage_inner_child_head span::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--maincolor);
  border-right: 2px solid var(--maincolor);
  transform: rotate(45deg);
  
  position: absolute;
  right: 0px;
  top: 12px;
  transition: 0.3s;
}

.mypage_inner_child_head:hover {
  text-decoration: underline;
}

.mypage_inner_child_head:hover span::after {
  right: -9px;
}

.mypage_inner_child ul {
  margin: 10px 0 10px 45px;
}

.mypage_inner_child ul li a {
  display: block;
  padding: 10px 20px;
  border-radius: 5px;
  background: var(--lightcolor);
  
  color: var(--maincolor) !important;
  font-size: 1.6rem;
  text-decoration: none;
  
  margin-bottom: 10px;
  
  position: relative;
}
.mypage_inner_child ul li a::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--maincolor);
  border-right: 2px solid var(--maincolor);
  transform: rotate(45deg);
  
  position: absolute;
  right: 20px;
  top: 18px;
  transition: 0.3s;
}
.mypage_inner_child ul li a:hover {
  text-decoration: underline;
}
.mypage_inner_child ul li a:hover::after {
  right: 11px;
}

.mypage_inner_att {
  font-size: 1.4rem;
  padding-bottom: 8px;
  border-bottom: 1px solid #ccc;
}

.mypage_inner .indent {
  font-size: 1.4rem;
}

.mypage_inner_ul_att {
  font-size: 1.4rem;
  padding-bottom: 8px;
  
  text-indent: -1em;
  padding-left: 1em;
}

/* 汎用パーツ */
.main_title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 20px;
  
  border-left: 8px solid #006;
  padding: 5px 10px 8px 15px;
}

.btn_set {
  position: relative;
}
.btn_set a {
  display: inline-block;
  padding: 8px 25px 10px;
  border-radius: 5px;
  background: #376ba1;
  
  cursor: pointer;
  outline: none;
  border: 0;
  
  color: #fff;
  font-size: 1.6rem;
  font-weight: normal;
  
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  
  transition: 0.3s;
}
.btn_set a:hover {
  opacity: 0.7;
}

.sub_title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  
  border-left: 8px solid #111;
  padding: 8px 10px 8px 15px;
  background: #f1f1f1;
}







footer {
  margin-top: 50px;
  
  background-color: var(--maincolor);
  padding: 60px 0;
}
footer.contact_on {
  margin-top: 0;
  background-color: transparent;
  background-image: linear-gradient(180deg, #fff 0%, #fff 300px, #000066 300px, #000066 100%);
  padding: 150px 0 60px;
}

.footer_lnfomation {
  display: flex;
  justify-content: space-between;
  
  font-size: 1.4rem;
  color: #fff;
}
footer.contact_on .footer_lnfomation {
  padding-top: 45px;
}

.footer_return a {
  color: #fff !important;
  text-decoration: underline;
}

.footer_return a:hover {
  text-decoration: none;
}


/* フッターお問い合わせ */
.footer_cv {
  background-color: #fff;
  padding: 47px 0;
  box-shadow: 0px 10px 50px 0px rgba(0,0,0,0.16);
}
  .footer_cv__txt {
    font-size: 2.0rem;
    font-weight: bold;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
  }
  .footer_cv__list {
    display: flex;
  }
    .footer_cv__list li {
      width: 50%;
      padding: 10px 20px;
      border-right: solid 1px #ccc;
    }
    .footer_cv__list li:last-child {
      border-right: 0;
    }
      .footer_cv__tit {
        font-size: 1.8rem;
        font-weight: bold;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 15px;
      }
      .footer_cv__tel {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: fit-content;
        gap: 0 1em;
        margin: 0 auto;
      }
        .footer_cv__tel svg {
          flex-shrink: 0;
        }
        .footer_cv__tel a {
          color: #000066;
          font-size:min(4vw,5.0rem);
          font-weight: bold;
          text-decoration: none;
          white-space:nowrap;
        }
      .footer_cv__bh {
        font-size: 1.4rem;
        text-align: center;
        line-height: 1.6;
        margin-top: 15px;
      }
      .footer_cv__mail {
        width: 100%;
        max-width: 290px;
        height: 60px;
        background-color: #FFCC00;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        transition: .3s;
        position: relative;
      }
      .footer_cv__mail::before {
        content: '';
        position: absolute;
         top: 0;
         left: 0;
        background-color: #feda4c;
        width: 100%;
        height: 100%;
        transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
        transform: scale(0, 1);
        transform-origin: right top;
      }
      .footer_cv__mail:hover::before {
        transform-origin: left top;
        transform: scale(1, 1);
      }
        .footer_cv__mail svg {
          position: relative;
        }
        .footer_cv__mail span {
          color: #000066;
          font-size: 2.4rem;
          margin-left: 0.5em;
          position: relative;
        }

/*
@media only screen and (max-width: 767px) { 
  .footer_cv {
    padding: 50px 20px;
}
    .footer_cv__list {
      flex-wrap: wrap;
    }
      .footer_cv__list li {
        width: 100%;
        padding: 0;
        border-right: 0;
        padding-bottom: 30px;
        border-bottom: solid 1px #ccc;
        margin-bottom: 30px;
      }
      .footer_cv__list li:last-child {
        padding-bottom: 0;
        border-bottom: 0;
        margin-bottom: 0;
      }
          .footer_cv__tel svg {
            height: 10vw;
            max-height: 40px;
            width: auto;
          }
          .footer_cv__tel a {
            font-size: min(9vw,3.0rem);
          }
        .footer_cv__mail {
          height: 60px;
        }
        .footer_cv__mail::before {
          background-color: #FFCC00;
        }
          .footer_cv__mail span {
            font-size: 2.0rem;
          }
}
*/



/* ページトップ */
#pagetop {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    background: rgba(0,0,0,0.7);
    
    position: fixed;
    right: 10px;
    bottom: 10px;
    
    cursor: pointer;
    transition: 0.3s;
}
#pagetop svg {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    transform: translateY(-50%) rotate(-90deg);
}
#pagetop:hover {
    opacity: 0.7;
}



/* slide */
.slide_wrap {
  display: flex;
  justify-content: space-between
}

.slide_wrap_info {
  width: calc(100% - 630px);  
}

.slide_wrap_info_headbtn {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.slide_wrap_info_headbtn li {
  text-align: center;
}
.slide_wrap_info_headbtn_att {
  margin: 0 10px 0 auto;
}
.slide_wrap_info_headbtn li button, .slide_wrap_info_headbtn li input[type="reset"], .slide_wrap_info_headbtn li input[type="submit"] {
  display: block;
  padding: 8px 15px;
  border-radius: 5px;
  border: 0;
  
  font-size: 1.4rem;
  
  cursor: pointer;
  transition: 0.3s;
}
.slide_wrap_info_headbtn li button:hover, .slide_wrap_info_headbtn li input[type="reset"]:hover, .slide_wrap_info_headbtn li input[type="submit"]:hover {
  opacity: 0.7;
}
.requirements_btn_save {
  color: #fff !important;
  background: var(--maincolor);
}
.requirements_btn_reset {
  background: #ccc;
}
.requirements_btn_pickup {
  font-size: 1.6rem;
  font-weight: bold ;
  background: var(--yellowcolor);
  padding: 12px 45px!important;
}


.table_wrap {
  border: 1px solid var(--maincolor);
  max-height: 500px;
  overflow-y: scroll;
}

.slide_wrap_info_table {
  width: 100%;
  
  border-collapse: collapse;
}

.slide_wrap_info_table th, .slide_wrap_info_table td {
  padding: 10px;
  text-align: left;
  border: 5px solid #fff;
}

.slide_wrap_info_table tr:nth-child(odd) {
  background: #f1f1f1;
}

.td_head {
  font-weight: bold;
}
.td_btn_list {
  margin-top: 15px;
  
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.checkbox_label {
  margin-bottom: 0;
}

.checkbox_label input[type=checkbox] {
  display: none;
}
.checkbox_label span {
  display: inline-block;
  padding: 6px 20px;
  background: #fff;
  border: 3px solid var(--lightcolor);
  border-radius: 20px;
  
  font-size: 1.4rem;
  text-align: center;
  
  cursor: pointer;
  transition: 0.3s;
}
.checkbox_label span:hover {
  background: var(--maincolor);
  border: 3px solid var(--maincolor);
  color: #fff;
}
.checkbox_label input[type=checkbox]:checked + span {
  background: var(--maincolor);
  border: 3px solid var(--maincolor);
  color: #fff;
}

/* 見積もり検討中に追加 */
.product_btnset {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  
  margin: 25px 0 10px;
}
.checkbox_detail span {
  display: inline-block;
  width: 190px;
  
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  
  padding: 12px 15px;
  background: var(--maincolor);
  border: 0;
  border-radius: 5px;
  transition: 0.3s;
}
.checkbox_detail span:hover {
  padding: 12px 15px;
  background: var(--maincolor);
  border: 0;
  opacity: 0.7;
}
.checkbox_detail.add_list_tbc span::before {
  content: "検討中リストに保存";
}
.checkbox_label.add_list_tbc input[type=checkbox]:checked + span::before {
  content: "検討中リストから削除";
}
.checkbox_label.add_list_tbc input:checked + span {
  background: #4e4e4e !important;
  border: 0 !important;
}

.submit_mitsumori_plus {
  display: inline-block;
  width: 190px;
  
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  
  padding: 12px 15px;
  background: #e39f0c;
  border: 0;
  border-radius: 5px;
  
  margin-bottom: 0;
  
  transition: 0.3s;
}
.submit_mitsumori_plus:hover {
  opacity: 0.7;
}

.btn_mitsumori {
    display: inline-block;
    width: auto;
    padding: 10px 35px;
    border-radius: 5px;
    background: var(--maincolor);
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    position: relative;
    transition: 0.3s;  
}
.btn_mitsumori:hover {
  opacity: 0.7;
  color: #fff !important;
}

.btn_addmitsumori {
    display: inline-block;
    width: auto;
    padding: 10px 35px;
    border-radius: 5px;
    background: #e39f0c;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    position: relative;
    transition: 0.3s;  
}
.btn_addmitsumori:hover {
  opacity: 0.7;
  color: #fff !important;
}

.slide_wide {
  position: relative;
  width: 600px; /* 任意の幅 */
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 450px;
}

.slide {
  flex: 0 0 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: contain;
  font-size: 1.2rem;
  text-align: center;
  background: #f5f5f5;
}

.slide img, .slide iframe {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.slide iframe {
  width: 100%;
  height: 450px;
}

.nav-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  
  position: absolute;
  top: 213px;
  
  width: 46px;
  height: 46px;  
  
  background: rgba(255,255,255,0.8);
  border: none;
  cursor: pointer;
  z-index: 2;
}

.nav-left {
  left: 0px;
}

.nav-right {
  right: 0px;
}

.slider_btn {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-top: 10px;
}

.slider_btn > div {
  padding: 5px 0px;
}

.slider_btn a {
  cursor: pointer;
  
  font-size: 1.4rem;
  text-decoration: none;
  padding: 5px 10px;
  background: #E0F4FF;
  
  transition: 0.3s;
}

.slider_btn a.active {
  background: #006;
  color: #fff;
}
.slider_btn a:hover {
  background: #006;
  color: #fff;
}

.slide_btm_link {
  margin-top: 30px;
  border-top: 1px dotted var(--maincolor);
  padding-top: 10px;
}

.slide_btm_link ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0 30px;
}

.slide_btm_link a {
  display: inline-block;
  
  font-size: 1.4rem;
  color: var(--maincolor);
  text-decoration: none;
  
  transition: 0.3s;
}
.slide_btm_link a span {
  display: inline-block;
  padding-right: 12px;
  position: relative;
}
.slide_btm_link a:hover span {
  text-decoration: underline !important;
}
.slide_btm_link a span::after {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  
  border-top: 1px solid var(--maincolor);
  border-right: 1px solid var(--maincolor);
  transform: rotate(45deg);
  
  position: absolute;
  right: 0;
  top: 7px;
}


.dl_box_wrap {
  display: block;
  transition: 0.3s;
}
.dl_box_wrap:hover {
  background: var(--lightcolor);
}

.dl_box {
  padding: 15px;
  border: 1px solid var(--maincolor);
  margin-bottom: 15px;
}
.dl_box dt {
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 1px dotted #ccc;
  margin-bottom: 10px;
}

.dl_box dd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 10px;
}
.dl_box dd ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 5px 2em;
}

.dl_box dd div {

}

.dl_box_detailbtn {
  width: 150px;
}

.dl_box_item_info {
  width: 70%;
  margin-right: auto;
}

.dl_box_item_title {
  display: inline-block;
  color: var(--maincolor) !important;
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 10px;
  
  border-left: 5px solid var(--maincolor);
  padding: 0 0 0 10px;
}
div.dl_box_item_title {
  color: gray !important;
}
a.dl_box_item_title:hover {
  text-decoration: underline;
}

.product_cart_check_number {
  width: 80px;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #f1f1f1;
  text-align: right;
}

.dl_box dd div span {
  display: inline-block;
  width: 130px;
  padding: 8px 45px;
  background: var(--yellowcolor);
  border-radius: 5px;
  
  font-weight: bold;
}

/* 数字 */
.dl_box input[type="number"] {
  padding: 10px 15px;
  width: 80px;
  border: 1px solid #ccc;
}

/* 削除 */
.btn_delete {
  padding: 11px 15px 11px 30px;
  border-radius: 5px;
  width: 80px;
  color: #fff;
  background: #444444;
  border: 1px solid #444444;
  
  cursor: pointer;
  
  position: relative;
  transition: 0.3s;
}
.btn_delete::before {
  content: "";
  display: block;
  width: 13px;
  height: 2px;
  background: #fff;
  transform: rotate(45deg);
  
  position: absolute;
  left: 12px;
  top: 50%;
}
.btn_delete::after {
  content: "";
  display: block;
  width: 13px;
  height: 2px;
  background: #fff;
  transform: rotate(-45deg);
  
  position: absolute;
  left: 12px;
  top: 50%;
}
.btn_delete:hover {
  opacity: 0.7;
}

.dl_box_estimate {
  
}
.dl_box_add {
  background: var(--maincolor);
  padding: 7px 10px 12px;
  margin-top: -15px;
  margin-bottom: 20px;
  
  color: #fff;
  
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0 30px;
}
.dl_box_add a {
  color: #fff;
}
.dl_box_add a:hover {
  text-decoration: underline;
}


/* lightbox */
.lightbox_link {
  height: 100%;
  width: 100%;
  
  position: relative;
  
  display: flex;
  justify-content: center;
  align-items: center;
}
.lightbox_link img {
  transition: 0.3s;
}
.lightbox_link:hover img {
  opacity: 0.6;
}
.lightbox_link:hover::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background: url("../images/icon_zoom.svg");
  background-repeat: no-repeat;
  background-size: 50px;
  
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

/* モーダルウインドウ */

/* モーダルを開くボタン */


/* モーダルと背景の指定 */
.modal{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0,0,0,0.5);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
  
  z-index: 3;
}

/* モーダルの擬似要素の指定 */
.modal:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-left: -0.2em;
}

/* クラスが追加された時の指定 */
.modal.is-active{
  opacity: 1;
  visibility: visible;
}

/* モーダル内側の指定 */
.modal-container{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 600px;
  width: 90%;
}

/* モーダルを閉じるボタンの指定 */
.modal-close{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #000;
  border-radius: 50%;
  cursor: pointer;
  
  transition: 0.3s;
}
.modal-close:hover {
  background: #666;
}

/* モーダルのコンテンツ部分の指定 */
.modal-content{
  background: #fff;
  text-align: left;
  line-height: 1.8;
  padding: 20px;
}

/* モーダルのコンテンツ部分のテキストの指定 */
.modal-content p{
  margin: 1em 0;
}


/* モーダル */
.modal_title {
  font-size: 1.6rem;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 1px solid #111;
  margin-bottom: 10px;
}

.modal_text {
  text-align: center;
  line-height: 2.5em;
}

.modal_btn {
  display: flex;
  justify-content: center;
  gap: 0 30px;
  
  font-size: 1.6rem;
}

.modal_btn .modal-close {
  position: static;
  display: block;
  
  width: 150px;
  background: #666;
  padding: 5px 15px;
  border-radius: 5px;
  text-align: center;
  
  cursor: pointer;
  transition: 0.3s;
}
.modal_btn .modal_copy {
  position: static;
  display: block;
  
  width: 150px;
  background: var(--yellowcolor);
  padding: 5px 15px;
  border-radius: 5px;
  text-align: center;
  
  cursor: pointer;
  transition: 0.3s;
}
.modal_btn div:hover {
  opacity: 0.7;
}

.btn_modal_mypage {
  position: static;
  display: block;
  
  width: 190px;
  background: var(--yellowcolor);
  padding: 5px 15px;
  border-radius: 5px;
  text-align: center;
  
  cursor: pointer;
  transition: 0.3s;
}
.btn_modal_mypage:hover {
  opacity: 0.7;
}


/* history */
.history_head {
  margin-top: 50px;
  
  display: flex;
}
.history_head_title {
  width: 200px;
  padding: 30px 0;
  background: var(--maincolor);
  
  color: #fff;
  
  display: flex;
  justify-content: center;
  align-items: center;
}
.history_head_checklist {
  width: 85%;
  padding: 15px;
  background: #fff;
  border: 1px solid var(--maincolor);
}
.flex_states {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.flex_states > div {
  width: 30%;
}

.history_figure {
  width: 100%;
  margin-top: 50px;
}

.history_figure, .history_figure th, .history_figure td {
  border-collapse: collapse;
  border: 1px solid #111;
}
.history_figure th, .history_figure td {
  padding: 8px;
}
.history_figure th {
  background: var(--maincolor);
  color: #fff;
  border-right: 1px solid #fff;
}
.history_figure th:last-child {
  border-right: 1px solid #111;
}
.history_figure td {
  text-align: center;
}
.th_10per {
  width: 10%;
}
.th_11per {
  width: 11%;
}
.th_13per {
  width: 13%;
}
.th_15per {
  width: 15%;
}
.th_18per {
  width: 18%;
}
.th_23per {
  width: 23%;
}
.th_25per {
  width: 25%;
}

.quote td:nth-child(2), .quote td:nth-child(7) {
    color: #e10808;
}

.list_figure_detail {
  text-align: left !important;
}
.list_figure_detail a {
  display: block;
  color: var(--maincolor);
  text-decoration: none;
}
.list_figure_detail a:hover {
  text-decoration: underline;
}

.list_figure_history a {
  display: block;
  color: var(--maincolor);
  text-decoration: none;
}
.list_figure_history a:hover {
  text-decoration: underline;
}


.history_head_submit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  
  margin-top: 20px;
  
  padding: 30px 0 20px;
  background: #f1f1f1;
}

.history_statesbox {
  background: #f1f1f1;
  padding: 25px;
  
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 0;
  
  font-size: 1.6rem;
}
.history_statesbox dl {
  width: 49%;
  
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.history_statesbox dl dt {
  width: 140px;
  flex-shrink: 0;
  
  font-weight: bold;
  background: var(--maincolor);
  padding: 12px 0px;
  
  color: #fff;
  text-align: center;
  
  display: flex;
  align-items: center;
  justify-content: center;
}
.history_statesbox dl dd {
  padding: 12px 15px;
  flex: 1;
  word-break: break-word;
  
  display: flex;
  align-items: center;
}

.history_statesbox_detail dl dt {
  width: 200px;
}


.btn_detail {
  display: inline-block;
  padding: 6px 30px;
  border-radius: 5px;
  background: var(--yellowcolor);
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}
.btn_small {
  padding: 6px 20px !important;
}
.btn_detail:hover {
  opacity: 0.7;
}

.btn_detail.preview {
  color: #fff;
  background: var(--maincolor);
}


/* 製品選択 */
.products-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.products-list li {
  width: 31%;
  margin-bottom: 40px;
}

.products-list li a {
  display: block;
  background-color: #fff;
  text-decoration: none;
  position: relative;
  transition: .3s;
  height: 100%;
}
.products-list__tag {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  
  padding: 30px;
}
.products-list__tag span {
  display: block;
  font-size: 1.4rem;
  padding: 2px 15px;
  
  border: 1px solid var(--maincolor);
  border-radius: 100px;
}
.products-list__img {
  width: 100%;
  height: 270px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}
.products-list li a img {
  object-fit: contain ;
  transition-duration: 0.3s;
  transform-origin: center center;
  transition: .3s;
  max-height: 100%;
}
.products-list li a:hover img {
  transform: scale(1.05);
  opacity: 1;
}
.products-list__in {
  padding: 0 30px 30px;
}
.products-list li a .products-list__tit {
  color: #000066;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 20px;
}
.products-list li a .products-list__txt {
  color: #333;
  font-size: 1.6rem;
  line-height: 1.8;
}
.products-list li a .products-list__arrow {
  width: fit-content;
  margin-top: 25px;
  margin-left: auto;
  margin-right: 0;
  transition: 0.3s;
}
.products-list li a:hover .products-list__arrow {
  transform: translateX(5px);
}

/* 線(ボーダー)のスタイル 共通 */
.border-box a {
  overflow: hidden;
}

.products-list .border-box__in {
    border: solid 1px #ccc;
    height: calc(100% - 2px);
}

.border-box a:before,
.border-box a:after,
.border-box__in:before,
.border-box__in:after {
    content: '';
    position: absolute;
    background: #006; /*線の色*/
    transition: 1.0s;
    transition-duration: .4s;
}
/* 下のボーダー */
.border-box__in:before {
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 1px;
}
/* 右のボーダー */
.border-box__in:after {
    bottom: -100%;
    right: 0;
    width: 1px;
    height: 100%;
}
/* 上のボーダー */
.border-box a:before {
    top: 0;
    right: -100%;
    width: 100%;
    height: 1px;
}
/* 左のボーダー */
.border-box a:after {
    top: -100%;
    left: 0;
    width: 1px;
    height: 100%;
}

/* ホバー時のアニメーション指定 */
.border-box__in:hover:before {
  left:0;
}
.border-box__in:hover:after {
  bottom:0;
}
.border-box a:hover:before {
  right:0;
}
.border-box a:hover:after {
  top:0;
}



/* 会員登録 */
.send {
  margin-top: 50px;
}
.send p {
  margin-top: 10px;
  background: #fff;
  padding: 25px;
  font-size: 2rem;
}

.terms_box {
  height: 300px;
  padding: 25px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin: 20px 0;
  overflow-y: scroll;
}

.terms_section {
  margin-bottom: 40px;
}
.terms_box .terms_section:last-child {
  margin-bottom: 0;
}

.terms_box_ttl {
  font-size: 110%;
  font-weight: bold;
  margin-bottom: 10px;
}

.clause {
  text-indent: -0.9em;
  padding-left: 0.9em;
  margin-bottom: 8px;
}
.clause_indent {
  margin-left: 0.9em;
  text-indent: -1em;
  padding-left: 1em;
}


/* 製品規格 */
.product_detail_id {
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  
  background: var(--maincolor);
  padding: 20px 30px;
  
  margin-bottom: 50px;
}
.product_detail_introduce p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 0em;
}
.product_detail_introduce p:last-child {
  margin-bottom: 2em;
}
.product_detail_introduce p + h3,.product_detail_introduce p + h4,.product_detail_introduce p + h5 {
  margin-top: 2em;
}
.product_detail_introduce h3 {
  color: #fff;
  font-size: 1.8em;
  font-weight: bold;
  
  background: #111;
  padding: 9px 15px 13px;
  
  margin-bottom: 15px;
}

.product_detail_introduce h4 {
  font-size: 1.6em;
  font-weight: bold;
  
  padding-bottom: 7px;
  border-bottom: 2px solid #111;
  margin-bottom: 15px;
}

.product_detail_introduce h5 {
  font-size: 1.4em;
  font-weight: bold;
  padding-left: 26px;
  margin-bottom: 15px;
  
  position: relative;
}
.product_detail_introduce h5::after {
  content: "";
  display: block;
  width: 18px;
  height: 4px;
  background: var(--maincolor);
  
  position: absolute;
  left: 0;
  top: calc(50% - 2px);
  
}

.product_detail_list_title {
  background: #111;
  padding: 8px 15px 12px;
  
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
}

.product_detail_list_table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
}

.product_detail_list_table th, .product_detail_list_table td {
  padding: 10px;
  border: 1px solid #8e8e8e;
}

.product_detail_list_table th {
  width: 170px;
  background: #f1f1f1;
}

.download_box {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 30px 2.5%;
}

.download_box > div {
  width: auto;
  min-width: 18%;
}

.download_box .btn_detail {
  display: block;
  padding: 15px 30px;
  
  font-size: 1.8rem;
  text-align: center;
  
  margin-bottom: 10px;
}

.download_att {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 0 4%;
  flex-direction: row-reverse;
}

.download_att > div {
  flex-basis:48%;
  flex-grow: 1;
}

.download_att_title {
  background: #111;
  padding: 10px;
  
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  
  margin-bottom: 10px;
}

.download_att_title + .download_inner_ttl {
  margin-top: 20px;
}

.download_inner_ttl {
  background: #f1f1f1;
  padding: 4px 10px;

  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 15px;
}

.download_att .indent {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 1em;
}

.ul_dot {
  border-top: 1px dashed #ccc;
}
.ul_dot li {
  padding: 8px 0;
  border-bottom: 1px dashed #ccc;

  display: flex;
  justify-content: flex-start;
  gap: 8px;
}
.ul_dot li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #111;
  border-radius: 10px;
  margin-top: 10px;
  flex-shrink: 0;
}











/* 御見積書 */
.estimate {
  font-size: 1.6rem;
  padding: 20px 0;
}

@media print {
  .estimate {
    font-size: 1.5rem;
    padding: 13px 0 0;
  }
}

.estimate .inner {
  padding-bottom: 40px;
  border-bottom: 2px dashed #111;
  
  position: relative;
}

@media print {
  .estimate {
    font-size: 1.5rem;
    padding: 20px 0;
  }
  .estimate .inner {
    font-family: 'Noto Sans JP','メイリオ',Meiryo,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro',Arial,Verdana,sans-serif;

    page-break-before: always;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    
    padding-bottom: 0px;
    border-bottom: 0;
    
  }

  .estimate .inner:first-child {
    page-break-before: auto !important;
    /* 1つ目は改ページしない */
  }
}

.estimate h1 {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  
  margin-bottom: 10px;
  
  position: relative;
}

.print_num {
  position: absolute;
  right: 0;
  
  font-size: 1.6rem;
  font-weight: normal;
  
  display: none;
}
@media print {
  .print_num {
    display: inline;
  }
}

.estimate_no {
  overflow: hidden;
}

.estimate_no > div {
  float: right;
}
.estimate_no dl {
  display: flex;
  justify-content: flex-end;
}

.estimate_date {
  text-align: right;
}

.cliant {
  display: inline-block;
  margin: 10px 0;
  
  font-size: 2.0rem;
  
  padding-bottom: 5px;
  border-bottom: 2px solid #111;
}
.cliant span {
  margin-right: 5px;

  font-size: 2.2rem;
}

.estimate_flex_row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.estimate_flex_row > div {
  width: 43%;
}

.estimate_lead {
  padding: 30px 0;
}

.estimate_price {
  margin-top: 30px;
}

.estimate_price span {
  display: block;
  
  background: #111;
  padding: 5px 15px;
  
  color: #fff;
}

.estimate_price div {
  border: 2px solid #111;
  padding: 10px;
  
  font-size: 2.0rem;
  font-weight: bold;
  text-align: center;
}

.estimate_orders_from {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}


.stamps {
  width: 100%;
  margin-top: 20px;
}

.stamps, .stamps td {
  border-collapse: collapse;
  border: 2px solid #111;
}

.stamps td {
  width: 33%;
  text-align: center;

}
.stamps_box {
  display: flex;
  justify-content: center;
  align-items: center;
  
  aspect-ratio: 1 / 1;
}

.estimate_option {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 3px;

  width: 100%;
}

.estimate_option dt {
  width: 200px;
  text-align: center;
  background: #f1f1f1;
  padding: 2px 7px 8px;
  
  display: flex;
  justify-content: center;
  align-items: center;
}
.estimate_option dt span {
  font-weight: bold;
}

.estimate_option dd {
  width: calc(100% - 200px);
  padding: 2px 20px 8px;
  border-bottom: 1px solid #ccc;
}

.estimate_list {
  margin-top: 20px;
}

.estimate_list table, .estimate_list table th, .estimate_list table td {
  border-collapse: collapse;
  border: 1px solid #111;
}

.estimate_list table {
  width: 100%;
  border: 3px solid #111;
}

.estimate_list table th, .estimate_list table td {
  padding: 2px 7px;
}

.estimate_list table th {
  background: #f1f1f1;
  font-weight: bold;
  text-align: center;
}

.estimate_list table td:nth-child(3) {
  text-align: right;
  border-right: 0;
  padding-right: 3px;
  
  padding-left: 20px;
}
.estimate_list table td:nth-child(4) {
  text-align: left;
  border-left: 0;
  padding-left: 0;
}

.estimate_list table td:nth-child(5), .estimate_list table td:nth-child(6) {
  text-align: right;
}

@media print {
  .estimate_list table, .estimate_list table th, .estimate_list table td {
    border-collapse: collapse;
    border: 1px solid #111;
  }
}

.estimate_list_result {
  border: 3px solid #111;
}

.estimate_list_result td:last-child {
  text-align: right;
}

.estimate_list_option {
  margin-top: 20px;
}

.estimate_list_option th, .estimate_list_option td {
  text-align: left !important;
}

.call {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
.call div {
  width: 100%;
  text-align: center;
}

.estimate_product_id {
  margin: 40px 0 20px;
  
  width: 100%;
  display: flex;
  justify-content: flex-start;
  
  font-size: 1.6rem;
  font-weight: bold;
}

.estimate_product_id dt {
  background: #f1f1f1;
  padding: 8px 15px;
}

.estimate_product_id dd {
  padding: 8px 15px;
}

.estimate_list_detail {
  margin-top: 10px;
  font-size: 1.4rem;
}

.estimate_list_detail table th {
  text-align: left;
  width: 30%;
}

@media print {
  .estimate_list_detail {
    font-size: 1.1rem !important;
  }  
}

.thanks {
  text-align: center;
}

.thanks div {
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 30px 0;
}

.thanks a {
  margin-top: 50px;
  display: inline-block;
  width: auto;
  padding: 10px 35px;
  border-radius: 5px;
  background: var(--maincolor);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  position: relative;
  transition: 0.3s;  
}
.thanks a:hover {
  opacity: 0.7;
  color: #fff !important;
}

/* 20250609 add */
.slide {
  position: relative;
}
#gltf-viewer {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#gltf-viewer canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.viewer-controls {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.viewer-controls button {
  padding: 6px 10px;
  font-size: 16px;
  border: none;
  background: #fff;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}