@charset "UTF-8";
/***
    The new CSS reset - version 1.8.4 (last updated 14.2.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
* {
  box-sizing: border-box;
}

*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

/* Preferred box-sizing value */
/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input {
  -webkit-user-select: auto;
}

textarea {
  -webkit-user-select: auto;
  white-space: revert;
}

/* revert the 'white-space' property for textarea elements on Safari */
/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
     display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
     - fix for the content editable attribute will work properly.
     - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

* {
  box-sizing: border-box;
}

a {
  color: #2196f3;
  text-decoration: underline;
}

body {
  color: #333;
  font-weight: 400;
  letter-spacing: 1.8px;
  font-family: "Noto Sans JP", sans-serif;
}

:root {
  --easing: cubic-bezier(0.2, 1, 0.2, 1);
  --transition: 0.8s var(--easing);
  --color-base: #f8f8f8;
  --color-gray: #ddd;
  --color-theme: #f5695f;
  --color-theme-darken: #f12617;
  --box-shadow: 0.6rem 0.6rem 0.6rem rgba(0, 0, 0, 0.05), -0.8rem -0.8rem 1.2rem rgba(255, 255, 255, 0.8);
  --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, 0.08), -1rem -1rem 1.5rem #fff;
  --box-shadow-inset: inset 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05), inset -0.8rem -0.8rem 1.2rem #fff;
  --box-shadow-dark: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.1), -0.8rem -0.8rem 1.2rem rgba(255, 255, 255, 0.2);
}

.header01 {
  border-bottom: #e6e6e6 solid 1px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 769px) {
  .header01 {
    flex-direction: column;
  }
}

.header01 .rogo_rap {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 769px) {
  .header01 .rogo_rap {
    flex-direction: column;
    background: #f00;
    width: 100%;
  }
}

.header01 .rogo_rap .rogo a {
  width: 244px;
  height: 68px;
  display: flex;
  align-items: center;
  background: #f00;
  justify-content: center;
}

.header01 .rogo_rap .rogo a img {
  display: block;
  width: 100%;
}

.header01 .rogo_rap .des {
  padding-left: 20px;
}

@media screen and (max-width: 769px) {
  .header01 .rogo_rap .des {
    background-color: #fff;
    padding: 0.25em 0.5em;
    width: 100%;
  }
}

.header01 .op_rap {
  display: flex;
}

@media screen and (max-width: 769px) {
  .header01 .op_rap {
    flex-direction: column;
    display: none;
  }
}

.header01 .op_rap > div:nth-of-type(1) {
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0 15px 0 8px;
}

.header01 .op_rap > div:nth-of-type(1)::before {
  content: "";
  display: block;
  background-size: contain;
  width: 40px;
  height: 40px;
  background-image: url(https://tentshop.jp/tentshop-cms/wp-content/themes/welcart_basic-beldad/custom001/img/top/tel_icon.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.header01 .op_rap > div:nth-of-type(1) span {
  display: block;
  text-align: center;
}

.header01 .op_rap > div:nth-of-type(1) span:nth-of-type(1) {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 2px;
}

.header01 .op_rap > div:nth-of-type(1) span:nth-of-type(2) {
  font-size: 12px;
  line-height: 1.1;
}

.header01 .op_rap > div:nth-of-type(2) {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 0.5em;
  display: none;
}

.header01 .op_rap > div:nth-of-type(2)::before {
  content: "";
  display: block;
  border: solid 1px rgba(0, 0, 0, 0.2);
  background-size: cover;
  width: 50px;
  height: 50px;
  background-image: url(https://tentshop.jp/tentshop-cms/wp-content/themes/welcart_basic-beldad/custom001/img/top/ope.jpg);
  border-radius: 50px;
}

footer {
  padding-bottom: 100px;
}

footer .inner {
  max-width: 1000px;
  margin: 0 auto;
}

footer .inner ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 30px;
}

@media screen and (max-width: 481px) {
  footer .inner ul {
    display: block;
  }
  footer .inner ul li:nth-of-type(1) a {
    margin-top: 40px;
  }
  footer .inner ul li a {
    display: block;
    padding: 20px;
    text-decoration: none;
  }
}

footer .inner ul a {
  font-weight: bold;
}

footer .inner .copy {
  text-align: center;
  display: block;
  font-size: 12px;
}

.sec13 {
  background-color: #2e7fc1;
}

.sec13 h2 {
  text-align: center;
  padding-bottom: 0.5em;
  color: #fff;
  font-size: 28px;
}

.sec13 h2 br {
  display: none;
}

@media screen and (max-width: 769px) {
  .sec13 h2 {
    font-size: 24px;
  }
  .sec13 h2 br {
    display: block;
  }
}

@media screen and (max-width: 481px) {
  .sec13 h2 {
    margin-bottom: 10px;
  }
}

.sec13 .inner {
  max-width: 660px;
  margin: 0 auto;
  overflow: hidden;
  padding: 10px 10px;
}

.sec13 .inner div {
  display: grid;
  grid-template-columns: 71fr 40%;
  align-items: center;
  gap: 30px;
}

.sec13 .inner div::before {
  display: none;
}

.sec13 .inner div::after {
  display: none;
}

@media screen and (max-width: 481px) {
  .sec13 .inner div {
    display: block;
  }
}

.sec13 .inner div a {
  display: block;
}

@media screen and (max-width: 481px) {
  .sec13 .inner div a {
    padding: 0 40px;
  }
}

@media screen and (max-width: 481px) {
  .sec13 .inner div a:nth-of-type(1) {
    margin-bottom: 20px;
  }
}

.pagetop {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 10px;
  z-index: 100;
}

.pagetop a {
  display: block;
  background-color: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.425);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  transform: scale(0.8);
}

