@charset "utf-8";
/* CSS Document */

body {
  margin: 0; /*外側への余白*/
  padding: 0; /*内側への余白*/
  font-size: 16px; /*文字の大きさ*/
  line-height: 1.5;
}

tbody {
  -webkit-text-size-adjust: 100%;
}

* {
  box-sizing: border-box;
}

.blue {
  color: #06f;
  font-size: 12px;
}
.red {
  color: #f00;
  font-size: 12px;
}

#wrap {
  width: 1000px; /*横幅*/
  margin: 0px auto; /*全体を中央配置*/
  padding: 0px auto;
}

.boxArea {
  width: 100%;
  margin: 60px auto 0;
}

.clear {
  clear: both;
}

.left {
  float: left;
  width: auto;
}

.right {
  float: right;
  width: auto;
}
.clearfix:after {
  content: "";
  clear: both;
  display: block;
}
.mt_30 {
  margin-top: 30px;
}
.mt_50 {
  margin-top: 50px;
}
.mr_40 {
  margin-right: 40px;
}

.br-pc {
  display: block;
}

.br-sp {
  display: none;
}

span {
  /*spanは特に意味を持たないタグです。装飾用などに使用します*/

  font-size: 15px; /*文字の大きさ*/
}

h2 {
  font-size: 28px;
}

h2 span {
  color: #666 !important;
  font-size: 15px;
}

h3 {
  color: #333;
  font-size: 18px;
}

table {
  border-collapse: collapse; /*テーブルのうち枠線を重ねて表示*/
  /*width:470px;横幅*/
}

th {
  /*thは見出しセルです。*/

  border: solid 1px #999; /*ボーダーを上下左右に実線で,1px,で#999で*/
  background: #eee;
  width: auto; /*横幅*/
  padding: 5px; /*内側への余白上下左右5px*/
  text-align: left; /*文字を左寄せ*/
}

td {
  border: solid 1px #999; /*ボーダーを上下左右に実線で,1px,で#999で*/
  width: auto; /*横幅*/
  padding: 5px; /*内側への余白上下左右5px*/
}

textarea {
  width: 400px; /*横幅*/
  height: 80px; /*高さ*/
}

.button {
  display: flex;
  text-align: center; /*文字を中央寄せ*/
  width: 100%;
  margin: 0 auto;
}
.button > form {
  margin-left: auto;
  margin-right: auto;
}

.textFocus {
  color: #000 !important;
}

/* input[type="text"],
textarea {
  color: #03f;
} */

#name3 {
  width: 150px;
}

.openpage {
  width: 880px;
  margin: 0 auto;
}
.openpage p {
  font-size: 14px;
  line-height: 1.7;
}
.linktogo a {
  text-decoration: underline;
  font-size: 14px !important;
  line-height: 1.7 !important;
}

.text3 {
  width: 45px;
}

/* --------------PDB-240209修正追加css-PC------------------- */
.logo img {
  width: 70%;
}

.address1-input-domestic {
  padding-bottom: 22px;
}

.address1-input-box {
  position: relative;
  display: inline-block;
}

.address1-input-domestic p {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  margin: 0;
  white-space: nowrap;
}

.member-required {
  font-size: 15px;
}

.c-input-domestic {
  padding-bottom: 22px;
}

.c-input-box {
  position: relative;
  display: inline-block;
}

.c-input-domestic p {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  margin: 0;
  white-space: nowrap;
}

.font-feature-settings {
  font-feature-settings: "palt";
  font-size: 16px;
  color: steelblue;
}

.notes {
  padding: 5px 15px;
}

.caution-table {
  text-align: center;
}

.caution-table th {
  text-align: center;
  padding: 5px 15px;
}
.caution-table td {
  padding: 5px 15px;
}

.tel-mt {
  margin-top: 33px;
}

.explanation {
  margin: 30px 0;
}

