@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
html,
input, textarea, select, button {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

body {
  margin: 0;
  color: #000000;
  background: #f6efe0;
  font-size: 1rem;
}

*, *::before, *::after {
  box-sizing: border-box;
}

a {
  color: #f87487;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  color: #f87487;
  text-decoration: underline;
}

a img {
  border: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

figure {
  margin: 0;
}

.inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1100px;
}

.center {
  text-align: center;
}

.kome {
  padding-left: 1em;
  text-indent: -1em;
}

.kome:before {
  content: "※";
}

.wf-sawarabimincho {
  font-family: "Sawarabi Mincho";
}

.wf-sawarabigothic {
  font-family: "Sawarabi Gothic";
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
@media print, screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}
header {
  box-shadow: 0px 0px 18px rgba(128, 128, 128, 0.75);
}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: #f6efe0;
  z-index: 1000;
}

header .inner {
  height: 60px;
  position: relative;
}

#header-wrap {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1,
header p {
  margin: 0;
  padding: 0;
  text-align: left;
}

header h1 img,
header p img {
  max-width: 80%;
}

header a,
header a:hover {
  color: inherit;
  text-decoration: none;
}

@media screen and (min-width: 769px) {
  header h1,
  header p {
    text-align: left;
  }
}
@media print, screen and (min-width: 940px) {
  header .inner {
    height: 100px;
  }
  #header-wrap {
    align-items: flex-end;
  }
  header h1 img,
  header p img {
    height: auto;
    max-width: 100%;
  }
  #header-wrap {
    padding-bottom: 20px;
  }
}
.smalllogo {
  display: none;
}

@media print, screen and (max-width: 500px) {
  .logo {
    display: none;
  }
  .smalllogo {
    display: block;
  }
}
.spnavi {
  margin-right: 10px;
}

.spnavi div {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.spnavi-icon {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  margin-top: -2px;
  margin-left: -15px;
  background: #000000;
  transition: all 0.8s;
}

.spnavi-icon:before,
.spnavi-icon:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 2px;
  background: #000000;
  transition: all 0.8s;
}

.spnavi-icon:before {
  margin-top: -12px;
}

.spnavi-icon:after {
  margin-top: 10px;
}

.spnavi-icon.close {
  background: transparent;
}

.spnavi-icon.close:before {
  transform: translateY(11px) rotate(-315deg);
  -webkit-transform: translateY(11px) rotate(-315deg);
}

.spnavi-icon.close:after {
  transform: translateY(-11px) rotate(315deg);
  -webkit-transform: translateY(-11px) rotate(315deg);
}

.spnavi-text {
  display: none;
}

@media print, screen and (min-width: 940px) {
  .spnavi {
    display: none;
  }
}
@media screen and (max-width: 939px) {
  .navpc {
    display: none;
  }
  #nav-base {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 5000;
    cursor: pointer;
    display: none;
    transition: all 2.5s;
  }
  #nav-base.open {
    display: block;
  }
  header nav {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5010;
    display: none;
  }
  header nav ul {
    margin: 0;
    padding: 0;
    padding: 10px;
    padding-top: 30px;
    padding-bottom: 30px;
    background: rgba(139, 120, 87, 0.95);
  }
  header nav ul li {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  header nav ul li a {
    display: block;
    padding: 0;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    color: inherit;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
  }
  header nav ul li ul {
    margin: 0;
    margin-left: 1rem;
    padding: 0;
    border: none;
  }
  header nav ul li ul li {
    border: none;
  }
}
#fixednav {
  position: absolute;
  right: 55px;
  top: 0;
  width: 210px;
  height: 60px;
  z-index: 5001;
}

#fixednav ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
}

#fixednav ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100px;
  margin-right: 10px;
}

#fixednav ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  font-size: 0.875rem;
  font-weight: bold;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

#fixednav ul li#fixednav-reserve a {
  background: #fa9994;
}

#fixednav ul li#fixednav-inquiry a {
  background: #6ed9b4;
}

