@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
/*
$serif: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
$sansSerif: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
$sansSerifBold: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
$msSerif: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
$msSansSerif: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
*/
* {
  box-sizing: border-box;
}

:root,
html {
  font-size: 100px;
}
@media screen and (max-width: 1080px) and (min-width: 769px) {
  :root,
html {
    font-size: 9.2592592593vw;
  }
}
@media screen and (max-width: 768px) {
  :root,
html {
    font-size: 26.6204427083vw;
  }
}

body {
  color: #2a2b2b;
  font-weight: 500;
  line-height: 1.5;
  font-feature-settings: "palt";
  position: relative;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.14rem;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.login-page {
  background-image: url("../images/background.jpg");
}

.wrap {
  max-width: 97.5rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .wrap {
    padding-right: 0.18rem;
    padding-left: 0.18rem;
  }
}

img,
video {
  max-width: 100%;
}

img[src$="_sp.jpg"], img[src$="_sp.png"], img[src$="_sp.svg"] {
  display: none;
}
@media screen and (max-width: 768px) {
  img[src$="_sp.jpg"], img[src$="_sp.png"], img[src$="_sp.svg"] {
    display: inline-block;
  }
  img[src$="_sp.jpg"] + img, img[src$="_sp.png"] + img, img[src$="_sp.svg"] + img {
    display: none;
  }
}

html:not(.mobile) a[href^="tel:"] {
  pointer-events: none;
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pr {
  position: relative;
}

.pa {
  position: absolute;
}

em {
  font-style: normal;
}

.dNone {
  display: none !important;
}

.inner {
  max-width: 10.8rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  .inner {
    padding: 0 0.25rem;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 0.1rem;
  }
}

.picture {
  display: block;
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.mincho {
  font-family: "Noto Serif JP", serif;
}

.pr {
  position: relative;
}

.pa {
  position: absolute;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  br.sp {
    display: inline;
  }
}
.btn {
  border-radius: 0.025rem;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  padding: 0 0.1rem;
  height: 0.38rem;
  color: #fff;
  border: none;
}
@media screen and (max-width: 768px) {
  .btn {
    border-radius: 0.025rem;
  }
}
.btn.btn-blue {
  background: #2f80b3;
}
.btn.btn-red1 {
  background: #c84444;
}
.btn.btn-red2 {
  background: #e72219;
}
.btn.btn-ylw {
  background: #fa8900;
}
.btn span {
  font-size: 0.12rem;
}
.btn.cart:before {
  content: "";
  display: inline-block;
  width: 0.18rem;
  height: 0.16rem;
  margin-right: 0.02rem;
  background-image: url("../images/icon-cart.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .btn.cart:before {
    width: 0.26rem;
    height: 0.24rem;
  }
}

button {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

#main-header {
  background: #323333;
  width: 100%;
  position: fixed;
  z-index: 999999;
}
#main-header .h-inner {
  align-items: center;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
}
@media screen and (max-width: 768px) {
  #main-header .h-inner {
    padding: 0;
  }
}
#main-header .logo {
  max-width: 1.81rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #main-header .logo {
    max-width: 1.435rem;
    margin: 0.2rem 0 0.2rem 0.1rem;
    order: 1;
  }
}
#main-header .search {
  position: relative;
  display: flex;
  max-width: 4.17rem;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  #main-header .search {
    max-width: 3.5rem;
  }
}
@media screen and (max-width: 768px) {
  #main-header .search {
    background: #1e5082;
    max-width: initial;
    padding: 0.1rem;
    order: 3;
  }
}
#main-header .search input[type=text] {
  flex-grow: 1;
  padding: 0.007rem 0 0.007rem 0.1rem;
  border: 1px solid #ccc;
  border-radius: 0.05rem;
  height: 0.38rem;
  font-size: 0.13rem;
}
#main-header .search input[type=text]::-moz-placeholder {
  color: #939090;
}
#main-header .search input[type=text]:-ms-input-placeholder {
  color: #939090;
}
#main-header .search input[type=text]::placeholder {
  color: #939090;
}
#main-header .search button {
  position: absolute;
  right: 0;
  cursor: pointer;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 0 0.05rem 0.05rem 0;
  border: none;
  background: none;
  color: #333;
  transition: 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #main-header .search button {
    right: 0.08rem;
  }
}
#main-header .search button img {
  width: 0.17rem;
}
#main-header .search input:focus {
  outline: 0;
  box-shadow: 0 0 0.05rem #e1e1e1;
}
#main-header .search button:hover {
  color: #4eadb8;
  transform: scale(1.2);
}
#main-header .link {
  display: flex;
  color: #fff;
  gap: 0.08rem;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #main-header .link {
    order: 2;
  }
}
#main-header .link li:nth-of-type(2) {
  margin-right: 0.1rem;
}
#main-header .link li.txt {
  line-height: 1;
  padding: 0 0.05rem;
  font-size: 0.11rem;
}
#main-header .link li.txt a {
  text-decoration: underline;
}
#main-header .link li.btn-li {
  font-size: 0.14rem;
  width: 0.8rem;
}
@media screen and (max-width: 768px) {
  #main-header .link li.btn-li .btn {
    width: initial;
    height: initial;
    background: initial;
    padding: 0;
    margin-right: 0.475rem;
  }
  #main-header .link li.btn-li .btn span {
    display: none;
  }
}

main {
  min-height: 100vh;
  padding-top: 0.59rem;
}
@media screen and (max-width: 768px) {
  main {
    padding-top: 1.19rem;
    min-height: initial;
  }
}

#welcome {
  background: #f3f3f3;
  padding: 0.1rem;
  border-bottom: 1px solid #cccccc;
  font-size: 0.13rem;
}
@media screen and (max-width: 768px) {
  #welcome {
    text-align: center;
    font-size: 0.12rem;
  }
}
#welcome p {
  line-height: 1;
}

