@charset "UTF-8";
:root {
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);
}

body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

img,
svg {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: top;
  pointer-events: none;
  /* SPの長押し禁止 */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  user-select: none;
}

figure {
  margin: 0;
}

sup {
  vertical-align: top;
  font-size: smaller;
}

input[type=text],
input[type=number] {
  appearance: none;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #000;
  width: 100%;
  line-height: 1.5;
}

select {
  appearance: none;
  padding: 12px;
  border: 1px solid #000;
  width: 100%;
  cursor: pointer;
}

input[type=radio] {
  --lh: 1.5;
  line-height: var(--lh, 1.5);
  padding: 0;
  margin: 0;
  opacity: 0;
  width: auto;
  position: absolute;
}
input[type=radio] + span {
  margin: 0;
  padding: 0 0 0 1.2380952381em;
  display: inline-block;
  line-height: var(--lh, 1.5);
  cursor: pointer;
  position: relative;
}
input[type=radio] + span::before {
  position: absolute;
  content: "";
  top: calc(var(--lh, 1.5) / 2 * 1em);
  left: 0;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid currentColor;
  border-radius: 50%;
  width: 0.8571428571em;
  height: 0.8571428571em;
  display: block;
}
input[type=radio] + span::after {
  content: "";
  position: absolute;
  top: calc(var(--lh, 1.5) / 2 * 1em);
  left: calc((0.8571428571em - 0.4761904762em) / 2);
  transform: translateY(-50%);
  display: block;
  background: currentColor;
  border-radius: 50%;
  width: 0.4761904762em;
  height: 0.4761904762em;
  opacity: 0;
  transition: opacity 0.3s ease 0s;
}
input[type=radio]:focus-visible + span::before {
  outline: -webkit-focus-ring-color auto 5px;
}
input[type=radio]:checked + span::after {
  opacity: 1;
}

input[type=checkbox] {
  --lh: 1.5;
  line-height: var(--lh, 1.5);
  padding: 0;
  margin: 0;
  opacity: 0;
  width: auto;
  position: absolute;
  vertical-align: middle;
}
input[type=checkbox] + span {
  display: inline-block;
  cursor: pointer;
  padding-left: 1.1428571429em;
  vertical-align: middle;
  line-height: var(--lh, 1.5);
  position: relative;
  margin-right: 15px;
}
input[type=checkbox] + span::before {
  content: "";
  display: inline-block;
  width: 0.8095238095em;
  height: 0.8095238095em;
  position: absolute;
  left: 0;
  top: calc(var(--lh, 1.5) / 2 * 1em);
  transform: translateY(-50%);
  border: 1px solid currentColor;
}
input[type=checkbox] + span::after {
  content: "";
  display: inline-block;
  width: 0.4047619048em;
  height: 0.8095238095em;
  position: absolute;
  top: calc(var(--lh, 1.5) / 2 * 1em);
  left: 0;
  transform: translateY(-70%) translateX(0.25em) rotate(45deg);
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transition: opacity 0.3s ease 0s;
  opacity: 0;
}
input[type=checkbox]:focus-visible + span::before {
  outline: -webkit-focus-ring-color auto 5px;
}
input[type=checkbox]:checked:focus-visible + span::before {
  outline: none;
}
input[type=checkbox]:checked + span::after {
  opacity: 1;
}

button {
  margin: 0;
  padding: 0;
  appearance: none;
  background: transparent;
  border: none;
  font: inherit;
  cursor: pointer;
  width: auto;
}
button:not(:disabled) {
  cursor: pointer;
}
button:not(:disabled):hover, button:not(:disabled):focus-visible {
  outline: none;
}
button:disabled {
  background-color: #666666;
  border-color: transparent;
  color: #fff;
  pointer-events: none;
  cursor: default;
}
button ::-moz-focus-inner {
  padding: 0;
  border: none;
}

#error {
  display: none;
}

.l-contact {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .l-contact {
    margin-top: 120px;
  }
}

