@charset "UTF-8";
/*import
------------------------------------------*/
/*数値の設定
------------------------------------------*/
/*上記数値の設定を呼び出しているmixin
------------------------------------------*/
/*
よく使用するmixin
------------------------------------------*/
/* base
------------------------------------------*/
html {
  font-size: 90%;
  font-weight: 500; }
  @media only screen and (max-width: 767px) {
    html {font-size: 75%;}  }
section {
  margin-bottom: 150px; }
  @media only screen and (max-width: 1440px) {
    section {
      margin-bottom: 120px; } }
  @media only screen and (max-width: 991px) {
    section {
      margin-bottom: 80px; } }
  @media only screen and (max-width: 767px) {
    section {
      margin-bottom: 0; } }

header .headerWrap {
  background: none !important; }
header .headerWrap nav {
  display: none; }
header .hamburger {
  display: none; }

footer .footerWrap .contentsWrap .indexWrap {
  display: none; }

footer .footerWrap .contentsWrap .contactWrap {
  width: 100%;
  margin: 0 auto; }
  footer .footerWrap .contentsWrap .contactWrap .innerWrap {
    flex-wrap: nowrap;
    justify-content: center; }
    footer .footerWrap .contentsWrap .contactWrap .innerWrap .logoWrap {
      margin: 0 5%; }
      @media only screen and (max-width: 767px) {
        footer .footerWrap .contentsWrap .contactWrap .innerWrap .logoWrap {
          margin: 0; } }
    footer .footerWrap .contentsWrap .contactWrap .innerWrap .telWrap {
      margin: 0 5%; }
      @media only screen and (max-width: 767px) {
        footer .footerWrap .contentsWrap .contactWrap .innerWrap .telWrap {
          margin: 0;
          border: none; } }

footer .footerWrap .contentsWrap .contactWrap .innerWrap .logoWrap a figure img {
  width: 300px; }
  @media only screen and (max-width: 767px) {
    footer .footerWrap .contentsWrap .contactWrap .innerWrap .logoWrap a figure img {
      width: 100%; } }

footer .footerCopyright {
  width: 100%;
  padding: 15px 0 10px;
  background: #2B5A2F;
}
footer .footerCopyright p {
  font-size: 12px;
  color: #fff;
  text-align: center;
}

::placeholder {
  color: #cecece;
}

/* error-message
--------------------------------------------------*/
#error-message {
  display: none;
  color: #D90A0A;
  padding: 10px 30px;
  border: 1px solid #D90A0A;
  margin: 30px 0; }

@media screen and (max-width: 767px) {
  .header {
    padding-top: 16px; }

  .header__logo {
    width: 200px; }

  #error-message {
    font-size: 14px;
    padding: 10px;
    margin-top: 35px; }

  .footer {
    margin-top: 0; }

  .footer small {
    font-size: 12px; } }
/* parts
--------------------------------------------------*/
input, button, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none; }

