@charset "UTF-8";

h1 {
  background-color: var(--corporate-color);
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  margin: 30px 0;
  padding: 10px;
}

.hd_contents {
  width: calc(100% - 20px);
  border: solid 1px #cccccc;
  margin: 0 auto 30px;
  padding: 20px;
}

.hd_contents .txt {
  font-size: 16px;
  color: #333333;
  text-align: left;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.caution {
  color: #c00;
}

.Faq__link {
  text-align: center;
  margin-top: 20px;
}

.Common21__line-btn-inner {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  min-height: calc(
    var(--Common21__line-btn-height) - (var(--Common21__line-btn-padding) * 2)
  );
}

/* start_line-btn */
.Common21__line-btn {
  --Common21__line-btn-height: 6rem;
  --Common21__line-btn-padding: 1.5rem;
  display: inline-block;
  position: relative;
  min-height: var(--Common21__line-btn-height);
  padding: var(--Common21__line-btn-padding) 4rem
    var(--Common21__line-btn-padding) 2rem;
  font-size: 1.5rem;
  line-height: 1.3;
  text-align: left;
  border-radius: 0.4rem;
  border: 1px solid #c3c3c3;
  width: 100%;
}

.Common21__line-btn-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  min-height: calc(
    var(--Common21__line-btn-height) - (var(--Common21__line-btn-padding) * 2)
  );
}

.Common21__line-btn::before {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  top: 50%;
  right: 1rem;
  background: var(--corporate-color);
  border-radius: 50%;
  transform: translateY(-50%);
}

.Common21__line-btn::after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  position: absolute;
  top: 50%;
  right: 1.6rem;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: translateY(-50%) rotate(45deg);
}

.Common21__line-btn:active {
  border-color: var(--corporate-color);
  background-color: #f2fafe;
}
/* end_line-btn */

.flow__group {
  display: flex;
  justify-content: space-around;
  width: calc(100% - 20px);
  margin-bottom: 30px;
}

.flow__item {
  display: -webkit-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: calc(84% / 3);
  height: 40px;
  background-color: #ddd;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  font-weight: 600;
}

.flow__item::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent #ddd;
  position: absolute;
  top: 0%;
  right: -20px;
}

.flow__item.current {
  background-color: var(--corporate-color);
}

.flow__item.current::after {
  border-color: transparent transparent transparent var(--corporate-color);
}

.form__group {
  margin-bottom: 20px;
  padding: 0 10px;
}

.form__group.contact .input__group-inner {
  margin: 0;
}

.form__group.contact .input__group.flex__column:not(:last-child) {
  margin-bottom: 10px;
}

.form__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: solid 5px var(--corporate-color);
  font-size: 16px;
  text-align: center;
  padding: 10px 0;
}

.form__label-inner {
  font-weight: 700;
  text-align: left;
}

.form__label-inner small {
  display: block;
}

.required__item {
  /* border: solid 1px #cc0000; */
  background-color: #c00;
  font-size: 12px;
  color: #fff;
  font-weight: 700;
  padding: 3px 10px;
}

.input__group {
  display: flex;
  align-items: center;
  width: 100%;
}

.input__group:not(:last-child) {
  margin-bottom: 10px;
}

.flex__column {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.input__group-inner {
  display: block;
  font-size: 14px;
  white-space: nowrap;
  text-align: center;
  margin: 0 10px;
}

.input__square {
  display: flex;
  border: 1px solid #bfbfbf;
  color: #333333;
  width: 100%;
  /*height: 100%;*/
  font-size: 14px;
  -webkit-appearance: none;
  margin-left: 0;
}

.input__full-width {
  width: 100%;
  height: 40px;
  padding: 0 10px;
}

.input__full-width02 {
  width: 100%;
  height: 22px;
  padding: 0 10px;
}

.select__group {
  display: flex;
  align-items: baseline;
  width: 100%;
}

/* .select__group.split {
  display: flex;
  align-items: center;
  width: 30%;
} */

.select__square {
  position: relative;
}

.select__square::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 2px);
  right: 8px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #707070;
  border-right: 2px solid #707070;
  transform: translateY(-50%) rotate(135deg);
}