.l-container {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-container {
    max-width: 1200px;
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media screen and (min-width: 768px) {
  .l-container.l-container--narrow {
    max-width: 1020px;
  }
  .l-container.l-container--wide {
    max-width: 1340px;
  }
  .l-container.l-container--contact {
    max-width: 1160px;
  }
}
.l-container.l-container--full {
  width: 100vw;
  max-width: none;
  margin-left: calc((100% - 100vw) / 2);
}

.c-btn {
  background-color: rgb(226, 0, 18);
  background-image: linear-gradient(135deg, rgb(226, 0, 18), rgb(141, 0, 0));
  width: 320px;
  max-width: 100%;
  height: 60px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  position: relative;
  font-size: 2.1rem;
  font-weight: bold;
  align-items: center;
  transition: opacity 0.3s;
}
.c-btn::after {
  position: absolute;
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(-45deg);
  top: 50%;
  right: 20px;
  transform-origin: center;
}
@media screen and (min-width: 768px) {
  .c-btn {
    background-color: rgb(226, 0, 18);
    background-image: linear-gradient(135deg, rgb(226, 0, 18), rgb(141, 0, 0));
    width: 400px;
    height: 70px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    position: relative;
    font-size: 2.4rem;
    font-weight: bold;
    align-items: center;
  }
}
.c-btn:hover, .c-btn:focus-visible {
  opacity: 0.7;
}

.c-btn.c-btn--back {
  width: 240px;
  background-color: #666666;
  background-image: none;
}

.c-btn.c-btn--gray {
  background-color: #666666;
  background-image: none;
}

.c-pointText {
  --lh: 1.25;
  padding-left: 1em;
  font-size: 1.7rem;
  line-height: var(--lh, 1.25);
  position: relative;
}
.c-pointText::before {
  content: "";
  display: block;
  width: 0.7142857143em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: currentColor;
  position: absolute;
  left: 0;
  top: calc(var(--lh, 1.25) / 2 * 1em);
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .c-pointText {
    font-size: 2.1rem;
  }
}

.c-sectionTitle {
  padding-left: 1.9047619048em;
  color: #4D4D4D;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.25;
  position: relative;
}
.c-sectionTitle::before {
  content: "";
  display: block;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1.4285714286em;
  height: 3px;
  background-color: #C80000;
}
@media screen and (min-width: 768px) {
  .c-sectionTitle {
    font-size: 2.1rem;
  }
}

.c-select:has(select) {
  position: relative;
  display: inline-block;
  background-image: linear-gradient(to right, transparent calc(100% - 4rem), #808080 calc(100% - 4rem), #808080 100%);
}
.c-select:has(select)::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 8px;
  width: 0;
  height: 0;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 1em 0.6em 0 0.6em;
  border-color: #fff transparent transparent transparent;
  pointer-events: none;
}
.c-select:has(select) select {
  width: 100%;
  line-height: 1.5;
  padding: 12px;
  padding-right: 5rem;
  appearance: none;
  border: 1px solid #000;
  background-color: transparent;
}

.p-aboutusing__box {
  padding: 20px;
  max-width: 865px;
  border: 1px solid #808080;
}
@media screen and (min-width: 768px) {
  .p-aboutusing__box {
    padding: 20px 28px;
  }
}
.p-aboutusing__box .p-aboutusing__boxInner {
  display: grid;
}
@media screen and (min-width: 768px) {
  .p-aboutusing__box .p-aboutusing__boxInner {
    grid-template-columns: repeat(2, 50%);
  }
}
.p-aboutusing__box .p-aboutusing__boxColumn + .p-aboutusing__boxColumn {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #808080;
}
@media screen and (min-width: 768px) {
  .p-aboutusing__box .p-aboutusing__boxColumn + .p-aboutusing__boxColumn {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    padding-left: 25px;
    border-left: 1px solid #808080;
  }
}
.p-aboutusing__box .p-aboutusing__boxItem + .p-aboutusing__boxItem {
  margin-top: 14px;
}
.p-aboutusing__box .p-aboutusing__boxItemTitle {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-aboutusing__box .p-aboutusing__boxItemTitle {
    font-size: 16px;
  }
}
.p-aboutusing__box .p-aboutusing__boxItemContent + .p-aboutusing__boxItemContent {
  margin-top: 16px;
}
.p-aboutusing__box .p-aboutusing__boxItemLead {
  margin-top: 10px;
  color: #c80000;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-aboutusing__box .p-aboutusing__boxItemLead {
    font-size: 16px;
  }
}
.p-aboutusing__box .p-aboutusing__boxItemList {
  margin-top: 5px;
  list-style: none;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-aboutusing__box .p-aboutusing__boxItemList {
    font-size: 16px;
  }
}
.p-aboutusing__box .p-aboutusing__boxItemList li {
  padding-left: 0;
  text-indent: 0;
  font-size: 14px;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-aboutusing__box .p-aboutusing__boxItemList li {
    font-size: 16px;
  }
}
.p-aboutusing__box .p-aboutusing__boxItemList li::before {
  content: none;
}
.p-aboutusing__box .p-aboutusing__boxItemPrepend {
  line-height: 1.5;
  text-decoration: underline;
}

.p-article__body {
  margin-top: 70px;
}
.p-article__body * {
  margin-top: 8px;
}
.p-article__body *:first-child {
  margin-top: 0;
}
.p-article__body h2 {
  margin-top: 2em;
  margin-bottom: 1em;
  padding-left: 1.9047619048em;
  color: #4D4D4D;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.1em;
  position: relative;
}
.p-article__body h2::before {
  content: "";
  display: block;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1.4285714286em;
  height: 3px;
  background-color: #C80000;
}
@media screen and (min-width: 768px) {
  .p-article__body h2 {
    font-size: 2.1rem;
  }
}
.p-article__body h3 {
  margin-top: 1.619047619em;
  margin-bottom: 0.7142857143em;
  padding-left: 20px;
  font-size: 16px;
  font-feature-settings: "palt";
  --lh: 1.5;
  line-height: var(--lh, 1.5);
  position: relative;
}
.p-article__body h3::before {
  content: "";
  width: 7px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #c80000;
  position: absolute;
  left: 0;
  top: calc(var(--lh, 1.5) / 2 * 1em);
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .p-article__body h3 {
    font-size: 21px;
  }
}
.p-article__body h3.number-list {
  padding-left: 0;
}
.p-article__body h3.number-list::before {
  content: none;
}
.p-article__body p {
  font-size: 14px;
  line-height: 1.6;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .p-article__body p {
    line-height: 2.5;
    font-size: 16px;
  }
}
.p-article__body ul li {
  margin: 0;
  padding-left: 1em;
  text-indent: -1em;
}
.p-article__body ul li::before {
  content: "・ ";
  line-height: 1.5;
}
.p-article__body ol li {
  margin-top: 0;
  padding-left: 1.5em;
  text-indent: -1.5em;
}
.p-article__body ol li::before {
  content: counter(attentionItem) ". ";
}
.p-article__body li {
  font-feature-settings: "palt";
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-article__body li {
    line-height: 2.5;
    font-size: 16px;
  }
}
.p-article__body a {
  text-decoration: underline;
  color: #0071b9;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .p-article__body a {
    font-size: 16px;
  }
}
.p-article__body a[target=_blank] {
  color: inherit;
}
.p-article__body a[target=_blank]::after {
  content: "";
  margin-left: 0.5em;
  display: inline-block;
  width: 0.75em;
  aspect-ratio: 1;
  background: transparent url("../images/common/icon-outer-link.png") no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .p-article__body a[target=_blank]::after {
    margin-left: 1.9375em;
  }
}

.p-breadcrumb {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 1.3rem;
  line-height: 1.5;
}

.p-breadcrumb__inner {
  overflow-x: auto;
  white-space: nowrap;
}

.p-card__link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.p-card__title {
  color: #4d4d4d;
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-card__title {
    font-size: 2.1rem;
  }
}

