@charset "utf-8";
/* CSS Document */
/* ============== 見出し ここから ============== */
.top-title>h1 {
  font-size: clamp(2.8rem, 5vw, 4.0rem);
  display: block;
  margin: clamp(110px, 15vw, 180px) auto clamp(60px, 14vw, 160px);
}
.sectionTitle5 {
  position: relative;
  text-align: center;
}
.sectionTitle5::after {
  content: attr(data-en);
  font-size: clamp(8.0rem, 22vw, 26.0rem);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #9d6dc6;
  opacity: .2;
  z-index: -9;
  overflow: hidden;
  width: 100%;
}
/* ============== 本文 ここから ============== */
/* ===== タブ切り替え ===== */
.tab-wrap {
  width: min(90% ,1220px);
  display: flex;
  flex-wrap: wrap;
  margin-inline: auto;
}
.tab-label {
  font-size: var(--p-size);
  color: #999999;
  white-space: nowrap;
  text-align: center;
  padding: 10px .5em;
  order: -1;
  background-color: #f5f5f5;
  border: solid 1px #aeaeae;
  flex: 1;
}
.tab-label:not(:last-of-type) {
  margin-right: 5px;
}
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.tab-content>.top-lead {
    max-width: 880px;
    text-align: left;
    margin: clamp(40px, 4vw, 60px) auto;
  }
/* アクティブなタブ */
.tab-switch:checked+.tab-wrap:after {
  content: '';
  width: 50%;
}
.tab-switch:checked+.tab-label {
  background: #333;
  box-shadow: var(--box-shadow);
  color: #fff;
  font-size: var(--p-size);
  font-weight: bold;
}
.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  padding: clamp(6px, 4vw, 60px) 0 clamp(80px, 24vw, 180px);
  opacity: 1;
  transition: .5s opacity;
}
/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}

/*  内容  */
table.formTable {
  margin: 0 auto 20px;;
}
table.formTable th, table.formTable td {
  display:block;
  text-align: left;
}
table.formTable th {
  margin-top:34px;
  border-bottom:0;
  font-size: 1.8rem;
}
table.formTable th .red {
  margin-left: 14px;
  background-color: #940000;
  color: #fff;
  width: 44px;
  font-weight: normal;
  font-size: 1.4rem;
  text-align: center;
  display: inline-block;
  padding-bottom: 2px;
}
table.formTable td ,table.formTable .checkbox-area>td {
  margin-top: 7px;
  font-size: 1.8rem;
}

form input[type="text"], form textarea {
  width:100%;
  padding:5px;
  font-size:110%;
  display:block;
}
form input[type="submit"], form input[type="reset"], form input[type="button"] {
  display:block;
  width:100%;
  max-width: 370px;
  margin: 0 auto;
  height:60px;
  background-color: #373737;
  color: #fff;
  font-size: var(--p-size);
}
.privacy-policy>small {
  font-size: 1.4rem;
  text-align: left;
  margin:  0 0 60px 5px;
  display: inline-block;
  text-indent: -1rem;
  line-height: 20px;
}
.privacy-policy>small a {
  text-decoration: underline;
  color: blue;
}
  /* ============== PC(1025px)レスポンシブ ============== */
@media only screen and (min-width:1023px) {
   table.formTable tr {
    display: table;
    margin-top: 30px;
  }
  table.formTable th {
    display: table-cell;
    width:202px;
    vertical-align: top;
  }
  table.formTable td {
    width: 55vw;
		max-width: 800px;
    margin: 0 0 0 5vw;
  }
  form input[type="submit"]:hover, form input[type="reset"]:hover {
    background-color: #777777;
  }
}








