.box1 {
    padding: 20px;
    margin: 10px 40px;
    font-weight: bold;
    border: solid 3px #000000;
    border-radius: 15px;/*角の丸み*/
}
.box1 p {
    margin: 0; 
    padding: 0;
}
.box2 {
    padding: 0.5em 1em;
    margin: 2em 0;
    font-weight: bold;
    color: #0097a7;/*文字色*/
    background: #FFF;
    border: solid 3px #0097a7;/*線*/
    border-radius: 15px;/*角の丸み*/
}
.box2 p {
    margin: 0; 
    padding: 0;
}
.box3 {
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #2c2c2f;
    background: #cde4ff;/*背景色*/
}
.box3 p {
    margin: 0; 
    padding: 0;
}
.box4 {
    padding: 15px;
    margin: 35px;
    font-weight: bold;
    color: #0097a7;/*文字色*/
    background: #FFF;
    border: solid 2px #212529;/*線*/
    border-radius: 15px;/*角の丸み*/
}
.box4 p {
    margin: 0; 
    padding: 0;

}
.wide-space {
  letter-spacing: 1rem;
}

/* 通常のボタン色 */
.btn-emerald,
.btn-emerald.disabled, .btn-emerald:disabled {
  color: #fff;
  background-color:#0097a7;
  border-color: #0097a7;
}
/* hover時（マウスカーソルを重ねた時）の色（通常より濃いor暗めの色を指定）*/
.btn-emerald:hover {
    color: #0097a7;
    background-color: #fff;
    border-color: #fff;
  }
.emerald {
    color: #0097a7;
}
.bg-emerald {
    color: #fff;
    background-color:#0097a7;
}
.bg-gray {
    color: #fff;
    background-color: #7D7D7D;

}

.bg-lightgray {
    color: #2c2c2f;
    background-color: #ECEFF0;
}

.black {
    color: #2c2c2f;
}
.barleft {
    border-left:solid 5px #0097a7;
}
.w-70 {
    width: 70% !important;
}
/* エメラルドグリーン#0097a7
border-left */

.button {
    padding: 80px 64px;
    background-color: #0097a7;
    color: #fff;
    border-radius: 15px;/*角の丸み*/
    font-size: 45px;
    display: inline-block;
    text-decoration: none;
    transition: all .3s;
    width: 490px;
    border:2px solid #fff;
  }
  .button:hover {
    background-color: #fff;
    border-color: #0097a7;
    color: #0097a7;
    border:2px solid #0097a7;
  }
  
  .button2 {
    padding: 40px 64px;
    background-color: #0097a7;
    color: #fff;
    border-radius: 15px;/*角の丸み*/
    font-size: 45px;
    display: inline-block;
    text-decoration: none;
    transition: all .3s;
    width: 540px;
    border:2px solid #fff;
  }
  .button2:hover {
    background-color: #fff;
    border-color: #0097a7;
    color: #0097a7;
    border:2px solid #0097a7;
  }

  .bg-img-mt {
	background-image: url(/img/requirements/bg.png);
	width: 100;
	background-size: cover;
	background-color:rgba(255,255,255,0.6);
	background-blend-mode:lighten;
    background-position: bottom;
    background-position: center;
 
	font-size: 32px;
	text-align: center;
	line-height: 500px;
}

.bg-img-pp {
	background-image: url(/img/requirements/people.png);
	width: 100%;
	background-size: cover;
	background-color:rgba(255,255,255,0.6);
	background-blend-mode:lighten;
    background-position: bottom;
 
	font-size: 32px;
	text-align: center;
	line-height: 100px;
}

.bg-img-sc {
	background-image: url(/img/requirements/society.png);
	width: 100%;
	background-size: cover;
	background-color:rgba(255,255,255,0.6);
	background-blend-mode:lighten;
    background-position: bottom;
 
	text-align: center;
}

.featurelist {
    padding: 0px;
    margin: 15px 35px;
}

