@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap");
:root {
  --noto: "Noto Sans JP", sans-serif;
  --rubik: "Rubik", sans-serif;
  --red: #e60012;
  --transition: 0.4s;
}

.rubik {
  font-family: var(--rubik);
}

.pc-b {
  display: block !important;
}
@media screen and (max-width: 768px) {
  .pc-b {
    display: none !important;
  }
}

.sp-b {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp-b {
    display: block !important;
  }
}

.pc-ib {
  display: inline-block !important;
}
@media screen and (max-width: 768px) {
  .pc-ib {
    display: none !important;
  }
}

.sp-ib {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp-ib {
    display: inline-block !important;
  }
}

.pc-f {
  display: flex !important;
}
@media screen and (max-width: 768px) {
  .pc-f {
    display: none !important;
  }
}

.sp-f {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp-f {
    display: flex !important;
  }
}

.img-wrap {
  width: fit-content;
}
.img-wrap img {
  width: 100%;
  height: auto;
}

html {
  font-feature-settings: "palt";
  line-height: 1;
  letter-spacing: 0em;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
}

*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

body {
  margin: 0;
  font-family: var(--noto);
  font-weight: 400;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  margin: 0;
  overflow: visible;
  clear: both;
  color: inherit;
  border-top-width: 1px;
}

address {
  font-style: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 100%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: inherit;
  text-transform: inherit;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border-radius: 0;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-collapse: collapse;
  border-color: inherit;
}

caption {
  text-align: left;
}

td,
th {
  padding: 0;
  vertical-align: top;
}

th {
  font-weight: bold;
  text-align: left;
}

.category-title {
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: bold;
  padding: 15px;
  margin-top: 60px;
  background: #e60012;
}
@media screen and (max-width: 768px) {
  .category-title {
    margin-top: 40px;
    padding: 10px;
    font-size: 18px;
  }
}

.faq__anchors {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .faq__anchors {
    gap: 20px;
  }
}
.faq__anchor {
  position: relative;
  padding-bottom: 5px;
  font-size: 20px;
  line-height: 1.1111111111;
  letter-spacing: 0.06em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .faq__anchor {
    font-size: 16px;
  }
}
.faq__anchor::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  margin-left: 5px;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}
.faq__wrapper {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: solid 1px #fff;
  padding: 30px 0;
}
.faq-item__img-title {
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: bold;
}
.faq-item__qr-flex {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .faq-item__qr-flex {
    flex-direction: column;
  }
}
.faq-item__title-text {
  margin-top: 5px;
  word-break: break-all;
  width: calc(100% - 55px);
}
@media screen and (max-width: 768px) {
  .faq-item__title-text {
    margin-top: 2px;
    width: calc(100% - 40px);
  }
}
.faq-item__title-text img {
  display: block;
  margin-top: 15px;
  width: 80%;
}
@media screen and (max-width: 768px) {
  .faq-item__title-text img {
    width: 100%;
  }
}
.faq-item__content {
  padding-top: 15px;
}
@media screen and (max-width: 768px) {
  .faq-item__content {
    padding-top: 10px;
  }
}
.faq-item__img {
  max-width: 100%;
  width: 100%;
  margin-top: 15px;
}
.faq-item__img.big img {
  width: 745px;
}
.faq-item a {
  text-decoration: underline;
}
@media (hover) {
  .faq-item a:hover {
    text-decoration: none;
  }
}
.faq-item__title, .faq-item__content {
  display: flex;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.06em;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .faq-item__title, .faq-item__content {
    gap: 10px;
    font-size: 14px;
  }
}
.faq-item__q, .faq-item__a {
  font-weight: bold;
  background: #e60012;
  min-width: 40px;
  max-width: 40px;
  min-height: 40px;
  max-height: 40px;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .faq-item__q, .faq-item__a {
    min-width: 30px;
    max-width: 30px;
    min-height: 30px;
    max-height: 30px;
  }
}
.faq-item__q {
  color: #e60012;
  background: #fff;
}
.flex-button {
  margin: 35px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .flex-button {
    gap: 15px;
    flex-direction: column;
  }
}
.flex-button .btn {
  display: flex !important;
  margin: 0;
}
.flex-button .btn:hover {
  text-decoration: none !important;
}

/*# sourceMappingURL=style.css.map */
