@charset "UTF-8";
.fs-l-main {
  max-width: 100%;
  padding: 0 !important;
}

.g-ttl {
  position: relative;
  margin: 0;
  padding-bottom: 0.75em;
  color: var(--pt-clr-textHeader-1);
  font-size: var(--pt-fz-xxl);
  font-family: var(--pt-font-family-sub);
  text-align: center;
}
.g-ttl::after {
  display: block;
  position: absolute;
  bottom: 0%;
  left: 50%;
  width: min(20%, 100px);
  height: 1px;
  transform: translate(-50%, 0%);
  background-color: var(--pt-clr-fiv);
  content: "";
}

.g-subttl {
  font-size: var(--pt-fz-xl);
  line-height: var(--pt-lh-hdlg);
  font-family: var(--pt-font-family-sub);
  text-align: center;
}

.g-desc-text {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  font-weight: 400;
  font-size: var(--pt-fz-md);
  line-height: var(--pt-lh-hdlg);
  text-align: center;
}

.g-flex-c {
  display: flex;
  align-items: center;
  justify-content: center;
}

.g-w-sm {
  max-width: var(--pt-spa-max-width-sm);
  margin-right: auto;
  margin-left: auto;
}

.g-w-smh {
  max-width: min(75%, var(--pt-spa-btn-ml));
  margin-right: auto;
  margin-left: auto;
}

.g-menuList {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 0.8rem;
}
@media (min-width: 640px) and (max-width: 899px) {
  .g-menuList {
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  }
}
@media screen and (min-width: 900px) {
  .g-menuList {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
  }
}
.g-menuList__li {
  display: grid;
  grid-template-rows: 100px auto;
  grid-template-columns: 1fr;
  justify-content: center;
  border: 1px solid var(--pt-clr-fiv);
}
@media screen and (min-width: 640px) {
  .g-menuList__li {
    grid-template-rows: 150px auto;
  }
}
.g-menuList__li--h {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.4rem 0;
  background-color: var(--pt-clr-fiv);
}
.g-menuList__li--h img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
  aspect-ratio: 2/1;
  margin-top: -1em;
     object-position: center;
}
@media screen and (min-width: 640px) {
  .g-menuList__li--h img {
    margin-top: 0em;
  }
}
.g-menuList__li--h p {
  margin: 0;
  color: #fff;
  line-height: var(--pt-lh-hd);
  text-align: center;
}
.g-menuList__li--b {
  padding: 1.6rem var(--pt-spa-both-side) 0;
}
@media screen and (min-width: 440px) {
  .g-menuList__li--b {
    padding: 1.6rem 1.6rem 0;
  }
}
.g-menuList__li--b ul {
  margin: 0;
}
@media screen and (max-width: 439px) {
  .g-menuList__li--b ul {
    font-size: var(--pt-fz-smh);
  }
}
.g-menuList__li--f {
  display: flex;
  align-items: flex-end;
  padding: 1.6rem var(--pt-spa-both-side);
}
@media screen and (min-width: 440px) {
  .g-menuList__li--f {
    padding: 1.6rem;
  }
}
@media screen and (max-width: 439px) {
  .g-menuList__li--f {
    --_b-height:3;
  }
}
.g-menuList__li--other {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr;
  justify-content: center;
  gap: 0.8rem;
}
@media screen and (min-width: 900px) {
  .g-menuList__li--other {
    gap: 1.6rem;
  }
}
.g-menuList__li--a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.4rem 0;
  border: 1px solid var(--pt-clr-fiv);
  background-color: var(--pt-clr-fiv);
}
@media (hover: hover) {
  .g-menuList__li--a:hover {
    opacity: 0.85;
  }
}
.g-menuList__li--a img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
  aspect-ratio: 2/1;
     object-position: center;
}
.g-menuList__li--a p {
  margin: 0;
  color: #fff;
  text-align: center;
}
.g-menuList__faq-and-contact {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  justify-content: center;
  max-width: var(--pt-spa-max-width-sm);
  margin-right: auto;
  margin-left: auto;
  gap: 0.8rem;
}
@media screen and (min-width: 900px) {
  .g-menuList__faq-and-contact {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
}

.g-bg-1 {
  background-color: var(--pt-clr-bg-2);
}

.g-sec-ttl {
  text-align: center;
}
.g-sec-ttl img {
  width: min(33%, 80px);
}
.g-sec-ttl h2 {
  margin: 0.75em auto 0;
}
.g-sec-ttl.g-sec-ttl--sm img {
  width: min(33%, 60px);
}

.g-secFooter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0.8rem;
       column-gap: 0.8rem;
  row-gap: 1.6rem;
}
@media screen and (min-width: 640px) {
  .g-secFooter {
    -moz-column-gap: 1.6rem;
         column-gap: 1.6rem;
  }
}
.g-secFooter p {
  margin: 0;
  text-align: center;
}