.playbutton {
    mask-image: url(/img/requirements/playbutton.png);
    border: 5px solid #0097a7;
    border-radius: 15px;/*角の丸み*/
}
.playbutton:hover{
    background-image: url(/img/requirements/playbutton_onclick.png);
}

.pcview {
}
.spview {
	display: none;
}

@media screen and (max-width: 768px) {
	.pcview {
		display: none;
	}
	.spview {
		display: block;
	}
}

.wave {
    background-image: url(/img/requirements/wave.png);
    height: auto;
}

table {
    color: #2c2c2f;
    background-color: #ECEFF0;
    border-collapse:  collapse;     /* セルの線を重ねる */
}
th {
    width: 30%;
    padding: 10px 20px;
    font-weight: bolder;
    border-bottom: solid 1px;
    border-color: #CCCCCC; /* 枠線指定 */
}
td {
    width: 70%;
    border-bottom: solid 1px;
    border-color: #CCCCCC; /* 枠線指定 */
}

.arrow {
    position:relative;
    height:16px;
    width:16px;
    background-color:#2c2c2f;
    /* vertical-align: middle; */
}

.arrow::before {
    position:absolute;
    content:"";
    border:solid 16px transparent;
    border-left:solid 16px #2c2c2f;
    top:-8px;
    left:12px;
    /* vertical-align: middle; */
}

.arrow-down {
    position:relative;
    height:16px;
    width:16px;
    background-color:#2c2c2f;
}

.arrow-down::before {
    position:absolute;
    content:"";
    border:solid 16px transparent;
    border-top:solid 16px #2c2c2f;
    top:8px;
    left:-8px;
}
.my-auto {
    margin-bottom: auto!important;
    margin-top: auto!important;
    margin-left: auto!important;
    margin-right: auto!important;
}

.box5 {
    padding: 0px;
    margin: 0px;
    /* width: 200px;
    height: 150px; */
    font-weight: bold;
    border: solid 1px #707070;
    border-radius: 15px;/*角の丸み*/
}
.box5 p {
    padding: 0px;
    margin: 0px;
}

.dummybutton {
    text-align: center;
    padding: 5px 15px;
    background-color: #0097a7;
    color: #fff;
    border-radius: 15px;/*角の丸み*/
    font-size: 25px;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
    width: 200px;
    border:2px solid #fff;
}

.vert-mid {
    display: table-cell;
    vertical-align: middle;
}

.bottomline {
    border-bottom: solid 1px; border-color: #CCCCCC;
}

#application-method {
    margin-top: auto !important;
    border-bottom: solid 1px;
    border-color: #a4a2a2;
    margin-left: 20px;
}

.process {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.btn-ogl2 {
    margin-left: 8px;
    padding: 10px 20px;
    background-color: #fff;
    color: #0097a7;
    border-radius: 10px;/*角の丸み*/
    font-size: 0.8rem;
    display: inline-block;
    text-decoration: none;
    transition: all .3s;
    border:2px solid #0097a7;
}
.btn-ogl2:hover {
    background-color: #0097a7;
    border-color: #0097a7;
    color: #fff;
    border:2px solid #0097a7;
}

@media (min-width: 768px) {
    #application-method {
        margin-left: 100px;
    }
    .process {
        width: 15%;
    }
    .btn-ogl2 {
        margin-left: 85px;
    }
}

.process1 {
    background-color: #0097a7;
    color: #fff;
    font-size: 18px;
    font-family: メイリオ;
    border-radius: 15px 15px 0 0;
    padding: 20px 0;
    border-top: solid 1px;
    border-left: solid 1px;
    border-right: solid 1px;
    border-color: black;
}

.process2 {
    color: black;
    font-size: 25px;
    font-family: メイリオ;
    border-radius: 0 0 15px 15px;
    padding: 20px 0;
    border-bottom: solid 1px;
    border-left: solid 1px;
    border-right: solid 1px;
    border-color: black;
}