input[type=text], input[type=email], input[type=tel], input[type=password], select, textarea {
  width: 100%;
  padding: 10px 20px 10px;
  background-color: #F6F6F6;
  border-radius: 3px;
  border: 1px solid #BBBBBB; }
  @media only screen and (max-width: 767px) {
    input[type=text], input[type=email], input[type=tel], input[type=password], select, textarea {
      padding: 10px;
      font-size: 16px !important;
      font-weight: normal !important; } }

textarea {
  min-height: 220px;
  height: 100%; }

.select__item {
  display: flex;
  width: 100%;
  position: relative; }
  .select__item::after {
    content: "";
    display: block;
    position: absolute;
    top: 36%;
    right: 10%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #36663A;
    border-right: 2px solid #36663A;
    -webkit-transform: translateX(-50%) rotate(135deg);
    transform: translateX(-50%) rotate(135deg); }
    @media only screen and (max-width: 767px) {
      .select__item::after {
        top: 40%;
        width: 6px;
        height: 6px;
        border-top: 1px solid #36663A;
        border-right: 1px solid #36663A; } }
  .select__item.gender {
    max-width: 180px; }

input[type=checkbox], input[type=radio] {
  display: none; }

/* [type=radio]
--------------------------------------------------*/
[type=radio] + span {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px; }

/*.radio__wrap label:not(:last-child) [type=radio] + span {
  margin-right: clamp(1.038rem, -2rem + 5.76vw, 2.063rem);
}*/
.radio__wrap label:not(:last-child) [type=radio] + span {
  margin-right: 3rem; }
/* ラジオスタイル付け */
.radio__wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 1行に3つの列を作成 */
    gap: 10px; /* チェックボックス間の余白を設定 */
}
.radio__wrap label {
    display: block; /* ラベルをブロック要素として表示 */
}
@media only screen and (max-width: 767px) {
    .radio__wrap {
        display: grid;
        grid-template-columns: repeat(1, 1fr); /* 1行に1つの列を作成 */
        gap: 10px; /* チェックボックス間の余白を設定 */
    }
}

[type=radio] + span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #C9C9C9;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: block; }

[type=radio] + span::after {
  opacity: 0; }

[type=radio]:checked + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 4.5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #13447D;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  display: block;
  opacity: 1; }

.radio__text {
  margin-top: 33px; }

@media screen and (max-width: 767px) {
  [type=radio] + span {
    font-size: 13px;
    padding-left: 20px; }

  [type=radio] + span::before {
    width: 15px;
    height: 15px; }

  [type=radio]:checked + span::after {
    width: 10px;
    height: 10px;
    left: 2.5px; }

  .radio__text {
    margin-top: 10px; } }
/* [type=checkbox]
--------------------------------------------------*/
[type=checkbox] + span {
  font-size: 14px;
  font-weight: 700;
  padding-left: 37px;
  position: relative;
  letter-spacing: 0.12em;
  display: block;
  cursor: pointer; }

[type=checkbox] + span::before {
  background: #fff;
  border: 1px solid #B7B7B7;
  content: "";
  height: 22px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 22px;
  border-radius: 4px; }

[type=checkbox]:checked + span::after {
  opacity: 1;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s; }

[type=checkbox] + span::after {
  border-bottom: 2px solid #13447D;
  border-left: 2px solid #13447D;
  content: "";
  height: 7px;
  left: 3px;
  margin-left: 1.4px;
  margin-top: -1.4px;
  opacity: 1;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  width: 13px;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  opacity: 0; }

@media screen and (max-width: 767px) {
  [type=checkbox] + span {
    font-size: 13px; }

  [type=checkbox] + span::before {
    height: 20px;
    width: 20px; }

  [type=checkbox] + span::after {
    left: 2px; } }
.checkbox__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  }
  
@media screen and (min-width: 768px) {
.checkbox__wrap label {
  margin-right: 25px; }
}

.checkbox__wrap + .checkbox__wrap {
  margin-top: 26px; }

@media screen and (max-width: 767px) {
  .checkbox__wrap {
    display: block; }

  .checkbox__wrap label:not(:first-child) {
    margin-left: 0;
    margin-top: 10px;
    display: block; }

  .checkbox__wrap + .checkbox__wrap {
    margin-top: 10px; } }


/* ssl_mark
------------------------------------------*/
@media screen and (min-width: 769px) {
	#ssl_mark {
		margin: 20px auto 40px;
		text-align: center;
	}
	#ssl_mark.side {
		margin: 20px auto auto;
	}
	#ssl_mark span {
		display: inline-block;
		margin-right: 20px;
		font-size: 14px;
		text-align: left;
		vertical-align: middle;
	}
}
@media screen and (max-width: 768px) {
	#ssl_mark {
		margin: 10px 0 30px;
		text-align: center;
	}
	#ssl_mark span {
		display: block;
		text-align: center;
		font-size: 13px;
		img {
			margin: 0 auto 10px;
		}
	}
}