#item-list > li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.2rem 0;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  #item-list > li {
    display: grid;
    grid-template-columns: 0.5fr 1.5fr;
    grid-template-rows: auto auto auto;
    gap: 0px 0px;
    grid-template-areas: "item-img item-title" "item-img item-price" "item-action item-action";
  }
}
#item-list > li .item-img {
  max-width: 0.7rem;
  grid-area: item-img;
}
@media screen and (max-width: 768px) {
  #item-list > li .item-img {
    align-self: start;
    padding-top: 0.3rem;
  }
  #item-list > li .item-img img {
    width: 100%;
  }
}
#item-list > li .item-price {
  grid-area: item-price;
  max-width: 1.08rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #item-list > li .item-price {
    align-self: start;
    padding-top: 0.1rem;
  }
}
#item-list > li .item-price .n-price {
  color: #666666;
}
#item-list > li .item-price .n-price em {
  font-size: 0.12rem;
  letter-spacing: initial;
}
#item-list > li .item-price .n-price span {
  font-size: 0.15rem;
  letter-spacing: initial;
}
#item-list > li .item-price .s-price {
  font-weight: 700;
  color: #e71f19;
}
#item-list > li .item-price .s-price em {
  font-size: 0.1209rem;
  display: block;
}
@media screen and (max-width: 768px) {
  #item-list > li .item-price .s-price em {
    font-size: 0.1107rem;
  }
}
#item-list > li .item-price .s-price span {
  font-size: 0.22rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #item-list > li .item-price .s-price span {
    font-size: 0.2015rem;
  }
}
#item-list > li .item-title {
  grid-area: item-title;
  max-width: 5.2rem;
  width: 100%;
}
#item-list > li .item-title li {
  font-size: 0.15rem;
}
@media screen and (max-width: 768px) {
  #item-list > li .item-title li.st-icon {
    margin-bottom: 0.05rem;
  }
}
#item-list > li .item-title li.st-icon ul {
  display: flex;
  gap: 0.05rem;
}
#item-list > li .item-title li.st-icon ul .st-new {
  width: 0.36rem;
}
#item-list > li .item-title li.st-icon ul .st-ichioshi {
  width: 0.695rem;
}
#item-list > li .item-title li.st-icon ul .st-osusume {
  width: 0.695rem;
}
@media screen and (max-width: 768px) {
  #item-list > li .item-title li.item-name {
    margin-top: 0.1rem;
  }
}
#item-list > li .item-title a span {
  border-bottom: 1px solid #2b5a89;
  color: #2b5a89;
  font-size: 0.15rem;
}
#item-list > li .item-title a[target=_blank]:after {
  content: "";
  display: inline-block;
  width: 0.12rem;
  height: 0.12rem;
  margin-left: 0.05rem;
  background-image: url("../images/icon-link.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
#item-list > li form.item-action {
  grid-area: item-action;
  width: 2.74rem;
}
@media screen and (max-width: 768px) {
  #item-list > li form.item-action {
    width: 100%;
    align-self: start;
    margin-top: 0.2rem;
  }
}
#item-list > li form.item-action > div {
  background: #f3f3f3;
  padding: 0.2rem;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #item-list > li form.item-action > div {
    padding: 0.1rem;
  }
}
#item-list > li form.item-action .qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
#item-list > li form.item-action select::-ms-expand {
  display: none;
}
#item-list > li form.item-action label {
  font-size: 0.15rem;
}
#item-list > li form.item-action .select-box {
  position: relative;
  display: block;
  padding: 0;
  max-width: 0.7rem;
  width: 100%;
  height: 0.38rem;
}
@media screen and (max-width: 768px) {
  #item-list > li form.item-action .select-box {
    height: 0.3771rem;
  }
}
#item-list > li form.item-action .select-box:after {
  content: "";
  position: absolute;
  width: 9px;
  height: 8px;
  top: 50%;
  transform: translateY(-50%);
  right: 1em;
  z-index: 2;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12'%3E%3Cpolygon fill='rgb(42,43,43)' points='8,12 0,0 16,0'/%3E%3C/svg%3E") 0 0 no-repeat;
  /* These hacks make the select behind the arrow clickable in some browsers */
  pointer-events: none;
}
#item-list > li form.item-action .select-box select {
  display: block;
  width: 100%;
  height: 0.38rem;
  padding-left: 1.5em;
  margin: 0;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 0.05rem;
  outline: none;
  /* Prefixed box-sizing rules necessary for older browsers */
  box-sizing: border-box;
  /* Remove select styling */
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  /* Magic font size number to prevent iOS text zoom */
  font-size: 0.13rem;
  /* General select styles: change as needed */
  /* font-weight: bold; */
  color: #444;
  line-height: 1;
}
#item-list > li form.item-action button {
  width: 1.16rem;
}
@media screen and (max-width: 1080px) {
  #item-list > li form.item-action button {
    font-size: 0.12rem;
  }
}
@media screen and (max-width: 768px) {
  #item-list > li form.item-action button {
    max-width: 2rem;
    width: 100%;
    height: 0.3771rem;
  }
}

#page h1 {
  background: #1e5082;
  color: #fff;
  text-align: center;
  font-size: 0.18rem;
  line-height: 1;
  padding: 0.15rem 0;
  margin-top: 0.2rem;
}
@media screen and (max-width: 768px) {
  #page h1 {
    font-size: 0.2rem;
    padding: 0.1rem 0;
    margin-top: 0.25rem;
  }
}