@media screen and (max-width: 769px) {
  .pagetop a {
    width: 48px;
    height: 48px;
  }
}

.pagetop a span {
  display: block;
  width: 30px;
  height: 30px;
  border-left: solid 2px #fff;
  border-bottom: solid 2px #fff;
  transform: rotate(135deg);
}

@media screen and (max-width: 769px) {
  .pagetop a span {
    width: 18px;
    height: 18px;
  }
}

main {
  max-width: 980px;
  margin: 0 auto;
}

.sendMess {
  margin-bottom: 30px;
}

.sendMess .inner {
  background-color: #9faab3;
  padding: 20px;
  font-size: 14px;
  color: #fff;
}

.sendMess .inner h5 {
  font-weight: bold;
  margin-bottom: 0.5em;
  text-align: center;
}

.chooser {
  border: none;
}

.chooser label {
  display: flex;
  align-items: center;
  gap: 0 0.5em;
  position: relative;
  padding: 1.5em 0.7em;
  border: 1px solid #2196f3;
  font-weight: bold;
  border-radius: 8px;
  padding-left: 40px;
  cursor: pointer;
  position: relative;
}

.chooser label:has(:checked) {
  color: #fff;
  border: 1px solid #2196f3;
  transform: translateY(0.5);
  background-color: #2196f3;
}

.chooser label::before, .chooser label:has(:checked)::after {
  border-radius: 50%;
  content: "";
}

.chooser label::before {
  position: absolute;
  width: 20px;
  left: 11px;
  height: 20px;
  background: white;
  border: solid 1px #2196f3;
}

.chooser label:has(:checked)::after {
  position: absolute;
  top: 50%;
  left: calc(7px + 0.86em);
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  background-color: #2196f3;
}

.chooser input[type="radio"] {
  display: none;
}

#flame-type {
  display: none;
}

form > section {
  background-repeat: repeat-x;
  background-position: center top;
  padding: 0 20px 40px;
}

@media screen and (max-width: 769px) {
  form > section {
    padding: 0 10px 30px;
  }
}

form > section h4 {
  font-size: 26px;
  margin-bottom: 40px;
  color: #ffffff;
  background-color: #2196f3;
  text-align: center;
  padding: 10px;
  border-radius: 50px;
}

@media screen and (max-width: 769px) {
  form > section h4 {
    font-size: 20px;
  }
}

#tent-type .chooser {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

@media screen and (max-width: 769px) {
  #tent-type .chooser {
    display: flex;
    flex-direction: column;
  }
}

#tent-type .chooser img {
  width: 100%;
  border-radius: 6px;
}

#tent-type .chooser li {
  font-size: 14px;
}

@media screen and (max-width: 769px) {
  #tent-type .chooser li {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 14px;
    font-weight: bold;
  }
}

#tent-type .chooser li > div {
  font-weight: unset;
}

@media screen and (max-width: 769px) {
  #tent-type .chooser li > div {
    margin-bottom: unset;
  }
}

#tent-type .chooser li > div p {
  margin-bottom: 10px;
  color: #2196f3;
  font-weight: bold;
}

#tent-type .chooser li label {
  flex-direction: column;
  padding: 10px;
  text-align: center;
  margin-bottom: 15px;
}

@media screen and (max-width: 769px) {
  #tent-type .chooser li label {
    margin-bottom: unset;
  }
}

#tent-type .chooser li label::before {
  position: absolute;
  width: 20px;
  height: 20px;
  left: 20px;
  top: 20px;
}

#tent-type .chooser li label::after {
  top: 30px;
  left: 30px;
}

#tent-type .chooser li label img {
  margin-bottom: 10px;
}

#tent-type .chooser li label span {
  font-size: 18px;
}

#tent-type .sp_set {
  padding-top: 20px;
  font-size: 14px;
}

.color-option .selectbox {
  margin-bottom: 20px;
}

.color-option select {
  width: 100%;
}

select:disabled {
  opacity: 0.3;
}

#tent-size .standard-size {
  margin-bottom: 20px;
}

@media screen and (max-width: 769px) {
  #tent-size .standard-size {
    margin-bottom: 10px;
  }
}

#tent-size .standard-size ul {
  grid-template-columns: 1fr 1fr 1fr;
}

@media screen and (max-width: 769px) {
  #tent-size .standard-size ul {
    grid-template-columns: 1fr;
  }
}

#tent-size .different-size ul {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-bottom: 30px;
}

@media screen and (max-width: 769px) {
  #tent-size .different-size ul {
    grid-template-columns: 1fr;
  }
}

#tent-size ul {
  display: grid;
  gap: 20px;
}

@media screen and (max-width: 769px) {
  #tent-size ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

#tent-size ul li {
  position: relative;
}

#tent-size ul li .teiban {
  position: absolute;
  z-index: 1;
  transform: scale(0.7);
  right: -5px;
  top: -5px;
}

#tent-size ul li label {
  flex-direction: column;
  text-align: center;
  margin-bottom: 0;
  padding-left: 0;
}

#tent-size ul li label > span:nth-of-type(1) {
  display: block;
  font-size: 1.2em;
  font-weight: bold;
}

#tent-size ul li label > span:nth-of-type(2) {
  display: block;
  color: #e9662a;
  font-weight: bold;
  font-size: 1.4em;
}

