/*************************************
style.css
*************************************/

h1.ud_title {
    text-align: center;
    font-size: 1.2rem;
    letter-spacing: .1rem;
    background-color: #deebf7;
    color: #036eb8;
    padding: .3rem 0;
}

.appli {
	width: 40%
}

.f_bold {font-weight: bold;}

.f_s {font-size: 90%;}

.marker_y {
    background:linear-gradient(transparent 60%, #ff6 60%);
}

/* ▼▼▼CVエリアが3項目になったための対応240305▼▼▼ */

.contact_banner:not(.floating_appli) .button {
  justify-content: space-between;
  padding: 2rem;
}

.contact_banner .button dl dd {
  width: 16rem;
}

@media screen and (orientation: portrait) and (max-width: 767px){

  .contact_banner:not(.floating_appli) .button {
    justify-content: space-around;
  }
  
  .contact_banner.online.floating_appli .button dl:last-of-type {
    display: block;
  }

}
/* ▲▲▲CVエリアが3項目になったための対応240305▲▲▲ */



/* brackets_box
-------------------------*/
.brackets_box {
  padding: 1.5rem 0 2rem; 
  font-weight: bold;
  font-family: var(--Font_Weight_Bold);
	letter-spacing: .1rem;
	margin: 2rem 0 .5rem;
    background-color: aliceblue;
    border-top-left-radius: 3rem;
    border-top-right-radius: 3rem;
}

.brackets_box h1 {
	font-size: 1.4rem;
	border-bottom: 2px solid #036eb8;
	padding: .5rem;
	width: fit-content;
	margin: 1rem auto;
}

.brackets_box p {
	line-height: 2.2rem;
	font-size: 1.15rem;
	text-align: center;
}

.brackets_box ul {
	display: flex;
	justify-content: space-between;
	margin-top: 3rem;
}

.brackets_box ul li {
	width: 32%;
}

.brackets_box ul li h5 {
	text-align: center;
	font-size: 1.05rem;
	margin: 1rem 0 .5rem;
	color: #036eb8;
}

.brackets_box ul li img {
	width: 100%;
}

.brackets_box ul li p {
	font-size: 1rem;
	line-height: 1.8rem;
	margin: 0;
	text-decoration: underline #036eb8;
	text-underline-offset: .3rem;
}


@media screen and (orientation: portrait) and (max-width: 767px){

  .brackets_box {
	  padding: .5rem 0; 
    width: 96%;
    margin: .5rem auto;
    font-size: 1rem;
  }
	
	.brackets_box h1 {
	font-size: 1.3rem;
}
	
	.brackets_box p {
	line-height: 1.9rem;
	font-size: 1.1rem;
		width: 90%;
		margin: 0 auto;
		text-align: left;
}
	
	.brackets_box ul {
	display: block;
	margin-top: 2rem;
}
	
	.brackets_box ul li {
	width: 90%;
		margin: 0 auto 2rem;
}
	
	.brackets_box ul li h5 {
		margin: 1rem 0 .2rem;
	
}

	
	.brackets_box ul li p {
		text-align: center;
		margin: 0 auto;
		line-height: 1.6rem;
	}

}


/* feature
-------------------------*/

section.feature > div {
    width: 90%;
    margin: 2rem auto 0rem;
    letter-spacing: .1rem;
}

section.feature .feature_list {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.feature_info:not(:last-child) {
        margin-bottom: 2rem;
    }

section.feature .feature_list dt {
    display: block;
    height: 4rem;
    width: 4rem;
    margin-right: 2rem;
    border-radius: 50%;
    background: #036eb8;
    color: #fff;
    font-size: 2rem;
    text-align: center;
    line-height: 4rem;
}

section.feature .feature_list dd {
    flex: 1;
}

section.feature .feature_list dd p:first-child {
    color: #036eb8;
    font-size: 1.4rem;
    line-height: 1.2;
}

@media screen and (orientation: portrait) and (max-width: 767px){
    
    .feature_info:not(:last-child) {
        margin-bottom: 1.5rem;
    }
    
    section.feature .feature_list dt {
    display: block;
    height: 3rem;
    width: 3rem;
    margin-right: 1rem;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 3rem;
}
    
    section.feature .feature_list dd p {
        text-align: justify;
    }
    
    section.feature .feature_list dd p:first-child {
    margin: 0;
    font-size: 1.3rem;
}
    
}


/* pamphlet
-------------------------*/
#pamphlet {
  margin: 0rem auto 6rem;
  padding: 1rem;
  background: #ddebf7;
  text-align: center;
	letter-spacing: .1rem;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

#pamphlet dl dt {
  padding: 1rem;
  color: var(--Main_Color);
  font-weight: 900;
  font-family: var(--Font_Weight_Bold);
  font-size: 1.6rem;
}

#pamphlet .appli {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem auto;
    width: 50%;
}

#pamphlet .appli a {
  padding: 1.5rem;
  border-radius: 0.5rem;
  background: #ff0;
  color: var(--Main_Color);
  font-weight: 900;
  font-family: var(--Font_Weight_Bold);
  font-size: 1.2rem;
    
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-name: mvbutton;
}

@keyframes mvbutton {
    0% {transform: scale(1, 1)}
    100% {transform: scale(1.1, 1)}
}

#pamphlet .appli a:hover {
  background: #ced7ed;
  color: var(--Main_Color);
}


@media screen and (orientation: portrait) and (max-width: 767px){

  #pamphlet {
    width: 96%;
    padding: .5rem 1.5rem;
  }
    
    #pamphlet .appli {
  display: flex;
  justify-content: center;
  align-items: center;
    width: 96%;
}

  #pamphlet dl dd {
    text-align: justify;
  }

}

/* message_box
-------------------------*/
.message_box {
    display: flex;
    column-gap: 3rem;
    width: 90%;
    margin: 0 auto;
}

.message_box figure img {
    width: 240px;
}

.message_box .message h2 {
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0 0 1rem 0;
    color: #036eb8;
}