#cart {
  max-width: 7.8rem;
}
@media screen and (max-width: 768px) {
  #cart.inner {
    padding: 0;
  }
}
#cart .cartItem {
  width: 100%;
  margin-top: 0.2rem;
}
@media screen and (max-width: 768px) {
  #cart .cartItem {
    margin-top: 0;
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  #cart .cartItem thead {
    display: none;
  }
}
#cart .cartItem thead th {
  background: #f3f3f3;
  font-size: 0.15rem;
  padding: 0.1rem 0;
}
@media screen and (max-width: 768px) {
  #cart .cartItem thead th {
    background: #fff;
    padding: 0;
  }
  #cart .cartItem thead th:not(.pc) {
    display: block;
  }
}
#cart .cartItem thead th:nth-child(1) {
  padding-left: 1.5em;
  width: 44%;
}
#cart .cartItem thead th:nth-child(2) {
  width: 20%;
}
#cart .cartItem thead th:nth-child(3) {
  width: 10%;
}
#cart .cartItem thead th:nth-child(4) {
  width: 13%;
}
#cart .cartItem thead th:nth-last-child(1) {
  padding-right: 0.1rem;
  width: 6%;
}
@media screen and (max-width: 768px) {
  #cart .cartItem tbody {
    display: block;
  }
  #cart .cartItem tbody tr {
    border-bottom: 1px solid #e4e4e4;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 0.2rem 0 0.2rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #cart .cartItem tbody tr {
    padding-bottom: 0.25rem;
  }
}
#cart .cartItem tbody td {
  vertical-align: middle;
  border-bottom: 1px solid #e4e4e4;
  font-size: 0.1493rem;
  padding: 0.15rem 0.15rem 0.15rem 0;
}
@media screen and (max-width: 768px) {
  #cart .cartItem tbody td {
    border-bottom: none;
    padding: 0;
    padding-right: 0.1rem;
    display: flex;
    align-items: center;
  }
}
#cart .cartItem tbody td:nth-child(1) {
  padding-left: 1.5em;
}
@media screen and (max-width: 768px) {
  #cart .cartItem tbody td:nth-child(1) {
    padding-left: 0.1rem;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #cart .cartItem tbody td:nth-child(2) {
    padding: 0.1rem 0 0.15rem 0.1rem;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #cart .cartItem tbody td:nth-child(3) {
    padding-left: 0.1rem;
    width: 35%;
    display: flex;
    align-items: center;
    font-size: 0.14885rem;
  }
  #cart .cartItem tbody td:nth-child(3) span {
    display: inline-block;
    margin-right: 0.05rem;
  }
}
@media screen and (max-width: 768px) {
  #cart .cartItem tbody td:nth-child(4) {
    padding-left: 0.1rem;
    width: 50%;
    font-size: 0.21085rem;
  }
}
#cart .cartItem tbody td:nth-last-child(1) {
  padding: 0.15rem 0.1rem 0.15rem 0;
}
#cart .cartItem tbody td:nth-last-child(1) a span {
  border-bottom: 1px solid #2a2b2b;
}
@media screen and (max-width: 768px) {
  #cart .cartItem tbody td:nth-last-child(1) {
    padding: 0 0.1rem;
  }
}
#cart .cartItem tbody td .select-box {
  position: relative;
  display: block;
  padding: 0;
}
@media screen and (max-width: 768px) {
  #cart .cartItem tbody td .select-box {
    max-width: 0.6949rem;
    height: 0.3771rem;
    width: 100%;
  }
  #cart .cartItem tbody td .select-box:after {
    content: "";
    position: absolute;
    width: 9px;
    height: 8px;
    top: 50%;
    transform: translateY(-50%);
    right: 0.05rem;
    z-index: 2;
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12'%3E%3Cpolygon fill='rgb(42,43,43)' points='8,12 0,0 16,0'/%3E%3C/svg%3E") 0 0 no-repeat;
    /* These hacks make the select behind the arrow clickable in some browsers */
    pointer-events: none;
  }
}
#cart .cartItem tbody td .select-box select {
  display: block;
  margin: 0;
  border: 1px solid #ccc;
  border-radius: 0.025rem;
  outline: none;
  /* Prefixed box-sizing rules necessary for older browsers */
  box-sizing: border-box;
  /* Remove select styling */
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  /* Magic font size number to prevent iOS text zoom */
  font-size: 0.13rem;
  /* General select styles: change as needed */
  /* font-weight: bold; */
  color: #444;
  line-height: 1;
  max-width: 0.48rem;
  width: 100%;
  height: 0.3rem;
  text-align: center;
}
#cart .cartItem tbody td .select-box select::-ms-expand {
  display: none;
}
@media screen and (max-width: 768px) {
  #cart .cartItem tbody td .select-box select {
    max-width: 0.6949rem;
    height: 0.3771rem;
  }
}
#cart .t-price {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 0.1rem;
}
@media screen and (max-width: 768px) {
  #cart .t-price {
    padding-right: 0.1rem;
    margin-top: 0.2rem;
  }
}
#cart .t-price em {
  font-size: 0.1493rem;
  display: inline-block;
  margin-right: 0.12rem;
}
#cart .t-price span {
  font-size: 0.24rem;
  font-weight: 700;
  color: #e71f19;
}
#cart .confirm-area {
  margin-top: 0.4rem;
}
@media screen and (max-width: 768px) {
  #cart .confirm-area {
    padding: 0 0.1rem;
    margin-top: 0.2rem;
  }
}
#cart .confirm-area > div {
  background: #f3f3f3;
  border: 1px solid #cccccc;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #cart .confirm-area > div {
    text-align: left;
  }
}
#cart .confirm-area .attachment {
  border-bottom: 1px solid #cccccc;
  padding: 0.1rem 0;
  display: flex;
  justify-content: center;
  font-size: 0.1542rem;
  gap: 0.15rem;
}
@media screen and (max-width: 768px) {
  #cart .confirm-area .attachment {
    justify-content: flex-start;
    padding: 0.15rem;
  }
}
#cart .confirm-area .attachment ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 0.1rem;
}
#cart .confirm-area .attachment ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  gap: 0 0.05rem;
}
#cart .confirm-area .attachment ul li input {
  margin: 0;
  accent-color: #2a2b2b;
}
#cart .confirm-area .formArea {
  border-bottom: 1px solid #cccccc;
  padding: 0 0 0.2rem;
}
@media screen and (max-width: 768px) {
  #cart .confirm-area .formArea {
    padding: 0.15rem 0.15rem 0.2rem;
  }
}
#cart .confirm-area .formArea p {
  font-size: 0.1493rem;
  margin: 0.2rem 0;
  letter-spacing: 0.1em;
}
#cart .confirm-area .formArea .inputForm {
  max-width: 5.5rem;
  width: 100%;
  margin-left: 0.6rem;
}
@media screen and (max-width: 768px) {
  #cart .confirm-area .formArea .inputForm {
    margin-left: initial;
  }
}
#cart .confirm-area .formArea .inputForm th {
  max-width: 1rem;
  width: 100%;
  vertical-align: middle;
  padding-bottom: 0.2rem;
}
@media screen and (max-width: 768px) {
  #cart .confirm-area .formArea .inputForm th {
    padding-bottom: 0.05rem;
  }
}
#cart .confirm-area .formArea .inputForm th.vt {
  vertical-align: top;
  padding-top: 0.08rem;
}
#cart .confirm-area .formArea .inputForm td {
  max-width: 4.5rem;
  width: 100%;
  padding-bottom: 0.2rem;
}
#cart .confirm-area .formArea .inputForm td ul li:not(:last-child) {
  margin-bottom: 0.1rem;
}
@media screen and (max-width: 768px) {
  #cart .confirm-area .formArea .inputForm th,
#cart .confirm-area .formArea .inputForm td {
    width: 100%;
    max-width: initial;
    display: block;
  }
}
#cart .confirm-area .formArea .inputForm input {
  width: 4.5rem;
  height: 0.38rem;
  border: 1px solid #cccccc;
  border-radius: 0.025rem;
  display: block;
}
@media screen and (max-width: 768px) {
  #cart .confirm-area .formArea .inputForm input {
    width: 100%;
  }
}
#cart .confirm-area .formArea .inputForm textarea {
  width: 100%;
  height: 1.8rem;
  border: 1px solid #cccccc;
  border-radius: 0.025rem;
}
#cart .confirm-area .btn-area {
  padding: 0.25rem 0;
}
@media screen and (max-width: 768px) {
  #cart .confirm-area .btn-area {
    padding: 0.2rem;
  }
}
#cart .confirm-area .btn-area ul {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
}
@media screen and (max-width: 768px) {
  #cart .confirm-area .btn-area ul {
    gap: 0.1rem;
  }
}
#cart .confirm-area .btn-area ul li {
  font-size: 0.16rem;
  max-width: 2.5rem;
  width: 100%;
}
#cart .confirm-area .btn-area ul a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #323333;
  width: 100%;
  height: 0.5rem;
  border-radius: 0.025rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #cart .confirm-area .btn-area ul a {
    height: 0.375rem;
    font-size: 0.13895rem;
  }
}
#cart .confirm-area .btn-area ul button {
  display: block;
  border: none;
  color: #fff;
  background: #e72219;
  width: 100%;
  height: 0.5rem;
  border-radius: 0.025rem;
}
@media screen and (max-width: 768px) {
  #cart .confirm-area .btn-area ul button {
    height: 0.375rem;
    font-size: 0.13895rem;
  }
}

