.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;

}

/* 通常のボタン色 */
.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/about/bg.png);
	width: 100;
	background-size: contain;
    background-repeat: no-repeat;
    background-color:rgba(255,255,255,0.6);
	background-blend-mode:lighten;
    background-position: bottom;
 
	font-size: 32px;
	text-align: center;
	line-height: 500px;
}

.bg-img-pp {
	background-image: url(/img/about/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/about/society.png);
	width: 100%;
    /* height: 100%; */
	background-size: contain;
    background-repeat: no-repeat;
	background-color:rgba(255,255,255,0.8);
	background-blend-mode:lighten;
    background-position: center;
 
	text-align: center;
}

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

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

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

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

.wave {
    background-image: url(/img/about/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;
  }

#comment-font {
    text-align: left;
    font-family: 源ノ角ゴシック JP;
    font-size: 12px;
    line-height: 1.5;
}

#policy {
    font-family: 源ノ角ゴシック JP;
    font-size: 12px;
}

#message {
    font-family: 源ノ角ゴシック JP;
    font-size: 12px;
}

#establishment {
    font-size: 12px;
}

#establishment2 {
    font-size: 12px;
}

#choreography {
    padding: 5px;
}

#choreography-width {
    width: 100%;
}

#president {
    width: 100%;
    border-radius: 15px;
}

#president-info {
    text-align: right;
    font-family: 源ノ角ゴシック JP;
    font-size: 1rem;
}

#president-name {
    text-align: right;
    font-family: 源ノ角ゴシック JP;
    font-size: 1.5rem;
}
@media (min-width: 768px) {
    #comment-font {
        font-size: 15px;
    }
    #message {
        font-size: 25px;
    }
    #establishment {
        font-size: 25px;
    }
    #establishment2 {
        font-size: 25px;
        padding-bottom: 100px;
    }
    #policy {
        font-size: 25px;
    }
    #choreography {
        padding: 20px;
    }
    #choreography-width {
        width: 80%;
    }
    #president {
        width: 350px;
    }
    #president-info{
        font-size: 20px;
    }
    #president-name {
        font-size: 25px;
    }
}