@media print, screen and (min-width: 940px) {
  .navsp {
    display: none;
  }
  header nav {
    height: 100%;
    z-index: 5000;
  }
  header nav > ul {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 0.5rem;
  }
  header nav > ul > li {
    margin: 0;
    margin-bottom: -10px;
    padding: 0;
    list-style: none;
    position: relative;
    display: flex;
    align-items: center;
    height: 50%;
  }
  header nav > ul > li > a {
    display: block;
    color: inherit;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.875rem;
    height: 75%;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header nav ul li a:hover {
    color: inherit;
    text-decoration: none;
  }
  header nav > ul > li > a span {
    position: relative;
    display: inline-block;
  }
  header nav > ul > li > a span::after {
    border-bottom: 2px solid #fa9494;
    bottom: -5px;
    content: "";
    display: block;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
    width: 0;
  }
  header nav > ul > li > a:hover span::after {
    width: 100%;
  }
  #fixednav {
    position: absolute;
    right: 10px;
    top: 0;
    width: 380px;
    height: 50px;
    z-index: 5001;
    background: #f6efe0;
  }
  #fixednav ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
  }
  #fixednav ul li {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 185px;
  }
  #fixednav ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  #fixednav ul li#fixednav-reserve a {
    background: #fa9994;
  }
  #fixednav ul li#fixednav-inquiry a {
    background: #6ed9b4;
  }
}
footer {
  background: #303359;
  padding-top: 60px;
  color: #ffffff;
  position: relative;
}

footer .inner {
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1130px;
}

footer a,
footer a:hover {
  color: #ffffff;
  text-decoration: none;
}

#footer-nav {
  margin: auto;
  margin-bottom: 60px;
  text-align: center;
}

#footer-nav a {
  margin-left: 1rem;
  margin-right: 1rem;
}

#footer-copyright p {
  margin: 0;
  text-align: center;
  color: #ffffff;
  font-size: 0.875rem;
  padding-bottom: 80px;
}

#pagetop {
  position: fixed;
  right: 0px;
  bottom: -80px;
  z-index: 9000;
  transition: all 0.5s;
}

#pagetop.show {
  bottom: 0px;
}

#pagetop a {
  display: block;
  text-decoration: none;
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 30px;
  position: relative;
}

#pagetop a span {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(-90deg);
}

#pagetop a span::before {
  position: absolute;
  content: "";
  left: 0;
  width: 40%;
  height: 50%;
  background: #f09fab;
}

#pagetop a span::after {
  position: absolute;
  content: "";
  left: 40%;
  width: 60%;
  height: 100%;
  background: linear-gradient(to bottom left, transparent 50%, #f09fab 50.5%) no-repeat top left/100% 50%, linear-gradient(to top left, transparent 50%, #f09fab 50.5%) no-repeat bottom right/100% 50%;
}

@media print, screen and (min-width: 769px) {
  #pagetop {
    right: 10px;
  }
  #pagetop.show {
    bottom: 10px;
  }
  #pagetop a {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    position: relative;
  }
  #pagetop a span {
    top: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 939px) {
  article {
    padding-top: 60px;
  }
}
@media print, screen and (min-width: 940px) {
  article {
    padding-top: 100px;
  }
}
article {
  min-height: 700px;
}

article .inner {
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1130px;
}

article .inner.fit {
  padding-left: 0;
  padding-right: 0;
  max-width: 1100px;
}

section {
  padding-top: 40px;
  padding-bottom: 40px;
  overflow: hidden;
}

section.backcolor2 {
  background: #ffffff;
}

.banzai {
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-size: 1.5rem;
  text-align: center;
}

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

.banzai span:before,
.banzai span:after {
  content: "";
  width: 40px;
  height: 2px;
  background: #000000;
}

.banzai span:before {
  margin-right: 6px;
  transform: rotate(60deg);
}

.banzai span:after {
  margin-left: 6px;
  transform: rotate(120deg);
}

@media print, screen and (min-width: 769px) {
  .banzai {
    font-size: 1.875rem;
  }
}
.title {
  font-size: 1.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 2rem;
}

.title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 30px;
  height: 4px;
  border-bottom: 4px solid #ff1493;
  transform: translateX(-50%);
}

