:root {
  --container-width: 1120px;
  --gutter: 3rem;
  --radius: 2rem;
  --shadow: 0 6px 20px rgba(0,0,0,.06);
  --text-color: #1a1a1a;
  --muted-color: #666;
  --bg-color: #fff;
  --bg-color2: #f7f2ed;
  --bg-color3: #eadccf;
  --primary: #c7361d;
}


/* components.css */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  height: 4.0rem;
  padding: 0 1.6rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: var(--bg-color);
  color: var(--text-color);
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .05);
  font-size: 1.4rem;
}

.c-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.c-btn--primary {
  background: var(--primary);
  color: var(--primary-contrast);
  border-color: var(--primary);
}

.c-btn--outline {
  background: transparent;
  border-color: #ddd;
}

.c-nav a:hover {
  background: #f0f2f5;
}

.c-input {
  width: 100%;
  height: 4.0rem;
  padding: 0 1.2rem;
  border-radius: 1.0rem;
  border: 1px solid #dcdcdc;
  background: #fff;
  font-size: 1.4rem;
}

.c-input:focus {
  outline: 0.2rem solid #e6efff;
  border-color: var(--primary);
}


/*--------------------
Text parts
--------------------*/
.c-notes {
  font-size: 85%;
	line-height: 1.4;
}

.c-kome-text {
  position: relative;
  padding-left: 1em;
  text-indent: -1em;
}

.c-komenum-text {
  position: relative;
  padding-left: 2em;
  text-indent: -2em;
}

.c-kakkonum-text {
  position: relative;
  padding-left: 2.5em;
  text-indent: -2.5em;
}

.c-kakkochu-text {
  position: relative;
  padding-left: 3em;
  text-indent: -3em;
}

.c-announce-text {
  position: relative;
}

.c-announce-text::before,
.c-announce-text::after {
  width: 0.1em;
  height: 1.2em;
  position: absolute;
  content: "";
  background: #000;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 1rem;
}

.c-announce-text::before {
  left: -0.8em;
  transform: rotate(-30deg);
}

.c-announce-text::after {
  right: -0.8em;
  transform: rotate(30deg);
}


/*--------------------
List parts
--------------------*/
.c-disc-list {
  list-style: disc;
  margin-left: 1.5em;
}

.c-decimal-list {
  list-style: decimal;
  margin-left: 1.5em;
}

.c-kome-list {
  position: relative;
  padding-left: 1em;
  text-indent: -1em;
}

.c-komenum-list {
  position: relative;
  padding-left: 2em;
  text-indent: -2em;
}

.c-kakkonum-list {
  position: relative;
  padding-left: 2.5em;
  text-indent: -2.5em;
}

.c-kakkochu-list {
  position: relative;
  padding-left: 3em;
  text-indent: -3em;
}


/*--------------------
Table parts
--------------------*/
.c-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-color);
  font-size: 1.6rem;
  table-layout: fixed;
  line-height: 1.4;
}

.c-table::after {
  content: none;
}

.c-table .bg-beige {
  background: #f7f2ed !important;
}

.c-table th,
.c-table td {
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid #eee;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
	vertical-align: top;
}

.c-table th {
  text-align: left;
  background: #fafafa;
}

.c-table tr:hover td {
  background: #fbfbfd;
}

.c-table01 {
  border: 2px solid var(--text-color);
}

.c-table01 th {
  background: #eadccf;
  vertical-align: middle;
}

.c-table01 th,
.c-table01 td {
  border: 1px solid var(--text-color);
  text-align: center;
}


/*--------------------
Link parts
--------------------*/

.c-button2 {
  position: relative;
  display: inline-block;
  padding: 0.75em 2.5em 0.75em 1.5em;
  width: auto;
  text-align: center;
  line-height: 1.5;
  border-radius: 100px;
  font-weight: 700;
  border: 4px solid #1a1a1a;
  filter: drop-shadow(0 0.6rem 0 rgba(160,90,20,0.20));
  background: #fafafa url("/dprivate/images/btn_arrow.svg") no-repeat right 2rem center;
  will-change: filter;
  transition: .4s;
  text-decoration: none !important;
  cursor: pointer;
}

.c-button2:hover {
  opacity: 1;
  transition: .4s;
  transform: translateY(-0.5rem);
  background-image: url("/dprivate/images/btn_arrow-red.svg");
  border-color: #c7361d;
  color: #c7361d;
}

.c-button2 .c-link-icon {
  text-decoration: none !important;
}

