@charset "UTF-8";
.inner{
  padding-top: 150px;
  text-align: center;
}

.m4b{/* タイトル */
  margin: 0 auto;
  padding-top: 10px;
  padding-bottom: 30px;
}
h3{
  margin-bottom: 20px;
}

.m9b{/* サブタイトル */
  font-size: calc(20/1440*100vw);
  background-color: #00356E;
  border-radius: 5px;
  color: #fff;
  padding: 10px;
}
.m10{/* 募集本文 */
  font-size: calc(20/1440*100vw);
  line-height: 1.5;
}
.text-b{/* 募集本文太字 */
  font-weight: bold;
}
.emp {/* 募集本文太字強調 */
  font-size: calc(28/1440*100vw);
  font-weight: 600;
  background: linear-gradient(transparent 50%, #ff272746 50%);
}
.menber{
display: flex;
  flex-flow: column;
  justify-content: space-between;
  margin: 0 auto 90px auto;
  max-width: 900px;
  width: 100%;         /* ← 横幅100% */
  padding: 0 16px;
  box-sizing: border-box; /* ← パディングを含めてmax-width内に収める */
}
.menber-text{
  border: #00356E solid 1px;
  border-radius: 5px;
  padding: 20px;
  line-height: 1.8;
}
.menber-text span {
  display: inline-block;
}
.menber-text p {
  margin-bottom: 1.5em; /* ←ここで空行 */
}
/* 文字レスポンシブ ===================*/
@media screen and (max-width: 900px) {
    .m9b{/* サブタイトル */
    font-size: calc(20/900*100vw);
  }
  .m10{/* 募集本文 */
  font-size: calc(20/900*100vw);
  line-height: 1.5;
  }
  .emp {
    font-size: calc(24/900*100vw)!important;
    font-weight: 500;
  }
}
@media screen and (max-width: 500px) {
    .m9b{/* サブタイトル */
    font-size: calc(18/500*100vw);
  }
    .m10{/* 募集本文 */
  font-size: calc(16/500*100vw);
  line-height: 1.5;
  }
  .emp {
    font-size: calc(16/500*100vw)!important;
    font-weight: 600;
  }
}
@media screen and (min-width: 1400px) {
  .m9b{/* サブタイトル */
  font-size: calc(24/1700*100vw);
  }
   .m10{/* 募集本文 */
  font-size: calc(20/1700*100vw);
  line-height: 1.5;
  }
  .emp {
  font-size: calc(24/1700*100vw)!important;
  font-weight: 600;
  }
}

/* お問い合わせフォーム ========================================*/
.Form {
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
  text-align: left;
  padding-left: 20px;   /* ←追加 */
  padding-right: 20px;  /* ←追加 */
}
@media screen and (max-width: 480px) {
  .Form {
    margin-top: 20px;
    padding-left: 20px;   /* ←追加 */
    padding-right: 20px;  /* ←追加 */
  }
}
.Form-Item {
  border-top: 1px solid #ddd;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}
.Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
}
.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}
.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width: 500px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}
.Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #00356E;
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 500px) {
  .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: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 500px) {
  .Form-Item-Input {
    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: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 500px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}
/* 送信ボタン ======================*/
.Form-Btn {
  border-radius: 50px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  width: 180px;
  display: block;
  letter-spacing: 0.05em;
  background: #00356E;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  border: none;
  transition: background-color 0.3s ease;
}
.Form-Btn:hover {
  background-color: #172245;/* メインカラー濃 */
}

/* よくある質問 ========================================*/
.page-image{
  font-family:sans-serif;
  font-size: calc(64/1440*100vw);
  font-weight: bold;
  color:rgba(0,0,0,.0);
  text-align:center;
  margin-top: 150px;
  margin-bottom: -20px;
  padding: 10px 0;
  -webkit-text-stroke: 1px #DB292C;
  top: 35%;
  text-align: center;
}

@media screen and (max-width: 900px) {
  .page-image{
  font-size: calc(52/1000*100vw);
  color: #DB292C;
  border: none;
}}

@media screen and (max-width: 500px) {
  .page-image{
  font-size: calc(36/480*100vw);
  color: #DB292C;
  border: none;
  }}
@media screen and (max-width: 900px) {
.qa-h2{
  font-size: calc(20/1000*100vw);
}}
.qa-6 {
  max-width: 900px;
  margin-left: auto; 
  margin-right: auto;
  margin-bottom: 5px;
  border-bottom: 2px solid #d6dde3;
}

.qa-6 summary {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 1em 2em 1em 3em;
  color: #333333;
  font-weight: 600;
  cursor: pointer;
}

.qa-6 summary::before,
.qa-6 p::before {
  position: absolute;
  left: 1em;
  font-weight: 600;
  font-size: 1.3em;
}

.qa-6 summary::before {
  color: #0068D6;
  content: "Q";
}

.qa-6 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #333333b3;
  border-right: 3px solid #333333b3;
  content: '';
  transition: transform .5s;
}

.qa-6[open] summary::after {
  transform: rotate(225deg);
}

.qa-6 p {
  position: relative;
  text-align: left;
  opacity: 0;
  margin: 0;
  padding: .3em 3em 1.5em;
  color: #333;
}

.qa-6[open] p {
  transform: none;
  opacity: 1;
}

.qa-6 p::before {
  color: #DB292C;
  line-height: 1.2;
  content: "A";
}