@media print, screen and (min-width: 769px) {
  .title {
    margin-bottom: 3rem;
  }
  .title::after {
    width: 40px;
  }
}
.bartitle {
  margin: 0;
  margin-bottom: 1rem;
  padding: 0.5rem;
  background: #8b7857;
  color: #ffffff;
  font-size: 1.125rem;
}

.bartitle span {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: normal;
  margin-left: 1rem;
}

.subtitle {
  font-size: 1.125rem;
  margin-bottom: 0;
  color: #303359;
}

.subtitle + p {
  margin-top: 0;
  margin-left: 0.5rem;
}

@media print, screen and (min-width: 769px) {
  .title {
    font-size: 1.875rem;
  }
  .bartitle {
    padding: 1rem;
  }
  .subtitle {
    font-size: 1.25rem;
  }
}
.content {
  margin: auto;
  max-width: 600px;
}

.blockarrow {
  position: relative;
  display: flex;
  align-items: center;
  width: 60px;
  height: 60px;
}

.blockarrow.down {
  transform: rotate(90deg);
}

.blockarrow.up {
  transform: rotate(-90deg);
}

.blockarrow.left {
  transform: rotate(180deg);
}

.blockarrow::before {
  position: absolute;
  content: "";
  left: 0;
  width: 40%;
  height: 50%;
  background: #f09fab;
}

.blockarrow::after {
  position: absolute;
  content: "";
  left: 40%;
  width: 60%;
  height: 100%;
  background: linear-gradient(to bottom left, transparent 50%, #f09fab 50.5%) no-repeat top left/100% 50%, linear-gradient(to top left, transparent 50%, #f09fab 50.5%) no-repeat bottom right/100% 50%;
}

.tablebase {
  max-width: 980px;
  margin: auto;
  margin-bottom: 40px;
}

.tablebase table {
  border-collapse: collapse;
  empty-cells: show;
  width: 100%;
}

.tablebase table th {
  border: 2px solid #8b7857;
  background: #c3d9cc;
  padding: 0.5rem 0.3rem;
  text-align: center;
  font-weight: bold;
  vertical-align: top;
}

.tablebase table td {
  border: 2px solid #8b7857;
  background: #ffffff;
  padding: 0.5rem 0.3rem;
  text-align: center;
  font-weight: bold;
}

.tablebase table.border tr:nth-of-type(2n-1) td {
  background: #f7f4ef;
}

@media print, screen and (min-width: 769px) {
  .tablebase table th {
    padding: 1rem;
  }
  .tablebase table td {
    padding: 1rem;
  }
}
.commit {
  position: relative;
  display: flex;
  justify-content: center;
  background: #ffffff;
  color: #303359;
  width: 330px;
  text-align: center;
  text-decoration: none;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border: 3px solid #303359;
  border-radius: 10px;
  margin: auto;
  margin-top: 30px;
  margin-bottom: 30px;
}

.commit::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 9px;
  width: 20px;
  height: 2px;
  background: #303359;
}

.commit::after {
  position: absolute;
  content: "";
  top: calc(50% - 9px);
  transform: translateY(-50%);
  right: 10px;
  width: 18px;
  height: 18px;
  border-right: 2px solid #303359;
  border-bottom: 2px solid #303359;
  transform: rotate(-45deg);
}

.commit,
.commit:hover {
  transition: all 0.3s;
  text-decoration: none;
}

.commit:hover {
  background: #303359;
  color: #ffffff;
}

.commit:hover::before {
  background: #ffffff;
}

.commit:hover::after {
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

#mainvisual {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  background-image: url(image/mainvisual.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

#mainvisual .catch1 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  color: #ffffff;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 10px;
  width: 100%;
}

#mainvisual .catch1 h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
}

#mainvisual .catch2 {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  color: #ffffff;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 10px;
  width: 100%;
}

#mainvisual .catch2 p {
  font-weight: bold;
  margin-bottom: 0;
}