#contact {
  max-width: 7.8rem;
  width: 100%;
  margin: 0 auto;
}
#contact table {
  max-width: 6.1rem;
  width: 100%;
  margin: 0.3rem auto 0.25rem;
  font-size: 0.1493rem;
}
@media screen and (max-width: 768px) {
  #contact table {
    margin-top: 0;
  }
}
#contact table th,
#contact table td {
  border-bottom: 1px solid #cccccc;
  padding: 0.15rem 0;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #contact table th,
#contact table td {
    display: block;
  }
}
#contact table th {
  width: 26%;
}
@media screen and (max-width: 768px) {
  #contact table th {
    width: 100%;
    border-bottom: none;
    padding-bottom: 0.05rem;
    padding-top: 0.2rem;
    padding-left: 0.15rem;
  }
}
#contact table th .required {
  display: block;
  color: #e72219;
  font-size: 0.12rem;
}
@media screen and (max-width: 768px) {
  #contact table th .required {
    display: inline-block;
    margin-left: 0.05rem;
  }
}
#contact table td {
  width: 74%;
}
@media screen and (max-width: 768px) {
  #contact table td {
    width: 100%;
    padding-top: 0.05rem;
    padding-left: 0.15rem;
    padding-right: 0.15rem;
    padding-bottom: 0.2rem;
  }
}
#contact table td input[type=text] {
  width: 100%;
  height: 0.38rem;
  border-radius: 0.025rem;
  border: 1px solid #cccccc;
}
#contact table td div {
  display: flex;
  align-items: center;
  line-height: 1;
  margin-top: 0.2rem;
  position: relative;
}
#contact table td div input[type=checkbox] {
  display: none;
}
#contact table td div input[type=checkbox] + label {
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-left: 0.25rem;
  padding-right: 0.1rem;
}
#contact table td div input[type=checkbox] + label:before {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 0.16rem;
  height: 0.16rem;
  margin-top: -0.07rem;
  left: 0;
  top: 50%;
  border: 1px solid #cccccc;
}
#contact table td div input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 0.16rem;
  height: 0.07rem;
  margin-top: -0.05rem;
  top: 50%;
  left: 0.02rem;
  transform: rotate(-45deg);
  border-bottom: 0.03rem solid;
  border-left: 0.03rem solid;
  border-color: #585753;
  /* チェックの色変更 お好きな色を */
}
#contact table td textarea {
  width: 100%;
  height: 1.8rem;
  border-radius: 0.025rem;
  border: 1px solid #cccccc;
}
#contact.contact button {
  display: block;
  border: none;
  max-width: 2.5rem;
  width: 100%;
  height: 0.5rem;
  border-radius: 0.025rem;
  color: #fff;
  background: #e72219;
  margin: 0 auto;
  font-size: 0.16rem;
}
@media screen and (max-width: 768px) {
  #contact.contact button {
    max-width: 1.55rem;
    height: 0.3771rem;
    font-size: 0.13895rem;
  }
}
#contact.confirm td span {
  display: block;
  margin-top: 0.3rem;
}
#contact.confirm .btn-area {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
}
@media screen and (max-width: 768px) {
  #contact.confirm .btn-area {
    gap: 0.1rem;
  }
}
#contact.confirm .btn-area li {
  font-size: 0.16rem;
  max-width: 2.5rem;
  width: 100%;
}
#contact.confirm .btn-area .to-back {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #323333;
  width: 100%;
  height: 0.5rem;
  border-radius: 0.025rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #contact.confirm .btn-area .to-back {
    height: 0.375rem;
    font-size: 0.13895rem;
  }
}
#contact.confirm .btn-area .to-send {
  display: block;
  border: none;
  color: #fff;
  background: #e72219;
  width: 100%;
  height: 0.5rem;
  border-radius: 0.025rem;
}
@media screen and (max-width: 768px) {
  #contact.confirm .btn-area .to-send {
    height: 0.375rem;
    font-size: 0.13895rem;
  }
}
#contact.complete .contact-inner {
  max-width: 6rem;
  margin: 0 auto;
  padding-top: 0.4rem;
}
@media screen and (max-width: 768px) {
  #contact.complete .contact-inner {
    padding: 0.3rem 0.3rem 0;
  }
}
#contact.complete .contact-inner h2 {
  font-size: 0.24rem;
  margin-bottom: 0.3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  #contact.complete .contact-inner h2 {
    font-size: 0.2rem;
    margin-bottom: 0.2rem;
  }
}
#contact.complete .contact-inner p {
  letter-spacing: 0.1em;
  font-size: 0.1493rem;
}
@media screen and (max-width: 768px) {
  #contact.complete .contact-inner p {
    font-size: 0.15rem;
    letter-spacing: 0.02em;
    line-height: 1.6;
  }
}
#contact.complete .contact-inner .to-top {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  max-width: 2.5rem;
  width: 100%;
  height: 0.5rem;
  border-radius: 0.025rem;
  color: #fff;
  background: #e72219;
  margin: 0.8rem auto 0;
  font-size: 0.16rem;
}
@media screen and (max-width: 768px) {
  #contact.complete .contact-inner .to-top {
    max-width: 1.55rem;
    height: 0.3771rem;
    font-size: 0.13895rem;
    margin-top: 0.4rem;
  }
}