.message_box .message p {
    font-size: 1.1rem;
    line-height: 2rem;
   color: #036eb8;
}

@media screen and (orientation: portrait) and (max-width: 767px){
    
    .message_box {
    display: block;
}
    
    .message_box figure img {
    margin: 0 auto 1rem;
        box-shadow: 1rem -1rem #deebf7;
}
    
    
}



/* anchor_link
-------------------------*/

.anchor_link h3 {
    position: relative;
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: .2rem;
    line-height: 3rem;
    color: #036eb8;
    text-align: center;
    margin: 4rem auto 2rem;
    width: 85%;
}

.anchor_link h3::before,
.anchor_link h3::after {
    position: absolute;
    width: 15px;
    height: 40px;
    content: '';
}

.anchor_link h3::before {
    border-left: solid 3px;
    border-top: solid 3px;
    top: -1rem;
    left: 0;
}

.anchor_link h3::after {
    border-right: solid 3px;
    border-bottom: solid 3px;
    bottom: -1rem;
    right: 0;
}

.anchor_link p {
    text-align: center;
    color: #036eb8;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.anchor_link .triangle {
    display: flex;
    margin: .5rem auto 1.5rem;
    width:0;
    height:0;
    border-style:solid;
    border-width: 30px 30px 0 30px;
    border-color: #1976D2 transparent transparent transparent;
    
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-name: arrow_move;
}

@keyframes arrow_move {
    0% {transform: translateY(0rem)}
    50% {transform: translateY(1rem)}
    100% {transform: translateY(0rem)}
}

.anchor_link ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 1.5rem;
    border: 1px solid #036eb8;
    padding: 1rem;
    width: 100%;
}

.anchor_link ul li {
    width: calc((100% - 4rem) / 3);
}

.anchor_link ul li a {
    position: relative;
    display: flex;
    color: #fff;
    background-color: #036eb8;
    padding: 1rem;
    width: 100%;
    font-size: 1.1rem;
    letter-spacing: .1rem;
}

.anchor_link ul li a::after {
    position: absolute;
    top: calc(50% - .6rem);
    right: 1rem;
    width: auto;
    height: auto;
    border: none;
    line-height: 1;
    font-weight: 900;
    font-family: var(--Font_Awesome);
    content: var(--Arrow_Down);
}

.anchor_link ul li a:hover {
    opacity: .5;
    letter-spacing: .3rem;
}



@media screen and (orientation: portrait) and (max-width: 767px){
    
    .anchor_link h3 {
    position: relative;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: .2rem;
    line-height: 2.4rem;
    margin: 2rem auto 3rem;
    width: 90%;
}
    
    .anchor_link ul {
        display: block;
        width: 95%;
        margin: 0 auto 2rem;
        padding: .8rem .8rem 0;
}
    
    .anchor_link ul li {
    width: 100%;
     margin-bottom: 1rem;
}
    
    .anchor_link ul li a {
        padding: .7rem;
    }
    
    .anchor_link ul li a::after {
    right: .3rem;
}
    
}


/* campaign
-----------------------d--*/

#campaign {
  width: 80%;
  margin: 3rem auto 0;
  padding: 1rem 0;
	letter-spacing: .1rem;
}

#campaign .qa_book_info {
	display: flex;
	justify-content: center;
	margin-bottom: 0rem;
}

#campaign .qa_book_info figure {
	width: 14%;
	margin-left: 2rem;
}

#campaign .qa_book_info figure img {
	width: 100%;
}

#campaign .qa_book_info dl dt {
	background-color: #036eb8;
	color: #fff;
	font-size: 1.1rem;
	font-weight: 900;
  font-family: var(--Font_Weight_Bold);
	padding: .3rem .8rem;
	margin-bottom: 1rem;
}

#campaign .qa_book_info dl dt span {
	margin-right: 1rem;
	color: #FFF500;
	font-weight: 900;
  font-family: var(--Font_Weight_Bold);
}

#campaign .qa_book_info dl dd {
	font-size: 1.2rem;
}

#campaign .qa_book_info dl a {
	font-size: .9rem;
    font-weight: bold;
	padding: .2rem 1rem;
	border: 1px solid #036eb8;
	display: inline-block;
	margin-top: 1.5rem;
}

#campaign .qa_book_info dl a::after {
	margin-left: 1.5rem;
    font-weight: 900;
    font-family: var(--Font_Awesome);
    content: var(--Arrow_Down);
}

#campaign .stripe_waku {
	background: repeating-linear-gradient(45deg, var(--Super_Light_Color), var(--Super_Light_Color) 2px, #fff 2px, #fff 6px);
	padding: 1.5rem;
	width: fit-content;
	margin: 0 auto;
}

#campaign .stripe_waku dl {
	background-color: #fffff0;
  padding: 1rem;
  text-align: justify;
}

#campaign .stripe_waku dl:first-of-type dt {
  font-weight: 900;
  font-family: var(--Font_Weight_Bold);
  font-size: 1.2rem;
}

#campaign .stripe_waku dl:first-of-type dt::before {
  content: "【";
}

#campaign .stripe_waku dl:first-of-type dt::after {
  content: "】";
}

#campaign .stripe_waku dl:last-of-type dt span {
  display: block;
  font-weight: 900;
  font-family: var(--Font_Weight_Bold);
}

#campaign .stripe_waku dl dd {
	font-size: 1.1rem;
	margin: .5rem 0 .5rem;
}

#campaign .stripe_waku dl dd span {
	color: #036eb8;
	font-weight: 900;
  font-family: var(--Font_Weight_Bold);
}




@media screen and (orientation: portrait) and (max-width: 767px){

  #campaign {
    width: 90%;
	  padding: 0rem 0;
  }
	
	#campaign .qa_book_info figure {
	width: 30%;
	margin-left: 1rem;
}
	
	#campaign .qa_book_info dl dt {
	font-size: 1rem;
	padding: .3rem .6rem;
}

