.container {
  width: 100%; /* ページ全体の幅を調整 */
  margin: 0 auto; /* 左右のマージンを自動で均等に設定して中央に配置 */
}

@media screen and (min-width: 780px) {
  .container {
      width: 70%; /* 幅を70%に設定 */
  }
}

h1 {
  padding: 0.4em 0.5em; /*文字の上下 左右の余白*/
  color: #494949; /*文字色*/
  background: #f4f4f4; /*背景色*/
  border-left: solid 5px #7db4e6; /*左線*/
  border-bottom: solid 3px #d7d7d7; /*下線*/
}

h2 {
  padding: 0.4em 0.5em; /*文字の上下 左右の余白*/
  color: #494949; /*文字色*/
  background: #f4f4f4; /*背景色*/
  border-left: solid 5px #7db4e6; /*左線*/
  border-bottom: solid 3px #d7d7d7; /*下線*/
  position: relative; /* 相対的な位置指定 */
}

#h2-tag {
  position: relative; /* 相対位置指定 */
  padding-right: 60px; /* 画像の幅 + 余白 */
  display: inline-block; /* ブロック要素をインラインブロックに変更 */
}

.h2-image {
  position: absolute; /* 絶対位置指定 */
  top: 50%; /* 上端を中央に */
  right: 10px; /* テキストから右側に10pxの余白 */
  transform: translateY(-50%); /* 垂直方向の中央揃え */
  width: 50px; /* 画像の幅 */
  height: auto; /* 高さは自動調整 */
  z-index: 1; /* テキストより前面に表示 */
}


h3 {
  padding: 0.4em 0.5em; /*文字の上下 左右の余白*/
  color: #494949; /*文字色*/
  background: #f4f4f4; /*背景色*/
  border-left: solid 5px #7db4e6; /*左線*/
  border-bottom: solid 3px #d7d7d7; /*下線*/
}

.class1 {
  width: 100%;
  height: 100%;
  object-fit: cover; /* width, heightといっしょに使います */
}
.cp_ipselect {
    overflow: hidden;
    width: 90%;
    margin: 2em auto;
    text-align: left;
  }
  
.cp_ipselect select {
    width: 100%;
    padding-right: 1em;
    cursor: pointer;
    text-indent: 0.01px;
    text-overflow: ellipsis;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
  }
  
.cp_ipselect.cp_sl02 {
    position: relative;
    border-radius: 2px;
    background: #ffffff;
    width:65%; 
    margin-top:0;
  }
  
.cp_ipselect select::-ms-expand {
      display: none;
  }

.cp_ipselect.cp_sl02 select {
    padding: 8px 38px 8px 8px;
    color: #666666;
  }
    
button {
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
	padding: 1em 2em 1em 1em;
	width: 90%;
	font-size: 14px;
	color: #fff;
	text-align: center;
    line-height: 1;
	background: #5bbee5;
	background: linear-gradient(to right, #5bbee5, #52ddae);
	text-indent: 0.1em;
	letter-spacing: 0.1em;
	border-radius: 1.5em;
	width:65%; 
}

.button_wrapper{
   text-align:center;
}

textarea{
    width: 90%;
    margin: 2%;
    border-radius: 4px;
    border: 1px solid #a8b7c5;
}

input[type="email"],
input[type="password"] {
  width: 65%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 1.5em;
}