/* ------------------------タブレット以下------------------------------ */
@media screen and (max-width: 1024px) {
  #wrap-sp {
    width: 90%;
    margin: 0 auto;
  }

  .br-sp {
    display: block;
  }

  .br-pc {
    display: none;
  }

  * {
    box-sizing: border-box;
  }

  body {
    margin: 0; /*外側への余白*/
    padding: 0; /*内側への余白*/
    font-size: 16px; /*文字の大きさ*/
    line-height: 1.5;
  }

  .blue {
    color: #06f;
    font-size: 14px;
  }
  .red {
    color: #f00;
    font-size: 14px;
  }

  .boxArea {
    width: 100%;
    margin: 60px auto 0;
  }

  .clear {
    clear: both;
  }

  .left {
    float: left;
    width: 100%;
  }

  .right {
    float: right;
    width: 100%;
  }
  .clearfix:after {
    content: "";
    clear: both;
    display: block;
  }
  .mt_30 {
    margin-top: 30px;
  }
  .mt_50 {
    margin-top: 50px;
  }
  .mr_40 {
    margin-right: 40px;
  }

  /* span {
    font-size: 14px;
    color: #f00;
  } */

  h2 {
    font-size: 22px;
  }

  h2 span {
    color: #666 !important;
    font-size: 16px;
  }

  h3 {
    color: #333;
    font-size: 16px;
  }

  table {
    border-collapse: collapse; /*テーブルのうち枠線を重ねて表示*/
    /*width:470px;横幅*/
    width: 100%;
  }

  th {
    /*thは見出しセルです。*/

    border: solid 1px #999; /*ボーダーを上下左右に実線で,1px,で#999で*/
    background: #eee;
    width: 50%; /*横幅*/
    padding: 5px; /*内側への余白上下左右5px*/
    text-align: left; /*文字を左寄せ*/
  }

  td {
    border: solid 1px #999; /*ボーダーを上下左右に実線で,1px,で#999で*/
    width: 50%; /*横幅*/
    padding: 5px; /*内側への余白上下左右5px*/
  }

  textarea {
    width: 400px; /*横幅*/
    height: 80px; /*高さ*/
  }

  .textFocus {
    color: #000 !important;
  }

  input[type="text"],
  textarea {
    /* width: 100%; */
    /* color: #03f; */
    /* padding: 10px; */
    font-size: 16px;
    flex-grow: 1;
  }

  .address1-input-box input {
    width: 25%;
  }

  #name3 {
    width: 150px;
  }

  .openpage {
    width: 880px;
    margin: 0 auto;
  }
  .openpage p {
    font-size: 14px;
    line-height: 1.7;
  }
  .linktogo a {
    text-decoration: underline;
    font-size: 14px !important;
    line-height: 1.7 !important;
  }

  .text3 {
    width: 45px;
  }

  /* --------------PDB-240209修正追加css-スマホ-------------- */
  .logo img {
    width: 100%;
  }

  .address1-input-domestic {
    padding-bottom: 40px;
  }

  .address1-input-box {
    position: relative;
    display: flex;
  }

  .address1-input-domestic p {
    position: absolute;
    top: 33px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    margin: 0;
    white-space: nowrap;
  }

  .member-required {
    font-size: 16px;
  }

  .c-input-domestic {
    padding-bottom: 33px;
  }

  .c-input-box {
    position: relative;
    display: flex;
  }

  .c-input-domestic p {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    margin: 0;
    white-space: nowrap;
  }

  .font-feature-settings {
    font-feature-settings: "palt";
  }

  .notes {
    padding: 5px 15px;
  }

  .caution-table {
    text-align: center;
  }

  .caution-table th {
    text-align: center;
    padding: 5px 15px;
  }
  .caution-table td {
    padding: 5px 15px;
  }

  .tel-mt {
    margin-top: 33px;
  }

  .explanation {
    margin: 60px 0;
    font-size: 18px;
  }

  table {
    font-size: 16px;
    width: 100%;
  }

  .caution table tr th {
    width: auto;
  }

  .caution table tr td {
    width: auto;
  }

  table {
    width: 100%;
  }
  table tbody {
    width: 100%;
  }
  table tr {
    width: 100%;
  }
  table td {
    width: 100%;
  }
  table th {
    width: 100%;
  }

  .hyphen {
    margin: 0 5px;
    color: #000;
    font-size: 16px;
  }

  .tel-sp input {
    width: 25%;
  }
  .c-input-box input {
    width: 25%;
  }

  .sp-ym-input input[type="text"] {
    width: 85%;
  }
  .sp-ym-input #text {
    margin-left: 10px;
  }
}