.Half-width.flex__column.month {
  flex: 2;
}

.Half-width.flex__column.day {
  flex: 1;
}

.select__group-inner {
  display: block;
  width: 30px;
  white-space: nowrap;
  text-align: center;
  margin: 0 20px 0 10px;
}

.select__square {
  display: flex;
  border: 1px solid #bfbfbf;
  color: #333333;
  width: 100%;
  font-size: 14px;
  -webkit-appearance: none;
  margin-left: 0;
}

.select__square-half {
  display: flex;
  border: 1px solid #bfbfbf;
  color: #333333;
  width: 50%;
  font-size: 14px;
  -webkit-appearance: none;
  margin-left: 0;
}

.select__full-width {
  width: 100%;
  height: 40px;
  padding: 0 10px;
}

.notice {
  font-size: 14px;
  margin-bottom: 5px;
  padding: 0 10px;
}

.textarea01 {
  width: 100%;
  height: 150px;
  padding: 10px;
}

.checkbox {
  display: none;
}

.checkbox+.checkbox-icon {
  position: relative;
  vertical-align: middle;
}

/*.checkbox + .checkbox-icon:before {
  content: "";
  font-family: "Ionicons";
  color: #ccc;
  font-size: 44px;
  font-size:2px;
  border: 2px #ccc solid;
padding: 10px;
 }*/
.checkbox+.checkbox-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px #ccc solid;
  vertical-align: -5px;
}

.checkbox:checked+.checkbox-icon:after {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  left: 5px;
  width: 10px;
  height: 20px;
  transform: rotate(40deg);
  border-bottom: 3px solid #001831;
  border-right: 3px solid #001831;
}

.policy {
  width: calc(100% - 20px);
  border: solid 1px #cccccc;
  margin: 0 auto 20px;
  padding: 10px;
}

.policy__txt {
  font-size: 14px;
  margin-bottom: 10px;
}

.policy__link {
  margin-bottom: 15px;
}

.policy__link-inner {
  display: inline-block;
  font-size: 14px;
  color: var(--corporate-color);
  font-weight: 600;
}

.policy__checbox {
  display: flex;
  align-items: baseline;
}

.policy__checbox-label {
  margin-right: 10px;
}

.policy__checbox-label + p {
  font-size: 14px;
}

.recaptcha__group {
  display: flex;
  justify-content: center;
  z-index: 10;
}

.form__submit-group {
  display: flex;
  justify-content: center;
  margin: 30px 0;
  padding: 0 10px;
}

.btnform_ch {
  display: flex;
  width: 90%;
  text-align: center;
}

.btnform_ch a {
  position: relative;
  display: inline-block;
  background-color: #cc0000;
  border-radius: 3px;
  font-size: 16px;
  line-height: 1;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  color: #fff;
  cursor: default;
  text-decoration: none;
  opacity: 0.5;
}

.btnform_ch a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(255, 255, 255, 1);
  border-right: 2px solid rgba(255, 255, 255, 1);
  transform: translateY(-50%) rotate(45deg);
}

.btnform_ch.btn_fm01 a {
  background-color: #cc0000;
  border-radius: 3px;
  font-size: 16px;
  margin: 0 auto;
  padding: 20px;
  width: 100%;
  color: #fff;
  cursor: pointer;
  opacity: 1;
}

.btnform__reset {
  display: flex;
  width: calc(100% / 2);
  text-align: center;
}

.btnform__reset-inner {
  display: inline-block;
  background-color: #535353;
  border-radius: 3px;
  float: none;
  font-size: 16px;
  line-height: 1;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  color: #fff;
  text-decoration: none;
}

/* エラーメッセージのスタイル */
.err__txt {
  width: 100%;
  padding: 0;
  display: inline-block;
  font-size: 80%;
  line-height: 1.2;
  color: #cc0000;
  box-sizing: border-box;
  margin-top: 5px;
}