.g-secFirst-1 {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  justify-content: center;
  max-width: var(--pt-spa-max-width-article);
  margin-right: auto;
  margin-left: auto;
  -moz-column-gap: var(--pt-spa-section-inn-s);
       column-gap: var(--pt-spa-section-inn-s);
  row-gap: calc(var(--pt-spa-section-inn) + var(--pt-spa-section-inn-s));
}
@media screen and (max-width: 899px) {
  .g-secFirst-1 {
    margin-top: 6.4rem;
    margin-bottom: 6.4rem;
  }
}
.g-secFirst-1__arti {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 400px;
  margin-right: auto;
  margin-left: auto;
}
.g-secFirst-1__img {
  width: 75%;
}
@media screen and (min-width: 900px) {
  .g-secFirst-1__img {
    width: 100%;
  }
}
.g-secFirst-1__img img {
  width: 100%;
}
.g-secFirst-1__ttl {
  margin-top: 1.75em;
  margin-bottom: 1.75em;
}
.g-secFirst-1__ttl.g-secFirst-1__ttl--dd {
  width: min(60%, 175px);
}
.g-secFirst-1__ttl.g-secFirst-1__ttl--le {
  width: min(60%, 100px);
  transform: translateY(-10%);
}
.g-secFirst-1__b {
  width: 80%;
  max-width: 400px;
}
@media screen and (min-width: 900px) {
  .g-secFirst-1__b {
    width: 100%;
  }
}
.g-secFirst-1__b > *:nth-child(1) {
  margin-top: 0;
}
.g-secFirst-1__b--a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.4rem;
}

.g-line-q {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
  max-width: var(--pt-spa-max-width-article);
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  gap: 0.8rem;
  list-style: none;
}
@media screen and (min-width: 900px) {
  .g-line-q {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
}
.g-line-q li {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: var(--pt-spa-both-side);
  gap: 1em;
  border: 1px solid var(--pt-clr-fiv);
  font-size: var(--pt-fz-md);
  line-height: var(--pt-lh-hd);
}
.g-line-q li::before {
  display: flex;
  content: "Q";
  color: var(--pt-clr-thr);
  font-weight: 700;
  font-size: 1.3em;
}
.g-line-q li::after {
  display: flex;
  justify-content: flex-end;
  content: "";
}
.g-line-a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: var(--pt-spa-max-width-sm);
  margin: var(--pt-spa-section-inn) auto;
  padding: 0;
  gap: 0.8rem;
  list-style: none;
}
@media screen and (min-width: 900px) {
  .g-line-a {
    gap: 1.6rem;
  }
}
.g-video-lg {
  width: 100%;
  max-width: 500px;
  margin-right: auto;
  margin-left: auto;
  pointer-events: none;
}
.g-video-lg video {
  aspect-ratio: 1/1.6;
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
  display: block;
     object-fit: cover;
}
.g-usefulList {
  padding: 4.8rem 0;
  background-color: var(--pt-clr-bg-2);
}
.g-usefulList__inn {
  padding-right: var(--pt-spa-both-side);
  padding-left: var(--pt-spa-both-side);
}
.g-usefulList__inn > * + * {
  margin-top: 0.8rem;
}
@media screen and (min-width: 900px) {
  .g-usefulList__inn > * + * {
    margin-top: 1.6rem;
  }
}
.g-usefulList__inn > *:nth-of-type(1)::before {
  content: "- 1 -";
}
.g-usefulList__inn > *:nth-of-type(2)::before {
  content: "- 2 -";
}
.g-usefulList__inn > *:nth-of-type(3)::before {
  content: "- 3 -";
}
.g-usefulList__inn > *:nth-of-type(4)::before {
  content: "- 4 -";
}
.g-usefulList .g-useful::before {
  display: block;
  margin-bottom: 1em;
  color: var(--pt-clr-fou);
  font-size: var(--pt-fz-xl);
  line-height: 1;
  font-family: var(--pt-font-family-sub);
  text-align: center;
}