#tent-size ul li label > span:nth-of-type(2) .tax {
  display: block;
  font-weight: normal;
  font-size: 0.6em;
  color: #333;
}

#tent-size ul li label small {
  font-size: 0.8em;
}

#tent-size ul li label::before {
  position: absolute;
  width: 20px;
  height: 20px;
  left: 10px;
  top: 10px;
}

#tent-size ul li label::after {
  top: 20px;
  left: 20px;
}

#pole-height .pole {
  text-align: center;
}

#pole-height .chooser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

#pole-height p {
  font-size: 14px;
}

#pole-height .pole-height_rap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

@media screen and (max-width: 769px) {
  #pole-height .pole-height_rap {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

#wall-type .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 0px;
}

@media screen and (max-width: 769px) {
  #wall-type .content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

#wall-type .content .panel {
  background-image: unset;
  padding: unset;
}

#wall-type .content .panel ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

#wall-type .content .garally > div {
  background-image: unset;
  padding: unset;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
}

#wall-type .content .garally p {
  font-size: 14px;
}

#wall-type .content .chooser {
  margin-bottom: 20px;
}

#customize #customize-type-chooser {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

@media screen and (max-width: 769px) {
  #customize #customize-type-chooser {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
}

#customize-marking #customize-marking-type h5 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: bold;
}

#customize-marking #customize-marking-type .chooser {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

@media screen and (max-width: 769px) {
  #customize-marking #customize-marking-type .chooser {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
}

#customize-marking #customize-marking-type .chooser label {
  height: 100%;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

#customize-marking p {
  margin-bottom: 1em;
  font-size: 14px;
}

select {
  border: solid 1px #aaa;
  padding: 1em 1.5em;
  border-radius: 8px;
}

input {
  border: solid 1px #aaa;
  padding: 0.8em;
  width: 100%;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 16px;
  background-color: #fff;
}

textarea {
  border: solid 1px #aaa;
  padding: 0.5em 1em;
  width: 100%;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 18px;
}

#customer ul li {
  display: grid;
  grid-template-columns: 260px 1fr;
  padding: 1em 0.5em;
  border-bottom: 1px solid #ccc;
  align-items: center;
}

@media screen and (max-width: 769px) {
  #customer ul li {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}

#customer ul li .value {
  font-size: 14px;
}

#customer ul li .label {
  margin-bottom: 10px;
}

#customer ul li .label label {
  display: flex;
  align-items: center;
  gap: 10px;
}

#customer ul li .label label::before {
  content: "任意";
  background-color: #9faab3;
  padding: 0.25em 0.5em;
  border-radius: 20px;
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
}

#customer ul li:nth-of-type(3) .label label::before,
#customer ul li:nth-of-type(4) .label label::before,
#customer ul li:nth-of-type(5) .label label::before,
#customer ul li:nth-of-type(6) .label label::before {
  content: "必須";
  background-color: #2196f3;
}

#customer ul li p {
  font-size: 12px;
}

.fileRap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

@media screen and (max-width: 769px) {
  .fileRap {
    display: flex;
    flex-direction: column;
  }
}

.fileRap #customize-marking-file-extensions {
  text-align: center;
  background-color: #f1f1f1;
  border-radius: 20px;
  padding: 30px;
}

.fileRap #customize-marking-file-extensions ul {
  padding-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 20px;
  font-size: 18px;
  width: 70%;
  margin: 0 auto;
}

.fileRap #customize-marking-file-uploader li {
  margin-bottom: 10px;
}

.p-contact-block1 {
  background-color: #9faab3;
  color: #9faab3;
  color: #fff;
  padding: 30px;
  margin-bottom: 100px;
  font-size: 14px;
}

#button {
  background-image: unset !important;
  margin-bottom: 30px;
}

#button .wrapper {
  display: block;
  max-width: 960px;
  margin: 0 auto;
  line-height: 1;
  box-sizing: border-box;
  padding-left: 10px;
  padding-right: 10px;
}

#button .wrapper button[type="submit"] {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  cursor: pointer;
  background: linear-gradient(180deg, #80b85e 0%, #3b9b00 100%);
  box-shadow: 0 10px 2px rgba(0, 0, 0, 0.2);
  color: #fff;
  border: 0;
  min-width: 600px;
  height: 100px;
  font-size: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  line-height: 1;
  padding: 0 20px;
}

@media screen and (max-width: 769px) {
  #button .wrapper button[type="submit"] {
    font-size: 24px;
    min-width: 100%;
  }
}

#button .wrapper button[type="submit"]:hover {
  opacity: 0.6;
}

#button .wrapper button[type="submit"]::after {
  content: "";
  width: 14px;
  height: 14px;
  border-left: solid 3px #fff;
  border-top: solid 3px #fff;
  transform: rotate(135deg);
}

.mainImg {
  margin-bottom: 30px;
}

.mainImg h1 {
  font-size: 32px;
  text-align: center;
  padding-top: 20px;
  color: #2196f3;
  margin-bottom: 30px;
}

.mainImg .inner {
  max-width: 980px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 30px;
}

@media screen and (max-width: 769px) {
  .mainImg .inner {
    display: flex;
    flex-direction: column-reverse;
  }
}

.mainImg .inner .card01 {
  max-width: 500px;
}

.mainImg .inner .doc p {
  padding-bottom: 1em;
}

.kumitate {
  max-width: 980px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
}

