@charset "utf-8";

/*
   index.html
---------------------------------------------------*/

#content .article_main {
  width: 694px;
  padding: 0 30px 80px 12px;
  margin-top: 22px;
  background: #fff;
}

#content .article_main::after {
  clear: both;
  display: block;
  visibility: hidden;
  height: 0.1px;
  font-size: 0.1em;
  line-height: 0;
  content: ".";
}

#content .page_top {
  position: absolute;
  bottom: -4px;
  left: 430px;
  z-index: 100;
}

#content .article h1 {
  margin-bottom: 20px;
  margin-left: 30px;
  font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
  font-size: 230%;
  font-weight: 900;
  font-feature-settings: "palt";
  line-height: 1;
  letter-spacing: 0.3em;
}

#content .article h2 {
  width: 100%;
  font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
  font-size: 18px;
  font-feature-settings: "palt";
  color: #fff;
  text-align: center;
  letter-spacing: 0.2em;
  background-color: #621d86;
}

/* form
--------------------------------------- */
.form *,
.form *::before,
.form *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.form {
  margin-top: 40px;
  font-size: 14px;
}

.form__row {
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
}

.form__row + .form__row {
  margin-top: 30px;
}

.form__title {
  display: flex;
  align-items: center;
  color: #111;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.form__required,
.form__any {
  padding: 2px 8px;
  margin-left: 10px;
  font-size: 10px;
  line-height: 1.2;
  color: #fff;
  background: #eb0303;
}

.form__any {
  background: #aaa;
}

.form__col {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -10px;
}

.form__input {
  width: 100%;
  margin: 5px 0 0 10px;
  font-size: 13px;
}

.form__txt {
  margin-top: 5px;
  font-size: 11px;
}

.form__policy {
  padding: 10px 20px;
  margin-top: 20px;
  background: #f5f5f5;
  border-radius: 2px;
}

/* agree
--------------------------------------- */
.agree {
  margin-top: 30px;
}

.agree__text {
  text-align: center;
}

.agree__link {
  color: #111;
  text-decoration: underline;
}

.agree__link:hover {
  text-decoration: none;
}

.agree__check {
  padding: 8px;
  margin-top: 20px;
  text-align: center;
  background: #f5f5f5;
}

/* error
--------------------------------------- */
.error {
  margin-top: 30px;
}

.error__text {
  padding: 3px 10px;
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.1;
  color: #fff;
  background: #eb0303;
}

/* switch
--------------------------------------- */
.switch {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
}

.switch__item {
  width: 50%;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 5px;
}

.switch__button {
  display: block;
  width: 100%;
  padding: 20px 10px;
  font-size: 16px;
  line-height: 1.1;
  color: #fff;
  cursor: pointer;
  background: #d10000;
  border: none;
  border-radius: 5px;
  -webkit-transition: opacity 0.4s ease-out;
  transition: opacity 0.4s ease-out;
}

.switch__button:active {
  opacity: 70%;
}

/* complete
--------------------------------------- */
.complete {
  padding: 30px 20px;
  font-size: 13px;
  border: 1px solid #e8e8e8;
}

.complete__title {
  padding-bottom: 15px;
  margin-bottom: 15px;
  font-size: 16px;
  color: #111;
  border-bottom: 1px solid #e8e8e8;
}

.complete__link {
  color: #111;
  text-decoration: underline;
}

.complete__link:hover {
  text-decoration: none;
}

/* Select
--------------------------------------- */
select {
  padding: 15px 50px 15px 15px;
  font-size: 13px;
  line-height: 1.1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  outline: none;
  background: #f0f0f0;
  border: 1px solid #f0f0f0;
  border-radius: 0;
}

.triangles {
  position: relative;
}

.triangles::before {
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 6px;
  height: 6px;
  margin-top: -6px;
  pointer-events: none;
  content: "";
  border-top: 2px solid #111;
  border-right: 2px solid #111;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

/* Radio
--------------------------------------- */
input[type="radio"] {
  display: none;
}

input[type="radio"] + label {
  display: inline-block;
  cursor: pointer;
}

input[type="radio"] + label::before {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: -2px 6px 0 0;
  vertical-align: middle;
  content: "";
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 20px;
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}

input[type="radio"]:checked + label {
  color: #222;
  cursor: default;
}

input[type="radio"]:checked + label::before {
  background-color: #111;
  border-color: #111;
  -webkit-box-shadow: inset 0 0 0 3px #fff;
  box-shadow: inset 0 0 0 3px #fff;
}

/* Checkbox
--------------------------------------- */
input[type="checkbox"] {
  display: none;
}

input[type="checkbox"] + label {
  display: inline-block;
  cursor: pointer;
}

input[type="checkbox"] + label::before {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: -2px 6px 0 0;
  vertical-align: middle;
  content: "";
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 2px;
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}

input[type="checkbox"]:checked + label {
  color: #222;
  cursor: default;
}

input[type="checkbox"]:checked + label::before {
  background-color: #111;
  border-color: #111;
  -webkit-box-shadow: inset 0 0 0 3px #fff;
  box-shadow: inset 0 0 0 3px #fff;
}

/* utility
--------------------------------------- */
.u_flat {
  width: 100%;
  padding: 15px;
  font-size: 13px;
  line-height: 1.5;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
}

.u_flat:focus {
  background: #fff;
  border: 1px solid #d8d8d8;
}

.u_flat-w40 {
  width: 10em;
}

/* p-request
--------------------------------------- */
.p-request {
  margin-top: 40px;
  color: #111;
}

.p-request > * {
  box-sizing: border-box;
}

.p-request__title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

.p-request__summary {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.p-request__block {
  margin-top: 30px;
  border: 1px solid #aaa;
  border-radius: 2px;
}

.p-request__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.1;
  border-bottom: 1px solid #aaa;
}

.p-request__head-logo {
  width: 160px;
}

.p-request__head-logo img {
  width: 100%;
}

.p-request__body {
  padding: 20px;
}

.p-request__body-title {
  font-size: 16px;
  font-weight: normal;
}

.p-request__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.p-request__img img {
  display: block;
  width: 100%;
}

.p-request__main-txt {
  font-size: 16px;
  font-weight: bold;
}

.p-request__main-summary {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.5;
}

.p-request__body-summary {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.5;
}

.p-request__bold {
  font-weight: bold;
}

/* p-cell
--------------------------------------- */
.p-cell {
  width: 100%;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.5;
}

.p-cell__th {
  padding: 10px;
  color: #fff;
  background: #e48426;
  border: 1px solid #fff;
}

.p-cell__td {
  padding: 10px;
  background: #f8d8cd;
  border: 1px solid #fff;
}

/* p-accordion
--------------------------------------- */
.p-accordion {
  margin-top: 30px;
  font-size: 14px;
  color: #111;
}

.p-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border: 1px solid #aaa;
  border-radius: 2px;
}

.p-accordion__trigger::after {
  width: 7px;
  height: 7px;
  color: #111;
  content: "";
  border-top: 2px solid #666;
  border-right: 2px solid #666;
  transform: rotate(135deg);
  transition: transform 0.4s ease-out;
}

.p-accordion__trigger-active::after {
  transform: rotate(-45deg);
}

.p-accordion__target {
  display: none;
  margin-top: 10px;
}

.p-accordion__body {
  padding: 0 10px;
}

.p-accordion__item {
  margin-left: 20px;
  list-style-type: decimal;
}
