@charset "UTF-8" ;

.container {
    width: 100%;
    color: #555;

    /* background-color: mediumpurple; */
}
.background {
    width: 100%;
    height: 100vh;
    background-image: url(../img/imgのコピー/シンプル/cora-pursley-dupe.jpeg);
    background-size: cover;
    background-repeat: no-repeat;  /* 繰り返さない */
  background-attachment: fixed;  /* スクロールしても背景を固定 */
  background-position: center;   /* 画像を中央に配置 */
  overflow: auto;
  background-color:rgba(255,255,255,0.8);
  background-blend-mode:lighten;
    padding-top: 80px;
    /* padding-bottom: 100px; */
    background-color: #fffaf3ec;
}

.nav {
    width: 100%;
    height: 110px;
    position: fixed;
    top: 0;
    z-index: 999;
    background-color: #ffffff;
    box-shadow: 3px 3px 6px -2px #555,
    3px 3px 8px rgba(255,255,255,0.8) inset;

}
.navi {
    width: 80%;
    margin: 0 auto;
    padding-top: 20px;
    /* background-color: aquamarine; */
}
.navi ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    text-align: center;
}
.navi a {
    color: grey;
    text-decoration: none;
}
.logo {
    width: 10%;
}
.logo img {
    width: 100%;
}
.Form {
    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
  }
  @media screen and (max-width: 480px) {
    .Form {
      margin-top: 40px;
    }
  }
  .Form-Item {
  
    padding-top: 24px;
    padding-bottom: 24px;
    width: 100%;
    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-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: 480px) {
    .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: #54545474;
    color: #fff;
    font-size: 14px;
  }
  @media screen and (max-width: 480px) {
    .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: #fffaf3;
    font-size: 18px;
  }
  @media screen and (max-width: 480px) {
    .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: #fffaf3;
    font-size: 18px;
  }
  @media screen and (max-width: 480px) {
    .Form-Item-Textarea {
      margin-top: 18px;
      margin-left: 0;
      height: 200px;
      flex: inherit;
      font-size: 15px;
    }
  }

  /* ここからボタン */
.btn {
	/* font-size: 14px; */
    font-size: 25px;
	border: 1px solid #666;
	text-align: center;
	max-width: 200px;
	margin: 20px auto;
	font-family: 'Noto Serif JP', serif;
  color: #666;
	display: block;
	width: 100%;
	height: 100%;
	padding: 10px;
	box-sizing: border-box;
}
/* ボタンのベース↑ */

.btn11 {
	position: relative;
	border: none;
	border-bottom: 1px solid #666;
	width: fit-content;
  margin-left: 45%;

	}
/* ここまでボタン */




  @media screen and (max-width: 480px) {
  /* ここからボタン */
  .btn {
    /* font-size: 14px; */
      font-size: 25px;
    border: 1px solid #666;
    text-align: center;
    max-width: 200px;
    margin: 20px auto;
    font-family: 'Noto Serif JP', serif;
    color: #666;
    display: block;
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
  }
  /* ボタンのベース↑ */
  
  .btn11 {
    width: 100%;
    text-align: center;
    position: relative;
    border: none;
    border-bottom: 1px solid #666;
    width: fit-content;  
    }
  /* ここまでボタン */
  
  }