/* -----------------------------------------新デザイン----------------------------------------------- */

@media screen and (max-width: 1024px) {
  #wrap {
    width: 90%; /*横幅*/
    margin: 0px auto; /*全体を中央配置*/
    padding: 0px auto;
  }

  h3 {
    font-size: 18px;
  }

  table tr {
    width: 50%;
  }
  table td {
    width: 50%;
  }
}

.Form {
  /* margin-top: 80px; */
  margin-bottom: 120px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.Form-Item {
  border-bottom: solid 1px #c1c1c1;
}

/* .form-num {
  text-align: right;
} */

@media screen and (max-width: 1024px) {
  .Form {
    margin-top: 40px;
  }
}
.Form-Item {
  padding-top: 8px;
  padding-bottom: 8px;
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}

.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 16px;
}

.Form-Item-Label-seimei {
  width: 100%;
  max-width: 130px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 16px;
}

@media screen and (max-width: 1024px) {
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
    margin-bottom: 5px;
  }

  .Form-Item-Label-seimei {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
    margin-bottom: 5px;
  }
}

.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}

.Form-Item-Label-seimei.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}

@media screen and (max-width: 1024px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }

  .Form-Item-Label-seimei.isMsg {
    margin-top: 0;
  }
}

.Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 3px;
  padding-bottom: 3px;
  width: 38px;
  display: inline-block;
  text-align: center;
  background: #545454;
  color: #fff;
  font-size: 12px;
}

@media screen and (max-width: 1024px) {
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}

.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  /* margin-left: 40px; */
  padding-left: 3px;
  padding-right: 3px;
  height: 48px;
  flex: 1;
  width: 100%;
  /* max-width: 410px; */
  background: #eaedf2;
  font-size: 16px;
  flex-grow: 0.5;
  margin-left: 20px;
}

.Form-Item-Input-2 {
  border: 1px solid #ddd;
  border-radius: 6px;
  /* margin-left: 40px; */
  padding-left: 3px;
  padding-right: 3px;
  height: 48px;
  flex: 1;
  width: 100%;
  /* max-width: 410px; */
  background: #eaedf2;
  font-size: 16px;
  flex-grow: 0.1;
  margin-left: 20px;
}

.Form-Item-Input-3 {
  border: 1px solid #ddd;
  border-radius: 6px;
  /* margin-left: 40px; */
  padding-left: 3px;
  padding-right: 3px;
  height: 48px;
  flex: 1;
  width: 100%;
  /* max-width: 410px; */
  background: #eaedf2;
  font-size: 16px;
  flex-grow: 0.1;
  margin-left: 20px;
}

.Form-Item-Input-adress {
  border: 1px solid #ddd;
  border-radius: 6px;
  /* margin-left: 40px; */
  padding-left: 3px;
  padding-right: 3px;
  height: 48px;
  flex: 1;
  width: 100%;
  /* max-width: 410px; */
  background: #eaedf2;
  font-size: 16px;
  flex-grow: 0.2;
  margin-left: 20px;
}

@media screen and (max-width: 1024px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }

  .Form-Item-Inpu-2 {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }

  .Form-Item-Input-3 {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }

  .Form-Item-Input-adress {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}

.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  /* margin-left: 40px; */
  padding-left: 1em;
  padding-right: 1em;
  height: 100px;
  flex: 1;
  width: 100%;
  /* max-width: 410px; */
  background: #eaedf2;
  font-size: 18px;
  flex-grow: 1;
}

@media screen and (max-width: 1024px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}

.Form-Btn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #1e80e8;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  transition-property: opacity;
  transition-duration: 0.5s;
  cursor: pointer;
}

.Form-Btn-2 {
  border: 2px solid #222;
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  width: 180px;
  display: block;
  letter-spacing: 0;
  background: #ffffff;
  color: #222222;
  font-weight: bold;
  font-size: 15px;
  transition-property: opacity;
  transition-duration: 0.5s;
  cursor: pointer;
}

.Form-Btn:hover {
  opacity: 0.5;
}

.Form-Btn-2:hover {
  opacity: 0.5;
}

