/*------------------------------------
font settting
------------------------------------*/

body {
  font-family: 'Avenir', 'Helvetica Neue', 'Helvetica', 'Arial', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'YuGothic', 'Yu Gothic', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS PGothic';
}

p {
  font-size: 20px;
}

.statement {
  font-size: 25px;
  font-weight: bold;
  margin: 10px;
  text-align: center;
}

 [data-usage="1"]{
 --main-color:#009380;
}
 [data-usage="2"]{
  --main-color:red;
}
 [data-usage="3"]{
  --main-color:#F47921;
}
 [data-usage="4"]{
  --main-color:#FDCB53;
}
 [data-usage="5"]{
  --main-color:#0089CF;
}
.blue{
  color: blue;
}





/*------------------------------------
wrapper
------------------------------------*/

#wrapper {
  width: 1000px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.2;
}

#wrapper section {
  margin: 40px  auto;
  display: block;
}


/*------------------------------------
header
------------------------------------*/

#header {
  margin: 0 auto;
  z-index: 7;
}

/*------------------------------------
layout block
------------------------------------*/

.flex {
  display: flex;
  justify-content: center;
}

.clear {
  clear: both;
}

/*------------------------------------
section
------------------------------------*/

.content-title {
  text-align: center;
  color: #009380;
  border-bottom: #009380 solid 7px;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.1;
  margin: 70px 0;
  padding: 0 0 10px 0;
}

.width-con {
  width: 1000px;
  margin: 0 auto;
}

/*------------------------------------
text
------------------------------------*/

h2 {
  color: #009688;
  font-size: 27px;
  text-align: center;
  border-bottom: #009380 solid 4px;
  font-weight: bold;
  line-height: 1.9;
}

/*------------------------------------
table
------------------------------------*/

table {
  border-collapse: separate;
  border-spacing: 2px;
}

/*------------------------------------
js item
------------------------------------*/

/*fadein*/
.js-fade-in[data-visibility='false'] {
  opacity: 0;
  transform: translate(0, 5%);
}

.js-fade-in[data-visibility='true'] {
  transition: 1s;
  opacity: 1;
  transform: translate(0, 0);
}

/* modal */
.js-modal {
  display: none;
}

.js-modal-btn {
  cursor: pointer;
}

.js-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.js-modal-overlay[data-open='true'] {
  display: block;
}

.js-modal-bg {
  height: 100vh;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,.8);
  z-index: 2;
}

.js-modal-content {
  left: 50%;
  top: 50%;
  padding: 10px;
  position: absolute;
  transform: translate(-50%,-50%);
  display: block;
  overflow-y: scroll;
  background-color: #fff;
  margin: 0 auto;
  width: 80%;
  height: 70vh;
}

.js-modal-close {
  color: #525252;
  position: absolute;
  top: 10px;
  font-size: 70px;
  right: 10%;
  cursor: pointer;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  font-weight: bold;
  box-shadow: 0 0 5px #525252;
  z-index: 10;
}

.js-modal-btn2 {
  cursor: pointer;
}

.js-modal-overlay2 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.js-modal-overlay2[data-open='true'] {
  display: block;
}

.js-modal-content2 {
  left: 50%;
  top: 50%;
  padding: 10px;
  position: absolute;
  transform: translate(-50%,-50%);
  display: block;
  overflow-y: scroll;
  background-color: #fff;
  margin: 0 auto;
  width: 85%;
  height: 70vh;
}