.c-button2_sub {
  color: #fafafa !important;
  background: #1a1a1a url("/dprivate/images/btn_arrow-sub.svg") no-repeat right 2rem center;
}

.c-button2_sub:hover {
  background-color: #505050;
  background-image: url("/dprivate/images/btn_arrow-sub.svg");
  border-color: #505050;
}


/*--------------------
Link parts
--------------------*/
.c-link {
  text-decoration: underline;
  background: url("/dprivate/images/parts_arrow-red-right.svg") no-repeat left top 0.3em;
  padding-left: 1em;
  display: inline-block;
  line-height: 1.3;
  transition: transform .4s;
	text-indent: 0;
}

.c-link:hover {
  color: var(--primary);
}

.c-link-icon {
  text-decoration: underline;
  display: inline-block;
  padding-right: 1.4em;
  background-position: right center;
  background-size: 1em;
  background-repeat: no-repeat;
  cursor: pointer;
}

.c-link-blank {
  background-image: url("/dprivate/images/parts_blank.svg");
}

.c-link-pdf {
  background-image: url("/dprivate/images/parts_pdf.svg");
}

.c-link-xls {
  background-image: url("/dprivate/images/parts_xls.svg");
}

.c-link-doc {
  background-image: url("/dprivate/images/parts_doc.svg");
}

.c-link-modal {
  background-image: url("/dprivate/images/btn_openmodal.svg");
}



.c-link-door {
  height: 100%;
  background: #fafafa;
  border: 0.6rem solid #1a1a1a;
  border-top: none;
  border-radius: 50% 50% 2rem 2rem;
  display: grid;
  gap: 1.5rem;
  padding: 3rem;
  text-decoration: none !important;
  transform: translateY(0);
  transition: .4s;
  filter: drop-shadow(0 0.6rem 0 rgba(160,90,20,0.20));
  will-change: filter;
  position: relative;
}

@media screen and (max-width: 667px) {
  .c-link-door {
    border-width: 0.4rem;
    padding: 2rem;
  }
}

.c-link-door::before {
  content: "";
  position: absolute;
  top: 0;
  left: -0.6rem;
  z-index: -1;
  display: block;
  width: calc(100% + 1.2rem);
  height: 21rem;
  border-radius: 50% 50% 0 0;
  border: 0.6rem solid #1a1a1a;
  border-bottom: none;
  background: #fafafa;
  transition: .4s;
}

@media screen and (max-width: 667px) {
  .c-link-door::before {
    left: -0.4rem;
    width: calc(100% + 0.8rem);
    border-width: 0.4rem;
  }
}

.c-link-door::after {
  display: block;
  content: "";
  width: 3.6rem;
  height: 3.6rem;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  background: #1a1a1a url("/dprivate/images/arrow.svg") no-repeat left 1.7rem top 1.5rem / 0.8rem;
  color: #fff;
  border-radius: 2.3rem 0 0;
  transition: .4s;
}

.c-link-door:hover {
  opacity: 1;
  transform: translateY(-1rem);
  border-color: #c7361d;
  color: #1a1a1a
}

@media screen and (max-width: 667px) {
  .c-link-door:hover {
    transform: none
  }
}

.c-link-door:hover::before {
  border-color: #c7361d
}

.c-link-door:hover::after {
  background-color: #c7361d
}

.c-link-door__media {
  margin: 0 auto;
}

@media screen and (max-width: 667px) {
  .c-link-door__media {
    width: 10rem;
  }
}

.c-links-door__title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.3;
  white-space: pre-line;
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 0.2rem dotted #c7361d;
}

.c-links-door__catch {
  display: block;
  font-size: 1.4rem;
}

.c-links-door__text {}



.c-link-square {
  height: 100%;
  background: #fafafa;
  border: 0.6rem solid #1a1a1a;
  border-radius: 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  text-decoration: none !important;
  transform: translateY(0);
  transition: .4s;
  position: relative;
  filter: drop-shadow(0 0.6rem 0 rgba(160,90,20,0.20));
  will-change: filter;
}

@media screen and (max-width: 667px) {
  .c-link-square {
    border-width: 0.4rem;
  }
}

.c-link-square.is-vertical {
  flex-direction: column;
  justify-content: center;
}

.c-link-square::after {
  display: block;
  content: "";
  width: 3.6rem;
  height: 3.6rem;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  background: #1a1a1a url("/dprivate/images/arrow.svg") no-repeat left 1.7rem top 1.5rem / 0.8rem;
  color: #fff;
  border-radius: 2.3rem 0 0;
  transition: .4s;
}