/* contents
------------------------------------------*/
.pageContents {
  padding-top: 50px;
  /*sec-form
  ------------------------------------------*/ }
  @media only screen and (max-width: 767px) {
    .pageContents {
      padding-top: 80px; } }
  .pageContents .sec-form .sectionWrap {
    border-radius: 10px;
    max-width: 1200px;
    padding: 80px 120px;
    background-color: #fff; }
    @media only screen and (max-width: 1280px) {
      .pageContents .sec-form .sectionWrap {
        max-width: 92%;
        padding: 40px 50px; } }
    @media only screen and (max-width: 991px) {
      .pageContents .sec-form .sectionWrap {
        padding: 40px 50px; } }
    @media only screen and (max-width: 767px) {
      .pageContents .sec-form .sectionWrap {
        max-width: 100%;
        padding: 40px 20px 60px; } }
    .pageContents .sec-form .sectionWrap .contentsTtlWrap {
      margin-bottom: 40px; }
      @media only screen and (max-width: 1280px) {
        .pageContents .sec-form .sectionWrap .contentsTtlWrap {
          margin-bottom: 20px; } }
      @media only screen and (max-width: 767px) {
        .pageContents .sec-form .sectionWrap .contentsTtlWrap {
          margin-bottom: 0; } }
      .pageContents .sec-form .sectionWrap .contentsTtlWrap .ttlCopy {
        font-size: 30px;
        color: #36663A;
        font-weight: bold; }
        @media only screen and (max-width: 1280px) {
          .pageContents .sec-form .sectionWrap .contentsTtlWrap .ttlCopy {
            font-size: 24px; } }
        @media only screen and (max-width: 767px) {
          .pageContents .sec-form .sectionWrap .contentsTtlWrap .ttlCopy {
            font-size: 18px; } }
    .pageContents .sec-form .sectionWrap .tableWrap table {
      width: 100%;
      margin-bottom: 60px; }
      @media only screen and (max-width: 991px) {
        .pageContents .sec-form .sectionWrap .tableWrap table {
          margin-bottom: 40px; } }
      @media only screen and (max-width: 767px) {
        .pageContents .sec-form .sectionWrap .tableWrap table {
          margin-bottom: 10px; } }
      .pageContents .sec-form .sectionWrap .tableWrap table tr {
        border-bottom: solid 1px rgba(121, 121, 121, 0.2); }
        .pageContents .sec-form .sectionWrap .tableWrap table tr:last-of-type {
          border-bottom: none; }
        @media only screen and (max-width: 767px) {
          .pageContents .sec-form .sectionWrap .tableWrap table tr {
            border: 0; } }
      .pageContents .sec-form .sectionWrap .tableWrap table th, .pageContents .sec-form .sectionWrap .tableWrap table td {
        padding: 20px;
        text-align: left; }
        @media only screen and (max-width: 767px) {
          .pageContents .sec-form .sectionWrap .tableWrap table th, .pageContents .sec-form .sectionWrap .tableWrap table td {
            display: block;
            padding: 10px 15px;
            font-size: 13px;
            font-weight: bold; } }
      .pageContents .sec-form .sectionWrap .tableWrap table th {
        width: 250px;
        background-color: #F7F7F7; }
        @media only screen and (max-width: 991px) {
          .pageContents .sec-form .sectionWrap .tableWrap table th {
            width: 170px; } }
        @media only screen and (max-width: 767px) {
          .pageContents .sec-form .sectionWrap .tableWrap table th {
            width: 100%;
            margin-top: 10px; } }
        .pageContents .sec-form .sectionWrap .tableWrap table th label {
          display: flex;
          justify-content: space-between;
          align-items: flex-start; }
          @media only screen and (max-width: 1280px) {
            .pageContents .sec-form .sectionWrap .tableWrap table th label {
              flex-wrap: wrap; } }
          @media only screen and (max-width: 767px) {
            .pageContents .sec-form .sectionWrap .tableWrap table th label {
              display: inline-block; } }
          .pageContents .sec-form .sectionWrap .tableWrap table th label span {
            color: #666;
            font-weight: bold;
            width: 170px; }
            @media only screen and (max-width: 1280px) {
              .pageContents .sec-form .sectionWrap .tableWrap table th label span {
                flex-wrap: wrap; } }
            @media only screen and (max-width: 767px) {
              .pageContents .sec-form .sectionWrap .tableWrap table th label span {
                margin: 0 5px 0 0; display: inline-block; } }
            .pageContents .sec-form .sectionWrap .tableWrap table th label span.required, .pageContents .sec-form .sectionWrap .tableWrap table th label span.optional {
              padding: 2px 5px;
              color: #fff;
              font-size: 12px;
              background: #D90000;
              border-radius: 3px;
              width: 35px; }
              .pageContents .sec-form .sectionWrap .tableWrap table th label span.required::before, .pageContents .sec-form .sectionWrap .tableWrap table th label span.optional::before {
                content: "必須"; }
            .pageContents .sec-form .sectionWrap .tableWrap table th label span.optional {
              color: #fff;
              background: rgba(38, 38, 36, 0.4); }
              .pageContents .sec-form .sectionWrap .tableWrap table th label span.optional::before {
                content: "任意"; }
          @media only screen and (max-width: 1280px) {
            .pageContents .sec-form .sectionWrap .tableWrap table th label .text {
              display: block;
              width: 100%;
              margin-bottom: 5px; } }
          @media only screen and (max-width: 767px) {
            .pageContents .sec-form .sectionWrap .tableWrap table th label .text {
              display: inline-block;
              width: auto;
              margin: 0 10px 0 0; } }
        .pageContents .sec-form .sectionWrap .tableWrap table th small {
          font-size: 80%; }
          @media only screen and (max-width: 767px) {
            .pageContents .sec-form .sectionWrap .tableWrap table th small {
              font-size: 11px; } }
          .pageContents .sec-form .sectionWrap .tableWrap table th small.red {
            font-weight: bold;
            color: #D90000; }
      .pageContents .sec-form .sectionWrap .tableWrap table td {
        vertical-align: middle; }
        @media only screen and (max-width: 767px) {
          .pageContents .sec-form .sectionWrap .tableWrap table td {
            padding: 10px 0; } }
        .pageContents .sec-form .sectionWrap .tableWrap table td .partsWrap {
          display: flex;
          justify-content: space-between;
          align-items: center; }
          .pageContents .sec-form .sectionWrap .tableWrap table td .partsWrap.flex-start {
            justify-content: flex-start; }
            .pageContents .sec-form .sectionWrap .tableWrap table td .partsWrap.flex-start #zip {
              max-width: 180px; }
          .pageContents .sec-form .sectionWrap .tableWrap table td .partsWrap + .partsWrap {
            margin-top: 10px; }
          .pageContents .sec-form .sectionWrap .tableWrap table td .partsWrap .text {
            min-width: 120px;
            font-weight: bold; }
          .pageContents .sec-form .sectionWrap .tableWrap table td .partsWrap .select__item {
            display: flex;
            justify-content: space-between;
            align-items: center; }
            .pageContents .sec-form .sectionWrap .tableWrap table td .partsWrap .select__item .year, .pageContents .sec-form .sectionWrap .tableWrap table td .partsWrap .select__item .month, .pageContents .sec-form .sectionWrap .tableWrap table td .partsWrap .select__item .day {
              padding: 0 20px 0 10px; }
              @media only screen and (max-width: 767px) {
                .pageContents .sec-form .sectionWrap .tableWrap table td .partsWrap .select__item .year, .pageContents .sec-form .sectionWrap .tableWrap table td .partsWrap .select__item .month, .pageContents .sec-form .sectionWrap .tableWrap table td .partsWrap .select__item .day {
                  padding: 0 5px; } }
            .pageContents .sec-form .sectionWrap .tableWrap table td .partsWrap .select__item::after {
              right: 25%; }
          .pageContents .sec-form .sectionWrap .tableWrap table td .partsWrap.tel__wrap span {
            padding: 0 3px; width: 16%; text-align: center;font-size: 75%; }
          .pageContents .sec-form .sectionWrap .tableWrap table td .partsWrap.half .select__item::after {
            right: 6%; }
        .pageContents .sec-form .sectionWrap .tableWrap table td .bukkenWrap {
          /*display: flex;*/
          align-items: center; }
          .pageContents .sec-form .sectionWrap .tableWrap table td .bukkenWrap .imgWrap {
            margin-right: 20px; }
            @media only screen and (max-width: 767px) {
              .pageContents .sec-form .sectionWrap .tableWrap table td .bukkenWrap .imgWrap {
                margin-right: 15px; } }
            .pageContents .sec-form .sectionWrap .tableWrap table td .bukkenWrap .imgWrap .bukkenImg {
              width: 180px; }
              @media only screen and (max-width: 767px) {
                .pageContents .sec-form .sectionWrap .tableWrap table td .bukkenWrap .imgWrap .bukkenImg {
                  width: 120px; } }
          .pageContents .sec-form .sectionWrap .tableWrap table td .bukkenWrap .textWrap {
            width: calc(100% - 230px); }
            @media only screen and (max-width: 767px) {
              .pageContents .sec-form .sectionWrap .tableWrap table td .bukkenWrap .textWrap {
                width: calc(100% - 120px); } }
            .pageContents .sec-form .sectionWrap .tableWrap table td .bukkenWrap .textWrap .bukkenName {
              margin-bottom: 10px;
              font-size: 14px;
              font-weight: bold; }
              @media only screen and (max-width: 767px) {
                .pageContents .sec-form .sectionWrap .tableWrap table td .bukkenWrap .textWrap .bukkenName {
                  font-size: 13px; } }
            .pageContents .sec-form .sectionWrap .tableWrap table td .bukkenWrap .textWrap .bukkenDetail a {
              color: #36663A;
              text-decoration: underline !important; }
              .pageContents .sec-form .sectionWrap .tableWrap table td .bukkenWrap .textWrap .bukkenDetail a:hover {
                text-decoration: none !important; }
          .pageContents .sec-form .sectionWrap .tableWrap table td .bukkenWrap .bukkenDelete {
            width: 70px;
            text-align: right; }
            @media only screen and (max-width: 767px) {
              .pageContents .sec-form .sectionWrap .tableWrap table td .bukkenWrap .bukkenDelete {
                width: auto;
                margin-left: 10px; } }
            .pageContents .sec-form .sectionWrap .tableWrap table td .bukkenWrap .bukkenDelete span {
              display: inline-block;
              padding: 5px 8px;
              color: #D90000;
              font-weight: bold;
              line-height: 1;
              border: 1px solid #D90000;
              border-radius: 3px;
              cursor: pointer;
              transition: .3s all; }
              .pageContents .sec-form .sectionWrap .tableWrap table td .bukkenWrap .bukkenDelete span:hover {
                color: #fff;
                background: #D90000; }
          .pageContents .sec-form .sectionWrap .tableWrap table td .bukkenWrap + .bukkenWrap {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(121, 121, 121, 0.2); }
        .pageContents .sec-form .sectionWrap .tableWrap table td small {
          font-size: 80%; }
          @media only screen and (max-width: 767px) {
            .pageContents .sec-form .sectionWrap .tableWrap table td small {
              font-size: 11px; } }
          .pageContents .sec-form .sectionWrap .tableWrap table td small.red {
            font-weight: bold;
            color: #D90000; }
        .pageContents .sec-form .sectionWrap .tableWrap table td input + small {
          margin-top: 10px; }
      .pageContents .sec-form .sectionWrap .tableWrap table + .caption {
        margin: -60px 0 50px;
        padding: 20px 0;
        font-size: 80%;
        border: 1px solid rgba(121, 121, 121, 0.2);
        border-width: 1px 0; }
        @media only screen and (max-width: 991px) {
          .pageContents .sec-form .sectionWrap .tableWrap table + .caption {
            margin: -40px 0 30px; } }
        @media only screen and (max-width: 767px) {
          .pageContents .sec-form .sectionWrap .tableWrap table + .caption {
            margin: 10px 0 30px;
            font-size: 12px; } }
    .pageContents .sec-form .sectionWrap .tableWrap .privacypolicyLink {
      margin-bottom: 30px;
      text-align: center; }
      @media only screen and (max-width: 767px) {
        .pageContents .sec-form .sectionWrap .tableWrap .privacypolicyLink {
          margin-bottom: 10px; } }
      .pageContents .sec-form .sectionWrap .tableWrap .privacypolicyLink .arrow {
        position: relative;
        display: inline-block;
        padding: 0 0 0 26px;
        vertical-align: middle;
        text-decoration: none;
        font-size: 90%;
        color: #36663A; }
        .pageContents .sec-form .sectionWrap .tableWrap .privacypolicyLink .arrow:hover {
          text-decoration: underline !important; }
        @media only screen and (max-width: 767px) {
          .pageContents .sec-form .sectionWrap .tableWrap .privacypolicyLink .arrow {
            font-size: 13px;
            font-weight: bold; } }
      .pageContents .sec-form .sectionWrap .tableWrap .privacypolicyLink .arrow::before,
      .pageContents .sec-form .sectionWrap .tableWrap .privacypolicyLink .arrow::after {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        content: "";
        vertical-align: middle;
        left: 3px;
        width: 8px;
        height: 8px;
        border-top: 1px solid #36663A;
        border-right: 1px solid #36663A;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg); }
    .pageContents .sec-form .sectionWrap .tableWrap .btnWrap {
      display: flex;
      justify-content: center;
      gap: 10px;
      align-items: center; }
      @media only screen and (max-width: 991px) {
        .pageContents .sec-form .sectionWrap .tableWrap .btnWrap {
          flex-direction: column;
          align-items: center;
          gap: 20px; } }
      @media only screen and (max-width: 767px) {
        .pageContents .sec-form .sectionWrap .tableWrap .btnWrap {
          width: 90%;
          margin: 0 auto; } }
      .pageContents .sec-form .sectionWrap .tableWrap .btnWrap .btn {
        position: relative;
        border-radius: 60px;
        height: fit-content;
        background: #36663A;
        color: #fff; }
        @media only screen and (max-width: 991px) {
          .pageContents .sec-form .sectionWrap .tableWrap .btnWrap .btn {
            border: 1px solid #fff;
            width: 100%; } }
        .pageContents .sec-form .sectionWrap .tableWrap .btnWrap .btn input {
          display: block;
          min-width: 340px;
          padding: 30px 40px;
          position: relative;
          text-align: center;
          transition: 0.4s all cubic-bezier(0.785, 0.135, 0.15, 0.86);
          font-size: 18px;
          color: #fff;
          cursor: pointer; }
          @media only screen and (max-width: 991px) {
            .pageContents .sec-form .sectionWrap .tableWrap .btnWrap .btn input {
              width: 100%; } }
          @media only screen and (max-width: 767px) {
            .pageContents .sec-form .sectionWrap .tableWrap .btnWrap .btn input {
              min-width: 0;
              padding: 20px 30px;
              font-size: 16px; } }
        .pageContents .sec-form .sectionWrap .tableWrap .btnWrap .btn .labelWrap {
          display: flex;
          justify-content: center;
          align-items: center;
          position: absolute;
          top: 0;
          bottom: 0;
          left: 0;
          right: 0;
          transition: 0.4s all cubic-bezier(0.785, 0.135, 0.15, 0.86); }
          .pageContents .sec-form .sectionWrap .tableWrap .btnWrap .btn .labelWrap label {
            font-size: 18px;
            text-align: center;
            line-height: 1.3;
            font-weight: bold; }
            @media only screen and (max-width: 767px) {
              .pageContents .sec-form .sectionWrap .tableWrap .btnWrap .btn .labelWrap label {
                font-size: 17px; } }
            .pageContents .sec-form .sectionWrap .tableWrap .btnWrap .btn .labelWrap label span {
              font-size: 14px; }
              @media only screen and (max-width: 767px) {
                .pageContents .sec-form .sectionWrap .tableWrap .btnWrap .btn .labelWrap label span {
                  font-size: 13px;
                  font-weight: bold; } }
        .pageContents .sec-form .sectionWrap .tableWrap .btnWrap .btn .circleArrow {
          position: absolute;
          width: 2.8rem;
          height: 2.8rem;
          transform: translateY(-50%);
          right: 1rem;
          right: 2.4rem;
          top: 50%;
          background: #fff;
          border-radius: 50%;
          display: flex;
          justify-content: center;
          align-items: center;
          clip-path: circle(0 at 50% 50%);
          transition: 0.4s all cubic-bezier(0.785, 0.135, 0.15, 0.86); }
          .pageContents .sec-form .sectionWrap .tableWrap .btnWrap .btn .circleArrow span {
            width: 1.4rem;
            height: 1.4rem;
            background: url(/form_cms/common/images/arrow_main.svg) center center/cover no-repeat;
            filter: invert(15%) sepia(94%) saturate(1362%) hue-rotate(194deg) brightness(91%) contrast(109%);
            display: inline-block;
            position: relative;
            padding: 0.7rem; }
        .pageContents .sec-form .sectionWrap .tableWrap .btnWrap .btn:hover .circleArrow {
          clip-path: circle(50% at 50% 50%); }
        .pageContents .sec-form .sectionWrap .tableWrap .btnWrap .btn:hover .labelWrap {
          transform: translateX(-1.25rem); }


/* 日曜日のカラー設定 */
td.ui-datepicker-week-end:first-child a.ui-state-default {
  color: #f00 !important;
  /* 文字色を設定 */
}

/* 土曜日のカラー設定 */
td.ui-datepicker-week-end:last-child a.ui-state-default {
  color: #00f !important;
  /* 文字色を設定 */
}

/* 祝日のカラー設定 */
td.sun a.ui-state-default,
td.holiday a.ui-state-default {
  color: #f00 !important;
  /* 文字色を設定 */
}
/* confirm
------------------------------------------*/
.flowStepArea {
  margin-bottom: 60px; }
  @media only screen and (max-width: 767px) {
    .flowStepArea {
      margin: 30px 0 30px; } }
  .flowStepArea .flowStepList {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 -15px; }
    @media only screen and (max-width: 767px) {
      .flowStepArea .flowStepList {
        margin: 0 -5px; } }
    .flowStepArea .flowStepList::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 15px;
      right: 15px;
      transform: translateY(-50%);
      width: calc(100% - 30px);
      height: 1px;
      background: rgba(31, 38, 46, 0.4); }
    .flowStepArea .flowStepList li {
      position: relative;
      background: #EEEEEE;
      border-radius: 45px;
      width: calc(100% - 30px);
      max-width: 300px;
      margin: 0 15px;
      color: #36663A; }
      @media only screen and (max-width: 767px) {
        .flowStepArea .flowStepList li {
          width: calc(100% - 10px);
          margin: 0 5px; } }
      .flowStepArea .flowStepList li .inner {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50px; }
        @media only screen and (max-width: 767px) {
          .flowStepArea .flowStepList li .inner {
            height: 50px; } }
        .flowStepArea .flowStepList li .inner span {
          margin-left: .75em;
          font-size: 16px;
          font-weight: bold;
          line-height: 1; }
          @media only screen and (max-width: 767px) {
            .flowStepArea .flowStepList li .inner span {
              font-size: 13px;
              margin-left: 2.5em; } }
      .flowStepArea .flowStepList li .step {
        position: absolute;
        top: 50%;
        left: 20px;
        transform: translateY(-50%);
        font-size: 12px;
        text-align: center;
        line-height: 1.3; }
        @media only screen and (max-width: 767px) {
          .flowStepArea .flowStepList li .step {
            left: 15px;
            font-size: 11px;
            line-height: 1.1; } }
        .flowStepArea .flowStepList li .step .num {
          font-size: 16px; }
          @media only screen and (max-width: 767px) {
            .flowStepArea .flowStepList li .step .num {
              font-size: 13px; } }
      .flowStepArea .flowStepList li.current {
        background: #36663A;
        color: #fff; }

/* confirm
------------------------------------------*/
.confirm .confirmText {
  font-weight: bold !important; }
.confirm .ttlCopy + p {
  margin-top: 10px;
  font-weight: bold !important; }
  @media only screen and (max-width: 767px) {
    .confirm .ttlCopy + p {
      margin-bottom: 20px; } }
.confirm .partsWrap {
  justify-content: flex-start !important; }
  .confirm .partsWrap .text {
    font-weight: normal !important; }
.confirm .select__item {
  justify-content: flex-start !important;
  width: auto !important; }
  .confirm .select__item::after {
    content: none !important; }
@media only screen and (max-width: 767px) {
  .confirm .pageContents .sec-form .sectionWrap .tableWrap table td {
    padding: 10px 15px; } }
.confirm .btnWrap {
  display: block !important; }
  @media only screen and (max-width: 767px) {
    .confirm .btnWrap {
      margin: 30px 0 0; } }
  .confirm .btnWrap .btn {
    max-width: 360px;
    margin: 0 auto 30px; }
    @media only screen and (max-width: 767px) {
      .confirm .btnWrap .btn {
        margin: 20px auto 0; } }
    .confirm .btnWrap .btn.back-btn {
      max-width: 260px;
      background: #888 !important; }
      .confirm .btnWrap .btn.back-btn:hover .labelWrap {
        transform: translateX(0) !important; }
    .confirm .btnWrap .btn input {
      min-width: 260px !important;
      padding: 15px !important; }
.confirm .labelWrap label {
  font-size: 16px !important; }
@media (min-width: 751px) {
    .pageContents .sec-form .sectionWrap .tableWrap table td .partsWrap.half {
  width: 50%;
}
}


/* thanks
------------------------------------------*/
.thanks .kankyo-form__item p {
  font-weight: bold !important;
  line-height: 2;
  font-size: 15px; }
  @media only screen and (max-width: 767px) {
    .thanks .kankyo-form__item p {
      font-size: 14px; } }


.thanks-mes {
  text-align: center;
}
.thanks-mes .top-btn {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  margin: 50px auto 0;
  width: 500px;
  height: 60px;
  box-sizing: border-box;
  font-size: 1.4rem;
  position: relative;
  cursor: pointer;
  background-color: #007440;
  color: white;
}
.thanks-mes .top-btn:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
    .br-sp {
        display: none;
    }
}
@media screen and (max-width: 767px) {
  .thanks-mes .top-btn {
    margin: 30px auto 0;
    width: 250px;
    height: 60px;
    font-size: 1.2rem;
    line-height: 1.2;
  }
}

.red{
    color: #D90000 !important;
}
/*# sourceMappingURL=form.css.map */
