@charset "UTF-8";

/* 全体 */
/*body {
    font-family: Arial, sans-serif;
    margin: 20px;
}*/

@media only screen and (max-width: 767px) {
    .oldsite h2.m-lower-pagettl {
        padding-left: 0;
    }
}
.oldsite #application .m-outerlink {
    padding-right: 25px !important;
}

/* フォーム */
form {
    max-width: 700px;
    margin: auto;
    padding: 20px;
}

label {
    display: block;
    font-size: 18px;
    margin-top: 2em;
	/*margin-bottom: 0.5em;*/
	color: #07185C;
	font-weight:bold;
}
#application h4{
	font-weight:bold;
	font-size: 18px;
	color:#07185C;
	
}
label span,
#application h4 span{
	background-color: #EB008B;
    font-size: 13px;
    color: #fff;
    padding: 0px 10px;
    /*vertical-align: 2px;*/
    margin-left: 5px;
    border-radius: 20px;
}
@media screen and (max-width: 767px) {

label,#application h4{
	font-size: 17px;
}

}

input[type="text"], input[type="date"], select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
	font-size: 15px;
}

input[type="submit"] {
    display: block;
    width: 220px;
    height: 55px;
    font-size: 18px;
    margin: 30px auto;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    resize: vertical; /* ユーザーが高さを調整可能 */
}
select {
    -webkit-appearance: none;
    appearance: none;
}
optgroup{
	background:#f7f7f7;
}
option{
	background:#fff;
}
.select_wrapper {
    position: relative;
}

.select_wrapper::after {
    content: "";
    position: absolute;
    top: 18px;
    right: 16px;
    width: 12px;
    height: 12px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
}

.hidden {
    display: none;
}

.remarks {
	margin:10px 0;
	font-weight:normal;
	font-size:14px;
	color:#777777;
}


/* モバイルIP用同意エリア */

.agreebox{
	border:3px solid #EB008B;
	padding:15px;
	margin-top:20px;
	margin-bottom:10px;
	border-radius: 5px;
}
.agreebox ul {
    margin: 15px 0 15px 3em;
}
.oldsite .agreebox ul li {
    padding-bottom: 5px;
    text-indent: -1.5em;
}
.agreebox input {
    margin: 0 3px 15px 10px;
}


/* 確認画面用 */

table#confirmTable {
    border-top: 0; 
}
table#confirmTable tr:nth-child(odd) {
      background-color: #F3F4F5; 
}
table#confirmTable th {
      border-bottom: 0;
      background-color: rgba(7, 24, 92, 0);
      width: 40%;
}
table#confirmTable td {
      border-bottom: 0;
	  color: #1F3B95;
}
table#confirmTable th,
table#confirmTable td {
      vertical-align: top; 
	  font-size:16px;
}
.actions{
	margin:30px 0 50px;
	text-align:center;
	display:flex;
}
.actions button{
	width: 220px;
    height: 55px;
    font-size: 18px;
	padding: 0;
    margin: 30px auto;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
/*.actions button:nth-child(2) {
    margin-left: 15px;
}*/

@media screen and (max-width: 767px) {

table#confirmTable th {
      width: 40%; 
}
table#confirmTable th,
table#confirmTable td {
      padding:10px;
	  font-size:14px;
}
.actions{
	display:block;
}
.actions button:nth-child(2) {
    margin: 10px auto;
}

}


/* 森追加分　*/
.help-container {
      position: relative;
      display: inline-block;
    }

.form-group {
      margin-bottom: 20px;
      position: relative;
    }

    .tooltip-toggle {
      display: none;
    }

.help-icon {
      display: inline-block;
      margin-left: 5px;
      background-color: #007BFF;
      color: white;
      border-radius: 50%;
      width: 24px;
      height: 24px;
      text-align: center;
      line-height: 24px;
      font-weight: bold;
      cursor: pointer;
      position: relative;
    }

.tooltip-bubble {
      display: none;
      position: absolute;
      top: -35px;
      left: 35px;
      background-color: #f9f9f9;
      border: 1px solid #ccc;
      padding: 10px;
      border-radius: 10px;
      width: 450px;
      font-size: 14px;
      z-index: 100;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

.tooltip-bubble::after {
      content: "";
      position: absolute;
      top: 10px;
      left: -10px;
      border-width: 10px;
      border-style: solid;
      border-color: transparent #f9f9f9 transparent transparent;
    }

.row { display: inline-flex; align-items: center; gap: 8px; }
    input[type="text"], input[type="date"] {
      padding: 10px; font-size: 16px;
    }

.hidden2 {
  opacity: 0;           /* 完全透明 */
  position: absolute;   /* 画面外に移動 */
  left: -9999px;        /* 画面外 */
}

/*森追加ここまで*/



input[type="submit"]:hover {
    background-color: #0056b3;
}