.c-link-square:hover {
  opacity: 1;
  transform: translateY(-1rem);
  border-color: #c7361d;
  color: #1a1a1a
}

@media screen and (max-width: 667px) {
  .c-link-square:hover {
    transform: none
  }
}

.c-link-square:hover {
  opacity: 1;
  transform: translateY(-10px);
  border-color: #c7361d;
  color: #1a1a1a;
  transition: .4s
}

@media screen and (max-width: 667px) {
  .c-link-square:hover {
    transform: none;
    transition: unset !important
  }
}

.c-link-square:hover::before {
  border-color: #c7361d
}

.c-link-square:hover::after {
  background-color: #c7361d
}

.c-link-square__title {
  font-weight: 700;
  font-size: 2.2rem;
}

.c-link-square__text {
  font-size: 1.6rem;
}

.c-link-square__media {}

@media screen and (max-width: 667px) {
  .c-link-square__media {
    width: 6rem;
  }
}


.c-link-square-typeB {
  height: 100%;
  background: #fafafa;
  border: 0.6rem solid #1a1a1a;
  border-radius: 2rem;
  display: grid;
  gap: 2rem;
  padding: 3rem;
  text-decoration: none !important;
  transform: translateY(0);
  transition: .4s;
  position: relative;
  filter: drop-shadow(0 0.6rem 0 rgba(160,90,20,0.20));
  will-change: filter;
}

@media screen and (max-width: 667px) {
  .c-link-square-typeB {
    border-width: 0.4rem;
  }
}

.c-link-square-typeB.is-vertical {
  flex-direction: column;
  justify-content: center;
}

.c-link-square-typeB::after {
  display: block;
  content: "";
  width: 3.6rem;
  height: 3.6rem;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  background: #1a1a1a url("/dprivate/images/arrow.svg") no-repeat left 1.7rem top 1.5rem / 0.8rem;
  color: #fff;
  border-radius: 2.3rem 0 0;
  transition: .4s;
}

.c-link-square-typeB:hover {
  opacity: 1;
  transform: translateY(-1rem);
  border-color: #c7361d;
  color: #1a1a1a
}

@media screen and (max-width: 667px) {
  .c-link-square-typeB:hover {
    transform: none
  }
}

.c-link-square-typeB:hover {
  opacity: 1;
  transform: translateY(-10px);
  border-color: #c7361d;
  color: #1a1a1a;
  transition: .4s
}

@media screen and (max-width: 667px) {
  .c-link-square-typeB:hover {
    transform: none;
    transition: unset !important
  }
}

.c-link-square-typeB:hover::before {
  border-color: #c7361d
}

.c-link-square-typeB:hover::after {
  background-color: #c7361d
}

.c-link-square-typeB__label {
  color: #fafafa;
  background: #c7361d;
  display: inline-block;
  position: absolute;
  top: -17px;
  left: -11px;
  font-size: 1.6rem;
  border-radius: 3rem 0;
  text-align: center;
  padding: 0 2rem;
  line-height: 1.6;
  font-weight: 500
}

.c-link-square-typeB__title {
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.3;
  white-space: pre-line;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 0.2rem dotted #c7361d;
}

.c-link-square-typeB__text {}

.c-link-square-typeB__media {
  text-align: center;
  margin: 0;
}

.c-link-square-typeB__img {
  text-align: center;
  margin: 0 auto;
}

@media screen and (max-width: 667px) {
  .c-link-square-typeB__media {
    width: 6rem;
  }
}



.c-link-square-typeF {
  height: 100%;
  background: #fafafa;
  border: 0.6rem solid #1a1a1a;
  border-radius: 2rem;
  display: grid;
  gap: 2rem;
  padding: 3rem;
  text-decoration: none !important;
  transform: translateY(0);
  transition: .4s;
  position: relative;
  filter: drop-shadow(0 0.6rem 0 rgba(160,90,20,0.20));
  will-change: filter;
  justify-content: center;
  align-items: center;
  grid-template-columns: 40% 1fr;
}

@media screen and (max-width: 667px) {
  .c-link-square-typeF {
    border-width: 0.4rem;
    grid-template-columns: 1fr;
  }
}

.c-link-square-typeF::after {
  display: block;
  content: "";
  width: 3.6rem;
  height: 3.6rem;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  background: #1a1a1a url("/dprivate/images/arrow.svg") no-repeat left 1.7rem top 1.5rem / 0.8rem;
  color: #fff;
  border-radius: 2.3rem 0 0;
  transition: .4s;
}