.p-card__img {
  margin-top: 1rem;
}
.p-card__img img {
  aspect-ratio: 300/180;
  object-fit: cover;
  object-position: center;
}

.p-card__body {
  margin-top: 0.7rem;
  flex: 1;
}

.p-card__lead {
  color: #4d4d4d;
  line-height: 1.625;
}

.p-card__text {
  margin-top: 1rem;
  font-size: 1.3rem;
  line-height: 1.6153846154;
}

.p-card__footer {
  margin-top: 2.6rem;
}

.p-card__btn {
  text-decoration: none;
  width: 100%;
  height: 40px;
  background-image: linear-gradient(135deg, rgb(226, 0, 18), rgb(141, 0, 0));
  color: #fff;
  font-size: 1.3rem;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 20px;
  letter-spacing: 2px;
  position: relative;
}
.p-card__btn::after {
  content: "";
  display: block;
  position: absolute;
  width: 56px;
  height: 8px;
  background-image: url(../common/images/link_arrow_min.svg);
  background-repeat: no-repeat;
  bottom: 20%;
  transform: translateY(-50%);
  background-size: contain;
  right: 25px;
  border: none;
  transition: right 1s;
}
.p-card__btn:hover::after {
  right: 10px;
}

.p-cards {
  display: grid;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .p-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 100px 28px;
  }
}

.p-cards__item {
  margin-left: auto;
  margin-right: auto;
  max-width: 540px;
}