@media screen and (max-width: 769px) {
  .kumitate {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.kumitate h3 span {
  border-radius: 30px;
  padding: 0.2em 1em;
  background-color: #dce8ea;
}

.kumitate ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}

@media screen and (max-width: 769px) {
  .kumitate ul {
    grid-template-columns: 1fr 1fr;
  }
}

.kumitate ul li {
  text-align: center;
}

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

.anav .inner {
  text-align: right;
}

.spac {
  margin-bottom: 30px;
}

.spac .inner {
  max-width: 980px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.spac .inner h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 20px;
  color: #2196f3;
}

.spac .inner .rap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px;
}

@media screen and (max-width: 769px) {
  .spac .inner .rap {
    display: flex;
    flex-direction: column-reverse;
  }
}

.spac .inner .rap dl {
  display: grid;
  grid-template-columns: 160px 1fr;
}

@media screen and (max-width: 769px) {
  .spac .inner .rap dl {
    display: flex;
    flex-direction: column;
  }
}

.spac .inner .rap dl dt,
.spac .inner .rap dl dd {
  border-bottom: solid #ccc 1px;
  padding: 1em 0.25em;
}

@media screen and (max-width: 769px) {
  .spac .inner .rap dl dt,
  .spac .inner .rap dl dd {
    text-align: center;
    padding: 0.5em 0.25em;
  }
}

.spac .inner .rap dl dd {
  word-break: break-all;
}

.spac .inner .rap dl dt {
  font-weight: bold;
}

@media screen and (max-width: 769px) {
  .spac .inner .rap dl dt {
    border-bottom: unset;
  }
}

.hide {
  display: none !important;
}

.selectbox {
  position: relative;
  max-width: 252px;
  margin-left: auto;
}

.selectbox::before, .selectbox::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.selectbox::before {
  right: 0;
  display: inline-block;
  width: 2.8em;
  height: 2.8em;
  border-radius: 0 3px 3px 0;
  background-color: #2196f3;
  content: "";
}

.selectbox::after {
  position: absolute;
  top: 50%;
  right: 1.4em;
  transform: translate(50%, -50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-bottom: 1px solid #fff;
  border-right: 2px solid #fff;
  content: "";
}

.selectbox select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-width: 230px;
  height: 2.8em;
  padding: 0.4em 0.8em 0.4em 0.8em;
  border: 2px solid #2196f3;
  border-radius: 3px;
  color: #333333;
  font-size: 1em;
  cursor: pointer;
}

.selectbox select:focus {
  outline: 1px solid #eac50b;
}

#customize section {
  margin-bottom: 30px;
}

#customize h5 {
  font-size: 20px;
  background-color: #9faab3;
  font-weight: bold;
  margin-bottom: 50px;
  padding: 12px;
  border-radius: 40px;
  text-align: center;
  color: #fff;
}

#customize-naming-texts input {
  margin-bottom: 10px;
}

#customize-naming-texts .selectbox {
  margin-bottom: 20px;
}

#customize-naming-texts ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media screen and (max-width: 769px) {
  #customize-naming-texts ul {
    display: flex;
    gap: 0;
    flex-direction: column;
  }
}

#customize-naming-font ul:nth-of-type(1) {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 769px) {
  #customize-naming-font ul:nth-of-type(1) {
    grid-template-columns: 1fr 1fr;
  }
}

#customize-naming-font ul li {
  text-align: center;
}

#customize-naming-font ul li img {
  margin-bottom: 10px;
}

#customize-naming-font input[type="text"] {
  color: #333 !important;
  font-weight: normal;
}

.allprintImage .allprintImageT {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 20px;
  padding-top: 20px;
}

.allprintImage div {
  text-align: center;
}

.allprintImage div img {
  max-width: 70%;
}

.entryBtn {
  padding-top: 20px;
}

.entryBtn a {
  background-color: #333;
  color: #fff;
  padding: 0.5em 1em;
  text-decoration: none;
  border-radius: 10px;
}

#totalPrice {
  position: fixed;
  bottom: 0;
  background-color: #2196f3;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 999;
  width: 100%;
  color: #fff;
}

#totalPrice .inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: right;
  padding: 15px 10px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

@media screen and (max-width: 769px) {
  #totalPrice .inner {
    flex-direction: column;
  }
}

#totalPrice .inner div {
  text-align: right;
}

#totalPrice .inner div > span:nth-of-type(2) span:nth-of-type(1) {
  font-size: 32px;
  font-weight: bold;
}

#totalPrice .inner div > span:nth-of-type(2) span:nth-of-type(2) {
  font-size: 0.5em;
}

#totalPrice .inner div > span:nth-of-type(3) span:nth-of-type(1) {
  font-size: 18px;
}

#totalPrice .inner div > span:nth-of-type(3) span:nth-of-type(2) {
  font-size: 0.5em;
}

#totalPrice .inner p {
  text-align: left;
  font-size: 12px;
  max-width: 400px;
  padding: 0;
}

@media screen and (max-width: 769px) {
  #totalPrice .inner p {
    font-size: 10px;
  }
}

.disabled {
  opacity: 0.5;
}

.color-option {
  display: none;
}

.priceDisplay {
  border: solid 1px #2196f3;
  padding: 0.25em 1em;
  margin-top: 20px;
  border-radius: 50px;
  color: #2196f3;
  text-align: center;
}

.priceDisplay > span {
  padding-left: 10px;
}

.priceDisplay > span span {
  font-size: 0.7em;
}

.wall-price {
  border: solid 1px #2196f3;
  padding: 0.25em 1em;
  border-radius: 50px;
  color: #2196f3;
  text-align: center;
}