#campaign .qa_book_info dl dt span {
	margin-right: .8rem;
}

#campaign .qa_book_info dl dd {
	font-size: 1.1rem;
}
	
	#campaign .stripe_waku dl:first-of-type dt {
  font-size: 1.1rem;
		text-align: center;
}
	
	#campaign .stripe_waku {
	padding: 1rem;
}
	
	#campaign .stripe_waku dl {
  padding: 1rem 1rem .5rem;
}
	

}


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

section {
  margin: 6rem auto;
	letter-spacing: .1rem;
}

section h2 {
  padding: .5rem 1rem;
  border: 2px solid var(--Main_Color);
  color: var(--Main_Color);
  font-weight: 900;
  font-family: var(--Font_Weight_Bold);
  font-size: 1.6rem;
}
  
section .inner {
  width: 100%;
  margin: 0 auto;
}


section .inner .appli.detail {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
}

section .inner .appli.detail a {
  position: relative;
  padding: 2rem 2.5rem 2rem 1.5rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 2px solid var(--Main_Color);
  color: var(--Main_Color);
  font-weight: 900;
  font-family: var(--Font_Weight_Bold);
  font-size: 1.2rem;
}

section .inner .appli.detail a:hover {
  background: #ced7ed;
  color: var(--Main_Color);
}

section .inner .appli.detail a::after {
  position: absolute;
  top: calc(50% - .6rem);
  right: .5rem;
  font-weight: 900;
  font-family: var(--Font_Awesome);
  content: var(--Arrow_Right);
  line-height: 1;
}


@media screen and (orientation: portrait) and (max-width: 767px){

  section {
    width: 96%;
	  margin: 3rem auto;
  }

  section h2 {
    font-size: 1.2rem;
  }
  
  section .inner {
    width: 100%;
  }
  
  section .inner p {
    font-size: 1rem;
  }

}


/* j_course period
-------------------------*/
#j_course {
	letter-spacing: .1rem;
}

#j_course .period {
	margin: 2rem 0 3rem;
}

#j_course .period .period_box {
	display: flex;
	justify-content: center;
    column-gap: 3rem;
}

#j_course h3.h3_diagonal {
	color: var(--Main_Color);
	font-size: 1.3rem;
	border-left: 10px solid var(--Main_Color);
	margin-bottom: 2rem;
	padding: .5rem 0 .5rem 1rem;
	background: repeating-linear-gradient(45deg, var(--Super_Light_Color), var(--Super_Light_Color) 2px, #fff 2px, #fff 6px);
	text-shadow: #fff 2px 2px;
	font-weight: bold;
  font-family: var(--Font_Weight_Bold);
}

#j_course .period dl {
	width: 32%;
	margin: 1rem 0 .3rem;
	border: 1px solid var(--Main_Color);
}

#j_course .period dl dd {
	margin: 1rem 1rem;
	display: flex;
	align-items: center;
}

#j_course .period dl dd span {
	font-size: 1.3rem;
}

#j_course .period dl dt {
	padding: .3rem 1rem;
	background-color: #036eb8;
    color: #fff;
    font-weight: bold;
}

#j_course .period dl dd span.arrow {
	color: var(--Main_Color);
	font-size: .7rem;
	margin: 0 1rem;
}



@media screen and (orientation: portrait) and (max-width: 767px){
	
	#j_course .period .period_box {
	display: block;
}
	
	#j_course .period h3 {
		margin-bottom: 1rem;
	}
	
	#j_course .period dl {
		width: 100%;
	margin: 1rem 0;
		font-size: 115%;
}
	
	#j_course .period dl dd {
	margin: .5rem 0rem .5rem 1rem;
}
	
	#j_course .period dl dt {
	padding: .2rem 1rem;	
	}
	
	
	
}


/* j_course
-------------------------*/
#j_course p.message {

}

#j_course p.asta {
	font-size: .9rem;
	text-indent: -2rem;
	margin-left: 2rem;
}

#j_course p.asta::before {
	content: "※";
}

#j_course .table {
  margin: 0rem 0 2rem;
  border-top: 1px solid #ccc;
}

#j_course .table .subject {
  display: flex;
  width: 100%;
	margin-bottom: .2rem;
}

#j_course .table .subject > dt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  font-weight: 900;
  font-family: var(--Font_Weight_Bold);
}

#j_course .table .subject:nth-child(1) > dt {
	background-color: #ec6d81;
}

#j_course .table .subject:nth-child(2) > dt {
	background-color: #02a3c2;
}

#j_course .table .subject > dt {
  border-bottom: 1px solid #ccc;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	color: #fff;
}

#j_course .table .subject div {
  flex: 1;
  text-align: justify;
}

#j_course .table .subject div > dd {
  border-right: 1px solid #ccc;
  
}

#j_course .table .subject div > dd dl {
  display: flex;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

#j_course .table .subject div > dd dl dt {
  width: 20rem;
  padding: 1rem;
  border-right: 1px solid #ccc;
}


#j_course .table .subject div > dd dl dd {
  flex: 1;
  padding: .5rem;
}

#j_course .appli:not(.detail) {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem auto;
}

#j_course .appli:not(.detail) a {
  padding: 2rem;
  border-radius: 0.5rem;
  border: 2px solid var(--Main_Color);
  background: #ff0;
  color: var(--Main_Color);
  font-weight: 900;
  font-family: var(--Font_Weight_Bold);
  font-size: 1.2rem;
}

#j_course .appli:not(.detail) a:hover {
  background: #ced7ed;
  color: var(--Main_Color);
}



#j_course .route_g > p {
  padding: .5rem 0 .5rem 1rem;
  color: #fff;
  background: #999;
  font-weight: 900;
  font-family: var(--Font_Weight_Bold);
  font-size: 1.2rem;
}

#j_course .route_g > dl,
#j_course .route_g > div {
  display: flex;
  width: 96%;
  margin: 2rem auto;
}

#j_course .route_g > dl dt {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 1rem;
  border-right: 2px solid #999;
}

