/***************************************

top.css

***************************************/
h1.h1ttl {
  display: none;
}
figure.books_img {
  max-width: 100%;
  margin: 2rem auto;
  text-align: center;
}
figure.books_img img {
  max-width: 100%;
}

.asta {font-size: 90%; text-indent: -1.5rem; margin-left: 1.5rem;}
.asta::before {content: "※"; margin-right: .5rem;}

@media screen and (orientation: portrait) and (max-width: 767px) {
  figure.books_img {
    width: 96%;
  }
}


/* fee_link

============================ */

.fee_link {
   width: 80%;
    margin: 3rem auto; 
}

.fee_link h2 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #036eb8;
}

.fee_link dl dd {
    margin-top: 1rem;
    font-size: 1.1rem;
}

.fee_link dl dd a {
    text-decoration: underline;
}


/* accordion

============================ */

.accordion {
    width: 80%;
    margin: 3rem auto;
}

.accordion .acd_header h2 {
    display: inline-block;
    cursor: pointer;
    font-size: 1.4rem;
    color: #036eb8;
    margin: 0 auto;
}

.accordion .acd_header h2::after {
    padding-left: 1rem;
    font-family: var(--Font_Awesome);
    content: "\f107";
    font-weight: 900;
}

.accordion .acd_active .acd_header h2::after {
    padding-left: 1rem;
    font-family: var(--Font_Awesome);
    content: "\f106";
    font-weight: 900;
}

@media screen and (orientation: portrait) and (max-width: 767px) {
    
    .accordion {
    width: 90%;
    margin: 3rem auto 2rem;
}
    
    .accordion .acd_header h2 {
        font-size: 1.2rem;
    }
}


/* accordion table

============================ */

.acd_contents .time_table {
    display: flex;
    column-gap: 3rem;
    margin-top: 2rem;   
}

.acd_contents .time_table table {
    width: calc(50% - 1.5rem);
}

.acd_contents .time_table table th,
.acd_contents .time_table table td {
    border: 1px solid #555;
    padding: .5rem 1rem;
    vertical-align: middle;
}

.acd_contents .time_table table th {
    background-color: #deebf7;
}

@media screen and (orientation: portrait) and (max-width: 767px) {
    
    .acd_contents .time_table {
    display: block;
    margin-top: 1.5rem;   
}

.acd_contents .time_table table {
    width: 100%;
    margin: 1rem 0; 
}
    
}


/* schedule_time table

============================ */

.schedule_time {
    width: 80%;
    margin: 5rem auto;
}

.schedule_time dt h2 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #036eb8;
}

.time_table {
    display: flex;
    column-gap: 3rem;
    margin-top: 2rem;   
}

.time_table table {
    width: calc(50% - 1.5rem);
}

.time_table table th,
.time_table table td {
    border: 1px solid #555;
    padding: .5rem 1rem;
    vertical-align: middle;
}

.time_table table th {
    background-color: #deebf7;
}

@media screen and (orientation: portrait) and (max-width: 767px) {
    
    .schedule_time {
        width: 90%;
    margin: 3rem auto;
}
    
    .time_table {
    display: block;
    margin-top: 1.5rem;   
}

.time_table table {
    width: 100%;
    margin: 1rem 0; 
}
    
}


/* course_3

============================ */

.course_waku {
    border: 1px solid #036eb8;
    padding: 2rem;
    width: 80%;
    margin: 5rem auto;
}

.course_waku h2 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #036eb8;
    margin-bottom: 1rem;
}

.course_waku h3 {
    font-size: 1.1rem;
    font-weight: bold;
}

.course_waku dl {
    margin-top: 2rem;
}

.course_waku dl dt {
    font-size: 1.1rem;
    color: #036eb8;
    border-left: 3px solid #036eb8;
    padding-left: 1rem;
    margin-bottom: 1rem;
}

.course_waku dl dd {
    text-align: justify;
}

.course_waku .digital_pamphlet {
    display: flex;
    column-gap: 1rem;
    margin-top: 2rem;
}

.course_waku .digital_pamphlet ul {
    width: 50%;
}

.course_waku .digital_pamphlet ul li {
    margin-top: 1rem;
    width: 100%;
}

.course_waku .digital_pamphlet ul li a {
    width: 100%;
    background-color: #036eb8;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: baseline;
    padding: 1rem 0;
    position: relative;
}

.course_waku .digital_pamphlet ul li a::after {
    padding-left: 2rem;
    font-family: var(--Font_Awesome);
    content: "\f105";
    font-weight: 900;
}

.course_waku .digital_pamphlet ul li a:hover {
    opacity: .5;
}

.course_waku .digital_pamphlet ul li a span {
    font-size: 140%;
}


@media screen and (orientation: portrait) and (max-width: 767px) {
    
    .course_waku {
        padding: 1.5rem;
    width: 90%;
    margin: 3rem auto;
}
    
    .course_waku h2 {
    text-align: center;
}
    
        .course_waku h3 {
    text-align: center;
}
    
    .course_waku .digital_pamphlet ul li a {
    display: block;
    padding: .5rem .5rem;
        text-align: center;
}
    
    .course_waku .digital_pamphlet ul li a::after {
    padding-left: 1rem;
}
    
}

/* apply_button

============================ */

.apply_button {
    background-color: #deebf7;
    padding: 2rem;
    margin-top: 5rem;
    border-radius: .5rem;
}

.apply_button dl dt h2 {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 2.5rem;
    align-items: center;
    display: flex; 
    justify-content: center;
}

.apply_button dl dt h2::before,
.apply_button dl dt h2::after {
    background-color: #555; 
    content: "";
    height: 1px; 
    width: 40px;
}

.apply_button dl dt h2::before {
    margin-right: 1.5rem;
}

.apply_button dl dt h2::after {
    margin-left: 1.5rem;
}

.apply_button dl dd ul {
    display: flex;
    justify-content: space-between;
    column-gap: 3rem;
    margin-top: 2rem;
}

.apply_button dl dd ul li {
    width: 20rem;
}

.apply_button dl dd ul li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 20rem;
    width: 100%;
    height: 2.6rem;
    padding: 0rem 1rem 0 0;
    border-radius: 1.8rem;
    background: #ff8c00;
    color: #fff;
    font-weight: 900;
    font-family: var(--Font_Weight_Bold);
    font-size: 1.2rem;
    text-align: center;
    line-height: 1;
}

.apply_button dl dd 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_Right);
}

.apply_button dl dd ul li a:hover {
    opacity: .5;
}

@media screen and (orientation: portrait) and (max-width: 767px) {
    
    .apply_button {
    padding: 1rem;
    margin-top: 4rem;
}
    
    .apply_button dl dt h2 {
        font-size: 1.3rem;
    margin-bottom: 1.5rem;
}
    
    .apply_button dl dd ul {
    column-gap: 1rem;
        margin-top: 1.5rem;
}
    
}


/* link_wrap

============================ */
.link_wrap .link_list span {
  font-size: 1rem;
}
.link_wrap p {
  font-size: 1.2rem;
  margin-bottom: 0;
  text-align: center;
}
.link_wrap p a {
  color: var(--Summer_Sub_Color);
}
.link_wrap p a::after {
  padding-left: 1rem;
  font-weight: 900;
  font-family: var(--Font_Awesome);
  content: var(--Arrow_Right);
}

/* title_3days

============================ */
.main_title_3days {
  background-color: #0e3885;
  margin: 2rem auto;
  padding: .5rem 0 1rem;
}
.main_title_3days div p {
  margin: 3rem 0 0 0;
  font-weight: bold;
  font-size: 1.6rem;
  font-family: var(--Font_Weight_Bold);
  color: #fff;
  text-align: center;
}
.main_title_3days figure {
  max-width: 100%;
  margin: 1rem auto;
}
.main_title_3days figure img {
  width: 100%;
}
.title_3days > p {
  margin: 3rem 0 0 0;
  font-weight: bold;
  font-size: 1.6rem;
  font-family: var(--Font_Weight_Bold);
}
.title_3days figure {
  max-width: 100%;
  margin: 1rem auto 0;
}
.title_3days figure img {
  width: 100%;
}
.title_3days div {
  max-width: 100%;
  margin: 1rem auto;
  padding: .5rem;
  background-color: #0e3885;
}
.title_3days div:hover {
  opacity: .8;
}
.title_3days div p:first-of-type {
  margin: 0 auto;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  font-family: var(--Font_Weight_Bold);
  text-align: center;
}
.title_3days div p:nth-of-type(2) {
  margin-right: 2rem;
  margin-bottom: 0;
  font-size: 1.2rem;
  text-align: right;
  color: #ff0;
}
.title_3days div p:nth-of-type(2)::after {
  padding-left: 1rem;
  font-weight: 900;
  font-family: var(--Font_Awesome);
  content: var(--Arrow_Right);
}
.title_3days div p:nth-of-type(2) a {
  color: #ff0;
}
.title_3days div p:nth-of-type(2) a::after {
  padding-left: 1rem;
  font-weight: 900;
  font-family: var(--Font_Awesome);
  content: var(--Arrow_Right);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .main_title_3days {
    margin: 0 auto;
  }
  .main_title_3days div p {
    margin: 1rem 0 0 0;
    font-size: 1.1rem;
  }
  .title_3days > p {
    font-size: 1.2rem;
  }
  .title_3days div {
    padding: .5rem 0;
  }
  .title_3days div p:first-of-type {
    margin-top: .5rem;
    font-size: 1.2rem;
  }
  .title_3days div p:nth-of-type(2) {
    margin-right: 1rem;
    font-size: 1rem;
  }
}


/* event_banner

============================ */

.event_banner {
    margin: 5rem 0;
}

.event_banner figure {
    display: flex;
    justify-content: center;
    column-gap: 3rem;
}

.event_banner figure a {
    width: 49%;
    box-shadow: 4px 4px 15px -5px #777777;
    margin: 0 1rem;
}

.event_banner figure a:hover {
    opacity: .5;
}

.event_banner figure a img {
    width: 100%;
}

@media screen and (orientation: portrait) and (max-width: 767px) {
    
    .event_banner {
    margin: 3rem 1rem;
}
    
    .event_banner figure {
    display: block;
}
    
    .event_banner figure a {
    width: 100%;
}
    
    .event_banner figure a img {
    margin: 1rem 0;
}
    
}


/* feature

============================ */
.feature {
  width: 80%;
  margin: 2rem auto;
}
.feature > p {
  max-width: 100%;
  margin: 4rem auto 2rem;
  padding: .5rem;
  border: 1px solid var(--Summer_Sub_Color);
  color: var(--Summer_Sub_Color);
  font-weight: bold;
  font-family: var(--Font_Weight_Bold);
  font-size: 1.6rem;
}
.feature_info + .feature_info {
  margin-top: 2rem;
}
.feature_list {
  display: flex;
  width: 100%;
}
.feature_list dt {
  display: block;
  position: relative;
  height: 4rem;
  width: 4rem;
  margin-right: 1rem;
  border-radius: 50%;
  background: var(--Summer_Sub_Color);
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  line-height: 5.3rem;
}
.feature_list dt::before {
  position: absolute;
  top: -1.3rem;
  left: .9rem;
  font-size: .8rem;
  content: 'POINT';
}
.feature_list dd {
  flex: 1;
}
.feature_list dd p:first-child {
  color: var(--Summer_Sub_Color);
  font-size: 1.4rem;
  line-height: 1.4;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .feature {
    width: 90%;
    font-size: 1rem;
  }
  .feature > p {
    font-size: 1.2rem;
  }
  .feature_list dd p:first-child {
    margin-top: .5rem;
    font-size: 1.2rem;
    line-height: 1.2;
  }
}
/* contact_btn

============================ */
.contact_banner .contact_btn:last-child {
  display: block;
}