@charset "UTF-8";

.contents {
  width: 1024px;
  margin: 0 auto;
}

h1 {
  background-color: var(--corporate-color);
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  margin: 30px 0;
  padding: 10px 0;
}

.hd_contents {
  width: 1024px;
  border: solid 1px #cccccc;
  margin-bottom: 50px;
  padding: 30px 0;
}

.hd_contents .txt {
  font-size: 16px;
  color: #333333;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.flow__group {
  display: flex;
  justify-content: space-around;
  width: 750px;
  margin: 0 auto 50px;
}

.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: 16px;
  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 {
  display: flex;
  margin-bottom: 30px;
}

.form__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  width: 300px;
  height: 50px;
  font-size: 16px;
  line-height: 1.4;
  margin-right: 10px;
}

.form__label-inner {
  position: relative;
  display: block;
  font-size: 16px;
  padding-left: 20px;
}

.form__label-inner::before {
  content: "";
  display: block;
  width: 10px;
  height: 50px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--corporate-color);
}

.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: baseline;
  width: 100%;
}

.flex__column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.input__group.wrap {
  flex-wrap: wrap;
}

.input__group-split {
  display: flex;
  align-items: baseline;
  width: 100%;
}

.input__group-split:first-child {
  margin-bottom: 20px;
}

.input__group-inner {
  display: block;
  white-space: nowrap;
  text-align: center;
  margin: 0 10px 0 20px;
}

.input__group-inner.name {
  width: 40px;
}

.input__group-inner.contact {
  width: 300px;
  text-align: left;
}

.input__square {
  display: flex;
  border: 1px solid #bfbfbf;
  color: #333333;
  width: 100%;
  font-size: 14px;
  -webkit-appearance: none;
  margin-left: 0;
}

.Half-width {
  width: 50%;
}

.input__full-width {
  width: 100%;
  height: 50px;
  padding: 0 10px;
}

.group__full-width {
  width: 100%;
}

.textarea01 {
  width: 100%;
  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: 24px;
  height: 24px;
  border: 2px #ccc solid;
  vertical-align: -3px;
}

.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: 1024px;
  border: solid 1px #cccccc;
  margin-bottom: 50px;
  padding: 30px;
}

.policy__txt {
  margin-bottom: 10px;
}

.policy__link {
  margin-bottom: 15px;
}

.policy__link-inner {
  display: inline-block;
  color: var(--corporate-color);
  font-weight: 600;
}

.policy__checbox {
  display: flex;
  align-items: baseline;
}

.policy__checbox-label {
  margin-right: 10px;
}

.recaptcha__group {
  display: flex;
  justify-content: center;
}

.form__submit-group {
  display: flex;
  justify-content: center;
  margin: 50px 0;
}

.btnform_ch {
  text-align: center;
}

.btnform_ch a {
  position: relative;
  display: inline-block;
  background-color: #cc0000;
  border-radius: 3px;
  float: none;
  font-size: 18px;
  line-height: 1;
  margin: 0 auto;
  padding: 22px 120px;
  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;
  float: none;
  font-size: 18px;
  margin: 0 auto;
  padding: 22px 120px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
}

.btnform__reset {
  text-align: center;
}

.btnform__reset-inner {
  display: inline-block;
  background-color: #535353;
  border-radius: 3px;
  float: none;
  font-size: 18px;
  line-height: 1;
  margin: 0 auto;
  padding: 20px 70px;
  color: #fff;
  text-decoration: none;
}

/* エラーメッセージのスタイル */
.err__txt {
  width : 100%;
  padding: 0;
  display: inline-block;
  font-size: 90%;
  color: #cc0000;
  box-sizing: border-box;
}


/*
確認ページ
confirm.html
ここから
*/
.txt-red {
  font-weight: 600;
  color: #eb5c5c;
}

.txt-bold {
  font-weight: 600;
}

.confirm .input__group {
  align-items: center;
}

.confirm .input__square {
  align-items: center;
  min-height: 50px;
  height: auto;
  padding: 10px;
}

.confirm .input__group-split {
  align-items: center;
}

.confirm .btn-group {
  text-align: center;
  margin: 50px 0;
}

.btn-primary {
  width: 300px;
}

.btnform__back {
  text-align: center;
  margin-right: 30px;
}

.btnform__back-inner {
  position: relative;
  display: inline-block;
  background-color: #535353;
  border-radius: 3px;
  width: 100%;
  float: none;
  font-size: 18px;
  line-height: 1;
  margin: 0 auto;
  padding: 20px 0  20px 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: 18px;
  line-height: 1;
  text-align: center;
  padding: 20px 20px 20px 0;
  color: #fff;
  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: 10%;
}

.brake {
  display: none;
}
.thanks .hd_contents {
  font-size: 16px;
  text-align: center;
  padding: 30px;
}

.thanks .hd_contents h2 {
  font-size: 30px;
  font-weight: 700;
}

.thanks .hd_contents a {
  display: block;
}

.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: 480px;
}

.category_link {
  position: relative;
  display: block;
  background-color: var(--corporate-color);
  border: solid 1px var(--corporate-color);
  border-radius: 6px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  padding: 10px 0;
  transition: background-color 0.5s, color 0.5s;
}

.category_link:hover {
  background-color: #fff;
  color: var(--corporate-color);
}

.category_link::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(255,255,255,1);
  border-right: 2px solid rgba(255,255,255,1);
  transform: translateY(-50%) rotate(45deg);
  transition: border 0.5s;
}

.category_link:hover::after {
  border-top: 2px solid var(--corporate-color);
  border-right: 2px solid var(--corporate-color);
}