#login {
  max-width: 7.8rem;
  width: 100%;
  margin: 0 auto;
}
#login .to-top {
  display: block;
  margin: 1rem auto 0;
  text-align: center;
}
#login .to-top[target=_blank]:after {
  content: "";
  display: inline-block;
  width: 0.12rem;
  height: 0.12rem;
  margin-left: 0.05rem;
  background-image: url("../images/icon-link.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
#login h1 {
  line-height: 1.2;
}
#login .inner {
  max-width: 4.55rem;
  width: 100%;
  margin: 0 auto;
}
#login table {
  max-width: 6.1rem;
  width: 100%;
  margin: 0.5rem auto 0.25rem;
  font-size: 0.1493rem;
}
@media screen and (max-width: 768px) {
  #login table {
    margin-top: 0.4rem;
  }
}
#login table th,
#login table td {
  padding: 0 0 0.2rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #login table th,
#login table td {
    display: block;
  }
}
#login table th {
  width: 30%;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  #login table th {
    width: 100%;
    border-bottom: none;
    padding-bottom: 0.05rem;
    padding-top: 0;
    padding-left: 0.15rem;
  }
}
#login table td {
  width: 70%;
}
@media screen and (max-width: 768px) {
  #login table td {
    width: 100%;
    padding-top: 0.05rem;
    padding-left: 0.15rem;
    padding-right: 0.15rem;
    padding-bottom: 0.2rem;
  }
}
#login table td input {
  width: 100%;
  height: 0.38rem;
  border-radius: 0.025rem;
  border: 1px solid #cccccc;
}
#login button {
  display: block;
  border: none;
  max-width: 2.5rem;
  width: 100%;
  height: 0.5rem;
  border-radius: 0.025rem;
  color: #fff;
  background: #e72219;
  margin: 0.5rem auto 0;
  font-size: 0.16rem;
}
@media screen and (max-width: 768px) {
  #login button {
    max-width: 1.55rem;
    height: 0.3771rem;
    font-size: 0.13895rem;
    margin-top: 0.3rem;
  }
}