.g-useful {
  max-width: var(--pt-spa-max-width-sm);
  margin-right: auto;
  margin-left: auto;
  padding: var(--pt-spa-section-inn-s) calc(var(--pt-spa-both-side) * 2);
  background-color: #fff;
}
.g-useful > * + * {
  margin-top: var(--pt-spa-section-inn-s);
}
.g-useful > * + *:nth-child(1) {
  margin-top: 0;
}
.g-useful > * + *:nth-last-child(1) {
  margin-bottom: 0;
}
.g-useful picture {
  display: block;
}

.g-deliList > * + * {
  margin-top: 0.8rem;
}
@media screen and (min-width: 900px) {
  .g-deliList > * + * {
    margin-top: 1.6rem;
  }
}

.g-deli {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: min(28%, 150px) 1fr;
  row-gap: 1.6rem;
  border: 1px solid var(--pt-clr-bd-l2);
  -moz-column-gap: 2.4rem;
       column-gap: 2.4rem;
  align-items: center;
}
.g-deli h4 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 0;
  padding: var(--pt-spa-both-side) 0;
  background-color: var(--pt-clr-bg-2);
  text-align: center;
}
.g-deli ul {
  margin: 0;
  padding: var(--pt-spa-both-side) 0;
  list-style: none;
}
.g-deli ul img {
  width: 0.9em;
}
.g-deli li {
  display: flex;
  align-items: center;
  gap: 0.75em;
  font-size: var(--pt-fz-ml);
}
.g-holiday-text {
  color: #c1272d;
}

.g-holiday {
  border: 1px solid #c1272d;
}
.g-holiday h4 {
  margin: 0;
  padding: 0.75em var(--pt-spa-both-side);
  background-color: #c1272d;
  color: #fff;
  font-size: var(--pt-fz-lg);
  line-height: 1;
  text-align: center;
}
.g-payment-1 {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  justify-content: center;
  max-width: var(--pt-spa-max-width-article);
  margin-right: auto;
  margin-left: auto;
  -moz-column-gap: 1.6rem;
       column-gap: 1.6rem;
  row-gap: 0.8rem;
}
.g-payment-1__arti {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 400px;
  margin-right: auto;
  margin-left: auto;
  padding: var(--pt-spa-both-side);
  border: 1px solid var(--pt-clr-bd-l2);
}
.g-payment-1__ttl {
  width: 100%;
  margin-top: 0;
  padding-bottom: var(--pt-spa-both-side);
  border-bottom: 1px solid var(--pt-clr-bd-l2);
  text-align: center;
}
.g-payment-1__ul {
  margin: 0 auto;
  font-size: var(--pt-fz-md);
}
.g-payment-1__ul.g-payment-1__ul--x {
  padding: 0;
  list-style: none;
}
.g-payment-1__ul.g-payment-1__ul--x li {
  position: relative;
  padding-left: 1.5em;
}
.g-payment-1__ul.g-payment-1__ul--x li::before {
  z-index: 3;
  position: absolute;
  top: 0px;
  left: 0px;
  content: "×";
  color: #c1272d;
}

.pt-returnP-1__table {
  margin-right: auto;
  margin-left: auto;
}