.c-link-square-typeF:hover {
  opacity: 1;
  transform: translateY(-1rem);
  border-color: #c7361d;
  color: #1a1a1a
}

@media screen and (max-width: 667px) {
  .c-link-square-typeF:hover {
    transform: none
  }
}

.c-link-square-typeF:hover {
  opacity: 1;
  transform: translateY(-10px);
  border-color: #c7361d;
  color: #1a1a1a;
  transition: .4s
}

@media screen and (max-width: 667px) {
  .c-link-square-typeF:hover {
    transform: none;
    transition: unset !important
  }
}

.c-link-square-typeF:hover::before {
  border-color: #c7361d
}

.c-link-square-typeF:hover::after {
  background-color: #c7361d
}

.c-link-square-typeF__title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.3;
  white-space: pre-line;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-right: 1.5rem;
  border-right: 0.2rem dotted #c7361d;
}

@media screen and (max-width: 667px) {
  .c-link-square-typeF__title {
    padding-right: 0;
    border-right: none;
    padding-bottom: 1.5rem;
    border-bottom: 0.2rem dotted #c7361d;
  }
}

.c-link-square-typeF__text {}

.c-link-square-typeF__media {
  text-align: center;
  margin: 0;
}

.c-link-square-typeF__img {
  text-align: center;
  margin: 0 auto;
}

@media screen and (max-width: 667px) {
  .c-link-square-typeF__media {
    width: 6rem;
  }
}


/*--------------------
Title parts
--------------------*/
.c-title {
  font-family: Zen Maru Gothic, sans-serif;
  position: relative;
  font-weight: 700;
  line-height: 1.5;
}

.c-title-1 {
  margin-bottom: 3rem;
  font-size: 4.4rem;
}
@media screen and (max-width: 667px) {
	.c-title-1 {
		font-size: 2.6rem;
	}
}

.c-title-2 {
  margin-bottom: 3rem;
  font-size: 3rem;
  color: #fafafa;
  padding: 1rem 2rem;
  border-radius: 1rem;
  background: #c7361d;
}
@media screen and (max-width: 667px) {
	.c-title-2 {
		font-size: 2.2rem;
	}
}

.c-title-2::before {
  position: absolute;
  content: "";
  height: 5.5rem;
  width: 4rem;
  background: url("/dprivate/images/title2_mark.svg") no-repeat 0 0 / contain;
  right: 1.3rem;
  top: -4rem;
}

.c-title-3 {
  margin-bottom: 3rem;
  font-size: 2.2rem;
  color: #c7361d;
  padding-left: 2.5rem;
}


.c-title-3::before {
  position: absolute;
  content: "";
  height: 2.4rem;
  width: 4.8rem;
  background: url("/dprivate/images/title3_mark.svg") no-repeat 0 0 / contain;
  left: 0;
  top: 0.6rem;
}

.c-title-4 {
  margin-bottom: 3rem;
  font-size: 2rem;
  border-bottom: 0.2rem solid #c7361d;
  padding-bottom: 0.6rem;
}

.c-title-5 {
  margin-bottom: 3rem;
  font-size: 1.8rem;
}


.c-title-6 {
  margin-bottom: 3rem;
  font-size: 2rem;
}

.c-title-6::before {
  position: absolute;
  top: -0.5rem;
  left: 0;
  font-family: Quicksand, sans-serif;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3.6rem;
  background: #c7361d;
  border-radius: 4rem;
  font-size: 1.8rem;
  color: #fafafa;
}

.c-title-6::after {
  content: "";
  position: absolute;
  top: 0.6rem;
  display: block;
  width: 1.6rem;
  height: 1.4rem;
  background: url("/dprivate/images/point_triangle.svg") no-repeat center center / contain;
}
.c-title-6.point {
  padding-left: 10rem;
}
.c-title-6.point::before {
  width: 8rem;
  content: "POINT";
}
.c-title-6.point::after {
  left: 7.5rem;
}
.c-title-6.exclamation {
  padding-left: 6rem;
}
.c-title-6.exclamation::before {
  width: 4rem;
  content: "\FF01";
}
.c-title-6.exclamation::after {
  left: 3.5rem;
}