.wall-price > span {
  padding-left: 10px;
}

.wall-price > span .en {
  font-size: 0.7em;
}

#option-items-container .inner > ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}

@media screen and (max-width: 769px) {
  #option-items-container .inner > ul {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

#option-items-container .inner > ul li .en {
  font-size: 0.7em;
}

#option-items-container .inner > ul li h5 {
  margin-bottom: 0.5em;
  color: #2196f3;
  font-size: 20px;
}

#option-items-container .inner > ul li img {
  margin-bottom: 10px;
}

#option-items-container .inner > ul li label {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 5px;
}

#option-items-container .inner > ul li .option-price {
  margin-bottom: 5px;
  display: block;
  color: #2196f3;
  font-size: 18px;
  font-weight: bold;
}

#option-items-container .inner > ul li .option-price .en {
  color: #333;
  font-weight: normal;
}

#option-items-container .inner > ul li div {
  font-size: 12px;
}

#option-items-container .inner > ul li div p {
  margin-bottom: 5px;
}

#option-items-container .inner > ul li div ul {
  display: flex;
  gap: 5px 10px;
  flex-wrap: wrap;
}

#spacLink {
  padding-top: 20px;
  text-align: center;
  margin-bottom: 20px;
  cursor: pointer;
}

#spacLink div {
  text-align: center;
  color: #2196f3;
  border: solid 1px #2196f3;
  display: inline-flex;
  padding: 0.5em 2em;
  border-radius: 40px;
  font-size: 20px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}

#spacLink div span:nth-of-type(2) {
  font-size: 14px;
}

.gnav {
  background-color: #2e7fc1;
  padding: 20px;
}

.gnav ul {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
}

.gnav ul li a,
.gnav ul li span {
  font-size: 14px;
}

.gnav ul li a {
  color: #fff;
  text-decoration: none;
}

.gnav ul li a span {
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}

.gnav ul li a:hover {
  transform: scale(1.2) !important;
}

.gnav ul li a:hover span {
  opacity: 0.9;
}

.gnav ul li span {
  background-color: #fff;
  color: #2e7fc1;
  padding: 0.5em 1em;
  border-radius: 400px;
}

#tent-tare .wrapper > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media screen and (max-width: 481px) {
  #tent-tare .wrapper > div {
    gap: 10px;
  }
}

@media screen and (max-width: 769px) {
  #tent-tare .wrapper > div {
    grid-template-columns: 1fr;
  }
}

#tent-tare .wrapper > div > div:nth-of-type(1) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

#tent-tare .wrapper > div > div:nth-of-type(2) ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ms #flame-type2 ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media screen and (max-width: 769px) {
  .ms #flame-type2 ul {
    display: flex;
    flex-direction: column;
  }
}

.ms #flame-type2 ul li label {
  margin-bottom: 0.5em;
}

.ms #flame-type2 ul li div h3 {
  font-weight: bold;
  font-size: 1.1em;
  color: #2196f3;
  margin-bottom: 10px;
}

.ms #flame-type2 ul li div p {
  font-size: 14px;
}

.ms #tent-size ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 15px;
}

@media screen and (max-width: 769px) {
  .ms #tent-size ul {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
  }
}

.ms #tent-size ul li label {
  padding: 10px;
}

.ms #tent-size ul li label div {
  gap: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ms #tent-size ul li label div img {
  width: 100%;
  height: 78px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
}

.ms #tent-size ul li label div span {
  display: block;
  word-break: break-all;
}

.ms #tent-size ul li label div span span {
  font-size: 14px;
}

.ms #tent-size ul li label div span span:nth-of-type(2) {
  font-weight: normal;
  font-size: 10px;
}

.ms #tent-color ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.ms #tent-color ul li label {
  font-size: 12px;
  display: flex;
  font-weight: normal;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  justify-content: center;
  padding: 10px;
  justify-content: flex-start;
}

.ms #tent-color ul li label::before {
  left: 10px;
}

.ms #tent-color ul li label::after {
  top: 20px;
  left: 20px;
}

.ms #tent-color ul li label img {
  width: 100%;
  margin-bottom: 5px;
}

.ms #tent-color #colorGroupA li {
  max-width: 100px;
}

.ms #tent-color #colorGroupC li {
  max-width: 110px;
}

.ms #tent-color #colorGroupB li {
  max-width: 120px;
}

.ms #tent-color #colorGroupD li {
  max-width: 120px;
}

.ms #tent-color #colorGroupE li {
  max-width: 120px;
}

.ms #tent-color #colorGroupF li {
  max-width: 120px;
}

.ms #colorGroupB img,
.ms #colorGroupD img,
.ms #colorGroupE img,
.ms #colorGroupF img {
  padding-top: 25px;
}

.ms #tent-wall .wrapper > div {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
}

@media screen and (max-width: 769px) {
  .ms #tent-wall .wrapper > div {
    display: flex;
    flex-direction: column;
  }
}

.ms #tent-wall .wrapper > div .imgArea {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ms #tent-wall .wrapper > div .pArea label {
  display: block;
  margin-bottom: 10px;
}

.ms #tent-wall .wrapper > div .pArea label h5 {
  color: #2196f3;
  text-align: right;
}

.ms #tent-wall .wrapper > div .wprics {
  text-align: right;
  margin-bottom: 10px;
}

.ms #tent-wall .wrapper > div .wprics div {
  font-size: 14px;
}

.ms #tent-wall .wrapper > div .wprics div:nth-of-type(2) span {
  font-size: 18px;
  color: #2196f3;
}