/*
確認ページ
confirm.html
ここから
*/
/* .confirm .input__group {
  align-items: center;
} */
.confirm .select__group {
  align-items: center;
}

.confirm .select__square {
  align-items: center;
  padding: 10px;
}

.confirm .select__square::before {
  content: none;
}

.confirm .input__group.name .Half-width:not(:last-child) {
  margin-right: 10px;
}

.confirm .input__square {
  align-items: center;
  padding: 10px;
}

.confirm .Half-width {
  width: 50%;
}

.confirm .input__square.inquiry {
  height: auto;
}

.confirm .btn-group {
  text-align: center;
  margin: 30px 0;
}

.btnform__back {
  text-align: center;
  margin-right: 10px;
}

.form__submit-group .btn-primary {
  width: calc(100% / 2);
}

.btnform__back-inner {
  position: relative;
  display: inline-block;
  background-color: #535353;
  border-radius: 3px;
  width: 100%;
  float: none;
  font-size: 16px;
  line-height: 1;
  margin: 0 auto;
  padding: 15px 0 15px 20px;
  color: #fff;
  text-decoration: none;
}

.btnform__back-inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(255, 255, 255, 1);
  border-right: 2px solid rgba(255, 255, 255, 1);
  transform: translateY(-50%) rotate(-135deg);
}

.confirm .btn-primary.confirm {
  position: relative;
  display: inline-block;
  background-color: #cc0000;
  border-radius: 3px;
  float: none;
  font-size: 16px;
  line-height: 1;
  padding: 15px 0;
  color: #fff;
  text-align: center;
  padding: 15px 20px 15px 0;
  text-decoration: none;
}

.confirm .btn-primary.confirm::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(255, 255, 255, 1);
  border-right: 2px solid rgba(255, 255, 255, 1);
  transform: translateY(-50%) rotate(45deg);
}

/*
thanks1.php
*/
.Header__thanks-group {
  box-shadow: 0px -1px 0px 0px #e5e5e5 inset;
  text-align: center;
  padding: 10px 0;
}

.Header__thanks-group img {
  width: 40%;
}

.brake {
  display: block;
}

.thanks .hd_contents {
  font-size: 14px;
  text-align: center;
  padding: 18px;
}

.thanks .hd_contents .txt2 {
    font-size: 3.9vw;
}

.thanks .hd_contents h2 {
  font-size: 24px;
  font-weight: 700;
}

.thanks .hd_contents a {
  display: block;
}

.completed {
  font-size: 24px;
  font-weight: 700;
  color: #FF0000;
  text-align: center;
  margin-bottom: 30px;
}

.mailto_link {
  margin: 10px 0;
}

.mailto_link a {
  color: var(--corporate-color);
  text-decoration: underline;
}

.category_btn {
  text-align: center;
}

.category_btn-inner {
  display: inline-block;
  width: 100%;
}

.category_link {
    position: relative;
    display: block;
    background-color: #fff;
    border: 1px solid #c3c3c3;
    border-radius: 6px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    color: #333;
    margin-top: 20px;
    padding: 10px 0;
    transition: background-color 0.5s, color 0.5s;
}

.category_link::before {
    content: "";
    display: block;
    width: 1.6rem;
    height: 1.6rem;
    position: absolute;
    top: 50%;
    right: 1rem;
    background: var(--corporate-color);
    border-radius: 50%;
    transform: translateY(-50%);
}

.category_link:hover {
  background-color: #fff;
  color: var(--corporate-color);
}

.category_link::after {
    content: "";
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    position: absolute;
    top: 50%;
    right: 1.6rem;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: translateY(-50%) rotate(45deg);
}

.category_link:hover::after {
  border-top: 2px solid var(--corporate-color);
  border-right: 2px solid var(--corporate-color);
}

.txt-red {
	color: red;
}

#Footer .Footer__toggle01 {
	border-top: none;
}