#j_course .route_g > dl dt ruby {
  padding-bottom: .5rem;
  color: var(--Main_Color);
  font-weight: 900;
  font-family: var(--Font_Weight_Bold);
  font-size: 2rem;
  ruby-position : under;
}

#j_course .route_g > dl dt ruby rt {
  ruby-position : under;
  font-size: .6rem;
}

#j_course .route_g > dl dd {
  flex: 1;
  padding-left: 1rem;
}

#j_course .route_g > dl dd p {
  margin: .2rem 0;
}

#j_course .route_g > dl dd p:last-of-type {
  color: var(--Main_Color);
  font-weight: 900;
  font-family: var(--Font_Weight_Bold);
}

#j_course .route_g > div > p {
  flex: 1;
  margin: 0;
  text-align: justify;
	line-height: 1.8rem;
}

#j_course .route_g > div > dl {
  width: 25rem;
  padding-left: 2rem;
}

#j_course .route_g > div > dl > dt {
  padding: .2rem;
  background: var(--Main_Color);
  color: #fff;
  font-weight: 900;
  font-family: var(--Font_Weight_Bold);
  text-align: center;
}

#j_course .route_g > div > dl > dd {
  padding: 1rem .5rem;
  border: 1px solid var(--Main_Color);
}

#j_course .route_g > div > dl > dd p {
  margin: 0;
  font-weight: 900;
  font-family: var(--Font_Weight_Bold);
  text-align: center;
}

#j_course .route_g > div > dl > dd dl {
  display: flex;
  flex-wrap: wrap;
  padding-top: .5rem;
}

#j_course .route_g > div > dl > dd dl dt {
  width: 100%;
  color: var(--Main_Color);
}

#j_course .route_g > div > dl > dd dl dt span {
  color: #666;
  font-size: .8rem;
}

#j_course .route_g > div > dl > dd dl dt::before {
  content: "●";
}

#j_course .route_g > div > dl > dd dl dd {
  width: 50%;
  font-size: .8rem;
}

#j_course .route_g > div > dl > dd dl dd::before {
  content: "・";
}



@media screen and (orientation: portrait) and (max-width: 767px){

  #j_course p.message {
    text-align: justify;
  }
  
  #j_course .table .subject > dt {
    width: 2rem;
	  text-align: center;
  }

  #j_course .table .subject div > dd dl {
    display: block;
  }
	
	#j_course .route_g > div > dl > dt {
		margin-top: 1.5rem;
	}

  #j_course .table .subject div > dd dl dt {
    padding: .5rem 1rem;
    border-right: none;
	  background-color: #deebf7;
	  width: 100%;
	  margin-bottom: .5rem;
  }

  #j_course .table .subject div > dd dl dd {
    padding-top: 0;
    font-size: .9rem;
  }

  #j_course .route_g > dl,
  #j_course .route_g > div {
    display: block;
	  margin: 1rem auto;
  }

  #j_course .route_g > dl dt {
    padding-right: 0;
    border-right: none;
  }

  #j_course .route_g > dl dd {
    padding-left: 0;
  }
	
	#j_course .route_g > dl dd p {
  margin: .8rem 0;
		text-align: justify;
}

  #j_course .route_g > div > p {
    font-size: 1rem;
	  line-height: 1.6rem;
  }

  #j_course .route_g > div > dl {
    width: 90%;
    margin: 1rem auto 0;
    padding-left: 0;
  }
	
	#j_course .route_g > div > dl > dd dl {
  display: block;
		width: fit-content;
		margin: 0 auto;
}
	
	#j_course .route_g > div > dl > dd dl dd {
  width: 100%;
  font-size: 1rem;
}
  
}

/* tab_wrap
-------------------------*/
.link_wrap {
    margin: 1rem 0 0;
    border: none;
    padding: 0rem 0rem;
}