@media screen and (max-width: 768px) {
  .history {
    padding: 0;
  }
}
.history table {
  width: 100%;
  margin-top: 0.2rem;
}
@media screen and (max-width: 768px) {
  .history table {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .history table thead {
    border-bottom: 1px solid #e4e4e4;
  }
}
.history table thead th {
  background: #f3f3f3;
  font-size: 0.15rem;
  padding: 0.1rem 0;
}
@media screen and (max-width: 768px) {
  .history table thead th {
    background: #fff;
    padding: 0 !important;
  }
  .history table thead th:not(.pc) {
    display: block;
  }
}
.history table thead th:nth-child(1) {
  padding-left: 1.5em;
  width: 15%;
}
.history table thead th:nth-child(2) {
  width: 10%;
}
.history table thead th:nth-child(3) {
  width: 25%;
}
.history table thead th:nth-child(4) {
  width: 30%;
}
.history table thead th:nth-last-child(1) {
  padding-right: 0.1rem;
}
.history table thead th form {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .history table thead th form {
    display: block;
  }
}
.history table thead th form select::-ms-expand {
  display: none;
}
.history table thead th form label {
  font-size: 0.15rem;
}
.history table thead th form .select-box {
  position: relative;
  display: block;
  padding: 0;
  max-width: 1.39rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .history table thead th form .select-box {
    max-width: 100%;
    border: none;
    text-align: right;
    padding-right: 0.2em;
  }
}
@media screen and (max-width: 768px) {
  .history table thead th form .select-box {
    height: 0.3771rem;
  }
}
.history table thead th form .select-box:after {
  content: "";
  position: absolute;
  width: 9px;
  height: 8px;
  top: 45%;
  right: 0.1rem;
  z-index: 2;
  background: url("../images/arrow.svg") 0 0 no-repeat;
  /* These hacks make the select behind the arrow clickable in some browsers */
  pointer-events: none;
}
.history table thead th form .select-box select {
  display: block;
  width: 100%;
  height: 0.3rem;
  padding-left: 1em;
  margin: 0;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 0.025rem;
  outline: none;
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 0.13rem;
  color: #2a2b2b;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .history table thead th form .select-box select {
    height: 0.3771rem;
    border: none;
    text-align: right;
    padding-right: 2.5em;
    direction: rtl;
  }
}
@media screen and (max-width: 768px) {
  .history table tbody {
    display: block;
  }
  .history table tbody tr {
    border-bottom: 1px solid #e4e4e4;
    display: block;
    width: 100%;
    padding: 0.2rem 0 0.2rem;
  }
  .history table tbody tr:nth-last-child(1) {
    border-bottom: none !important;
    padding-bottom: 0;
  }
}
.history table tbody td {
  vertical-align: middle;
  border-bottom: 1px solid #e4e4e4;
  font-size: 0.1493rem;
}
@media screen and (max-width: 768px) {
  .history table tbody td {
    display: block;
    width: 100%;
    border-bottom: none;
    margin-bottom: 0.1rem;
    font-size: 0.15rem;
    padding-left: 0.1rem;
    padding-right: 0.1rem;
  }
  .history table tbody td:before {
    display: inline-block;
    width: 23%;
  }
  .history table tbody td:not(.title-btn) {
    display: flex;
  }
  .history table tbody td:not(.title-btn) span {
    width: 77%;
  }
  .history table tbody td.title-no:before {
    content: "見積番号：";
  }
  .history table tbody td.title-date:before {
    content: "日付：";
  }
  .history table tbody td.title-shop:before {
    content: "代理店名：";
  }
  .history table tbody td.title-subject:before {
    content: "件名：";
  }
}
.history table tbody td:nth-child(1) {
  padding-left: 1.5em;
}
@media screen and (max-width: 768px) {
  .history table tbody td:nth-child(1) {
    padding-left: 0.1rem;
  }
}
.history table tbody td:nth-last-child(1) {
  padding: 0.15rem 0.1rem 0.15rem 0;
}
@media screen and (max-width: 768px) {
  .history table tbody td:nth-last-child(1) {
    padding: 0 0.1rem;
  }
}
.history table tbody td ul {
  display: flex;
  justify-content: flex-end;
  gap: 0.1rem;
}
@media screen and (max-width: 768px) {
  .history table tbody td ul {
    margin-top: 0.2rem;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #f3f3f3;
    padding: 0.1rem 0.15rem;
  }
  .history table tbody td ul.single-btn {
    justify-content: center;
  }
}
.history table tbody td ul li {
  width: 0.8rem;
  height: 0.4rem;
}
@media screen and (max-width: 768px) {
  .history table tbody td ul li {
    width: 48%;
  }
}
.history table tbody td ul li a {
  text-align: center;
  flex-direction: column;
  font-size: 0.1394rem;
  padding: 0;
  line-height: 1.15;
}
@media screen and (max-width: 768px) {
  .history table tbody td ul li a {
    font-size: 0.13895rem;
    flex-direction: row;
    align-items: center;
  }
}
.history table tbody td ul li a span {
  display: block;
  font-size: 0.12rem;
}
@media screen and (max-width: 768px) {
  .history table tbody td ul li a span {
    display: inline;
    font-size: 0.13895rem;
  }
}