@media print, screen and (min-width: 600px) {
  #mainvisual {
    padding-bottom: 0;
    height: 600px;
  }
  #mainvisual .catch1 h2 {
    font-size: 2rem;
    margin: 0;
  }
  #mainvisual .catch2 p {
    font-size: 1.3rem;
  }
}
#about .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

#about .text {
  width: 100%;
}

#about .text h2 {
  margin-left: 2rem;
  margin-right: 2rem;
}

#about .text p {
  margin-left: 15px;
  margin-right: 15px;
}

#about figure {
  width: 45%;
}

@media print, screen and (min-width: 769px) {
  #about .text {
    width: 56%;
    order: 2;
  }
  #about .text p {
    margin: auto;
    margin-left: 2rem;
    margin-right: 2rem;
  }
  #about figure {
    width: 22%;
  }
  #about figure.image1 {
    order: 1;
  }
  #about figure.image2 {
    order: 3;
  }
}
.instatitle {
  display: flex;
  flex-direction: row;
  justify-content: center;
  height: 40px;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

.instatitle span {
  order: 1;
  display: block;
  width: 40px;
  height: 40px;
  background: url(image/insta.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.instatitle em {
  order: 2;
  font-style: normal;
  padding-left: 10px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}

@media print, screen and (min-width: 450px) {
  .instatitle {
    height: 75px;
  }
  .instatitle span {
    width: 75px;
    height: 75px;
  }
  .instatitle em {
    font-size: 1.875rem;
  }
}
.instalist {
  margin: auto;
  width: 100%;
  text-align: center;
}

.instalist ul {
  margin: 0;
  margin-left: -15px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.instalist ul li {
  list-style: none;
  width: calc(50% - 15px);
  margin-left: 15px;
  margin-bottom: 15px;
  position: relative;
}

.instalist ul li a {
  color: inherit;
  text-decoration: none;
}

.instalist ul li:nth-of-type(5) {
  display: none;
}

@media print, screen and (min-width: 769px) {
  .instalist ul {
    margin-left: -30px;
  }
  .instalist ul li {
    width: calc(20% - 30px);
    margin-left: 30px;
    margin-bottom: 0;
  }
  .instalist ul li:nth-of-type(5) {
    display: block;
  }
}
#outline p {
  margin-left: 15px;
  margin-right: 15px;
}

.outlinelist {
  margin: auto;
  width: calc(100% + 40px);
  text-align: center;
}

.outlinelist ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.outlinelist ul li {
  list-style: none;
  width: 33.33%;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.outlinelist ul li figure {
  width: calc(100% - 40px);
}

.outlinelist ul li:nth-of-type(3) span {
  display: none;
}

.outlinelist ul li span {
  width: 40px;
  height: 40px;
}

@media print, screen and (min-width: 769px) {
  #outline p {
    margin: auto;
    max-width: 640px;
    text-align: center;
  }
  .outlinelist {
    width: calc(100% + 60px);
    margin-top: 1rem;
  }
  .outlinelist ul li figure {
    width: calc(100% - 60px);
  }
  .outlinelist ul li span {
    width: 60px;
    height: 60px;
  }
}
.requestlist {
  margin: auto;
  width: 100%;
  text-align: center;
}

.requestlist ul {
  margin: 0;
  margin-left: -15px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.requestlist ul li {
  list-style: none;
  width: calc(33.33% - 15px);
  margin-left: 15px;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

#request .truck {
  text-align: center;
}

.deliveryshop {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

@media print, screen and (min-width: 769px) {
  .deliveryshop {
    flex-direction: row;
  }
}
#price .read {
  margin: auto;
  max-width: 490px;
}

#price .read figure {
  text-align: center;
}

.tablebase table.option th {
  text-align: left;
  width: 10rem;
}

.tablebase table.option td {
  text-align: left;
}

.tablebase table.option td .image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 230px;
}

.tablebase table.option td .image figure {
  padding-top: 10px;
  padding-bottom: 10px;
}

.tablebase table.option td .image .blockarrow {
  text-align: center;
  margin: auto;
  width: 40px;
  height: 40px;
}

.tablebase table.travelexpenses th {
  text-align: left;
  width: 14rem;
}

@media print, screen and (min-width: 600px) {
  #price .read {
    text-align: center;
  }
  .tablebase table.price th,
  .tablebase table.price td {
    width: 33.33%;
  }
  .tablebase table.option th {
    width: 16rem;
  }
  .tablebase table.option td .image {
    flex-direction: row;
    max-width: 600px;
  }
  .tablebase table.option td .image figure {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
  }
  .tablebase table.option td .image .blockarrow {
    text-align: center;
    margin: auto;
    width: 60px;
    height: 60px;
    transform: rotate(0deg);
  }
  .tablebase table.travelexpenses th {
    width: 16rem;
  }
}
#estimate p {
  text-align: center;
}