.ms #tent-wall .wrapper > div #wall-wide {
  padding-bottom: 10px;
}

.ms #wall-color ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.ms #wall-color ul li {
  width: 100px;
}

.ms #wall-color ul li label {
  font-size: 12px;
  flex-direction: column;
  padding: 5px;
}

.ms #wall-color ul li label::before {
  left: 10px;
  top: 10px;
}

.ms #wall-color ul li label::after {
  left: 20px;
  top: 20px;
}

.ms #wall-color ul li label img {
  width: 100%;
}

.ms #wall-color ul li label span {
  display: block;
}

.ms #wall-color .kome {
  padding: 20px;
  font-size: 16px;
  display: flex;
  gap: 2px;
  background: #eedbdc;
  margin-top: 30px;
  border-radius: 10px;
}

.kome {
  padding: 20px;
  font-size: 14px;
  display: flex;
  gap: 2px;
}

.kome::before {
  content: "*";
  padding-top: 3px;
}

.youtube iframe {
  max-width: 150px;
  max-height: 110px;
}

.mioji-color {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

@media screen and (max-width: 769px) {
  .mioji-color {
    justify-content: center;
  }
}

.mioji-color li {
  background-color: #ccff00;
  min-width: 60px;
  font-size: 14px;
  border-radius: 400px;
  text-align: center;
  padding: 0.75em 0.5em;
  border: solid 1px rgba(0, 0, 0, 0.1);
  color: #000000;
}

.mioji-color li:nth-of-type(1) {
  color: #ffffff;
  background-color: #020202;
}

.mioji-color li:nth-of-type(2) {
  color: #000000;
  background-color: #ffffff;
}

.mioji-color li:nth-of-type(3) {
  background-color: #f6ff00;
}

.mioji-color li:nth-of-type(4) {
  background-color: #ffe600;
}

.mioji-color li:nth-of-type(5) {
  background-color: #ff4400;
  color: #fff;
}

.mioji-color li:nth-of-type(6) {
  background-color: #ff0000;
  color: #fff;
}

.mioji-color li:nth-of-type(7) {
  background-color: #9cf6a5;
}

.mioji-color li:nth-of-type(8) {
  background-color: #065a14;
  color: #fff;
}

.mioji-color li:nth-of-type(9) {
  background-color: #e0318e;
  color: #fff;
}

.mioji-color li:nth-of-type(10) {
  background: #e2e2e2;
  background: linear-gradient(133deg, #e2e2e2 0%, #797979 100%);
  color: #fff;
  text-shadow: 2px 0 2px rgba(0, 0, 0, 0.1);
}

.mioji-color li:nth-of-type(11) {
  background-color: #44abff;
  color: #fff;
}

.mioji-color li:nth-of-type(12) {
  background-color: #008cff;
  color: #fff;
}

.mioji-color li:nth-of-type(13) {
  background-color: #06508d;
  color: #fff;
}

.mioji-color li:nth-of-type(14) {
  background-color: #002c50;
  color: #fff;
}

.mioji-color-ms {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

@media screen and (max-width: 769px) {
  .mioji-color-ms {
    justify-content: center;
  }
}

.mioji-color-ms li {
  background-color: #ccff00;
  min-width: 60px;
  font-size: 14px;
  border-radius: 400px;
  text-align: center;
  padding: 0.75em 0.5em;
  border: solid 1px rgba(0, 0, 0, 0.1);
  color: #000000;
}

.mioji-color-ms li:nth-of-type(1) {
  color: #ffffff;
  background-color: #020202;
}

.mioji-color-ms li:nth-of-type(2) {
  color: #000000;
  background-color: #ffffff;
}

.mioji-color-ms li:nth-of-type(3) {
  background-color: #f6ff00;
}

.mioji-color-ms li:nth-of-type(4) {
  background-color: #ffe600;
}

.mioji-color-ms li:nth-of-type(5) {
  background-color: #ff4400;
  color: #fff;
}

.mioji-color-ms li:nth-of-type(6) {
  background-color: #a50d08;
  color: #fff;
}

.mioji-color-ms li:nth-of-type(7) {
  background-color: #023793;
  color: #fff;
}

.mioji-color-ms li:nth-of-type(8) {
  background-color: #053559;
  color: #fff;
}

.mioji-color-ms li:nth-of-type(9) {
  background-color: #00a7eb;
  color: #fff;
}

.mioji-color-ms li:nth-of-type(10) {
  background-color: #2d703a;
  color: #fff;
}

.mioji-color-ms li:nth-of-type(11) {
  background-color: #265f3c;
  color: #fff;
}

.mioji-color-ms li:nth-of-type(12) {
  background-color: #034a3a;
  color: #fff;
}

.mioji-color-ms li:nth-of-type(13) {
  color: #fff;
  background: #e4c600;
  background: linear-gradient(180deg, #ebd85c 0%, #7b6300 100%);
  text-shadow: 2px 0 2px rgba(0, 0, 0, 0.1);
}

.mioji-color-ms li:nth-of-type(14) {
  background-color: #002c50;
  color: #fff;
  background: #797979;
  background: linear-gradient(180deg, whitesmoke 0%, #797979 100%);
  text-shadow: 2px 0 2px rgba(0, 0, 0, 0.1);
}

.mioji-color-ms li:nth-of-type(15) {
  background-color: #354048;
  color: #fff;
  background: #e2e2e2;
  background: linear-gradient(180deg, #cbd3da 0%, #354048 100%);
  text-shadow: 2px 0 2px rgba(0, 0, 0, 0.1);
}

#customize-naming-color {
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
  padding-bottom: 40px;
}

.lity-iframe-container iframe {
  background-color: #fff;
}

.coution {
  text-align: center;
  padding: 20px;
  border: solid red 2px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: 600px;
  border-radius: 20px;
  align-content: center;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
}

@media screen and (max-width: 769px) {
  .coution {
    display: block;
    max-width: unset;
  }
}

.coution span {
  color: red;
}

.printImg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 39px 20px;
  align-items: center;
}

@media screen and (max-width: 769px) {
  .printImg {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.ms a {
  color: #d95863;
}

.ms .gnav {
  background-color: #d95863;
  background: #d95863;
  background: linear-gradient(180deg, #d95863 0%, #cf3e4a 100%);
}

.ms .gnav ul li span {
  color: #d95863;
}

.ms .gnav ul li a span {
  color: #fff;
}

.ms .mainImg h1 {
  color: #d95863;
}

.ms form > section h4 {
  background-color: #d95863;
}

.ms .chooser label:has(:checked) {
  border: 1px solid #d95863;
  background-color: #d95863;
}

.ms .chooser label:has(:checked)::after {
  background-color: #d95863;
}

.ms .chooser label::before {
  border: solid 1px #d95863;
}

.ms .chooser label {
  border: solid 1px #d95863;
}

.ms #flame-type2 ul li div h3 {
  color: #d95863;
}

.ms .priceDisplay {
  border: solid 1px #d95863;
  color: #d95863;
}

.ms #totalPrice {
  background-color: #d95863;
}

.ms .sendMess .inner {
  background-color: #b39f9f;
}

.ms #spacLink div {
  color: #d95863;
  border: solid 1px #d95863;
}

.ms #option-items-container .inner > ul li h5 {
  color: #d95863;
}

.ms #option-items-container .inner > ul li .option-price {
  color: #d95863;
}

.ms #tent-wall .wrapper > div .wprics div:nth-of-type(2) span {
  color: #d95863;
}

.ms #tent-wall .wrapper > div .pArea label h5 {
  color: #d95863;
}

