
body{
  background-color: #f3f2e9;
  font-family: 'A-OTF 秀英丸ゴシック Std', Arial, sans-serif;
}
.mb-5{
  margin-bottom: 3.5rem;
}
.required{
color:#FF0000;
font-size:12px;
}

.er {
  font-family: 'A-OTF 秀英丸ゴシック Std', Arial, sans-serif;
color:#FF0000;
}

.btn_03 {
  -webkit-appearance: none;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  min-width: 50%;
  position: relative;
  background: #ed8675;
  border: 1px solid #ed8675;
  border-radius: 3px;
  box-sizing: border-box;
  padding: 0 25px 0 25px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  transition-duration: 0.3s;
  margin:16px;
}

.btn_03:hover {
  background: #fff;
  color: #666;
}

.btn_04 {
  -webkit-appearance: none;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  min-width: 50%;
  position: relative;
  background: #666;
  border: 1px solid #666;
  border-radius: 3px;
  box-sizing: border-box;
  padding: 0 10px 0 10px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  transition-duration: 0.3s;
}

.btn_04:hover {
  background: #fff;
  color: #666;
}

table.formTable{
  margin-top: 30px;
	width:100%;
	border-collapse:collapse;
}
table.formTable td,table.formTable th{
	border-top:1px solid #aaa;
  border-bottom:1px solid #aaa;
  background: #FFF;
	padding:15px;
}

table.formTable th{
	width:35%;
	font-weight:normal;
	background:#ed8675;
  color:#ffff;
	text-align:left;
  vertical-align: middle;
}


input[type='text'],
textarea {
	font: 15px/24px sans-serif;
	box-sizing: border-box;
	padding: 0.3em;
	transition: 0.3s;
	letter-spacing: 1px;
	border: 1px solid #aaa;
	border-radius: 4px;
}

input[type='text']:focus,
textarea:focus {
	border: 1px solid #ff5a76;
	outline: none;
}

::placeholder{
  color:#ccc;
}

::-webkit-input-placeholder {
  color:#ccc;
}
:-ms-input-placeholder {
  color:#ccc;
}
/*�@�ȈՔŃ��X�|���V�u�pCSS�i�K�v�Œ���݂̂Ƃ��Ă��܂��B�u���[�N�|�C���g���܂ߎ��R�ɐݒ艺�����j�@*/


.contents{
  /* width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 20px; */
  background-color: #ed8675; /* 画像のピンク色に近い色 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* position: relative;
  margin-top: -1.5rem; */
}

#wrapper{
  background-color: #f3f2e9;
}

.container{
  text-align: center;
}

.ui_tit01{
  text-align: center;
}

.reflection{
  text-align: center;
}

.reflection img{
  width: 30%;
}

.footer-youth{
  text-align: center;
  margin-top: 6rem;
  margin-bottom: 2rem;
  color: #ed8675;
  font-size: 13;

}


/*PC用*/
@media screen and (min-width:640px){
  #wrapper{
    text-align: center;
  }

  #contents{
    max-width: 800px;
    margin: 0 auto; /* コンテンツエリアをページ中央に配置 */
  }

  #mainContents {
    text-align: left; /* テキストを左寄せに設定 */
  }
  
  .container img:nth-child(1){
    width: 30%;
    margin-top: 1rem;
  }

  .footer-fixed {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    -webkit-align-items: center;
    align-items: center;
    height: 80px;
    padding-right: 10px;
    padding-left: 10px;
    text-align: center;
    background-color: rgba(255,255,255,0.8);
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 9998;
    max-width: 420;
    left: calc(50% - 210px);
  }

  .footer-fixed img{
    width: 80%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  #mainContents img{
    width: 30%;
  }
}

/*SP用*/
@media screen and (max-width:640px) {

  table.formTable th, table.formTable td {
    width:auto;
    display:block;
  }
  table.formTable th {
    margin-top:5px;
    border-bottom:0;
  }

  input[type='text'],
  textarea {
  width: 100%;
  }

  .container img{
    width: 80%;
    margin-top: 1rem;
  }

  .footer-fixed {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    -webkit-align-items: center;
    align-items: center;
    height: 80px;
    padding-right: 10px;
    padding-left: 10px;
    text-align: center;
    background-color: rgba(255,255,255,0.8);
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 9998;
  }

  .reflection{
    display:inline-block;
    position:relative;
    overflow:hidden;
  }
     
  /* .reflection:after {
    content:"";
    height:100%;
    width:30px;
    position:absolute;
    top:-180px;
    left:0;
    background-color: #fff;
    opacity:0;
    -webkit-transform: rotate(45deg);
    -webkit-animation: reflection 6s ease-in-out infinite;
  }
     
    @keyframes reflection {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
    } */

    .reflection img{
      width: 80%;
    }
    
    #mainContents img{
      width: 30%;
    }
}