/*--------------------
Block parts
--------------------*/
.c-block-radius {
	border-radius: var(--radius);
}
.c-block-typeA {
	background: var(--bg-color2);
	padding: var(--gutter);
}
.c-block-typeB {
	background: var(--bg-color3);
	padding: var(--gutter);
}
.c-block-typeC {
	background: var(--bg-color);
	padding: var(--gutter);
}
.c-block-typeD {
	padding: var(--gutter);
	border: 4px solid #000;
}
.c-block-typeE {
	padding: var(--gutter);
	border: 4px solid var(--primary);
}

@media screen and (min-width: 668px) {
  .c-flex { display: flex; flex-wrap: wrap; }
  .c-flex.c-justify-cnter { justify-content: center }
  .c-flex.c-align-cnter { align-items: center; }
  .c-flex.col-2>* { width: 50%; }
  .c-flex.gap-20 { gap: 20px; }
  .c-flex.gap-30 { gap: 30px; }
  .c-flex.gap-40 { gap: 40px; }
  .c-grid { display: grid; }
  .c-grid.gap-20 { gap: 20px; }
  .c-grid.gap-30 { gap: 30px; }
  .c-grid.gap-40 { gap: 40px; }
  .c-grid.col-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .c-grid.col-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media screen and (max-width: 667px) {
  .c-sp-flex { display: flex; flex-wrap: wrap; }
  .c-sp-flex.col2>* { width: 50%; }
  .c-sp-flex.gap-20 { gap: 3.125vw; }
  .c-sp-flex.gap-30 { gap: 4.688vw; }
  .c-sp-flex.gap-40 { gap: 6.25vw; }
  .c-sp-grid { display: grid; grid-template-columns: 1fr; }
  .c-sp-grid.gap-20 { gap: 3.125vw; }
  .c-sp-grid.gap-30 { gap: 4.688vw; }
  .c-sp-grid.gap-40 { gap: 6.25vw; }
}



.c-contact-box {}

.c-contact__tel {}







/*=====JS=====*/
@media screen and (max-width: 667px) {
  .scroll-hint {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .scroll-hint table {
    width: max-content;
    min-width: 100%;
    max-width: 300vw;
    border-collapse: collapse;
  }
}









/*セットプラン向け*/


.p-setplan_case { background: #eadccf; border-radius: 1rem; margin: 4rem 0; }
.p-setplan_case--title { font-size: 2.2rem; font-weight: 700; padding: 2rem 3rem; position: relative; }
.p-setplan_case--title::after { content: ""; position: absolute; top: 0; bottom: 0; right: 3rem; width: 2.4rem; height: 1.3rem; margin: auto; background: url("/dprivate/images/arrow_accordion_red.svg") no-repeat center center / contain }
.p-setplan_case--title.is-open::after { transform: rotate(-180deg); }
.p-setplan_case--body { padding: 3rem; border-top: 3px solid #fff }
.p-setplan_case--plan { background: #fff; border: 3px solid #1a1a1a; border-radius: 2rem; display: grid; grid-template-columns: 1fr 30rem; gap: 4rem; padding: 4rem; }
.p-setplan_case--planR { background: #c7361d; border: 3px solid #1a1a1a; border-radius: 2rem; color: #fff;display: grid; place-items: center; font-size: 3rem; font-weight: 700; padding: 1rem; text-align: center; line-height: 1.4; }
.p-setplan_case--planR .price-text { font-size: 6rem; line-height: 1; }
.p-setplan_case--planL {}
.p-setplan_case--title2 { background: #c7361d; border-radius: 999px; width: fit-content; color: #fff; font-size: 2.2rem; font-weight: 700; margin-bottom: 3rem; padding: 0.3rem 2rem; position: relative; }
.p-setplan_case--title2::before { border-bottom: 5px solid transparent; border-left: 12px solid #c7361d; border-top: 5px solid transparent; bottom: 0; content: ""; height: 0; margin: auto; position: absolute; right: -10px; top: 0; width: 0; }
.p-setplan_case--planL dl { display: grid; grid-template-columns: 16rem 1fr; gap: 2rem; margin-top: 3rem; }
.p-setplan_case--planL dt { border-right: 1px solid #c7361d; font-size: 2.2rem; font-weight: 700; }
.p-setplan_case--planL .point-text { font-size: 2.2rem; font-weight: 700; }

@media screen and (max-width: 667px) {
	.p-setplan_case--plan { grid-template-columns: 1fr; }
	.p-setplan_case--planL dl { grid-template-columns: 1fr; gap: 2rem; margin-top: 0; }
	.p-setplan_case--planL dt { border-right: none; border-bottom: 1px solid #c7361d; padding-bottom: 1rem; }
	.p-setplan_case--planL dt img { width: auto; height: 1.5em; }
}
