@charset "UTF-8";

:root {
  --art: 1400px;
  --pc: 769px;
  --sp: 768px;
  --rem: calc(100vw / 1280);
  --modal-rem: 10px;
  --ajust: 4.7rem;
  --sans-serif: "Zen Kaku Gothic New", sans-serif;
  --serif: "Noto Serif JP", serif;
}

@media (max-width: 768px) {
  :root {
    --rem: calc(100vw / 390);
  }
}

* {
  margin: 0;
  padding: 0;
}

*,
::after,
::before {
  box-sizing: border-box;
  outline: 0;
  text-decoration: none;
  vertical-align: baseline;
}

html {
  font-size: 10px;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

@media (max-width: 1400px) {
  html {
    font-size: 0.7142857143vw;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 2.5641025641vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: calc(var(--rem) * 14);
  line-height: 1.75;
  background: #ffffff;
  font-feature-settings: "pkna" 1;
  letter-spacing: 0.075em;
  overflow: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

a {
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s ease-out;
  opacity: 1;
}

a:hover {
  opacity: 0.9;
}

ul,
li {
  list-style: none;
}

table {
  border-collapse: collapse;
}

table thead th,
table thead td {
  background-color: #f5f5f5;
}

table th,
table td {
  border-collapse: collapse;
}

table th {
  text-align: left;
}

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

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

@media (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

.mincho {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-weight: 600;
}

.mincho-300 {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-weight: 300;
}

.gothic {
  font-family: "Noto Sans JP", serif;
  font-weight: 600;
  font-style: normal;
}

.gothic-300 {
  font-family: "Noto Sans JP", serif;
  font-weight: 300;
  font-style: normal;
}

header {
  width: 100%;
}

header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  header .header-inner {
    padding: 1.4rem 0;
  }
}

header .header-logo {
  width: 31.7rem;
  height: auto;
  display: block;
  margin: 1.5rem 0 2.1rem;
}

@media (max-width: 768px) {
  header .header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18rem;
    margin: 0;
  }
}

header .header-nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  -moz-column-gap: 26px;
  column-gap: 26px;
}

header .header-nav .tel {
  font-size: 3.6rem;
  letter-spacing: 0.07em;
  font-weight: 600;
}

header .header-nav .tel::before {
  content: "";
  background: url(../../assets/images/tel-icon.svg) no-repeat center/contain;
  display: inline-block;
  vertical-align: middle;
  width: 1.2em;
  height: 1em;
}

header .header-nav .contact .red-gra {
  color: #ffffff;
  background: linear-gradient(90deg, #642626 -90%, #cf0000 190%);
  border-radius: 40px;
  padding: 12px 22px;
  letter-spacing: 0.08em;
  font-size: calc(var(--rem) * 14);
}

@media (max-width: 768px) {
  header .header-nav .contact .red-gra {
    padding: 9px 17px;
    font-size: calc(var(--rem) * 12);
  }
}

section>.inner {
  max-width: 992px;
  width: 90%;
  margin: 0 auto;
  position: relative;
}

.mv {
  width: 100%;
  height: auto;
  position: relative;
}

.mv-text__block {
  position: absolute;
  top: 20.3333333333%;
  left: 12.5%;
}

@media (max-width: 768px) {
  .mv-text__block {
    position: static;
    width: 90%;
    margin: 13px auto 0;
  }
}

.mv-text__block .catch {
  background: linear-gradient(90deg, #642626 -90%, #cf0000 190%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(38px, var(--rem) * 38, 38px);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .mv-text__block .catch {
    font-size: 3.2rem;
    margin-bottom: 32px;
    text-align: center;
  }
}

.mv-text__block .catch .big {
  font-size: clamp(48px, var(--rem) * 48, 48px);
}

@media (max-width: 768px) {
  .mv-text__block .catch .big {
    font-size: calc(var(--rem) * 41);
  }
}

.mv-text__block .catch .mid {
  font-size: calc(1em / 38 * 50);
}

.mv-text__block .text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: clamp(14px, var(--rem) * 16, 16px);
  margin: 24px 0;
}

@media (max-width: 768px) {
  .mv-text__block .text {
    text-align: center;
    letter-spacing: 0.04em;
    font-size: calc(var(--rem) * 14);
    margin-bottom: 32px;
  }
}

.red-gra.cta-btn {
  background: linear-gradient(90deg, #642626 -90%, #cf0000 190%);
  color: #fff;
  letter-spacing: 0.08em;
  padding: 12px 45px;
  border-radius: 50px;
  display: block;
  width: fit-content;
  font-size: clamp(16px, var(--rem) * 18, 18px);
}

@media (max-width: 768px) {
  .red-gra.cta-btn {
    margin: 0 auto;
    font-size: calc(var(--rem) * 16);
  }
}

section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  section {
    padding: 64px 0;
  }
}

section .section-head {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-weight: 600;
  background: linear-gradient(90deg, #642626 -90%, #cf0000 190%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  section .section-head {
    margin-bottom: 24px;
  }
}

section .section-head::before,
section .section-head::after {
  content: "";
  background: url(../../assets/images/section-head.svg) no-repeat center/contain;
  display: inline-block;
  height: 2px;
  width: 200px;
  margin-right: 2em;
  transform: rotate(180deg);
  vertical-align: middle;
}

@media (max-width: 768px) {

  section .section-head::before,
  section .section-head::after {
    content: none;
  }
}

section .section-head::after {
  transform: none;
  margin-right: 0;
  margin-left: 2em;
}

section .section-head .sub-title {
  font-size: clamp(17px, var(--rem) * 20, 20px);
}

@media (max-width: 768px) {
  section .section-head .sub-title {
    font-size: calc(var(--rem) * 17);
  }
}

section .section-head h2 {
  font-size: clamp(25px, var(--rem) * 32, 32px);
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

@media (max-width: 768px) {
  section .section-head h2 {
    font-size: calc(var(--rem) * 25);
    line-height: 1.4;
  }
}

section .section-head h2 .big {
  font-size: clamp(37px, var(--rem) * 48, 48px);
}

@media (max-width: 768px) {
  section .section-head h2 .big {
    font-size: calc(var(--rem) * 37);
  }
}

.reason .reason-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.1111111111vw;
}

@media (max-width: 768px) {
  .reason .reason-list {
    display: block;
    padding: 0 34px;
  }
}

.reason .reason-list.jc-center {
  justify-content: center;
  column-gap: 1.1111111111vw;
}

.reason .reason-list li {
  background: url(../../assets/images/reason-gold_btn.png) no-repeat center/contain;
  width: 32.7956989247%;
  color: #ffffff;
  text-align: center;
  aspect-ratio: 320/140;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .reason .reason-list li {
    width: 100%;
    margin-bottom: 16px;
  }
}

.reason .reason-list li p {
  line-height: 1.2;
  font-size: clamp(21px, var(--rem) * 24, 24px);
}

@media (max-width: 768px) {
  .reason .reason-list li p {
    font-size: calc(var(--rem) * 21);
  }
}

.reason .reason-list li .small {
  font-size: clamp(14px, var(--rem) * 16, 14px);
  line-height: 1.6;
  display: block;
  margin-top: 8px;
}

.con-area {
  padding: 20px 0 48px;
  position: relative;
}

.con-area::before {
  content: "";
  background: linear-gradient(90deg, #333333 0%, #4d4d4d 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

@media (max-width: 768px) {
  .con-area {
    padding: 21px 0 24px;
  }
}

.con-area .inner {
  max-width: 992px;
  width: 90%;
  margin: 0 auto;
}

.con-area .catch {
  text-align: center;
  font-size: clamp(22px, var(--rem) * 40, 40px);
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .con-area .catch {
    font-size: calc(var(--rem) * 22);
    text-align: left;
    margin-bottom: 17px;
  }
}

.con-area .btn-wrapper {
  background: #ebe7e6;
  border-radius: 4px;
  padding: 24px 26px 30px;
  position: relative;
}

@media (max-width: 768px) {
  .con-area .btn-wrapper {
    padding: 30px 10px 45px;
  }
}

.con-area .btn-wrapper::after {
  content: "";
  background: url(../../assets/images/cta-women.png) no-repeat;
  background-size: contain;
  background-position: bottom right;
  position: absolute;
  right: 0;
  bottom: 96%;
  display: block;
  pointer-events: none;
  width: 22.3rem;
  aspect-ratio: 223 / 212;
  z-index: -1;
}

@media (max-width: 768px) {
  .con-area .btn-wrapper::after {
    background-size: calc(var(--rem) * 136) auto;
  }
}

.con-area .btn-wrapper ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
  column-gap: 20px;
}

@media (max-width: 768px) {
  .con-area .btn-wrapper ul {
    display: block;
  }
}

.con-area .btn-wrapper ul li {
  width: 100%;
  text-align: center;
  aspect-ratio: 460/116;
}

@media (max-width: 768px) {
  .con-area .btn-wrapper ul li {
    width: 90%;
    max-width: 460px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .con-area .btn-wrapper ul li:nth-child(1) {
    margin-bottom: 16px;
  }
}

.con-area .btn-wrapper ul li p {
  line-height: 1.4;
}

.con-area .btn-wrapper ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.con-area .btn-wrapper ul li .small {
  font-size: clamp(12px, var(--rem) * 16, var(--rem) * 16);
}

@media (max-width: 768px) {
  .con-area .btn-wrapper ul li .small {
    font-size: calc(var(--rem) * 11);
  }
}

.con-area .btn-wrapper ul .tel {
  background: url(../../assets/images/cta-tel.png) no-repeat center/contain;
}

.con-area .btn-wrapper ul .tel .con-tel {
  font-size: clamp(25px, var(--rem) * 30, 40px);
  letter-spacing: 0.07em;
}

@media (max-width: 768px) {
  .con-area .btn-wrapper ul .tel .con-tel {
    font-size: calc(var(--rem) * 25);
  }
}

.con-area .btn-wrapper ul .tel .con-tel::before {
  content: "";
  background: url(../../assets/images/Phonelink.svg) no-repeat center/contain;
  width: 1.1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  margin-top: -6px;
}

.con-area .btn-wrapper ul .mail {
  background: url(../../assets/images/cta-mail.png) no-repeat center/contain;
  color: #ffffff;
}

.con-area .btn-wrapper ul .mail .con-mail {
  font-size: clamp(18px, var(--rem) * 24, var(--rem) * 24);
}

@media (max-width: 768px) {
  .con-area .btn-wrapper ul .mail .con-mail {
    font-size: calc(var(--rem) * 17);
  }
}

.con-area .btn-wrapper ul .mail p {
  color: #ffffff;
}

.con-area .btn-wrapper__catch {
  font-size: clamp(20px, var(--rem) * 32, 32px);
  margin-bottom: 24px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 768px) {
  .con-area .btn-wrapper__catch {
    font-size: calc(var(--rem) * 20);
    white-space: nowrap;
    letter-spacing: 0;
    margin-bottom: 16px;
  }
}

.plan {
  background: #ebe7e6;
}

.plan table>caption {
  caption-side: bottom;
  text-align: left;
  font-size: calc(var(--rem) * 12);
  line-height: 1.6;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .plan table>caption {
    font-size: calc(var(--rem) * 11);
    margin-top: 16px;
  }
}

.plan table {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #999;
}

.plan th,
.plan td {
  text-align: center;
  vertical-align: middle;
}

.plan th .red,
.plan td .red {
  color: #b20000;
}

.plan thead {
  height: 120px;
}

@media (max-width: 768px) {
  .plan thead {
    height: 85px;
  }
}

.plan thead th {
  font-size: clamp(11.4px, var(--rem) * 16, 16px);
  line-height: 1.5;
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
}

@media (max-width: 768px) {
  .plan thead th {
    font-size: calc(var(--rem) * 11.4);
  }
}

.plan thead th .name {
  font-size: clamp(14.26px, var(--rem) * 20, 20px);
}

@media (max-width: 768px) {
  .plan thead th .name {
    font-size: calc(var(--rem) * 14);
  }
}

.plan thead th .big {
  font-size: clamp(17.11px, var(--rem) * 24, 24px);
}

@media (max-width: 768px) {
  .plan thead th .big {
    font-size: calc(var(--rem) * 17);
  }
}

.plan tbody th,
.plan tbody td {
  border-left: 1px solid #999;
  border-right: 1px solid #999;
}

.plan tbody tr {
  min-height: 60px;
  height: 60px;
}

.plan tbody tr:nth-child(even) {
  background: #f5f5f5;
}

@media (max-width: 768px) {
  .plan tbody tr {
    height: 43px;
  }
}

.plan tbody th {
  font-size: clamp(13px, var(--rem) * 16, 16px);
}

.plan tbody th .small {
  font-size: clamp(70%, var(--rem) * 14, 14px);
}

@media (max-width: 768px) {
  .plan tbody th {
    font-size: calc(var(--rem) * 13);
  }

  .plan tbody th .small {
    font-size: 70%;
  }
}

.plan tbody td {
  font-size: clamp(12px, var(--rem) * 14, 14px);
}

.plan tbody td.fz24 {
  font-size: clamp(17px, var(--rem) * 24, 24px);
}

@media (max-width: 768px) {
  .plan tbody td.fz17 {
    font-size: calc(var(--rem) * 17);
  }
}

.plan tbody td .small-top {
  font-size: 70%;
  vertical-align: text-top;
}

@media (max-width: 768px) {
  .plan tbody td {
    font-size: calc(var(--rem) * 12);
  }
}

@media (max-width: 768px) {
  .plan table tbody th {
    width: 45.7142857143%;
    line-height: 1.4;
  }

  .plan table tbody td {
    font-weight: 700;
  }

  .plan .plan-b,
  .plan .plan-c {
    margin-top: 24px;
  }
}

.option {
  padding-top: 0;
  position: relative;
}

.option::before {
  content: "";
  background: #ebe7e6;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.option .content-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 0;
}

@media (max-width: 768px) {
  .option .content-wrapper {
    display: block;
  }
}

.option .option-item {
  border: 1px solid #999;
  width: 100%;
  background-color: #ffffff;
  width: calc((100% - 16px * 2) / 3);
  min-height: min(calc(var(--rem) * 527), 527px);
  position: relative;
  z-index: -1;
}

@media (max-width: 768px) {
  .option .option-item {
    margin-bottom: 16px;
    width: 100%;
    min-height: auto;
  }
}

.option .option-item dt {
  border-bottom: 1px solid #999;
  background: #f5f5f5;
  font-size: clamp(20px, var(--rem) * 20, 20px);
  padding: 22px 0;
  text-align: center;
  font-weight: 600;
}

@media (max-width: 768px) {
  .option .option-item dt {
    padding: 16px 0;
    font-size: calc(var(--rem) * 18);
  }
}

.option .option-item dd {
  font-size: calc(var(--rem) * 14);
  line-height: 1.8;
  letter-spacing: 0.04em;
  padding: 16px 18px;
}

@media (max-width: 768px) {
  .option .option-item dd {
    padding: 24px 30px;
  }
}

.option .option-item dd ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option .option-item dd .text {
  margin-bottom: 12px;
  font-size: clamp(14px, var(--rem) * 14, 14px);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.option .option-item dd .price-red {
  color: #b20000;
  font-size: clamp(16px, var(--rem) * 16, 16px);
  font-weight: 700;
}

@media (max-width: 768px) {
  .option .option-item dd .price-red {
    font-size: calc(var(--rem) * 18);
  }
}

.option .option-item dd .price-red span {
  font-size: clamp(14px, var(--rem) * 14, 14px);
  font-weight: 400;
}

.option .option-item dd .coupon {
  position: relative;
  padding: 12px 24px;
}

.option .option-item dd .coupon::before {
  width: 100%;
  height: 100%;
  content: "";
  background-color: #F6F1E6;
  position: absolute;
  top: 3px;
  left: 0;
  z-index: -1;
}

.option .option-item dd .coupon::after {
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  content: "";
  background: linear-gradient(117.32deg, #CCB88F 0%, #8C7546 49.5%, #A69063 100%);
  position: absolute;
  top: 0;
  left: -3px;
  z-index: -2;
}

.option .option-item dd .coupon-text {
  font-size: clamp(15px, var(--rem) * 15, 15px);
  font-weight: 700;
  text-align: center;
  background: linear-gradient(117.32deg, #CCB88F 0%, #8C7546 49.5%, #A69063 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
}

.option .option-item dd .coupon-title {
  font-size: clamp(17px, var(--rem) * 26.8, 26.8px);
  font-weight: 700;
  text-align: center;
  font-family: var(--serif);
  letter-spacing: -0.04em;
}

.option .option-item dd .coupon-btn {
  display: block;
  width: 100%;
  background: linear-gradient(117.32deg, #CCB88F 0%, #8C7546 49.5%, #A69063 100%);
  color: #fff;
  font-size: clamp(15px, var(--rem) * 15, 15px);
  text-align: center;
  border-radius: 4.4rem;
  padding: 2px 0;
}

.option .option-item dd .desc {
  margin-top: 2rem;
}

.option .option-item dd .desc_text {
  font-weight: 400;
  font-size: clamp(16px, var(--rem) * 16, 16px);
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #000000;
}

.option .option-item dd .desc_text_small {
  font-weight: 400;
  font-size: clamp(14px, var(--rem) * 14, 14px);
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #000000;
}

.option .option-item dd .desc_list {
  --gap: 0.7rem;
  --row: 4;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  margin-top: 2rem;
}

.option .option-item dd .desc_list--item {
  aspect-ratio: 63 / 41;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: calc(16 / 11);
  text-align: center;
  color: #fff;
  width: calc((100% - (var(--gap) * (var(--row) - 1))) / var(--row));
  background: #BF980D;
  border-radius: 0.3rem;
}

.option .option-item dd .desc_notes {
  font-weight: 400;
  font-size: clamp(14px, var(--rem) * 14, 14px);
  line-height: 1.8;
  color: #000;
  letter-spacing: -0.01em;
  margin-top: 2rem;
}

.option .option-item dd .desc_notes_small {
  font-weight: 400;
  font-size: clamp(12px, var(--rem) * 12, 12px);
  line-height: 1.6;
  letter-spacing: 0;
  color: #000;
  margin-top: 2rem;
}

footer {
  color: #ffffff;
  background: #000;
  padding: 40px 60px;
  text-align: center;
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0;
  }
}

footer .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  footer .footer-inner {
    flex-direction: column-reverse;
  }
}

footer .footer-inner small {
  font-size: calc(var(--rem) * 14);
}

@media (max-width: 768px) {
  footer .footer-inner small {
    font-size: calc(var(--rem) * 11);
  }
}

footer .footer-inner .footer-nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 768px) {
  footer .footer-inner .footer-nav ul {
    flex-direction: column;
  }
}

footer .footer-inner .footer-nav ul li {
  margin-right: 48px;
}

@media (max-width: 768px) {
  footer .footer-inner .footer-nav ul li {
    margin-right: 0;
    margin-bottom: 32px;
  }
}

footer .footer-inner .footer-nav ul li a {
  text-decoration: underline;
  font-size: calc(var(--rem) * 14);
  color: #ffffff;
}

@media (max-width: 768px) {
  footer .footer-inner .footer-nav ul li a {
    font-size: calc(var(--rem) * 12);
  }
}

.bg-beige {
  background: #ebe7e6;
}

.bg-beige .contact {
  padding: 64px 0 100px;
}

@media (max-width: 768px) {
  .bg-beige .contact {
    padding: 40px 0 90px;
  }
}

.bg-beige .contact-wrapper {
  background: #ffffff;
  padding: 60px;
  max-width: 720px;
  margin: 0 auto;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .bg-beige .contact-wrapper {
    padding: 30px 10px;
  }
}

.bg-beige .contact-wrapper .underline {
  text-decoration: underline;
  color: #0066c0;
}

.bg-beige .contact-wrapper .underline:hover {
  text-decoration: none;
}

.bg-beige .contact-wrapper .is-error input,
.bg-beige .contact-wrapper .is-error textarea {
  border-color: #ee032b;
}

.bg-beige .contact-wrapper .mwform-checkbox-field-text {
  font-size: clamp(13px, var(--rem) * 16, 16px);
}

@media (max-width: 768px) {
  .bg-beige .contact-wrapper .mwform-checkbox-field-text {
    font-size: clamp(13px, var(--rem) * 13, 16px);
  }
}

.bg-beige .contact-wrapper .input-area.is-error .placeholder {
  display: none;
}

.bg-beige .contact-wrapper .error {
  color: #ee032b;
}

.bg-beige .contact-wrapper h2 {
  font-size: clamp(24px, var(--rem) * 32, 32px);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .bg-beige .contact-wrapper h2 {
    margin-bottom: 24px;
    font-size: calc(var(--rem) * 24);
  }
}

.bg-beige .contact-wrapper .bar {
  margin-bottom: 40px;
}

.bg-beige .contact-wrapper .bar ul {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.bg-beige .contact-wrapper .bar li {
  background: #e6e6e6;
  color: #b3b3b3;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33.3333333333%;
  font-size: clamp(12px, var(--rem) * 16, 16px);
}

@media (max-width: 768px) {
  .bg-beige .contact-wrapper .bar li {
    font-size: calc(var(--rem) * 12);
  }
}

.bg-beige .contact-wrapper .bar li.active {
  color: #ffffff;
  background: #545458;
}

.bg-beige .contact-wrapper .bar li:not(:last-child) {
  clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
}

.bg-beige .contact-wrapper .text {
  font-size: clamp(14px, var(--rem) * 16, 16px);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .bg-beige .contact-wrapper .text {
    font-size: calc(var(--rem) * 14);
    margin-bottom: 40px;
    text-align: center;
  }
}

input,
textarea {
  appearance: none;
  vertical-align: middle;
  background-color: #ffffff;
  font-family: inherit;
  outline: none;
  border: 1px solid #c4c4c4;
  border-radius: 4px;
  width: 100%;
  padding: 8px;
}

.bg-beige .contact-wrapper input[type=checkbox] {
  appearance: checkbox;
}

.bg-beige .contact-wrapper dl {
  margin-bottom: 32px;
}

.bg-beige .contact-wrapper dt,
.bg-beige .contact-wrapper dd {
  font-size: clamp(16px, var(--rem) * 16, 16px);
}

.bg-beige .contact-wrapper dt {
  font-weight: 700;
  margin-bottom: 12px;
}

.bg-beige .contact-wrapper dd .placeholder {
  font-size: clamp(14px, var(--rem) * 14, 14px);
  color: #666;
  margin-top: 12px;
}

.required dt span::before {
  content: "※必須";
  color: #ee032b;
  display: inline-block;
  margin-left: 1em;
  font-size: clamp(12px, var(--rem) * 12, 12px);
}

.bg-beige .contact-wrapper .privacy {
  text-align: center;
  font-size: clamp(13px, var(--rem) * 16, 16px);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .bg-beige .contact-wrapper .privacy {
    font-size: calc(var(--rem) * 13);
    letter-spacing: 0.02em;
  }
}

.bg-beige .contact-wrapper .privacy .form-check {
  display: inline-block;
  width: auto;
  margin-right: 0.5em;
}

.bg-beige .contact-wrapper .privacy a {
  color: blue;
  text-decoration: underline;
}

.bg-beige .contact-wrapper .privacy a:visited {
  color: purple;
}

.bg-beige .contact-wrapper .cta-btn {
  margin: auto;
}

.mw_wp_form_input .red-gra.cta-btn {
  padding: 12px 70px;
}

.contact-thanks h2::before {
  content: "";
  background: url(../../assets/images/thanks-check.svg) no-repeat center/contain;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  display: inline-block;
  vertical-align: middle;
}

.contact-thanks .mw_wp_form_complete .text {
  text-align: center;
}

.contact-thanks h2.red-gra {
  background: linear-gradient(90deg, #642626 -90%, #cf0000 190%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.06em;
  font-size: clamp(20px, var(--rem) * 32, 32px);
}

@media (max-width: 768px) {
  .contact-thanks h2.red-gra {
    font-size: calc(var(--rem) * 20);
  }
}

.mw_wp_form_confirm .placeholder {
  display: none;
}

.mw_wp_form_confirm .required dt span::before {
  content: none;
}

.mw_wp_form_confirm input,
.mw_wp_form_confirm textarea {
  border: none;
}

.mw_wp_form_confirm .privacy {
  display: none;
}

.mw_wp_form_confirm input,
.mw_wp_form_confirm textarea {
  display: none;
}

.mw_wp_form_confirm input[type=submit] {
  display: block;
  width: 230px;
}

@media (max-width: 768px) {
  .mw_wp_form_confirm input[type=submit] {
    margin-inline: auto;
  }
}

.mw_wp_form_confirm dd {
  padding-bottom: 12px;
}

.mw_wp_form_confirm dl {
  border-bottom: 1px dashed #e6e6e6;
}

@media (max-width: 768px) {
  .submit_btn {
    margin-bottom: 24px;
  }
}

.submit_btn input {
  background: linear-gradient(90deg, #642626 -90%, #cf0000 190%);
  color: #ffffff;
  letter-spacing: 0.08em;
  border-radius: 50px;
  display: block;
  padding: 12px 45px;
  width: fit-content;
  font-size: clamp(16px, var(--rem) * 18, 18px);
}

@media (max-width: 768px) {
  .submit_btn input {
    font-size: calc(var(--rem) * 16);
  }
}

.contact_submit_btn_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 24px;
}

@media (max-width: 768px) {
  .contact_submit_btn_wrapper {
    display: block;
  }
}

.contact_submit_btn_wrapper input {
  width: 230px;
}

.check_back input {
  background: #ffffff;
  letter-spacing: 0.08em;
  border-radius: 50px;
  border: 1px solid #666;
  color: #666;
  width: fit-content;
  padding: 12px 45px;
  display: block;
  font-size: clamp(16px, var(--rem) * 18, 18px);
}

@media (max-width: 768px) {
  .check_back input {
    font-size: calc(var(--rem) * 16);
  }
}

.privacy-policy h2 {
  font-weight: 700;
  font-size: clamp(16px, var(--rem) * 18, 18px);
  margin-bottom: 24px;
}

.privacy-policy .lead {
  font-size: clamp(13px, var(--rem) * 14, 14px);
  margin-bottom: 24px;
}

.privacy-policy dl {
  line-height: 25/14;
  margin-bottom: 24px;
}

.privacy-policy dl dt {
  font-weight: 700;
  font-size: clamp(13px, var(--rem) * 14, 14px);
}

.privacy-policy dl dd {
  font-weight: 500;
  font-size: clamp(13px, var(--rem) * 14, 14px);
}

.privacy-policy a.link-text-blue {
  color: #006EEF;
}

.l-operatingBox {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
}

.l-operatingBox_bg {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
}

.l-operatingBox_inner {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 1.6rem;
}

.l-operatingBox_body {
  position: relative;
  overflow-y: auto;
  width: 100%;
  max-width: calc(var(--modal-rem) * 95);
  max-height: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: calc(var(--modal-rem) * 2);
}

.l-operatingBox_body--inner {
  overflow: hidden;
}

.l-operatingBox_body--close {
  cursor: pointer;
  position: absolute;
  top: calc(var(--modal-rem) * 4);
  right: calc(var(--modal-rem) * 3.922);
  width: calc(var(--modal-rem) * 3.643);
}

.l-operatingBox_body--section_inner {
  max-width: calc(var(--modal-rem) * 73);
  margin: 0 auto;
}

.l-operatingBox .secOverview {
  padding: calc(var(--modal-rem) * 5.4) 1.6rem calc(var(--modal-rem) * 6.7);
}

.l-operatingBox .secOverview_logo {
  width: calc(var(--modal-rem) * 25.7);
  margin: 0 auto;
}

.l-operatingBox .secOverview_text {
  font-weight: 500;
  font-size: calc(var(--modal-rem) * 1.6);
  line-height: calc(30 / 16);
  letter-spacing: 0.003em;
  text-align: center;
  margin-top: calc(var(--modal-rem) * 3.2);
}

.l-operatingBox .secOverview_service {
  display: flex;
  justify-content: center;
  gap: calc(var(--modal-rem) * 2);
  margin-top: calc(var(--modal-rem) * 3.2);
}

.l-operatingBox .secOverview_service--item {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1 / 1;
  font-weight: 600;
  font-size: calc(var(--modal-rem) * 1.6);
  line-height: calc(23 / 16);
  letter-spacing: 0.003em;
  text-align: center;
  color: #fff;
  width: calc(var(--modal-rem) * 7.7);
  padding-bottom: calc(var(--modal-rem) * 0.1);
  background: #1e4d78;
  border-radius: calc(var(--modal-rem) * 1);
}

.l-operatingBox_body--bgBlue {
  color: #fff;
  padding: calc(var(--modal-rem) * 3) 0 calc(var(--modal-rem) * 6);
  background: linear-gradient(90deg, #1e4d78 0%, #115798 100%);
}

.l-operatingBox .secFuneral_head {
  position: relative;
  z-index: 10;
  font-family: var(--serif);
  font-weight: 600;
  font-size: calc(var(--modal-rem) * 2.53);
  line-height: calc(38 / 25.3);
  text-align: center;
  padding: 0 calc(var(--modal-rem) * 1.2) calc(var(--modal-rem) * 2.1) 0;
}

.l-operatingBox .secFuneral_head--img {
  position: absolute;
  z-index: -1;
  right: calc(var(--modal-rem) * 6.7);
  bottom: 0;
  width: calc(var(--modal-rem) * 12.5);
}

.l-operatingBox .secFuneral_list {
  color: #000;
  padding: calc(var(--modal-rem) * 1.9) calc(var(--modal-rem) * 2) calc(var(--modal-rem) * 3);
  background: #ebe7e6;
}

.l-operatingBox .secFuneral_list--head {
  font-weight: 600;
  font-size: calc(var(--modal-rem) * 2);
  line-height: calc(29 / 20);
  text-align: center;
}

.l-operatingBox .secFuneral_list--body {
  display: flex;
  gap: calc(var(--modal-rem) * 1.6);
  margin-top: calc(var(--modal-rem) * 1.8);
}

.l-operatingBox .secFuneral_list--body_item {
  flex: 1;
}

.l-operatingBox .secFuneral_list--body_item--link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}

.l-operatingBox .secFuneral_list--body_item--link .head {
  position: relative;
  font-weight: 500;
  font-size: calc(var(--modal-rem) * 1.2);
  line-height: calc(21 / 15);
  letter-spacing: 0.04em;
}

.l-operatingBox .secFuneral_list--body_item--link .head::before,
.l-operatingBox .secFuneral_list--body_item--link .head::after {
  position: absolute;
  bottom: calc(var(--modal-rem) * 0.4);
  display: block;
  content: "";
  width: calc(var(--modal-rem) * 0.1);
  height: 1em;
  margin: 0 calc(var(--modal-rem) * 0.3);
  background: currentColor;
}

.l-operatingBox .secFuneral_list--body_item--link .head::before {
  transform-origin: bottom right;
  transform: rotate(-30deg);
  right: 100%;
}

.l-operatingBox .secFuneral_list--body_item--link .head::after {
  transform-origin: bottom left;
  transform: rotate(30deg);
  left: 100%;
}

/* HP */
.l-operatingBox .secFuneral_list--body_item--link.-hp {
  text-align: center;
  color: #fff;
  padding: calc(var(--modal-rem) * 1.3) 0 calc(var(--modal-rem) * 1.2);
  background: linear-gradient(90deg, #967501 0%, #bf980d 101.46%);
  border-bottom: solid calc(var(--modal-rem) * 0.6) #5b4700;
}

.l-operatingBox .secFuneral_list--body_item--link.-hp .head span {
  font-size: calc(1em / 12 * 15);
}

.l-operatingBox .secFuneral_list--body_item--link.-hp .body {
  font-family: var(--serif);
  font-weight: 600;
  font-size: calc(var(--modal-rem) * 2);
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-top: calc(var(--modal-rem) * 0.3);
}

/* お電話 */
.l-operatingBox .secFuneral_list--body_item--link.-tel {
  padding: calc(var(--modal-rem) * 1.5) 0 calc(var(--modal-rem) * 1.4);
  background: #fff;
  box-shadow: 0px 0px calc(var(--modal-rem) * 0.3) rgba(0, 0, 0, 0.24);
  border-radius: calc(var(--modal-rem) * 0.3);
}

.l-operatingBox .secFuneral_list--body_item--link.-tel .body {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(var(--modal-rem) * 0.5);
  font-family: var(--serif);
  font-weight: 800;
  font-size: calc(var(--modal-rem) * 2.9);
  line-height: 1;
  letter-spacing: 0.07em;
  margin-top: calc(var(--modal-rem) * 0.3);
}

.l-operatingBox .secFuneral_list--body_item--link.-tel .body span {
  font-size: calc(1em / 29 * 37);
}

.l-operatingBox .secAbout {
  margin-top: calc(var(--modal-rem) * 4);
}

.l-operatingBox .secAbout_cols {
  display: flex;
  justify-content: space-between;
}

.l-operatingBox .secAbout_cols--head {
  font-weight: 600;
  font-size: calc(var(--modal-rem) * 2.4);
  line-height: calc(35 / 24);
}

.l-operatingBox .secAbout_cols--body {
  margin-top: calc(var(--modal-rem) * 0.4);
}

.l-operatingBox .secAbout_cols--body_item {
  display: flex;
  font-size: calc(var(--modal-rem) * 1.8);
  line-height: calc(26 / 18);
}

.l-operatingBox .secAbout_cols--body_item:not(:first-child) {
  margin-top: calc(var(--modal-rem) * 1.4);
}

.l-operatingBox .secAbout_cols--body_item--head {
  min-width: calc(var(--modal-rem) * 9.1);
  font-weight: 600;
}

.l-operatingBox .secAbout_cols--body_item--body {
  flex: 1;
}

.l-operatingBox .secAbout_cols--body_item--body a {
  font: inherit;
  color: inherit;
}

@media screen and (max-width: 767px) {
  .l-operatingBox_body {
    border-radius: calc(var(--modal-rem) * 1);
  }

  .l-operatingBox_body--close {
    top: calc(var(--modal-rem) * 1.6);
    right: calc(var(--modal-rem) * 1.6);
    width: calc(var(--modal-rem) * 3);
  }

  .l-operatingBox .secOverview {
    padding: calc(var(--modal-rem) * 6.4) 1.6rem calc(var(--modal-rem) * 4.8);
  }

  .l-operatingBox .secOverview_logo {
    width: calc(var(--modal-rem) * 24);
  }

  .l-operatingBox .secOverview_text {
    font-size: calc(var(--modal-rem) * 1.4);
    text-align: left;
    margin-top: calc(var(--modal-rem) * 2.4);
  }

  .l-operatingBox .secOverview_service {
    gap: calc(var(--modal-rem) * 1);
    margin-top: calc(var(--modal-rem) * 2.4);
  }

  .l-operatingBox .secOverview_service--item {
    font-size: calc(var(--modal-rem) * 1.4);
    width: calc(var(--modal-rem) * 7);
    border-radius: calc(var(--modal-rem) * 0.8);
  }

  .l-operatingBox_body--bgBlue {
    padding: calc(var(--modal-rem) * 2.4) 0 calc(var(--modal-rem) * 4);
  }

  .l-operatingBox .secFuneral_head {
    font-size: calc(var(--modal-rem) * 2);
    padding: 0 calc(var(--modal-rem) * 2) calc(var(--modal-rem) * 2.1) 0;
  }

  .l-operatingBox .secFuneral_head--img {
    right: calc(var(--modal-rem) * 1.2);
    width: calc(var(--modal-rem) * 10);
  }

  .l-operatingBox .secFuneral_list {
    margin: 0 calc(var(--modal-rem) * 1);
    padding: calc(var(--modal-rem) * 1.6);
  }

  .l-operatingBox .secFuneral_list--head {
    font-size: calc(var(--modal-rem) * 1.8);
  }

  .l-operatingBox .secFuneral_list--body {
    flex-direction: column;
    gap: calc(var(--modal-rem) * 0.8);
    margin-top: calc(var(--modal-rem) * 1.2);
  }

  .l-operatingBox .secAbout {
    text-align: center;
    padding: 0 calc(var(--modal-rem) * 1.6);
  }

  .l-operatingBox .secAbout_cols {
    display: block;
  }

  .l-operatingBox .secAbout_cols--head {
    font-size: calc(var(--modal-rem) * 2);
  }

  .l-operatingBox .secAbout_cols--body {
    margin-top: calc(var(--modal-rem) * 1.6);
  }

  .l-operatingBox .secAbout_cols--body_item {
    display: block;
    font-size: calc(var(--modal-rem) * 1.4);
  }

  .l-operatingBox .secAbout_cols--body_item:not(:first-child) {
    margin-top: calc(var(--modal-rem) * 1.4);
  }

  .l-operatingBox .secAbout_cols--body_item--head {
    min-width: calc(var(--modal-rem) * 9.1);
  }
}