.easyestimate {
  margin: auto;
  margin-bottom: 40px;
  max-width: 685px;
}

.easyestimate .bartitle {
  padding: 0.3rem;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.easyestimate ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.easyestimate > ul {
  margin: auto;
  margin-bottom: 0.5rem;
}

.easyestimate ul li {
  list-style: none;
  margin: 5px;
  width: 6.2rem;
}

.easyestimate ul li.t {
  width: 100%;
  font-weight: bold;
}

.easyestimate ul li.t li {
  width: calc(25% - 10px);
}

.easyestimate ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  border: 1px solid #303359;
  padding: 5px 3px;
  font-size: 0.875rem;
  text-decoration: none;
  color: #303359;
  text-align: center;
  border-radius: 10px;
}

.easyestimate ul li a.selected {
  background: #303359;
  color: #ffffff;
}

.easyestimate .amount {
  margin: auto;
  margin-top: 40px;
  max-width: 400px;
  display: flex;
  justify-content: space-between;
  border: 2px solid #8b7857;
  padding: 0.5rem;
  border-radius: 10px;
  background: #ffffff;
}

.easyestimate .amount .t {
  font-size: 1.125rem;
  font-weight: bold;
}

.easyestimate .amount .total span {
  font-size: 1.125rem;
  font-weight: bold;
  margin-right: 0.3rem;
}

@media print, screen and (min-width: 769px) {
  .easyestimate ul li.t {
    width: calc(50% - 10px);
  }
}
/*
@media print,screen and (max-width:$breakpoint_sp) {
//.amount-wrap {
//	display:none;
//}
.amount-wrap.fixed {
	display:block;
	position:fixed;
	bottom:0;
	left:0;
	width:100%;
	height:53px;
	z-index:9001;
	transition:all .5s;	//アニメーション
}
.amount-wrap.fixed .amount {
	margin-top:0;
//	max-width:250px;
width:60%;
}
}
*/
@media screen and (max-width: 768px) {
  #priceexsample .banzai {
    font-size: 1.25rem;
  }
}
.priceexsamplehead {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.priceexsamplehead figure {
  width: 40%;
}

@media print, screen and (min-width: 769px) {
  .priceexsamplehead {
    align-items: flex-start;
  }
}
.bartitle.ourshop {
  background: #fa314f;
}

#priceexsample table {
  margin-bottom: 1rem;
}

#priceexsample table tr th,
#priceexsample table tr td:nth-of-type(2),
#priceexsample table tr td:nth-of-type(3) {
  white-space: nowrap;
}

#priceexsample table tr td:nth-of-type(2),
#priceexsample table tr td:nth-of-type(3) {
  width: 5rem;
}

#priceexsample table tr td {
  text-align: right;
}

#priceexsample table tr td:nth-of-type(1) {
  text-align: left;
}

#priceexsample table tr td .total {
  font-weight: bold;
  font-size: 1.125rem;
}

#priceexsample table tr td .total.ourshop {
  color: #fa314f;
  font-size: 1.25rem;
}

@media print, screen and (min-width: 769px) {
  #priceexsample table tr td:nth-of-type(2),
  #priceexsample table tr td:nth-of-type(3) {
    width: 8rem;
  }
}
.inourshop {
  margin-bottom: 1rem;
  text-align: center;
}

.inourshop p {
  font-weight: bold;
}

.inourshop strong {
  font-weight: bold;
  color: #fa314f;
  font-size: 1.25rem;
}