.link_wrap .link_list {
    display: flex;
    column-gap: 1rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

.link_wrap .link_list li {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: calc((100% - 2rem) / 3);
    height: 3rem;
    margin: 1rem auto 0;
    background-color: #deebf7;
    color: #036eb8;
    font-size: 1.2rem;
    text-align: center;
    cursor: pointer;  
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
}

.link_wrap .link_list li.tab_active {
	background-color: #036eb8;
    color: #fff;
    border: 1px solid #036eb8;
}

.link_wrap .link_list.tab_group li::after {
    content: "";
}

section.tab_contents {
	margin: 0 auto;
    border: 1px solid #036eb8;
    padding: 2rem;
}

section.tab_contents h4 {
    margin-bottom: .5rem;
    font-size: 1.2rem;
    text-align: center;
    font-weight: bold;
    
    animation-duration: 2s;
    animation-name: letters;
}

@keyframes letters {
    0% {letter-spacing: .4rem;}
    100% {letter-spacing: .1rem;}
}


section.tab_contents .table ul.name li:first-child {
	font-size: 1.1rem;
	font-weight: 900;
  font-family: var(--Font_Weight_Bold);
	margin-bottom: .5rem;
}

section.tab_contents .table ul.date_time li:last-child {
	margin: .8rem 0;
	text-align: center;
}

section.tab_contents .table ul.date_time li:nth-child(1) {
	border-bottom: 1px solid #ccc;
	border-style: dotted;
	padding-bottom: .5rem;
	margin-bottom: .5rem;
}

section.tab_contents .table ul.date_time li.day {
	display: flex;
	justify-content: space-around;
}

section.tab_contents .table ul.date_time li.day span,
section.tab_contents .table ul.date_time li.time span {
	font-size: 1.1rem;
}

section.tab_contents .table ul.date_time li.day span.asta_red,
section.tab_contents .table ul.date_time li.time span.asta_red {
	font-size: .8rem;
    color: red;
}

section.tab_contents .table ul.date_time li.day p {
	text-align: left;
	margin: .5rem 0rem .5rem 0;
}

section.tab_contents .table ul.date_time li.day p span {
    font-size: 90%;
}

section.tab_contents .table ul.date_time li.day p:not(:first-child) {
	border-left: 1px solid #ccc;
	padding-left: 1rem;
}




@media screen and (orientation: portrait) and (max-width: 767px){
	
	.link_wrap .link_list {
    column-gap: .5rem;
}
    
    .link_wrap .link_list.tab_group li::after {
    content: "";
}
    
    section.tab_contents {
    width: 98%;
	margin: 0 auto;
    border: 2px solid #036eb8;
    padding: 1rem;
}
	
	section.tab_contents .table ul.date_time li.time {
		text-align: center;
	
}
	
	section.tab_contents .table ul.date_time li.day p {
	text-align: center;
	margin: 0rem 0rem 0 0;
}
	
	section.tab_contents .table ul.date_time li.day p:not(:first-child) {
	border-left: 1px solid #ccc;
	padding-left: .5rem;
}
	
} 


/* ocha_detail
-------------------------*/

.ocha_detail {
    margin: 5rem 0 2rem;
    padding: 1rem 1rem;
}

.ocha_detail a {
    background-color: #fff;
    padding: .5rem;
    border: 2px solid #036eb8;
    border-radius: 1rem;
    width: 80%;
    margin: 0 auto;
    display: flex;
    column-gap: 2.5rem;
    align-items: center;
    color: #036eb8;
    position: relative;
}

.ocha_detail a::after {
    position: absolute;
    top: calc(50% - 0.5rem);
    right: 1rem;
    width: auto;
    height: auto;
    border: none;
    line-height: 1;
    font-weight: 900;
    font-family: var(--Font_Awesome);
    content: var(--Arrow_Right);
}

.ocha_detail a:hover {
    background-color: #036eb8;
    color: #fff;
}

.ocha_detail a figure img {
    height: 120px;
    border-top-left-radius: .5rem;
    border-bottom-left-radius: .5rem;
}

.ocha_detail a dl dt {
    font-size: 1.4rem;
    margin-bottom: .8rem;
    font-weight: bold;
}

.ocha_detail a dl dd {
    border-bottom: 2px solid #036eb8;
    font-weight: bold;
}

@media screen and (orientation: portrait) and (max-width: 767px){
    
    .ocha_detail {
    margin: 3rem 0 2rem;
    padding: 1rem 1rem;
}
    
    
    .ocha_detail a {
    width: 100%;
  column-gap: 1.5rem;
        align-items: flex-start;
}
    
    .ocha_detail a figure img {
    height: 100px;
}
    
    .ocha_detail a dl dt {
    font-size: 1.3rem;
    margin-bottom: .8rem;
    font-weight: bold;
}
    
    .ocha_detail a dl dd {
        border-bottom: none;
        font-size: .9rem;
    }
    
}


/* accordion
-------------------------*/

.accordion .lec_status {
    position: relative;
	cursor: pointer;
    color: #036eb8;
    border: 1px solid #036eb8;
    padding: .7rem 1rem;
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
    width: 100%;
    margin: 1.5rem auto 0;
}

.accordion .lec_status:hover {
	background-color: #036eb8;
    color: #fff;
}

.accordion .lec_status::after {
    position: absolute;
    right: .8rem;
	padding-left: 1rem;
    font-family: var(--Font_Awesome);
    content: "\f107";
    font-weight: 900;
}

.accordion .acd_active .lec_status::after {
    position: absolute;
    right: .8rem;
	padding-left: 1rem;
    font-family: var(--Font_Awesome);
    content: "\f106";
    font-weight: 900;
}

.accordion .acd_active .lec_status {
    background-color: #036eb8;
    color: #fff;
}

.accordion .acd_group p.asta_2 {
    font-size: .9rem;
    text-indent: -1rem;
    margin: 1rem 0 0 1rem;
}

.accordion .acd_group p.asta_2::before {
    content: "※";
}

@media screen and (orientation: portrait) and (max-width: 767px){
    
    .accordion .lec_status {
    width: 100%;
}
    
}


/* course_detail
-------------------------*/

.course_detail {
    margin: 1rem 0 2rem;
    padding: 1rem 1rem;
    background-color: #deebf7;
}

.course_detail a {
    background-color: #fff;
    padding: 1rem;
    border-radius: 1rem;
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    color: #036eb8;
    position: relative;
}

.course_detail a::after {
    position: absolute;
    top: calc(50% - 0.5rem);
    right: 1rem;
    width: auto;
    height: auto;
    border: none;
    line-height: 1;
    font-weight: 900;
    font-family: var(--Font_Awesome);
    content: var(--Arrow_Right);
}

.course_detail a:hover {
    background-color: #036eb8;
    color: #fff;
}

.course_detail a dl {
    text-align: center;
}

.course_detail a dl dt {
    font-size: 1.4rem;
    margin-bottom: .8rem;
    font-weight: bold;
}

.course_detail a dl dd {
    border-bottom: 1px solid #036eb8;
}

@media screen and (orientation: portrait) and (max-width: 767px){
    .course_detail a {
    width: 100%;
}
    
}


/* briefing
-------------------------*/
#briefing .inner > p {
  text-align: center;
	margin: 2rem 0;
}

#briefing section {
  width: 100%;
  margin: 3rem auto;
}

#briefing section:last-of-type {
  margin-bottom: 0;
}

#briefing section h3 {
  padding: .5rem 1rem;
  border-bottom: 1px solid var(--Main_Color);
  border-left: .5rem solid var(--Main_Color);
  color: var(--Main_Color);
  font-weight: bold;
  font-size: 1.2rem;
  font-family: var(--Font_Weight_Bold);
}

#briefing section h3 span {
	color: #555;
	margin-left: 1rem;
	font-weight: bold;
  font-size: 1.2rem;
  font-family: var(--Font_Weight_Bold);
}

#briefing section ul {
  display: flex;
  flex-wrap: wrap;
    column-gap: 1rem;
  align-items: center;
  margin: 1rem 0 2rem 1rem;
}