.uploadForm {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.uploadForm .overlay {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
}
.uploadForm .flame {
  max-width: 6.27rem;
  width: 100%;
  height: 2.06rem;
  border: 0.06rem solid #1e5082;
  border-radius: 0.05rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.uploadForm form > p {
  text-align: center;
  font-size: 0.15rem;
  margin-bottom: 0.2rem;
}
.uploadForm form label {
  display: flex;
  flex-direction: row-reverse;
}
.uploadForm form label input[type=file] {
  display: none;
}
.uploadForm form label span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0.8rem;
  height: 0.37rem;
  background: #2f80b3;
  border-radius: 0 0.03rem 0.03rem 0;
  color: #fff;
  font-size: 0.14rem;
  cursor: pointer;
}
.uploadForm form label p {
  padding-top: 0.055rem;
  padding-left: 1em;
  padding-right: 0.5em;
  width: 2.43rem;
  height: 0.37rem;
  border: 1px solid #cccccc;
  border-radius: 0.03rem 0 0 0.03rem;
  font-size: 0.14rem;
  color: #ccc;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.uploadForm form button {
  display: block;
  border: none;
  width: 2rem;
  height: 0.37rem;
  margin: 0.25rem auto 0;
  border-radius: 0.03rem;
  background: #e72219;
  color: #fff;
  font-size: 0.14rem;
}

.completeMsg {
  display: block;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.completeMsg .overlay {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
}
.completeMsg .flame {
  max-width: 6.27rem;
  width: 100%;
  height: 2.06rem;
  border: 0.06rem solid #1e5082;
  border-radius: 0.05rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: #fff;
  padding: 0.5rem 0 0;
}
.completeMsg .flame p {
  font-size: 0.15rem;
  text-align: center;
}
.completeMsg .flame button {
  display: block;
  border: none;
  margin: 0.5rem auto 0;
  width: 0.8rem;
  height: 0.37rem;
  background: #2f80b3;
  border-radius: 0.03rem;
  color: #fff;
}

#page_top {
  margin-top: 0.5rem;
}
#page_top a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #1e5082;
  color: #fff;
  padding: 0.2rem 0 0.15rem;
  line-height: 1;
  font-size: 0.16rem;
}
@media screen and (max-width: 768px) {
  #page_top a {
    flex-direction: row;
    padding: 0.1rem 0;
    font-size: 0.12225rem;
  }
}
#page_top a:before {
  content: "";
  display: inline-block;
  margin-bottom: 0.03rem;
  width: 0.1rem;
  height: 0.1rem;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  #page_top a:before {
    width: 0.05rem;
    height: 0.05rem;
    margin-bottom: -0.06rem;
    margin-right: 0.05rem;
  }
}

footer {
  background: #323333;
  color: #fff;
}
footer .inner {
  padding-top: 0.5rem;
  padding-bottom: 0.3rem;
}
@media screen and (max-width: 1080px) {
  footer .inner {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
}
@media screen and (max-width: 768px) {
  footer .inner {
    padding-top: 0.3rem;
    padding-bottom: 0;
  }
}
footer .inner ul {
  font-size: 0.13rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  footer .inner ul {
    font-size: 0.15rem;
  }
}
footer .inner ul:nth-child(1) {
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  footer .inner ul:nth-child(1) {
    order: 3;
    width: 100%;
    text-align: center;
    padding: 0.3rem 0;
    font-size: 0.12rem;
  }
}
footer .inner ul:nth-child(1) li {
  margin-bottom: 0.1rem;
  line-height: 1;
}
footer .inner ul:nth-child(1) li:nth-of-type(1) {
  margin-bottom: 0.15rem;
  width: 1.81rem;
}
@media screen and (max-width: 768px) {
  footer .inner ul:nth-child(1) li:nth-of-type(1) {
    width: 1.56rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.3rem;
  }
}
footer .inner ul:nth-child(1) li:nth-last-of-type(1) {
  margin-bottom: 0;
}
footer .inner ul:nth-child(2) {
  padding-left: 0.3rem;
  border-left: 1px solid #5c5c5c;
  width: 2.2rem;
}
@media screen and (max-width: 768px) {
  footer .inner ul:nth-child(2) {
    order: 1;
    width: 100%;
    border: none;
    padding: 0;
  }
}
footer .inner ul:nth-child(2) li {
  margin-bottom: 0.1rem;
}
footer .inner ul:nth-child(2) li:nth-last-of-type(1) {
  margin-bottom: 0;
}
footer .inner ul:nth-child(3) {
  padding-left: 0.3rem;
  border-left: 1px solid #5c5c5c;
  width: 2.2rem;
}
@media screen and (max-width: 768px) {
  footer .inner ul:nth-child(3) {
    margin-top: 0.1rem;
    order: 2;
    width: 100%;
    border: none;
    border-bottom: 1px solid #5c5c5c;
    padding: 0;
    padding-bottom: 0.3rem;
  }
}
footer .inner ul:nth-child(3) li {
  margin-bottom: 0.1rem;
}
footer .inner ul:nth-child(3) li:nth-last-of-type(1) {
  margin-bottom: 0;
}
footer small {
  display: block;
  text-align: center;
  padding: 0 0 0.05rem;
}
@media screen and (max-width: 768px) {
  footer small {
    font-size: 0.09rem;
  }
}

.drawer--left .drawer-hamburger {
  height: 0.45rem;
  left: inherit;
  right: 0.1rem;
  top: 0.1rem;
  z-index: 9999999;
  display: none;
}
@media screen and (max-width: 768px) {
  .drawer--left .drawer-hamburger {
    display: block;
  }
}

.drawer--left.drawer-open .drawer-hamburger {
  left: inherit;
}

.drawer--left.drawer-open #d-menu .c-btn {
  display: block;
  right: 0.1rem;
  top: 1.4rem;
  z-index: 99;
  position: absolute;
  width: 0.212rem;
  height: 0.212rem;
}
.drawer--left.drawer-open #d-menu .c-btn:before {
  content: "";
  display: block;
  width: 0.212rem;
  position: absolute;
  top: 0.07rem;
  height: 2px;
  transform: rotate(45deg);
  background: #fff;
}
.drawer--left.drawer-open #d-menu .c-btn:after {
  content: "";
  display: block;
  width: 0.212rem;
  position: absolute;
  top: 0.07rem;
  height: 2px;
  transform: rotate(-45deg);
  background: #fff;
}

.drawer--left .drawer-nav {
  left: -100%;
}

.drawer-nav {
  z-index: 9999;
  width: 55.5vw;
  height: 100vh;
  background: #323333;
  overflow: scroll;
  font-family: "Nunito Sans", sans-serif;
  padding-top: 1.4rem;
}
.drawer-nav .drawer-menu {
  margin-top: 0;
  display: block;
}
.drawer-nav .drawer-menu .btn-li {
  width: 100%;
  margin-bottom: 0.15rem;
  font-size: 0.14rem;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
}
.drawer-nav .drawer-menu .btn-li .btn.cart:before {
  width: 0.21rem;
  margin-right: 0.1rem;
}
.drawer-nav .drawer-menu .txt {
  color: #fff;
  border-bottom: 1px solid #c8c8c8;
  padding: 0.15rem 0 0.15rem 0.2rem;
}
.drawer-nav .drawer-menu .txt.txt1 {
  border-top: 1px solid #c8c8c8;
  margin-top: 0.3rem;
}