.ms .selectbox select {
  border: 2px solid #d95863;
}

.ms .selectbox::before {
  background-color: #d95863;
}

.ms #customize h5 {
  background-color: #b39f9f;
}

.ms #customer ul li:nth-of-type(3) .label label::before,
.ms #customer ul li:nth-of-type(4) .label label::before,
.ms #customer ul li:nth-of-type(5) .label label::before,
.ms #customer ul li:nth-of-type(6) .label label::before {
  background-color: #d95863;
}

.ms .sec13 {
  background-color: #d95863;
}

.ms .spac .inner .rap {
  grid-template-columns: 1fr;
}

.ms .spac .inner .rap div:nth-of-type(2) {
  display: none;
}

.ms .kumitate img {
  filter: hue-rotate(137deg) saturate(86%);
}

.ms .kumitate h3 span {
  background-color: #b39f9f;
  color: #fff;
}

.ms .sec13 .inner div a:nth-of-type(2) img {
  filter: hue-rotate(129deg) saturate(72%);
}

.ms .p-contact-block1 {
  background-color: #b39f9f;
}

.ms #customer ul li .label label::before {
  background-color: #b39f9f;
}

.ms .printImg figure:nth-of-type(1) img {
  filter: hue-rotate(144deg) saturate(86%);
}

.mesh .priceDisplay {
  border: solid 1px #00BCD4;
  color: #00BCD4;
}

.mesh #tent-wall .wrapper > div .wprics div:nth-of-type(2) span {
  color: #00BCD4;
}

.mesh .chooser label:has(:checked)::after {
  background-color: #00BCD4;
}

.mesh .chooser label::before {
  border: solid 1px #00BCD4;
}

.mesh #tent-wall .wrapper > div .pArea label h5 {
  color: #00BCD4;
}

.mesh #spacLink div {
  color: #00BCD4;
  border: solid 1px #00BCD4;
}

.mesh form > section h4 {
  background-color: #00BCD4;
}

.mesh .sec13 {
  background-color: #00BCD4;
}

.mesh .chooser label:has(:checked) {
  border: 1px solid #00BCD4;
  background-color: #00BCD4;
}

.mesh .chooser label {
  border: solid 1px #00BCD4;
}

.mesh #flame-type2 ul li div h3 {
  color: #00BCD4;
}

.mesh #option-items-container .inner > ul li h5 {
  color: #00BCD4;
}

.mesh #option-items-container .inner > ul li .option-price {
  color: #00BCD4;
}

.mesh .selectbox::before {
  background-color: #00BCD4;
}

.mesh .selectbox select {
  border: 2px solid #00BCD4;
}

.mesh a {
  color: #00BCD4;
}

.mesh .sec13 .inner div a:nth-of-type(2) img {
  filter: hue-rotate(330deg) saturate(162%);
}

.mesh #totalPrice {
  background-color: rgba(0, 0, 0, 0.8);
}

.mesh .kumitate img {
  filter: hue-rotate(7deg) saturate(106%);
}

.mesh #tent-size ul li label div {
  padding-top: 20px;
}

.mesh #tent-size ul li label div img {
  width: 100%;
  height: 48px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  filter: hue-rotate(218deg) saturate(212%);
}

.mesh #colorGroupA img,
.mesh #colorGroupB img,
.mesh #colorGroupC img,
.mesh #colorGroupD img,
.mesh #colorGroupE img,
.mesh #colorGroupF img {
  margin-top: 29px !important;
  padding-top: 0px;
}