#briefing section ul::before {
	content: "";
	display: block;
	width: 20%;
	order: 1;
}

#briefing section ul::after {
	content: "";
	display: block;
	width: 20%;
}

#briefing section ul li {
  display: flex;
  width: calc(20% - .8rem);
margin-bottom: 1rem;
  padding: .5rem;
  line-height: 1;
	font-weight: bold;
  font-family: var(--Font_Weight_Bold);
}

#briefing section ul li span {
  font-weight: bold;
  font-family: var(--Font_Weight_Bold);
}

#briefing ul.note {
  text-align: right;
}

#briefing .appli {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem auto;
}

#briefing .appli a {
  padding: 2rem;
  border-radius: 0.5rem;
  background: #ff0;
  border: 2px solid var(--Main_Color);
  color: var(--Main_Color);
  font-weight: 900;
  font-family: var(--Font_Weight_Bold);
  font-size: 1.2rem;
}

#briefing .appli a:hover {
  background: #ced7ed;
  color: var(--Main_Color);
}


@media screen and (orientation: portrait) and (max-width: 767px){

  #briefing .inner > p {
    text-align: justify;
	  margin: 1.5rem 0;
  }
  
  #briefing section h3 {
    padding: .2rem .5rem;
    font-size: 1.2rem;
  }
	
	#briefing section ul {
  margin: 1rem 0 0rem .5rem;
}

  #briefing section ul li {
	  width: calc(50% - .5rem);
    flex-direction: column;
    padding: .5rem;
    line-height: 1.2;
      margin-bottom: .5rem;
  }

  #briefing section ul li span {
    display: block;
    padding-left: .7rem;
  }

  #briefing section ul li.individual {
    width: 100%;
  }

}


/* livechannel
-------------------------*/
#livechannel .inner > .livechannel_01 {
  text-align: center;
	margin: 1.2em 0;
	font-size: 1.4em;
	font-weight: 700;
	transform: skewX(-10deg);
	text-decoration: underline;
}
#livechannel .inner > .livechannel_02 {
  text-align: center;
	margin: 1.2em 0;
	font-size: 1.4em;
	font-weight: 700;
}

/* event
-------------------------*/
#event h3.h3_diagonal {
	color: var(--Main_Color);
	font-size: 1.3rem;
	border-left: 10px solid var(--Main_Color);
	margin-bottom: 2rem;
	padding: .5rem 0 .5rem 1rem;
	background: repeating-linear-gradient(45deg, var(--Super_Light_Color), var(--Super_Light_Color) 2px, #fff 2px, #fff 6px);
	text-shadow: #fff 2px 2px;
	font-weight: bold;
  font-family: var(--Font_Weight_Bold);
}

#event .inner > p {
  text-align: center;
	margin: 2rem 0;
}

#event section {
  width: 100%;
  margin: 2rem 0;
}

#event section h3 {
  padding: .5rem;
  color: #fff;
  background: #999;
  font-weight: 900;
  font-family: var(--Font_Weight_Bold);
  font-size: 1.2rem;
}

#event section h3 span {
  color: #ff0;
  font-size: 1rem;
}

#event section p {
  text-align: justify;
}

#event section .note {
  padding: 1rem 0 2rem 1rem;
}

#event section#jh1_event {
	margin-bottom: 5rem;
}

#event section#jh1_event h4 {
  margin: 2rem 0 .5rem 0;
  font-weight: 900;
  font-family: var(--Font_Weight_Bold);
  font-size: 1.2rem;
}

#event section#jh1_event .col_2_a,
#event section#jh1_event .col_2_b {
	display: flex;
}

#event section#jh1_event .col_2_a {
	flex-direction: row-reverse; 
	justify-content: center;
}

#event section#jh1_event .col_2_a figure img {
	width: 300px;
}

#event section#jh1_event .col_2_a dl {
	letter-spacing: .2rem;
	margin: 2rem 0;
}

#event section#jh1_event .col_2_a dl dt {	
	font-size: 1.8rem;
	margin-bottom: .5rem;
	  font-weight: bold;
  font-family: var(--Font_Weight_Bold);
	border-bottom: 1px solid #036eb8;
	border-left: 3px solid #036eb8;
	padding: .1rem 3rem 0 1rem;
}

#event section#jh1_event .col_2_a dl dt span.font_s {
	font-size: 1rem;
	font-weight: bold;
  font-family: var(--Font_Weight_Bold);
}

#event section#jh1_event .col_2_a dl dt span.font_m {
	font-size: 1.4rem;
	font-weight: bold;
  font-family: var(--Font_Weight_Bold);
}

#event section#jh1_event .col_2_a dl dd {	
	padding-left: 1rem;
}

#event section#jh1_event .col_2_b {
	 flex-direction: row-reverse;
	margin: 3rem 0;
}

#event section#jh1_event .col_2_b figure {
	margin-right: 3rem;
}

#event section#jh1_event .col_2_b figure img {
	width: 380px;
}

#event section#jh1_event .col_2_b h4 {
	margin: 0rem 0 1rem 0;
    font-weight: bold;
    font-family: var(--Font_Weight_Bold);
    font-size: 1.2rem;
	border-bottom: 2px solid #036eb8; 
}

#event section#jh1_event .col_2_b p {
	margin: 0;
	line-height: 1.8rem;
}

#event section#jh1_event .appli {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
}

#event section#jh1_event .appli a {
  padding: 2rem;
  border-radius: 0.5rem;
  background: #ff0;
  border: 2px solid var(--Main_Color);
  color: var(--Main_Color);
  font-weight: 900;
  font-family: var(--Font_Weight_Bold);
  font-size: 1.2rem;
}

#event section#jh1_event .appli a:hover {
  background: #ced7ed;
  color: var(--Main_Color);
}


#event section#qa_book .appli {
	display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
}

#event section#qa_book .appli a {
	padding: 2rem;
  border-radius: 0.5rem;
  background: #ff0;
  border: 2px solid var(--Main_Color);
  color: var(--Main_Color);
  font-weight: 900;
  font-family: var(--Font_Weight_Bold);
  font-size: 1.2rem;
}

section#seminar_en01 {
	margin-bottom: 5rem;
}

section#seminar_en01 p.lead {
	margin: 0 2rem;
}

#seminar_en01 > ul {
	margin: 0 1.5rem 2rem 1.5rem;
	border: 1px solid #036eb8;
	padding: 1.5rem 1rem 1rem 3.5rem;
}

#seminar_en01 > ul > li {
	margin-bottom: .5rem;
	text-indent: -1.5rem;
}

#seminar_en01 > ul > li::before {
	content: "☆";
	color: #036eb8;
	margin-right: .5rem;
}

#seminar_en01 > dl > dt {
	color: #036eb8;
	margin-top: 2rem;
}

#seminar_en01 > dl > dd > table {
	margin: 1rem auto;
}

#seminar_en01 > dl > dd > table tr,
#seminar_en01 > dl > dd > table td {
	border: 1px solid #ccc;
	padding: .5rem;
}

#seminar_en01 > dl > dd > table ol {
	list-style: decimal;
	margin-left: 1.5rem;
}

#seminar_en01 > dl > dd > table ol li:not(:last-child) {
	margin-bottom: .5rem;
}

section span.red {
	color: red;
}

section span.blue {
	color: #036eb8;
}

section span.bold {
	font-weight: bold;	
}

section span.red_line {
	border-bottom: 1px solid red;
}

section span.size_l {
	font-size: 130%;
}

section span.size_m {
	font-size: 110%;
}

section p.asta {
	font-size: .9rem;
	text-indent: -.5rem;
	margin-left: 3rem;
}

section p.asta::before {
	content: "※";
}

.event_appli {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
	width: 40%;
}

.event_appli a {
	position: relative;
	    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 3.6rem;
    text-align: center;
    line-height: 1;
  padding: 2rem;
  border-radius: 0.5rem;
  background: #ff0;
  border: 2px solid var(--Main_Color);
  color: var(--Main_Color);
  font-weight: 900;
  font-family: var(--Font_Weight_Bold);
  font-size: 1.2rem;
}

.event_appli a::after {
	    position: absolute;
    top: calc(50% - 0.5rem);
    right: 1rem;
    width: auto;
    height: auto;
    border: none;
    line-height: 1;
    font-weight: 900;
    font-family: var(--Font_Awesome);
    content: var(--Arrow_Right);
}

.event_appli a:hover {
  background: #ced7ed;
  color: var(--Main_Color);
}

@media screen and (orientation: portrait) and (max-width: 767px){
	
	#event h3.h3_diagonal {
	margin-bottom: 1rem;
	padding: .5rem 0 .5rem .5rem;
}

  #event .inner > p {
    text-align: justify;
  }

  #event section h3 span {
    display: block;
  }

#event section#jh1_event .col_2_a,
#event section#jh1_event .col_2_b {
	display: block;
}
	
	#event section#jh1_event .col_2_b {
    margin: 3rem 1rem;
	}
	
	#event section#jh1_event .col_2_a figure {
		margin-bottom: 2rem;
		text-align: center;
	}
	
	#event section#jh1_event .col_2_a dl dt {	
	font-size: 1.5rem;
	margin-bottom: .5rem;
	padding: .1rem 0rem .1rem 1rem;
}
	
	#event section#jh1_event .col_2_b figure {
	margin-right: 0rem;
		margin-top: 1rem;
		text-align: center;
}

#event section#jh1_event .col_2_b figure img {
	width: 90%;
	margin: 0 auto
}
	
	#event section#jh1_event .col_2_b p {
	line-height: 1.6rem;
		margin-bottom: 2rem;
}
	
	section#seminar_en01 p.lead {
	margin: 0 1rem;
}
	
	#seminar_en01 > ul {
	margin: 0 1rem 2rem 1rem;
	padding: 1rem 1rem 1rem 2.5rem;
}
	
	section p.asta {
	text-indent: -1rem;
	margin-left: 1rem;
}
	
	.event_appli {
	width: 85%;
}

}


/* take_measures
-------------------------*/
section#take_measures {
	margin-bottom: 5rem;
}

section#take_measures h4 {
	margin-bottom: 2rem;
}

#take_measures .seminar_conte {
	display: flex;
	justify-content: space-between;
}

#take_measures .seminar_conte div {
	width: 45%;
}

#take_measures .seminar_conte div p {
	border-bottom: 1px solid #6fa2c1;
}

#take_measures .seminar_conte div dl {
	border-left: 1px solid #6fa2c1;
	padding-left: .5rem;
	margin: 0 0 2.5rem 1rem;
}

#take_measures .seminar_conte div dl dt {
	font-size: 1rem;
	font-weight: bold;
}

#take_measures .seminar_conte div dl dd {
	font-size: 1.2rem;
		color: #036eb8;
	margin: 1.1rem 0;
}

@media screen and (orientation: portrait) and (max-width: 767px){
	
	#take_measures .seminar_conte {
	display: block;
}
	
	#take_measures .seminar_conte div {
	width: 100%;
}
	
	#take_measures .seminar_conte div dl {
	padding-left: .2rem;
	margin: 0 0 1.5rem .5rem;
}
	
	#take_measures .seminar_conte div dl dd {
	margin: 1rem 0;
}
	
}


/* sp_1day
-------------------------*/

section#sp_1day {
	margin-bottom: 5rem;
}

#sp_1day > dl > dt {
	color: #036eb8;
	margin-top: 2rem;
}

section#sp_1day dl.title_1day dt {
	border-bottom: 1px solid #036eb8;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	font-weight: bold;
}

#sp_1day > dl > dd > table {
	margin: 1rem auto 4rem;
}

#sp_1day > dl > dd > table tr,
#sp_1day > dl > dd > table td {
	border: 1px solid #ccc;
	padding: .5rem;
}

#sp_1day > dl > dd > table ul li:not(:last-child) {
	margin-bottom: .8rem;
}

#sp_1day > dl > dd > table ol li {
	list-style: decimal;
	margin-left: 1.5rem;
	margin-bottom: .5rem;
}



@media screen and (orientation: portrait) and (max-width: 767px){
	
	
}


/* seminar_parents
-------------------------*/

section#seminar_parents {
	margin-bottom: 5rem;
}

section#seminar_parents .seminar_conte {
	margin-top: 2rem;
}

section#seminar_parents .seminar_conte h5 {
	color: #036eb8;
}

section#seminar_parents .seminar_conte p,
section#seminar_parents .seminar_conte ul {
	margin-left: 2.5rem;
}

section#seminar_parents .seminar_conte p {
	border-bottom: 1px solid #036eb8;
	display: inline-block;
}

section#seminar_parents .seminar_conte ul {
	display: flex;
}

section#seminar_parents .seminar_conte ul li {
	margin-right: 1rem;	
}

section#seminar_parents .seminar_conte ul li::before {
	content: "☆";
	color: #036eb8;
}

section#seminar_parents h4 {
	font-size: 1.1rem;
	
}

section#seminar_parents h4 ul {
	display: flex;
}

section#seminar_parents h4 ul li {
	font-weight: bold;
	margin-right: 2rem;
}

#seminar_parents > dl > dt {
	color: #036eb8;
	margin-top: 2rem;
}

#seminar_parents > dl > dd > table {
	margin: 1rem auto;
}

#seminar_parents > dl > dd > table tr,
#seminar_parents > dl > dd > table td {
	border: 1px solid #ccc;
	padding: .5rem;
}

#seminar_parents > dl > dd > table ul li:not(:last-child) {
	margin-bottom: .8rem;
}

#seminar_parents > dl > dd > table ol li {
	list-style: decimal;
	margin-left: 1.5rem;
	margin-bottom: .5rem;
}



@media screen and (orientation: portrait) and (max-width: 767px){
	
	section#seminar_parents .seminar_conte ul {
	display: block;
}
	
	section#seminar_parents h4 ul {
	display: block;
		margin-left: 1rem;
}
	
}


/* qa_book
-------------------------*/

#event section#qa_book .col2_qa_a {
	display: flex;
}

#event section#qa_book .col2_qa_a h4 {
	margin: 0rem 0 .5rem 0;
  font-weight: bold;
  font-family: var(--Font_Weight_Bold);
  font-size: 1.2rem;
	border-bottom: 2px solid #036eb8;
}

#event section#qa_book .col2_qa_a p {
	line-height: 1.8rem;
}

#event section#qa_book .col2_qa_a ul {
	font-size: 1rem;
}

#event section#qa_book .col2_qa_a ul li {
	margin-bottom: .5rem;
	text-indent: -2rem;
	margin-left: 1rem;
}

#event section#qa_book .col2_qa_a ul li:last-child {
	margin-top: 1rem;
}

#event section#qa_book .col2_qa_a ul li:not(:last-child)::before {
	font-family: var(--Font_Awesome);
    font-weight: 900;
    content: "\f00c";
	color: #ff0000;
	margin-right: 1rem;
}

#event section#qa_book .col2_qa_a figure {
	margin-right: 3rem;
}

#event section#qa_book .col2_qa_a figure img {
	width: 200px;
}

#event section#qa_book .col2_qa_a dt {
	font-weight: bold;
	margin-bottom: 1rem;
}

#event section#qa_book .col2_qa_a dd {
	font-size: .9rem;
}

#event section#qa_book .col2_qa_a dd::before {
	content: "※";
}

#event section#qa_book .col2_qa_a p.limited {
	text-align: left;
	margin-top: 1rem;
}

#event section#qa_book .col2_qa_a p.limited span {
	color: #036eb8;
	font-weight: bold;
}

#event section#qa_book .col2_qa_a .check {
	display: flex;
	border: 1px solid #036eb8;
	border-radius: 10px;
	padding: 1rem 1rem 1rem 2.5rem;
	margin-bottom: 1rem;
}

#event section#qa_book .col2_qa_a .check figure {
	margin-left: 2rem;
	margin-right: 0rem;
}

#event section#qa_book .col2_qa_a .check figure img {
	width: 180px;
	border-radius: 10px;
}



@media screen and (orientation: portrait) and (max-width: 767px){
	
	#event section#qa_book .col2_qa_a {
		margin: 3rem 1rem;
	display: block;
}
	
	#event section#qa_book .col2_qa_a figure {
	margin-right: 0rem;
		margin-bottom: 1rem;
		text-align: center;
}

#event section#qa_book .col2_qa_a figure img {
	width: 150px;
}
	
	#event section#qa_book .col2_qa_a p.limited {
	text-align: center;
}
	
	#event section#qa_book .col2_qa_a .check {
	display: block;
}
	
	#event section#qa_book .col2_qa_a .check figure {
	margin-left: 0rem;
		margin-right: 1.5rem;
		margin-top: 1.5rem;
}
	
}

/* qa_book
-------------------------*/

#ps_link {
    text-align: center;
    background-color: #deebf7;
    padding: 2rem;
}

#ps_link p {
    font-size: 1.2rem;
    color: #036eb8;
    font-weight: bold;
    margin: 0rem 0rem 1rem;
}

#ps_link p::before {
    content: "＼";
}

#ps_link p::after {
    content: "／";
}

#ps_link a:hover {
    opacity: .5;
}

#ps_link a img {
    max-width: 80%;
    border-radius: 1rem;
    box-shadow: 3px 3px 1px #036eb8;
}

@media screen and (orientation: portrait) and (max-width: 767px){
    
    #ps_link {
    padding: 1rem 1.5rem 1.5rem;
}
    
    #ps_link p::before {
    content: "";
}

#ps_link p::after {
    content: "！";
}
    
    #ps_link a img {
    max-width: 100%;
}
    
}