@media screen and (min-width: 1025px) {
  .button > form .Form-Btn-2 {
    height: calc(100% - 32px);
  }
}
@media screen and (max-width: 1024px) {
  .Form-Btn {
    margin-top: 35px;
    padding-top: 15px;
    padding-bottom: 15px;
    width: 250px;
    font-size: 21px;
  }

  .Form-Btn-2 {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 200px;
    font-size: 14px;
  }
}

.form-2line {
  display: flex;
}

.form-left {
  margin-right: 20px;
}

.form-right {
  margin-left: 20px;
}

.radio-font {
  font-size: 16px;
  font-weight: bold;
  margin-left: 16px;
  margin-right: 50px;
  color: #000;
}

/* div p:not(:first-child) {
  color: steelblue;
} */

.disclose {
  /* color: #f00; */
}

.hyphen {
  margin: 0 10px;
  color: #000;
  font-size: 16px;
}

.address-btn {
  margin-left: 30px;
  font-size: 16px;
  padding: 5px 10px;
  border: 2px solid #333;
  cursor: pointer;
  font-weight: bold;
  font-feature-settings: "palt";
}

/* #h_todohuken {
  flex-grow: 1;
} */

.club-input2 {
  margin-left: 40px;
}

.membership-margin {
  margin-top: 40px;
}

input[type="radio" i] {
  margin-left: 20px;
}

.reset-text {
  text-align: center;
  margin-top: 80px;
}

.reset-text p {
  font-size: 16px;
  text-align: center;
}

.serch-sp {
  display: none;
}

.sp-adress {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .form-2line {
    flex-flow: column;
  }

  .form-left {
    margin-right: 0px;
  }

  .form-right {
    margin-left: 0px;
  }

  input[type="text"] {
    box-sizing: border-box;
    /* width: 100%; */
    font-size: 16px;
    margin-top: 5px;
  }

  input[type="radio" i] {
    margin-left: 0px;
    margin-right: 15px;
  }

  input[type="radio" i] :first-child {
    margin-left: 0px;
  }

  .radio-font {
    font-size: 16px;
    font-weight: bold;
    margin-left: 0;
    margin-right: 25px;
    color: #000;
  }

  .form-num {
    width: 20%;
  }

  .club-input2 {
    margin-left: 0;
    margin-top: 20px;
  }

  .serch-sp {
    display: block;
  }

  .address-btn {
    font-size: 14px;
  }

  .button {
    flex-flow: column;
  }

  .address-btn {
    margin-top: 20px;
    margin-left: 0;
    padding: 10px;
    width: auto;
    margin-inline: auto;
  }
}

/* ----------------生年月日---------------- */
.select-y {
  border: 1px solid #ddd;
  border-radius: 6px;
  /* margin-left: 40px; */
  padding-left: 3px;
  padding-right: 3px;
  height: 48px;
  flex: 1;
  width: 100%;
  /* max-width: 410px; */
  background: #eaedf2;
  font-size: 16px;
  flex-grow: 0.1;
  margin-left: 20px;
}

.select-m {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 10px;
  padding-left: 3px;
  padding-right: 3px;
  height: 48px;
  flex: 1;
  width: 100%;
  background: #eaedf2;
  font-size: 16px;
  flex-grow: 0.1;
}

.select-box {
  display: flex;
}

.red-span {
  color: #f00;
  font-size: 16px;
}

.club-input2-inq-2 {
  margin-left: 20px;
}

@media screen and (max-width: 1024px) {
  .select-y {
    margin-left: 0;
    /* margin-top: 18px; */
    height: 40px;
    flex-grow: 1;
  }
  .select-m {
    margin-left: 0;
    /* margin-top: 18px; */
    height: 40px;
    flex-grow: 1;
  }

  .select-nen {
    margin-right: 10px;
  }

  option {
    color: #000;
  }
}

@media screen and (max-width: 500px) {
  table {
    font-size: 16px;
  }
}

@media screen and (max-width: 450px) {
  table {
    font-size: 15px;
  }
}

@media screen and (max-width: 400px) {
  table {
    font-size: 13px;
  }
}

/* indexページ */
@media screen and (max-width: 1024px) {
  .index-logo {
    width: 100%;
  }

  .index-logo-wrap {
    width: 100%;
  }
}

#embedded-document {
  padding: 0;
}
