@charset "utf-8";
/*
 * ==========================================================================
 * 
 * [top]
 * 
 * ==========================================================================
 */
/**
 * --------------------------------------------------------------------------
 * topVisual
 * --------------------------------------------------------------------------
 */
.topVisualWrapper {
	position: relative;
	width: 100%;
  background: url("../../img/content/top/top_visual_bg.jpg") top right/contain no-repeat #fff;
}
.topVisualInner {
  width: 70%;
  min-width: 1200px;
  margin: 0 auto;
  padding: 10% 0;
  text-align: left;
}
.topVisualTitle {
  font-size: 6rem;
  font-weight: 800;
  line-height: 1.4;
  margin: 0 0 40px 0;
}

.topVisualRead {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.7;
  color: #d84c8f;
}
.topVisualTitleSub {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1;
}
.topVisualTitleSub span{
  border: solid 1px #666;
  padding: 5px 10px;
}

/**
 * --------------------------------------------------------------------------
 * visual
 * --------------------------------------------------------------------------
 */
.visualWrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.visualInner {
	width: 980px;
	text-align: center;
	margin: 30px auto;
}
/**
 * --------------------------------------------------------------------------
 * Wrapper
 * --------------------------------------------------------------------------
 */
.contentsWrapper {
}
.sectionWrapper {
  background: #f5f5f5;
}
/**
 * --------------------------------------------------------------------------
 * commonBox
 * --------------------------------------------------------------------------
 */
.boxWrapper {
  margin-bottom: 50px;
}
.whiteBox {
  position: relative;
  background: #fff;
}
.boxInner {
  padding: 60px;
}
.introBox {
  width: 70%;
  margin: 80px auto;
}
/**
 * --------------------------------------------------------------------------
 * お知らせ
 * --------------------------------------------------------------------------
 */
.newaBox {
  padding: 50px;
  border: solid 1px #ccc;
}
/**
 * --------------------------------------------------------------------------
 * 研修種別
 * --------------------------------------------------------------------------
 */