.inourshop .blockarrow {
  margin: auto;
}

@media print, screen and (min-width: 769px) {
  .inourshop p {
    font-size: 1.5rem;
  }
  .inourshop strong {
    font-size: 1.75rem;
  }
}
#pay p {
  text-align: center;
}

#pay dl {
  margin: auto;
  max-width: 900px;
  margin-bottom: 1rem;
}

#pay dt {
  margin: 0;
  padding: 0;
  font-weight: bold;
}

#pay dd {
  margin: 0;
  padding: 0;
  margin-left: 10px;
}

#pay dd img {
  margin-left: 10px;
  margin-bottom: 10px;
  zoom: 0.8;
}

@media print, screen and (min-width: 769px) {
  #pay dl {
    display: flex;
    justify-content: space-between;
  }
  #pay dt {
    width: 9rem;
  }
  #pay dd {
    width: calc(100% - 9rem);
  }
  #pay dd img {
    zoom: 1;
  }
}
#usageflow .step {
  display: flex;
  flex-direction: column;
}

#usageflow .step figure {
  margin: auto;
  text-align: center;
  width: 50%;
}

#usageflow .blockarrow {
  margin: auto;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

@media print, screen and (min-width: 769px) {
  #usageflow .step {
    flex-direction: row;
    align-items: flex-start;
    max-width: 900px;
    margin: auto;
  }
  #usageflow .step:first-of-type {
    margin-top: 60px;
  }
  #usageflow .step div {
    order: 2;
    width: calc(100% - 280px);
    padding-left: 50px;
  }
  #usageflow .step figure {
    order: 1;
    width: 280px;
    margin: 0;
  }
}
#qa dl {
  margin: auto;
  max-width: 980px;
  margin-bottom: 40px;
  position: relative;
}

#qa dt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-indent: -1.5rem;
  padding-left: 1.5rem;
  padding-right: 40px;
  border-bottom: 2px solid #cccccc;
  cursor: pointer;
  position: relative;
}

#qa dt::before {
  content: "Q";
  color: #205bb2;
  font-size: 1.375rem;
  font-weight: bold;
  padding-right: 0.5rem;
}

#qa dt span::before,
#qa dt span::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  width: 20px;
  height: 2px;
  background: #cccccc;
}

#qa dt span::after {
  background: #cccccc;
  transform: translateY(-50%) rotate(90deg);
  transition: 0.5s;
}

#qa dt span.open::after {
  background: none;
}

#qa dd {
  margin-left: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-indent: -2rem;
  padding-left: 2rem;
  border-bottom: 2px solid #cccccc;
}

#qa dd::before {
  content: "A";
  color: #ff1493;
  font-size: 1.375rem;
  font-weight: bold;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

@media print, screen and (min-width: 769px) {
  #qa dt {
    padding-right: 60px;
  }
  #qa dt span::before,
  #qa dt span::after {
    right: 25px;
  }
}
#inquiry {
  background: #f6efe0;
}

.inquiry_form {
  margin: auto;
  max-width: 980px;
}

.inquiry_form dd p {
  margin-top: 0;
  margin-bottom: 0;
}

.inquiry_form .placeother {
  margin-left: 10px;
  margin-top: 10px;
}

@media print, screen and (min-width: 769px) {
  .inquiry_form.finish p {
    text-align: center;
  }
}
#privacypolicy .inner {
  max-width: 900px;
}

#aboutus dl {
  margin: auto;
  max-width: 700px;
  margin-bottom: 40px;
}

#aboutus dt {
  margin: 0;
  padding: 0.3rem;
  float: left;
  text-align: left;
  width: 4rem;
}

#aboutus dd {
  margin: 0;
  padding: 0.3rem;
  padding-left: 5rem;
  border-bottom: 2px solid #cccccc;
}

@media print, screen and (min-width: 769px) {
  #aboutus dt {
    padding: 1rem;
    width: 6rem;
  }
  #aboutus dd {
    padding: 1rem;
    padding-left: 6rem;
  }
}/*# sourceMappingURL=style.css.map */