.p-contactPage__fvContent {
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(to right, #ff0000, #650000);
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-contactPage__fvContent {
    height: 240px;
  }
}

.p-contactPage__fvMain {
  text-transform: uppercase;
  font-size: 4rem;
  font-family: "Big Shoulders Text", sans-serif;
  letter-spacing: 0.12em;
  margin: 0;
  text-align: center;
  line-height: 1.4;
  font-weight: 100;
}
@media screen and (min-width: 768px) {
  .p-contactPage__fvMain {
    font-size: 8rem;
  }
}

.p-contactPage__fvSub {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contactPage__fvSub {
    font-size: 2.8rem;
  }
}

.p-contactPage__lead {
  font-size: 16px;
  line-height: 1.7142857143;
  letter-spacing: 0;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .p-contactPage__lead {
    font-size: 2.1rem;
    text-align: center;
  }
}

.p-contactPage__errorMessage {
  color: #c50000;
}

.p-contactPage__errorMessageList {
  list-style: revert;
  padding-left: 1em;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .p-contactPage__errorMessageList {
    font-size: 2.1rem;
  }
}
.p-contactPage__errorMessageList li + li {
  margin-top: 1em;
}

.p-contactPage__body {
  margin-top: 3rem;
}

.p-contactPage__content {
  margin-top: 4rem;
}

.p-contactPage__note {
  margin-bottom: 1.5rem;
}

.requireLabel {
  padding: 6px 12px;
  display: inline-block;
  background-image: linear-gradient(to right, #ff0000, #650000);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .requireLabel {
    font-size: 1.4rem;
  }
}

.p-contactPage__noteText {
  margin-left: 0.5rem;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .p-contactPage__noteText {
    margin-left: 1rem;
    font-size: 1.6rem;
  }
}

.p-contactPage__text {
  text-align: center;
  line-height: 2;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .p-contactPage__text {
    font-size: 16px;
  }
}
.p-contactPage__text + .p-contactPage__text {
  margin-top: 2.5em;
}

.p-contactPage__btnArea {
  margin-top: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;
}
@media screen and (min-width: 768px) {
  .p-contactPage__btnArea {
    margin-top: 15.6rem;
  }
}

.under_preparing {
  position: relative;
  height: 50vh;
}
.under_preparing h5 {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  font-size: 3rem;
}
@media screen and (min-width: 768px) {
  .under_preparing h5 {
    font-size: 4.5rem;
  }
}

.p-form__label {
  padding-left: 0;
  display: inline-block;
  font-size: 16px;
  vertical-align: middle;
  letter-spacing: 0;
  font-feature-settings: "palt";
  --lh: 1.5;
  line-height: var(--lh, 1.5);
  position: relative;
}
.p-form__label > .requireLabel {
  position: absolute;
  left: 0;
  top: calc(var(--lh, 1.5) / 2 * 1.5em);
  transform: translateY(-50%);
  font-size: 12px;
}
.p-form__label:has(.requireLabel) {
  padding-left: 60px;
}
@media screen and (min-width: 768px) {
  .p-form__label:has(.requireLabel) {
    padding-left: min(7.7rem, 7vw);
  }
}
@media screen and (min-width: 768px) {
  .p-form__label {
    padding-left: min(7.7rem, 7vw);
    font-size: min(2.1rem, 1.9090909091vw);
  }
  .p-form__label > .requireLabel {
    font-size: min(1.4rem, 1.2727272727vw);
  }
}

.p-form__input {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #000;
  width: 100%;
  font-size: 2.1rem;
  line-height: 1.5;
}

.p-form__btnArea {
  margin-top: 40px;
  display: grid;
  align-items: center;
  justify-content: center;
  gap: 10px 20px;
}
@media screen and (min-width: 768px) {
  .p-form__btnArea {
    display: flex;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .p-form__back.c-btn--back {
    width: 320px;
    order: 1;
  }
}

/************************************************************************
* p-formIndicator
************************************************************************/
.p-formIndicator__list {
  display: flex;
}

.p-formIndicator__item {
  padding: 0.8rem;
  width: calc(25% + 1.5rem);
  flex-basis: calc(25% + 1.5rem);
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background-color: #fff;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 1rem) 0, 100% 50%, calc(100% - 1rem) 100%, 0 100%);
}
@media screen and (min-width: 768px) {
  .p-formIndicator__item {
    padding: 1.5rem;
    width: calc(25% + 2.5rem);
    flex-basis: calc(25% + 2.5rem);
    min-height: 6rem;
    font-size: 2.4rem;
    clip-path: polygon(0 0, calc(100% - 2.5rem) 0, 100% 50%, calc(100% - 2.5rem) 100%, 0 100%);
  }
}
.p-formIndicator__item + .p-formIndicator__item {
  margin-left: -1rem;
}
@media screen and (min-width: 768px) {
  .p-formIndicator__item + .p-formIndicator__item {
    margin-left: -3rem;
  }
}
.p-formIndicator__item:nth-child(1) {
  z-index: 3;
}
.p-formIndicator__item:nth-child(1).is-active::after {
  background-color: #ff0000;
}
.p-formIndicator__item:nth-child(2) {
  z-index: 2;
}
.p-formIndicator__item:nth-child(2).is-active::after {
  background-color: #c30000;
}
.p-formIndicator__item:nth-child(3) {
  z-index: 1;
}
.p-formIndicator__item:nth-child(3).is-active::after {
  background-color: #920000;
}
.p-formIndicator__item:nth-child(4) {
  z-index: 0;
  clip-path: none;
}
.p-formIndicator__item:nth-child(4).is-active::after {
  background-color: #650000;
}
.p-formIndicator__item::after {
  content: "";
  border: 0;
  position: absolute;
  background-color: #666;
  z-index: -1;
  inset: 0 0.4rem 0 0;
  clip-path: polygon(0 0, calc(100% - 1rem) 0, 100% 50%, calc(100% - 1rem) 100%, 0 100%);
}
@media screen and (min-width: 768px) {
  .p-formIndicator__item::after {
    clip-path: polygon(0 0, calc(100% - 2.5rem) 0, 100% 50%, calc(100% - 2.5rem) 100%, 0 100%);
  }
}
.p-formIndicator__item:last-child::after {
  inset: 0;
  clip-path: none;
}

.p-formTable {
  white-space: normal;
}
.p-formTable table {
  border-collapse: collapse;
  border-spacing: 0;
  width: fit-content;
  min-width: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  table-layout: fixed;
  line-height: 1.5;
}
.p-formTable tr {
  border-top: 1px solid #000;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-formTable tr {
    flex-direction: row;
  }
}
.p-formTable tr.top {
  align-items: flex-start;
}
.p-formTable tr:last-child {
  border-bottom: 1px solid #000;
}
@media screen and (min-width: 768px) {
  .p-formTable th,
  .p-formTable td {
    padding-top: 2.8rem;
    padding-bottom: 2.8rem;
  }
}
.p-formTable th {
  padding-top: 14px;
}
@media screen and (min-width: 768px) {
  .p-formTable th {
    width: min(30rem, 27.2727272727vw);
    flex: 0 0 min(30rem, 27.2727272727vw);
    padding-top: 2.8rem;
  }
}
.p-formTable td {
  margin-top: 20px;
  padding-bottom: 14px;
  flex: 0 1 100%;
  width: 100%;
}
.p-formTable td.date_of_birth {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .p-formTable td {
    margin-top: 0;
    padding-bottom: 2.8rem;
  }
}
.p-formTable select,
.p-formTable input {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .p-formTable select,
  .p-formTable input {
    font-size: min(2.1rem, 1.9090909091vw);
  }
}
.p-formTable span {
  line-height: 1;
}
.p-formTable .row {
  padding-top: 14px;
  padding-bottom: 14px;
  width: 100%;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .p-formTable .row {
    padding-top: 2.8rem;
    padding-bottom: 2.8rem;
    flex-direction: row;
    font-size: min(2.1rem, 1.9090909091vw);
  }
}
.p-formTable .row:first-child {
  padding-top: 0;
}
.p-formTable .row:last-child {
  padding-bottom: 0;
}
.p-formTable .row.row--flex {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-formTable .row.row--flex {
    align-items: baseline;
  }
}
.p-formTable .row.row--spVertical {
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-formTable .row.row--spVertical {
    flex-direction: row;
  }
}
.p-formTable .row.row--vertical {
  flex-direction: column;
  align-items: stretch;
}
.p-formTable .row.row--vertical > div + div {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-formTable .row.row--vertical > div + div {
    margin-top: min(2.5rem, 2.2727272727vw);
  }
}
.p-formTable .flex {
  display: flex;
  flex-wrap: wrap;
  white-space: normal;
}
@media screen and (min-width: 768px) {
  .p-formTable .prefecturesPrepend {
    flex: 0 0 min(11.1rem, 10.0909090909vw);
  }
}
@media screen and (min-width: 768px) {
  .p-formTable .addressPrepend {
    flex: 0 0 min(21rem, 19.0909090909vw);
  }
}
.p-formTable .row + .row {
  border-top: 1px dashed #000;
}
.p-formTable .confirmFlex .row {
  padding-top: 14px;
  padding-bottom: 14px;
}
@media screen and (min-width: 768px) {
  .p-formTable .confirmFlex .row {
    padding-top: 2.8rem;
    padding-bottom: 2.8rem;
  }
}
.p-formTable .confirmFlex + .row {
  padding-top: 14px;
  border-top: 1px dashed #000;
}
@media screen and (min-width: 768px) {
  .p-formTable .confirmFlex + .row {
    padding-top: 2.8rem;
  }
}
.p-formTable .namePrepend {
  flex: 0 0 min(6rem, 5.4545454545vw);
}
.p-formTable .namePrepend:not(:first-child) {
  margin-left: min(3rem, 2.7272727273vw);
}
.p-formTable .inputPrepend,
.p-formTable .contentKindPrepend {
  font-size: 16px;
  font-feature-settings: "palt";
  white-space: normal;
  line-height: 1.25;
  margin-bottom: 0.25em;
}
@media screen and (min-width: 768px) {
  .p-formTable .inputPrepend,
  .p-formTable .contentKindPrepend {
    font-size: min(2.1rem, 1.9090909091vw);
  }
}
.p-formTable .contentAppend {
  font-size: 12px;
  font-feature-settings: "palt";
  white-space: normal;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-formTable .contentAppend {
    font-size: min(1.4rem, 1.2727272727vw);
  }
}
.p-formTable .mwform-tel-field input:first-child {
  width: 60px;
}
@media screen and (min-width: 768px) {
  .p-formTable .mwform-tel-field input:first-child {
    width: 80px;
  }
}
.p-formTable .horizontal-item {
  margin-left: 0 !important;
}
.p-formTable *:has(> .horizontal-item) {
  display: flex;
  gap: 0 10px;
  flex-wrap: wrap;
}
.p-formTable *:has(> .error) {
  position: relative;
  margin-top: 18px;
}
@media screen and (min-width: 768px) {
  .p-formTable *:has(> .error) {
    margin-top: 24px;
  }
}
.p-formTable *:has(> .error) .error {
  position: absolute;
  bottom: calc(100% + 5px);
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .p-formTable *:has(> .error) .error {
    font-size: 14px;
  }
}

.mw_wp_form_confirm .namePrepend,
.mw_wp_form_confirm .prefecturesPrepend,
.mw_wp_form_confirm .addressPrepend,
.mw_wp_form_confirm .inputPrepend,
.mw_wp_form_confirm .contentKindPrepend,
.mw_wp_form_confirm .contentAppend {
  display: none;
}
.mw_wp_form_confirm .nameInput:last-child {
  margin-left: 5px;
}
@media screen and (min-width: 768px) {
  .mw_wp_form_confirm .nameInput:last-child {
    margin-left: 14px;
  }
}
.mw_wp_form_confirm .requireLabel {
  display: none;
}
.mw_wp_form_confirm .p-form__label {
  padding-left: 0 !important;
}
.mw_wp_form_confirm .confirmFlex .row {
  display: contents;
}
.mw_wp_form_confirm .confirmFlex + .row {
  border-top: none;
}

.p-initiative__lead {
  display: grid;
  text-align: center;
  line-height: 1.25;
}

.p-initiative__leadMain {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Big Shoulders Text", sans-serif;
  font-size: 2.8rem;
  letter-spacing: 0.1em;
}
.p-initiative__leadMain::before, .p-initiative__leadMain::after {
  content: "";
  display: block;
  width: 0.4285714286em;
  height: 1px;
  background-color: currentColor;
}
.p-initiative__leadMain::before {
  margin-right: 0.3571428571em;
}
.p-initiative__leadMain::after {
  margin-left: 0.3571428571em;
}
@media screen and (min-width: 768px) {
  .p-initiative__leadMain {
    font-size: 4rem;
  }
  .p-initiative__leadMain::before, .p-initiative__leadMain::after {
    width: 1em;
  }
  .p-initiative__leadMain::before {
    margin-right: 0.625em;
  }
  .p-initiative__leadMain::after {
    margin-left: 0.625em;
  }
}

.p-initiative__leadSub {
  margin-top: 4px;
  font-size: 1.8rem;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .p-initiative__leadSub {
    font-size: 2.1rem;
  }
}

.p-initiative__section + .p-initiative__section {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-initiative__section + .p-initiative__section {
    margin-top: 90px;
  }
}

.p-initiative__sectionBody {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-initiative__sectionBody {
    margin-top: 3.4rem;
  }
}

.p-initiative__block + .p-initiative__block {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-initiative__block + .p-initiative__block {
    margin-top: 4rem;
  }
}

.p-initiative__blockBody {
  margin-top: 0.8rem;
}

.p-initiative__text {
  line-height: 1.75;
  font-size: 1.4rem;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .p-initiative__text {
    font-size: 1.6rem;
  }
}

.p-initiative__numberList.p-numberList > li {
  margin-top: 0.5em;
}

.p-initiativeFlex {
  padding-bottom: 4rem;
  display: grid;
  gap: 2rem;
  border-bottom: 1px dashed #7F7F7F;
}
@media screen and (min-width: 768px) {
  .p-initiativeFlex {
    padding-bottom: 5rem;
    grid-template-columns: 55% 1fr;
    gap: 5rem;
  }
}

.p-initiativeFlex.p-initiativeFlex--noBorder {
  border-bottom: none;
}

.p-initiativeFlex__text {
  margin-top: 8px;
  font-feature-settings: "palt";
  font-size: 1.4rem;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-initiativeFlex__text {
    font-size: 1.6rem;
  }
}

.p-initiativeFlex__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.p-initiativeFlex__gridImg img {
  aspect-ratio: 230/144;
  object-fit: cover;
  object-position: center;
}

.p-initiativeIso__body {
  margin-top: 2rem;
  display: grid;
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .p-initiativeIso__body {
    margin-top: 2.4rem;
    grid-template-columns: 50% 1fr;
    gap: 6rem;
  }
}

.p-initiativeIso__text {
  font-size: 1.4rem;
  line-height: 1.75;
  letter-spacing: 0.03em;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .p-initiativeIso__text {
    font-size: 1.6rem;
  }
}
.p-initiativeIso__text a {
  color: #0000FF;
}

.p-initiativeIso__imgWrap {
  display: grid;
  align-items: flex-start;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}

.p-initiativeIso__img {
  border: 1px solid #7F7F7F;
}

.p-networkTable {
  font-feature-settings: "palt";
  font-size: 14px;
}
@media screen and (min-width: 1024px) {
  .p-networkTable {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .p-networkTable table {
    border-top: 1px solid #ffd2d2;
  }
}
.p-networkTable tr {
  display: flex;
  flex-flow: column;
  margin-top: 15px;
}
@media screen and (min-width: 1024px) {
  .p-networkTable tr {
    height: 80px;
    display: revert;
    margin: 0;
    overflow-y: hidden;
  }
  .p-networkTable tr:first-child th {
    border-top: 1px solid #C80000;
  }
}
.p-networkTable tr.pc {
  display: none;
}
@media screen and (min-width: 1024px) {
  .p-networkTable tr.pc {
    display: revert;
  }
}
.p-networkTable th {
  border-bottom: 1px solid #C80000;
  font-size: 1.6rem;
}
@media screen and (min-width: 1024px) {
  .p-networkTable th {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-networkTable th {
    width: 20rem;
  }
}
.p-networkTable td {
  border-bottom: 1px solid #ffd2d2;
}
@media screen and (min-width: 1024px) {
  .p-networkTable .tab2 {
    display: none;
  }
}
.p-networkTable .tr-pc {
  display: none;
}
@media screen and (min-width: 1024px) {
  .p-networkTable .tr-pc {
    display: revert;
  }
}
.p-networkTable th,
.p-networkTable td {
  vertical-align: middle;
  padding: 5px 1rem;
  height: 100%;
  line-height: 1.5625;
}
@media screen and (min-width: 1024px) {
  .p-networkTable th,
  .p-networkTable td {
    padding: 10px 2.3rem;
  }
}
.p-networkTable .contact2 {
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .p-networkTable .contact2 {
    padding: revert;
  }
}
.p-networkTable .right-wrap {
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .p-networkTable .right-wrap {
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
    align-content: center;
    padding: 10px 2.3rem;
  }
}
.p-networkTable .right-wrap .contact {
  border-bottom: 1px solid #ffd2d2;
  padding: 5px 1rem;
}
@media screen and (min-width: 1024px) {
  .p-networkTable .right-wrap .contact {
    border-bottom: revert;
  }
}
.p-networkTable .right-wrap .map {
  padding: 5px 1rem;
}
@media screen and (min-width: 1024px) {
  .p-networkTable .right-wrap .map {
    padding-right: 20px;
  }
}
.p-networkTable .right-wrap2 {
  border-top: 1px solid #ffd2d2;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .p-networkTable .right-wrap2 {
    border-top: none;
    padding: 5px 1rem;
  }
}
.p-networkTable .right-wrap2 .contact {
  border-bottom: 1px solid #ffd2d2;
  padding: 5px 1rem;
}
@media screen and (min-width: 1024px) {
  .p-networkTable .right-wrap2 .contact {
    border-bottom: revert;
  }
}
.p-networkTable .right-wrap2 .map {
  padding: 5px 1rem;
}
@media screen and (min-width: 1024px) {
  .p-networkTable .right-wrap2 .map {
    padding: 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-networkTable .address {
    width: 47%;
  }
}
@media screen and (min-width: 1024px) {
  .p-networkTable .map {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
  }
}
.p-networkTable .sp-heattreatment {
  margin: 0;
}

.p-networkTable__contactItem {
  display: grid;
  grid-template-columns: 5rem 1fr;
  text-decoration: none;
}

.p-networkTable__mapLink {
  display: inline-flex;
  align-items: center;
  color: #C80000;
}
.p-networkTable__mapLink::after {
  content: "";
  margin-left: 1rem;
  width: 0;
  display: block;
  border-left: 0.65rem solid #C80000;
  border-top: 0.65rem solid transparent;
  border-bottom: 0.65rem solid transparent;
}
@media screen and (min-width: 1024px) {
  .p-networkTable__mapLink::after {
    margin-left: 2rem;
  }
}

.p-networkTable2 {
  font-feature-settings: "palt";
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .p-networkTable2 {
    font-size: 16px;
  }
}
.p-networkTable2 tr {
  display: flex;
  flex-flow: column;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-networkTable2 tr {
    height: 80px;
    display: revert;
    margin: 0;
  }
  .p-networkTable2 tr:first-child {
    border-top: 1px solid #ffd2d2;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-networkTable2 tr:first-child {
    border-top: none;
  }
}
.p-networkTable2 th,
.p-networkTable2 td {
  vertical-align: middle;
  padding: 6px 1rem;
  height: 100%;
  line-height: 1.5625;
  border-bottom: 1px solid #ffd2d2;
}
@media screen and (min-width: 768px) {
  .p-networkTable2 th,
  .p-networkTable2 td {
    padding: 10px 2.3rem;
  }
}
.p-networkTable2 .head {
  border-top: 1px solid #C80000;
  border-bottom: 1px solid #C80000;
}
@media screen and (min-width: 768px) {
  .p-networkTable2 .head {
    width: 32.4561403509%;
  }
}
@media screen and (min-width: 768px) {
  .p-networkTable2 .address {
    width: 47.7192982456%;
  }
}
.p-networkTable2 .contact {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (min-width: 768px) {
  .p-networkTable2 .contact {
    width: 19.8245614035%;
  }
}
.p-networkTable2 .noBorderTop {
  border-top: none;
}

.p-networkTable2__contactItem {
  display: grid;
  grid-template-columns: 5rem 1fr;
  text-decoration: none;
}

.p-networkTable2__contactItem.p-networkTable2__contactItem--col {
  grid-template-columns: repeat(1, 1fr);
}

.p-numberList {
  counter-reset: num;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .p-numberList {
    font-size: 1.6rem;
  }
}
.p-numberList > li {
  padding-left: 1.5em;
  counter-increment: num;
  position: relative;
}
.p-numberList > li::before {
  content: counter(num) ". ";
  position: absolute;
  left: 0;
  top: 0;
}

.p-numberList__item {
  line-height: 1.25;
}
.p-numberList__item + .p-numberList__item {
  margin-top: 1em;
}

.p-page {
  text-align: left;
  font-size: 1.6rem;
}
.p-page #contents #contact #contact_telephone .contact_telephone_link {
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .p-page #contents #contact #contact_telephone .contact_telephone_link {
    font-size: 2.4rem;
  }
}

.p-page__lead {
  font-size: 1.6rem;
  text-align: left;
  margin-top: 24px;
}

.p-page__body {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-page__body {
    margin-top: 60px;
  }
}

.p-privacy .p-article__body > *:first-child {
  margin-top: 0;
}
.p-privacy .p-article__body h2 {
  margin-top: 6.4285714286em;
}
@media screen and (min-width: 768px) {
  .p-privacy .p-article__body h2 {
    margin-top: 6.4285714286em;
  }
}
.p-privacy .p-article__body h3 {
  margin-top: 1.9047619048em;
  letter-spacing: 0.2em;
}
.p-privacy .p-article__body p {
  line-height: 1.6;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .p-privacy .p-article__body p {
    font-size: 18px;
    line-height: 2;
  }
}
.p-privacy .p-article__body li {
  line-height: 1.6;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .p-privacy .p-article__body li {
    line-height: 2;
    font-size: 18px;
  }
}

.p-privacy__fvContent {
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(45deg, #969696, #333333);
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-privacy__fvContent {
    height: 240px;
  }
}

.p-privacy__fvMain {
  text-transform: uppercase;
  font-size: 4rem;
  font-family: "Big Shoulders Text", sans-serif;
  letter-spacing: 0.12em;
  margin: 0;
  text-align: center;
  line-height: 1.4;
  font-weight: 100;
}
@media screen and (min-width: 768px) {
  .p-privacy__fvMain {
    font-size: 8rem;
  }
}

.p-privacy__fvSub {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-privacy__fvSub {
    font-size: 2.8rem;
  }
}

.p-productCard {
  line-height: 1.25;
}
.p-productCard > * {
  margin: 0;
}

.p-productCard__img {
  aspect-ratio: 400/250;
  border: solid 1px #c9c9c9;
  overflow: hidden;
}
.p-productCard__img img {
  object-fit: cover;
  object-position: center;
}

.p-productCard__body {
  margin: 0;
  margin-top: 0.8rem;
}
@media screen and (min-width: 768px) {
  .p-productCard__body {
    margin-top: 1.6rem;
  }
}
.p-productCard__body > * {
  margin: 0;
}

.p-productCard__title {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.25;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .p-productCard__title {
    font-size: 2.1rem;
  }
}

.p-productCard__addTitle {
  font-size: 1.3rem;
}

.p-productCard__lead {
  margin: 0;
  margin-top: 0.5rem;
  flex: 1;
  font-size: 1.2rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-productCard__lead {
    margin-top: 1rem;
    font-size: 1.3rem;
  }
}

.p-productCard__btnArea {
  margin-top: 2rem;
  display: grid;
  gap: 1.6rem;
}
@media screen and (min-width: 768px) {
  .p-productCard__btnArea {
    margin-top: 4rem;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

.p-productCard__btn {
  padding: 1rem 2.5rem 0.8rem 1.3rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid currentColor;
  font-size: 1.3rem;
  text-decoration: none;
  letter-spacing: 0.1em;
  line-height: 1.5;
  background: transparent url("../images/common/icon-chevron.png") no-repeat right 1.3rem center/0.7rem 1.4rem;
}
@media screen and (min-width: 768px) {
  .p-productCard__btn {
    letter-spacing: 0;
  }
}
.p-productCard__btn:hover {
  opacity: 0.7;
}

.p-productCard__btn.p-productCard__btn--s {
  font-size: 1.2rem;
  letter-spacing: 0;
  font-feature-settings: "palt";
}

.p-productCards {
  display: grid;
  gap: 4rem;
}
@media screen and (min-width: 768px) {
  .p-productCards {
    grid-template-columns: repeat(3, 1fr);
    gap: 6rem 3.125%;
  }
}

@media screen and (min-width: 768px) {
  .p-productCards.p-productCards--wideMargin {
    grid-template-columns: repeat(3, 1fr);
    gap: 10rem 3.125%;
  }
}

.p-productCards__item {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 500px;
}

.p-productChild__section + .p-productChild__section {
  margin-top: 6rem;
}
@media screen and (min-width: 768px) {
  .p-productChild__section + .p-productChild__section {
    margin-top: 10rem;
  }
}

.p-productChild__sectionTitle {
  font-size: 1.8rem;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .p-productChild__sectionTitle {
    font-size: 2.1rem;
  }
}

.p-productChild__sectionLead2 {
  margin-top: 1.5rem;
  font-size: 1.8rem;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .p-productChild__sectionLead2 {
    font-size: 2.1rem;
  }
}

.p-productChild__sectionBody {
  margin-top: 2rem;
}

.p-productChild__btnSection {
  margin-top: 8rem;
}
@media screen and (min-width: 768px) {
  .p-productChild__btnSection {
    margin-top: 15rem;
  }
}

.p-productChild__btnSectionPrefix {
  color: #C80000;
  font-size: 1.3rem;
  line-height: 1.5;
}

.p-productChild__btnSectionInner {
  margin-top: 2rem;
  display: grid;
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .p-productChild__btnSectionInner {
    grid-template-columns: repeat(auto-fit, minmax(382px, 1fr));
    gap: 5rem 4.921875%;
  }
}

.p-productChild__btn {
  margin-left: auto;
  margin-right: auto;
  max-width: 500px;
  width: 100%;
  padding: 1.2rem 2.2rem;
  padding-left: 1rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid #808080;
  background: transparent url("../images/common/icon-chevron-2.png") no-repeat right 1rem center/1rem 1.8rem;
  font-size: 1.8rem;
  text-decoration: none;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
  font-feature-settings: "palt";
}
.p-productChild__btn > span {
  display: block;
  font-size: 0.6666666667em;
  font-feature-settings: "palt";
}
.p-productChild__btn:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .p-productChild__btn {
    font-size: 2.1rem;
    padding: 1.4rem 2.8rem;
    background-size: 1.4rem 2.5rem;
  }
}

.p-productChild__note {
  margin-left: auto;
  margin-right: auto;
  padding: 1.2rem 2.2rem;
  max-width: 500px;
  width: 100%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid #808080;
  text-decoration: none;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .p-productChild__note {
    font-size: 2rem;
    padding: 1.4rem 2.8rem;
    background-size: 1.4rem 2.5rem;
  }
}

.p-productChild__map {
  max-width: 704px;
  position: relative;
  border: solid 1px #c9c9c9;
}

.p-productChild__mapPoint {
  padding-left: 1.8461538462em;
  padding-bottom: 1.5384615385em;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  position: absolute;
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}
.p-productChild__mapPoint::before, .p-productChild__mapPoint::after {
  content: "";
  display: block;
  height: 0.15rem;
  background-color: #DC0000;
}
.p-productChild__mapPoint::before {
  width: 1.5384615385em;
  rotate: -45deg;
  transform-origin: right top;
  position: absolute;
  bottom: 1.5384615385em;
  right: calc(100% - 1.8461538462em);
}
@media screen and (min-width: 768px) {
  .p-productChild__mapPoint {
    font-size: 1.3rem;
  }
}

.p-productChild__mapPoint > span {
  display: inline-block;
}
.p-productChild__mapPoint > span::before {
  content: "";
  display: block;
  width: 1.6923076923em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: radial-gradient(#DC0000 0.4615384615em, transparent 0.4615384615em, transparent 0.7307692308em, #DC0000 0.7307692308em);
  position: absolute;
  left: 0;
  bottom: 0;
}

.p-productChild__mapPoint.p-productChild__mapPoint--ota {
  left: 61.9318181818%;
  bottom: 49.001814882%;
}

.p-productChild__mapPoint.p-productChild__mapPoint--sagami {
  left: 64.6306818182%;
  bottom: 37.7495462795%;
}

.p-productChild__mapPoint.p-productChild__mapPoint--nagoya {
  left: 36.3636363636%;
  bottom: 31.2159709619%;
}

@media screen and (max-width: 767px) {
  .p-productChild__mapPoint.p-productChild__mapPoint--shizuoka {
    left: 48.2954545455%;
    top: 67.1506352087%;
    padding-left: 1.8461538462em;
    padding-top: 1.5384615385em;
    padding-bottom: 0;
  }
  .p-productChild__mapPoint.p-productChild__mapPoint--shizuoka::before {
    width: 2.3076923077em;
    rotate: 60deg;
    transform-origin: right bottom;
    right: calc(100% - 1.8461538462em);
    bottom: 0;
  }
  .p-productChild__mapPoint.p-productChild__mapPoint--shizuoka > span::before {
    top: 0;
    bottom: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-productChild__mapPoint.p-productChild__mapPoint--shizuoka {
    left: 48.5795454545%;
    bottom: 27.22323049%;
  }
}

@media screen and (max-width: 767px) {
  .p-productChild__mapPoint.p-productChild__mapPoint--osaka {
    padding-left: 1.8461538462em;
    padding-top: 1.5384615385em;
    padding-bottom: 0;
    right: auto;
    bottom: auto;
    left: 19.6022727273%;
    top: 69.1470054446%;
  }
  .p-productChild__mapPoint.p-productChild__mapPoint--osaka::before {
    width: 2.3076923077em;
    rotate: 60deg;
    transform-origin: right bottom;
    right: calc(100% - 1.8461538462em);
    bottom: 0;
  }
  .p-productChild__mapPoint.p-productChild__mapPoint--osaka > span::before {
    top: 0;
    bottom: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-productChild__mapPoint.p-productChild__mapPoint--osaka {
    padding-left: 0;
    padding-right: 1.8461538462em;
    padding-bottom: 1.5384615385em;
    right: 76.8465909091%;
    bottom: 26.497277677%;
  }
  .p-productChild__mapPoint.p-productChild__mapPoint--osaka::before {
    rotate: 45deg;
    transform-origin: left top;
    right: auto;
    left: calc(100% - 1.8461538462em);
  }
  .p-productChild__mapPoint.p-productChild__mapPoint--osaka > span::before {
    left: auto;
    right: 0;
  }
}

.p-profileList__item {
  margin-top: 30px;
  display: grid;
  justify-content: baseline;
}
@media screen and (min-width: 768px) {
  .p-profileList__item {
    margin-top: 0;
    grid-template-columns: 20rem 1fr;
  }
}

.p-profileList__head,
.p-profileList__body {
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}

.p-profileList__head {
  font-size: 1.6rem;
  border-bottom: 1px solid #C80000;
}
@media screen and (min-width: 768px) {
  .p-profileList__head {
    padding-left: 20%;
    font-size: 1.8rem;
  }
}

.p-profileList__body {
  font-size: 1.4rem;
  border-bottom: 1px solid #FFD2D2;
}
@media screen and (min-width: 768px) {
  .p-profileList__body {
    padding-left: 20.2127659574%;
    font-size: 1.6rem;
  }
}

.p-qualityInspection {
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-qualityInspection {
    grid-template-columns: 50% 1fr;
    gap: 6rem;
  }
}

.p-qualityInspection__text {
  margin-top: 5px;
  font-size: 1.4rem;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-qualityInspection__text {
    font-size: 1.6rem;
  }
}

.p-qualityInspection__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  direction: rtl;
}

.p-qualityInspection__gridItem img {
  aspect-ratio: 230/144;
  object-fit: cover;
  object-position: center;
}

.p-qualityInspection__gridItem.p-qualityInspection__gridItem--border {
  border: 1px solid #CCCCCC;
}

.p-scrollable {
  width: 100%;
  overflow-x: auto;
}

.p-scrollTable {
  overflow-x: auto !important;
  overflow-y: hidden !important;
}
.p-scrollTable table {
  table-layout: fixed;
  min-width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
}

#contact {
  text-align: center;
}

#error {
  display: none;
}

.fv_title_en {
  text-transform: uppercase;
}
.fv_title_en > span {
  text-transform: none;
}

/************************************************************************
* u-fontweight
************************************************************************/
.u-fw-regular {
  font-weight: 400 !important;
}

.u-fw-bold {
  font-weight: 700 !important;
}

.u-hidden {
  display: none !important;
}

@media screen and (min-width: 1024px) {
  .u-hidden--pc {
    display: none !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  .u-hidden--tab {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .u-hidden--sp {
    display: none !important;
  }
}

.u-color-alert {
  color: #C70000 !important;
}

.scroll-hint-icon-wrap .scroll-hint-icon {
  top: calc(50% - 40px);
}