.typeBox {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.typeInner {
  display: grid;
  grid-template-columns: 1fr 250px;
  place-content: center;
  gap: 24px;
}
.typeBtBox {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.type1bg {
  background: #c8e6ff!important;
  position: relative;
}
  .type1bg-pale {
    background: #ebf5fd!important;
  }
.type2bg {
  background: #ccd4ef!important;
  position: relative;
}
  .type2bg-pale {
    background: #e8edfd!important;
  }
.type3bg {
  background: #ccefe7!important;
  position: relative;
}
  .type3bg-pale {
    background: #e6f9f5!important;
  }

/**
 * --------------------------------------------------------------------------
 * ランキング
 * --------------------------------------------------------------------------
 */
.ranking_table {
  border-collapse: collapse;
  width: 100%;
}
.ranking_table tr {
  border-bottom: solid 1px #ccc;
}
.ranking_table td,
.ranking_table th {
  padding: 20px;
  text-align: center;
}
.ranking_table td {
  border-bottom: solid 1px #ccc;
}
.ranking_th {
  width: 27.5%;
}
.ranking {
  text-align: center;
}


/**
 * --------------------------------------------------------------------------
 * 研修（申請）の流れ
 * --------------------------------------------------------------------------
 */
.td_season {
  font-weight: 600;
  background: #f4f7fb!important;
  text-align: center;
}
.td_flow {
  font-weight: 600;
  background: #f4fbf5!important;
  text-align: center;
}
.flow_table {
}  

/**
 * --------------------------------------------------------------------------
 * よくある質問
 * --------------------------------------------------------------------------
 */
.qaBtList {
  display: grid;
  grid-template-columns:repeat(3,1fr);
  grid-gap: 30px;
  margin: 0 0 50px;
  padding: 0;
}
.qaBtList li{
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-align: center;
}
/**
 * --------------------------------------------------------------------------
 * tab
 * --------------------------------------------------------------------------
 */
.tabBt{
  font-size: 2rem;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 100px 0 0 0;
  padding: 0;
  list-style-type: none;
  top: 2px;
}
.tabBt li{
  width: 33%;
}
.tabBt li.active a{
  background: #fff;
  color: #005eac;
  border-top: solid 2px #005eac;
  border-left: solid 2px #005eac;
  border-right: solid 2px #005eac;
}
.tabBt li a{
  display: block;
  background: #c4daeb;
  color: #fff;
  font-weight: 700;
  padding: 20px 0;
  text-align: center;
  text-decoration: none;
}

.tabArea {
  background: #fff;
  padding: 5%;
  border: solid 2px #005eac;
}
.area {
  display: none;/*はじめは非表示*/
  opacity: 0;/*透過0*/
}
.area.is-active {
  display: block;/*表示*/
  animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/**
 * --------------------------------------------------------------------------
 * サインイン
 * --------------------------------------------------------------------------
 */
.form-wrapper {
  background: #fafafa;
  margin: 0 auto;
  padding: 40px;
  max-width: 370px;
}

.signInTitle {
	text-align: center;
	font-size: 1.5rem;
	margin-bottom: 20px;
}

form {
}

.form-item {
  margin-bottom: 0.75em;
  width: 100%;
}

.form-item input {
  background: #fafafa;
  border: none;
  border-bottom: 2px solid #e9e9e9;
  color: #666;
  font-family: 'Open Sans', sans-serif;
  font-size: 1em;
  height: 50px;
  transition: border-color 0.3s;
  width: 100%;
}

.form-item input:focus {
  border-bottom: 2px solid #c0c0c0;
  outline: none;
}

.button-panel {
  margin: 2em 0 0;
  width: 100%;
}

.button-panel .button {
  background: #208ae2;
  border: none;
  color: #fff;
  cursor: pointer;
  height: 50px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1em;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.3s ease-in-out;
  width: 100%;
	border-radius: 5px;
}

.button:hover {
  background: #005eac;
}

.form-footer {
  font-size: 1em;
  padding-top: 30px;
  text-align: center;
}

.form-footer a {
  color: #8c8c8c;
  text-decoration: none;
  transition: border-color 0.3s;
}

.form-footer a:hover {
  border-bottom: 1px dotted #8c8c8c;
}




/**
 ****************************************************
 * 
 * screens smaller than 768
 * 
 ****************************************************
 */
@media only screen and (max-width: 768px) {
/**
 * --------------------------------------------------------------------------
 * topVisual
 * --------------------------------------------------------------------------
 */
.topVisualWrapper {
  background: url("../../img/content/top/top_visual_bg_sp.jpg") bottom right/contain no-repeat #fff;
}
.topVisualInner {
  width: auto;
  min-width: auto;
  padding: 10% 0 70%;
  text-align: left;
}
.topVisualTitle {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 10px 0;
}

.topVisualRead {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
}
.topVisualTitleSub {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 20px 0;
  text-align: center;
}
.topVisualTitleSub span{
}
/**
 * --------------------------------------------------------------------------
 * visual
 * --------------------------------------------------------------------------
 */
.visualWrapper {
}
.visualInner {
	width: 90%;
	text-align: center;
	margin: 5% auto;
} 
/**
 * --------------------------------------------------------------------------
 * Wrapper
 * --------------------------------------------------------------------------
 */
.contentsWrapper {
}
.grfWrapper {
  margin: 30px 0;
}
.sectionWrapper {
}
/**
 * --------------------------------------------------------------------------
 * commonBox
 * --------------------------------------------------------------------------
 */
.boxWrapper {
  margin-bottom: 50px;
}
.whiteBox {
  position: relative;
  background: #fff;
}
.boxInner {
  padding: 30px;
}
.introBox {
  width: auto;
  margin: 30px auto;
}
/**
 * --------------------------------------------------------------------------
 * お知らせ
 * --------------------------------------------------------------------------
 */
.newaBox {
  padding: 30px;
  border: solid 1px #ccc;
  text-align: left;
}
/**
 * --------------------------------------------------------------------------
 * 研修種別
 * --------------------------------------------------------------------------
 */
.typeBox {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.typeInner {
  grid-template-columns: 1fr;
  gap: 24px;
}
.typeBtBox {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
/**
 * --------------------------------------------------------------------------
 * ランキング
 * --------------------------------------------------------------------------
 */
  .ranking_table {
    width: 900px;
  }  
.ranking_th {
  width: 25.5%;
}
/**
 * --------------------------------------------------------------------------
 * 研修（申請）の流れ
 * --------------------------------------------------------------------------
 */
  .flow_table {
    width: 550px;
  }  
/**
 * --------------------------------------------------------------------------
 * よくある質問
 * --------------------------------------------------------------------------
 */
.qaBtList {
  display: inherit;
  grid-template-columns: auto;
  grid-gap: 0;
  margin: 0 0 30px;
}
.qaBtList li{
  margin: 0 auto 20px;
  padding: 0;
  list-style-type: none;
  text-align: center;
}
/**
 * --------------------------------------------------------------------------
 * tab
 * --------------------------------------------------------------------------
 */
  .tabBt{
  font-size: 1.4rem;
  }
  .tabBt li a{
    padding: 10px 0;
  }
  
/**
 * --------------------------------------------------------------------------
 * サインイン
 * --------------------------------------------------------------------------
 */
  .form-wrapper {

    padding: 30px;
    max-width: auto;
  }

  .signInTitle {
    font-size: 1.3rem;
  }
  
}