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


.pink{
	color: #E7656D;
}

.bcpink{
  background-color: #E7656D;
  color: #F9F9F9;
}

.bcgray{
  background-color: #e1e1e1;
}

.kotae{
  font-size: 20px;
  font-weight: 900;
  padding: 0;
}

.hoge{
    display: grid;
}

.w10{
  width: 10rem;
}

.w50{
  width: 50rem;
}

.center{
  text-align: center;
}

.head01{
  border-bottom: 1px solid #DADADA;
  color: #000;
  font-family: 'Noto Sans Japanese';
  font-size: 32px;
  /*font-size: 3.2rem;*/
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin-bottom: 35px;
  padding: 0 0 15px 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: 0.2s;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.head02{
  background-color: #F9F9F9;
  border-left: 6px solid #E7656D;
  font-size: 20px;
  /*font-size: 2.4rem;*/
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
  /*margin-bottom: 35px;*/
  padding: 10px 0 10px 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bottuon{
  width: 200px; /* ボタンの幅を設定 */
  height: 50px; /* ボタンの高さを設定 */
  font-size: 20px; /* フォントサイズを設定 */
  background-color: #E7656D; /* 背景色を設定 */
  color: white; /* 文字色を設定 */
  border: none; /* ボーダーを削除 */
  border-radius: 5px; /* ボーダーの角を丸くする */
}

/* 全体設定 */
* {
  box-sizing: border-box;
  }

form {
  max-width: 720px;
  margin: 0 auto;
}

/* フォームのレイアウト調整 */
form div {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

form label {
  width: 150px;
  margin-right: 10px;
  font-weight: bold;
}

/*form input[type="text"],
form input[type="date"],
form input[type="radio"],
form input[type="checkbox"],
form textarea {
  flex: 1;
}*/

form input[type="radio"] {
  width: auto;
  margin-right: 5px;
}

form input[type="checkbox"] {
  width: auto;
  margin-right: 5px;
  margin-left: 150px;
}

form textarea {
  height: 100px;
  resize: vertical;
}

/* ラジオボタンとチェックボックスのグループ */
form div:has(input[type="radio"]),
form div:has(input[type="checkbox"]) {
  flex-wrap: wrap;
}

input[type="radio"] + label,
input[type="checkbox"] + label {
  width: auto;
  margin-right: 15px;
  font-weight: normal;
}

.checkbox-group {
  display: block;
}



@media only screen and (max-width: 750px){
    video {	max-width: 100%; }
}