.mesh .choice img {
  background-color: #fff;
}

.mesh #tent-wall .chooser label:has(:checked)::after {
  position: absolute;
  top: calc(50% + -2px);
  left: calc(7px + 0.86em);
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  background-color: #2196f3;
}

.mesh .header {
  background-color: #00BCD4;
}

.mesh .header .inner {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-around;
  align-items: center;
  padding: 10px 20px;
}

@media screen and (max-width: 769px) {
  .mesh .header .inner {
    flex-direction: column;
    gap: 10px;
  }
}

.mesh .header .inner .rogo a {
  text-decoration: none;
  font-size: 20px;
  color: #fff;
}

@media screen and (max-width: 769px) {
  .mesh .header .inner .rogo a {
    text-align: center;
  }
}

.mesh .header .inner .des {
  font-size: 13px;
  color: #fff;
}

@media screen and (max-width: 769px) {
  .mesh .header .inner .des {
    text-align: center;
  }
}

.mesh .header .inner .op_rap .tell div span {
  display: block;
}

.mesh .header .inner .op_rap .tell div span:nth-of-type(1) {
  font-size: 20px;
  display: flex;
  gap: 0px;
  align-items: center;
  font-weight: bold;
  color: #fff;
}

.mesh .header .inner .op_rap .tell div span:nth-of-type(1):before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: left center;
  background-image: url(https://tentshop.jp/tentshop-cms/wp-content/themes/welcart_basic-beldad/custom001/img/top/tel_icon_w.svg);
}

.mesh .header .inner .op_rap .tell div span:nth-of-type(2) {
  font-size: 13px;
  text-align: right;
  color: #fff;
}

.mesh .mainImg {
  margin-bottom: 30px;
}

.mesh .mainImg .tentImg {
  background: #ffc2ed;
  background: linear-gradient(313deg, #ffc2ed 0%, #faffb6 100%);
  margin-bottom: 30px;
}

.mesh .mainImg .tentImg .bg {
  background-image: url(https://tentshop.jp/customtent/img/kantan3/09.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
}

.mesh .mainImg .tentImg .bg .tent {
  background-image: url(https://tentshop.jp/customtent/img/item/11/01.png);
  background-repeat: no-repeat;
  background-size: 810px;
  background-position: center 20px;
  display: flex;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 250px;
}

@media screen and (max-width: 1360px) {
  .mesh .mainImg .tentImg .bg .tent {
    background-size: 760px;
    background-position: center 35px;
  }
}

@media screen and (max-width: 769px) {
  .mesh .mainImg .tentImg .bg .tent {
    min-height: 160px;
    background-size: 470px;
    background-position: center 25px;
  }
}

@media screen and (max-width: 481px) {
  .mesh .mainImg .tentImg .bg .tent {
    background-size: 90%;
    background-position: center -68%;
  }
}

.mesh .mainImg .tentImg .bg .tent h1 {
  font-size: 32px;
  text-align: center;
  width: 100%;
  color: #000;
  text-shadow: 0 2px 0px #fff;
}

.mesh .mainImg .bhead {
  position: relative;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}

@media screen and (max-width: 769px) {
  .mesh .mainImg .bhead {
    flex-direction: column;
  }
}

.mesh .mainImg .bhead:before {
  content: "";
  width: 50px;
  height: 50px;
  background-image: url(../img/ka/13.svg) !important;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
}

.mesh .mainImg .bhead div {
  border-bottom: solid 2px e50012;
}

@media screen and (max-width: 769px) {
  .mesh .mainImg .bhead div span {
    display: block;
  }
}

.mesh .mainImg .bhead div span:nth-of-type(1) {
  font-size: 28px;
  padding-right: 20px;
  color: #333;
}

@media screen and (max-width: 769px) {
  .mesh .mainImg .bhead div span:nth-of-type(1) {
    font-size: 20px;
  }
}

.mesh .mainImg .bhead div span:nth-of-type(2) {
  color: #e50012;
  font-size: 18px;
}

.mesh .mainImg .bhead .bach01 {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  width: 100px;
  height: 75px;
  display: block;
  background-image: url(../img/svg/11.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: -999px;
  overflow: hidden;
}

.mesh .mainImg .inner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  background: #ffeb3b;
  align-items: center;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 769px) {
  .mesh .mainImg .inner {
    display: flex;
    flex-direction: column-reverse;
  }
}

.mesh .mainImg .inner .card01 {
  max-width: 500px;
}

@media screen and (max-width: 481px) {
  .mesh .mainImg .inner .card01 {
    max-width: 481px;
    width: 100%;
  }
}

.mesh .mainImg .inner .doc {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  font-size: 16px;
}

.mesh .mainImg .inner .doc ul {
  display: flex;
  gap: 4px;
}

.mesh .mainImg .inner .doc ul li {
  font-size: 14px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 0.05em 0.5em;
  border-radius: 10px;
}

.mesh .mainImg .inner2 {
  max-width: 980px;
  margin: 0 auto;
  background-color: #ccc;
  padding: 10px;
  text-align: center;
  background: linear-gradient(313deg, #ffc2ed 0%, #faffb6 100%);
}

.mesh .mainImg .inner2 ul {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
  justify-content: center;
}

.mesh .mainImg .inner2 ul li {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0.05em 0.5em;
  border-radius: 10px;
}

.mesh .mainImg .inner2 ul li a {
  color: #fff;
}