@keyframes flash {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


.point-examle{
  margin-top: 20px;
  width: 800px;
  margin: 0 auto;
}

.point-examle-ttl {
  background: #009380;
  width: 75%;
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 5px;
  font-size:  20px;
}
.point-examle-cnt {
  border: 3px solid #009380;
  padding: 0 10px;
}
.point-subject {
  margin: 15px 0;
}
.point-subject-ttl {
  color: #f00;
  font-weight: bold;
  margin-bottom: 4px;
}
.point-subject-detail {
  margin-left: 1em;
  font-size: 18px;
}
.point-subject-detail-span {
  background: linear-gradient(transparent 60%, #ff6 60%);
  font-weight: bold;
}

.point-link {
  width: 750px;
  margin: 40px auto 60px;
  display: block;
}
.point-link:hover {
  opacity: 0.8;
}
.point-link-image {
  display: block;
  width: 100%;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  font-size: 16px;
  list-style: none;
}
.breadcrumb li {
  position: relative;
  margin-right: 28px;
  margin-bottom: 5px;
}
.breadcrumb li::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -16px;
  display: block;
  width: 7px;
  height: 7px;
  margin: auto;
  content: '';
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}
.breadcrumb li:first-child {
  margin-left: 0;
}
.breadcrumb li:last-child {
  margin-right: 0;
  text-decoration: none;
}
.breadcrumb li:last-child::before {
  display: none;
}
.breadcrumb li,
.breadcrumb li a{
  text-decoration: underline;
}
.breadcrumb li a:hover{
  text-decoration: underline;
}


/* 学歴 */
.gakureki-readmore-button{
  background: #fff;
  text-align: center;
  font-size: 20px;
  text-decoration: underline;
  padding: 5px 0 5px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 40px;
}

.gakureki-accordion-content{
  display: none;
}

.red-txt{
  color: red;
  font-weight: bold;
}

.bold-txt{
  font-weight: bold;
}

.toshin-txt{
  color: #009380;
}
.apply{
  margin-bottom: 0px!important;
}

/*------------------------------------
  tokubetu_syoutai
------------------------------------*/
.tb-cnt{
  padding: 20px;
  background: #ebebeb;
  border-radius: 15px;
}

.tb-cnt .kouza{
  font-size: 1em;
  margin: 0;
}

.tb-cnt .chushaku{
  font-size: 0.9em;
  font-weight: normal;
}

.syoutai-container{
  display: flex;
  list-style: none;
  justify-content: space-around;
}
.syoutai-text-container{
  margin: 0 0 1vw;
  width: 700px;
  position: relative;
}
.syoutai-title{
  font-size: 2.6rem;
  margin: 0 0 2vw;
  font-weight: bold;
}
.tokubetu_syoutai-logo{
  width: 60%;
  margin: 0 auto;
  display: block;
  text-align: center;

}
.title-attention{
  color: #f71188;
  font-size: 120%;
  font-weight: bold;
}
.syoutai-not-attention{
  font-size: 85%;
}
.tokubetu_syoutai-img{
  width: 49%;
  height: auto;
  scale: 100%;
  margin-top: 4vw;
}
.tokubetu_syoutai-text{
  font-weight: bolder;
  font-size: 130%;
}
.syoutai-text-title{
  color: #009380;
  font-size: 110%;
  padding: 3px;
}
.syoutai-text-attention{
  color: #009380;
  font-weight: bold;
  font-size: 1.3em;
}
.tokubetu_syoutai-button-container{
  margin-top: 1vw;
}
.syoutai-button-text{
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
}
.syoutai-button-item-container{
  width: 100%;
  background-color:rgb(255 0 0) ;
  color: #fff;
  list-style: none;
  text-align: center;
  margin:0 auto;
  padding: 15px;
  font-weight: bold;
  font-size: 150%;
}
.syoutai-button-item-container.invitation{
  background-color:#008eff;
}

.tb-cnt .flex-box{
  margin: 0 auto;
  display: flex;
  width: 80%;
  justify-content: space-around;
}

.tb-cnt .flex-box a{
  width: 350px;
}

.syoutai-button-item-container:hover{
  opacity: 80%;
}
.syoutai-button-apply{
  text-decoration: underline;
  display: flex;
  justify-content: center;
  margin: 2% auto;
  font-weight: bolder;
  font-size: 120%;
}

.ts-popup-yellow-underline {
  background: linear-gradient(transparent 70%, #fae800 70%);
}

.ts-contdown-red{
  color: red;
  font-size: 1.5em;
}

.mv-txt{
    width: 900px;
    margin: 15px auto 0;
    font-size: 16px;
}.mv-txt .ttl{
    font-size: 1.8em;
    font-weight: bold;
}