.drawer-overlay {
  z-index: 98;
  background-color: rgba(0, 0, 0, 0.5);
}

.drawer-hamburger {
  z-index: 11;
  width: 0.212rem;
  padding: 0;
}

.drawer-hamburger-icon {
  background-color: transparent;
  margin-top: 20px;
  width: 100%;
}

.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
  height: 2px;
  background-color: #fff;
}

.drawer-hamburger-icon:before {
  width: 100%;
  top: -0.15rem;
}

.drawer-hamburger-icon:after {
  top: -0.05rem;
  width: 100%;
}

.drawer-open .drawer-hamburger-icon:before {
  top: -0.15rem;
}

.drawer-open .drawer-hamburger-icon:after {
  top: -0.05rem;
}

.drawer-open .drawer-hamburger-icon:after,
.drawer-open .drawer-hamburger-icon:before {
  background-color: #fff;
  width: 100%;
}

.drawer-dropdown .drawer-caret {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform: rotate(0deg);
  vertical-align: middle;
  border-top: none;
  border-right: none;
  border-left: none;
  float: right;
}

.drawer-dropdown.open .drawer-caret {
  transform: rotate(90deg);
}

.drawer-open .drawer-hamburger-icon:before,
.drawer-open .drawer-hamburger-icon:after {
  transform: initial;
}

ion-icon {
  --ionicon-stroke-width: 16px;
  color: #474747;
}

.dr-link,
.drawer-dropdown-menu-item {
  background: #eeeeee;
}

.dr-link {
  font-size: 0.18rem;
  padding: 0.8em 0 0.8em 0.75rem;
}

.drawer-dropdown-menu-item {
  font-size: 0.18rem;
  margin: 0.1em 0;
  padding-left: 1.5em;
  font-weight: normal;
  color: #474747;
}

.drawer-dropdown-menu li a {
  padding-top: 0.3em !important;
  padding-bottom: 0.3em !important;
}

/*通常のハンバーガーメニュー用　上から降りてくるタイプ
.btn_hamburger{
    display:none;
}
@include sp{
.btn_hamburger {
    display:block;
    width: 5.0rem;
    height: 5.0rem;
    background:$color-navy;
    position: absolute;
    z-index: 9999;
    right: 0;
    transition:all 0.2s linear;
}
}
.btn_hamburger.menu-txt{
    background:#fff;
}
.btn_hamburger a {
    position: relative;
    display: block;
    width: 40%;
    height: 16px;
    -webkit-transition: all .4s;
    transition: all .4s;
    box-sizing: border-box;
    z-index: 99999;
    top: 50%;
    left: 50%;
    color: #fff;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    &:after {
        display: block;
        position: absolute;
        bottom: -28px;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        font-size: 0.8rem;
    }
}

.btn_hamburger span {
    position: absolute;
    display: inline-block;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    -webkit-transition: all .4s;
    transition: all .4s;
    box-sizing: border-box;
}
.btn_hamburger.menu-txt span{
    background-color:$color-txt;
}
.btn_hamburger span:nth-of-type(1) {
    top: 0;
}

.btn_hamburger span:nth-of-type(2) {
    top: 7px;
}

.btn_hamburger span:nth-of-type(3) {
    bottom: 0;
}

.btn_hamburger span:nth-of-type(2)::after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    -webkit-transition: all .4s;
    transition: all .4s;
}
.btn_hamburger.menu-txt span:nth-of-type(2)::after {
    background-color:$color-txt;
}
.btn_hamburger .active span:nth-of-type(2) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.btn_hamburger .active span:nth-of-type(2)::after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.btn_hamburger .active span:nth-of-type(1) {
    -webkit-transform: translateY(20px) scale(0);
    -ms-transform: translateY(20px) scale(0);
    transform: translateY(20px) scale(0);
}

.btn_hamburger .active span:nth-of-type(3) {
    -webkit-transform: translateY(-20px) scale(0);
    -ms-transform: translateY(-20px) scale(0);
    transform: translateY(-20px) scale(0);
}

.sp-menu {
    display: none;
}

#sp-menu {
    top: 5.0rem;
    max-width: 100%;
    width: 100%;
    background: $color-navy;;
    padding: 0;
    overflow: hidden;
    position: absolute;
    color:#fff;
}

#sp-nav {
    padding-top: 1.5rem;

    ul {
        text-align: left;
        width: 100%;
        margin-left: 0;

        &:nth-child(1) {
            li {
                display: block;
                font-size:1.4rem;
                text-align: left;
                margin: 2.5rem 0;
                padding-left:5.0rem;
                a{
                    display:block;
                }
            }
        }
    }
}
*/
.fadeup {
  -webkit-animation-name: fadeup;
          animation-name: fadeup;
}

.fadeIn {
  transition: all 0.9s linear;
  opacity: 1 !important;
}

@-webkit-keyframes fadeup {
  0% {
    opacity: 0;
    transform: translate3d(0, 10%, 0);
  }
  100% {
    opacity: 1;
    transform: translateZ(0);
  }
}

@keyframes fadeup {
  0% {
    opacity: 0;
    transform: translate3d(0, 10%, 0);
  }
  100% {
    opacity: 1;
    transform: translateZ(0);
  }
}
.faderight {
  -webkit-animation-name: faderight;
          animation-name: faderight;
}

@-webkit-keyframes faderight {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes faderight {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */