@charset "utf-8";

/*===================================================
utility
=====================================================*/
.u-link__blank {
	position: relative;
}
.u-link__blank::after {
	content: "";
	display: inline-block;
	width: 0.75rem;
	height: 0.75rem;
	background: url(../img/icon_blank02.svg) no-repeat center bottom;
	background-size: contain;
	position: relative;
	top: 2px;
	margin: 0 0.25rem;
}
.u-link__blank:hover {
	text-decoration: underline;
}
.u-only__pc {
	display: none;
}
.u-bold {
	font-weight: bold;
}
.u-txt--attention {
	color: #d64202;
	font-weight: bold;
}
.u-error {
	margin-left: 5px;
	color: #d64202;
	font-size: 1rem;
	font-weight: bold;
}
@media only screen and (min-width: 769px){
	.u-only__sp {
		display: none;
	}
	.u-only__pc {
		display: block;
	}
}
/*===================================================
component
=====================================================*/
/* H1 */
.c-ttl-lv1 {
    margin: 2.5rem auto;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.5;
    width: calc(100% - 2rem);
    max-width: 980px;
}
@media only screen and (min-width: 768px) {
    .c-ttl-lv1 {
        font-size: 2.25rem;
        margin: 50px auto;
    }
}
/* Step */
.c-list__step__wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.c-list__step {
  --h: 38px;
  --tip: 16px;          /* 矢印の先端幅 */
  --notch: 32px;        /* 凹みの幅 */
  --overlap: 16px;      /* 重なり量 (= tip) */
  flex: 1;
  height: var(--h);
  padding-left: calc(var(--notch) + 12px);
  padding-right: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #A08E7A;
  color: #fff;
  font-size: 1.125rem;
  clip-path: polygon(
    var(--tip) 0,
    calc(100% - var(--tip)) 0,
    100% 50%,
    calc(100% - var(--tip)) 100%,
    var(--tip) 100%,
    var(--notch) 50%
  );

  margin-left: calc(var(--overlap) * -1);
}
.c-list__step:first-of-type {
  clip-path: polygon(
    0 0,
    calc(100% - var(--tip)) 0,
    100% 50%,
    calc(100% - var(--tip)) 100%,
    0 100%
  );
  margin-left: 0;
  padding-left: 24px;
}
.c-list__step:last-of-type {
  clip-path: polygon(
    var(--tip) 0,
    100% 0,
    100% 100%,
    var(--tip) 100%,
    var(--notch) 50%
  );
}
/* currentColor */
.c-list__step.is-current {
    background-color: #5C4B39;
}
@media (min-width: 769px){
  .c-list__step { 
        --h: 50px;
        --tip: 20px;
        --notch: 40px;
        --overlap: 20px;
        font-size: 	1.25rem;
    }
}

/* 注釈 */
.c-notice {
	padding-left: 1.25rem;
	position: relative;
    font-size: 1rem;
    margin-top: 1rem;
}
.c-notice::before {
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
}
/* form parts */
.c-require {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    padding: 0.4rem;
    margin-left: 5px;
    color: #ffffff;
    line-height: 1;
    background-color: #d64202;
    position: relative;
    top: -1px;
}
.c-option {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.4rem;
    margin-left: 10px;
    font-size: 1rem;
    color: #ffffff;
    line-height: 1;
    background-color: #a08e79;
    position: relative;
    top: -2px;
}
.c-hrBasic {
    background-color: #a08e7a;
    height: 1px;
    border: none;
    margin: 0;
    margin-top: 1.75rem;
}
/* accordion */
.c-acdn {
    margin-top: 2rem;
}
.c-acdn__lbl {
    display: block;
    position: relative;
    line-height: 1.25;
    margin-top: 1rem;
    padding: 1rem 2rem 1rem 1rem;
    border: 2px solid #d64202;
    border-radius: 4px;
    background: #FFFFFF;
    color: #d64202;
    font-weight: bold;
}
.c-acdn__lbl:hover {
    cursor: pointer;
}
.c-acdn__lbl::after {
    position: absolute;
    top: 50%;
    right: 1rem;
    color: #d64202;
    font-size: 1.5rem;
    font-weight: bold;
    transform: translateY(-50%);
    transition: all .6s ease;
    content:"＋";
}
.c-acdn input[type="checkbox"] + label::before {
    content: none;
}
.c-acdn input[type="checkbox"].on-off {
    display: none;
}
.c-acdn input[type="checkbox"].on-off ~ .c-acdn__cont {
    height: 0;
    overflow: hidden;
}
.c-acdn input[type="checkbox"].on-off:checked ~ .c-acdn__cont {
    height: auto;
    margin-top: 1rem;
}
.c-acdn input[type="checkbox"].on-off:checked ~ .c-acdn__lbl::after {
    content:"−";
}
@media screen and (min-width: 1025px){
    .c-acdn {
        margin-top: 4rem;
    }
    .c-acdn__lbl {
        padding: 1rem;
    }
}